Gallery by BestWebSoft - Version 4.5.0

Version Description

  • 06.04.2017 =
  • NEW : The Indonesian language file is added.
  • Update : The French language file is updated.
  • Update : The Czech language file is updated.
Download this release

Release Info

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

Code changes from version 4.4.9 to 4.5.0

bws_menu/bws_functions.php CHANGED
@@ -204,7 +204,7 @@ if ( ! function_exists( 'bws_admin_notices' ) ) {
204
  <img title="" src="<?php echo esc_attr( $bws_plugin_banner_to_settings[0]['banner_url'] ); ?>" alt="" />
205
  </div>
206
  <div class="text">
207
- <strong><?php _e( 'Thank you for installing', 'bestwebsoft' ); ?> <?php echo $bws_plugin_banner_to_settings[0]['plugin_info']['Name']; ?> plugin!</strong><br />
208
  <?php _e( "Let's get started", 'bestwebsoft' ); ?>:
209
  <a href="<?php echo $bws_plugin_banner_to_settings[0]['settings_url']; ?>"><?php _e( 'Settings', 'bestwebsoft' ); ?></a>
210
  <?php if ( false != $bws_plugin_banner_to_settings[0]['post_type_url'] ) { ?>
@@ -474,7 +474,7 @@ if ( ! function_exists( 'bws_plugin_suggest_feature_banner' ) ) {
474
  <img title="" src="<?php echo esc_attr( $banner_url_or_slug ); ?>" alt="" />
475
  </div>
476
  <div class="text">
477
- <strong><?php _e( 'Thank you for choosing', 'bestwebsoft' ); ?> <?php echo $plugin_info['Name']; ?> plugin!</strong><br />
478
  <?php _e( "If you have a feature, suggestion or idea you'd like to see in the plugin, we'd love to hear about it!", 'bestwebsoft' ); ?>
479
  <a target="_blank" href="https://support.bestwebsoft.com/hc/en-us/requests/new"><?php _e( 'Suggest a Feature', 'bestwebsoft' ); ?></a>
480
  </div>
@@ -630,7 +630,6 @@ if ( ! function_exists ( 'bws_plugins_admin_head' ) ) {
630
  var bws_shortcode_button = {
631
  'label': '<?php esc_attr_e( "Add BWS Shortcode", "bestwebsoft" ); ?>',
632
  'title': '<?php esc_attr_e( "Add BWS Plugins Shortcode", "bestwebsoft" ); ?>',
633
- 'icon_url': '<?php echo bws_menu_url( "images/shortcode-icon.png" ); ?>',
634
  'function_name': [
635
  <?php foreach ( $bws_shortcode_list as $key => $value ) {
636
  if ( isset( $value['js_function'] ) )
204
  <img title="" src="<?php echo esc_attr( $bws_plugin_banner_to_settings[0]['banner_url'] ); ?>" alt="" />
205
  </div>
206
  <div class="text">
207
+ <strong><?php printf( __( 'Thank you for installing %s plugin!', 'bestwebsoft' ), $bws_plugin_banner_to_settings[0]['plugin_info']['Name'] ); ?> </strong><br />
208
  <?php _e( "Let's get started", 'bestwebsoft' ); ?>:
209
  <a href="<?php echo $bws_plugin_banner_to_settings[0]['settings_url']; ?>"><?php _e( 'Settings', 'bestwebsoft' ); ?></a>
210
  <?php if ( false != $bws_plugin_banner_to_settings[0]['post_type_url'] ) { ?>
474
  <img title="" src="<?php echo esc_attr( $banner_url_or_slug ); ?>" alt="" />
475
  </div>
476
  <div class="text">
477
+ <strong><?php printf( __( 'Thank you for choosing %s plugin!', 'bestwebsoft' ), $plugin_info['Name'] ); ?></strong><br />
478
  <?php _e( "If you have a feature, suggestion or idea you'd like to see in the plugin, we'd love to hear about it!", 'bestwebsoft' ); ?>
479
  <a target="_blank" href="https://support.bestwebsoft.com/hc/en-us/requests/new"><?php _e( 'Suggest a Feature', 'bestwebsoft' ); ?></a>
480
  </div>
630
  var bws_shortcode_button = {
631
  'label': '<?php esc_attr_e( "Add BWS Shortcode", "bestwebsoft" ); ?>',
632
  'title': '<?php esc_attr_e( "Add BWS Plugins Shortcode", "bestwebsoft" ); ?>',
 
633
  'function_name': [
634
  <?php foreach ( $bws_shortcode_list as $key => $value ) {
635
  if ( isset( $value['js_function'] ) )
bws_menu/bws_menu.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
- * Version: 2.0.1
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
@@ -37,7 +37,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
37
  $sitewide_active_plugins = ( function_exists( 'is_multisite' ) && is_multisite() ) ? get_site_option( 'active_sitewide_plugins' ) : array();
38
  $update_availible_all = get_site_transient( 'update_plugins' );
39
 
40
- $plugin_category = isset( $_GET['category'] ) ? $_GET['category'] : 'all';
41
 
42
  if ( ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] ) || ! isset( $_GET['sub'] ) ) {
43
  $bws_plugins_update_availible = $bws_plugins_expired = array();
@@ -53,14 +53,16 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
53
  $is_pro_installed = array_key_exists( $value_plugin['pro_version'], $all_plugins );
54
  }
55
  /* check update_availible */
56
- if ( $is_pro_installed && array_key_exists( $value_plugin['pro_version'], $update_availible_all->response ) ) {
57
- unset( $bws_plugins[ $key_plugin ] );
58
- $value_plugin['update_availible'] = $value_plugin['pro_version'];
59
- $bws_plugins_update_availible[ $key_plugin ] = $value_plugin;
60
- } else if ( $is_installed && array_key_exists( $key_plugin, $update_availible_all->response ) ) {
61
- unset( $bws_plugins[ $key_plugin ] );
62
- $value_plugin['update_availible'] = $key_plugin;
63
- $bws_plugins_update_availible[ $key_plugin ] = $value_plugin;
 
 
64
  }
65
  /* check expired */
66
  if ( $is_pro_installed && isset( $bstwbsftwppdtplgns_options['time_out'][ $value_plugin['pro_version'] ] ) &&
@@ -114,7 +116,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
114
  'timeout' => ( ( defined('DOING_CRON') && DOING_CRON ) ? 30 : 3 ),
115
  'body' => array( 'plugins' => serialize( $to_send ) ),
116
  'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' ) );
117
- $raw_response = wp_remote_post( 'https://bestwebsoft.com/wp-content/plugins/paid-products/plugins/update-check/1.0/', $options );
118
 
119
  if ( is_wp_error( $raw_response ) || 200 != wp_remote_retrieve_response_code( $raw_response ) ) {
120
  $error = __( "Something went wrong. Please try again later. If the error appears again, please contact us", 'bestwebsoft' ) . ' <a href="https://support.bestwebsoft.com">BestWebSoft</a>. ' . __( "We are sorry for inconvenience.", 'bestwebsoft' );
@@ -171,7 +173,6 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
171
  if ( empty( $sql_mode ) )
172
  $sql_mode = __( 'Not set', 'bestwebsoft' );
173
 
174
- $safe_mode = ( ini_get( 'safe_mode' ) ) ? __( 'On', 'bestwebsoft' ) : __( 'Off', 'bestwebsoft' );
175
  $allow_url_fopen = ( ini_get( 'allow_url_fopen' ) ) ? __( 'On', 'bestwebsoft' ) : __( 'Off', 'bestwebsoft' );
176
  $upload_max_filesize = ( ini_get( 'upload_max_filesize' ) )? ini_get( 'upload_max_filesize' ) : __( 'N/A', 'bestwebsoft' );
177
  $post_max_size = ( ini_get( 'post_max_size' ) ) ? ini_get( 'post_max_size' ) : __( 'N/A', 'bestwebsoft' );
@@ -208,7 +209,6 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
208
  __( 'Operating System', 'bestwebsoft' ) => PHP_OS,
209
  __( 'Server', 'bestwebsoft' ) => $_SERVER["SERVER_SOFTWARE"],
210
  __( 'PHP Version', 'bestwebsoft' ) => PHP_VERSION,
211
- __( 'PHP Safe Mode', 'bestwebsoft' ) => $safe_mode,
212
  __( 'PHP Allow URL fopen', 'bestwebsoft' ) => $allow_url_fopen,
213
  __( 'PHP Memory Limit', 'bestwebsoft' ) => $memory_limit,
214
  __( 'Memory Usage', 'bestwebsoft' ) => $memory_usage,
@@ -296,7 +296,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
296
  <div class="bws-header">
297
  <div class="bws-title">
298
  <a href="<?php echo ( $is_main_page ) ? self_admin_url( 'admin.php?page=bws_panel' ) : self_admin_url( 'admin.php?page=' . $page ); ?>">
299
- <img class="bws-logo" src="<?php echo bws_menu_url( 'images/bestwebsoft-logo-white.svg' ); ?>" />
300
  BestWebSoft
301
  <span>panel</span>
302
  </a>
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
+ * Version: 2.0.6
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
37
  $sitewide_active_plugins = ( function_exists( 'is_multisite' ) && is_multisite() ) ? get_site_option( 'active_sitewide_plugins' ) : array();
38
  $update_availible_all = get_site_transient( 'update_plugins' );
39
 
40
+ $plugin_category = isset( $_GET['category'] ) ? esc_html( $_GET['category'] ) : 'all';
41
 
42
  if ( ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] ) || ! isset( $_GET['sub'] ) ) {
43
  $bws_plugins_update_availible = $bws_plugins_expired = array();
53
  $is_pro_installed = array_key_exists( $value_plugin['pro_version'], $all_plugins );
54
  }
55
  /* check update_availible */
56
+ if ( ! empty( $update_availible_all ) && ! empty( $update_availible_all->response ) ) {
57
+ if ( $is_pro_installed && array_key_exists( $value_plugin['pro_version'], $update_availible_all->response ) ) {
58
+ unset( $bws_plugins[ $key_plugin ] );
59
+ $value_plugin['update_availible'] = $value_plugin['pro_version'];
60
+ $bws_plugins_update_availible[ $key_plugin ] = $value_plugin;
61
+ } else if ( $is_installed && array_key_exists( $key_plugin, $update_availible_all->response ) ) {
62
+ unset( $bws_plugins[ $key_plugin ] );
63
+ $value_plugin['update_availible'] = $key_plugin;
64
+ $bws_plugins_update_availible[ $key_plugin ] = $value_plugin;
65
+ }
66
  }
67
  /* check expired */
68
  if ( $is_pro_installed && isset( $bstwbsftwppdtplgns_options['time_out'][ $value_plugin['pro_version'] ] ) &&
116
  'timeout' => ( ( defined('DOING_CRON') && DOING_CRON ) ? 30 : 3 ),
117
  'body' => array( 'plugins' => serialize( $to_send ) ),
118
  'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' ) );
119
+ $raw_response = wp_remote_post( 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/update-check/1.0/', $options );
120
 
121
  if ( is_wp_error( $raw_response ) || 200 != wp_remote_retrieve_response_code( $raw_response ) ) {
122
  $error = __( "Something went wrong. Please try again later. If the error appears again, please contact us", 'bestwebsoft' ) . ' <a href="https://support.bestwebsoft.com">BestWebSoft</a>. ' . __( "We are sorry for inconvenience.", 'bestwebsoft' );
173
  if ( empty( $sql_mode ) )
174
  $sql_mode = __( 'Not set', 'bestwebsoft' );
175
 
 
176
  $allow_url_fopen = ( ini_get( 'allow_url_fopen' ) ) ? __( 'On', 'bestwebsoft' ) : __( 'Off', 'bestwebsoft' );
177
  $upload_max_filesize = ( ini_get( 'upload_max_filesize' ) )? ini_get( 'upload_max_filesize' ) : __( 'N/A', 'bestwebsoft' );
178
  $post_max_size = ( ini_get( 'post_max_size' ) ) ? ini_get( 'post_max_size' ) : __( 'N/A', 'bestwebsoft' );
209
  __( 'Operating System', 'bestwebsoft' ) => PHP_OS,
210
  __( 'Server', 'bestwebsoft' ) => $_SERVER["SERVER_SOFTWARE"],
211
  __( 'PHP Version', 'bestwebsoft' ) => PHP_VERSION,
 
212
  __( 'PHP Allow URL fopen', 'bestwebsoft' ) => $allow_url_fopen,
213
  __( 'PHP Memory Limit', 'bestwebsoft' ) => $memory_limit,
214
  __( 'Memory Usage', 'bestwebsoft' ) => $memory_usage,
296
  <div class="bws-header">
297
  <div class="bws-title">
298
  <a href="<?php echo ( $is_main_page ) ? self_admin_url( 'admin.php?page=bws_panel' ) : self_admin_url( 'admin.php?page=' . $page ); ?>">
299
+ <span class="bws-logo bwsicons bwsicons-bws-logo"></span>
300
  BestWebSoft
301
  <span>panel</span>
302
  </a>
bws_menu/class-bws-settings.php CHANGED
@@ -27,7 +27,8 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
27
  public $link_key;
28
  public $link_pn;
29
  public $is_trial = false;
30
- public $trial_days;
 
31
 
32
  public $forbid_view = false;
33
  public $change_permission_attr = '';
@@ -154,7 +155,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
154
  }
155
  $license_status .= '. <a target="_blank" href="' . $this->plugins_info['PluginURI'] . '">' . __( 'Upgrade to Pro', 'bestwebsoft' ) . '</a>';
156
  } else {
157
- $license_type = 'Pro';
158
  if ( $finish < $today ) {
159
  $license_status = sprintf( __( 'Expired on %s', 'bestwebsoft' ), $bstwbsftwppdtplgns_options['time_out'][ $this->plugin_basename ] ) . '. <a target="_blank" href="https://support.bestwebsoft.com/entries/53487136">' . __( 'Renew Now', 'bestwebsoft' ) . '</a>';
160
  } else {
@@ -539,7 +540,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
539
  * action - Display custom options on the 'misc' tab
540
  */
541
  do_action( __CLASS__ . '_additional_misc_options_affected' );
542
- if ( ! empty( $this->pro_page ) ) { ?>
543
  <tr>
544
  <th scope="row"><?php _e( 'Pro Options', 'bestwebsoft' ); ?></th>
545
  <td>
@@ -661,7 +662,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
661
  ),
662
  'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' )
663
  );
664
- $raw_response = wp_remote_post( 'https://bestwebsoft.com/wp-content/plugins/products-statistics/track-usage/', $options );
665
 
666
  if ( ! is_wp_error( $raw_response ) && 200 == wp_remote_retrieve_response_code( $raw_response ) ) {
667
  $response = maybe_unserialize( wp_remote_retrieve_body( $raw_response ) );
@@ -696,12 +697,22 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
696
  if ( $this->pro_plugin_is_activated ) {
697
  deactivate_plugins( $this->plugin_basename ); ?>
698
  <script type="text/javascript">
699
- window.setTimeout( function() {
700
- window.location.href = '<?php echo $this->pro_page; ?>';
701
- }, 7000 );
 
 
 
 
 
 
 
 
 
 
702
  </script>
703
  <p><strong><?php _e( 'Congratulations! Pro license is activated successfully.', 'bestwebsoft' ); ?></strong></p>
704
- <p><?php printf( __( 'You will be automatically redirected to the %s in 7 seconds.', 'bestwebsoft' ), '<a href="' . $this->pro_page . '">' . __( 'Settings page', 'bestwebsoft' ) . '</a>' ); ?></p>
705
  <?php } else {
706
  $attr = '';
707
  if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $this->bws_license_plugin ]['count'] ) &&
@@ -786,11 +797,11 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
786
  $to_send["plugins"][ $this->plugin_basename ]["bws_license_key"] = $bws_license_key;
787
  $to_send["plugins"][ $this->plugin_basename ]["bws_illegal_client"] = true;
788
  $options = array(
789
- 'timeout' => ( ( defined('DOING_CRON') && DOING_CRON ) ? 30 : 3),
790
- 'body' => array( 'plugins' => serialize( $to_send ) ),
791
- 'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' )
792
- );
793
- $raw_response = wp_remote_post( 'https://bestwebsoft.com/wp-content/plugins/paid-products/plugins/update-check/1.0/', $options );
794
 
795
  if ( is_wp_error( $raw_response ) || 200 != wp_remote_retrieve_response_code( $raw_response ) ) {
796
  $error = __( 'Something went wrong. Please try again later. If the error appears again, please contact us', 'bestwebsoft' ) . ': <a href=https://support.bestwebsoft.com>BestWebSoft</a>. ' . __( 'We are sorry for inconvenience.', 'bestwebsoft' );
@@ -884,7 +895,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
884
 
885
  if ( ! array_key_exists( $bws_license_plugin, $this->all_plugins ) ) {
886
  $current = get_site_transient( 'update_plugins' );
887
- if ( isset( $current ) && is_array( $current->response ) ) {
888
  $to_send = array();
889
  $to_send["plugins"][ $bws_license_plugin ] = array();
890
  $to_send["plugins"][ $bws_license_plugin ]["bws_license_key"] = $bws_license_key;
@@ -893,7 +904,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
893
  'timeout' => ( ( defined( 'DOING_CRON' ) && DOING_CRON ) ? 30 : 3 ),
894
  'body' => array( 'plugins' => serialize( $to_send ) ),
895
  'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' ) );
896
- $raw_response = wp_remote_post( 'https://bestwebsoft.com/wp-content/plugins/paid-products/plugins/update-check/1.0/', $options );
897
 
898
  if ( is_wp_error( $raw_response ) || 200 != wp_remote_retrieve_response_code( $raw_response ) ) {
899
  $error = __( "Something went wrong. Please try again later. If the error appears again, please contact us", 'bestwebsoft' ) . ': <a href="https://support.bestwebsoft.com">BestWebSoft</a>. ' . __( "We are sorry for inconvenience.", 'bestwebsoft' );
@@ -916,7 +927,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
916
  if ( empty( $error ) ) {
917
  $bstwbsftwppdtplgns_options[ $bws_license_plugin ] = $bws_license_key;
918
 
919
- $url = 'https://bestwebsoft.com/wp-content/plugins/paid-products/plugins/downloads/?bws_first_download=' . $bws_license_plugin . '&bws_license_key=' . $bws_license_key . '&download_from=5';
920
 
921
  if ( ! $this->upload_dir )
922
  $this->upload_dir = wp_upload_dir();
@@ -1029,9 +1040,11 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
1029
  * @return array The action results
1030
  */
1031
  public function help_phrase() {
1032
- if ( '' == $this->doc_link )
1033
- return;
1034
- echo '<div class="bws_tab_description">' . __( 'Need Help?', 'bestwebsoft' ) . ' ' . '<a href="' . $this->doc_link . '" target="_blank">' . __( 'Read the Instruction', 'bestwebsoft' );
 
 
1035
  if ( '' != $this->doc_video_link )
1036
  echo '</a>' . ' ' . __( 'or', 'bestwebsoft' ) . ' ' . '<a href="' . $this->doc_video_link . '" target="_blank">' . __( 'Watch the Video', 'bestwebsoft' );
1037
  echo '</a></div>';
27
  public $link_key;
28
  public $link_pn;
29
  public $is_trial = false;
30
+ public $trial_days;
31
+ public $bws_hide_pro_option_exist = true;
32
 
33
  public $forbid_view = false;
34
  public $change_permission_attr = '';
155
  }
156
  $license_status .= '. <a target="_blank" href="' . $this->plugins_info['PluginURI'] . '">' . __( 'Upgrade to Pro', 'bestwebsoft' ) . '</a>';
157
  } else {
158
+ $license_type = isset( $bstwbsftwppdtplgns_options['nonprofit'][ $this->plugin_basename ] ) ? 'Nonprofit Pro' : 'Pro';
159
  if ( $finish < $today ) {
160
  $license_status = sprintf( __( 'Expired on %s', 'bestwebsoft' ), $bstwbsftwppdtplgns_options['time_out'][ $this->plugin_basename ] ) . '. <a target="_blank" href="https://support.bestwebsoft.com/entries/53487136">' . __( 'Renew Now', 'bestwebsoft' ) . '</a>';
161
  } else {
540
  * action - Display custom options on the 'misc' tab
541
  */
542
  do_action( __CLASS__ . '_additional_misc_options_affected' );
543
+ if ( ! empty( $this->pro_page ) && $this->bws_hide_pro_option_exist ) { ?>
544
  <tr>
545
  <th scope="row"><?php _e( 'Pro Options', 'bestwebsoft' ); ?></th>
546
  <td>
662
  ),
663
  'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' )
664
  );
665
+ $raw_response = wp_remote_post( 'http://bestwebsoft.com/wp-content/plugins/products-statistics/track-usage/', $options );
666
 
667
  if ( ! is_wp_error( $raw_response ) && 200 == wp_remote_retrieve_response_code( $raw_response ) ) {
668
  $response = maybe_unserialize( wp_remote_retrieve_body( $raw_response ) );
697
  if ( $this->pro_plugin_is_activated ) {
698
  deactivate_plugins( $this->plugin_basename ); ?>
699
  <script type="text/javascript">
700
+ (function($) {
701
+ var i = 7;
702
+ function bws_set_timeout() {
703
+ i--;
704
+ if ( 0 == i ) {
705
+ window.location.href = '<?php echo $this->pro_page; ?>';
706
+ } else {
707
+ $( '#bws_timeout_counter' ).text( i );
708
+ window.setTimeout( bws_set_timeout, 1000 );
709
+ }
710
+ }
711
+ window.setTimeout( bws_set_timeout, 1000 );
712
+ })(jQuery);
713
  </script>
714
  <p><strong><?php _e( 'Congratulations! Pro license is activated successfully.', 'bestwebsoft' ); ?></strong></p>
715
+ <p><?php printf( __( 'You will be automatically redirected to the %s in %s seconds.', 'bestwebsoft' ), '<a href="' . $this->pro_page . '">' . __( 'Settings page', 'bestwebsoft' ) . '</a>', '<span id="bws_timeout_counter">7</span>' ); ?></p>
716
  <?php } else {
717
  $attr = '';
718
  if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $this->bws_license_plugin ]['count'] ) &&
797
  $to_send["plugins"][ $this->plugin_basename ]["bws_license_key"] = $bws_license_key;
798
  $to_send["plugins"][ $this->plugin_basename ]["bws_illegal_client"] = true;
799
  $options = array(
800
+ 'timeout' => ( ( defined('DOING_CRON') && DOING_CRON ) ? 30 : 3 ),
801
+ 'body' => array( 'plugins' => serialize( $to_send ) ),
802
+ 'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' )
803
+ );
804
+ $raw_response = wp_remote_post( 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/update-check/1.0/', $options );
805
 
806
  if ( is_wp_error( $raw_response ) || 200 != wp_remote_retrieve_response_code( $raw_response ) ) {
807
  $error = __( 'Something went wrong. Please try again later. If the error appears again, please contact us', 'bestwebsoft' ) . ': <a href=https://support.bestwebsoft.com>BestWebSoft</a>. ' . __( 'We are sorry for inconvenience.', 'bestwebsoft' );
895
 
896
  if ( ! array_key_exists( $bws_license_plugin, $this->all_plugins ) ) {
897
  $current = get_site_transient( 'update_plugins' );
898
+ if ( ! empty( $current ) && is_array( $current->response ) ) {
899
  $to_send = array();
900
  $to_send["plugins"][ $bws_license_plugin ] = array();
901
  $to_send["plugins"][ $bws_license_plugin ]["bws_license_key"] = $bws_license_key;
904
  'timeout' => ( ( defined( 'DOING_CRON' ) && DOING_CRON ) ? 30 : 3 ),
905
  'body' => array( 'plugins' => serialize( $to_send ) ),
906
  'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' ) );
907
+ $raw_response = wp_remote_post( 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/update-check/1.0/', $options );
908
 
909
  if ( is_wp_error( $raw_response ) || 200 != wp_remote_retrieve_response_code( $raw_response ) ) {
910
  $error = __( "Something went wrong. Please try again later. If the error appears again, please contact us", 'bestwebsoft' ) . ': <a href="https://support.bestwebsoft.com">BestWebSoft</a>. ' . __( "We are sorry for inconvenience.", 'bestwebsoft' );
927
  if ( empty( $error ) ) {
928
  $bstwbsftwppdtplgns_options[ $bws_license_plugin ] = $bws_license_key;
929
 
930
+ $url = 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/downloads/?bws_first_download=' . $bws_license_plugin . '&bws_license_key=' . $bws_license_key . '&download_from=5';
931
 
932
  if ( ! $this->upload_dir )
933
  $this->upload_dir = wp_upload_dir();
1040
  * @return array The action results
1041
  */
1042
  public function help_phrase() {
1043
+ echo '<div class="bws_tab_description">' . __( 'Need Help?', 'bestwebsoft' ) . ' ';
1044
+ if ( '' != $this->doc_link )
1045
+ echo '<a href="' . $this->doc_link . '" target="_blank">' . __( 'Read the Instruction', 'bestwebsoft' );
1046
+ else
1047
+ echo '<a href="https://support.bestwebsoft.com/hc/en-us/" target="_blank">' . __( 'Visit Help Center', 'bestwebsoft' );
1048
  if ( '' != $this->doc_video_link )
1049
  echo '</a>' . ' ' . __( 'or', 'bestwebsoft' ) . ' ' . '<a href="' . $this->doc_video_link . '" target="_blank">' . __( 'Watch the Video', 'bestwebsoft' );
1050
  echo '</a></div>';
bws_menu/css/general_style.css CHANGED
@@ -1,8 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  #adminmenu #toplevel_page_bws_panel .wp-submenu li:nth-child(5) a {
2
  border-top: 1px solid #444;
3
  padding-top: 12px;
4
  margin-top: 6px;
5
  }
 
6
  .bws_info {
7
  color: #888;
8
  font-size: 13px;
@@ -11,6 +57,9 @@
11
  div.bws_info {
12
  margin-top: 7px;
13
  }
 
 
 
14
  div.updated.bws-notice {
15
  border-left: 4px solid #ffba00;
16
  }
@@ -175,7 +224,6 @@ a.bws_plugin_pro_version {
175
  text-decoration: none;
176
  color: #666;
177
  }
178
- /* #### Mobile Phones Portrait or Landscape #### */
179
  @media screen and (max-width: 768px) {
180
  .bws_pro_version_tooltip {
181
  padding: 10px;
@@ -351,7 +399,6 @@ div.bws_banner_on_plugin_page .icon {
351
  .rtl table.bws_pro_version td {
352
  padding-right: 10px;
353
  }
354
- /* #### Mobile Phones Portrait or Landscape #### */
355
  @media screen and (max-width: 768px) {
356
  .bws_banner_on_plugin_page .text,
357
  .bws_banner_on_plugin_page .icon,
@@ -371,7 +418,7 @@ div.bws_banner_on_plugin_page .icon {
371
  padding: 15px 20px 21px;
372
  }
373
  }
374
- /* display shortcodes */
375
  span.bws_code {
376
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.07);
377
  font-size: 13px;
@@ -428,14 +475,16 @@ span.bws_code {
428
  -webkit-box-shadow: 0 0 3px #555;
429
  -moz-box-shadow: 0 0 3px #555;
430
  }
431
- /* bws shortcode insert */
 
 
 
 
 
432
  .mce-toolbar .mce-btn-group .mce-btn.mce-bws_shortcode_button {
433
  background-color: #fff;
434
  border: 1px solid #e5e5e5;
435
  }
436
- .mce-toolbar .mce-btn i.bws-shortcode-icon {
437
- background: transparent url("../images/shortcode-icon.png");
438
- }
439
  #bws_shortcode_content,
440
  #bws_shortcode_select_plugin {
441
  margin-bottom: 10px;
@@ -474,14 +523,18 @@ span.bws_code {
474
  #bws_shortcode_content .checkbox-title {
475
  white-space: normal;
476
  }
477
- /* styles for notices (license has expired, Illegal use notification ond other) on the /plugins.php page */
 
 
478
  .bws-plugin-update-tr .update-message {
479
  margin-top: 0 !important;
480
  }
481
  .bws-plugin-update-tr .update-message :before {
482
  content: '';
483
  }
484
- /* Bws_Settings_Tabs */
 
 
485
  .bws_form #postbox-container-2 > div {
486
  width: calc( 100% - 162px );
487
  margin-left: 160px;
@@ -571,15 +624,13 @@ span.bws_code {
571
  content: "\f107";
572
  }
573
  #bws_settings_tabs li.bws-tab-custom_code a:before {
574
- content: "\f475";
575
- }
576
- #bws_settings_tabs li.bws-tab-custom_code a:before {
577
- content: "\f475";
578
  }
579
  #bws_settings_tabs li.bws-tab-license a:before {
580
  content: "\f112";
581
  }
582
- /* custom */
583
  #bws_settings_tabs li.bws-tab-images a:before {
584
  content: "\f128";
585
  }
@@ -596,11 +647,18 @@ span.bws_code {
596
  content: "\f317";
597
  }
598
  #bws_settings_tabs li.bws-tab-errors a:before {
599
- content: "\f534";
 
 
 
600
  }
601
  #bws_settings_tabs li.bws-tab-notifications a:before {
602
  content: "\f466";
603
  }
 
 
 
 
604
  #bws_settings_tabs li:last-child a {
605
  border-bottom: none;
606
  }
@@ -628,6 +686,12 @@ span.bws_code {
628
  margin-right: 10px;
629
  width: calc( 100% - 20px );
630
  }
 
 
 
 
 
 
631
  .bws_form .postbox .hndle {
632
  cursor: inherit;
633
  }
@@ -646,8 +710,11 @@ span.bws_code {
646
  .bws_tab .form-table textarea {
647
  width: 100%;
648
  }
649
- .bws_tab_description {
650
- margin-bottom: 15px;
 
 
 
651
  }
652
  .rtl #bws_settings_tabs {
653
  float: right;
@@ -711,6 +778,12 @@ span.bws_code {
711
  width: calc( 100% - 2px );
712
  margin: 0;
713
  }
 
 
 
 
 
 
714
  }
715
  @media screen and (max-width: 782px) {
716
  .bws-hide-for-mobile {
@@ -721,10 +794,10 @@ span.bws_code {
721
  #bws_settings_tabs_wrapper .bws_tab .form-table td input[type=file] {
722
  width: 182px;
723
  }
724
- #bws_settings_tabs_wrapper .bws_tab .form-table td input[type=text],
725
  #bws_settings_tabs_wrapper .bws_tab .form-table td input[type=password],
726
  #bws_settings_tabs_wrapper .bws_tab .form-table td input[type=search],
727
- #bws_settings_tabs_wrapper .bws_tab .form-table td input[type=number],
728
  #bws_settings_tabs_wrapper .bws_tab .form-table td select,
729
  #bws_settings_tabs_wrapper .bws_tab .form-table td textarea {
730
  width: 100%;
1
+ /*
2
+ * bwsicons fonts
3
+ */
4
+ @font-face {
5
+ font-family: 'bwsicons';
6
+ src: url('../fonts/bwsicons.eot?edecf2');
7
+ src: url('../fonts/bwsicons.eot?edecf2#iefix') format('embedded-opentype'),
8
+ url('../fonts/bwsicons.ttf?edecf2') format('truetype'),
9
+ url('../fonts/bwsicons.woff?edecf2') format('woff'),
10
+ url('../fonts/bwsicons.svg?edecf2#bwsicons') format('svg');
11
+ font-weight: normal;
12
+ font-style: normal;
13
+ }
14
+ .bwsicons {
15
+ /* use !important to prevent issues with browser extensions that change fonts */
16
+ font-family: 'bwsicons' !important;
17
+ speak: none;
18
+ font-style: normal;
19
+ font-weight: normal;
20
+ font-variant: normal;
21
+ text-transform: none;
22
+ line-height: 1;
23
+ -webkit-font-smoothing: antialiased;
24
+ -moz-osx-font-smoothing: grayscale;
25
+ }
26
+ .bwsicons-editor-code:before {
27
+ content: "\e93a";
28
+ }
29
+ .bwsicons-shortcode:before {
30
+ content: "\e93b";
31
+ }
32
+ .bwsicons-bws-logo:before {
33
+ content: "\e93c";
34
+ }
35
+
36
+ /*
37
+ * styles for bws_panel top level menu
38
+ */
39
+ #adminmenu #toplevel_page_bws_panel .wp-menu-image {
40
+ font-family: 'bwsicons' !important;
41
+ }
42
+ #adminmenu #toplevel_page_bws_panel .wp-menu-image:before {
43
+ content: "\e93c";
44
+ font-family: 'bwsicons' !important;
45
+ }
46
  #adminmenu #toplevel_page_bws_panel .wp-submenu li:nth-child(5) a {
47
  border-top: 1px solid #444;
48
  padding-top: 12px;
49
  margin-top: 6px;
50
  }
51
+ /* general styles */
52
  .bws_info {
53
  color: #888;
54
  font-size: 13px;
57
  div.bws_info {
58
  margin-top: 7px;
59
  }
60
+ .bws_info_small {
61
+ font-size: 11px !important;
62
+ }
63
  div.updated.bws-notice {
64
  border-left: 4px solid #ffba00;
65
  }
224
  text-decoration: none;
225
  color: #666;
226
  }
 
227
  @media screen and (max-width: 768px) {
228
  .bws_pro_version_tooltip {
229
  padding: 10px;
399
  .rtl table.bws_pro_version td {
400
  padding-right: 10px;
401
  }
 
402
  @media screen and (max-width: 768px) {
403
  .bws_banner_on_plugin_page .text,
404
  .bws_banner_on_plugin_page .icon,
418
  padding: 15px 20px 21px;
419
  }
420
  }
421
+ /* display code */
422
  span.bws_code {
423
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.07);
424
  font-size: 13px;
475
  -webkit-box-shadow: 0 0 3px #555;
476
  -moz-box-shadow: 0 0 3px #555;
477
  }
478
+ .bws-tooltip-content a {
479
+ color: #00a0d2;
480
+ }
481
+ /*
482
+ * bws shortcode insert
483
+ */
484
  .mce-toolbar .mce-btn-group .mce-btn.mce-bws_shortcode_button {
485
  background-color: #fff;
486
  border: 1px solid #e5e5e5;
487
  }
 
 
 
488
  #bws_shortcode_content,
489
  #bws_shortcode_select_plugin {
490
  margin-bottom: 10px;
523
  #bws_shortcode_content .checkbox-title {
524
  white-space: normal;
525
  }
526
+ /*
527
+ * styles for notices (license has expired, Illegal use notification ond other) on the /plugins.php page
528
+ */
529
  .bws-plugin-update-tr .update-message {
530
  margin-top: 0 !important;
531
  }
532
  .bws-plugin-update-tr .update-message :before {
533
  content: '';
534
  }
535
+ /*
536
+ * Bws_Settings_Tabs
537
+ */
538
  .bws_form #postbox-container-2 > div {
539
  width: calc( 100% - 162px );
540
  margin-left: 160px;
624
  content: "\f107";
625
  }
626
  #bws_settings_tabs li.bws-tab-custom_code a:before {
627
+ font-family: 'bwsicons';
628
+ content: "\e93a";
 
 
629
  }
630
  #bws_settings_tabs li.bws-tab-license a:before {
631
  content: "\f112";
632
  }
633
+ /* custom tabs */
634
  #bws_settings_tabs li.bws-tab-images a:before {
635
  content: "\f128";
636
  }
647
  content: "\f317";
648
  }
649
  #bws_settings_tabs li.bws-tab-errors a:before {
650
+ font-family: 'bwsicons';
651
+ content: "\e93d";
652
+ font-size: 18px;
653
+ left: 21px;
654
  }
655
  #bws_settings_tabs li.bws-tab-notifications a:before {
656
  content: "\f466";
657
  }
658
+ #bws_settings_tabs li.bws-tab-output a:before {
659
+ content: "\f498";
660
+ }
661
+
662
  #bws_settings_tabs li:last-child a {
663
  border-bottom: none;
664
  }
686
  margin-right: 10px;
687
  width: calc( 100% - 20px );
688
  }
689
+ #bws_settings_tabs_wrapper .bws_tab button,
690
+ #bws_settings_tabs_wrapper .bws_tab input[type="submit"],
691
+ #bws_settings_tabs_wrapper .bws_tab input[type="button"] {
692
+ white-space: normal;
693
+ height: auto;
694
+ }
695
  .bws_form .postbox .hndle {
696
  cursor: inherit;
697
  }
710
  .bws_tab .form-table textarea {
711
  width: 100%;
712
  }
713
+ #poststuff h3.bws_tab_label + hr {
714
+ margin-top: 18px;
715
+ }
716
+ .bws_tab_description + hr {
717
+ margin-top: 15px;
718
  }
719
  .rtl #bws_settings_tabs {
720
  float: right;
778
  width: calc( 100% - 2px );
779
  margin: 0;
780
  }
781
+ .bws_form #postbox-container-2 .postbox {
782
+ margin-bottom: 20px;
783
+ }
784
+ .bws_form .postbox-container div.submit {
785
+ display: none;
786
+ }
787
  }
788
  @media screen and (max-width: 782px) {
789
  .bws-hide-for-mobile {
794
  #bws_settings_tabs_wrapper .bws_tab .form-table td input[type=file] {
795
  width: 182px;
796
  }
797
+ #bws_settings_tabs_wrapper .bws_tab .form-table td input[type=text]:not(.small-text),
798
  #bws_settings_tabs_wrapper .bws_tab .form-table td input[type=password],
799
  #bws_settings_tabs_wrapper .bws_tab .form-table td input[type=search],
800
+ #bws_settings_tabs_wrapper .bws_tab .form-table td input[type=number]:not(.small-text),
801
  #bws_settings_tabs_wrapper .bws_tab .form-table td select,
802
  #bws_settings_tabs_wrapper .bws_tab .form-table td textarea {
803
  width: 100%;
bws_menu/css/style.css CHANGED
@@ -46,10 +46,11 @@ body[class*="-bws-panel"] .update-nag {
46
  text-decoration: none;
47
  box-shadow: none;
48
  }
49
- .bws-logo {
50
- max-height: 26px;
51
- vertical-align: middle;
52
  margin: 0 3px;
 
53
  }
54
  .bws-title span {
55
  color: #8bbed2;
46
  text-decoration: none;
47
  box-shadow: none;
48
  }
49
+ .bws-logo.bwsicons {
50
+ font-size: 25px;
51
+ color: #fff;
52
  margin: 0 3px;
53
+ vertical-align: middle;
54
  }
55
  .bws-title span {
56
  color: #8bbed2;
bws_menu/deprecated.php CHANGED
@@ -86,7 +86,7 @@ if ( ! function_exists ( 'bws_general_menu' ) ) {
86
  }
87
  }
88
 
89
- add_menu_page( 'BWS Panel', 'BWS Panel', 'manage_options', 'bws_panel', 'bws_add_menu_render', bws_menu_url( 'images/logo-white-min.png' ), '1001' );
90
 
91
  add_submenu_page( 'bws_panel', __( 'Plugins', 'bestwebsoft' ), __( 'Plugins', 'bestwebsoft' ), 'manage_options', 'bws_panel', 'bws_add_menu_render' );
92
  add_submenu_page( 'bws_panel', __( 'Themes', 'bestwebsoft' ), __( 'Themes', 'bestwebsoft' ), 'manage_options', 'bws_themes', 'bws_add_menu_render' );
@@ -128,7 +128,7 @@ if ( ! function_exists( 'bws_check_pro_license' ) ) {
128
  'body' => array( 'plugins' => serialize( $to_send ) ),
129
  'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' )
130
  );
131
- $raw_response = wp_remote_post( 'https://bestwebsoft.com/wp-content/plugins/paid-products/plugins/update-check/1.0/', $options );
132
  if ( is_wp_error( $raw_response ) || 200 != wp_remote_retrieve_response_code( $raw_response ) ) {
133
  $result['error'] = __( 'Something went wrong. Please try again later. If the error appears again, please contact us', 'bestwebsoft' ) . ' <a href=https://support.bestwebsoft.com>BestWebSoft</a>. ' . __( 'We are sorry for inconvenience.', 'bestwebsoft' );
134
  } else {
@@ -346,7 +346,7 @@ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
346
  'timeout' => ( ( defined( 'DOING_CRON' ) && DOING_CRON ) ? 30 : 3 ),
347
  'body' => array( 'plugins' => serialize( $to_send ) ),
348
  'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' ) );
349
- $raw_response = wp_remote_post( 'https://bestwebsoft.com/wp-content/plugins/paid-products/plugins/update-check/1.0/', $options );
350
 
351
  if ( is_wp_error( $raw_response ) || 200 != wp_remote_retrieve_response_code( $raw_response ) ) {
352
  $result['error'] = __( "Something went wrong. Please try again later. If the error appears again, please contact us", 'bestwebsoft' ) . ' <a href="https://support.bestwebsoft.com">BestWebSoft</a>. ' . __( "We are sorry for inconvenience.", 'bestwebsoft' );
@@ -369,7 +369,7 @@ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
369
  if ( empty( $result['error'] ) ) {
370
  $bstwbsftwppdtplgns_options[ $bws_license_plugin ] = $bws_license_key;
371
 
372
- $url = 'https://bestwebsoft.com/wp-content/plugins/paid-products/plugins/downloads/?bws_first_download=' . $bws_license_plugin . '&bws_license_key=' . $bws_license_key . '&download_from=5';
373
  $uploadDir = wp_upload_dir();
374
  $zip_name = explode( '/', $bws_license_plugin );
375
 
86
  }
87
  }
88
 
89
+ add_menu_page( 'BWS Panel', 'BWS Panel', 'manage_options', 'bws_panel', 'bws_add_menu_render', 'none', '1001' );
90
 
91
  add_submenu_page( 'bws_panel', __( 'Plugins', 'bestwebsoft' ), __( 'Plugins', 'bestwebsoft' ), 'manage_options', 'bws_panel', 'bws_add_menu_render' );
92
  add_submenu_page( 'bws_panel', __( 'Themes', 'bestwebsoft' ), __( 'Themes', 'bestwebsoft' ), 'manage_options', 'bws_themes', 'bws_add_menu_render' );
128
  'body' => array( 'plugins' => serialize( $to_send ) ),
129
  'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' )
130
  );
131
+ $raw_response = wp_remote_post( 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/update-check/1.0/', $options );
132
  if ( is_wp_error( $raw_response ) || 200 != wp_remote_retrieve_response_code( $raw_response ) ) {
133
  $result['error'] = __( 'Something went wrong. Please try again later. If the error appears again, please contact us', 'bestwebsoft' ) . ' <a href=https://support.bestwebsoft.com>BestWebSoft</a>. ' . __( 'We are sorry for inconvenience.', 'bestwebsoft' );
134
  } else {
346
  'timeout' => ( ( defined( 'DOING_CRON' ) && DOING_CRON ) ? 30 : 3 ),
347
  'body' => array( 'plugins' => serialize( $to_send ) ),
348
  'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' ) );
349
+ $raw_response = wp_remote_post( 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/update-check/1.0/', $options );
350
 
351
  if ( is_wp_error( $raw_response ) || 200 != wp_remote_retrieve_response_code( $raw_response ) ) {
352
  $result['error'] = __( "Something went wrong. Please try again later. If the error appears again, please contact us", 'bestwebsoft' ) . ' <a href="https://support.bestwebsoft.com">BestWebSoft</a>. ' . __( "We are sorry for inconvenience.", 'bestwebsoft' );
369
  if ( empty( $result['error'] ) ) {
370
  $bstwbsftwppdtplgns_options[ $bws_license_plugin ] = $bws_license_key;
371
 
372
+ $url = 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/downloads/?bws_first_download=' . $bws_license_plugin . '&bws_license_key=' . $bws_license_key . '&download_from=5';
373
  $uploadDir = wp_upload_dir();
374
  $zip_name = explode( '/', $bws_license_plugin );
375
 
bws_menu/fonts/bwsicons.eot ADDED
Binary file
bws_menu/fonts/bwsicons.svg ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <metadata>Generated by IcoMoon</metadata>
5
+ <defs>
6
+ <font id="bwsicons" horiz-adv-x="1024">
7
+ <font-face units-per-em="1024" ascent="960" descent="-64" />
8
+ <missing-glyph horiz-adv-x="1024" />
9
+ <glyph unicode="&#x20;" horiz-adv-x="512" d="" />
10
+ <glyph unicode="&#xe900;" glyph-name="adsense" d="M931.008 408.576h-273.408l-219.776-472.576h393.792l167.68 366.080c22.848 49.856-13.504 106.496-68.288 106.496zM470.656 896c-27.392 0-52.48-15.744-64.128-40.896l-424.32-919.104h384l448 960h-343.552z" />
11
+ <glyph unicode="&#xe901;" glyph-name="captcha" d="M689.344 966.272l-177.344-177.216-177.344 177.28c-156.544-54.208-280.448-178.112-334.656-334.592l177.344-177.28-177.344-177.216c54.208-156.48 178.176-280.32 334.656-334.528l177.344 177.28 177.344-177.28c156.544 54.208 280.448 178.048 334.656 334.528l-177.344 177.28 177.344 177.216c-54.208 156.48-178.176 280.384-334.656 334.528zM640.192 245.888c-26.368-40.192-74.88-51.968-118.528-51.968-42.304 0-93.568 12.48-121.344 31.168l6.976 111.552c33.984-58.88 131.008-83.84 142.080-22.208 4.16 27.136-6.272 54.848-29.824 71.424-46.4 31.936-112.256 27.776-137.216 97.728-17.344 48.512-8.32 114.304 4.864 142.72 24.96 56.128 78.336 88.832 165.632 85.312 22.208-0.704 59.648-10.368 81.088-28.416l-15.936-120.64c-18.048 38.080-43.648 49.152-66.56 49.92-39.552 0-63.808-25.664-66.56-63.744-2.752-36.096 14.592-54.080 47.168-67.904 68.608-28.416 119.232-45.76 128.96-135.808 3.392-36.032-4.864-74.816-20.8-99.136z" />
12
+ <glyph unicode="&#xe902;" glyph-name="car-rental" d="M967.232 539.84c30.272 8.704 52.416 36.608 52.416 69.696 0 40.064-25.344 59.52-65.408 59.52h-46.528l-33.024 126.144c-36.288 108.8-153.152 100.672-153.152 100.672h-442.24c0 0-93.568 8.128-129.856-100.672l-33.088-126.208h-46.528c-40.064 0-65.408-19.456-65.408-59.52 0-33.088 22.144-60.928 52.416-69.696-32-26.56-56.832-58.624-56.832-103.424v-162.88c0-20.928 23.808-43.84 46.528-46.528v-116.352c0-20.032 3.264-46.592 23.296-46.592h162.944c19.968 0 23.232 26.56 23.232 46.528v81.472h512v-81.472c0-19.968 3.264-46.528 23.296-46.528h162.944c20.032 0 23.296 26.56 23.296 46.528v116.352c24.064-1.344 46.464 25.6 46.464 46.528v162.944c0 44.8-24.768 76.864-56.768 103.488zM160 360c-53.056 0-96 34.048-96 76.032 0 41.92 42.944 75.968 96 75.968s96-34.048 96-75.968c0-41.984-42.944-76.032-96-76.032zM768 436.032c0 41.92 42.944 75.968 96 75.968s96-34.048 96-75.968c0-41.984-42.944-76.032-96-76.032s-96 34.048-96 76.032zM721.472 256h-418.944c-9.984 0-23.296 29.184-23.296 46.528 0 17.408 13.248 46.528 23.296 46.528h418.88c9.984 0 23.296-29.12 23.296-46.528 0-17.344-13.248-46.528-23.232-46.528zM139.648 575.936l67.456 207.744c17.536 52.608 120.96 60.736 110.656 60.736h388.544c-10.304 0 93.12-8.128 110.656-60.736l67.456-207.744h-744.768z" />
13
+ <glyph unicode="&#xe903;" glyph-name="contact-form-multi" d="M896 192l-64-64v512h-768l64 64h768zM1024 320l-64-64v512h-768l64 64h768zM164.544 393.344l-164.544 109.504v-333.44zM554.048 357.824l-167.552-108.032-169.344 109.504-211.904-295.296h759.424zM606.72 391.808l161.28-219.52v330.56zM386.56 325.76l381.44 250.24h-762.752z" />
14
+ <glyph unicode="&#xe904;" glyph-name="contact-form-to-db" horiz-adv-x="768" d="M761.536 960l-376.768-256-376.704 256zM766.528 116.672c0-99.776-173.504-180.672-381.696-180.672s-382.912 80.896-382.912 180.672v101.632c0-99.776 174.72-161.856 382.912-161.856s381.696 62.016 381.696 161.856v-101.632zM766.528 308.736c0-99.84-173.504-180.736-381.696-180.736s-382.912 80.896-382.912 180.736v101.568c0-99.776 174.72-161.856 382.912-161.856s381.696 62.016 381.696 161.856v-101.568zM384.768 320c-208.192 0-382.848 65.28-382.848 145.856v33.792l224.512 215.68 157.888-107.328 160.768 107.392 221.44-215.68v-33.792c0-80.64-173.568-145.92-381.76-145.92zM768 608l-148.416 156.736 148.416 99.264zM0 864l148.992-99.264-148.992-156.736z" />
15
+ <glyph unicode="&#xe905;" glyph-name="contact-form" d="M1024 768l-512-322.88-512 322.88zM0 668.672l241.152-148.8-241.152-263.872zM1024 256l-241.152 263.872 241.152 148.8zM0 128l320 346.496 192-125.184 195.84 125.184 316.16-346.496z" />
16
+ <glyph unicode="&#xe906;" glyph-name="custom-admin-page" d="M1023.488 120.512c-0.128-6.592-2.56 14.080-8.768 22.656-13.632 18.752-35.2 32.448-68.608 45.12-57.408 21.696-71.040 29.312-71.040 29.312l-0.576 49.984c0 0 21.504 15.040 28.224 62.144 0 0 11.264 6.336 18.688 25.856 3.968 10.368 7.808 45.568-8.576 42.432 0 0 9.536 41.472-3.584 82.176-6.72 20.928-21.76 35.136-44.288 35.136-9.28 9.28-29.12 18.24-55.296 19.52h-0.192c-52.352-2.496-80-14.208-97.088-54.656-21.76-51.264-6.080-82.176-6.080-82.176-16.448 3.136-12.544-32.064-8.576-42.432 7.424-19.52 18.688-25.856 18.688-25.856 6.656-47.104 28.16-62.144 28.16-62.144l-0.576-49.984c0 0-13.632-7.552-71.040-29.312-33.344-12.672-54.912-26.304-68.608-45.12-6.208-8.64-8.896-16.128-8.768-22.656 1.216-3.264-3.84-54.656 18.176-55.616h398.912c14.848 0 10.816 19.712 10.816 55.616zM64 640h704v-64c37.632 14.656 37.568 11.52 64 0v194.624c0 32.32-28.992 61.376-61.376 61.376h-704.448c-32.384 0-66.176-31.68-66.176-64v-640c0-32.32 33.792-64 66.176-64h490.944c0 0-15.936 24.512 0 64h-493.12v512zM320 768h64v-64h-64v64zM192 768h64v-64h-64v64zM64 768h64v-64h-64v64zM552.32 156.928c0.256 0.576-0.32 0.832 0 0v0z" />
17
+ <glyph unicode="&#xe907;" glyph-name="custom-fields-search" d="M1018.56 78.592l-242.24 242.112c39.424 63.872 62.208 139.264 62.208 220.16 0 231.296-187.776 419.136-419.2 419.136-231.872 0-419.328-187.84-419.328-419.136 0-231.808 187.456-419.648 419.328-419.648 84.992 0 163.776 25.28 229.696 68.416l240.512-240.448c12.416-12.416 43.52-1.664 69.312 24l36.032 36.16c25.728 25.664 36.544 56.768 23.68 69.248zM419.264 260.544c-154.688 0-280.32 125.632-280.32 280.256 0 154.688 125.632 279.872 280.32 279.872s279.936-125.248 279.936-279.872c0-154.624-125.248-280.256-279.936-280.256zM461.888 384h-155.776c-9.984 0-18.112 8.128-18.112 18.112v27.776c0 9.984 8.128 18.112 18.112 18.112h155.712c10.048 0 18.176-8.128 18.176-18.112v-27.712c0-10.048-8.128-18.176-18.112-18.176zM525.888 576h-219.776c-9.984 0-18.112-8.128-18.112-18.112v-27.712c0-10.048 8.128-18.176 18.112-18.176h219.712c10.048 0 18.176 8.128 18.176 18.112v27.776c0 9.984-8.128 18.112-18.112 18.112zM525.888 704h-219.776c-9.984 0-18.112-8.128-18.112-18.112v-27.712c0-10.048 8.128-18.176 18.112-18.176h219.712c10.048 0 18.176 8.128 18.176 18.112v27.776c0 9.984-8.128 18.112-18.112 18.112z" />
18
+ <glyph unicode="&#xe908;" glyph-name="custom-search" d="M1018.56 65.728l-242.24 242.112c39.424 63.872 62.208 139.264 62.208 220.16 0 231.36-187.84 419.136-419.264 419.136-231.808 0-419.264-187.84-419.264-419.136 0-231.808 187.456-419.648 419.328-419.648 84.992 0 163.776 25.28 229.696 68.416l240.512-240.448c12.416-12.416 43.52-1.664 69.312 24l36.032 36.16c25.728 25.664 36.544 56.768 23.68 69.248zM419.264 247.744c-154.688 0-280.32 125.632-280.32 280.256 0 154.688 125.632 279.872 280.32 279.872s279.936-125.248 279.936-279.872c0-154.688-125.248-280.256-279.936-280.256z" />
19
+ <glyph unicode="&#xe909;" glyph-name="db-manager" d="M388.672 232.064c-0.96-0.064-1.92-0.064-2.88-0.064-7.872-0.192-15.744-0.32-23.744-0.32-0.256 0-0.576 0-0.896 0-7.424 0-14.784 0.128-22.144 0.32-1.344 0-2.752 0.064-4.16 0.064-7.488 0.192-14.848 0.576-22.208 0.96-0.96 0.064-1.984 0.064-3.008 0.192-15.616 0.832-30.912 2.112-45.76 3.712-118.272 12.736-222.080 48.064-255.552 92.864-3.392 4.544-6.208 6.272-8.32 6.464v-140.928c27.2-70.912 182.912-125.056 358.848-125.696h6.336c0.704 0 1.344 0 2.048 0l3.904 0.064v0.064c36.544 0.384 71.616 3.2 104.576 7.808-37.376 43.456-62.848 96.704-72.384 155.136-4.864-0.256-9.728-0.576-14.656-0.64zM1024 221.568v68.992l-61.248 21.632c-4.224 14.72-10.048 28.672-17.28 41.792l27.904 58.688-48.768 48.768-58.688-27.968c-13.056 7.232-27.072 13.056-41.664 17.344l-21.76 61.184h-68.928l-21.824-61.12c-14.656-4.288-28.608-10.112-41.728-17.344l-58.688 27.904-48.768-48.768 27.968-58.688c-7.232-13.12-13.12-27.072-17.344-41.792l-61.184-21.632v-68.992l61.184-21.76c4.224-14.592 10.048-28.544 17.344-41.728l-27.968-58.688 48.768-48.768 58.688 27.968c13.12-7.296 27.072-13.12 41.728-17.28l21.824-61.312h68.928l21.76 61.248c14.592 4.224 28.608 9.984 41.664 17.28l58.688-27.968 48.768 48.768-27.904 58.688c7.232 13.056 13.056 27.136 17.28 41.728l61.248 21.824zM768 162.048c-51.84 0-93.952 42.112-93.952 93.888 0 51.904 42.048 93.888 93.952 93.888 51.84 0 93.888-42.048 93.888-93.888 0-51.776-42.048-93.888-93.888-93.888zM361.984 582.4v0c188.992 0 354.304 54.144 366.4 122.432v75.776c-12.096 64.448-177.408 115.392-366.4 115.392v0c-177.344 0-334.656-44.928-361.984-103.744v-99.776c27.328-62.336 184.64-110.080 361.984-110.080zM413.824 493.248c-0.704 0-1.408-0.064-2.24-0.128-7.488-0.32-15.168-0.64-22.912-0.896-1.024-0.064-1.984-0.064-2.944-0.064-7.872-0.192-15.744-0.384-23.744-0.384-0.256 0-0.576 0-0.896 0-7.424 0-14.784 0.128-22.144 0.384-1.344 0-2.752 0.064-4.16 0.128-7.424 0.192-14.784 0.512-22.144 0.896-0.96 0-1.984 0.064-2.944 0.192-15.616 0.832-30.912 2.112-45.824 3.648-118.272 12.736-222.080 48.064-255.552 92.8-3.392 4.672-6.208 6.4-8.32 6.592v-140.928c27.2-70.912 182.912-125.056 358.848-125.696h6.336c0.704 0 1.344 0 2.048 0l3.904 0.064v0.064c10.688 0.128 21.248 0.512 31.744 0.96 9.984 64.96 39.936 123.456 83.712 169.536-8.384-1.216-16.96-2.304-25.664-3.264-15.296-1.664-30.976-2.944-47.104-3.904z" />
20
+ <glyph unicode="&#xe90a;" glyph-name="donate-button" d="M0 256h320v-320h384v320h320v384h-320v320h-384v-320h-320v-384z" />
21
+ <glyph unicode="&#xe90b;" glyph-name="email-queue" d="M964.288 37.312c0-20.572-17.049-37.248-38.080-37.248s-38.080 16.676-38.080 37.248c0 20.572 17.049 37.248 38.080 37.248s38.080-16.676 38.080-37.248zM708.288 37.312c0-20.572-17.049-37.248-38.080-37.248s-38.080 16.676-38.080 37.248c0 20.572 17.049 37.248 38.080 37.248s38.080-16.676 38.080-37.248zM836.288 37.312c0-20.572-17.049-37.248-38.080-37.248s-38.080 16.676-38.080 37.248c0 20.572 17.049 37.248 38.080 37.248s38.080-16.676 38.080-37.248zM903.68 849.024c-85.632 73.984-203.2 110.976-352.64 110.976-172.608 0-310.080-52.224-412.544-156.672-92.352-93.696-138.496-207.552-138.496-341.568 0-112.64 38.016-211.904 113.984-297.856 94.912-107.264 222.528-160.96 398.016-160.96 90.304 0 86.080 71.616 16.384 71.616-149.056 0-256.32 41.216-336.96 123.904-68.864 69.888-103.296 156.224-103.296 259.008 0 117.568 36.096 215.168 108.352 292.864 84.352 91.264 206.336 136.896 365.888 136.896 115.008 0 206.528-27.264 274.56-81.728 68.096-54.464 102.080-129.408 102.080-224.768 0-78.912-19.008-142.848-57.024-191.744-37.952-48.96-80.96-73.344-128.768-73.344-14.72 0-27.84 4.224-39.36 12.608-11.584 8.384-17.28 21.888-17.28 40.384 0 9.92 1.472 21.184 4.416 33.92 2.88 12.736 7.552 29.568 13.824 50.56l83.776 270.080h-92.608l-31.488-103.616c-1.728 34.112-16.512 63.296-44.48 87.552-27.84 24.256-63.232 36.416-106.048 36.416-62.976 0-121.92-31.232-176.64-93.696-54.784-62.528-82.176-134.656-82.176-216.512 0-57.536 16.064-104.576 48.192-141.184s73.984-54.912 125.632-54.912c36.096 0 71.168 9.856 105.152 29.312 33.984 19.584 62.144 52.928 84.416 100.288-1.28-5.376-2.368-10.496-3.2-15.488-0.832-4.928-1.28-9.6-1.28-14.144 0-27.52 9.856-51.072 29.632-70.656 19.712-19.456 50.368-29.312 91.968-29.312 70.976 0 135.104 33.216 192.384 99.584 57.28 66.432 85.952 146.496 85.952 240.192 0 111.424-40.128 202.112-120.32 272zM596.992 404.672c-31.616-64.768-75.776-97.088-132.352-97.088-27.328 0-49.984 10.56-67.904 31.744-18.048 21.12-27.072 51.904-27.072 92.16 0 54.656 17.536 109.632 52.48 164.992 35.072 55.296 76.544 82.88 124.288 82.88 30.656 0 54.592-10.176 72-30.464 17.408-20.416 26.176-43.328 26.176-68.8-0.064-52.096-15.872-110.656-47.616-175.424z" />
22
+ <glyph unicode="&#xe90c;" glyph-name="error-log-viewer" d="M576 960v-320h320zM448 352v-128c0-17.664 14.336-32 32-32s32 14.336 32 32v128c0 17.664-14.336 32-32 32s-32-14.336-32-32zM512 960h-384v-1024h768v640h-384v384zM352 128h-160v320h64v-256h96v-64zM640 352c0 52.992 43.008 96 96 96s96-43.008 96-96h-64c0 17.664-14.336 32-32 32s-32-14.336-32-32v-128c0-17.664 14.336-32 32-32s32 14.336 32 32v32h-32v64h96v-96c0-52.992-43.008-96-96-96s-96 43.008-96 96v128zM576 352v-128c0-52.992-43.008-96-96-96s-96 43.008-96 96v128c0 52.992 43.008 96 96 96s96-43.008 96-96z" />
23
+ <glyph unicode="&#xe90d;" glyph-name="facebook-button" d="M748.864 771.584l-23.552 1.472-23.552 3.008-55.936 7.296h-3.008c-5.824 0-11.776-1.472-14.656-2.944l-11.84-5.824c-5.824-3.008-10.304-8.896-14.656-13.312-7.36-11.776-10.24-25.024-10.24-41.28 0-72.064 1.536-104.704 1.536-106.176l150.016-1.536-22.144-159.808-129.408-4.48v-512h-201.408v514.88h-120.832v162.112h116.352c1.472 0 4.48 45.312 4.48 143.872 0 7.36 0 11.84 0 19.2s0 14.72 0 22.016c1.472 7.36 1.472 13.248 2.944 20.672 1.472 7.296 4.48 14.656 7.36 20.544 8.832 27.968 21.76 50.048 42.304 69.184h-1.472l35.328 27.968c16.192 8.832 36.864 16.192 58.88 19.136l19.136 4.416c11.84 0 20.672 0 26.496 0l187.008-14.784-19.136-173.632z" />
24
+ <glyph unicode="&#xe90e;" glyph-name="featured-posts" d="M128 576h256v-64h-256v64zM128 448h128v-64h-128v64zM128 320h128v-64h-128v64zM128 704h512v-64h-512v64zM128 832h512v-64h-512v64zM768 626.432v234.496c0 54.592-43.136 99.072-96.128 99.072h-575.744c-52.992 0-96.128-44.48-96.128-99.072v-697.792c0-54.656 43.136-99.136 96.128-99.136h304.384c64.576-78.080 162.176-127.872 271.424-127.872 194.432 0 352 157.568 352 351.936 0.064 161.024-108.288 296.512-255.936 338.368zM320 288.064c0-57.728 14.144-112 38.784-160.064h-262.656c-16.96 0-32.128 15.104-32.128 33.728v699.2c0 18.624 15.168 35.072 32.128 35.072h575.68c17.024 0 32.192-16.448 32.192-35.072v-222.528c-10.56 0.96-21.184 1.6-32 1.6-194.432 0-352-157.568-352-351.936zM917.76 317.504l-109.376-97.408 36.48-148.224c8.128-25.408-20.288-50.752-44.544-33.856l-125.632 80.448-125.568-80.448c-20.224-16.96-52.672 4.224-44.544 33.856l32.448 148.224-109.44 97.408c-20.224 16.96-12.16 55.040 12.16 55.040l145.856 12.736 56.704 139.712c12.16 25.472 44.608 25.472 56.768 0l56.704-139.712 145.856-12.736c24.256 0 36.416-38.080 16.128-55.040z" />
25
+ <glyph unicode="&#xe90f;" glyph-name="gallery-categories" d="M932.992 832h-351.936c-77.696-0.832-101.888-2.304-123.072 21.888l-7.552 12.928c-40.704 59.776-54.912 53.376-131.968 53.376h-227.52c-50.112 0-90.944-40.768-90.944-90.944v-802.304c0-50.176 40.832-90.944 90.944-90.944h842.048c50.24 0 91.008 40.832 91.008 90.944v707.712c0 50.112-40.768 97.344-91.008 97.344zM384 128h-128v128h128v-128zM384 320h-128v128h128v-128zM384 512h-128v128h128v-128zM448 640h128v-128h-128v128zM576 128h-128v128h128v-128zM576 320h-128v128h128v-128zM768 128h-128v128h128v-128zM768 320h-128v128h128v-128zM768 512h-128v128h128v-128z" />
26
+ <glyph unicode="&#xe910;" glyph-name="gallery" d="M256-64h-256v256h256v-256zM256 320h-256v256h256v-256zM256 704h-256v256h256v-256zM640-64h-256v256h256v-256zM640 320h-256v256h256v-256zM640 704h-256v256h256v-256zM1024-64h-256v256h256v-256zM1024 320h-256v256h256v-256zM1024 704h-256v256h256v-256z" />
27
+ <glyph unicode="&#xe911;" glyph-name="google-analytics" d="M1024 489.728l-180.224 110.4c4.608 12.48 7.488 25.792 7.488 39.936 0 64-51.84 115.84-115.84 115.84s-115.84-51.904-115.84-115.84c0-30.4 11.968-57.792 31.040-78.464l-138.24-209.024c-11.904 4.16-24.512 6.848-37.824 6.848-32.192 0-61.248-13.12-82.24-34.304l-65.28 37.44c2.496 9.472 4.288 19.264 4.288 29.504 0 64-51.84 115.84-115.84 115.84s-115.84-51.904-115.84-115.84c0-22.016 6.464-42.368 17.088-59.84l-112.128-112.064c-0.32-0.448 39.616-39.616 40-40.064l112.448 112.448c17.216-10.112 36.992-16.32 58.432-16.32 33.344 0 63.168 14.272 84.288 36.8l64.192-36.8c-3.072-10.432-5.248-21.184-5.248-32.64 0-64 51.84-115.84 115.84-115.84s115.84 51.904 115.84 115.84c0 30.144-11.776 57.408-30.72 78.016l138.432 209.28c11.776-4.032 24.128-6.656 37.248-6.656 29.376 0 55.872 11.264 76.288 29.312l183.616-112.448 28.736 48.64z" />
28
+ <glyph unicode="&#xe912;" glyph-name="google-captcha" d="M960 640v255.232l-82.56-82.88c-93.056 91.264-220.864 147.648-361.984 147.648-284.672 0-515.456-229.184-515.456-512 0-282.752 230.784-512 515.456-512 141.44 0 269.504 56.576 362.624 148.224l-89.984 89.408c-70.080-68.736-166.4-111.168-272.64-111.168-214.336 0-388.16 172.608-388.16 385.6 0 212.928 173.76 385.536 388.16 385.536 106.176 0 202.432-42.368 272.512-111.040l-83.008-82.56h255.040zM512 480c0 52.992-43.008 96-96 96h-96v-320h64v128h21.248l42.752-128h64l-47.296 141.696c28.16 16.704 47.296 47.168 47.296 82.304zM384 511.232h32c17.664 0 32-14.336 32-32s-14.336-32-32-32h-32v64zM768 512v64h-192v-320h192v64h-128v64h64v64h-64v64z" />
29
+ <glyph unicode="&#xe913;" glyph-name="google-maps" horiz-adv-x="960" d="M480 960c-159.040 0-288-125.248-288-279.744 0-71.808 8.64-125.888 100.8-260.224 150.272-218.944 187.2-484.032 187.2-484.032s36.928 265.088 187.2 484.032c92.16 134.336 100.8 188.416 100.8 260.224 0 154.496-128.896 279.744-288 279.744zM480 552.256c-70.72 0-128 57.344-128 128 0 70.72 57.28 128 128 128s128-57.28 128-128c0-70.72-57.28-128-128-128z" />
30
+ <glyph unicode="&#xe914;" glyph-name="google-one" d="M853.824 404.928v-84.928h85.44v84.928h84.736v85.568h-84.736v85.504h-85.44v-85.504h-85.824v-85.568zM640 453.888c0 19.136-1.728 37.376-5.184 55.616h-308.032v-114.688h184.704c-13.632-92.224-98.752-143.424-184.704-143.424-113.152 0-203.328 95.552-203.328 210.304 0 114.688 90.176 210.304 203.328 210.304 47.616 0 95.36-16.576 130.24-51.328l88.448 87.808c-60.416 57.408-136.128 86.912-218.688 86.912-181.248 0-326.784-149.44-326.784-333.696s145.536-333.696 326.784-333.696c188.032 0 313.216 135.552 313.216 325.888z" />
31
+ <glyph unicode="&#xe915;" glyph-name="google-shortlink" d="M487.616 106.24l-113.152-113.152c-80.64-80.64-217.088-74.944-304.768 12.736s-93.376 224.128-12.736 304.768l113.152 113.152c56 55.936 138.816 70.272 213.632 44.48l-224.704-224.704c-43.136-43.136-45.248-110.976-4.672-151.552 40.512-40.512 108.352-38.464 151.488 4.736l225.472 225.472c26.944-75.392 12.864-159.36-43.712-215.936zM308.928 325.696l326.4 326.208c22.72 22.592 59.008 22.976 81.28 0.704s21.952-58.624-0.704-81.28l-326.4-326.4c-22.656-22.656-59.072-22.976-81.28-0.704-22.336 22.272-21.952 58.624 0.704 81.28l0.064 0.064-0.064 0.128zM967.040 585.6l-108.736-108.672c-56.576-56.576-140.544-70.656-215.872-43.776l225.024 225.024c43.136 43.136 45.248 110.976 4.672 151.488-40.576 40.576-108.416 38.464-151.552-4.672l-224.256-224.256c-25.856 74.816-11.456 157.632 44.48 213.632l108.736 108.736c80.64 80.64 217.088 74.944 304.768-12.736 87.68-87.744 93.376-224.128 12.736-304.768z" />
32
+ <glyph unicode="&#xe916;" glyph-name="google-sitemap" d="M768 384v-96h-128v96h-96v128h96v256h-256v-256h96v-128h-96v-96h-128v96h-256v-256h256v96h128v-96h256v96h128v-96h256v256z" />
33
+ <glyph unicode="&#xe917;" glyph-name="htaccess" d="M512 960v-256h256zM576 303.68v12.16c0 111.808 82.56 196.16 192 196.16v128h-320v320h-384v-960h448v214.272c0 42.24 27.456 72.64 64 89.408zM896 256v59.84c0 75.712-52.288 132.16-128 132.16s-128-56.448-128-132.16v-61.376c-25.28-1.408-64-14.528-64-40.128v-230.208c0-26.624 30.912-48.128 57.472-48.128h279.232c26.56 0 47.296 21.504 47.296 48.128v230.208c0 25.6-38.784 40.256-64 41.664zM831.104 14.080c1.472-3.136 1.088-6.72-0.896-9.536-2.048-2.816-5.312-4.544-8.96-4.544h-106.432c-3.584 0-6.912 1.728-9.024 4.544-1.92 2.816-2.304 6.464-0.896 9.536l25.728 79.296c-13.632 10.56-26.624 26.432-26.624 43.2 0 30.72 31.36 55.808 64 55.808 32.512 0 64-25.088 64-55.808 0-16.768-12.992-32.64-26.56-43.2l25.664-79.296zM832 256h-128v59.84c0 38.144 25.856 66.752 64 66.752s64-28.608 64-66.752v-59.84z" />
34
+ <glyph unicode="&#xe918;" glyph-name="job-board" d="M640 356.16c0.064-28.608-12.864-36.16-41.408-36.16h-171.52c-28.608 0-43.072 7.552-43.072 36.16v18.432c-134.208 9.024-257.984 39.936-384 73.472v-355.712c0-51.008 33.472-92.352 84.416-92.352h847.296c50.944 0 92.288 41.344 92.288 92.352v355.648c-125.952-33.472-249.728-64.384-384-73.408v-18.432zM462.848 384h98.24c8.256 0 14.912 6.656 14.912 14.848v98.304c0 8.192-6.656 14.848-14.848 14.848h-98.304c-8.192 0-14.848-6.656-14.848-14.848v-98.24c0-8.256 6.656-14.912 14.848-14.912zM931.648 832h-227.648v20.864c0 60.352-29.504 107.136-89.856 107.136h-203.776c-60.352 0-90.368-46.784-90.368-107.136v-20.864h-235.328c-51.008 0-84.48-41.344-84.48-92.352v-144.256c125.952-33.472 249.6-73.664 383.808-82.688v12.864c0 28.608 22.464 51.712 51.008 51.712h154.112c28.544 0 50.88-23.104 50.88-51.712v-13.568c134.208 9.024 258.048 49.92 384 83.392v144.256c0 51.008-41.344 92.352-92.352 92.352zM640 832h-256v27.84c0 21.376 20.48 36.16 41.856 36.16h172.288c21.312 0 41.856-19.648 41.856-40.96v-23.040z" />
35
+ <glyph unicode="&#xe919;" glyph-name="latest-posts" d="M128.016 576.080h256.032v-64.008h-256.032v64.008zM128.016 448.064h128.016v-64.008h-128.016v64.008zM128.016 320.048h128.016v-64.008h-128.016v64.008zM128.016 704.096h512.064v-64.008h-512.064v64.008zM128.016 832.112h512.064v-64.008h-512.064v64.008zM768.096 626.518v234.525c0 54.663-43.141 99.084-96.14 99.084h-575.816c-52.999 0-96.14-44.486-96.14-99.084v-697.943c0-54.663 43.141-99.084 96.14-99.084h304.422c64.584-78.090 162.196-127.888 271.458-127.888 194.456 0 352.044 157.588 352.044 351.98 0.064 161.044-108.302 296.549-255.968 338.41zM96.14 128.024c-16.962 0-32.132 15.106-32.132 33.732v699.287c0 18.626 15.17 35.076 32.132 35.076h575.752c17.026 0 32.196-16.45 32.196-35.076v-222.556c-10.561 0.96-21.187 1.6-32.004 1.6-194.456 0-352.044-157.588-352.044-351.98 0-57.735 14.146-112.014 38.789-160.084h-262.689zM768.096 255.976h-128.016v256.032h64.008v-192.024h64.008v-64.008z" />
36
+ <glyph unicode="&#xe91a;" glyph-name="limit-attempts" d="M990.208 314.24v55.104c0 50.88-42.432 78.656-94.144 78.656-51.776 0-93.696-27.776-93.696-78.656v-56.192c-17.28-0.96-34.368-9.728-34.368-26.944v-125.888c0-17.856 14.72-32.32 32.896-32.32h190.784c18.176 0 32.32 14.464 32.32 32.32v125.888c0 17.216-16.576 27.072-33.792 28.032zM926.016 182.016c-0.96-1.408-2.56-2.304-4.352-2.304h-51.392c-1.728 0-3.328 0.832-4.352 2.304-0.96 1.408-1.152 3.264-0.448 4.8l12.416 31.168c-6.592 5.312-10.496 13.248-10.496 21.696 0 15.488 12.8 28.032 28.544 28.032 15.68 0 28.544-12.608 28.544-28.032 0-8.448-3.904-16.384-10.496-21.696l12.416-31.168c0.768-1.6 0.576-3.392-0.384-4.8zM955.328 312.832h-119.168v56.512c0 25.6 34.304 44.864 60.416 44.864 26.048 0 58.752-19.2 58.752-44.864v-56.512zM315.008 460.8c-4.928-2.944-19.648-8.896-33.472-12.8 13.76-3.904 28.544-9.856 33.408-12.8 9.856-4.928 12.8-16.704 6.912-26.56s-16.704-12.8-26.56-6.912c-4.928 2.944-17.728 12.8-27.52 23.616 3.968-13.696 5.952-30.464 5.952-36.352 0-10.816-8.832-19.648-18.688-19.648s-18.688 8.832-18.688 19.648c0 5.888 1.984 22.592 5.888 36.352-9.856-10.816-22.592-20.672-27.52-23.616-7.872-5.824-19.712-2.88-24.576 6.912s-2.944 21.632 6.848 26.56c4.928 2.944 19.648 8.896 33.472 12.8-13.824 3.904-28.544 9.856-33.472 12.8-9.856 4.928-12.8 16.704-6.912 26.56 4.928 9.856 16.704 12.8 25.536 6.912 4.928-2.944 17.728-12.8 27.52-23.616-3.84 13.696-5.824 30.464-5.824 36.352 0 10.816 8.832 19.648 18.688 19.648s18.688-8.832 18.688-19.648c0-5.888-1.984-22.592-5.888-36.352 9.856 10.816 22.592 20.672 27.52 23.616 8.832 5.888 20.672 2.944 25.536-6.912 5.952-9.856 2.944-21.632-6.848-26.56zM507.008 460.8c-4.928-2.944-19.648-8.896-33.472-12.8 13.76-3.904 28.544-9.856 33.408-12.8 9.856-4.928 12.8-16.704 6.912-26.56s-16.704-12.8-26.56-6.912c-4.928 2.944-17.728 12.8-27.52 23.616 3.968-13.696 5.952-30.464 5.952-36.352 0-10.816-8.832-19.648-18.688-19.648s-18.688 8.832-18.688 19.648c0 5.888 1.984 22.592 5.888 36.352-9.856-10.816-22.592-20.672-27.52-23.616-7.872-5.824-19.712-2.88-24.576 6.912s-2.944 21.632 6.848 26.56c4.928 2.944 19.648 8.896 33.472 12.8-13.824 3.904-28.544 9.856-33.472 12.8-9.856 4.928-12.8 16.704-6.912 26.56 4.928 9.856 16.704 12.8 25.536 6.912 4.928-2.944 17.728-12.8 27.52-23.616-3.84 13.696-5.824 30.464-5.824 36.352 0 10.816 8.832 19.648 18.688 19.648s18.688-8.832 18.688-19.648c0-5.888-1.984-22.592-5.888-36.352 9.856 10.816 22.592 20.672 27.52 23.616 8.832 5.888 20.672 2.944 25.536-6.912 5.952-9.856 2.944-21.632-6.848-26.56zM699.008 460.8c-4.928-2.944-19.648-8.832-33.408-12.8 13.76-3.904 28.544-9.856 33.408-12.8 9.856-4.928 12.8-16.704 6.912-26.56s-16.704-12.8-26.56-6.912c-4.928 2.944-17.728 12.8-27.52 23.616 3.904-13.76 5.888-30.464 5.888-36.352 0-10.816-8.832-19.648-18.688-19.648s-18.688 8.832-18.688 19.648c0 5.888 1.984 22.592 5.888 36.352-9.856-10.816-22.592-20.672-27.52-23.616-7.872-5.824-19.712-2.88-24.576 6.912s-2.944 21.632 6.848 26.56c4.928 2.944 19.648 8.896 33.472 12.8-13.824 3.904-28.544 9.856-33.472 12.8-9.856 4.928-12.8 16.704-6.912 26.56 4.928 9.856 16.704 12.8 25.536 6.912 4.928-2.944 17.728-12.8 27.52-23.616-3.84 13.696-5.824 30.464-5.824 36.352 0 10.816 8.832 19.648 18.688 19.648s18.688-8.832 18.688-19.648c0-5.888-1.984-22.592-5.888-36.352 9.856 10.816 22.592 20.672 27.52 23.616 8.832 5.888 20.672 2.944 25.536-6.912 5.952-9.856 2.944-21.632-6.848-26.56zM704 320h-640v256h768v-64h64v48.448c0 43.904-36.736 79.552-81.92 79.552h-732.16c-5.632 0-11.136-0.576-16.448-1.6-2.688-0.576-5.312-1.216-7.872-1.984-33.344-10.112-57.6-40.32-57.6-75.968v0-224.96c0-32.896 20.672-61.184 50.112-73.28 4.928-1.984 10.048-3.584 15.36-4.672 5.312-0.96 10.816-1.536 16.448-1.536h622.080v64z" />
37
+ <glyph unicode="&#xe91b;" glyph-name="linkedin" d="M232.704-64h-220.032v660.608h219.968v-660.608zM212.992 719.296c-22.848-21.824-52.992-32.64-90.304-32.64h-1.344c-36.416 0-65.792 10.88-88 32.64s-33.344 48.896-33.344 81.28c0 32.896 11.456 60.096 34.304 81.664 22.912 21.568 52.8 32.32 89.728 32.32 36.864 0 66.432-10.816 88.64-32.32 22.208-21.568 33.536-48.768 33.984-81.664 0.448-32.384-10.752-59.52-33.664-81.28zM1024-64h-219.328v353.344c0 46.656-9.024 83.2-27.008 109.632-18.048 26.432-46.080 39.616-84.352 39.616-28.032 0-51.456-7.68-70.336-22.976s-32.96-34.304-42.304-56.96c-4.928-13.312-7.36-31.296-7.36-54.016v-368.64h-219.328c0.896 177.344 1.344 321.152 1.344 431.36s-0.192 176-0.704 197.248l-0.64 32h219.328v-94.080c8.448 13.44 17.088 25.28 25.984 35.392 9.344 10.688 21.888 22.208 37.696 34.688 15.808 12.416 35.136 22.080 57.984 28.992 22.912 6.912 48.384 10.368 76.352 10.368 76.032 0 137.088-25.216 183.36-75.648 46.208-50.432 69.312-124.352 69.312-221.632v-378.688z" />
38
+ <glyph unicode="&#xe91c;" glyph-name="multilanguage" d="M152.64 228.224c0.128 0 17.28 0.32 23.616 4.032 16.128 10.048 37.888 34.752 56.96 57.152l5.952 6.912c24.192 27.712 48.704 59.776 73.024 95.552 4.48-3.328 10.368-7.872 15.168-11.584 9.408-7.168 18.816-14.4 22.912-17.024 9.088-5.952 43.904-24.96 52.224-28.672 1.472-0.576 3.84-1.536 6.592-2.688 17.152-7.168 26.368-10.624 32.192-10.624 6.336 0 9.728 3.968 10.816 7.68 1.216 4.736-3.136 38.784-14.72 42.56-3.776 1.408-71.232 28.992-81.216 33.6-5.76 2.816-17.472 7.68-27.136 11.712l-0.256 0.128c25.216 39.168 39.040 65.664 39.296 66.112 1.472 3.136 6.272 12.416 11.648 22.976 19.904 38.848 21.056 41.344 21.568 43.968 0.576 3.264 1.472 17.28 0.512 21.952l-2.752 8.128h-7.68c-3.584 0-7.232-1.472-13.312-3.84-3.584-1.472-7.936-3.136-12.8-4.736-7.168-2.368-16.64-7.296-25.728-12.16-8.512-4.48-19.136-10.048-23.808-10.816-7.424-1.728-24.832-7.808-41.664-13.696-6.848-2.432-13.312-4.672-18.368-6.4-16.192-5.44-46.976-14.4-60.288-17.92-6.336-1.728-12.352-2.688-17.536-3.456-5.632-0.896-10.56-1.728-14.208-2.944l-6.848-2.24 0.384-6.976c0.64-10.944 3.328-15.936 4.224-17.216 2.624-4.224 11.392-13.632 21.696-16 13.568-3.84 26.496-1.792 31.488-0.192 4.16 0.768 20.864 5.952 24.704 13.376 1.472 2.88 1.472 5.888 1.472 8.576 4.992 1.472 13.696 3.648 20.032 5.248 7.872 1.984 15.68 3.968 20.544 5.376l4.224 1.408c17.472 5.76 31.040 10.048 40.448 12.864-11.264-23.104-32.768-64.896-42.56-82.24-11.2-20.8-79.488-113.984-93.824-130.24-2.88-3.264-6.72-7.68-10.944-12.672-11.52-13.376-28.992-33.664-35.072-38.144l-12.16-8.896 13.568-6.656c1.92-0.896 4.16-1.28 7.616-1.28zM257.088 553.152l1.024-0.064c13.184 0 29.056 3.904 38.272 7.488 7.616 2.944 26.048 11.392 34.112 26.368 1.664 3.008 5.056 9.28 2.816 21.568-2.496 10.624-10.24 16.704-22.080 16.704h-0.128c-6.976-0.704-25.088-5.504-33.536-8.256l-4.544-1.28c-8.896-2.496-22.336-6.272-28.608-7.68-0.448-0.128-1.856-0.32-4.736-0.32-5.76 0-11.904 1.024-14.208 1.664l-1.984 1.92-10.24-0.192-2.432-5.44c-3.264-7.296 5.504-27.904 12.288-35.136 14.080-13.76 26.112-16.448 33.984-17.344zM706.496 35.776c-3.2-1.792-6.4-3.584-9.6-5.376-11.84-6.72-22.976-13.12-35.072-18.496-63.36-26.624-111.552-36.032-184.064-36.032-60.416 0-134.464 25.728-179.776 47.872-2.432 1.088-6.912 3.584-12.096 6.4-19.776 10.88-26.752 14.272-31.808 14.272-11.072 0-19.776-8.768-19.776-19.904 0-6.72 2.368-11.52 8.512-16.512 50.176-35.712 164.992-72 227.456-72h48.64c17.728 0 37.568 3.52 54.272 6.912 51.968 8.576 108.032 29.376 155.328 57.536l28.736-46.272 41.536 120.384-121.536 9.792 29.248-48.576zM684.672 446.912l80.512-23.744-36.48 128.512zM868.928 711.36v236.736c0 7.424-5.184 11.904-11.584 11.904-5.248 0-365.696-121.728-369.728-122.88l-323.328 112.128v-217.472c-49.28-16.448-84.608-27.776-86.4-28.288-3.456-1.152-8.128-2.304-11.584-6.272-1.152-1.152-1.728-3.904-2.304-5.632v-610.496c0-0.576 0.576-1.152 0.576-1.728 1.728-4.544 5.824-7.36 10.432-7.36 5.76 0 421.312 137.024 430.592 141.056 0 0 0.576 0 448.576-139.328v611.008l-85.248 26.624zM488.768 248.32l-383.424-123.328v539.2l383.424 131.968v-547.84zM827.584 902.656v-183.872l-294.592 85.824 294.592 98.048zM805.76 278.144l-21.44 76.48-122.304 36.8-26.048-62.272-59.072 17.536 125.184 303.552 57.984-17.536 104.896-372.096-59.2 17.536z" />
39
+ <glyph unicode="&#xe91d;" glyph-name="pagination" d="M746.688 640v0h-234.688v-448h234.688c117.824 0 213.312 95.232 213.312 220.864 0 125.696-95.488 227.136-213.312 227.136zM814.464 384.448l-112.64-92.48c-6.656-5.568-14.848-8.512-23.552-8.512-12.416 0-24.064 6.4-31.232 17.024-11.84 17.728-8.448 41.984 7.744 55.168l74.176 60.928-71.936 60.032c-16 13.44-19.264 37.696-7.296 55.168 6.144 9.024 15.68 14.976 26.112 16.448 10.432 1.344 20.544-1.6 28.736-8.384l110.144-91.84c9.28-7.808 14.592-19.392 14.464-31.808 0.064-12.288-5.504-24.192-14.72-31.744zM0 412.864c0-125.632 95.488-220.864 213.312-220.864v0h234.688v448h-234.688c-117.824 0-213.312-101.44-213.312-227.136zM130.752 416.128c-0.064 12.416 5.184 24.064 14.528 31.872l110.144 91.904c8.192 6.784 18.304 9.664 28.736 8.32 10.432-1.472 19.904-7.424 26.112-16.448 11.904-17.536 8.704-41.728-7.296-55.168l-71.936-60.032 74.176-60.928c16.192-13.184 19.584-37.44 7.744-55.168-7.168-10.624-18.816-17.024-31.232-17.024-8.704 0-16.832 3.008-23.552 8.512l-112.64 92.48c-9.216 7.552-14.784 19.456-14.784 31.68z" />
40
+ <glyph unicode="&#xe91e;" glyph-name="pdf-print" d="M960 704h-128v198.208c0 32.384-26.24 57.792-58.688 57.792h-522.624c-32.448 0-58.688-25.408-58.688-57.792v-198.208h-128c-35.328 0-64-28.672-64-64v-448c0-35.328 28.672-64 64-64h128v-134.784c0-31.616 25.6-57.216 57.216-57.216h525.568c31.616 0 57.216 25.6 57.216 57.216v134.784h128c35.328 0 64 28.672 64 64v448c0 35.328-28.672 64-64 64zM256 896h512v-192h-512v192zM768 128v-128h-512v192h512v-64zM768 512h-64v64h64v-64zM896 512h-64v64h64v-64z" />
41
+ <glyph unicode="&#xe91f;" glyph-name="pinterest" d="M884.608 507.712c-7.616-37.76-19.584-74.112-35.968-108.928-16.448-34.88-36.416-65.472-60.032-91.904-23.616-26.496-52.608-47.68-86.976-63.488-34.432-15.744-72.256-23.68-113.408-23.68-27.2 0-54.208 6.528-81.024 19.712-26.752 13.12-45.952 31.168-57.6 54.144-4.032-15.936-9.6-38.976-16.768-69.184-7.232-30.144-11.904-49.6-14.080-58.496-2.24-8.832-6.272-23.36-12.352-43.584-6.016-20.416-11.2-34.944-15.552-43.712-4.416-8.832-10.816-21.632-19.2-38.528-8.384-16.768-17.6-32.64-27.584-47.616s-22.4-32.768-37.184-53.184l-8.448-3.264-5.44 6.208c-6.016 64.384-8.96 102.912-8.96 115.712 0 37.76 4.288 80 12.928 127.040 8.576 46.976 21.888 105.856 39.872 176.896 17.984 70.912 28.416 112.576 31.168 124.864-12.8 26.752-19.2 61.376-19.2 104 0 34.112 10.368 66.048 31.168 96s47.232 44.992 79.168 44.992c24.384 0 43.392-8.384 57.024-24.96s20.416-37.696 20.416-63.104c0-27.072-8.768-66.176-26.368-117.568-17.6-51.2-26.368-89.6-26.368-115.008 0-25.856 8.96-47.296 27.008-64.32 17.92-16.96 39.744-25.472 65.408-25.472 21.952 0 42.368 5.12 61.12 15.36 18.816 10.24 34.496 24.256 47.104 41.92 12.608 17.6 23.808 37.056 33.6 58.432 9.792 21.312 17.408 43.968 22.784 68.032 5.44 23.936 9.408 46.784 11.968 68.288 2.624 21.504 3.968 41.92 3.968 61.184 0 70.976-21.888 126.272-65.728 165.824-43.84 39.616-100.928 59.392-171.328 59.392-80 0-146.816-26.56-200.384-79.744-53.568-53.12-80.448-120.512-80.448-202.176 0-18.048 2.496-35.456 7.552-52.288 5.056-16.768 10.432-30.144 16.256-39.936 5.76-9.856 11.2-19.2 16.192-27.968 4.992-8.896 7.488-15.104 7.488-18.752 0-11.52-3.008-26.496-9.024-44.928-6.016-18.496-13.44-27.776-22.208-27.776-0.768 0-4.224 0.64-10.176 1.856-20.416 6.144-38.464 17.6-54.272 34.496-15.808 16.704-28.032 36.096-36.608 58.112-8.64 21.888-15.104 44.096-19.52 66.496s-6.592 44.16-6.592 65.472c0 44.352 7.488 86.080 22.464 125.248s35.712 73.28 62.144 102.464c26.368 29.184 56.768 54.4 91.2 75.648 34.368 21.312 71.424 37.312 110.976 48 39.616 10.624 80 16.064 121.216 16.064 63.168 0 121.984-13.696 176.384-40.96 54.336-27.392 98.56-67.072 132.608-119.104 33.984-52.096 51.008-110.976 51.008-176.576 0-39.36-3.84-77.952-11.392-115.648z" />
42
+ <glyph unicode="&#xe920;" glyph-name="popular-posts" d="M130.304 576h256v-64h-256v64zM130.304 448h128v-64h-128v64zM130.304 320h128v-64h-128v64zM130.304 704h512v-64h-512v64zM130.304 832h512v-64h-512v64zM770.304 626.432v234.496c0 54.592-43.136 99.072-96.192 99.072h-575.68c-52.992 0-96.128-44.48-96.128-99.072v-697.792c0-54.656 43.136-99.136 96.128-99.136h304.384c64.576-78.080 162.176-127.872 271.424-127.872 194.432 0 352 157.568 352 351.936 0.064 161.024-108.288 296.512-255.936 338.368zM361.088 128h-262.656c-16.96 0-32.128 15.104-32.128 33.728v699.2c0 18.624 15.168 35.072 32.128 35.072h575.68c16.96 0 32.128-16.448 32.128-35.072v-222.528c-10.496 0.96-21.12 1.6-31.936 1.6-194.432 0-352-157.568-352-351.936 0-57.728 14.144-112 38.784-160.064zM615.168 426.56c52.352 68.16 51.392 85.44 51.392 85.44s40.704-26.752 66.88-85.44c26.176-58.688 18.88-128.96 18.88-128.96s12.16 4.608 32.512 30.528c20.352 25.92 20.608 87.168 20.608 87.168s60.8-71.616 60.8-159.68c0-126.080-110.528-184.768-110.528-184.768s-67.904 53.568-89.216 92.352c-21.312 38.016-36.864 103.872-36.864 103.872s-30.080-55.488-30.080-90.88c1.92-69.888 45.568-105.344 45.568-105.344s-162.88 49.216-162.88 164.864c0.128 115.712 80.576 123.52 132.928 190.848z" />
43
+ <glyph unicode="&#xe921;" glyph-name="portfolio" d="M0 960h512v-512h-512v512zM1024-64h-1024v448h1024v-448zM1024 448h-448v128h448v-128zM1024 640h-448v128h448v-128zM1024 832h-448v127.936h448v-127.936z" />
44
+ <glyph unicode="&#xe922;" glyph-name="post-to-csv" horiz-adv-x="832" d="M512 960v-320h320zM448 960h-448v-1024h832v640h-384v384zM256 320h-64v32c0 17.664-14.336 32-32 32s-32-14.336-32-32v-128c0-17.664 14.336-32 32-32s32 14.336 32 32v32h64v-32c0-52.992-43.008-96-96-96s-96 43.008-96 96v128c0 52.992 43.008 96 96 96s96-43.008 96-96v-32zM640 448l32-213.312 32 213.312h64l-48-320h-96l-48 320h64zM512 352v-16h-64v16c0 17.664-14.336 32-32 32s-32-14.336-32-32 14.336-32 32-32c52.992 0 96-43.008 96-96s-43.008-96-96-96-96 43.008-96 96v16h64v-16c0-17.664 14.336-32 32-32s32 14.336 32 32-14.336 32-32 32c-52.992 0-96 43.008-96 96s43.008 96 96 96 96-43.008 96-96z" />
45
+ <glyph unicode="&#xe923;" glyph-name="profile-extra-fields" d="M0 256h640v-251.136l90.176 95.68 66.688-164.544 49.6 20.16-66.624 164.288 131.264-5.632-161.024 141.184h273.92v192h-1024v-192zM64 384h896v-64h-269.184l-50.816 34.816v-34.816h-576v64zM448 960v-192h576v192h-576zM193.792 665.28c109.376 0 130.176-63.936 152.32-152.96l37.888-0.32v448h-384v-448l41.472 0.32c22.144 89.024 42.88 152.96 152.32 152.96zM192 896c53.056 0 96-43.008 96-96 0-53.056-42.944-96-96-96-52.992 0-96 35.648-96 96 0 52.992 43.008 96 96 96zM0 191.936h512v-191.936h-512v191.936zM448 512h576v192h-576v-192z" />
46
+ <glyph unicode="&#xe924;" glyph-name="promobar" d="M972.8 832h-921.6c-20.288 0-51.2-30.72-51.2-51.2v-665.6c0-20.416 30.912-51.2 51.2-51.2h921.6c20.416 0 51.2 30.784 51.2 51.2v665.6c0 20.224-30.784 51.2-51.2 51.2zM320 768h64v-64h-64v64zM192 768h64v-64h-64v64zM64 768h64v-64h-64v64zM960 128h-896v512h896v-512zM128 576h768v-128h-768v128z" />
47
+ <glyph unicode="&#xe925;" glyph-name="quotes-and-tips" d="M448 64h-448v319.168l192 448.832h192l-127.936-384h191.936v-384zM1024 64h-448v319.168l192 448.832h192l-128-384h192v-384z" />
48
+ <glyph unicode="&#xe926;" glyph-name="rating" d="M1003.072 507.008l-218.752-194.752 72.96-296.512c16.192-50.752-40.512-101.568-89.152-67.648l-251.264 160.896-251.2-160.896c-40.512-33.92-105.344 8.384-89.152 67.648l64.832 296.512-218.88 194.752c-40.512 33.92-24.32 110.080 24.32 110.080l291.776 25.408 113.408 279.36c24.384 50.88 89.152 50.88 113.472 0l113.408-279.36 291.776-25.408c48.704-0.064 73.024-76.16 32.448-110.080z" />
49
+ <glyph unicode="&#xe927;" glyph-name="re-attacher" d="M700.8 495.936v-0.064c26.24-0.064 47.424-25.472 47.424-52.224 0-26.688-21.184-43.456-47.424-43.52h-377.856c-26.24 0-47.488 16.832-47.488 43.52 0 26.752 21.248 52.224 47.488 52.224h0.064v0.064h377.792zM300.032 256h-131.008c-93.312 0-169.024 91.136-169.024 196.416 0 105.152 75.712 187.584 169.024 187.584h131.008c64.768 0 121.024-35.584 149.376-95.936l-260.096-0.064c-49.92 0.064-90.368-42.048-90.432-90.752 0-48.64 40.448-101.248 90.432-101.248h260.992c-28.032-61.376-84.8-96-150.272-96zM852.096 256h-125.824c-65.472 0-122.24 34.624-150.272 96h260.48c49.92 0 90.432 52.608 90.368 101.248 0 48.704-40.448 90.816-90.432 90.816h-259.584c28.352 60.352 84.608 95.936 149.44 95.936h125.888c93.312 0 168.96-82.432 169.024-187.648-0.064-105.216-75.712-196.352-169.088-196.352z" />
50
+ <glyph unicode="&#xe928;" glyph-name="realty" d="M512 896l-256-256v192h-128v-320l-128-128h64v-384h512v320h192v-320h192v384h64z" />
51
+ <glyph unicode="&#xe929;" glyph-name="related-posts" d="M128 576h256v-64h-256v64zM128 448h128v-64h-128v64zM128 320h128v-64h-128v64zM128 704h512v-64h-512v64zM128 832h512v-64h-512v64zM768 626.432v234.496c0 54.592-43.136 99.072-96.128 99.072h-575.744c-52.992 0-96.128-44.48-96.128-99.072v-697.792c0-54.656 43.136-99.136 96.128-99.136h304.384c64.576-78.080 162.176-127.872 271.424-127.872 194.432 0 352 157.568 352 351.936 0.064 161.024-108.288 296.512-255.936 338.368zM358.784 128h-262.656c-16.96 0-32.128 15.104-32.128 33.728v699.2c0 18.624 15.168 35.072 32.128 35.072h575.68c17.024 0 32.192-16.448 32.192-35.072v-222.528c-10.56 0.96-21.184 1.6-32 1.6-194.432 0-352-157.568-352-351.936 0-57.728 14.144-112 38.784-160.064zM649.152 144.576c-3.52-0.384-7.040-0.576-10.624-0.576-0.064 0-0.128 0-0.256 0v0h-98.112c-68.544 0-124.16 58.368-124.16 132.928 0 2.304 0.256 4.544 0.384 6.784h-0.384c0.32 70.272 50.048 125.952 113.344 131.712 3.456 0.384 6.976 0.576 10.56 0.576 0.064 0 0.128 0 0.256 0v0h60.864c-20.736-18.048-36.928-41.536-47.040-68.48h-2.304c-2.816 0-5.632-0.256-8.384-0.576-32.704-5.056-58.048-38.848-58.048-70.656 0-34.496 29.696-63.808 66.432-63.808h75.136c2.816 0 5.632 0.256 8.32 0.576 32.704 5.056 58.048 38.912 58.048 70.656 0 3.328-0.384 6.592-0.896 9.792 4.352 8.64 14.080 14.912 24.832 14.912h43.008c1.472-8.192 2.24-16.64 2.24-25.344 0-2.304-0.256-4.544-0.384-6.784h0.384c-0.256-70.272-49.984-125.952-113.216-131.712zM814.656 144.96c-3.52-0.32-7.040-0.576-10.624-0.576-0.064 0-0.128 0-0.256 0v0h-60.864c20.736 18.048 36.928 41.536 47.040 68.48h2.368c2.816 0 5.632 0.256 8.384 0.576 32.704 5.056 58.048 38.848 58.048 70.656 0 34.496-29.696 63.808-66.432 63.808h-75.136c-2.816 0-5.632-0.256-8.384-0.576-32.704-5.056-58.048-38.912-58.048-70.656 0-3.328 0.384-6.592 0.896-9.792-4.352-8.64-14.080-14.912-24.832-14.912h-43.008c-1.408 8.192-2.24 16.64-2.24 25.344 0 2.304 0.256 4.544 0.384 6.784h-0.384c0.32 70.272 50.048 125.952 113.344 131.712 3.52 0.384 7.040 0.576 10.624 0.576 0.064 0 0.128 0 0.256 0v0h98.112c68.544 0 124.16-58.368 124.16-132.928 0-2.304-0.256-4.544-0.384-6.784h0.32c-0.32-70.272-50.048-125.952-113.344-131.712z" />
52
+ <glyph unicode="&#xe92a;" glyph-name="sender" d="M704 320v-384h-384v384h-320l512 640 512-640h-320z" />
53
+ <glyph unicode="&#xe92b;" glyph-name="smtp" d="M354.368 699.264l97.152 97.152c0.768 0.832 1.92 1.856 3.072 2.752l2.176 1.664c6.208 4.608 14.464 7.36 23.104 7.36s16.896-2.752 23.808-7.872l1.536-1.152c1.216-1.088 1.984-1.792 2.752-2.56l97.344-97.344c15.616-15.68 15.616-41.088 0-56.704-7.552-7.552-17.6-11.712-28.352-11.712-10.688 0-20.8 4.16-28.288 11.712l-28.736 28.736v-121.856c0-22.144-17.984-40.064-40.064-40.064-10.752 0-20.8 4.16-28.352 11.776-7.552 7.552-11.712 17.664-11.712 28.352v121.856l-28.736-28.736c-7.552-7.616-17.6-11.776-28.352-11.776-10.688 0-20.736 4.16-28.288 11.712-15.616 15.68-15.616 41.088-0.064 56.704zM576 540.096v31.744h381.44l-481.856-288.512-471.488 288.512h379.904v-31.744c0-52.992 43.008-96 96-96v0c52.992 0 96 43.008 96 96zM0 483.072l226.112-132.992-226.112-282.688zM34.816 0l256.064 309.568 184.704-111.872 188.032 111.872 252.608-309.568zM960 64.576l-233.344 285.504 233.344 132.992z" />
54
+ <glyph unicode="&#xe92c;" glyph-name="social-buttons-pack" d="M850.944 279.744c-43.392 0-82.944-16-113.28-42.112l-391.808 198.272c0.064 2.048 0.32 4.032 0.32 6.144 0 6.528-0.448 12.928-1.152 19.328l390.208 199.232c30.656-27.456 71.168-44.288 115.712-44.288 95.552-0.064 173.056 76.928 173.056 171.84s-77.504 171.84-173.056 171.84c-95.616 0-173.056-76.928-173.056-171.84 0-6.528 0.448-12.992 1.152-19.328l-390.272-199.232c-30.656 27.456-71.168 44.288-115.712 44.288-95.552 0-173.056-76.928-173.056-171.84 0-94.976 77.504-171.904 173.056-171.904 49.152 0 93.504 20.48 124.992 53.248l381.44-193.088c-0.96-7.296-1.664-14.784-1.664-22.464 0-94.912 77.504-171.904 173.056-171.904 95.616 0.064 173.12 76.992 173.12 171.968 0 94.848-77.504 171.84-173.056 171.84z" />
55
+ <glyph unicode="&#xe92d;" glyph-name="social-login" d="M384 320h-256v192h256v160l256-256-256-256v160zM320 896v0c-70.72 0-128-57.28-128-128v0-128h128v128h448v-704h-448v128h-128v-128c0-70.72 57.28-128 128-128v0h448c70.72 0 128 57.28 128 128v703.872c0 70.656-57.28 128-127.936 128l-448.064 0.128z" />
56
+ <glyph unicode="&#xe92e;" glyph-name="subscriber" d="M575.104 247.104c-19.136-12.16-41.152-18.176-63.104-18.176s-43.968 6.080-63.104 18.24l-448.896 283.904v-526.272c0-38.016 30.784-68.8 68.8-68.8h886.336c38.080 0 68.864 30.784 68.864 68.8v526.272l-448.896-283.968zM989.248 668.48l-443.136 252.736c-21.12 12.032-47.040 12.032-68.16 0l-443.2-252.736c-21.504-12.224-34.752-35.072-34.752-59.776v-1.856l192-121.472v184.192c0 19.008 14.080 34.368 31.424 34.432h577.152c17.344-0.064 31.424-15.424 31.424-34.432v-184.192l192 121.472v1.856c0 24.704-13.248 47.552-34.752 59.776zM256 512h512v-64h-512v64zM256 640h512v-64h-512v64zM352.192 384l101.184-64h117.248l101.12 64z" />
57
+ <glyph unicode="&#xe92f;" glyph-name="testimonials" d="M512 819.136c-282.752 0-512-160.448-512-358.336 0-197.952 229.248-358.4 512-358.4 62.656 0 122.752 7.872 178.24 22.336 30.144 7.808 61.44-32.128 128.96-124.736l51.264 204.928c94.72 65.088 153.536 155.648 153.536 255.808 0 197.952-229.184 358.4-512 358.4zM513.728 371.136c-53.056 0-96.064 43.008-96.064 96 0 53.056 43.008 96 96.064 96 52.992 0 95.936-42.944 95.936-96s-43.008-96-95.936-96zM257.728 371.136c-53.056 0-96.064 43.008-96.064 96 0 53.056 43.008 96 96.064 96 52.992 0 95.936-42.944 95.936-96s-43.008-96-95.936-96zM769.728 371.136c-53.056 0-96.064 43.008-96.064 96 0 53.056 43.008 96 96.064 96 52.992 0 95.936-42.944 95.936-96s-43.008-96-95.936-96z" />
58
+ <glyph unicode="&#xe930;" glyph-name="timesheet" d="M846.272 796.416h-796.544c-27.456 0-49.728 22.272-49.728 49.728v0.128c0 27.456 22.272 49.728 49.728 49.728h796.544c27.456 0 49.728-22.272 49.728-49.728v-0.128c0-27.456-22.272-49.728-49.728-49.728zM846.272 604.416h-796.544c-27.456 0-49.728 22.272-49.728 49.728v0.128c0 27.456 22.272 49.728 49.728 49.728h796.544c27.456 0 49.728-22.272 49.728-49.728v-0.128c0-27.456-22.272-49.728-49.728-49.728zM481.472 412.416h-431.744c-27.456 0-49.728 22.272-49.728 49.728v0.128c0 27.456 22.272 49.728 49.728 49.728h431.744c27.456 0 49.728-22.272 49.728-49.728v-0.128c0-27.456-22.272-49.728-49.728-49.728zM435.584 220.416h-385.856c-27.456 0-49.728 22.272-49.728 49.728v0.128c0 27.456 22.272 49.728 49.728 49.728h385.856c27.456 0 49.728-22.272 49.728-49.728v-0.128c0-27.456-22.272-49.728-49.728-49.728zM801.664 512c-122.752 0-222.272-99.52-222.272-222.272s99.52-222.272 222.272-222.272c122.752 0 222.336 99.52 222.336 222.272s-99.52 222.272-222.336 222.272zM864 256h-96v160c0 17.664 14.336 32 32 32s32-14.336 32-32v-96h32c17.664 0 32-14.336 32-32s-14.336-32-32-32z" />
59
+ <glyph unicode="&#xe931;" glyph-name="twitter" d="M918.72 686.208c0.64-9.088 0.64-18.176 0.64-27.264 0-277.568-211.136-597.376-597.12-597.376-118.912 0-229.376 34.432-322.24 94.272 16.896-1.984 33.152-2.624 50.688-2.624 98.112 0 188.416 33.152 260.544 89.728-92.224 1.92-169.6 62.4-196.224 145.6 12.992-1.984 25.984-3.264 39.616-3.264 18.88 0 37.696 2.624 55.232 7.168-96.128 19.456-168.256 104-168.256 206.016 0 0.64 0 1.92 0 2.624 27.904-15.616 60.416-25.344 94.848-26.624-56.576 37.632-93.568 102.016-93.568 174.848 0 38.976 10.368 74.752 28.544 105.984 103.36-127.488 258.624-210.688 432.768-219.776-3.264 15.616-5.184 31.872-5.184 48.128 0 115.712 93.568 209.984 209.856 209.984 60.416 0 115.008-25.344 153.344-66.304 47.424 9.088 92.928 26.688 133.184 50.688-15.616-48.768-48.704-89.728-92.288-115.712 42.24 4.544 83.2 16.256 120.832 32.512-28.48-41.6-64.256-78.72-105.216-108.608z" />
60
+ <glyph unicode="&#xe932;" glyph-name="updater" d="M576 128h-384c-35.328 0-64 28.672-64 64v320h-96c-12.416 0-23.744 7.232-28.992 18.432-2.048 4.352-3.008 8.96-3.008 13.568 0 7.36 2.56 14.656 7.424 20.48l163.84 182.656c6.080 7.296 15.104 11.52 24.576 11.52s18.496-4.224 24.576-11.52l156.16-182.656c4.864-5.888 7.424-13.12 7.424-20.48 0-4.608-0.96-9.216-3.008-13.568-5.312-11.2-16.576-18.432-28.992-18.432h-96v-256h320v-128zM448 768h384c35.328 0 64-28.672 64-64v-320h96c12.416 0 23.744-7.232 28.992-18.432 2.048-4.352 3.008-8.96 3.008-13.568 0-7.36-2.56-14.656-7.424-20.48l-163.84-182.656c-6.080-7.296-15.104-11.52-24.576-11.52s-18.496 4.224-24.576 11.52l-156.16 182.656c-4.864 5.888-7.424 13.12-7.424 20.48 0 4.608 0.96 9.216 3.008 13.568 5.312 11.2 16.576 18.432 28.992 18.432h96v256h-320v128z" />
61
+ <glyph unicode="&#xe933;" glyph-name="user-role" d="M563.264 522.88c25.472-7.552 34.048 30.656 35.456 55.040 1.472 23.488 4.352 96.96-26.752 90.432 6.336 49.088 11.328 93.376 9.088 116.864-7.744 82.432-52.544 168.448-192.576 174.784-119.040-6.336-190.976-92.416-198.784-174.848-2.24-23.424 2.304-67.776 8.64-116.928-31.104 6.656-23.040-66.944-21.632-90.432 1.472-24.448 9.92-62.72 35.392-55.168 12.672-100.352 65.6-132.352 65.6-132.352l-0.576-106.624c0 0-38.4-16.192-147.264-62.4-63.168-27.008-110.976-93.056-129.856-96.256 123.584-139.904 292.736-141.76 387.648-164.864 48.64 11.84 116.864 18.304 188.352 40.448-25.728 42.88-40.896 93.12-40.896 147.136 0 40.448 8.448 78.912 23.552 113.664-36.928 16.96-46.528 23.36-46.528 23.36l0.192 106.112c0-0.064 38.272 31.68 50.944 132.032zM1024 129.856v60.416l-53.632 18.944c-3.712 12.864-8.832 25.088-15.104 36.544l24.448 51.392-42.624 42.624-51.392-24.448c-11.392 6.336-23.68 11.456-36.48 15.168l-19.072 53.504h-60.288l-19.072-53.504c-12.8-3.712-25.024-8.832-36.544-15.168l-51.328 24.448-42.624-42.624 24.448-51.392c-6.336-11.456-11.456-23.68-15.168-36.544l-53.568-18.944v-60.416l53.568-19.072c3.712-12.8 8.832-25.024 15.168-36.48l-24.448-51.328 42.624-42.688 51.328 24.448c11.456-6.4 23.744-11.456 36.544-15.104l19.072-53.632h60.288l19.008 53.568c12.8 3.648 25.024 8.768 36.48 15.104l51.392-24.448 42.624 42.688-24.448 51.328c6.336 11.456 11.456 23.744 15.104 36.48l53.696 19.136zM800 77.76c-45.376 0-82.24 36.864-82.24 82.176 0 45.44 36.864 82.24 82.24 82.24 45.312 0 82.112-36.8 82.112-82.24 0-45.312-36.8-82.176-82.112-82.176z" />
62
+ <glyph unicode="&#xe934;" glyph-name="visitors-online" d="M153.856 272.832c2.176 1.984 4.48 4.16 7.040 6.464 22.912 20.992 57.536 52.736 102.080 71.36 32.448 13.568 56.192 24.32 72.896 32.384v12.736c-15.168 18.752-31.104 46.272-41.472 85.376-23.36 22.144-34.752 53.504-41.024 70.848l-2.688 7.168c-15.040 38.016-21.12 93.12 7.104 133.568 0.832 1.216 1.728 2.368 2.56 3.52-0.768 29.888 1.408 52.096 2.304 61.376 3.84 39.68 21.312 80.768 49.856 116.416-16.128 6.784-33.536 12.032-53.504 13.056-79.36-4.096-130.944-60.544-136.128-114.496-1.472-15.36 1.536-44.416 5.76-76.608-20.672 4.352-40.448-1.472-23.232-56.256 4.864-15.296 19.008-44.032 36.032-39.104 8.448-65.728 35.584-86.72 35.584-86.72l-0.64-69.824c0 0-17.216-10.56-89.728-40.896-42.176-17.664-74.112-60.864-86.656-63.040 34.304-38.144 73.792-59.904 112.768-74.176l41.088 6.848zM972.8 196.032c0-49.025-40.459-88.768-90.368-88.768s-90.368 39.743-90.368 88.768c0 49.025 40.459 88.768 90.368 88.768s90.368-39.743 90.368-88.768zM738.176 277.44c-2.432 1.152-4.672 2.624-7.168 3.648-92.16 38.464-119.616 56.96-119.616 56.96v88.704c0 0 39.232 21.632 49.984 105.152 1.472-0.448 2.944-0.64 4.352-0.64 18.944 0 30.336 37.12 35.968 55.296 10.176 32.896 8.576 71.488-13.504 71.488-1.408 0-2.944-0.192-4.544-0.512 5.376 40.896 3.136 73.344 1.216 92.8-6.592 68.608-72.064 140.416-172.864 145.664-100.8-5.248-166.272-76.864-172.864-145.472-1.92-19.52-4.16-52.16 1.216-93.056-1.664 0.32-3.2 0.512-4.672 0.512-22.336 0-26.752-37.76-13.376-71.488 6.976-17.664 17.216-55.104 36.032-55.104 1.408 0 2.816 0.192 4.352 0.64 10.752-83.52 49.984-105.344 49.984-105.344v-88.768c0 0-27.456-18.24-119.616-56.768-53.568-22.4-94.080-77.376-110.016-80.064 104.704-116.416 247.936-117.952 328.32-137.152l0.64 0.064c55.168 13.184 140.288 18.56 222.080 57.984-11.648 22.336-18.816 47.296-18.816 74.048 0 29.76 8.768 57.28 22.912 81.408zM790.592 335.616l2.368-1.408c25.92 16.256 56.512 25.984 89.472 25.984 44.352 0 84.48-17.344 114.432-45.12 9.216 7.68 18.496 15.36 27.136 24.96-12.544 2.112-44.48 45.376-86.592 63.040-72.576 30.272-89.728 40.896-89.728 40.896l-0.704 69.888c0 0 27.136 20.992 35.648 86.72 17.024-4.928 30.976 24 35.968 39.232 17.216 52.8-2.496 60.48-23.296 56.128 4.224 32.192 7.296 61.248 5.76 76.544-5.184 54.016-56.704 110.528-136.064 114.688-19.968-1.024-37.44-6.272-53.632-13.056 28.544-35.712 46.080-76.736 49.92-116.416 0.96-9.472 3.136-32 2.304-62.336 32.96-45.056 19.136-106.304 11.52-130.944-5.888-18.944-17.92-57.984-45.696-83.712-10.304-38.848-26.176-66.24-41.28-84.992v-12.736c16.704-8.064 40.32-18.88 72.704-32.384 9.92-4.096 19.648-9.024 29.76-14.976z" />
63
+ <glyph unicode="&#xe935;" glyph-name="zendesk-help-center" d="M384 768c0-105.6-85.952-191.232-192-191.232s-192 85.632-192 191.232h384zM384 576v-448h-384zM448 320v448h384zM853.632 64.32c3.456-0.192 6.912-0.32 10.368-0.32 91.84 0 165.568 77.376 159.68 170.432-5.056 79.616-69.696 144.192-149.312 149.248-3.456 0.192-6.912 0.32-10.368 0.32-91.84 0-165.632-77.376-159.68-170.432 5.056-79.616 69.696-144.256 149.312-149.248zM832 256v64h64v-64h89.6l-121.6-140.8-115.2 140.8h83.2zM640.768 320c-106.432 0-192.768-85.952-192.768-192h192.64c-37.568 93.76 0.128 192 0.128 192z" />
64
+ <glyph unicode="&#xe936;" glyph-name="opening" d="M896 531.2c-32-19.2-128-57.6-217.6-83.2 89.6-25.6 185.6-64 217.6-83.2 64-32 83.2-108.8 44.8-172.8s-108.8-83.2-172.8-44.8c-32 19.2-115.2 83.2-179.2 153.6 25.6-89.6 38.4-198.4 38.4-236.8 0-70.4-57.6-128-121.6-128s-121.6 57.6-121.6 128c0 38.4 12.8 147.2 38.4 236.8-64-70.4-147.2-134.4-179.2-153.6-51.2-38.4-128-19.2-160 44.8s-19.2 140.8 44.8 172.8c32 19.2 128 57.6 217.6 83.2-89.6 25.6-185.6 64-217.6 83.2-64 32-83.2 108.8-44.8 172.8 32 64 108.8 83.2 166.4 44.8 32-19.2 115.2-83.2 179.2-153.6-25.6 89.6-38.4 198.4-38.4 236.8 0 70.4 57.6 128 121.6 128s121.6-57.6 121.6-128c0-38.4-12.8-147.2-38.4-236.8 64 70.4 147.2 134.4 179.2 153.6 57.6 38.4 134.4 19.2 166.4-44.8 38.4-64 19.2-140.8-44.8-172.8z" />
65
+ <glyph unicode="&#xe937;" glyph-name="real-estate" d="M518.4 486.4h-83.2v-140.8h83.2c51.2 0 76.8 25.6 76.8 70.4s-25.6 70.4-76.8 70.4zM512 896l-256-256v192h-128v-320l-128-128h64v-384h896v384h64l-512 512zM588.8 128l-64 128h-89.6v-128h-115.2v448h198.4c121.6 0 185.6-57.6 185.6-153.6 0-70.4-25.6-115.2-83.2-140.8l96-147.2h-128v-6.4z" />
66
+ <glyph unicode="&#xe938;" glyph-name="renty" d="M1024 524.8c-6.4 0 0 12.8 0 25.6s-6.4 19.2-19.2 19.2-76.8 19.2-83.2 25.6c-6.4 0-64 38.4-115.2 76.8-25.6 19.2-57.6 19.2-83.2 19.2-25.6 6.4-83.2 12.8-166.4 12.8s-128-6.4-134.4-12.8c-19.2-6.4-70.4-89.6-102.4-96-51.2-12.8-307.2-44.8-307.2-44.8-12.8-12.8-12.8-64-12.8-76.8s0-38.4 6.4-44.8c12.8-6.4 19.2-12.8 19.2-12.8 6.4 0 38.4-12.8 76.8-19.2 6.4-51.2 38.4-83.2 70.4-83.2 25.6 0 51.2 19.2 64 51.2h6.4c6.4 0 12.8 12.8 12.8 0 0-6.4 25.6-6.4 32-6.4s32 0 44.8 0 38.4 6.4 44.8 12.8c6.4 0 12.8 25.6 19.2 38.4 6.4 6.4 25.6 38.4 32 44.8 19.2 12.8 32 12.8 38.4 6.4 6.4 0 38.4-12.8 44.8-57.6 0-32 6.4-57.6 6.4-57.6s115.2 19.2 192 32 102.4 12.8 102.4 12.8 0 0 0 6.4c6.4 6.4 25.6 32 32 57.6 12.8 32 6.4 19.2 12.8 32s6.4 12.8 12.8 12.8c6.4 6.4 25.6 0 38.4-25.6 6.4-12.8 12.8-44.8 19.2-38.4 6.4 0 64 32 70.4 44.8s6.4 0 12.8 12.8c6.4 12.8 12.8 32 12.8 32zM576 569.6l-230.4 32c0 0 76.8 83.2 83.2 83.2s185.6-6.4 185.6-12.8-19.2-51.2-25.6-70.4c-12.8-19.2-12.8-32-12.8-32zM819.2 595.2c0 0-12.8 0-19.2-6.4-6.4 0-44.8-6.4-51.2-12.8-12.8 0-44.8 0-51.2 0s-57.6-6.4-57.6-6.4h-57.6l38.4 102.4h108.8c0 0 6.4-6.4 19.2-12.8 12.8-12.8 57.6-38.4 70.4-44.8 12.8-12.8 0-19.2 0-19.2zM19.2 531.2l262.4-44.8v-64c0 0-262.4 51.2-262.4 57.6s0 51.2 0 51.2zM140.8 473.6c0-12.8-19.2-19.2-38.4-12.8l-44.8 6.4c-19.2 6.4-38.4 19.2-32 32 0 12.8 12.8 19.2 38.4 12.8l44.8-6.4c19.2-6.4 38.4-19.2 32-32zM281.6 448c0-12.8-19.2-25.6-38.4-19.2l-57.6 12.8c-19.2 6.4-32 19.2-32 32s19.2 19.2 38.4 19.2l51.2-6.4c19.2-6.4 38.4-19.2 38.4-38.4zM435.2 467.2c-38.4 0-76.8-44.8-76.8-102.4s32-102.4 76.8-102.4c44.8-6.4 76.8 38.4 76.8 96s-32 108.8-76.8 108.8zM454.4 300.8c-19.2 0-32 25.6-32 64 0 32 12.8 57.6 32 57.6s32-25.6 32-57.6c6.4-38.4-12.8-64-32-64zM857.6 492.8c-32 0-64-32-64-76.8s25.6-76.8 64-76.8c32 0 64 32 64 76.8-6.4 44.8-32 76.8-64 76.8zM883.2 364.8c-12.8 0-25.6 25.6-25.6 51.2s12.8 51.2 25.6 51.2 25.6-25.6 25.6-51.2c0-25.6-12.8-51.2-25.6-51.2z" />
67
+ <glyph unicode="&#xe939;" glyph-name="unity" d="M857.6 772.352l-70.4 38.144c0-69.952 0-127.232 0-127.232 0-190.784-147.2-273.472-326.4-273.472s-326.4 82.752-326.4 273.536c0 0 0 44.544 0 101.76l-32-12.736c-64-31.808-102.4-95.36-102.4-171.712v-311.68c0-69.952 38.4-133.568 102.4-171.712l275.2-152.64c64-38.144 140.8-38.144 204.8 0l275.2 152.64c64 38.144 102.4 101.76 102.4 171.712v311.68c0 76.352-38.4 139.904-102.4 171.712zM364.8 689.664c0-76.352 64-139.904 140.8-139.904s140.8 63.616 140.8 139.904v0 203.52l-64 38.144c-64 38.144-140.8 38.144-204.8 0l-12.8-6.336v-235.328z" />
68
+ <glyph unicode="&#xe93a;" glyph-name="editor-code" d="M447.552 730.88l-93.312 101.12-354.24-384 354.24-384 93.312 101.12-260.992 282.88zM576.448 165.12l93.312-101.12 354.24 384-354.24 384-93.312-101.12 260.992-282.88z" />
69
+ <glyph unicode="&#xe93b;" glyph-name="shortcode" d="M0 896v-896h384v192h-192v512h192v192h-192zM832 896h-192v-192h192v-512h-192v-192h384v896z" />
70
+ <glyph unicode="&#xe93c;" glyph-name="bws-logo" d="M953.913 325.746c-21.447-38.855-46.592-77.198-75.435-114.233-68.551-100.466-192.91-193.365-254.919-225.052-38.457-19.684-89.088-34.702-126.805-44.316 204.459-39.538 403.285 114.46 466.034 352.37 6.997 26.852 12.004 53.134 15.417 78.734-7.566-15.872-15.588-31.744-24.292-47.502zM327.964 88.519c-70.087 61.952-114.176 154.169-114.176 264.533 0 207.076 154.852 374.898 345.884 374.898 117.931 0 222.151-64.114 284.501-161.906 1.479 4.494 3.129 9.045 4.437 13.54 17.010 57.799 23.438 113.38 18.887 162.816-35.442 34.93-77.995 62.976-126.862 82.716-207.588 83.854-477.753-63.431-543.346-312.946-40.789-154.51-9.899-309.931 70.485-420.58 19.058-3.527 39.14-4.494 60.188-3.072zM934.059 893.611c-119.694 109.682-325.632 79.019-507.79-59.392 44.658 22.357 92.16 36.807 139.89 42.098 103.31 41.529 200.932 38.343 264.704-19.342 70.656-63.886 83.797-180.167 46.364-307.314-25.145-85.618-73.159-176.185-141.995-258.958-154.567-185.742-454.428-341.902-620.203-137.671 13.596-54.67 39.481-102.059 78.62-137.842 96.313-88.178 248.377-85.618 398.962-9.33 85.504 43.349 170.61 110.364 244.565 198.201 38.286 45.397 70.884 93.127 97.564 141.54 116.224 210.603 121.97 435.655-0.683 548.011zM791.211 595.854c-4.38 5.86-23.666 26.226-28.956 30.436-56.092 45.056-124.985 71.68-199.68 71.68-46.99 0-91.648-10.468-132.38-29.468 15.246-6.656 30.322-14.165 45.284-22.756 155.989-89.088 240.64-247.808 205.824-372.224 2.788 3.3 5.518 6.599 8.021 9.785 54.784 71.054 114.859 157.298 144.953 243.712-12.174 23.78-26.453 46.82-43.065 68.836zM24.007 593.977c-71.794-176.469 23.154-384.683 207.303-496.299-24.86 33.451-41.7 72.42-56.149 121.344-137.444 102.741-194.446 258.162-134.087 372.907 39.708 75.662 123.79 115.029 221.355 114.404 33.166 41.017 72.704 74.524 115.996 99.214-158.549 1.877-299.065-75.264-354.418-211.57zM263.794 453.632c0.569 10.524 1.593 20.935 3.015 31.118-12.857-32.768-20.821-68.608-22.642-106.268-5.86-116.224 46.99-220.615 130.219-278.983 38.059 4.38 74.638 16.213 108.601 34.418-132.096 32.939-226.93 166.059-219.193 319.716z" />
71
+ <glyph unicode="&#xe93d;" glyph-name="warning" d="M508.992-64c-287.040 3.136-512.64 235.584-508.928 524.352 3.52 274.112 239.040 502.592 514.944 499.648 287.040-3.136 512.64-235.584 508.928-524.352-3.52-274.112-239.040-502.592-514.944-499.648zM424.128 768c-0.576-5.44 11.84-247.744 17.92-365.76 0.704-14.208 5.952-18.24 5.952-18.24h128c0 0 5.568 6.784 6.4 25.472 3.584 82.752 16.64 321.152 18.304 358.528-60.16 0-117.12 0-176.576 0zM507.136 319.872c-68.288-2.688-108.352-41.088-105.408-101.056 2.816-57.472 46.592-92.544 113.152-90.752 69.952 1.92 107.264 39.168 104.384 104.256-2.496 55.808-46.4 90.112-112.128 87.552z" />
72
+ </font></defs></svg>
bws_menu/fonts/bwsicons.ttf ADDED
Binary file
bws_menu/fonts/bwsicons.woff ADDED
Binary file
bws_menu/images/bestwebsoft-logo-white.svg DELETED
@@ -1,29 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
- <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
- width="32px" height="32px" viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve">
6
- <g>
7
- <path class="bstwbst-logo-layer bstwbst-logo-layer-1" fill="#fff" d="M93.223,60.751c-2.088,3.631-4.549,7.218-7.364,10.68C79.171,80.829,67.045,89.517,61,92.481
8
- c-3.753,1.839-8.686,3.249-12.367,4.145c19.94,3.697,39.343-10.706,45.451-32.965c0.691-2.511,1.173-4.966,1.501-7.369
9
- C94.857,57.786,94.077,59.269,93.223,60.751z"/>
10
- <path class="bstwbst-logo-layer bstwbst-logo-layer-2" fill="#fff" d="M32.173,82.938c-6.837-5.798-11.139-14.422-11.139-24.752c0-19.367,15.104-35.063,33.734-35.063
11
- c11.505,0,21.669,5.998,27.752,15.148c0.143-0.423,0.303-0.846,0.431-1.269c1.657-5.411,2.284-10.607,1.836-15.231
12
- c-3.45-3.267-7.609-5.891-12.371-7.738c-20.242-7.845-46.591,5.931-52.994,29.273c-3.973,14.455-0.96,28.997,6.882,39.347
13
- C28.154,82.979,30.119,83.069,32.173,82.938z"/>
14
- <path class="bstwbst-logo-layer bstwbst-logo-layer-3" fill="#fff" d="M91.284,7.625c-11.678-10.262-31.767-7.394-49.53,5.554c4.354-2.09,8.988-3.442,13.641-3.937
15
- c10.07-3.883,19.596-3.59,25.821,1.807c6.889,5.977,8.174,16.855,4.529,28.748c-2.457,8.009-7.14,16.482-13.86,24.23
16
- C56.811,81.402,27.561,96.01,11.4,76.903c1.322,5.113,3.854,9.543,7.673,12.894c9.391,8.254,24.223,8.009,38.91,0.875
17
- c8.338-4.052,16.631-10.324,23.854-18.542c3.73-4.245,6.911-8.709,9.521-13.244C102.692,39.188,103.252,18.134,91.284,7.625z"/>
18
- <g>
19
- <path class="bstwbst-logo-layer bstwbst-logo-layer-4" fill="#fff" d="M77.352,35.474c-0.425-0.548-2.314-2.453-2.826-2.847c-5.467-4.217-12.192-6.708-19.471-6.708
20
- c-4.582,0-8.943,0.982-12.908,2.757c1.479,0.627,2.954,1.334,4.414,2.133c15.206,8.333,23.469,23.183,20.064,34.818
21
- c0.271-0.31,0.541-0.613,0.78-0.915c5.34-6.647,11.205-14.72,14.141-22.799C80.365,39.694,78.969,37.535,77.352,35.474z"/>
22
- <path class="bstwbst-logo-layer bstwbst-logo-layer-5" fill="#fff" d="M2.524,35.652c-7.002,16.51,2.255,35.986,20.224,46.431c-2.431-3.128-4.078-6.772-5.482-11.348
23
- C3.868,61.12-1.692,46.576,4.189,35.843c3.88-7.078,12.069-10.76,21.595-10.699c3.226-3.841,7.091-6.971,11.314-9.283
24
- C21.631,15.685,7.927,22.899,2.524,35.652z"/>
25
- </g>
26
- <path class="bstwbst-logo-layer bstwbst-logo-layer-6" fill="#fff" d="M25.91,48.781c0.053-0.986,0.149-1.961,0.292-2.917c-1.251,3.071-2.027,6.424-2.21,9.947
27
- c-0.567,10.873,4.589,20.639,12.7,26.097c3.723-0.409,7.285-1.516,10.59-3.216C34.409,75.612,25.156,63.155,25.91,48.781z"/>
28
- </g>
29
- </svg>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
bws_menu/images/logo-white-min.png DELETED
Binary file
bws_menu/images/shortcode-icon.png DELETED
Binary file
bws_menu/js/shortcode-button.js CHANGED
@@ -59,7 +59,7 @@
59
  ed.addButton( 'add_bws_shortcode', {
60
  title : bws_shortcode_button.title,
61
  classes: 'bws_shortcode_button widget btn',
62
- icon: 'icon bws-shortcode-icon',
63
  text: bws_shortcode_button.label,
64
  onclick: function() {
65
 
59
  ed.addButton( 'add_bws_shortcode', {
60
  title : bws_shortcode_button.title,
61
  classes: 'bws_shortcode_button widget btn',
62
+ icon: 'icon bwsicons bwsicons-shortcode',
63
  text: bws_shortcode_button.label,
64
  onclick: function() {
65
 
bws_menu/languages/bestwebsoft-cs_CZ.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-cs_CZ.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: bws_menu BWS\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-01-25 17:11+0300\n"
6
- "PO-Revision-Date: 2017-01-25 17:11+0300\n"
7
- "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Mik013\n"
9
  "Language: cs_CZ\n"
10
  "MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: bws_functions.php:72 bws_functions.php:190
@@ -37,26 +37,24 @@ msgid "Plugins page"
37
  msgstr "Stránka pluginů"
38
 
39
  #: bws_functions.php:91
40
- #, fuzzy
41
  msgid "Like the plugin?"
42
- msgstr "Hodnotit plugin"
43
 
44
  #: bws_functions.php:93
45
  msgid "Rate it"
46
- msgstr ""
47
 
48
  #: bws_functions.php:102
49
  msgid "Need help?"
50
- msgstr "Нужна помощь?"
51
 
52
- #: bws_functions.php:103 bws_functions.php:914
53
  msgid "Visit Help Center"
54
  msgstr "Navštívit Centrum pomoci"
55
 
56
  #: bws_functions.php:106
57
- #, fuzzy
58
  msgid "Want to support the plugin?"
59
- msgstr "Hodnotit plugin"
60
 
61
  #: bws_functions.php:107 bws_menu.php:553
62
  msgid "Donate"
@@ -75,25 +73,23 @@ msgid ""
75
  msgstr ""
76
  "Pro licenci pluginu můžete používat pouze pro jednu doménu. Prosím "
77
  "zkontrolujte a případně upravte Váš licenční klíč na vaší osobní stránce - "
78
- "Klientská zóně. Důrazně doporučujeme, aby jste tento problém odstranili "
79
  "během 24 hodin, jinak bude Pro plugin deaktivován."
80
 
81
  #: bws_functions.php:127 bws_functions.php:339 bws_menu.php:627
82
- #: class-bws-settings.php:136
83
  msgid "Learn More"
84
  msgstr "Dozvědět se více"
85
 
86
  #: bws_functions.php:144
87
- #, fuzzy
88
  msgid ""
89
  "Notice: Your Pro Trial license has expired. To continue using the plugin, "
90
  "you should buy a Pro license"
91
  msgstr ""
92
- "Poznámka: Vaše zkušební Pro verze pluginu vypršela. Pro další využíváni "
93
- "pluginu bude nutné zakoupit Pro licenci"
94
 
95
  #: bws_functions.php:146
96
- #, fuzzy
97
  msgid ""
98
  "Your license has expired. To continue getting top-priority support and "
99
  "plugin updates, you should extend it."
@@ -127,8 +123,9 @@ msgstr ""
127
  "aktualizujte na nejnovější verzi WordPressu."
128
 
129
  #: bws_functions.php:207
130
- msgid "Thank you for installing"
131
- msgstr "Děkujeme vám za instalaci"
 
132
 
133
  #: bws_functions.php:208
134
  msgid "Let's get started"
@@ -139,9 +136,8 @@ msgstr "Začněme"
139
  msgid "Settings"
140
  msgstr "Nastavení"
141
 
142
- #: bws_functions.php:211 deprecated.php:694 bws_menu.php:328
143
- #: class-bws-settings.php:736 class-bws-settings.php:1046
144
- #: class-bws-settings.php:1076
145
  msgid "or"
146
  msgstr "nebo"
147
 
@@ -168,12 +164,13 @@ msgstr "Méně detailů"
168
 
169
  #: bws_functions.php:262
170
  msgid "Deprecated function(-s) is used on the site here:"
171
- msgstr ""
172
 
173
  #: bws_functions.php:276
174
  msgid ""
175
  "This function(-s) will be removed over time. Please update the product(-s)."
176
  msgstr ""
 
177
 
178
  #: bws_functions.php:335
179
  msgid "It’s time to upgrade your"
@@ -189,18 +186,21 @@ msgstr "verzi!"
189
 
190
  #: bws_functions.php:336
191
  msgid "Extend standard plugin functionality with new great options."
192
- msgstr "Rozšiřuje standardní funkce pluginu novými velkými možnostmi."
193
 
194
  #: bws_functions.php:382
195
- #, fuzzy, 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 "a nebudete mít přístup k TOP-PRIORITNÍ PODPOŘE nebo AKTUALIZACÍM."
 
 
200
 
201
  #: bws_functions.php:477
202
- msgid "Thank you for choosing"
203
- msgstr "Děkujeme, že jste si vybrali"
 
204
 
205
  #: bws_functions.php:478
206
  msgid ""
@@ -214,8 +214,8 @@ msgstr ""
214
  msgid "Suggest a Feature"
215
  msgstr "Navrhnout vlastnost"
216
 
217
- #: bws_functions.php:495 class-bws-settings.php:527 class-bws-settings.php:530
218
- #: class-bws-settings.php:585 class-bws-settings.php:588
219
  msgid "Notice"
220
  msgstr "Poznámka"
221
 
@@ -223,97 +223,87 @@ msgstr "Poznámka"
223
  msgid "The plugin's settings have been changed."
224
  msgstr "Nastavení pluginu bylo změněno."
225
 
226
- #: bws_functions.php:496 deprecated.php:640 class-bws-settings.php:175
227
- #: class-bws-settings.php:189
228
  msgid "Save Changes"
229
  msgstr "Uložit změny"
230
 
231
  #: bws_functions.php:510
232
- #, fuzzy
233
  msgid ""
234
  "You can always look at premium options by checking the \"Pro Options\" in "
235
  "the \"Misc\" tab."
236
  msgstr ""
237
- "Vždy se můžete podívat na možnosti prémiové verze, kliknutím na \"Zobrazit "
238
- "Pro vlastnosti\" na \"Go PRO\" záložce"
239
 
240
- #: bws_functions.php:649
241
  msgid "Add shortcode"
242
  msgstr "Přidat krátký kód"
243
 
244
- #: bws_functions.php:649
245
  msgid "Add BestWebSoft plugins' shortcodes using this button."
246
- msgstr "Pomocí tohoto tlačítka přidat krátké kódy BestWebSoft pluginu."
 
247
 
248
- #: bws_functions.php:698
249
  msgid "Close"
250
  msgstr "Zavřít"
251
 
252
- #: bws_functions.php:790
253
- #, fuzzy
254
  msgid "Are you sure you want to restore default settings?"
255
- msgstr "Jste si jisti, že chcete obnovit veškerá nastavení na výchozí hodnoty?"
256
 
257
- #: bws_functions.php:793
258
  msgid "Yes, restore all settings"
259
  msgstr "Ano, obnovit veškerá nastavení"
260
 
261
- #: bws_functions.php:794
262
  msgid "No, go back to the settings page"
263
  msgstr "Ne, vrátit se zpět na stránku nastavení"
264
 
265
- #: bws_functions.php:840
266
  msgid "Plugin"
267
  msgstr "Plugin"
268
 
269
- #: bws_functions.php:849
270
  msgid "Shortcode settings"
271
  msgstr "Nastavení krátkých kódů"
272
 
273
- #: bws_functions.php:854
274
  msgid "The shortcode will be inserted"
275
  msgstr "Bude vložen krátký kód"
276
 
277
- #: bws_functions.php:859
278
  msgid "Insert"
279
  msgstr "Vložit"
280
 
281
- #: bws_functions.php:919
282
  msgid "FAQ"
283
  msgstr "Často kladené otázky (FAQ)"
284
 
285
- #: bws_functions.php:925
286
  msgid "For more information:"
287
  msgstr "Pro více informací:"
288
 
289
- #: bws_functions.php:926
290
  msgid "Documentation"
291
  msgstr "Dokumentace"
292
 
293
- #: bws_functions.php:927
294
  msgid "Video Instructions"
295
  msgstr "Video instrukce"
296
 
297
- #: bws_functions.php:928
298
- #, fuzzy
299
  msgid "Submit a Request"
300
  msgstr "Odeslat požadavek"
301
 
302
- #: deprecated.php:91 bws_menu.php:307 bws_menu.php:311 bws_menu.php:360
303
- msgid "Plugins"
304
- msgstr "Pluginy"
305
-
306
- #: deprecated.php:92 bws_menu.php:308 bws_menu.php:312 bws_menu.php:611
307
- msgid "Themes"
308
- msgstr "Šablony"
309
-
310
- #: deprecated.php:93
311
- msgid "System Status"
312
- msgstr "Stav systému"
313
 
314
- #: deprecated.php:133 deprecated.php:199 deprecated.php:352 bws_menu.php:120
315
- #: class-bws-settings.php:807 class-bws-settings.php:873
316
- #: class-bws-settings.php:909
317
  msgid ""
318
  "Something went wrong. Please try again later. If the error appears again, "
319
  "please contact us"
@@ -321,189 +311,63 @@ 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
- #: deprecated.php:133 deprecated.php:199 deprecated.php:352 bws_menu.php:120
325
- #: class-bws-settings.php:807 class-bws-settings.php:873
326
- #: class-bws-settings.php:909
327
  msgid "We are sorry for inconvenience."
328
  msgstr "Omlouváme se za nepříjemnosti."
329
 
330
- #: deprecated.php:139 deprecated.php:358 bws_menu.php:126
331
- #: class-bws-settings.php:813 class-bws-settings.php:915
332
  msgid "Wrong license key."
333
  msgstr "Neplatný licenční klíč"
334
 
335
- #: deprecated.php:141 deprecated.php:360 class-bws-settings.php:815
336
- #: class-bws-settings.php:917
337
- #, fuzzy
338
- msgid "This license key is bound to another site."
339
- msgstr "Tento licenční klíč je přidružen k jiným webovým stránkám."
340
-
341
- #: deprecated.php:143 class-bws-settings.php:817
342
- msgid ""
343
- "This license key is valid, but Your license has expired. If you want to "
344
- "update our plugin in future, you should extend the license."
345
- msgstr ""
346
- "Tento licenční klíč je platný, ale vaše licence vypršela. Chcete-li náš "
347
- "plugin v budoucnosti aktualizovat, měli by jste licenci prodloužit."
348
-
349
- #: deprecated.php:145 class-bws-settings.php:819
350
- msgid "Unfortunately, you have exceeded the number of available tries."
351
- msgstr "Bohužel, překročili jste dostupný počet pokusů."
352
-
353
- #: deprecated.php:147 class-bws-settings.php:821
354
- msgid ""
355
- "Unfortunately, the Pro Trial licence was already installed to this domain. "
356
- "The Pro Trial license can be installed only once."
357
- msgstr ""
358
- "Bohužel, tato zkušební Pro licence již pro tuto doménu byla použita. "
359
- "Zkušební Pro licence může být instalována pouze jedenkrát."
360
-
361
- #: deprecated.php:151 class-bws-settings.php:825
362
- msgid "The Pro Trial license key is valid."
363
- msgstr "Licenční klíč zkušební Pro verze je platný"
364
-
365
- #: deprecated.php:153 bws_menu.php:140 class-bws-settings.php:827
366
- msgid "The license key is valid."
367
- msgstr "Licenční klíč je platný"
368
-
369
- #: deprecated.php:156 bws_menu.php:142 class-bws-settings.php:830
370
- msgid "Your license will expire on"
371
- msgstr "Vaše licence vyprší"
372
-
373
- #: deprecated.php:159 deprecated.php:246 class-bws-settings.php:833
374
- #, php-format
375
- msgid ""
376
- "In order to continue using the plugin it is necessary to buy a %s license."
377
- msgstr ""
378
- "Pokud chcete nadále využívat tento plugin, je nutné zakoupit %s licenci."
379
-
380
- #: deprecated.php:204
381
- msgid "Please, enter your license key"
382
- msgstr "Prosím, vložte váš licenční klíč."
383
-
384
- #: deprecated.php:223
385
- #, fuzzy
386
- msgid ""
387
- "If necessary, you can check if the license key is correct or reenter it in "
388
- "the field below. You can find your license key on your personal page - "
389
- "Client Area - on our website"
390
- msgstr ""
391
- "V případě potřeby zkontrolujte, je-li licenční klíč správně zadán, případně "
392
- "jej do pole níže vložte znova. Váš licenční klíč najdete na vaší osobní "
393
- "stránce - Klientská zóna - na našem webu"
394
-
395
- #: deprecated.php:223
396
  msgid ""
397
- "(your username is the email address specified during the purchase). If "
398
- "necessary, please submit \"Lost your password?\" request."
399
  msgstr ""
400
- "(vaše uživatelské jméno je e-mailová adresa uvedena při nákupu). Pokud je to "
401
- "nutné, prosím odešlete \"Lost your password?\" požadavek."
402
-
403
- #: deprecated.php:227 bws_menu.php:336 bws_menu.php:347
404
- #: class-bws-settings.php:749
405
- msgid "Check license key"
406
- msgstr "Zkontrolujte licenční klíč"
407
-
408
- #: deprecated.php:247
409
- #, fuzzy
410
- msgid "After that, you can activate it by entering your license key."
411
- msgstr "Poté, co jej aktivujete vložením vašeho licenčního klíče."
412
-
413
- #: deprecated.php:249 deprecated.php:688
414
- msgid "License key can be found in the"
415
- msgstr "Licenční klíč najdete v"
416
 
417
- #: deprecated.php:251 deprecated.php:690
418
- msgid "(your username is the email address specified during the purchase)."
419
- msgstr "(vaše uživatelské jméno je e-mailová adresa uvedena při nákupu)."
420
-
421
- #: deprecated.php:259 deprecated.php:267 deprecated.php:629 deprecated.php:700
422
- #: deprecated.php:709 bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
423
- #: class-bws-settings.php:728
424
- msgid "Activate"
425
- msgstr "Aktivovat"
426
 
427
- #: deprecated.php:261 bws_menu.php:130 bws_menu.php:334
428
  msgid "Unfortunately, you have exceeded the number of available tries per day."
429
  msgstr "Bohužel, překročili jste dostupný počet pokusů pro daný den."
430
 
431
- #: deprecated.php:278
432
- #, fuzzy
433
- msgid ""
434
- "Congratulations! The Pro license of the plugin is activated successfully."
435
- msgstr "Gratulujeme! PRO licence pluginu je úspěšně aktivována."
436
-
437
- #: deprecated.php:280 deprecated.php:669
438
- msgid "Please, go to"
439
- msgstr "Prosím, jděte na"
440
-
441
- #: deprecated.php:280 deprecated.php:669
442
- #, fuzzy
443
- msgid "the setting page"
444
- msgstr "stránka nastavení"
445
-
446
- #: deprecated.php:281 deprecated.php:670
447
- msgid "You will be redirected automatically in 5 seconds."
448
- msgstr "Budete automaticky přesměrováni za 5 sekund."
449
-
450
- #: deprecated.php:315
451
- msgid "Check premium options on the plugin settings page!"
452
- msgstr "Zkontrolujte prémiové možnosti na stránce nastavení pluginů!"
453
-
454
- #: deprecated.php:322 bws_menu.php:99 class-bws-settings.php:781
455
- msgid "Wrong license key"
456
- msgstr "Špatný licenční klíč"
457
-
458
- #: deprecated.php:362 deprecated.php:703 class-bws-settings.php:733
459
- #: class-bws-settings.php:919
460
- msgid ""
461
- "Unfortunately, you have exceeded the number of available tries per day. "
462
- "Please, upload the plugin manually."
463
- msgstr ""
464
- "Bohužel, jste překročili počet dostupných pokusů za den. Prosím, nahrejte "
465
- "plugin ručně."
466
-
467
- #: deprecated.php:364 bws_menu.php:132 class-bws-settings.php:921
468
- #, fuzzy, php-format
469
  msgid ""
470
  "Unfortunately, Your license has expired. To continue getting top-priority "
471
  "support and plugin updates, you should extend it in your %s"
472
  msgstr ""
473
  "Bohužel, Vaše licence vypršela. Chcete-li pokračovat v získávání top-"
474
- "prioritní podpory a aktualizace pluginu měli byste ji prodloužit ve vašem"
475
 
476
- #: deprecated.php:366 bws_menu.php:134 class-bws-settings.php:923
477
  msgid ""
478
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
479
  "Trial license can be installed only once."
480
  msgstr ""
481
- "Bohužel, tato Pro licence již pro tuto doménu byla použita. Zkušební Pro "
482
- "licence může být instalována pouze jedenkrát."
483
-
484
- #: deprecated.php:387 deprecated.php:409 deprecated.php:431 bws_menu.php:400
485
- #: bws_menu.php:431 bws_menu.php:442 class-bws-settings.php:947
486
- #: class-bws-settings.php:969 class-bws-settings.php:991
487
- msgid "Failed to download the zip archive. Please, upload the plugin manually"
488
- msgstr "Stažení zip archivu selhalo. Prosíme, nahrajte plugin ručně."
489
 
490
- #: deprecated.php:399 bws_menu.php:417 class-bws-settings.php:959
491
- msgid "Failed to open the zip archive. Please, upload the plugin manually"
492
- msgstr "Otevření zip archivu selhalo. Prosíme, nahrajte plugin ručně."
493
 
494
- #: deprecated.php:405 bws_menu.php:424 class-bws-settings.php:965
495
- msgid ""
496
- "Your server does not support either ZipArchive or Phar. Please, upload the "
497
- "plugin manually"
498
- msgstr ""
499
- "Váš server nepodporuje buď ZipArchive nebo Phar. Prosím, nahrajte plugin "
500
- "ručně"
501
 
502
- #: deprecated.php:412 bws_menu.php:434 class-bws-settings.php:972
503
- msgid "UploadDir is not writable. Please, upload the plugin manually"
504
- msgstr "Nelze zapisovat do UploadDir. Prosím, nahrajte plugin ručně"
505
 
506
- #: deprecated.php:435 bws_menu.php:151 class-bws-settings.php:995
507
  msgid ""
508
  "Something went wrong. Try again later or upload the plugin manually. We are "
509
  "sorry for inconvenience."
@@ -511,256 +375,138 @@ msgstr ""
511
  "Něco se pokazilo. Zkuste to později, nebo nahrajte plugin ručně. Omlouváme "
512
  "se za nepříjemnosti."
513
 
514
- #: deprecated.php:463 class-bws-settings.php:1030
515
- msgid "Please, enter Your license key"
516
- msgstr "Prosím, vložte váš licenční klíč"
517
-
518
- #: deprecated.php:478
519
- msgid "Restore all plugin settings to defaults"
520
- msgstr "Obnovit veškerá nastavení pluginu na výchozí hodnoty?"
521
-
522
- #: deprecated.php:480
523
- msgid "Restore settings"
524
- msgstr "Obnovit nastavení"
525
-
526
- #: deprecated.php:497 class-bws-settings.php:421
527
- msgid "You do not have sufficient permissions to edit plugins for this site."
528
- msgstr "Nemáte dostatečná oprávnění pro úpravu pluginů tohoto webu."
529
-
530
- #: deprecated.php:548 deprecated.php:575
531
- #, php-format
532
- msgid "File %s edited successfully."
533
- msgstr "Soubor %s byl úspěšně upraven."
534
-
535
- #: deprecated.php:550 deprecated.php:577
536
- msgid "Not enough permissions to create or update the file"
537
- msgstr "Nedostatečná oprávnění pro vytvoření či úpravu souboru"
538
-
539
- #: deprecated.php:580
540
- msgid "Not enough permissions to create the file"
541
- msgstr "Nedostatečná oprávnění pro vytvoření souboru"
542
-
543
- #: deprecated.php:618 class-bws-settings.php:426
544
- #, fuzzy
545
- msgid "These styles will be added to the header on all pages of your site."
546
- msgstr "Tyto styly budou přidány do záhlaví všech stránek vašeho webu."
547
-
548
- #: deprecated.php:620 class-bws-settings.php:429
549
- #, php-format
550
- msgid ""
551
- "This PHP code will be hooked to the %s action and will be printed on front "
552
- "end only."
553
- msgstr ""
554
- "Tento PHP kód bude hooked to the %s action a bude zobrazen pouze na front "
555
- "endu."
556
-
557
- #: deprecated.php:624
558
- #, fuzzy
559
- msgid "Editing"
560
- msgstr "Úpravy"
561
-
562
- #: deprecated.php:626 class-bws-settings.php:450
563
- msgid "Browsing"
564
- msgstr "Procházení"
565
-
566
- #: deprecated.php:633 class-bws-settings.php:461
567
- #, php-format
568
- msgid "Learn more about %s"
569
- msgstr "Dozvědět se více o %s"
570
-
571
- #: deprecated.php:644 class-bws-settings.php:440
572
- #, php-format
573
- msgid ""
574
- "You need to make this files writable before you can save your changes. See "
575
- "%s the Codex %s for more information."
576
- msgstr ""
577
- "Před tím, než budete moci vaše změny uložit, nastavte těmto souborům "
578
- "oprávnění pro zápis. Podívejte se %s na Kodex %s pro více informací."
579
-
580
- #: deprecated.php:667
581
- #, fuzzy
582
- msgid ""
583
- "Congratulations! Pro version of the plugin is installed and activated "
584
- "successfully."
585
- msgstr "Gratulujeme! PRO verze pluginu byla úspěšně instalována a aktivována."
586
-
587
- #: deprecated.php:677
588
- msgid "Show Pro features"
589
- msgstr "Zobrazit Pro vlastnosti"
590
-
591
- #: deprecated.php:684
592
- msgid "Enter your license key to install and activate"
593
- msgstr "Vložte váš licenční klíč pro instalaci a aktivaci"
594
-
595
- #: deprecated.php:686
596
- msgid "version of the plugin."
597
- msgstr "verze pluginu."
598
-
599
- #: deprecated.php:694 class-bws-settings.php:736
600
- #, php-format
601
- msgid "Start Your Free %s-Day Trial Now"
602
- msgstr "Vyzkoušejte vaší %s-denní zkušební verzi zdarma nyní"
603
-
604
- #: bws_menu.php:128
605
- #, fuzzy
606
- msgid ""
607
- "This license key is bound to another site. Change it via personal Client "
608
- "Area."
609
- msgstr ""
610
- "Tento licenční klíč je přidružen k jiným webovým stránkám. Změňte jej "
611
- "prostřednictvím osobní Klientská zóny."
612
-
613
- #: bws_menu.php:128
614
- #, fuzzy
615
- msgid "Log in"
616
- msgstr "Přihlášení"
617
-
618
- #: bws_menu.php:144
619
- #, fuzzy
620
- msgid "Congratulations! Pro Membership license is activated successfully."
621
- msgstr "Gratulujeme! Členská PRO licence byla úspěšně aktivována."
622
-
623
- #: bws_menu.php:161
624
  msgid "Please enter your license key."
625
  msgstr "Prosím vložte váš licenční klíč."
626
 
627
- #: bws_menu.php:172
628
- #, fuzzy
629
  msgid "Not set"
630
  msgstr "Nenastaveno"
631
 
632
- #: bws_menu.php:174 bws_menu.php:175
633
  msgid "On"
634
  msgstr "Zapnout"
635
 
636
- #: bws_menu.php:174 bws_menu.php:175
637
- #, fuzzy
638
  msgid "Off"
639
  msgstr "Vypnout"
640
 
641
- #: bws_menu.php:176 bws_menu.php:177 bws_menu.php:178 bws_menu.php:179
642
- #: bws_menu.php:180 bws_menu.php:181 bws_menu.php:190
643
  msgid "N/A"
644
  msgstr "N/A"
645
 
646
- #: bws_menu.php:181
647
  msgid " Mb"
648
  msgstr " Mb"
649
 
650
- #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:184 bws_menu.php:188
651
  msgid "Yes"
652
  msgstr "Ano"
653
 
654
- #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:184 bws_menu.php:188
655
  msgid "No"
656
  msgstr "Ne"
657
 
658
- #: bws_menu.php:195
659
- #, fuzzy
660
  msgid "WordPress Environment"
661
- msgstr "Prostředí"
662
 
663
- #: bws_menu.php:197
664
  msgid "Home URL"
665
  msgstr "Domovská URL"
666
 
667
- #: bws_menu.php:198
668
- #, fuzzy
669
  msgid "Website URL"
670
  msgstr "URL webových stránek"
671
 
672
- #: bws_menu.php:199
673
- #, fuzzy
674
  msgid "WP Version"
675
- msgstr "PHP Verze"
676
 
677
- #: bws_menu.php:200
678
  msgid "WP Multisite"
679
- msgstr ""
680
 
681
- #: bws_menu.php:201
682
- #, fuzzy
683
  msgid "WP Memory Limit"
684
- msgstr "PHP Limit paměti"
685
 
686
- #: bws_menu.php:202
687
  msgid "Active Theme"
688
  msgstr "Aktivovat šablonu"
689
 
690
- #: bws_menu.php:202 bws_menu.php:248 bws_menu.php:251
691
  #, php-format
692
  msgid "by %s"
693
- msgstr ""
694
 
695
- #: bws_menu.php:206
696
- #, fuzzy
697
  msgid "Server Environment"
698
  msgstr "Prostředí"
699
 
700
- #: bws_menu.php:208
701
  msgid "Operating System"
702
  msgstr "Operační systém"
703
 
704
- #: bws_menu.php:209
705
  msgid "Server"
706
  msgstr "Server"
707
 
708
- #: bws_menu.php:210
709
  msgid "PHP Version"
710
  msgstr "PHP Verze"
711
 
712
- #: bws_menu.php:211
713
- msgid "PHP Safe Mode"
714
- msgstr ""
715
-
716
  #: bws_menu.php:212
717
  msgid "PHP Allow URL fopen"
718
- msgstr ""
719
 
720
  #: bws_menu.php:213
721
  msgid "PHP Memory Limit"
722
  msgstr "PHP Limit paměti"
723
 
724
  #: bws_menu.php:214
725
- #, fuzzy
726
  msgid "Memory Usage"
727
  msgstr "Využití paměti"
728
 
 
729
  #: bws_menu.php:215
730
  msgid "PHP Max Upload Size"
731
- msgstr ""
732
 
 
733
  #: bws_menu.php:216
734
  msgid "PHP Max Post Size"
735
- msgstr ""
736
 
 
737
  #: bws_menu.php:217
738
  msgid "PHP Max Script Execute Time"
739
- msgstr ""
740
 
741
  #: bws_menu.php:218
742
  msgid "PHP Exif support"
743
- msgstr ""
744
 
745
  #: bws_menu.php:219
746
  msgid "PHP IPTC support"
747
- msgstr ""
748
 
749
  #: bws_menu.php:220
750
  msgid "PHP XML support"
751
- msgstr ""
752
 
753
  #: bws_menu.php:226
754
  msgid "Database"
755
- msgstr ""
756
 
757
  #: bws_menu.php:228
758
- #, fuzzy
759
  msgid "WP DB version"
760
- msgstr "WordPress verze DB"
761
 
762
  #: bws_menu.php:229
763
- #, fuzzy
764
  msgid "MySQL version"
765
  msgstr "Verze MYSQL"
766
 
@@ -781,7 +527,6 @@ msgid "Please enter a valid email address."
781
  msgstr "Prosím vložte platnou e-mailovou adresu."
782
 
783
  #: bws_menu.php:264
784
- #, fuzzy
785
  msgid "Email with system info is sent to"
786
  msgstr "E-mail se systémovým nastavením byl odeslán na"
787
 
@@ -793,6 +538,14 @@ msgstr "Děkujeme, že jste nás kontaktovali."
793
  msgid "Sorry, email message could not be delivered."
794
  msgstr "Je nám líto, ale e-mail nemohl být doručen."
795
 
 
 
 
 
 
 
 
 
796
  #: bws_menu.php:309 bws_menu.php:313 bws_menu.php:662
797
  msgid "System status"
798
  msgstr "Stav systému"
@@ -802,9 +555,8 @@ msgid "Support"
802
  msgstr "Podpora"
803
 
804
  #: bws_menu.php:318
805
- #, fuzzy
806
  msgid "Manage purchased licenses & subscriptions"
807
- msgstr "Spravovat zakoupené licence & subscriptions"
808
 
809
  #: bws_menu.php:326
810
  #, php-format
@@ -812,14 +564,24 @@ msgid "Get Access to %s+ Premium Plugins"
812
  msgstr "Získejte přístup k %s+ Premiovým pluginům"
813
 
814
  #: bws_menu.php:328
815
- #, fuzzy
816
  msgid "Subscribe to Pro Membership"
817
  msgstr "Přihlásit se k Pro členství"
818
 
 
 
 
 
 
819
  #: bws_menu.php:339
820
  msgid "Enter your license key"
821
  msgstr "Vložte váš licenční klíč"
822
 
 
 
 
 
 
 
823
  #: bws_menu.php:361
824
  msgid "Upload Plugin"
825
  msgstr "Nahrát plugin"
@@ -838,12 +600,11 @@ msgstr ""
838
  "nebo odstranit tento plugin."
839
 
840
  #: bws_menu.php:367
841
- #, fuzzy
842
  msgid ""
843
  "Plugin could not be activated because it triggered a <strong>fatal error</"
844
  "strong>."
845
  msgstr ""
846
- "Plugin nemůže být aktivován, neboť způsobil <strong>fatal error</strong>."
847
 
848
  #: bws_menu.php:370
849
  msgid "Plugin <strong>activated</strong>."
@@ -857,6 +618,13 @@ msgstr "Instalace pluginu"
857
  msgid "Downloading install package from"
858
  msgstr "Stahování instalačního balíčku z"
859
 
 
 
 
 
 
 
 
860
  #: bws_menu.php:408
861
  msgid "Unpacking the package"
862
  msgstr "Rozbalování balíčku"
@@ -865,17 +633,32 @@ msgstr "Rozbalování balíčku"
865
  msgid "Installing the plugin"
866
  msgstr "Instalace pluginu"
867
 
 
 
 
 
 
 
 
 
 
 
 
 
868
  #: bws_menu.php:427
869
  #, php-format
870
  msgid "The plugin %s is successfully installed."
871
- msgstr ""
 
 
 
 
872
 
873
  #: bws_menu.php:439
874
  msgid "Activate Plugin"
875
  msgstr "Aktivovat plugin"
876
 
877
  #: bws_menu.php:439 bws_menu.php:445
878
- #, fuzzy
879
  msgid "Return to BestWebSoft Panel"
880
  msgstr "Návrat na BestWebSoft panel"
881
 
@@ -892,7 +675,6 @@ msgid "Not Installed"
892
  msgstr "Neninstalováno"
893
 
894
  #: bws_menu.php:457
895
- #, fuzzy
896
  msgid "Filter results"
897
  msgstr "Výsledky filtrování"
898
 
@@ -905,20 +687,19 @@ msgid "Not installed"
905
  msgstr "Neninstalováno"
906
 
907
  #: bws_menu.php:528
908
- #, fuzzy
909
  msgid "Renew to get updates"
910
- msgstr "Prodloužit pro získání aktualizací"
911
 
912
  #: bws_menu.php:531
913
- #, fuzzy, php-format
914
  msgid "Update to v %s"
915
- msgstr "Aktualizovat na v %s"
916
 
917
  #: bws_menu.php:543 bws_menu.php:566 bws_menu.php:575
918
  msgid "Install Now"
919
  msgstr "Instalovat nyní"
920
 
921
- #: bws_menu.php:549 class-bws-settings.php:149 class-bws-settings.php:1073
922
  msgid "Upgrade to Pro"
923
  msgstr "Aktualizovat na Pro"
924
 
@@ -934,10 +715,11 @@ msgstr "Instalovat tento plugin"
934
  msgid "Nothing found. Try another criteria."
935
  msgstr "Nic nenalezeno. Zkuste jiná kritéria."
936
 
 
937
  #: bws_menu.php:621 bws_menu.php:641
938
  #, php-format
939
  msgid "By %s"
940
- msgstr ""
941
 
942
  #: bws_menu.php:648
943
  msgid "Already Installed"
@@ -955,380 +737,538 @@ msgstr "Odeslat podpoře"
955
  msgid "Send to custom email &#187;"
956
  msgstr "Odeslat na vlastní e-mail &#187;"
957
 
958
- #: product_list.php:7
959
- msgid "Advertisement"
960
- msgstr "Reklama"
961
-
962
- #: product_list.php:8
963
- msgid "Content & Media"
964
- msgstr "Obsah & Média"
965
-
966
- #: product_list.php:9
967
- msgid "Management"
968
- msgstr "Správa"
969
-
970
- #: product_list.php:10
971
- msgid "Recommended"
972
- msgstr "Doporučeno"
973
-
974
- #: product_list.php:11
975
- msgid "Security"
976
- msgstr "Bezpečnost"
977
-
978
- #: product_list.php:12
979
- msgid "Site Stats"
980
- msgstr "Statistiky webu"
981
-
982
- #: product_list.php:13
983
- msgid "Social"
984
- msgstr "Sociální"
985
-
986
- #: product_list.php:14
987
- msgid "Utilities"
988
- msgstr "Utility"
989
-
990
- #: product_list.php:15
991
- msgid "Other"
992
- msgstr "Ostatní"
993
-
994
- #: class-bws-settings.php:129
995
- #, fuzzy
996
  msgid "Information"
997
- msgstr "Pro více informací:"
998
 
999
- #: class-bws-settings.php:136
1000
- #, fuzzy
1001
  msgid "Inactive"
1002
- msgstr "Neaktivní pluginy"
1003
 
1004
- #: class-bws-settings.php:144
1005
  msgid "Expired"
1006
- msgstr ""
1007
 
1008
- #: class-bws-settings.php:147
1009
  #, php-format
1010
  msgid "%s day(-s) left"
1011
- msgstr ""
1012
 
1013
- #: class-bws-settings.php:153
1014
- #, fuzzy, php-format
1015
  msgid "Expired on %s"
1016
- msgstr "vyprší"
1017
 
1018
- #: class-bws-settings.php:153
1019
  msgid "Renew Now"
1020
- msgstr ""
1021
 
1022
- #: class-bws-settings.php:155
1023
- #, fuzzy
1024
  msgid "Active"
1025
- msgstr "Aktivovat"
1026
 
1027
- #: class-bws-settings.php:160
1028
- #, fuzzy
1029
  msgid "License"
1030
- msgstr "Špatný licenční klíč"
1031
 
1032
- #: class-bws-settings.php:163
1033
- #, fuzzy
1034
  msgid "Status"
1035
- msgstr "Stav systému"
1036
 
1037
- #: class-bws-settings.php:167
1038
- #, fuzzy
1039
  msgid "Version"
1040
- msgstr "verzi!"
1041
 
1042
- #: class-bws-settings.php:276
1043
- #, fuzzy
1044
  msgid "All plugin settings were restored."
1045
- msgstr "Nastavení pluginu bylo změněno."
1046
 
1047
- #: class-bws-settings.php:417
1048
- #, fuzzy
1049
  msgid "Custom Code"
1050
- msgstr "Кастомизировать"
 
 
 
 
 
 
 
 
1051
 
1052
- #: class-bws-settings.php:432
1053
- #, fuzzy
 
 
 
 
 
 
 
1054
  msgid "These code will be added to the header on all pages of your site."
1055
- msgstr "Tyto styly budou přidány do záhlaví všech stránek vašeho webu."
1056
 
1057
- #: class-bws-settings.php:454
1058
  #, php-format
1059
- msgid "Activate custom %s code."
 
 
1060
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
1061
 
1062
- #: class-bws-settings.php:520
 
 
 
 
 
1063
  msgid "Miscellaneous Settings"
1064
- msgstr ""
1065
 
1066
- #: class-bws-settings.php:527 class-bws-settings.php:585
1067
  #, php-format
1068
  msgid ""
1069
  "It is prohibited to change %s settings on this site in the %s network "
1070
  "settings."
1071
- msgstr ""
1072
 
1073
- #: class-bws-settings.php:530 class-bws-settings.php:588
1074
  #, php-format
1075
  msgid ""
1076
  "It is prohibited to view %s settings on this site in the %s network settings."
1077
- msgstr ""
1078
 
1079
- #: class-bws-settings.php:536
1080
- #, fuzzy
1081
  msgid "Pro Options"
1082
- msgstr "Pro плагины"
1083
 
1084
- #: class-bws-settings.php:539
1085
  msgid "Enable to display plugin Pro options."
1086
- msgstr ""
1087
 
1088
- #: class-bws-settings.php:544
1089
  msgid "Track Usage"
1090
- msgstr ""
1091
 
1092
- #: class-bws-settings.php:547
1093
  msgid ""
1094
  "Enable to allow tracking plugin usage anonymously in order to make it better."
1095
  msgstr ""
 
1096
 
1097
- #: class-bws-settings.php:551
1098
- #, fuzzy
1099
  msgid "Default Settings"
1100
- msgstr "Nastavení"
1101
 
1102
- #: class-bws-settings.php:553
1103
- #, fuzzy
1104
  msgid "Restore Settings"
1105
  msgstr "Obnovit nastavení"
1106
 
1107
- #: class-bws-settings.php:554
1108
- #, fuzzy
1109
  msgid "This will restore plugin settings to defaults."
1110
- msgstr "Obnovit veškerá nastavení pluginu na výchozí hodnoty?"
1111
 
1112
- #: class-bws-settings.php:578
1113
  msgid "Import / Export"
1114
- msgstr ""
1115
 
1116
- #: class-bws-settings.php:701 class-bws-settings.php:724
1117
  #: class-bws-settings.php:746
1118
- #, fuzzy
1119
  msgid "License Key"
1120
- msgstr "Špatný licenční klíč"
1121
 
1122
  #: class-bws-settings.php:714
1123
- #, fuzzy
1124
  msgid "Congratulations! Pro license is activated successfully."
1125
- msgstr "Gratulujeme! Členská PRO licence byla úspěšně aktivována."
1126
 
1127
  #: class-bws-settings.php:715
1128
- #, fuzzy, php-format
1129
- msgid "You will be automatically redirected to the %s in 7 seconds."
1130
- msgstr "Budete automaticky přesměrováni za 5 sekund."
1131
 
1132
  #: class-bws-settings.php:715
1133
- #, fuzzy
1134
  msgid "Settings page"
1135
- msgstr "Nastavení"
1136
 
1137
  #: class-bws-settings.php:730
1138
- #, fuzzy, php-format
1139
  msgid "Enter your license key to activate %s and get premium plugin features."
1140
- msgstr "Vložte váš licenční klíč pro instalaci a aktivaci"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1141
 
1142
  #: class-bws-settings.php:751
1143
- #, fuzzy
1144
  msgid ""
1145
  "If necessary, you can check if the license key is correct or reenter it in "
1146
  "the field below."
1147
  msgstr ""
1148
  "V případě potřeby zkontrolujte, je-li licenční klíč správně zadán, případně "
1149
- "jej do pole níže vložte znova. Váš licenční klíč najdete na vaší osobní "
1150
- "stránce - Klientská zóna - na našem webu"
1151
 
1152
  #: class-bws-settings.php:756
1153
  msgid "Manage License Settings"
1154
- msgstr ""
1155
 
1156
  #: class-bws-settings.php:758
1157
- #, fuzzy
1158
  msgid "Login to Client Area"
1159
- msgstr "Klientská zóna"
1160
 
1161
  #: class-bws-settings.php:760
1162
  msgid ""
1163
  "Manage active licenses, download BWS products, and view your payment history "
1164
  "using BestWebSoft Client Area."
1165
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1166
 
1167
- #: class-bws-settings.php:1044
1168
- #, fuzzy
 
 
 
1169
  msgid "Need Help?"
1170
- msgstr "Нужна помощь?"
1171
 
1172
- #: class-bws-settings.php:1044
1173
- #, fuzzy
1174
  msgid "Read the Instruction"
1175
- msgstr "Video instrukce"
1176
 
1177
- #: class-bws-settings.php:1046
1178
  msgid "Watch the Video"
1179
- msgstr ""
1180
 
1181
- #: class-bws-settings.php:1077
1182
- #, fuzzy
1183
  msgid "Start Your Free Trial"
1184
- msgstr "Vyzkoušejte vaší %s-denní zkušební verzi zdarma nyní"
1185
 
1186
- #~ msgid "You license for"
1187
- #~ msgstr "Vaše licence pro"
 
1188
 
1189
- #, fuzzy
1190
- #~ msgid "expires on"
1191
- #~ msgstr "vyprší"
1192
 
1193
- #~ msgid "This license key is bind to another site"
1194
- #~ msgstr "Tento licenční klíč se váže k jinému webu"
 
 
 
 
 
 
 
1195
 
1196
- #~ msgid "Successfully installed the plugin"
1197
- #~ msgstr "Plugin byl úspěšně instalován"
 
 
 
 
 
1198
 
1199
- #, fuzzy
1200
- #~ msgid "Please, go to %s"
1201
- #~ msgstr "Prosím, jděte na"
1202
 
1203
- #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
1204
- #~ msgstr "Máte-li rádi náš plugin, prosím dejte mu 5 hvězd na WordPressu"
 
1205
 
1206
- #~ msgid "If there is something wrong about it, please contact us"
1207
- #~ msgstr "Pokud cokoli není v pořádku, obraťte se na nás"
 
1208
 
1209
- #~ msgid "Donations play an important role in supporting great projects"
1210
- #~ msgstr "Dary hrají důležitou roli v podpoře velkých projektů"
 
 
1211
 
1212
- #~ msgid "WordPress Version"
1213
- #~ msgstr "Verze WordPress"
 
1214
 
1215
- #~ msgid "Activate Membership"
1216
- #~ msgstr "Активировать Membership"
 
1217
 
1218
- #~ msgid "Don’t have valid license key yet?"
1219
- #~ msgstr "Нет действующего лицензионного ключа?"
 
1220
 
1221
- #~ msgid ""
1222
- #~ "Join BestWebSoft Pro Membership today, cancel any time and use all "
1223
- #~ "plugins on a single website %s for only %s per month."
1224
- #~ msgstr ""
1225
- #~ "Присоединяйтесь к BestWebSoft Pro Membership сегодня, отменяйте подписку "
1226
- #~ "в любое время и используйте все плагины на одном сайте %s всего лишь за "
1227
- #~ "%s в месяц."
1228
 
1229
- #~ msgid "My Account"
1230
- #~ msgstr "Мой аккаунт"
 
1231
 
1232
- #~ msgid "BWS Panel"
1233
- #~ msgstr "BWS Панель"
 
 
 
 
 
 
1234
 
1235
- #~ msgid "panel"
1236
- #~ msgstr "панель"
 
1237
 
1238
- #~ msgid "You can download and activate"
1239
- #~ msgstr "Вы можете скачать и активировать"
 
1240
 
1241
- #~ msgid "version of this plugin by entering Your license key."
1242
- #~ msgstr "версию этого плагина, введя ваш лицензионный ключ."
 
1243
 
1244
- #~ msgid ""
1245
- #~ "You can find your license key on your personal page Client area, by "
1246
- #~ "clicking on the link"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1247
  #~ msgstr ""
1248
- #~ "Вы можете найти ваш лицензионный ключ на вашей личной странице Client "
1249
- #~ "area, нажав на ссылку"
1250
 
1251
- #~ msgid "Configure Settings"
1252
- #~ msgstr "Настройка параметров"
1253
 
1254
- #~ msgid "Go"
1255
- #~ msgstr "Перейти на"
1256
 
1257
- #~ msgid "DONATE"
1258
- #~ msgstr "Пожертвовать"
1259
 
1260
- #~ msgid "Recommended plugins"
1261
- #~ msgstr "Рекомендованные к установке плагины"
1262
 
1263
- #~ msgid "Install now"
1264
- #~ msgstr "Установить"
 
 
 
 
1265
 
1266
- #~ msgid "Try again"
1267
- #~ msgstr "Попробовать снова"
 
 
 
1268
 
1269
- #~ msgid "Preview &#8220;%s&#8221;"
1270
- #~ msgstr "Просмотр &#8220;%s&#8221;"
1271
 
1272
- #~ msgid "Install %s"
1273
- #~ msgstr "Установлено %s"
 
1274
 
1275
- #~ msgid "Update"
1276
- #~ msgstr "Обновить"
1277
 
1278
- #~ msgid "Preview %s"
1279
- #~ msgstr "Просмотр %s"
 
 
 
 
 
 
1280
 
1281
- #~ msgid "Preview"
1282
- #~ msgstr "Просмотр"
 
 
 
 
1283
 
1284
- #~ msgid "Add BWS Plugins Shortcode"
1285
- #~ msgstr "Добавить шорткод BWS Плагина"
 
 
 
 
1286
 
1287
- #~ msgid "Select Plugin"
1288
- #~ msgstr "Выберите плагин"
 
 
 
 
 
 
1289
 
1290
  #~ msgid ""
1291
- #~ "(your username is the email you specify when purchasing the product), "
1292
- #~ "where you can make the necessary changes."
1293
  #~ msgstr ""
1294
- #~ "(ваш пользователь это емейл, который вы указывали при покупке продукта), "
1295
- #~ "где вы можете сделать необходимые изменения."
1296
 
1297
- #~ msgid "Switch to new interface"
1298
- #~ msgstr "Переключится на новый интерфейс"
 
1299
 
1300
- #~ msgid "Activated plugins"
1301
- #~ msgstr "Активированные плагины"
 
 
 
 
1302
 
1303
- #~ msgid "Read more"
1304
- #~ msgstr "Подробнее..."
1305
 
1306
- #~ msgid "Purchase"
1307
- #~ msgstr "Купить"
1308
 
1309
- #~ msgid "Free plugins"
1310
- #~ msgstr "Бесплатные плагины"
1311
 
1312
- #~ msgid "Download"
1313
- #~ msgstr "Скачать"
1314
 
1315
- #~ msgid "Install now from wordpress.org"
1316
- #~ msgstr "Установить с wordpress.org"
1317
 
1318
- #~ msgid "Free themes"
1319
- #~ msgstr "Бесплатные темы"
1320
 
1321
- #~ msgid "Customize &#8220;%s&#8221;"
1322
- #~ msgstr "Кастомизировать &#8220;%s&#8221;"
 
1323
 
1324
- #~ msgid "Installed themes"
1325
- #~ msgstr "Установленные темы"
1326
 
1327
- #~ msgid "Recommended themes"
1328
- #~ msgstr "Рекомендованные темы"
1329
 
1330
- #~ msgid "Switch to old interface"
1331
- #~ msgstr "Переключится на старый интерфейс"
1332
 
1333
- #~ msgid "installed"
1334
- #~ msgstr "установлен"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-03-28 13:50+0300\n"
6
+ "PO-Revision-Date: 2017-03-28 13:50+0300\n"
7
+ "Last-Translator: Mik013\n"
8
  "Language-Team: Mik013\n"
9
  "Language: cs_CZ\n"
10
  "MIME-Version: 1.0\n"
13
  "X-Poedit-KeywordsList: __;_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:72 bws_functions.php:190
37
  msgstr "Stránka pluginů"
38
 
39
  #: bws_functions.php:91
 
40
  msgid "Like the plugin?"
41
+ msgstr "Líbí se vám plugin?"
42
 
43
  #: bws_functions.php:93
44
  msgid "Rate it"
45
+ msgstr "Ohodnoťte jej"
46
 
47
  #: bws_functions.php:102
48
  msgid "Need help?"
49
+ msgstr "Potřebujete pomoc?"
50
 
51
+ #: bws_functions.php:103 bws_functions.php:916 class-bws-settings.php:1047
52
  msgid "Visit Help Center"
53
  msgstr "Navštívit Centrum pomoci"
54
 
55
  #: bws_functions.php:106
 
56
  msgid "Want to support the plugin?"
57
+ msgstr "Chcete podpořit plugin?"
58
 
59
  #: bws_functions.php:107 bws_menu.php:553
60
  msgid "Donate"
73
  msgstr ""
74
  "Pro licenci pluginu můžete používat pouze pro jednu doménu. Prosím "
75
  "zkontrolujte a případně upravte Váš licenční klíč na vaší osobní stránce - "
76
+ "Klientské zóně. Důrazně doporučujeme, aby jste tento problém odstranili "
77
  "během 24 hodin, jinak bude Pro plugin deaktivován."
78
 
79
  #: bws_functions.php:127 bws_functions.php:339 bws_menu.php:627
80
+ #: class-bws-settings.php:143
81
  msgid "Learn More"
82
  msgstr "Dozvědět se více"
83
 
84
  #: bws_functions.php:144
 
85
  msgid ""
86
  "Notice: Your Pro Trial license has expired. To continue using the plugin, "
87
  "you should buy a Pro license"
88
  msgstr ""
89
+ "Poznámka: Vaše zkušební Pro verze pluginu vypršela. Pro další používání "
90
+ "pluginu bude nutné zakoupit PRO licenci"
91
 
92
  #: bws_functions.php:146
 
93
  msgid ""
94
  "Your license has expired. To continue getting top-priority support and "
95
  "plugin updates, you should extend it."
123
  "aktualizujte na nejnovější verzi WordPressu."
124
 
125
  #: bws_functions.php:207
126
+ #, php-format
127
+ msgid "Thank you for installing %s plugin!"
128
+ msgstr ""
129
 
130
  #: bws_functions.php:208
131
  msgid "Let's get started"
136
  msgid "Settings"
137
  msgstr "Nastavení"
138
 
139
+ #: bws_functions.php:211 bws_menu.php:328 class-bws-settings.php:736
140
+ #: class-bws-settings.php:1049 class-bws-settings.php:1059 deprecated.php:694
 
141
  msgid "or"
142
  msgstr "nebo"
143
 
164
 
165
  #: bws_functions.php:262
166
  msgid "Deprecated function(-s) is used on the site here:"
167
+ msgstr "Zastaralé funkce se používají na stránkách zde:"
168
 
169
  #: bws_functions.php:276
170
  msgid ""
171
  "This function(-s) will be removed over time. Please update the product(-s)."
172
  msgstr ""
173
+ "Tato funkce, bude v průběhu času odstraněna. Prosím aktualizujte produkt."
174
 
175
  #: bws_functions.php:335
176
  msgid "It’s time to upgrade your"
186
 
187
  #: bws_functions.php:336
188
  msgid "Extend standard plugin functionality with new great options."
189
+ msgstr "Rozšiřuje standardní funkce pluginu novými skvělými možnostmi."
190
 
191
  #: bws_functions.php:382
192
+ #, php-format
193
  msgid ""
194
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
195
  "SUPPORT or UPDATES."
196
+ msgstr ""
197
+ "Váš licenční klíč pro %s vyprší dne %s a nebudou vám poskytovány TOP-"
198
+ "PRIOROTNÍ PODPORA a AKTUALIZACE."
199
 
200
  #: bws_functions.php:477
201
+ #, php-format
202
+ msgid "Thank you for choosing %s plugin!"
203
+ msgstr ""
204
 
205
  #: bws_functions.php:478
206
  msgid ""
214
  msgid "Suggest a Feature"
215
  msgstr "Navrhnout vlastnost"
216
 
217
+ #: bws_functions.php:495 class-bws-settings.php:533 class-bws-settings.php:536
218
+ #: class-bws-settings.php:584 class-bws-settings.php:587
219
  msgid "Notice"
220
  msgstr "Poznámka"
221
 
223
  msgid "The plugin's settings have been changed."
224
  msgstr "Nastavení pluginu bylo změněno."
225
 
226
+ #: bws_functions.php:496 class-bws-settings.php:182 class-bws-settings.php:202
227
+ #: deprecated.php:640
228
  msgid "Save Changes"
229
  msgstr "Uložit změny"
230
 
231
  #: bws_functions.php:510
 
232
  msgid ""
233
  "You can always look at premium options by checking the \"Pro Options\" in "
234
  "the \"Misc\" tab."
235
  msgstr ""
236
+ "Vždy se můžete podívat na možnosti prémiové verze, kliknutím na \"PRO "
237
+ "nastavení\" na \"Go PRO\" záložce"
238
 
239
+ #: bws_functions.php:651
240
  msgid "Add shortcode"
241
  msgstr "Přidat krátký kód"
242
 
243
+ #: bws_functions.php:651
244
  msgid "Add BestWebSoft plugins' shortcodes using this button."
245
+ msgstr ""
246
+ "Pomocí tohoto tlačítka můžete přidávat krátké kódy BestWebSoft pluginu."
247
 
248
+ #: bws_functions.php:700
249
  msgid "Close"
250
  msgstr "Zavřít"
251
 
252
+ #: bws_functions.php:792
 
253
  msgid "Are you sure you want to restore default settings?"
254
+ msgstr "Jste si jisti, že chcete obnovit výchozí nastavení?"
255
 
256
+ #: bws_functions.php:795
257
  msgid "Yes, restore all settings"
258
  msgstr "Ano, obnovit veškerá nastavení"
259
 
260
+ #: bws_functions.php:796
261
  msgid "No, go back to the settings page"
262
  msgstr "Ne, vrátit se zpět na stránku nastavení"
263
 
264
+ #: bws_functions.php:842
265
  msgid "Plugin"
266
  msgstr "Plugin"
267
 
268
+ #: bws_functions.php:851
269
  msgid "Shortcode settings"
270
  msgstr "Nastavení krátkých kódů"
271
 
272
+ #: bws_functions.php:856
273
  msgid "The shortcode will be inserted"
274
  msgstr "Bude vložen krátký kód"
275
 
276
+ #: bws_functions.php:861
277
  msgid "Insert"
278
  msgstr "Vložit"
279
 
280
+ #: bws_functions.php:921
281
  msgid "FAQ"
282
  msgstr "Často kladené otázky (FAQ)"
283
 
284
+ #: bws_functions.php:927
285
  msgid "For more information:"
286
  msgstr "Pro více informací:"
287
 
288
+ #: bws_functions.php:928
289
  msgid "Documentation"
290
  msgstr "Dokumentace"
291
 
292
+ #: bws_functions.php:929
293
  msgid "Video Instructions"
294
  msgstr "Video instrukce"
295
 
296
+ #: bws_functions.php:930
 
297
  msgid "Submit a Request"
298
  msgstr "Odeslat požadavek"
299
 
300
+ #: bws_menu.php:101 class-bws-settings.php:781 deprecated.php:322
301
+ msgid "Wrong license key"
302
+ msgstr "Špatný licenční klíč"
 
 
 
 
 
 
 
 
303
 
304
+ #: bws_menu.php:122 class-bws-settings.php:807 class-bws-settings.php:874
305
+ #: class-bws-settings.php:910 deprecated.php:133 deprecated.php:199
306
+ #: deprecated.php:352
307
  msgid ""
308
  "Something went wrong. Please try again later. If the error appears again, "
309
  "please contact us"
311
  "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:807 class-bws-settings.php:874
315
+ #: class-bws-settings.php:910 deprecated.php:133 deprecated.php:199
316
+ #: deprecated.php:352
317
  msgid "We are sorry for inconvenience."
318
  msgstr "Omlouváme se za nepříjemnosti."
319
 
320
+ #: bws_menu.php:128 class-bws-settings.php:813 class-bws-settings.php:916
321
+ #: deprecated.php:139 deprecated.php:358
322
  msgid "Wrong license key."
323
  msgstr "Neplatný licenční klíč"
324
 
325
+ #: bws_menu.php:130
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
326
  msgid ""
327
+ "This license key is bound to another site. Change it via personal Client "
328
+ "Area."
329
  msgstr ""
330
+ "Tento licenční klíč je přidružen k jinému webu. Změňte jej prostřednictvím "
331
+ "osobní Klientské zóny."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
332
 
333
+ #: bws_menu.php:130
334
+ msgid "Log in"
335
+ msgstr "Přihlášení"
 
 
 
 
 
 
336
 
337
+ #: bws_menu.php:132 bws_menu.php:334 deprecated.php:261
338
  msgid "Unfortunately, you have exceeded the number of available tries per day."
339
  msgstr "Bohužel, překročili jste dostupný počet pokusů pro daný den."
340
 
341
+ #: bws_menu.php:134 class-bws-settings.php:922 deprecated.php:364
342
+ #, php-format
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
343
  msgid ""
344
  "Unfortunately, Your license has expired. To continue getting top-priority "
345
  "support and plugin updates, you should extend it in your %s"
346
  msgstr ""
347
  "Bohužel, Vaše licence vypršela. Chcete-li pokračovat v získávání top-"
348
+ "prioritní podpory a aktualizace pluginu měli byste ji prodloužit ve vašem %s"
349
 
350
+ #: bws_menu.php:136 class-bws-settings.php:924 deprecated.php:366
351
  msgid ""
352
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
353
  "Trial license can be installed only once."
354
  msgstr ""
355
+ "Bohužel, pro tuto doménu již byla použita Pro licence. Zkušební Pro licence "
356
+ "může být instalována pouze jedenkrát."
 
 
 
 
 
 
357
 
358
+ #: bws_menu.php:142 class-bws-settings.php:828 deprecated.php:153
359
+ msgid "The license key is valid."
360
+ msgstr "Licenční klíč je platný"
361
 
362
+ #: bws_menu.php:144 class-bws-settings.php:831 deprecated.php:156
363
+ msgid "Your license will expire on"
364
+ msgstr "Vaše licence vyprší"
 
 
 
 
365
 
366
+ #: bws_menu.php:146
367
+ msgid "Congratulations! Pro Membership license is activated successfully."
368
+ msgstr "Gratulujeme! PRO členství bylo úspěšně aktivováno."
369
 
370
+ #: bws_menu.php:153 class-bws-settings.php:996 deprecated.php:435
371
  msgid ""
372
  "Something went wrong. Try again later or upload the plugin manually. We are "
373
  "sorry for inconvenience."
375
  "Něco se pokazilo. Zkuste to později, nebo nahrajte plugin ručně. Omlouváme "
376
  "se za nepříjemnosti."
377
 
378
+ #: bws_menu.php:163
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
379
  msgid "Please enter your license key."
380
  msgstr "Prosím vložte váš licenční klíč."
381
 
382
+ #: bws_menu.php:174
 
383
  msgid "Not set"
384
  msgstr "Nenastaveno"
385
 
386
+ #: bws_menu.php:176
387
  msgid "On"
388
  msgstr "Zapnout"
389
 
390
+ # vypnout, nebo vypnuto
391
+ #: bws_menu.php:176
392
  msgid "Off"
393
  msgstr "Vypnout"
394
 
395
+ #: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
396
+ #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
397
  msgid "N/A"
398
  msgstr "N/A"
399
 
400
+ #: bws_menu.php:182
401
  msgid " Mb"
402
  msgstr " Mb"
403
 
404
+ #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
405
  msgid "Yes"
406
  msgstr "Ano"
407
 
408
+ #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
409
  msgid "No"
410
  msgstr "Ne"
411
 
412
+ #: bws_menu.php:196
 
413
  msgid "WordPress Environment"
414
+ msgstr "WordPress prostředí"
415
 
416
+ #: bws_menu.php:198
417
  msgid "Home URL"
418
  msgstr "Domovská URL"
419
 
420
+ #: bws_menu.php:199
 
421
  msgid "Website URL"
422
  msgstr "URL webových stránek"
423
 
424
+ #: bws_menu.php:200
 
425
  msgid "WP Version"
426
+ msgstr "WP Verze"
427
 
428
+ #: bws_menu.php:201
429
  msgid "WP Multisite"
430
+ msgstr "WP Multisite"
431
 
432
+ #: bws_menu.php:202
 
433
  msgid "WP Memory Limit"
434
+ msgstr "WP pamětový limit (memory limit)"
435
 
436
+ #: bws_menu.php:203
437
  msgid "Active Theme"
438
  msgstr "Aktivovat šablonu"
439
 
440
+ #: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
441
  #, php-format
442
  msgid "by %s"
443
+ msgstr "podle %s"
444
 
445
+ #: bws_menu.php:207
 
446
  msgid "Server Environment"
447
  msgstr "Prostředí"
448
 
449
+ #: bws_menu.php:209
450
  msgid "Operating System"
451
  msgstr "Operační systém"
452
 
453
+ #: bws_menu.php:210
454
  msgid "Server"
455
  msgstr "Server"
456
 
457
+ #: bws_menu.php:211
458
  msgid "PHP Version"
459
  msgstr "PHP Verze"
460
 
461
+ # copy
 
 
 
462
  #: bws_menu.php:212
463
  msgid "PHP Allow URL fopen"
464
+ msgstr "PHP Allow URL fopen"
465
 
466
  #: bws_menu.php:213
467
  msgid "PHP Memory Limit"
468
  msgstr "PHP Limit paměti"
469
 
470
  #: bws_menu.php:214
 
471
  msgid "Memory Usage"
472
  msgstr "Využití paměti"
473
 
474
+ # copy
475
  #: bws_menu.php:215
476
  msgid "PHP Max Upload Size"
477
+ msgstr "PHP Max Upload Size"
478
 
479
+ # copy
480
  #: bws_menu.php:216
481
  msgid "PHP Max Post Size"
482
+ msgstr "PHP Max Post Size"
483
 
484
+ # copy
485
  #: bws_menu.php:217
486
  msgid "PHP Max Script Execute Time"
487
+ msgstr "PHP Max Script Execute Time"
488
 
489
  #: bws_menu.php:218
490
  msgid "PHP Exif support"
491
+ msgstr "PHP podpora Exif"
492
 
493
  #: bws_menu.php:219
494
  msgid "PHP IPTC support"
495
+ msgstr "PHP podpora IPTC"
496
 
497
  #: bws_menu.php:220
498
  msgid "PHP XML support"
499
+ msgstr "PHP podpora XML"
500
 
501
  #: bws_menu.php:226
502
  msgid "Database"
503
+ msgstr "Databáze"
504
 
505
  #: bws_menu.php:228
 
506
  msgid "WP DB version"
507
+ msgstr "WP verze DB"
508
 
509
  #: bws_menu.php:229
 
510
  msgid "MySQL version"
511
  msgstr "Verze MYSQL"
512
 
527
  msgstr "Prosím vložte platnou e-mailovou adresu."
528
 
529
  #: bws_menu.php:264
 
530
  msgid "Email with system info is sent to"
531
  msgstr "E-mail se systémovým nastavením byl odeslán na"
532
 
538
  msgid "Sorry, email message could not be delivered."
539
  msgstr "Je nám líto, ale e-mail nemohl být doručen."
540
 
541
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:360 deprecated.php:91
542
+ msgid "Plugins"
543
+ msgstr "Pluginy"
544
+
545
+ #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:611 deprecated.php:92
546
+ msgid "Themes"
547
+ msgstr "Šablony"
548
+
549
  #: bws_menu.php:309 bws_menu.php:313 bws_menu.php:662
550
  msgid "System status"
551
  msgstr "Stav systému"
555
  msgstr "Podpora"
556
 
557
  #: bws_menu.php:318
 
558
  msgid "Manage purchased licenses & subscriptions"
559
+ msgstr "Spravovat zakoupené licence a předplatné"
560
 
561
  #: bws_menu.php:326
562
  #, php-format
564
  msgstr "Získejte přístup k %s+ Premiovým pluginům"
565
 
566
  #: bws_menu.php:328
 
567
  msgid "Subscribe to Pro Membership"
568
  msgstr "Přihlásit se k Pro členství"
569
 
570
+ #: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:749
571
+ #: deprecated.php:227
572
+ msgid "Check license key"
573
+ msgstr "Zkontrolovat licenční klíč"
574
+
575
  #: bws_menu.php:339
576
  msgid "Enter your license key"
577
  msgstr "Vložte váš licenční klíč"
578
 
579
+ #: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
580
+ #: class-bws-settings.php:728 deprecated.php:259 deprecated.php:267
581
+ #: deprecated.php:629 deprecated.php:700 deprecated.php:709
582
+ msgid "Activate"
583
+ msgstr "Aktivovat"
584
+
585
  #: bws_menu.php:361
586
  msgid "Upload Plugin"
587
  msgstr "Nahrát plugin"
600
  "nebo odstranit tento plugin."
601
 
602
  #: bws_menu.php:367
 
603
  msgid ""
604
  "Plugin could not be activated because it triggered a <strong>fatal error</"
605
  "strong>."
606
  msgstr ""
607
+ "Plugin nemůže být aktivován, neboť způsobil <strong>závažnou chybu</strong>."
608
 
609
  #: bws_menu.php:370
610
  msgid "Plugin <strong>activated</strong>."
618
  msgid "Downloading install package from"
619
  msgstr "Stahování instalačního balíčku z"
620
 
621
+ #: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
622
+ #: class-bws-settings.php:948 class-bws-settings.php:970
623
+ #: class-bws-settings.php:992 deprecated.php:387 deprecated.php:409
624
+ #: deprecated.php:431
625
+ msgid "Failed to download the zip archive. Please, upload the plugin manually"
626
+ msgstr "Stažení zip archivu selhalo. Prosíme, nahrajte plugin ručně."
627
+
628
  #: bws_menu.php:408
629
  msgid "Unpacking the package"
630
  msgstr "Rozbalování balíčku"
633
  msgid "Installing the plugin"
634
  msgstr "Instalace pluginu"
635
 
636
+ #: bws_menu.php:417 class-bws-settings.php:960 deprecated.php:399
637
+ msgid "Failed to open the zip archive. Please, upload the plugin manually"
638
+ msgstr "Otevření zip archivu selhalo. Prosíme, nahrajte plugin ručně."
639
+
640
+ #: bws_menu.php:424 class-bws-settings.php:966 deprecated.php:405
641
+ msgid ""
642
+ "Your server does not support either ZipArchive or Phar. Please, upload the "
643
+ "plugin manually"
644
+ msgstr ""
645
+ "Váš server nepodporuje buď ZipArchive nebo Phar. Prosím, nahrajte plugin "
646
+ "ručně"
647
+
648
  #: bws_menu.php:427
649
  #, php-format
650
  msgid "The plugin %s is successfully installed."
651
+ msgstr "Plugin %s úspěšně nainstalován."
652
+
653
+ #: bws_menu.php:434 class-bws-settings.php:973 deprecated.php:412
654
+ msgid "UploadDir is not writable. Please, upload the plugin manually"
655
+ msgstr "Nelze zapisovat do UploadDir. Prosím, nahrajte plugin ručně"
656
 
657
  #: bws_menu.php:439
658
  msgid "Activate Plugin"
659
  msgstr "Aktivovat plugin"
660
 
661
  #: bws_menu.php:439 bws_menu.php:445
 
662
  msgid "Return to BestWebSoft Panel"
663
  msgstr "Návrat na BestWebSoft panel"
664
 
675
  msgstr "Neninstalováno"
676
 
677
  #: bws_menu.php:457
 
678
  msgid "Filter results"
679
  msgstr "Výsledky filtrování"
680
 
687
  msgstr "Neninstalováno"
688
 
689
  #: bws_menu.php:528
 
690
  msgid "Renew to get updates"
691
+ msgstr "Obnovit pro získání aktualizací"
692
 
693
  #: bws_menu.php:531
694
+ #, php-format
695
  msgid "Update to v %s"
696
+ msgstr "Aktualizovat na %s"
697
 
698
  #: bws_menu.php:543 bws_menu.php:566 bws_menu.php:575
699
  msgid "Install Now"
700
  msgstr "Instalovat nyní"
701
 
702
+ #: bws_menu.php:549 class-bws-settings.php:156 class-bws-settings.php:1056
703
  msgid "Upgrade to Pro"
704
  msgstr "Aktualizovat na Pro"
705
 
715
  msgid "Nothing found. Try another criteria."
716
  msgstr "Nic nenalezeno. Zkuste jiná kritéria."
717
 
718
+ # podle, nebo taky od
719
  #: bws_menu.php:621 bws_menu.php:641
720
  #, php-format
721
  msgid "By %s"
722
+ msgstr "podle %s"
723
 
724
  #: bws_menu.php:648
725
  msgid "Already Installed"
737
  msgid "Send to custom email &#187;"
738
  msgstr "Odeslat na vlastní e-mail &#187;"
739
 
740
+ #: class-bws-settings.php:135
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
741
  msgid "Information"
742
+ msgstr "Informace"
743
 
744
+ #: class-bws-settings.php:143
 
745
  msgid "Inactive"
746
+ msgstr "Neaktivní"
747
 
748
+ #: class-bws-settings.php:151
749
  msgid "Expired"
750
+ msgstr "Expirované"
751
 
752
+ #: class-bws-settings.php:154
753
  #, php-format
754
  msgid "%s day(-s) left"
755
+ msgstr "%s dnů zbývá"
756
 
757
+ #: class-bws-settings.php:160
758
+ #, php-format
759
  msgid "Expired on %s"
760
+ msgstr "Vypršela dne %s"
761
 
762
+ #: class-bws-settings.php:160
763
  msgid "Renew Now"
764
+ msgstr "Obnovit nyní"
765
 
766
+ #: class-bws-settings.php:162
 
767
  msgid "Active"
768
+ msgstr "Aktivní"
769
 
770
+ #: class-bws-settings.php:167
 
771
  msgid "License"
772
+ msgstr "Licence"
773
 
774
+ #: class-bws-settings.php:170
 
775
  msgid "Status"
776
+ msgstr "Stav"
777
 
778
+ #: class-bws-settings.php:174
 
779
  msgid "Version"
780
+ msgstr "Verze"
781
 
782
+ #: class-bws-settings.php:282
 
783
  msgid "All plugin settings were restored."
784
+ msgstr "Všechna nastavení pluginu byla obnovena"
785
 
786
+ #: class-bws-settings.php:420
 
787
  msgid "Custom Code"
788
+ msgstr "Vlastní kód"
789
+
790
+ #: class-bws-settings.php:424 deprecated.php:497
791
+ msgid "You do not have sufficient permissions to edit plugins for this site."
792
+ msgstr "Nemáte dostatečná oprávnění pro úpravu pluginů tohoto webu."
793
+
794
+ #: class-bws-settings.php:429 deprecated.php:618
795
+ msgid "These styles will be added to the header on all pages of your site."
796
+ msgstr "Tyto styly budou přidány do hlaviček všech stránek vašeho webu."
797
 
798
+ #: class-bws-settings.php:432 deprecated.php:620
799
+ #, php-format
800
+ msgid ""
801
+ "This PHP code will be hooked to the %s action and will be printed on front "
802
+ "end only."
803
+ msgstr ""
804
+ "Tento PHP kód bude závislý na %s akci a bude zobrazen pouze na front endu."
805
+
806
+ #: class-bws-settings.php:435
807
  msgid "These code will be added to the header on all pages of your site."
808
+ msgstr "Tento kód bude přidán do záhlaví všech stránek vašeho webu."
809
 
810
+ #: class-bws-settings.php:443 deprecated.php:644
811
  #, php-format
812
+ msgid ""
813
+ "You need to make this files writable before you can save your changes. See "
814
+ "%s the Codex %s for more information."
815
  msgstr ""
816
+ "Před tím, než budete moci vaše změny uložit, nastavte těmto souborům "
817
+ "oprávnění pro zápis. Podívejte se %s na Kodex %s pro více informací."
818
+
819
+ #: class-bws-settings.php:453 deprecated.php:626
820
+ msgid "Browsing"
821
+ msgstr "Procházení"
822
+
823
+ #: class-bws-settings.php:457
824
+ #, php-format
825
+ msgid "Activate custom %s code."
826
+ msgstr "Aktivovat vlastní %s kód."
827
 
828
+ #: class-bws-settings.php:464 deprecated.php:633
829
+ #, php-format
830
+ msgid "Learn more about %s"
831
+ msgstr "Dozvědět se více o %s"
832
+
833
+ #: class-bws-settings.php:524
834
  msgid "Miscellaneous Settings"
835
+ msgstr "Různá nastavení"
836
 
837
+ #: class-bws-settings.php:533 class-bws-settings.php:584
838
  #, php-format
839
  msgid ""
840
  "It is prohibited to change %s settings on this site in the %s network "
841
  "settings."
842
+ msgstr "Je zakázáno měnit nastavení %s na této stránce v %s nastavení sítě."
843
 
844
+ #: class-bws-settings.php:536 class-bws-settings.php:587
845
  #, php-format
846
  msgid ""
847
  "It is prohibited to view %s settings on this site in the %s network settings."
848
+ msgstr "Je zobrazit nastavení %s na této stránce v %s nastavení sítě."
849
 
850
+ #: class-bws-settings.php:545
 
851
  msgid "Pro Options"
852
+ msgstr "PRO nastavení"
853
 
854
+ #: class-bws-settings.php:548
855
  msgid "Enable to display plugin Pro options."
856
+ msgstr "Povolit zobrazení PRO voleb pluginu."
857
 
858
+ #: class-bws-settings.php:553
859
  msgid "Track Usage"
860
+ msgstr "Sběr statistik"
861
 
862
+ #: class-bws-settings.php:556
863
  msgid ""
864
  "Enable to allow tracking plugin usage anonymously in order to make it better."
865
  msgstr ""
866
+ "Umožnit anonymní sledování využití pluginu tak, aby mohl být dále vylepšován."
867
 
868
+ #: class-bws-settings.php:560
 
869
  msgid "Default Settings"
870
+ msgstr "Výchozí nastavení"
871
 
872
+ #: class-bws-settings.php:562
 
873
  msgid "Restore Settings"
874
  msgstr "Obnovit nastavení"
875
 
876
+ #: class-bws-settings.php:563
 
877
  msgid "This will restore plugin settings to defaults."
878
+ msgstr "Toto obnoví veškerá nastavení pluginu na výchozí hodnoty."
879
 
880
+ #: class-bws-settings.php:575
881
  msgid "Import / Export"
882
+ msgstr "Import / Export"
883
 
884
+ #: class-bws-settings.php:691 class-bws-settings.php:724
885
  #: class-bws-settings.php:746
 
886
  msgid "License Key"
887
+ msgstr "Licenční klíč"
888
 
889
  #: class-bws-settings.php:714
 
890
  msgid "Congratulations! Pro license is activated successfully."
891
+ msgstr "Gratulujeme! PRO licence byla úspěšně aktivována."
892
 
893
  #: class-bws-settings.php:715
894
+ #, php-format
895
+ msgid "You will be automatically redirected to the %s in %s seconds."
896
+ msgstr ""
897
 
898
  #: class-bws-settings.php:715
 
899
  msgid "Settings page"
900
+ msgstr "Stránka nastavení"
901
 
902
  #: class-bws-settings.php:730
903
+ #, php-format
904
  msgid "Enter your license key to activate %s and get premium plugin features."
905
+ msgstr ""
906
+ "Vložte váš licenční klíč pro aktivaci %s a získání prémiových fukcí pluginu."
907
+
908
+ #: class-bws-settings.php:733 class-bws-settings.php:920 deprecated.php:362
909
+ #: deprecated.php:703
910
+ msgid ""
911
+ "Unfortunately, you have exceeded the number of available tries per day. "
912
+ "Please, upload the plugin manually."
913
+ msgstr ""
914
+ "Bohužel, jste překročili počet dostupných pokusů za den. Prosím, nahrejte "
915
+ "plugin ručně."
916
+
917
+ #: class-bws-settings.php:736 deprecated.php:694
918
+ #, php-format
919
+ msgid "Start Your Free %s-Day Trial Now"
920
+ msgstr "Vyzkoušejte vaší %s-denní zkušební verzi zdarma nyní"
921
 
922
  #: class-bws-settings.php:751
 
923
  msgid ""
924
  "If necessary, you can check if the license key is correct or reenter it in "
925
  "the field below."
926
  msgstr ""
927
  "V případě potřeby zkontrolujte, je-li licenční klíč správně zadán, případně "
928
+ "jej do pole níže vložte znova."
 
929
 
930
  #: class-bws-settings.php:756
931
  msgid "Manage License Settings"
932
+ msgstr "Správa nastavení licencí"
933
 
934
  #: class-bws-settings.php:758
 
935
  msgid "Login to Client Area"
936
+ msgstr "Přihlášení do klientská zóny"
937
 
938
  #: class-bws-settings.php:760
939
  msgid ""
940
  "Manage active licenses, download BWS products, and view your payment history "
941
  "using BestWebSoft Client Area."
942
  msgstr ""
943
+ "Správa aktivních licencí, stahování BWS produktů a zobrazení historie plateb "
944
+ "v BestWebSoft klientské zóně."
945
+
946
+ #: class-bws-settings.php:815 class-bws-settings.php:918 deprecated.php:141
947
+ #: deprecated.php:360
948
+ msgid "This license key is bound to another site."
949
+ msgstr "Tento licenční klíč je přidružen k jinému webu."
950
+
951
+ #: class-bws-settings.php:817 deprecated.php:143
952
+ msgid ""
953
+ "This license key is valid, but Your license has expired. If you want to "
954
+ "update our plugin in future, you should extend the license."
955
+ msgstr ""
956
+ "Tento licenční klíč je platný, ale vaše licence vypršela. Chcete-li náš "
957
+ "plugin v budoucnosti aktualizovat, měli by jste licenci prodloužit."
958
+
959
+ #: class-bws-settings.php:819 deprecated.php:145
960
+ msgid "Unfortunately, you have exceeded the number of available tries."
961
+ msgstr "Bohužel, překročili jste dostupný počet pokusů."
962
+
963
+ #: class-bws-settings.php:821 deprecated.php:147
964
+ msgid ""
965
+ "Unfortunately, the Pro Trial licence was already installed to this domain. "
966
+ "The Pro Trial license can be installed only once."
967
+ msgstr ""
968
+ "Bohužel, tato zkušební Pro licence již pro tuto doménu byla použita. "
969
+ "Zkušební Pro licence může být instalována pouze jedenkrát."
970
+
971
+ #: class-bws-settings.php:826 deprecated.php:151
972
+ msgid "The Pro Trial license key is valid."
973
+ msgstr "Licenční klíč zkušební Pro verze je platný"
974
+
975
+ #: class-bws-settings.php:834 deprecated.php:159 deprecated.php:246
976
+ #, php-format
977
+ msgid ""
978
+ "In order to continue using the plugin it is necessary to buy a %s license."
979
+ msgstr ""
980
+ "Pokud chcete nadále využívat tento plugin, je nutné zakoupit %s licenci."
981
 
982
+ #: class-bws-settings.php:1031 deprecated.php:463
983
+ msgid "Please, enter Your license key"
984
+ msgstr "Prosím, vložte váš licenční klíč"
985
+
986
+ #: class-bws-settings.php:1043
987
  msgid "Need Help?"
988
+ msgstr "Potřebujete pomoc?"
989
 
990
+ #: class-bws-settings.php:1045
 
991
  msgid "Read the Instruction"
992
+ msgstr "Přečíst si instrukce"
993
 
994
+ #: class-bws-settings.php:1049
995
  msgid "Watch the Video"
996
+ msgstr "Přehrát video"
997
 
998
+ #: class-bws-settings.php:1060
 
999
  msgid "Start Your Free Trial"
1000
+ msgstr "Vyzkoušejte po omezenou dobu"
1001
 
1002
+ #: deprecated.php:93
1003
+ msgid "System Status"
1004
+ msgstr "Stav systému"
1005
 
1006
+ #: deprecated.php:204
1007
+ msgid "Please, enter your license key"
1008
+ msgstr "Prosím, vložte váš licenční klíč."
1009
 
1010
+ #: deprecated.php:223
1011
+ msgid ""
1012
+ "If necessary, you can check if the license key is correct or reenter it in "
1013
+ "the field below. You can find your license key on your personal page - "
1014
+ "Client Area - on our website"
1015
+ msgstr ""
1016
+ "V případě potřeby zkontrolujte, je-li licenční klíč správně zadán, případně "
1017
+ "jej do pole níže vložte znova. Váš licenční klíč najdete na vaší osobní "
1018
+ "stránce - Klientská zóna - na našem webu"
1019
 
1020
+ #: deprecated.php:223
1021
+ msgid ""
1022
+ "(your username is the email address specified during the purchase). If "
1023
+ "necessary, please submit \"Lost your password?\" request."
1024
+ msgstr ""
1025
+ "(vaše uživatelské jméno je e-mailová adresa uvedena při nákupu). Pokud je to "
1026
+ "nutné, prosím odešlete \"Lost your password?\" požadavek."
1027
 
1028
+ #: deprecated.php:247
1029
+ msgid "After that, you can activate it by entering your license key."
1030
+ msgstr "Poté jej lze snadno aktivovat zadáním licenčního klíče."
1031
 
1032
+ #: deprecated.php:249 deprecated.php:688
1033
+ msgid "License key can be found in the"
1034
+ msgstr "Licenční klíč najdete v"
1035
 
1036
+ #: deprecated.php:251 deprecated.php:690
1037
+ msgid "(your username is the email address specified during the purchase)."
1038
+ msgstr "(vaše uživatelské jméno je e-mailová adresa uvedená při nákupu)."
1039
 
1040
+ #: deprecated.php:278
1041
+ msgid ""
1042
+ "Congratulations! The Pro license of the plugin is activated successfully."
1043
+ msgstr "Gratulujeme! PRO licence pluginu je úspěšně aktivována."
1044
 
1045
+ #: deprecated.php:280 deprecated.php:669
1046
+ msgid "Please, go to"
1047
+ msgstr "Prosím, jděte na"
1048
 
1049
+ #: deprecated.php:280 deprecated.php:669
1050
+ msgid "the setting page"
1051
+ msgstr "stránka nastavení"
1052
 
1053
+ #: deprecated.php:281 deprecated.php:670
1054
+ msgid "You will be redirected automatically in 5 seconds."
1055
+ msgstr "Budete automaticky přesměrováni za 5 sekund."
1056
 
1057
+ #: deprecated.php:315
1058
+ msgid "Check premium options on the plugin settings page!"
1059
+ msgstr "Zkontrolujte prémiové možnosti na stránce nastavení pluginů!"
 
 
 
 
1060
 
1061
+ #: deprecated.php:478
1062
+ msgid "Restore all plugin settings to defaults"
1063
+ msgstr "Obnovit veškerá nastavení pluginu na výchozí hodnoty?"
1064
 
1065
+ #: deprecated.php:480
1066
+ msgid "Restore settings"
1067
+ msgstr "Obnovit nastavení"
1068
+
1069
+ #: deprecated.php:548 deprecated.php:575
1070
+ #, php-format
1071
+ msgid "File %s edited successfully."
1072
+ msgstr "Soubor %s byl úspěšně upraven."
1073
 
1074
+ #: deprecated.php:550 deprecated.php:577
1075
+ msgid "Not enough permissions to create or update the file"
1076
+ msgstr "Nedostatečná oprávnění pro vytvoření či úpravu souboru"
1077
 
1078
+ #: deprecated.php:580
1079
+ msgid "Not enough permissions to create the file"
1080
+ msgstr "Nedostatečná oprávnění pro vytvoření souboru"
1081
 
1082
+ #: deprecated.php:624
1083
+ msgid "Editing"
1084
+ msgstr "Úprava"
1085
 
1086
+ #: deprecated.php:667
1087
+ msgid ""
1088
+ "Congratulations! Pro version of the plugin is installed and activated "
1089
+ "successfully."
1090
+ msgstr "Gratulujeme! PRO verze pluginu byla úspěšně instalována a aktivována."
1091
+
1092
+ #: deprecated.php:677
1093
+ msgid "Show Pro features"
1094
+ msgstr "Zobrazit Pro vlastnosti"
1095
+
1096
+ #: deprecated.php:684
1097
+ msgid "Enter your license key to install and activate"
1098
+ msgstr "Vložte váš licenční klíč pro instalaci a aktivaci"
1099
+
1100
+ #: deprecated.php:686
1101
+ msgid "version of the plugin."
1102
+ msgstr "verze pluginu."
1103
+
1104
+ #: product_list.php:7
1105
+ msgid "Advertisement"
1106
+ msgstr "Reklama"
1107
+
1108
+ #: product_list.php:8
1109
+ msgid "Content & Media"
1110
+ msgstr "Obsah & Média"
1111
+
1112
+ #: product_list.php:9
1113
+ msgid "Management"
1114
+ msgstr "Správa"
1115
+
1116
+ #: product_list.php:10
1117
+ msgid "Recommended"
1118
+ msgstr "Doporučeno"
1119
+
1120
+ #: product_list.php:11
1121
+ msgid "Security"
1122
+ msgstr "Bezpečnost"
1123
+
1124
+ #: product_list.php:12
1125
+ msgid "Site Stats"
1126
+ msgstr "Statistiky webu"
1127
+
1128
+ #: product_list.php:13
1129
+ msgid "Social"
1130
+ msgstr "Sociální"
1131
+
1132
+ #: product_list.php:14
1133
+ msgid "Utilities"
1134
+ msgstr "Utility"
1135
+
1136
+ #: product_list.php:15
1137
+ msgid "Other"
1138
+ msgstr "Ostatní"
1139
+
1140
+ #~ msgid "Thank you for installing"
1141
+ #~ msgstr "Děkujeme vám za instalaci"
1142
+
1143
+ #~ msgid "Thank you for choosing"
1144
+ #~ msgstr "Děkujeme, že jste si vybrali"
1145
+
1146
+ # copy
1147
+ #~ msgid "PHP Safe Mode"
1148
+ #~ msgstr "PHP Safe Mode"
1149
+
1150
+ #~ msgid "You will be automatically redirected to the %s in 7 seconds."
1151
+ #~ msgstr "Budete automaticky přesměrováni na %s za 7 sekund."
1152
+
1153
+ #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
1154
  #~ msgstr ""
1155
+ #~ "Pokud se Vám náš plugin líbí, dejte mu prosím 5 hvězdiček na WordPressu"
 
1156
 
1157
+ #~ msgid "Rate the plugin"
1158
+ #~ msgstr "Hodnotit plugin"
1159
 
1160
+ #~ msgid "If there is something wrong about it, please contact us"
1161
+ #~ msgstr "Pokud cokoli není v pořádku, obraťte se na nás"
1162
 
1163
+ #~ msgid "Donations play an important role in supporting great projects"
1164
+ #~ msgstr "Dary hrají důležitou roli v podpoře velkých projektů"
1165
 
1166
+ #~ msgid "This license key is bind to another site"
1167
+ #~ msgstr "Tento licenční klíč se váže k jinému webu"
1168
 
1169
+ #~ msgid ""
1170
+ #~ "Unfortunately, Your license has expired. To continue getting top-priority "
1171
+ #~ "support and plugin updates you should extend it in your"
1172
+ #~ msgstr ""
1173
+ #~ "Bohužel, Vaše licence vypršela. Chcete-li pokračovat v získávání top-"
1174
+ #~ "prioritní podpory a aktualizace pluginu měli byste ji prodloužit ve vašem"
1175
 
1176
+ #~ msgid ""
1177
+ #~ "Congratulations! Pro version of the plugin is successfully installed and "
1178
+ #~ "activated."
1179
+ #~ msgstr ""
1180
+ #~ "Gratulujeme! PRO verze pluginu byla úspěšně instalována a aktivována."
1181
 
1182
+ #~ msgid "After that you can activate it by entering your license key."
1183
+ #~ msgstr "Poté, co jej aktivujete vložením vašeho licenčního klíče."
1184
 
1185
+ #~ msgid ""
1186
+ #~ "Congratulations! The Pro license of the plugin is successfully activated."
1187
+ #~ msgstr "Gratulujeme! PRO licence pluginu je úspěšně aktivována."
1188
 
1189
+ #~ msgid "This license key is bind to another site."
1190
+ #~ msgstr "Tento licenční klíč je přidružen k jiným webovým stránkám."
1191
 
1192
+ #~ msgid ""
1193
+ #~ "If needed you can check if the license key is correct or reenter it in "
1194
+ #~ "the field below. You can find your license key on your personal page - "
1195
+ #~ "Client area - on our website"
1196
+ #~ msgstr ""
1197
+ #~ "V případě potřeby zkontrolujte, je-li licenční klíč správně zadán, "
1198
+ #~ "případně jej do pole níže vložte znova. Váš licenční klíč najdete na vaší "
1199
+ #~ "osobní stránce - Client area - na našem webu"
1200
 
1201
+ #~ msgid ""
1202
+ #~ "Notice: Your Pro Trial license has expired. To continue using the plugin "
1203
+ #~ "you should buy a Pro license"
1204
+ #~ msgstr ""
1205
+ #~ "Poznámka: Vaše zkušební Pro verze pluginu vypršela. Pro další využíváni "
1206
+ #~ "pluginu bude nutné zakoupit Pro licenci"
1207
 
1208
+ #~ msgid ""
1209
+ #~ "Your license has expired. To continue getting top-priority support and "
1210
+ #~ "plugin updates you should extend it."
1211
+ #~ msgstr ""
1212
+ #~ "Vaše licence vypršela. Pro přístup k top-prioritní podpoře a aktualizacím "
1213
+ #~ "pluginu ji budete muset prodloužit."
1214
 
1215
+ #~ msgid "You license for"
1216
+ #~ msgstr "Vaše licence pro"
1217
+
1218
+ #~ msgid "expires on"
1219
+ #~ msgstr "vyprší"
1220
+
1221
+ #~ msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
1222
+ #~ msgstr "a nebudete mít přístup k TOP-PRIORITNÍ PODPOŘE nebo AKTUALIZACÍM."
1223
 
1224
  #~ msgid ""
1225
+ #~ "You can always look at premium options by clicking on the \"Show Pro "
1226
+ #~ "features\" in the \"Go PRO\" tab"
1227
  #~ msgstr ""
1228
+ #~ "Vždy se můžete podívat na možnosti prémiové verze, kliknutím na "
1229
+ #~ "\"Zobrazit Pro vlastnosti\" na \"Go PRO\" záložce"
1230
 
1231
+ #~ msgid "Are you sure you want to restore all settings by default?"
1232
+ #~ msgstr ""
1233
+ #~ "Jste si jisti, že chcete obnovit veškerá nastavení na výchozí hodnoty?"
1234
 
1235
+ #~ msgid ""
1236
+ #~ "This license key is bind to another website. Change it via personal "
1237
+ #~ "Client Area."
1238
+ #~ msgstr ""
1239
+ #~ "Tento licenční klíč je přidružen k jiným webovým stránkám. Změňte jej "
1240
+ #~ "prostřednictvím osobní Klientské zóny."
1241
 
1242
+ #~ msgid "Congratulations! Pro Membership license is successfully activated."
1243
+ #~ msgstr "Gratulujeme! Členská PRO licence byla úspěšně aktivována."
1244
 
1245
+ #~ msgid "Memory usage"
1246
+ #~ msgstr "Využití paměti"
1247
 
1248
+ #~ msgid "MYSQL Version"
1249
+ #~ msgstr "Verze MYSQL"
1250
 
1251
+ #~ msgid "Site URL"
1252
+ #~ msgstr "URL webových stránek"
1253
 
1254
+ #~ msgid "WordPress Version"
1255
+ #~ msgstr "Verze WordPress"
1256
 
1257
+ #~ msgid "WordPress DB Version"
1258
+ #~ msgstr "WordPress verze DB"
1259
 
1260
+ # copy
1261
+ #~ msgid "Multisite"
1262
+ #~ msgstr "Multisite"
1263
 
1264
+ #~ msgid "Email with system info is sent to "
1265
+ #~ msgstr "E-mail se systémovým nastavením byl odeslán na"
1266
 
1267
+ #~ msgid "Client Area"
1268
+ #~ msgstr "Klientská zóna"
1269
 
1270
+ #~ msgid "Successfully installed the plugin"
1271
+ #~ msgstr "Plugin byl úspěšně instalován"
1272
 
1273
+ #~ msgid "Environment"
1274
+ #~ msgstr "Prostředí"
bws_menu/languages/bestwebsoft-fr_FR.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-01-25 17:11+0300\n"
6
- "PO-Revision-Date: 2017-01-25 17:11+0300\n"
7
  "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
@@ -14,7 +14,7 @@ msgstr ""
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "Plural-Forms: nplurals=2;plural=n>2;\n"
17
- "X-Generator: Poedit 1.5.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: bws_functions.php:72 bws_functions.php:190
@@ -38,24 +38,22 @@ msgid "Plugins page"
38
  msgstr "Page des extensions"
39
 
40
  #: bws_functions.php:91
41
- #, fuzzy
42
  msgid "Like the plugin?"
43
  msgstr "Voter pour l'extension"
44
 
45
  #: bws_functions.php:93
46
  msgid "Rate it"
47
- msgstr ""
48
 
49
  #: bws_functions.php:102
50
  msgid "Need help?"
51
  msgstr "Besoin d'aide ?"
52
 
53
- #: bws_functions.php:103 bws_functions.php:914
54
  msgid "Visit Help Center"
55
  msgstr "Visiter le site du support"
56
 
57
  #: bws_functions.php:106
58
- #, fuzzy
59
  msgid "Want to support the plugin?"
60
  msgstr "Voter pour l'extension"
61
 
@@ -81,27 +79,25 @@ msgstr ""
81
  "inactive."
82
 
83
  #: bws_functions.php:127 bws_functions.php:339 bws_menu.php:627
84
- #: class-bws-settings.php:136
85
  msgid "Learn More"
86
  msgstr "En savoir plus"
87
 
88
  #: bws_functions.php:144
89
- #, fuzzy
90
  msgid ""
91
  "Notice: Your Pro Trial license has expired. To continue using the plugin, "
92
  "you should buy a Pro license"
93
  msgstr ""
94
- "Votre licence d'évaluation est terminée. Pour continuer à disposer du "
95
- "support rapide et des mises à jour de l'extension vous devez la renouveler."
96
 
97
  #: bws_functions.php:146
98
- #, fuzzy
99
  msgid ""
100
  "Your license has expired. To continue getting top-priority support and "
101
  "plugin updates, you should extend it."
102
  msgstr ""
103
  "Votre licence est terminée. Pour continuer à disposer du support rapide et "
104
- "des mises à jour de l'extension vous devez la renouveller."
105
 
106
  #: bws_functions.php:146 bws_functions.php:382 deprecated.php:584
107
  msgid "Learn more"
@@ -130,8 +126,9 @@ msgstr ""
130
  "correctement. Merci de mettre à jour Wordpress avec la dernière version."
131
 
132
  #: bws_functions.php:207
133
- msgid "Thank you for installing"
134
- msgstr "Merci d'avoir installé"
 
135
 
136
  #: bws_functions.php:208
137
  msgid "Let's get started"
@@ -142,9 +139,8 @@ msgstr "Démarrer"
142
  msgid "Settings"
143
  msgstr "Réglages"
144
 
145
- #: bws_functions.php:211 deprecated.php:694 bws_menu.php:328
146
- #: class-bws-settings.php:736 class-bws-settings.php:1046
147
- #: class-bws-settings.php:1076
148
  msgid "or"
149
  msgstr "ou"
150
 
@@ -171,12 +167,14 @@ msgstr "Moins de détails"
171
 
172
  #: bws_functions.php:262
173
  msgid "Deprecated function(-s) is used on the site here:"
174
- msgstr ""
175
 
176
  #: bws_functions.php:276
177
  msgid ""
178
  "This function(-s) will be removed over time. Please update the product(-s)."
179
  msgstr ""
 
 
180
 
181
  #: bws_functions.php:335
182
  msgid "It’s time to upgrade your"
@@ -197,15 +195,18 @@ msgstr ""
197
  "options."
198
 
199
  #: bws_functions.php:382
200
- #, fuzzy, php-format
201
  msgid ""
202
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
203
  "SUPPORT or UPDATES."
204
- msgstr "et vous ne disposerez plus du support rapide et des mises à jour."
 
 
205
 
206
  #: bws_functions.php:477
207
- msgid "Thank you for choosing"
208
- msgstr "Merci d'avoir choisi"
 
209
 
210
  #: bws_functions.php:478
211
  msgid ""
@@ -219,8 +220,8 @@ msgstr ""
219
  msgid "Suggest a Feature"
220
  msgstr "Proposer une fonctionnalité"
221
 
222
- #: bws_functions.php:495 class-bws-settings.php:527 class-bws-settings.php:530
223
- #: class-bws-settings.php:585 class-bws-settings.php:588
224
  msgid "Notice"
225
  msgstr "Avertissement"
226
 
@@ -228,96 +229,86 @@ msgstr "Avertissement"
228
  msgid "The plugin's settings have been changed."
229
  msgstr "Les paramètres de l'extension ont été modifiés."
230
 
231
- #: bws_functions.php:496 deprecated.php:640 class-bws-settings.php:175
232
- #: class-bws-settings.php:189
233
  msgid "Save Changes"
234
- msgstr "Sauvegarder les modifications"
235
 
236
  #: bws_functions.php:510
237
- #, fuzzy
238
  msgid ""
239
  "You can always look at premium options by checking the \"Pro Options\" in "
240
  "the \"Misc\" tab."
241
  msgstr ""
242
  "Vous pouvez toujours consulter les options premium en cliquant sur le lien "
243
- "\"Voir les fonctionnalités de la version PRO\" dans l'onglet Passer PRO"
244
 
245
- #: bws_functions.php:649
246
  msgid "Add shortcode"
247
  msgstr "Ajouter le code court"
248
 
249
- #: bws_functions.php:649
250
  msgid "Add BestWebSoft plugins' shortcodes using this button."
251
  msgstr "Ajouter le code court des extensions BestWebSoft avec ce bouton."
252
 
253
- #: bws_functions.php:698
254
  msgid "Close"
255
  msgstr "Fermer"
256
 
257
- #: bws_functions.php:790
258
- #, fuzzy
259
  msgid "Are you sure you want to restore default settings?"
260
  msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
261
 
262
- #: bws_functions.php:793
263
  msgid "Yes, restore all settings"
264
  msgstr "Oui, remettre les valeurs par défaut"
265
 
266
- #: bws_functions.php:794
267
  msgid "No, go back to the settings page"
268
  msgstr "Non, retourner à la page des paramètres"
269
 
270
- #: bws_functions.php:840
271
  msgid "Plugin"
272
  msgstr "Extension"
273
 
274
- #: bws_functions.php:849
275
  msgid "Shortcode settings"
276
  msgstr "Paramètres du code court"
277
 
278
- #: bws_functions.php:854
279
  msgid "The shortcode will be inserted"
280
  msgstr "Le code court sera inséré"
281
 
282
- #: bws_functions.php:859
283
  msgid "Insert"
284
  msgstr "Insérer"
285
 
286
- #: bws_functions.php:919
287
  msgid "FAQ"
288
  msgstr "FAQ"
289
 
290
- #: bws_functions.php:925
291
  msgid "For more information:"
292
  msgstr "Pour plus d'informations&nbsp;:"
293
 
294
- #: bws_functions.php:926
295
  msgid "Documentation"
296
  msgstr "Documentation"
297
 
298
- #: bws_functions.php:927
299
  msgid "Video Instructions"
300
  msgstr "Vidéo explicative"
301
 
302
- #: bws_functions.php:928
303
  msgid "Submit a Request"
304
  msgstr "Soumettre une requête"
305
 
306
- #: deprecated.php:91 bws_menu.php:307 bws_menu.php:311 bws_menu.php:360
307
- msgid "Plugins"
308
- msgstr "Extensions"
309
-
310
- #: deprecated.php:92 bws_menu.php:308 bws_menu.php:312 bws_menu.php:611
311
- msgid "Themes"
312
- msgstr "Thèmes"
313
-
314
- #: deprecated.php:93
315
- msgid "System Status"
316
- msgstr "Etat du système"
317
 
318
- #: deprecated.php:133 deprecated.php:199 deprecated.php:352 bws_menu.php:120
319
- #: class-bws-settings.php:807 class-bws-settings.php:873
320
- #: class-bws-settings.php:909
321
  msgid ""
322
  "Something went wrong. Please try again later. If the error appears again, "
323
  "please contact us"
@@ -326,442 +317,179 @@ msgstr ""
326
  "nouveau, merci de contacter <a href=http://support.bestwebsoft."
327
  "com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
328
 
329
- #: deprecated.php:133 deprecated.php:199 deprecated.php:352 bws_menu.php:120
330
- #: class-bws-settings.php:807 class-bws-settings.php:873
331
- #: class-bws-settings.php:909
332
  msgid "We are sorry for inconvenience."
333
  msgstr "Nous sommes désolés pour le désagrément."
334
 
335
- #: deprecated.php:139 deprecated.php:358 bws_menu.php:126
336
- #: class-bws-settings.php:813 class-bws-settings.php:915
337
  msgid "Wrong license key."
338
  msgstr "Clé de licence incorrecte."
339
 
340
- #: deprecated.php:141 deprecated.php:360 class-bws-settings.php:815
341
- #: class-bws-settings.php:917
342
- #, fuzzy
343
- msgid "This license key is bound to another site."
344
- msgstr "La clé de licence correspond à un autre site."
345
-
346
- #: deprecated.php:143 class-bws-settings.php:817
347
  msgid ""
348
- "This license key is valid, but Your license has expired. If you want to "
349
- "update our plugin in future, you should extend the license."
350
  msgstr ""
351
- "La clé de licence est valide mais votre durée de validité est passée. Pour "
352
- "continuer à disposer du support rapide et des mises à jour de l'extension "
353
- "vous devez la renouveller."
354
 
355
- #: deprecated.php:145 class-bws-settings.php:819
356
- msgid "Unfortunately, you have exceeded the number of available tries."
 
 
 
 
357
  msgstr ""
358
  "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
359
  "télécharger l'extension manuellement."
360
 
361
- #: deprecated.php:147 class-bws-settings.php:821
 
 
 
 
 
 
 
 
 
 
362
  msgid ""
363
- "Unfortunately, the Pro Trial licence was already installed to this domain. "
364
- "The Pro Trial license can be installed only once."
365
  msgstr ""
366
  "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne "
367
  "peut-être installée qu'une seule fois."
368
 
369
- #: deprecated.php:151 class-bws-settings.php:825
370
- msgid "The Pro Trial license key is valid."
371
- msgstr "La clé de licence d'évaluation est valide."
372
-
373
- #: deprecated.php:153 bws_menu.php:140 class-bws-settings.php:827
374
  msgid "The license key is valid."
375
  msgstr "La clé de licence est valide."
376
 
377
- #: deprecated.php:156 bws_menu.php:142 class-bws-settings.php:830
378
  msgid "Your license will expire on"
379
  msgstr "Votre licence se termine le "
380
 
381
- #: deprecated.php:159 deprecated.php:246 class-bws-settings.php:833
382
- #, php-format
383
- msgid ""
384
- "In order to continue using the plugin it is necessary to buy a %s license."
385
- msgstr ""
386
- "Afin de pouvoir continuer à utiliser cette extension il est nécessaire "
387
- "d'acheter une licence %s."
388
-
389
- #: deprecated.php:204
390
- msgid "Please, enter your license key"
391
- msgstr "Merci de saisir votre clé de licence"
392
-
393
- #: deprecated.php:223
394
- #, fuzzy
395
- msgid ""
396
- "If necessary, you can check if the license key is correct or reenter it in "
397
- "the field below. You can find your license key on your personal page - "
398
- "Client Area - on our website"
399
  msgstr ""
400
- "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la "
401
- "saisir de nouveau dans le champ ci-dessous. Vous pouvez trouver votre clé de "
402
- "licence sur votre page personnelle (zone client) sur notre site web."
403
 
404
- #: deprecated.php:223
405
  msgid ""
406
- "(your username is the email address specified during the purchase). If "
407
- "necessary, please submit \"Lost your password?\" request."
408
  msgstr ""
409
- "(votre nom d'utilisateur est l'adresse e-mail que vous avez donnée lors de "
410
- "l'achat de l'extension). Si nécessaire, utilisez la fonction de demande de "
411
- "mot de passe perdu."
412
 
413
- #: deprecated.php:227 bws_menu.php:336 bws_menu.php:347
414
- #: class-bws-settings.php:749
415
- msgid "Check license key"
416
- msgstr "Vérifier la clé de licence"
417
 
418
- #: deprecated.php:247
419
- #, fuzzy
420
- msgid "After that, you can activate it by entering your license key."
421
- msgstr ""
422
- " Après vous pouvez activer cette extension en donnant votre clé de licence."
423
 
424
- #: deprecated.php:249 deprecated.php:688
425
- msgid "License key can be found in the"
426
- msgstr "La clé de licence peut être trouvée dans "
427
 
428
- #: deprecated.php:251 deprecated.php:690
429
- msgid "(your username is the email address specified during the purchase)."
430
- msgstr ""
431
- "(votre nom d'utilisateur est l'adresse e-mail que vous avez donnée lors de "
432
- "l'achat de l'extension)."
433
 
434
- #: deprecated.php:259 deprecated.php:267 deprecated.php:629 deprecated.php:700
435
- #: deprecated.php:709 bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
436
- #: class-bws-settings.php:728
437
- msgid "Activate"
438
- msgstr "Activé"
439
 
440
- #: deprecated.php:261 bws_menu.php:130 bws_menu.php:334
441
- msgid "Unfortunately, you have exceeded the number of available tries per day."
442
- msgstr ""
443
- "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
444
- "télécharger l'extension manuellement."
445
 
446
- #: deprecated.php:278
447
- #, fuzzy
448
- msgid ""
449
- "Congratulations! The Pro license of the plugin is activated successfully."
450
- msgstr ""
451
- "Félicitations! La version PRO de cette extension a été téléchargée et "
452
- "activée avec succès."
453
 
454
- #: deprecated.php:280 deprecated.php:669
455
- msgid "Please, go to"
456
- msgstr "Merci d’aller à"
457
 
458
- #: deprecated.php:280 deprecated.php:669
459
- msgid "the setting page"
460
- msgstr "Options supplémentaires"
461
 
462
- #: deprecated.php:281 deprecated.php:670
463
- msgid "You will be redirected automatically in 5 seconds."
464
- msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
465
 
466
- #: deprecated.php:315
467
- msgid "Check premium options on the plugin settings page!"
468
- msgstr ""
469
- "Vérifier les options premium sur la page des paramètres de l'extension!"
470
 
471
- #: deprecated.php:322 bws_menu.php:99 class-bws-settings.php:781
472
- msgid "Wrong license key"
473
- msgstr "Clé de licence incorrecte"
474
 
475
- #: deprecated.php:362 deprecated.php:703 class-bws-settings.php:733
476
- #: class-bws-settings.php:919
477
- msgid ""
478
- "Unfortunately, you have exceeded the number of available tries per day. "
479
- "Please, upload the plugin manually."
480
- msgstr ""
481
- "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
482
- "télécharger l'extension manuellement."
483
 
484
- #: deprecated.php:364 bws_menu.php:132 class-bws-settings.php:921
485
- #, fuzzy, php-format
486
- msgid ""
487
- "Unfortunately, Your license has expired. To continue getting top-priority "
488
- "support and plugin updates, you should extend it in your %s"
489
- msgstr ""
490
- "Désoler, votre licence est terminée. Pour continuer à disposer du support "
491
- "rapide et des mises à jour de l'extension vous devez la renouveler dans votre"
492
 
493
- #: deprecated.php:366 bws_menu.php:134 class-bws-settings.php:923
494
- msgid ""
495
- "Unfortunately, the Pro licence was already installed to this domain. The Pro "
496
- "Trial license can be installed only once."
497
- msgstr ""
498
- "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne "
499
- "peut-être installée qu'une seule fois."
500
 
501
- #: deprecated.php:387 deprecated.php:409 deprecated.php:431 bws_menu.php:400
502
- #: bws_menu.php:431 bws_menu.php:442 class-bws-settings.php:947
503
- #: class-bws-settings.php:969 class-bws-settings.php:991
504
- msgid "Failed to download the zip archive. Please, upload the plugin manually"
505
- msgstr ""
506
- "Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension "
507
- "manuellement."
508
 
509
- #: deprecated.php:399 bws_menu.php:417 class-bws-settings.php:959
510
- msgid "Failed to open the zip archive. Please, upload the plugin manually"
511
- msgstr ""
512
- "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
513
- "manuellement."
514
 
515
- #: deprecated.php:405 bws_menu.php:424 class-bws-settings.php:965
516
- msgid ""
517
- "Your server does not support either ZipArchive or Phar. Please, upload the "
518
- "plugin manually"
519
- msgstr ""
520
- "Votre serveur n'a pas le support du format des archives ZIP ou Phar. Merci "
521
- "de télécharger l'extension manuellement."
522
 
523
- #: deprecated.php:412 bws_menu.php:434 class-bws-settings.php:972
524
- msgid "UploadDir is not writable. Please, upload the plugin manually"
525
- msgstr ""
526
- "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
527
- "manuellement."
528
 
529
- #: deprecated.php:435 bws_menu.php:151 class-bws-settings.php:995
530
- msgid ""
531
- "Something went wrong. Try again later or upload the plugin manually. We are "
532
- "sorry for inconvenience."
533
- msgstr ""
534
- "Il est survenu une erreur. Essayer de nouveau ou bien télécharger "
535
- "l'extension manuellement.Nous sommes désolés pour le désagrément."
536
 
537
- #: deprecated.php:463 class-bws-settings.php:1030
538
- msgid "Please, enter Your license key"
539
- msgstr "Merci de saisir votre clé de licence"
540
 
541
- #: deprecated.php:478
542
- msgid "Restore all plugin settings to defaults"
543
- msgstr "Remettre les valeurs par défaut des paramètres de l'extension"
544
 
545
- #: deprecated.php:480
546
- msgid "Restore settings"
547
- msgstr "Remettre les paramètres"
548
 
549
- #: deprecated.php:497 class-bws-settings.php:421
550
- msgid "You do not have sufficient permissions to edit plugins for this site."
551
- msgstr ""
552
- "Vous n'avez pas assez de droits pour modifier l'extension pour ce site."
553
 
554
- #: deprecated.php:548 deprecated.php:575
555
- #, php-format
556
- msgid "File %s edited successfully."
557
- msgstr "Le fichier %s a été modifié avec succès."
558
 
559
- #: deprecated.php:550 deprecated.php:577
560
- msgid "Not enough permissions to create or update the file"
561
- msgstr "Pas assez de droits pour créer ou modifier le fichier"
562
-
563
- #: deprecated.php:580
564
- msgid "Not enough permissions to create the file"
565
- msgstr "Pas assez de droits pour créer le fichier"
566
-
567
- #: deprecated.php:618 class-bws-settings.php:426
568
- msgid "These styles will be added to the header on all pages of your site."
569
- msgstr ""
570
- "Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
571
-
572
- #: deprecated.php:620 class-bws-settings.php:429
573
- #, fuzzy, php-format
574
- msgid ""
575
- "This PHP code will be hooked to the %s action and will be printed on front "
576
- "end only."
577
- msgstr ""
578
- "Ce code PHP sera rattaché à l'action %s et sera affiché uniquement sur la "
579
- "partie publique."
580
-
581
- #: deprecated.php:624
582
- msgid "Editing"
583
- msgstr "Modifier"
584
-
585
- #: deprecated.php:626 class-bws-settings.php:450
586
- msgid "Browsing"
587
- msgstr "Parcourir"
588
-
589
- #: deprecated.php:633 class-bws-settings.php:461
590
- #, php-format
591
- msgid "Learn more about %s"
592
- msgstr "En savoir plus sur %s"
593
-
594
- #: deprecated.php:644 class-bws-settings.php:440
595
- #, php-format
596
- msgid ""
597
- "You need to make this files writable before you can save your changes. See "
598
- "%s the Codex %s for more information."
599
- msgstr ""
600
- "Vous devez rendre ce fichier modifiable avant de pouvoir enregistrer vos "
601
- "modifications. Regarder %s du Codex %s pour plus d'informations."
602
-
603
- #: deprecated.php:667
604
- #, fuzzy
605
- msgid ""
606
- "Congratulations! Pro version of the plugin is installed and activated "
607
- "successfully."
608
- msgstr ""
609
- "Félicitations! La version PRO de cette extension a été téléchargée et "
610
- "activée avec succès."
611
-
612
- #: deprecated.php:677
613
- msgid "Show Pro features"
614
- msgstr "Voir les fonctionnalités de la version PRO"
615
-
616
- #: deprecated.php:684
617
- msgid "Enter your license key to install and activate"
618
- msgstr "Saisir votre clé de licence pour installer et activer"
619
-
620
- #: deprecated.php:686
621
- msgid "version of the plugin."
622
- msgstr "version de l'extension."
623
-
624
- #: deprecated.php:694 class-bws-settings.php:736
625
- #, php-format
626
- msgid "Start Your Free %s-Day Trial Now"
627
- msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
628
-
629
- #: bws_menu.php:128
630
- #, fuzzy
631
- msgid ""
632
- "This license key is bound to another site. Change it via personal Client "
633
- "Area."
634
- msgstr ""
635
- "La clé de licence correspond à un autre site. Modifier là au travers de "
636
- "votre espace client."
637
-
638
- #: bws_menu.php:128
639
- msgid "Log in"
640
- msgstr "Connexion"
641
-
642
- #: bws_menu.php:144
643
- #, fuzzy
644
- msgid "Congratulations! Pro Membership license is activated successfully."
645
- msgstr ""
646
- "Félicitations! La version PRO de cette extension a été téléchargée et "
647
- "activée avec succès."
648
-
649
- #: bws_menu.php:161
650
- msgid "Please enter your license key."
651
- msgstr "Merci de saisir votre clé de licence."
652
-
653
- #: bws_menu.php:172
654
- msgid "Not set"
655
- msgstr "Not set"
656
-
657
- #: bws_menu.php:174 bws_menu.php:175
658
- msgid "On"
659
- msgstr "On"
660
-
661
- #: bws_menu.php:174 bws_menu.php:175
662
- msgid "Off"
663
- msgstr "Off"
664
-
665
- #: bws_menu.php:176 bws_menu.php:177 bws_menu.php:178 bws_menu.php:179
666
- #: bws_menu.php:180 bws_menu.php:181 bws_menu.php:190
667
- msgid "N/A"
668
- msgstr "N/A"
669
-
670
- #: bws_menu.php:181
671
- msgid " Mb"
672
- msgstr " Mb"
673
-
674
- #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:184 bws_menu.php:188
675
- msgid "Yes"
676
- msgstr "Yes"
677
-
678
- #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:184 bws_menu.php:188
679
- msgid "No"
680
- msgstr "No"
681
-
682
- #: bws_menu.php:195
683
- #, fuzzy
684
- msgid "WordPress Environment"
685
- msgstr "Environnent"
686
-
687
- #: bws_menu.php:197
688
- msgid "Home URL"
689
- msgstr "Home URL"
690
-
691
- #: bws_menu.php:198
692
- #, fuzzy
693
- msgid "Website URL"
694
- msgstr "Site URL"
695
-
696
- #: bws_menu.php:199
697
- #, fuzzy
698
- msgid "WP Version"
699
- msgstr "PHP Version"
700
-
701
- #: bws_menu.php:200
702
- #, fuzzy
703
- msgid "WP Multisite"
704
- msgstr "Multisite"
705
-
706
- #: bws_menu.php:201
707
- #, fuzzy
708
- msgid "WP Memory Limit"
709
- msgstr "PHP Memory Limit"
710
-
711
- #: bws_menu.php:202
712
- msgid "Active Theme"
713
- msgstr "Active Theme"
714
-
715
- #: bws_menu.php:202 bws_menu.php:248 bws_menu.php:251
716
- #, fuzzy, php-format
717
- msgid "by %s"
718
- msgstr "Par %s"
719
-
720
- #: bws_menu.php:206
721
- #, fuzzy
722
- msgid "Server Environment"
723
- msgstr "Environnent"
724
-
725
- #: bws_menu.php:208
726
- msgid "Operating System"
727
- msgstr "Operating System"
728
-
729
- #: bws_menu.php:209
730
- msgid "Server"
731
- msgstr "Server"
732
-
733
- #: bws_menu.php:210
734
- msgid "PHP Version"
735
- msgstr "PHP Version"
736
-
737
- #: bws_menu.php:211
738
- msgid "PHP Safe Mode"
739
- msgstr "PHP Safe Mode"
740
-
741
- #: bws_menu.php:212
742
- msgid "PHP Allow URL fopen"
743
- msgstr "PHP Allow URL fopen"
744
-
745
- #: bws_menu.php:213
746
- msgid "PHP Memory Limit"
747
- msgstr "PHP Memory Limit"
748
-
749
- #: bws_menu.php:214
750
- #, fuzzy
751
- msgid "Memory Usage"
752
- msgstr "Memory usage"
753
-
754
- #: bws_menu.php:215
755
- msgid "PHP Max Upload Size"
756
- msgstr "PHP Max Upload Size"
757
-
758
- #: bws_menu.php:216
759
- msgid "PHP Max Post Size"
760
- msgstr "PHP Max Post Size"
761
-
762
- #: bws_menu.php:217
763
- msgid "PHP Max Script Execute Time"
764
- msgstr "PHP Max Script Execute Time"
765
 
766
  #: bws_menu.php:218
767
  msgid "PHP Exif support"
@@ -777,15 +505,13 @@ msgstr "PHP XML support"
777
 
778
  #: bws_menu.php:226
779
  msgid "Database"
780
- msgstr ""
781
 
782
  #: bws_menu.php:228
783
- #, fuzzy
784
  msgid "WP DB version"
785
  msgstr "WordPress DB Version"
786
 
787
  #: bws_menu.php:229
788
- #, fuzzy
789
  msgid "MySQL version"
790
  msgstr "MYSQL Version"
791
 
@@ -806,7 +532,6 @@ msgid "Please enter a valid email address."
806
  msgstr "Merci de saisir une adresse e-mail valide."
807
 
808
  #: bws_menu.php:264
809
- #, fuzzy
810
  msgid "Email with system info is sent to"
811
  msgstr "Le courriel avec les informations système est envoyé à"
812
 
@@ -818,6 +543,14 @@ msgstr "Merci de nous avoir contacté."
818
  msgid "Sorry, email message could not be delivered."
819
  msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
820
 
 
 
 
 
 
 
 
 
821
  #: bws_menu.php:309 bws_menu.php:313 bws_menu.php:662
822
  msgid "System status"
823
  msgstr "Etat du système"
@@ -836,14 +569,24 @@ msgid "Get Access to %s+ Premium Plugins"
836
  msgstr "Accéder à plus de %s extension premiums"
837
 
838
  #: bws_menu.php:328
839
- #, fuzzy
840
  msgid "Subscribe to Pro Membership"
841
  msgstr "Souscrire une adhésion PRO"
842
 
 
 
 
 
 
843
  #: bws_menu.php:339
844
  msgid "Enter your license key"
845
  msgstr "Merci de saisir votre clé de licence"
846
 
 
 
 
 
 
 
847
  #: bws_menu.php:361
848
  msgid "Upload Plugin"
849
  msgstr "Charger l'extension"
@@ -881,6 +624,15 @@ msgstr "Extensions installées"
881
  msgid "Downloading install package from"
882
  msgstr "Télécharger le paquet d'installation depuis"
883
 
 
 
 
 
 
 
 
 
 
884
  #: bws_menu.php:408
885
  msgid "Unpacking the package"
886
  msgstr "Décompresser le paquet"
@@ -889,10 +641,30 @@ msgstr "Décompresser le paquet"
889
  msgid "Installing the plugin"
890
  msgstr "Installer l'extension"
891
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
892
  #: bws_menu.php:427
893
  #, php-format
894
  msgid "The plugin %s is successfully installed."
 
 
 
 
895
  msgstr ""
 
 
896
 
897
  #: bws_menu.php:439
898
  msgid "Activate Plugin"
@@ -923,7 +695,6 @@ msgid "Category"
923
  msgstr "Catégorie"
924
 
925
  #: bws_menu.php:524
926
- #, fuzzy
927
  msgid "Not installed"
928
  msgstr "Non installé"
929
 
@@ -940,7 +711,7 @@ msgstr "Mettre à jour avec la version %s"
940
  msgid "Install Now"
941
  msgstr "Installer maintenant"
942
 
943
- #: bws_menu.php:549 class-bws-settings.php:149 class-bws-settings.php:1073
944
  msgid "Upgrade to Pro"
945
  msgstr "Passer à la version PRO"
946
 
@@ -977,255 +748,445 @@ msgstr "Envoyé au support"
977
  msgid "Send to custom email &#187;"
978
  msgstr "Envoyer un e-mail spécifique &#187;"
979
 
980
- #: product_list.php:7
981
- msgid "Advertisement"
982
- msgstr "Publicité"
983
-
984
- #: product_list.php:8
985
- msgid "Content & Media"
986
- msgstr "Contenu & média"
987
-
988
- #: product_list.php:9
989
- msgid "Management"
990
- msgstr "Administration"
991
-
992
- #: product_list.php:10
993
- msgid "Recommended"
994
- msgstr "Recommandé"
995
-
996
- #: product_list.php:11
997
- msgid "Security"
998
- msgstr "Sécurité"
999
-
1000
- #: product_list.php:12
1001
- msgid "Site Stats"
1002
- msgstr "Statistiques"
1003
-
1004
- #: product_list.php:13
1005
- msgid "Social"
1006
- msgstr "Social"
1007
-
1008
- #: product_list.php:14
1009
- msgid "Utilities"
1010
- msgstr "Utilitaires"
1011
-
1012
- #: product_list.php:15
1013
- msgid "Other"
1014
- msgstr "Autre"
1015
-
1016
- #: class-bws-settings.php:129
1017
- #, fuzzy
1018
  msgid "Information"
1019
- msgstr "Pour plus d'informations&nbsp;:"
1020
 
1021
- #: class-bws-settings.php:136
1022
- #, fuzzy
1023
  msgid "Inactive"
1024
- msgstr "Extensions inactives"
1025
 
1026
- #: class-bws-settings.php:144
1027
  msgid "Expired"
1028
- msgstr ""
1029
 
1030
- #: class-bws-settings.php:147
1031
  #, php-format
1032
  msgid "%s day(-s) left"
1033
- msgstr ""
1034
 
1035
- #: class-bws-settings.php:153
1036
- #, fuzzy, php-format
1037
  msgid "Expired on %s"
1038
- msgstr "se termine le"
1039
 
1040
- #: class-bws-settings.php:153
1041
  msgid "Renew Now"
1042
- msgstr ""
1043
 
1044
- #: class-bws-settings.php:155
1045
- #, fuzzy
1046
  msgid "Active"
1047
  msgstr "Activé"
1048
 
1049
- #: class-bws-settings.php:160
1050
- #, fuzzy
1051
  msgid "License"
1052
- msgstr "Clé de licence incorrecte"
1053
 
1054
- #: class-bws-settings.php:163
1055
- #, fuzzy
1056
  msgid "Status"
1057
- msgstr "Etat du système"
1058
 
1059
- #: class-bws-settings.php:167
1060
- #, fuzzy
1061
  msgid "Version"
1062
- msgstr "version"
1063
 
1064
- #: class-bws-settings.php:276
1065
- #, fuzzy
1066
  msgid "All plugin settings were restored."
1067
- msgstr "Les paramètres de l'extension ont été modifiés."
1068
 
1069
- #: class-bws-settings.php:417
1070
- #, fuzzy
1071
  msgid "Custom Code"
1072
- msgstr "Personnaliser"
1073
 
1074
- #: class-bws-settings.php:432
1075
- #, fuzzy
1076
- msgid "These code will be added to the header on all pages of your site."
 
 
 
 
1077
  msgstr ""
1078
  "Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
1079
 
1080
- #: class-bws-settings.php:454
1081
  #, php-format
1082
- msgid "Activate custom %s code."
 
 
1083
  msgstr ""
 
 
1084
 
1085
- #: class-bws-settings.php:520
1086
- msgid "Miscellaneous Settings"
 
 
 
 
 
 
 
1087
  msgstr ""
 
 
1088
 
1089
- #: class-bws-settings.php:527 class-bws-settings.php:585
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1090
  #, php-format
1091
  msgid ""
1092
  "It is prohibited to change %s settings on this site in the %s network "
1093
  "settings."
1094
  msgstr ""
 
 
1095
 
1096
- #: class-bws-settings.php:530 class-bws-settings.php:588
1097
  #, php-format
1098
  msgid ""
1099
  "It is prohibited to view %s settings on this site in the %s network settings."
1100
  msgstr ""
 
 
1101
 
1102
- #: class-bws-settings.php:536
1103
- #, fuzzy
1104
  msgid "Pro Options"
1105
- msgstr "Plugins Pro"
1106
 
1107
- #: class-bws-settings.php:539
1108
  msgid "Enable to display plugin Pro options."
1109
- msgstr ""
1110
 
1111
- #: class-bws-settings.php:544
1112
  msgid "Track Usage"
1113
- msgstr ""
1114
 
1115
- #: class-bws-settings.php:547
1116
  msgid ""
1117
  "Enable to allow tracking plugin usage anonymously in order to make it better."
1118
  msgstr ""
 
 
1119
 
1120
- #: class-bws-settings.php:551
1121
- #, fuzzy
1122
  msgid "Default Settings"
1123
- msgstr "Réglages"
1124
 
1125
- #: class-bws-settings.php:553
1126
- #, fuzzy
1127
  msgid "Restore Settings"
1128
  msgstr "Remettre les paramètres"
1129
 
1130
- #: class-bws-settings.php:554
1131
- #, fuzzy
1132
  msgid "This will restore plugin settings to defaults."
1133
- msgstr "Remettre les valeurs par défaut des paramètres de l'extension"
1134
 
1135
- #: class-bws-settings.php:578
1136
  msgid "Import / Export"
1137
- msgstr ""
1138
 
1139
- #: class-bws-settings.php:701 class-bws-settings.php:724
1140
  #: class-bws-settings.php:746
1141
- #, fuzzy
1142
  msgid "License Key"
1143
- msgstr "Clé de licence incorrecte"
1144
 
1145
  #: class-bws-settings.php:714
1146
- #, fuzzy
1147
  msgid "Congratulations! Pro license is activated successfully."
1148
  msgstr ""
1149
- "Félicitations! La version PRO de cette extension a été téléchargée et "
1150
- "activée avec succès."
1151
 
1152
  #: class-bws-settings.php:715
1153
- #, fuzzy, php-format
1154
- msgid "You will be automatically redirected to the %s in 7 seconds."
1155
- msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
1156
 
1157
  #: class-bws-settings.php:715
1158
- #, fuzzy
1159
  msgid "Settings page"
1160
- msgstr "Options sauvegardées."
1161
 
1162
  #: class-bws-settings.php:730
1163
- #, fuzzy, php-format
1164
  msgid "Enter your license key to activate %s and get premium plugin features."
1165
- msgstr "Saisir votre clé de licence pour installer et activer"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1166
 
1167
  #: class-bws-settings.php:751
1168
- #, fuzzy
1169
  msgid ""
1170
  "If necessary, you can check if the license key is correct or reenter it in "
1171
  "the field below."
1172
  msgstr ""
1173
  "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la "
1174
- "saisir de nouveau dans le champ ci-dessous. Vous pouvez trouver votre clé de "
1175
- "licence sur votre page personnelle (zone client) sur notre site web."
1176
 
1177
  #: class-bws-settings.php:756
1178
  msgid "Manage License Settings"
1179
- msgstr ""
1180
 
1181
  #: class-bws-settings.php:758
1182
- #, fuzzy
1183
  msgid "Login to Client Area"
1184
- msgstr "Espace client"
1185
 
1186
  #: class-bws-settings.php:760
1187
  msgid ""
1188
  "Manage active licenses, download BWS products, and view your payment history "
1189
  "using BestWebSoft Client Area."
1190
  msgstr ""
 
 
1191
 
1192
- #: class-bws-settings.php:1044
1193
- #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1194
  msgid "Need Help?"
1195
  msgstr "Besoin d'aide ?"
1196
 
1197
- #: class-bws-settings.php:1044
1198
- #, fuzzy
1199
  msgid "Read the Instruction"
1200
- msgstr "Vidéo explicative"
1201
 
1202
- #: class-bws-settings.php:1046
1203
  msgid "Watch the Video"
1204
- msgstr ""
1205
 
1206
- #: class-bws-settings.php:1077
1207
- #, fuzzy
1208
  msgid "Start Your Free Trial"
1209
- msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
1210
 
1211
- #~ msgid "You license for"
1212
- #~ msgstr "Votre licence pour"
 
1213
 
1214
- #~ msgid "expires on"
1215
- #~ msgstr "se termine le"
 
1216
 
1217
- #~ msgid "This license key is bind to another site"
1218
- #~ msgstr "La clé de licence correspond à un autre site."
 
 
 
 
 
 
 
1219
 
1220
- #~ msgid "Successfully installed the plugin"
1221
- #~ msgstr "Extension installée avec succès"
 
 
 
 
 
 
1222
 
1223
- #, fuzzy
1224
- #~ msgid "Please, go to %s"
1225
- #~ msgstr "Merci d’aller à"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1226
 
1227
- #~ msgid "Client Area"
1228
- #~ msgstr "Espace client"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1229
 
1230
  #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
1231
  #~ msgstr ""
@@ -1238,8 +1199,11 @@ msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
1238
  #~ msgid "Donations play an important role in supporting great projects"
1239
  #~ msgstr "Les dons jouent un rôle important dans l'aide aux projets"
1240
 
1241
- #~ msgid "WordPress Version"
1242
- #~ msgstr "WordPress Version"
 
 
 
1243
 
1244
  #~ msgid "Activate Membership"
1245
  #~ msgstr "Activer l'adhésion"
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-03-28 13:51+0300\n"
6
+ "PO-Revision-Date: 2017-03-28 13:51+0300\n"
7
  "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
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:72 bws_functions.php:190
38
  msgstr "Page des extensions"
39
 
40
  #: bws_functions.php:91
 
41
  msgid "Like the plugin?"
42
  msgstr "Voter pour l'extension"
43
 
44
  #: bws_functions.php:93
45
  msgid "Rate it"
46
+ msgstr "Notez là"
47
 
48
  #: bws_functions.php:102
49
  msgid "Need help?"
50
  msgstr "Besoin d'aide ?"
51
 
52
+ #: bws_functions.php:103 bws_functions.php:916 class-bws-settings.php:1047
53
  msgid "Visit Help Center"
54
  msgstr "Visiter le site du support"
55
 
56
  #: bws_functions.php:106
 
57
  msgid "Want to support the plugin?"
58
  msgstr "Voter pour l'extension"
59
 
79
  "inactive."
80
 
81
  #: bws_functions.php:127 bws_functions.php:339 bws_menu.php:627
82
+ #: class-bws-settings.php:143
83
  msgid "Learn More"
84
  msgstr "En savoir plus"
85
 
86
  #: bws_functions.php:144
 
87
  msgid ""
88
  "Notice: Your Pro Trial license has expired. To continue using the plugin, "
89
  "you should buy a Pro license"
90
  msgstr ""
91
+ "Information&nbsp;:Votre licence d'évaluation est terminée. Pour continuer à "
92
+ "utiliser cette extension, vous devez acheter une licence PRO."
93
 
94
  #: bws_functions.php:146
 
95
  msgid ""
96
  "Your license has expired. To continue getting top-priority support and "
97
  "plugin updates, you should extend it."
98
  msgstr ""
99
  "Votre licence est terminée. Pour continuer à disposer du support rapide et "
100
+ "des mises à jour de l'extension vous devez la renouveler."
101
 
102
  #: bws_functions.php:146 bws_functions.php:382 deprecated.php:584
103
  msgid "Learn more"
126
  "correctement. Merci de mettre à jour Wordpress avec la dernière version."
127
 
128
  #: bws_functions.php:207
129
+ #, php-format
130
+ msgid "Thank you for installing %s plugin!"
131
+ msgstr ""
132
 
133
  #: bws_functions.php:208
134
  msgid "Let's get started"
139
  msgid "Settings"
140
  msgstr "Réglages"
141
 
142
+ #: bws_functions.php:211 bws_menu.php:328 class-bws-settings.php:736
143
+ #: class-bws-settings.php:1049 class-bws-settings.php:1059 deprecated.php:694
 
144
  msgid "or"
145
  msgstr "ou"
146
 
167
 
168
  #: bws_functions.php:262
169
  msgid "Deprecated function(-s) is used on the site here:"
170
+ msgstr "Une ou des fonction(s) obsolètes sont utilisées sur ce site ici&nbsp;:"
171
 
172
  #: bws_functions.php:276
173
  msgid ""
174
  "This function(-s) will be removed over time. Please update the product(-s)."
175
  msgstr ""
176
+ "Ces fonctions seront supprimées rapidement. Merci de mettre à jour vos "
177
+ "produits."
178
 
179
  #: bws_functions.php:335
180
  msgid "It’s time to upgrade your"
195
  "options."
196
 
197
  #: bws_functions.php:382
198
+ #, php-format
199
  msgid ""
200
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
201
  "SUPPORT or UPDATES."
202
+ msgstr ""
203
+ "Votre clé de licence pour %s est terminée le %s et vous ne disposerez plus "
204
+ "du support rapide et des mises à jour."
205
 
206
  #: bws_functions.php:477
207
+ #, php-format
208
+ msgid "Thank you for choosing %s plugin!"
209
+ msgstr ""
210
 
211
  #: bws_functions.php:478
212
  msgid ""
220
  msgid "Suggest a Feature"
221
  msgstr "Proposer une fonctionnalité"
222
 
223
+ #: bws_functions.php:495 class-bws-settings.php:533 class-bws-settings.php:536
224
+ #: class-bws-settings.php:584 class-bws-settings.php:587
225
  msgid "Notice"
226
  msgstr "Avertissement"
227
 
229
  msgid "The plugin's settings have been changed."
230
  msgstr "Les paramètres de l'extension ont été modifiés."
231
 
232
+ #: bws_functions.php:496 class-bws-settings.php:182 class-bws-settings.php:202
233
+ #: deprecated.php:640
234
  msgid "Save Changes"
235
+ msgstr "Enregistrer les modifications"
236
 
237
  #: bws_functions.php:510
 
238
  msgid ""
239
  "You can always look at premium options by checking the \"Pro Options\" in "
240
  "the \"Misc\" tab."
241
  msgstr ""
242
  "Vous pouvez toujours consulter les options premium en cliquant sur le lien "
243
+ "\"Voir les fonctionnalités de la version PRO\" dans l'onglet divers."
244
 
245
+ #: bws_functions.php:651
246
  msgid "Add shortcode"
247
  msgstr "Ajouter le code court"
248
 
249
+ #: bws_functions.php:651
250
  msgid "Add BestWebSoft plugins' shortcodes using this button."
251
  msgstr "Ajouter le code court des extensions BestWebSoft avec ce bouton."
252
 
253
+ #: bws_functions.php:700
254
  msgid "Close"
255
  msgstr "Fermer"
256
 
257
+ #: bws_functions.php:792
 
258
  msgid "Are you sure you want to restore default settings?"
259
  msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
260
 
261
+ #: bws_functions.php:795
262
  msgid "Yes, restore all settings"
263
  msgstr "Oui, remettre les valeurs par défaut"
264
 
265
+ #: bws_functions.php:796
266
  msgid "No, go back to the settings page"
267
  msgstr "Non, retourner à la page des paramètres"
268
 
269
+ #: bws_functions.php:842
270
  msgid "Plugin"
271
  msgstr "Extension"
272
 
273
+ #: bws_functions.php:851
274
  msgid "Shortcode settings"
275
  msgstr "Paramètres du code court"
276
 
277
+ #: bws_functions.php:856
278
  msgid "The shortcode will be inserted"
279
  msgstr "Le code court sera inséré"
280
 
281
+ #: bws_functions.php:861
282
  msgid "Insert"
283
  msgstr "Insérer"
284
 
285
+ #: bws_functions.php:921
286
  msgid "FAQ"
287
  msgstr "FAQ"
288
 
289
+ #: bws_functions.php:927
290
  msgid "For more information:"
291
  msgstr "Pour plus d'informations&nbsp;:"
292
 
293
+ #: bws_functions.php:928
294
  msgid "Documentation"
295
  msgstr "Documentation"
296
 
297
+ #: bws_functions.php:929
298
  msgid "Video Instructions"
299
  msgstr "Vidéo explicative"
300
 
301
+ #: bws_functions.php:930
302
  msgid "Submit a Request"
303
  msgstr "Soumettre une requête"
304
 
305
+ #: bws_menu.php:101 class-bws-settings.php:781 deprecated.php:322
306
+ msgid "Wrong license key"
307
+ msgstr "Clé de licence incorrecte"
 
 
 
 
 
 
 
 
308
 
309
+ #: bws_menu.php:122 class-bws-settings.php:807 class-bws-settings.php:874
310
+ #: class-bws-settings.php:910 deprecated.php:133 deprecated.php:199
311
+ #: deprecated.php:352
312
  msgid ""
313
  "Something went wrong. Please try again later. If the error appears again, "
314
  "please contact us"
317
  "nouveau, merci de contacter <a href=http://support.bestwebsoft."
318
  "com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
319
 
320
+ #: bws_menu.php:122 class-bws-settings.php:807 class-bws-settings.php:874
321
+ #: class-bws-settings.php:910 deprecated.php:133 deprecated.php:199
322
+ #: deprecated.php:352
323
  msgid "We are sorry for inconvenience."
324
  msgstr "Nous sommes désolés pour le désagrément."
325
 
326
+ #: bws_menu.php:128 class-bws-settings.php:813 class-bws-settings.php:916
327
+ #: deprecated.php:139 deprecated.php:358
328
  msgid "Wrong license key."
329
  msgstr "Clé de licence incorrecte."
330
 
331
+ #: bws_menu.php:130
 
 
 
 
 
 
332
  msgid ""
333
+ "This license key is bound to another site. Change it via personal Client "
334
+ "Area."
335
  msgstr ""
336
+ "La clé de licence correspond à un autre site. Modifier au travers de "
337
+ "votre espace client."
 
338
 
339
+ #: bws_menu.php:130
340
+ msgid "Log in"
341
+ msgstr "Connexion"
342
+
343
+ #: bws_menu.php:132 bws_menu.php:334 deprecated.php:261
344
+ msgid "Unfortunately, you have exceeded the number of available tries per day."
345
  msgstr ""
346
  "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
347
  "télécharger l'extension manuellement."
348
 
349
+ #: bws_menu.php:134 class-bws-settings.php:922 deprecated.php:364
350
+ #, php-format
351
+ msgid ""
352
+ "Unfortunately, Your license has expired. To continue getting top-priority "
353
+ "support and plugin updates, you should extend it in your %s"
354
+ msgstr ""
355
+ "Désoler, votre licence est terminée. Pour continuer à disposer du support "
356
+ "rapide et des mises à jour de l'extension vous devez la renouveler dans "
357
+ "votre %s"
358
+
359
+ #: bws_menu.php:136 class-bws-settings.php:924 deprecated.php:366
360
  msgid ""
361
+ "Unfortunately, the Pro licence was already installed to this domain. The Pro "
362
+ "Trial license can be installed only once."
363
  msgstr ""
364
  "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne "
365
  "peut-être installée qu'une seule fois."
366
 
367
+ #: bws_menu.php:142 class-bws-settings.php:828 deprecated.php:153
 
 
 
 
368
  msgid "The license key is valid."
369
  msgstr "La clé de licence est valide."
370
 
371
+ #: bws_menu.php:144 class-bws-settings.php:831 deprecated.php:156
372
  msgid "Your license will expire on"
373
  msgstr "Votre licence se termine le "
374
 
375
+ #: bws_menu.php:146
376
+ msgid "Congratulations! Pro Membership license is activated successfully."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
377
  msgstr ""
378
+ "Félicitations! La version PRO de cette extension a été activée avec succès."
 
 
379
 
380
+ #: bws_menu.php:153 class-bws-settings.php:996 deprecated.php:435
381
  msgid ""
382
+ "Something went wrong. Try again later or upload the plugin manually. We are "
383
+ "sorry for inconvenience."
384
  msgstr ""
385
+ "Il est survenu une erreur. Essayer de nouveau ou bien télécharger "
386
+ "l'extension manuellement.Nous sommes désolés pour le désagrément."
 
387
 
388
+ #: bws_menu.php:163
389
+ msgid "Please enter your license key."
390
+ msgstr "Merci de saisir votre clé de licence."
 
391
 
392
+ #: bws_menu.php:174
393
+ msgid "Not set"
394
+ msgstr "Not set"
 
 
395
 
396
+ #: bws_menu.php:176
397
+ msgid "On"
398
+ msgstr "On"
399
 
400
+ #: bws_menu.php:176
401
+ msgid "Off"
402
+ msgstr "Off"
 
 
403
 
404
+ #: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
405
+ #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
406
+ msgid "N/A"
407
+ msgstr "N/A"
 
408
 
409
+ #: bws_menu.php:182
410
+ msgid " Mb"
411
+ msgstr " Mb"
 
 
412
 
413
+ #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
414
+ msgid "Yes"
415
+ msgstr "Yes"
 
 
 
 
416
 
417
+ #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
418
+ msgid "No"
419
+ msgstr "No"
420
 
421
+ #: bws_menu.php:196
422
+ msgid "WordPress Environment"
423
+ msgstr "Environnent WordPress"
424
 
425
+ #: bws_menu.php:198
426
+ msgid "Home URL"
427
+ msgstr "Home URL"
428
 
429
+ #: bws_menu.php:199
430
+ msgid "Website URL"
431
+ msgstr "Site URL"
 
432
 
433
+ #: bws_menu.php:200
434
+ msgid "WP Version"
435
+ msgstr "WP Version"
436
 
437
+ #: bws_menu.php:201
438
+ msgid "WP Multisite"
439
+ msgstr "WP Multisite"
 
 
 
 
 
440
 
441
+ #: bws_menu.php:202
442
+ msgid "WP Memory Limit"
443
+ msgstr "WP Memory Limit"
 
 
 
 
 
444
 
445
+ #: bws_menu.php:203
446
+ msgid "Active Theme"
447
+ msgstr "Active Theme"
 
 
 
 
448
 
449
+ #: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
450
+ #, php-format
451
+ msgid "by %s"
452
+ msgstr "par %s"
 
 
 
453
 
454
+ #: bws_menu.php:207
455
+ msgid "Server Environment"
456
+ msgstr "Server Environnent"
 
 
457
 
458
+ #: bws_menu.php:209
459
+ msgid "Operating System"
460
+ msgstr "Operating System"
 
 
 
 
461
 
462
+ #: bws_menu.php:210
463
+ msgid "Server"
464
+ msgstr "Server"
 
 
465
 
466
+ #: bws_menu.php:211
467
+ msgid "PHP Version"
468
+ msgstr "PHP Version"
 
 
 
 
469
 
470
+ #: bws_menu.php:212
471
+ msgid "PHP Allow URL fopen"
472
+ msgstr "PHP Allow URL fopen"
473
 
474
+ #: bws_menu.php:213
475
+ msgid "PHP Memory Limit"
476
+ msgstr "PHP Memory Limit"
477
 
478
+ #: bws_menu.php:214
479
+ msgid "Memory Usage"
480
+ msgstr "Memory usage"
481
 
482
+ #: bws_menu.php:215
483
+ msgid "PHP Max Upload Size"
484
+ msgstr "PHP Max Upload Size"
 
485
 
486
+ #: bws_menu.php:216
487
+ msgid "PHP Max Post Size"
488
+ msgstr "PHP Max Post Size"
 
489
 
490
+ #: bws_menu.php:217
491
+ msgid "PHP Max Script Execute Time"
492
+ msgstr "PHP Max Script Execute Time"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
493
 
494
  #: bws_menu.php:218
495
  msgid "PHP Exif support"
505
 
506
  #: bws_menu.php:226
507
  msgid "Database"
508
+ msgstr "Base de données"
509
 
510
  #: bws_menu.php:228
 
511
  msgid "WP DB version"
512
  msgstr "WordPress DB Version"
513
 
514
  #: bws_menu.php:229
 
515
  msgid "MySQL version"
516
  msgstr "MYSQL Version"
517
 
532
  msgstr "Merci de saisir une adresse e-mail valide."
533
 
534
  #: bws_menu.php:264
 
535
  msgid "Email with system info is sent to"
536
  msgstr "Le courriel avec les informations système est envoyé à"
537
 
543
  msgid "Sorry, email message could not be delivered."
544
  msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
545
 
546
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:360 deprecated.php:91
547
+ msgid "Plugins"
548
+ msgstr "Extensions"
549
+
550
+ #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:611 deprecated.php:92
551
+ msgid "Themes"
552
+ msgstr "Thèmes"
553
+
554
  #: bws_menu.php:309 bws_menu.php:313 bws_menu.php:662
555
  msgid "System status"
556
  msgstr "Etat du système"
569
  msgstr "Accéder à plus de %s extension premiums"
570
 
571
  #: bws_menu.php:328
 
572
  msgid "Subscribe to Pro Membership"
573
  msgstr "Souscrire une adhésion PRO"
574
 
575
+ #: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:749
576
+ #: deprecated.php:227
577
+ msgid "Check license key"
578
+ msgstr "Vérifier la clé de licence"
579
+
580
  #: bws_menu.php:339
581
  msgid "Enter your license key"
582
  msgstr "Merci de saisir votre clé de licence"
583
 
584
+ #: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
585
+ #: class-bws-settings.php:728 deprecated.php:259 deprecated.php:267
586
+ #: deprecated.php:629 deprecated.php:700 deprecated.php:709
587
+ msgid "Activate"
588
+ msgstr "Activé"
589
+
590
  #: bws_menu.php:361
591
  msgid "Upload Plugin"
592
  msgstr "Charger l'extension"
624
  msgid "Downloading install package from"
625
  msgstr "Télécharger le paquet d'installation depuis"
626
 
627
+ #: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
628
+ #: class-bws-settings.php:948 class-bws-settings.php:970
629
+ #: class-bws-settings.php:992 deprecated.php:387 deprecated.php:409
630
+ #: deprecated.php:431
631
+ msgid "Failed to download the zip archive. Please, upload the plugin manually"
632
+ msgstr ""
633
+ "Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension "
634
+ "manuellement."
635
+
636
  #: bws_menu.php:408
637
  msgid "Unpacking the package"
638
  msgstr "Décompresser le paquet"
641
  msgid "Installing the plugin"
642
  msgstr "Installer l'extension"
643
 
644
+ #: bws_menu.php:417 class-bws-settings.php:960 deprecated.php:399
645
+ msgid "Failed to open the zip archive. Please, upload the plugin manually"
646
+ msgstr ""
647
+ "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
648
+ "manuellement."
649
+
650
+ #: bws_menu.php:424 class-bws-settings.php:966 deprecated.php:405
651
+ msgid ""
652
+ "Your server does not support either ZipArchive or Phar. Please, upload the "
653
+ "plugin manually"
654
+ msgstr ""
655
+ "Votre serveur n'a pas le support du format des archives ZIP ou Phar. Merci "
656
+ "de télécharger l'extension manuellement."
657
+
658
  #: bws_menu.php:427
659
  #, php-format
660
  msgid "The plugin %s is successfully installed."
661
+ msgstr "L'extension %s a été installée avec succès."
662
+
663
+ #: bws_menu.php:434 class-bws-settings.php:973 deprecated.php:412
664
+ msgid "UploadDir is not writable. Please, upload the plugin manually"
665
  msgstr ""
666
+ "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
667
+ "manuellement."
668
 
669
  #: bws_menu.php:439
670
  msgid "Activate Plugin"
695
  msgstr "Catégorie"
696
 
697
  #: bws_menu.php:524
 
698
  msgid "Not installed"
699
  msgstr "Non installé"
700
 
711
  msgid "Install Now"
712
  msgstr "Installer maintenant"
713
 
714
+ #: bws_menu.php:549 class-bws-settings.php:156 class-bws-settings.php:1056
715
  msgid "Upgrade to Pro"
716
  msgstr "Passer à la version PRO"
717
 
748
  msgid "Send to custom email &#187;"
749
  msgstr "Envoyer un e-mail spécifique &#187;"
750
 
751
+ #: class-bws-settings.php:135
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
752
  msgid "Information"
753
+ msgstr "Information"
754
 
755
+ #: class-bws-settings.php:143
 
756
  msgid "Inactive"
757
+ msgstr "Inactive"
758
 
759
+ #: class-bws-settings.php:151
760
  msgid "Expired"
761
+ msgstr "Expiré"
762
 
763
+ #: class-bws-settings.php:154
764
  #, php-format
765
  msgid "%s day(-s) left"
766
+ msgstr "%s jour(s) restant"
767
 
768
+ #: class-bws-settings.php:160
769
+ #, php-format
770
  msgid "Expired on %s"
771
+ msgstr "Terminer le %s"
772
 
773
+ #: class-bws-settings.php:160
774
  msgid "Renew Now"
775
+ msgstr "Renouveler maintenant"
776
 
777
+ #: class-bws-settings.php:162
 
778
  msgid "Active"
779
  msgstr "Activé"
780
 
781
+ #: class-bws-settings.php:167
 
782
  msgid "License"
783
+ msgstr "Licence"
784
 
785
+ #: class-bws-settings.php:170
 
786
  msgid "Status"
787
+ msgstr "Etat"
788
 
789
+ #: class-bws-settings.php:174
 
790
  msgid "Version"
791
+ msgstr "Version"
792
 
793
+ #: class-bws-settings.php:282
 
794
  msgid "All plugin settings were restored."
795
+ msgstr "Les paramètres de l'extension ont été remis aux valeurs d'origine."
796
 
797
+ #: class-bws-settings.php:420
 
798
  msgid "Custom Code"
799
+ msgstr "Code personnalisé"
800
 
801
+ #: class-bws-settings.php:424 deprecated.php:497
802
+ msgid "You do not have sufficient permissions to edit plugins for this site."
803
+ msgstr ""
804
+ "Vous n'avez pas assez de droits pour modifier l'extension pour ce site."
805
+
806
+ #: class-bws-settings.php:429 deprecated.php:618
807
+ msgid "These styles will be added to the header on all pages of your site."
808
  msgstr ""
809
  "Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
810
 
811
+ #: class-bws-settings.php:432 deprecated.php:620
812
  #, php-format
813
+ msgid ""
814
+ "This PHP code will be hooked to the %s action and will be printed on front "
815
+ "end only."
816
  msgstr ""
817
+ "Ce code PHP sera rattaché à l'action %s et sera affiché uniquement sur la "
818
+ "partie publique."
819
 
820
+ #: class-bws-settings.php:435
821
+ msgid "These code will be added to the header on all pages of your site."
822
+ msgstr "Ce code sera ajouté aux entêtes sur tous les pages de votre site."
823
+
824
+ #: class-bws-settings.php:443 deprecated.php:644
825
+ #, php-format
826
+ msgid ""
827
+ "You need to make this files writable before you can save your changes. See "
828
+ "%s the Codex %s for more information."
829
  msgstr ""
830
+ "Vous devez rendre ce fichier modifiable avant de pouvoir enregistrer vos "
831
+ "modifications. Regarder %s du Codex %s pour plus d'informations."
832
 
833
+ #: class-bws-settings.php:453 deprecated.php:626
834
+ msgid "Browsing"
835
+ msgstr "Parcourir"
836
+
837
+ #: class-bws-settings.php:457
838
+ #, php-format
839
+ msgid "Activate custom %s code."
840
+ msgstr "Activer le code personnalisé %s."
841
+
842
+ #: class-bws-settings.php:464 deprecated.php:633
843
+ #, php-format
844
+ msgid "Learn more about %s"
845
+ msgstr "En savoir plus sur %s"
846
+
847
+ #: class-bws-settings.php:524
848
+ msgid "Miscellaneous Settings"
849
+ msgstr "Paramètres divers"
850
+
851
+ #: class-bws-settings.php:533 class-bws-settings.php:584
852
  #, php-format
853
  msgid ""
854
  "It is prohibited to change %s settings on this site in the %s network "
855
  "settings."
856
  msgstr ""
857
+ "Il est interdit de changer le paramètre %s sur ce site dans les paramètres "
858
+ "%s du réseau."
859
 
860
+ #: class-bws-settings.php:536 class-bws-settings.php:587
861
  #, php-format
862
  msgid ""
863
  "It is prohibited to view %s settings on this site in the %s network settings."
864
  msgstr ""
865
+ "Il est interdit de voir le paramètre %s sur ce site dans les paramètres %s "
866
+ "du réseau."
867
 
868
+ #: class-bws-settings.php:545
 
869
  msgid "Pro Options"
870
+ msgstr "Options Pro"
871
 
872
+ #: class-bws-settings.php:548
873
  msgid "Enable to display plugin Pro options."
874
+ msgstr "Activer pour voir les options PRO de l'extension."
875
 
876
+ #: class-bws-settings.php:553
877
  msgid "Track Usage"
878
+ msgstr "Suivi de l'utilisation"
879
 
880
+ #: class-bws-settings.php:556
881
  msgid ""
882
  "Enable to allow tracking plugin usage anonymously in order to make it better."
883
  msgstr ""
884
+ "Activer pour autoriser le suivi de l'utilisation de l'extension de manière "
885
+ "anonyme afin de le rendre meilleur."
886
 
887
+ #: class-bws-settings.php:560
 
888
  msgid "Default Settings"
889
+ msgstr "Réglages par défauts"
890
 
891
+ #: class-bws-settings.php:562
 
892
  msgid "Restore Settings"
893
  msgstr "Remettre les paramètres"
894
 
895
+ #: class-bws-settings.php:563
 
896
  msgid "This will restore plugin settings to defaults."
897
+ msgstr "Remettre les valeurs par défaut des paramètres de l'extension."
898
 
899
+ #: class-bws-settings.php:575
900
  msgid "Import / Export"
901
+ msgstr "Importer / Exporter"
902
 
903
+ #: class-bws-settings.php:691 class-bws-settings.php:724
904
  #: class-bws-settings.php:746
 
905
  msgid "License Key"
906
+ msgstr "Clé de licence"
907
 
908
  #: class-bws-settings.php:714
 
909
  msgid "Congratulations! Pro license is activated successfully."
910
  msgstr ""
911
+ "Félicitations! La version PRO de cette extension a été activée avec succès."
 
912
 
913
  #: class-bws-settings.php:715
914
+ #, php-format
915
+ msgid "You will be automatically redirected to the %s in %s seconds."
916
+ msgstr ""
917
 
918
  #: class-bws-settings.php:715
 
919
  msgid "Settings page"
920
+ msgstr "Page des paramètres"
921
 
922
  #: class-bws-settings.php:730
923
+ #, php-format
924
  msgid "Enter your license key to activate %s and get premium plugin features."
925
+ msgstr ""
926
+ "Saisir votre clé de licence pour activer %s et obtenir les fonctionnalités "
927
+ "premium."
928
+
929
+ #: class-bws-settings.php:733 class-bws-settings.php:920 deprecated.php:362
930
+ #: deprecated.php:703
931
+ msgid ""
932
+ "Unfortunately, you have exceeded the number of available tries per day. "
933
+ "Please, upload the plugin manually."
934
+ msgstr ""
935
+ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
936
+ "télécharger l'extension manuellement."
937
+
938
+ #: class-bws-settings.php:736 deprecated.php:694
939
+ #, php-format
940
+ msgid "Start Your Free %s-Day Trial Now"
941
+ msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
942
 
943
  #: class-bws-settings.php:751
 
944
  msgid ""
945
  "If necessary, you can check if the license key is correct or reenter it in "
946
  "the field below."
947
  msgstr ""
948
  "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la "
949
+ "saisir de nouveau dans le champ ci-dessous."
 
950
 
951
  #: class-bws-settings.php:756
952
  msgid "Manage License Settings"
953
+ msgstr "Gérer les paramètres de licence"
954
 
955
  #: class-bws-settings.php:758
 
956
  msgid "Login to Client Area"
957
+ msgstr "Se connecter à l'espace client"
958
 
959
  #: class-bws-settings.php:760
960
  msgid ""
961
  "Manage active licenses, download BWS products, and view your payment history "
962
  "using BestWebSoft Client Area."
963
  msgstr ""
964
+ "Gérer les licences actives, télécharger les produits BWS, et voir "
965
+ "l'historique de vos règlements dans l'interface client de BestWebSoft."
966
 
967
+ #: class-bws-settings.php:815 class-bws-settings.php:918 deprecated.php:141
968
+ #: deprecated.php:360
969
+ msgid "This license key is bound to another site."
970
+ msgstr "La clé de licence correspond à un autre site."
971
+
972
+ #: class-bws-settings.php:817 deprecated.php:143
973
+ msgid ""
974
+ "This license key is valid, but Your license has expired. If you want to "
975
+ "update our plugin in future, you should extend the license."
976
+ msgstr ""
977
+ "La clé de licence est valide mais votre durée de validité est passée. Pour "
978
+ "continuer à disposer du support rapide et des mises à jour de l'extension "
979
+ "vous devez la renouveller."
980
+
981
+ #: class-bws-settings.php:819 deprecated.php:145
982
+ msgid "Unfortunately, you have exceeded the number of available tries."
983
+ msgstr ""
984
+ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
985
+ "télécharger l'extension manuellement."
986
+
987
+ #: class-bws-settings.php:821 deprecated.php:147
988
+ msgid ""
989
+ "Unfortunately, the Pro Trial licence was already installed to this domain. "
990
+ "The Pro Trial license can be installed only once."
991
+ msgstr ""
992
+ "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne "
993
+ "peut-être installée qu'une seule fois."
994
+
995
+ #: class-bws-settings.php:826 deprecated.php:151
996
+ msgid "The Pro Trial license key is valid."
997
+ msgstr "La clé de licence d'évaluation est valide."
998
+
999
+ #: class-bws-settings.php:834 deprecated.php:159 deprecated.php:246
1000
+ #, php-format
1001
+ msgid ""
1002
+ "In order to continue using the plugin it is necessary to buy a %s license."
1003
+ msgstr ""
1004
+ "Afin de pouvoir continuer à utiliser cette extension il est nécessaire "
1005
+ "d'acheter une licence %s."
1006
+
1007
+ #: class-bws-settings.php:1031 deprecated.php:463
1008
+ msgid "Please, enter Your license key"
1009
+ msgstr "Merci de saisir votre clé de licence"
1010
+
1011
+ #: class-bws-settings.php:1043
1012
  msgid "Need Help?"
1013
  msgstr "Besoin d'aide ?"
1014
 
1015
+ #: class-bws-settings.php:1045
 
1016
  msgid "Read the Instruction"
1017
+ msgstr "Lire les instructions"
1018
 
1019
+ #: class-bws-settings.php:1049
1020
  msgid "Watch the Video"
1021
+ msgstr "Regarder la vidéo"
1022
 
1023
+ #: class-bws-settings.php:1060
 
1024
  msgid "Start Your Free Trial"
1025
+ msgstr "Débuter votre licence d'évaluation gratuite"
1026
 
1027
+ #: deprecated.php:93
1028
+ msgid "System Status"
1029
+ msgstr "Etat du système"
1030
 
1031
+ #: deprecated.php:204
1032
+ msgid "Please, enter your license key"
1033
+ msgstr "Merci de saisir votre clé de licence"
1034
 
1035
+ #: deprecated.php:223
1036
+ msgid ""
1037
+ "If necessary, you can check if the license key is correct or reenter it in "
1038
+ "the field below. You can find your license key on your personal page - "
1039
+ "Client Area - on our website"
1040
+ msgstr ""
1041
+ "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la "
1042
+ "saisir de nouveau dans le champ ci-dessous. Vous pouvez trouver votre clé de "
1043
+ "licence sur votre page personnelle (zone client) sur notre site web."
1044
 
1045
+ #: deprecated.php:223
1046
+ msgid ""
1047
+ "(your username is the email address specified during the purchase). If "
1048
+ "necessary, please submit \"Lost your password?\" request."
1049
+ msgstr ""
1050
+ "(votre nom d'utilisateur est l'adresse e-mail que vous avez donnée lors de "
1051
+ "l'achat de l'extension). Si nécessaire, utilisez la fonction de demande de "
1052
+ "mot de passe perdu."
1053
 
1054
+ #: deprecated.php:247
1055
+ msgid "After that, you can activate it by entering your license key."
1056
+ msgstr ""
1057
+ " Après vous pouvez activer cette extension en donnant votre clé de licence."
1058
+
1059
+ #: deprecated.php:249 deprecated.php:688
1060
+ msgid "License key can be found in the"
1061
+ msgstr "La clé de licence peut être trouvée dans "
1062
+
1063
+ #: deprecated.php:251 deprecated.php:690
1064
+ msgid "(your username is the email address specified during the purchase)."
1065
+ msgstr ""
1066
+ "(votre nom d'utilisateur est l'adresse e-mail que vous avez donnée lors de "
1067
+ "l'achat de l'extension)."
1068
+
1069
+ #: deprecated.php:278
1070
+ msgid ""
1071
+ "Congratulations! The Pro license of the plugin is activated successfully."
1072
+ msgstr ""
1073
+ "Félicitations! La version PRO de cette extension a été activée avec succès."
1074
+
1075
+ #: deprecated.php:280 deprecated.php:669
1076
+ msgid "Please, go to"
1077
+ msgstr "Merci d’aller à"
1078
+
1079
+ #: deprecated.php:280 deprecated.php:669
1080
+ msgid "the setting page"
1081
+ msgstr "Options supplémentaires"
1082
+
1083
+ #: deprecated.php:281 deprecated.php:670
1084
+ msgid "You will be redirected automatically in 5 seconds."
1085
+ msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
1086
+
1087
+ #: deprecated.php:315
1088
+ msgid "Check premium options on the plugin settings page!"
1089
+ msgstr ""
1090
+ "Vérifier les options premium sur la page des paramètres de l'extension!"
1091
+
1092
+ #: deprecated.php:478
1093
+ msgid "Restore all plugin settings to defaults"
1094
+ msgstr "Remettre les valeurs par défaut des paramètres de l'extension"
1095
+
1096
+ #: deprecated.php:480
1097
+ msgid "Restore settings"
1098
+ msgstr "Remettre les paramètres"
1099
+
1100
+ #: deprecated.php:548 deprecated.php:575
1101
+ #, php-format
1102
+ msgid "File %s edited successfully."
1103
+ msgstr "Le fichier %s a été modifié avec succès."
1104
+
1105
+ #: deprecated.php:550 deprecated.php:577
1106
+ msgid "Not enough permissions to create or update the file"
1107
+ msgstr "Pas assez de droits pour créer ou modifier le fichier"
1108
+
1109
+ #: deprecated.php:580
1110
+ msgid "Not enough permissions to create the file"
1111
+ msgstr "Pas assez de droits pour créer le fichier"
1112
+
1113
+ #: deprecated.php:624
1114
+ msgid "Editing"
1115
+ msgstr "Modifier"
1116
 
1117
+ #: deprecated.php:667
1118
+ msgid ""
1119
+ "Congratulations! Pro version of the plugin is installed and activated "
1120
+ "successfully."
1121
+ msgstr ""
1122
+ "Félicitations! La version PRO de cette extension a été téléchargée et "
1123
+ "activée avec succès."
1124
+
1125
+ #: deprecated.php:677
1126
+ msgid "Show Pro features"
1127
+ msgstr "Voir les fonctionnalités de la version PRO"
1128
+
1129
+ #: deprecated.php:684
1130
+ msgid "Enter your license key to install and activate"
1131
+ msgstr "Saisir votre clé de licence pour installer et activer"
1132
+
1133
+ #: deprecated.php:686
1134
+ msgid "version of the plugin."
1135
+ msgstr "version de l'extension."
1136
+
1137
+ #: product_list.php:7
1138
+ msgid "Advertisement"
1139
+ msgstr "Publicité"
1140
+
1141
+ #: product_list.php:8
1142
+ msgid "Content & Media"
1143
+ msgstr "Contenu & média"
1144
+
1145
+ #: product_list.php:9
1146
+ msgid "Management"
1147
+ msgstr "Administration"
1148
+
1149
+ #: product_list.php:10
1150
+ msgid "Recommended"
1151
+ msgstr "Recommandé"
1152
+
1153
+ #: product_list.php:11
1154
+ msgid "Security"
1155
+ msgstr "Sécurité"
1156
+
1157
+ #: product_list.php:12
1158
+ msgid "Site Stats"
1159
+ msgstr "Statistiques"
1160
+
1161
+ #: product_list.php:13
1162
+ msgid "Social"
1163
+ msgstr "Social"
1164
+
1165
+ #: product_list.php:14
1166
+ msgid "Utilities"
1167
+ msgstr "Utilitaires"
1168
+
1169
+ #: product_list.php:15
1170
+ msgid "Other"
1171
+ msgstr "Autre"
1172
+
1173
+ #~ msgid "Thank you for installing"
1174
+ #~ msgstr "Merci d'avoir installé"
1175
+
1176
+ #~ msgid "Thank you for choosing"
1177
+ #~ msgstr "Merci d'avoir choisi"
1178
+
1179
+ #~ msgid "You will be automatically redirected to the %s in 7 seconds."
1180
+ #~ msgstr "Vous allez être redirigé automatiquement vers %s dans 7 secondes"
1181
+
1182
+ #~ msgid "PHP Safe Mode"
1183
+ #~ msgstr "PHP Safe Mode"
1184
+
1185
+ #~ msgid "WordPress Version"
1186
+ #~ msgstr "WordPress Version"
1187
+
1188
+ #~ msgid "Successfully installed the plugin"
1189
+ #~ msgstr "Extension installée avec succès"
1190
 
1191
  #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
1192
  #~ msgstr ""
1199
  #~ msgid "Donations play an important role in supporting great projects"
1200
  #~ msgstr "Les dons jouent un rôle important dans l'aide aux projets"
1201
 
1202
+ #~ msgid "This license key is bind to another site"
1203
+ #~ msgstr "La clé de licence correspond à un autre site."
1204
+
1205
+ #~ msgid "You license for"
1206
+ #~ msgstr "Votre licence pour"
1207
 
1208
  #~ msgid "Activate Membership"
1209
  #~ msgstr "Activer l'adhésion"
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-01-25 17:11+0300\n"
6
- "PO-Revision-Date: 2017-01-25 17:11+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,7 +13,7 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.5.4\n"
17
  "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"
@@ -51,7 +51,7 @@ msgstr ""
51
  msgid "Need help?"
52
  msgstr "Potrzebujesz pomocy?"
53
 
54
- #: bws_functions.php:103 bws_functions.php:914
55
  msgid "Visit Help Center"
56
  msgstr ""
57
 
@@ -81,7 +81,7 @@ msgstr ""
81
  "przeciwnym wypadku wersja PRO zostanie zablokowana."
82
 
83
  #: bws_functions.php:127 bws_functions.php:339 bws_menu.php:627
84
- #: class-bws-settings.php:136
85
  msgid "Learn More"
86
  msgstr "Dowiedz się więcej"
87
 
@@ -129,8 +129,9 @@ msgstr ""
129
  "Proszę zaktualizować WordPress do najnowszej wersji."
130
 
131
  #: bws_functions.php:207
132
- msgid "Thank you for installing"
133
- msgstr "Dziękujemy za instalację"
 
134
 
135
  #: bws_functions.php:208
136
  msgid "Let's get started"
@@ -141,9 +142,8 @@ msgstr "Zaczynajmny"
141
  msgid "Settings"
142
  msgstr "Ustawienia"
143
 
144
- #: bws_functions.php:211 deprecated.php:694 bws_menu.php:328
145
- #: class-bws-settings.php:736 class-bws-settings.php:1046
146
- #: class-bws-settings.php:1076
147
  msgid "or"
148
  msgstr "lub"
149
 
@@ -206,9 +206,9 @@ msgstr ""
206
  "AKTUALIZACJI."
207
 
208
  #: bws_functions.php:477
209
- #, fuzzy
210
- msgid "Thank you for choosing"
211
- msgstr "Dziękujemy za instalację"
212
 
213
  #: bws_functions.php:478
214
  msgid ""
@@ -220,8 +220,8 @@ msgstr ""
220
  msgid "Suggest a Feature"
221
  msgstr ""
222
 
223
- #: bws_functions.php:495 class-bws-settings.php:527 class-bws-settings.php:530
224
- #: class-bws-settings.php:585 class-bws-settings.php:588
225
  msgid "Notice"
226
  msgstr "Uwaga"
227
 
@@ -229,8 +229,8 @@ msgstr "Uwaga"
229
  msgid "The plugin's settings have been changed."
230
  msgstr "Ustawienia wtyczki zostały zmienione."
231
 
232
- #: bws_functions.php:496 deprecated.php:640 class-bws-settings.php:175
233
- #: class-bws-settings.php:189
234
  msgid "Save Changes"
235
  msgstr "Zapisz zmiany"
236
 
@@ -243,87 +243,78 @@ msgstr ""
243
  "Zawsze możesz sprawdzić funkcje premium poprzez kliknięcie \"Pokaż funkcje "
244
  "PRO\" w zakładce \"Go PRO\""
245
 
246
- #: bws_functions.php:649
247
  #, fuzzy
248
  msgid "Add shortcode"
249
  msgstr "Dodaj BWS Shortcode"
250
 
251
- #: bws_functions.php:649
252
  msgid "Add BestWebSoft plugins' shortcodes using this button."
253
  msgstr ""
254
 
255
- #: bws_functions.php:698
256
  msgid "Close"
257
  msgstr "Zamknij"
258
 
259
- #: bws_functions.php:790
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:793
267
  msgid "Yes, restore all settings"
268
  msgstr "Tak, przywróć wszystkie ustawienia"
269
 
270
- #: bws_functions.php:794
271
  msgid "No, go back to the settings page"
272
  msgstr "Nie, wróć do ustawień"
273
 
274
- #: bws_functions.php:840
275
  msgid "Plugin"
276
  msgstr "Wtyczka"
277
 
278
- #: bws_functions.php:849
279
  msgid "Shortcode settings"
280
  msgstr "Ustawienia shortcode"
281
 
282
- #: bws_functions.php:854
283
  msgid "The shortcode will be inserted"
284
  msgstr "Shortcode zostanie umieszczony"
285
 
286
- #: bws_functions.php:859
287
  msgid "Insert"
288
  msgstr "Umieść"
289
 
290
- #: bws_functions.php:919
291
  msgid "FAQ"
292
  msgstr "FAQ"
293
 
294
- #: bws_functions.php:925
295
  msgid "For more information:"
296
  msgstr ""
297
 
298
- #: bws_functions.php:926
299
  msgid "Documentation"
300
  msgstr ""
301
 
302
- #: bws_functions.php:927
303
  msgid "Video Instructions"
304
  msgstr ""
305
 
306
- #: bws_functions.php:928
307
  #, fuzzy
308
  msgid "Submit a Request"
309
  msgstr "送信ボタン"
310
 
311
- #: deprecated.php:91 bws_menu.php:307 bws_menu.php:311 bws_menu.php:360
312
- msgid "Plugins"
313
- msgstr "Wtyczki"
314
-
315
- #: deprecated.php:92 bws_menu.php:308 bws_menu.php:312 bws_menu.php:611
316
- msgid "Themes"
317
- msgstr "Motywy"
318
-
319
- #: deprecated.php:93
320
- #, fuzzy
321
- msgid "System Status"
322
- msgstr "Status systemu"
323
 
324
- #: deprecated.php:133 deprecated.php:199 deprecated.php:352 bws_menu.php:120
325
- #: class-bws-settings.php:807 class-bws-settings.php:873
326
- #: class-bws-settings.php:909
327
  msgid ""
328
  "Something went wrong. Please try again later. If the error appears again, "
329
  "please contact us"
@@ -331,152 +322,33 @@ msgstr ""
331
  "Coś poszło nie tak. Spróbuj ponownie później. Jeśli błąd pojawi się ponownie "
332
  "proszę skontaktować się z nami"
333
 
334
- #: deprecated.php:133 deprecated.php:199 deprecated.php:352 bws_menu.php:120
335
- #: class-bws-settings.php:807 class-bws-settings.php:873
336
- #: class-bws-settings.php:909
337
  msgid "We are sorry for inconvenience."
338
  msgstr "Przepraszamy za niedogodności."
339
 
340
- #: deprecated.php:139 deprecated.php:358 bws_menu.php:126
341
- #: class-bws-settings.php:813 class-bws-settings.php:915
342
  msgid "Wrong license key."
343
  msgstr "Niepoprawny klucz licencji"
344
 
345
- #: deprecated.php:141 deprecated.php:360 class-bws-settings.php:815
346
- #: class-bws-settings.php:917
347
- #, fuzzy
348
- msgid "This license key is bound to another site."
349
- msgstr "Klucz licencji został przypisany do innej strony."
350
-
351
- #: deprecated.php:143 class-bws-settings.php:817
352
- msgid ""
353
- "This license key is valid, but Your license has expired. If you want to "
354
- "update our plugin in future, you should extend the license."
355
- msgstr ""
356
- "Klucz jest poprawny, jednak Twoja licencja wygasła. Jeśli chcesz "
357
- "aktualizować naszą wtyczkę w przyszłości powinieneś przedłużyć licencję."
358
-
359
- #: deprecated.php:145 class-bws-settings.php:819
360
- msgid "Unfortunately, you have exceeded the number of available tries."
361
- msgstr "Niestety, przekroczono liczbę dostępnych prób."
362
-
363
- #: deprecated.php:147 class-bws-settings.php:821
364
- msgid ""
365
- "Unfortunately, the Pro Trial licence was already installed to this domain. "
366
- "The Pro Trial license can be installed only once."
367
- msgstr ""
368
- "Niestety, licencja PRO była już przypisana do tej domeny. Licencja testowa "
369
- "może być wykorzystana tylko raz."
370
-
371
- #: deprecated.php:151 class-bws-settings.php:825
372
- msgid "The Pro Trial license key is valid."
373
- msgstr "Klucz licencji do testowej wersji PRO jest poprawny."
374
-
375
- #: deprecated.php:153 bws_menu.php:140 class-bws-settings.php:827
376
- msgid "The license key is valid."
377
- msgstr "Klucz licencji jest poprawny"
378
-
379
- #: deprecated.php:156 bws_menu.php:142 class-bws-settings.php:830
380
- msgid "Your license will expire on"
381
- msgstr "Twoja licencja wygaśnie"
382
-
383
- #: deprecated.php:159 deprecated.php:246 class-bws-settings.php:833
384
- #, php-format
385
- msgid ""
386
- "In order to continue using the plugin it is necessary to buy a %s license."
387
- msgstr ""
388
- "W celu dalszego wykorzystywania wtyczki niezbędne jest wykupienie licencji "
389
- "%s."
390
-
391
- #: deprecated.php:204
392
- msgid "Please, enter your license key"
393
- msgstr "Podaj klucz licencji"
394
-
395
- #: deprecated.php:223
396
- #, fuzzy
397
- msgid ""
398
- "If necessary, you can check if the license key is correct or reenter it in "
399
- "the field below. You can find your license key on your personal page - "
400
- "Client Area - on our website"
401
- msgstr ""
402
- "Jeśli to konieczne możesz sprawdzić czy klucz jest poprawny lub umieścić go "
403
- "w polu poniżej. Możesz znaleźć swój klucz na naszej stronie w strefie - "
404
- "Panel Klienta"
405
-
406
- #: deprecated.php:223
407
  #, fuzzy
408
  msgid ""
409
- "(your username is the email address specified during the purchase). If "
410
- "necessary, please submit \"Lost your password?\" request."
411
- msgstr ""
412
- "(login to adres email podany przy zakupie). Jeśli to koniczne użyj opcji "
413
- "\"Zgubiłeś swoje hasło?\"."
414
-
415
- #: deprecated.php:227 bws_menu.php:336 bws_menu.php:347
416
- #: class-bws-settings.php:749
417
- msgid "Check license key"
418
- msgstr "Sprawdź klucz licencji"
419
-
420
- #: deprecated.php:247
421
- #, fuzzy
422
- msgid "After that, you can activate it by entering your license key."
423
- msgstr "Po wszystkim możesz aktywować wtyczkę poprzez podanie klucza licencji."
424
 
425
- #: deprecated.php:249 deprecated.php:688
426
- msgid "License key can be found in the"
427
  msgstr ""
428
 
429
- #: deprecated.php:251 deprecated.php:690
430
- #, fuzzy
431
- msgid "(your username is the email address specified during the purchase)."
432
- msgstr "(twoja nazwa użytkownika to email podany podczas zakupu)."
433
-
434
- #: deprecated.php:259 deprecated.php:267 deprecated.php:629 deprecated.php:700
435
- #: deprecated.php:709 bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
436
- #: class-bws-settings.php:728
437
- msgid "Activate"
438
- msgstr "Aktywuj"
439
-
440
- #: deprecated.php:261 bws_menu.php:130 bws_menu.php:334
441
  msgid "Unfortunately, you have exceeded the number of available tries per day."
442
  msgstr "Niestety, przekroczono dzienną liczbę dostępnych prób."
443
 
444
- #: deprecated.php:278
445
- #, fuzzy
446
- msgid ""
447
- "Congratulations! The Pro license of the plugin is activated successfully."
448
- msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
449
-
450
- #: deprecated.php:280 deprecated.php:669
451
- msgid "Please, go to"
452
- msgstr "Proszę przejść do"
453
-
454
- #: deprecated.php:280 deprecated.php:669
455
- msgid "the setting page"
456
- msgstr "ustawień"
457
-
458
- #: deprecated.php:281 deprecated.php:670
459
- msgid "You will be redirected automatically in 5 seconds."
460
- msgstr "Zostaniesz automatycznie przekierowany w ciągu 5 sekund."
461
-
462
- #: deprecated.php:315
463
- msgid "Check premium options on the plugin settings page!"
464
- msgstr "Sprawdź dodatkowe opcje premium w ustawieniach wtyczki."
465
-
466
- #: deprecated.php:322 bws_menu.php:99 class-bws-settings.php:781
467
- msgid "Wrong license key"
468
- msgstr "Niepoprawny klucz licencji"
469
-
470
- #: deprecated.php:362 deprecated.php:703 class-bws-settings.php:733
471
- #: class-bws-settings.php:919
472
- msgid ""
473
- "Unfortunately, you have exceeded the number of available tries per day. "
474
- "Please, upload the plugin manually."
475
- msgstr ""
476
- "Niestety, przekroczono liczb dostępnych prób na dziś. Proszę dodać wtyczkę "
477
- "manualnie."
478
-
479
- #: deprecated.php:364 bws_menu.php:132 class-bws-settings.php:921
480
  #, fuzzy, php-format
481
  msgid ""
482
  "Unfortunately, Your license has expired. To continue getting top-priority "
@@ -485,7 +357,7 @@ msgstr ""
485
  "Niestety, Twoja licencja wygasła. By nadal korzystać z szybkiego dostępu do "
486
  "wsparcia oraz aktualizacji powinieneś przedłużyć licencję."
487
 
488
- #: deprecated.php:366 bws_menu.php:134 class-bws-settings.php:923
489
  msgid ""
490
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
491
  "Trial license can be installed only once."
@@ -493,33 +365,20 @@ msgstr ""
493
  "Niestety, licencja PRO była już przypisana do tej domeny. Licencja testowa "
494
  "może być wykorzystana tylko raz."
495
 
496
- #: deprecated.php:387 deprecated.php:409 deprecated.php:431 bws_menu.php:400
497
- #: bws_menu.php:431 bws_menu.php:442 class-bws-settings.php:947
498
- #: class-bws-settings.php:969 class-bws-settings.php:991
499
- msgid "Failed to download the zip archive. Please, upload the plugin manually"
500
- msgstr ""
501
- "Pobieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
502
- "manualnie"
503
-
504
- #: deprecated.php:399 bws_menu.php:417 class-bws-settings.php:959
505
- msgid "Failed to open the zip archive. Please, upload the plugin manually"
506
- msgstr ""
507
- "Otwieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
508
- "manualnie"
509
 
510
- #: deprecated.php:405 bws_menu.php:424 class-bws-settings.php:965
511
- msgid ""
512
- "Your server does not support either ZipArchive or Phar. Please, upload the "
513
- "plugin manually"
514
- msgstr ""
515
- "Twój serwer nie wspiera ZipAcrchive lub Phar. Proszę dodać wtyczkę manualnie"
516
 
517
- #: deprecated.php:412 bws_menu.php:434 class-bws-settings.php:972
518
- msgid "UploadDir is not writable. Please, upload the plugin manually"
519
- msgstr ""
520
- "Folder uploadu jest chroniony przez zapisem. Proszę dodać wtyczkę manualnie"
521
 
522
- #: deprecated.php:435 bws_menu.php:151 class-bws-settings.php:995
523
  msgid ""
524
  "Something went wrong. Try again later or upload the plugin manually. We are "
525
  "sorry for inconvenience."
@@ -527,200 +386,95 @@ msgstr ""
527
  "Coś poszło nie tak. Spróbuj ponowie później lub dodaj wtyczkę manualnie. "
528
  "Przepraszamy za niedogodności."
529
 
530
- #: deprecated.php:463 class-bws-settings.php:1030
531
- msgid "Please, enter Your license key"
532
- msgstr "Proszę podać klucz licencji."
533
-
534
- #: deprecated.php:478
535
- msgid "Restore all plugin settings to defaults"
536
- msgstr "Przywróć wszystkie ustawienia do wartości domyśłnych"
537
-
538
- #: deprecated.php:480
539
- msgid "Restore settings"
540
- msgstr "Przywróć ustawienia"
541
-
542
- #: deprecated.php:497 class-bws-settings.php:421
543
- msgid "You do not have sufficient permissions to edit plugins for this site."
544
- msgstr ""
545
-
546
- #: deprecated.php:548 deprecated.php:575
547
- #, php-format
548
- msgid "File %s edited successfully."
549
- msgstr ""
550
-
551
- #: deprecated.php:550 deprecated.php:577
552
- msgid "Not enough permissions to create or update the file"
553
- msgstr ""
554
-
555
- #: deprecated.php:580
556
- msgid "Not enough permissions to create the file"
557
- msgstr ""
558
-
559
- #: deprecated.php:618 class-bws-settings.php:426
560
- msgid "These styles will be added to the header on all pages of your site."
561
- msgstr ""
562
-
563
- #: deprecated.php:620 class-bws-settings.php:429
564
- #, php-format
565
- msgid ""
566
- "This PHP code will be hooked to the %s action and will be printed on front "
567
- "end only."
568
- msgstr ""
569
-
570
- #: deprecated.php:624
571
- msgid "Editing"
572
- msgstr ""
573
-
574
- #: deprecated.php:626 class-bws-settings.php:450
575
- msgid "Browsing"
576
- msgstr ""
577
-
578
- #: deprecated.php:633 class-bws-settings.php:461
579
- #, fuzzy, php-format
580
- msgid "Learn more about %s"
581
- msgstr "Dowiedz się więcej"
582
-
583
- #: deprecated.php:644 class-bws-settings.php:440
584
- #, php-format
585
- msgid ""
586
- "You need to make this files writable before you can save your changes. See "
587
- "%s the Codex %s for more information."
588
- msgstr ""
589
-
590
- #: deprecated.php:667
591
- #, fuzzy
592
- msgid ""
593
- "Congratulations! Pro version of the plugin is installed and activated "
594
- "successfully."
595
- msgstr "Gratulacje! Wersja PRO została pobrana i aktywowana pomyślnie."
596
-
597
- #: deprecated.php:677
598
- msgid "Show Pro features"
599
- msgstr "Pokaż funkcje PRO"
600
-
601
- #: deprecated.php:684
602
- msgid "Enter your license key to install and activate"
603
- msgstr ""
604
-
605
- #: deprecated.php:686
606
- #, fuzzy
607
- msgid "version of the plugin."
608
- msgstr "Oceń wtyczkę"
609
-
610
- #: deprecated.php:694 class-bws-settings.php:736
611
- #, php-format
612
- msgid "Start Your Free %s-Day Trial Now"
613
- msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
614
-
615
- #: bws_menu.php:128
616
- #, fuzzy
617
- msgid ""
618
- "This license key is bound to another site. Change it via personal Client "
619
- "Area."
620
- msgstr "Klucz licencji został przypisany do innej strony."
621
-
622
- #: bws_menu.php:128
623
- msgid "Log in"
624
- msgstr ""
625
-
626
- #: bws_menu.php:144
627
- #, fuzzy
628
- msgid "Congratulations! Pro Membership license is activated successfully."
629
- msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
630
-
631
- #: bws_menu.php:161
632
  #, fuzzy
633
  msgid "Please enter your license key."
634
  msgstr "Podaj klucz licencji"
635
 
636
- #: bws_menu.php:172
637
  msgid "Not set"
638
  msgstr "Nie ustawiono"
639
 
640
- #: bws_menu.php:174 bws_menu.php:175
641
  msgid "On"
642
  msgstr "Włączone"
643
 
644
- #: bws_menu.php:174 bws_menu.php:175
645
  msgid "Off"
646
  msgstr "Wyłączone"
647
 
648
- #: bws_menu.php:176 bws_menu.php:177 bws_menu.php:178 bws_menu.php:179
649
- #: bws_menu.php:180 bws_menu.php:181 bws_menu.php:190
650
  msgid "N/A"
651
  msgstr "Brak danych"
652
 
653
- #: bws_menu.php:181
654
  msgid " Mb"
655
  msgstr " Mb"
656
 
657
- #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:184 bws_menu.php:188
658
  msgid "Yes"
659
  msgstr "Tak"
660
 
661
- #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:184 bws_menu.php:188
662
  msgid "No"
663
  msgstr "Nie"
664
 
665
- #: bws_menu.php:195
666
  #, fuzzy
667
  msgid "WordPress Environment"
668
  msgstr "Środowisko"
669
 
670
- #: bws_menu.php:197
671
  msgid "Home URL"
672
  msgstr "Adres strony głównej:"
673
 
674
- #: bws_menu.php:198
675
  #, fuzzy
676
  msgid "Website URL"
677
  msgstr "Adres strony:"
678
 
679
- #: bws_menu.php:199
680
  #, fuzzy
681
  msgid "WP Version"
682
  msgstr "Wersja PHP"
683
 
684
- #: bws_menu.php:200
685
  #, fuzzy
686
  msgid "WP Multisite"
687
  msgstr "Multisite"
688
 
689
- #: bws_menu.php:201
690
  #, fuzzy
691
  msgid "WP Memory Limit"
692
  msgstr "PHP Limit pamięci"
693
 
694
- #: bws_menu.php:202
695
  msgid "Active Theme"
696
  msgstr "Aktywny motyw"
697
 
698
- #: bws_menu.php:202 bws_menu.php:248 bws_menu.php:251
699
  #, fuzzy, php-format
700
  msgid "by %s"
701
  msgstr "Od %s"
702
 
703
- #: bws_menu.php:206
704
  #, fuzzy
705
  msgid "Server Environment"
706
  msgstr "Środowisko"
707
 
708
- #: bws_menu.php:208
709
  msgid "Operating System"
710
  msgstr "System operacyjny"
711
 
712
- #: bws_menu.php:209
713
  msgid "Server"
714
  msgstr "Serwer"
715
 
716
- #: bws_menu.php:210
717
  msgid "PHP Version"
718
  msgstr "Wersja PHP"
719
 
720
- #: bws_menu.php:211
721
- msgid "PHP Safe Mode"
722
- msgstr "PHP Safe Mode"
723
-
724
  #: bws_menu.php:212
725
  msgid "PHP Allow URL fopen"
726
  msgstr "Zezwól na PHP fopen"
@@ -801,6 +555,14 @@ msgstr "Dziękujemy za kontakt."
801
  msgid "Sorry, email message could not be delivered."
802
  msgstr "Przepraszamy, wiadomość nie została dostarczona."
803
 
 
 
 
 
 
 
 
 
804
  #: bws_menu.php:309 bws_menu.php:313 bws_menu.php:662
805
  msgid "System status"
806
  msgstr "Status systemu"
@@ -823,11 +585,22 @@ msgstr ""
823
  msgid "Subscribe to Pro Membership"
824
  msgstr "有効なテーマ"
825
 
 
 
 
 
 
826
  #: bws_menu.php:339
827
  #, fuzzy
828
  msgid "Enter your license key"
829
  msgstr "Podaj klucz licencji"
830
 
 
 
 
 
 
 
831
  #: bws_menu.php:361
832
  #, fuzzy
833
  msgid "Upload Plugin"
@@ -861,6 +634,15 @@ msgstr "Zainstalowane"
861
  msgid "Downloading install package from"
862
  msgstr ""
863
 
 
 
 
 
 
 
 
 
 
864
  #: bws_menu.php:408
865
  msgid "Unpacking the package"
866
  msgstr ""
@@ -870,11 +652,29 @@ msgstr ""
870
  msgid "Installing the plugin"
871
  msgstr "Zainstalowane"
872
 
 
 
 
 
 
 
 
 
 
 
 
 
 
873
  #: bws_menu.php:427
874
  #, php-format
875
  msgid "The plugin %s is successfully installed."
876
  msgstr ""
877
 
 
 
 
 
 
878
  #: bws_menu.php:439
879
  #, fuzzy
880
  msgid "Activate Plugin"
@@ -924,7 +724,7 @@ msgstr "Aktualizuj do wersji %s"
924
  msgid "Install Now"
925
  msgstr "Instaluj teraz"
926
 
927
- #: bws_menu.php:549 class-bws-settings.php:149 class-bws-settings.php:1073
928
  msgid "Upgrade to Pro"
929
  msgstr ""
930
 
@@ -962,163 +762,157 @@ msgstr "Wyślij do supportu"
962
  msgid "Send to custom email &#187;"
963
  msgstr "Prześlij na własny adres &#187;"
964
 
965
- #: product_list.php:7
966
- msgid "Advertisement"
967
- msgstr ""
968
-
969
- #: product_list.php:8
970
- msgid "Content & Media"
971
- msgstr ""
972
-
973
- #: product_list.php:9
974
- msgid "Management"
975
- msgstr ""
976
-
977
- #: product_list.php:10
978
- msgid "Recommended"
979
- msgstr "Polecane"
980
-
981
- #: product_list.php:11
982
- msgid "Security"
983
- msgstr ""
984
-
985
- #: product_list.php:12
986
- #, fuzzy
987
- msgid "Site Stats"
988
- msgstr "Status systemu"
989
-
990
- #: product_list.php:13
991
- msgid "Social"
992
- msgstr ""
993
-
994
- #: product_list.php:14
995
- msgid "Utilities"
996
- msgstr ""
997
-
998
- #: product_list.php:15
999
- msgid "Other"
1000
- msgstr ""
1001
-
1002
- #: class-bws-settings.php:129
1003
  msgid "Information"
1004
  msgstr ""
1005
 
1006
- #: class-bws-settings.php:136
1007
  #, fuzzy
1008
  msgid "Inactive"
1009
  msgstr "Nieaktywne wtyczki"
1010
 
1011
- #: class-bws-settings.php:144
1012
  msgid "Expired"
1013
  msgstr ""
1014
 
1015
- #: class-bws-settings.php:147
1016
  #, php-format
1017
  msgid "%s day(-s) left"
1018
  msgstr ""
1019
 
1020
- #: class-bws-settings.php:153
1021
  #, fuzzy, php-format
1022
  msgid "Expired on %s"
1023
  msgstr "wygasa"
1024
 
1025
- #: class-bws-settings.php:153
1026
  msgid "Renew Now"
1027
  msgstr ""
1028
 
1029
- #: class-bws-settings.php:155
1030
  #, fuzzy
1031
  msgid "Active"
1032
  msgstr "Aktywuj"
1033
 
1034
- #: class-bws-settings.php:160
1035
  #, fuzzy
1036
  msgid "License"
1037
  msgstr "Niepoprawny klucz licencji"
1038
 
1039
- #: class-bws-settings.php:163
1040
  #, fuzzy
1041
  msgid "Status"
1042
  msgstr "Status systemu"
1043
 
1044
- #: class-bws-settings.php:167
1045
  #, fuzzy
1046
  msgid "Version"
1047
  msgstr "wersji!"
1048
 
1049
- #: class-bws-settings.php:276
1050
  #, fuzzy
1051
  msgid "All plugin settings were restored."
1052
  msgstr "Ustawienia wtyczki zostały zmienione."
1053
 
1054
- #: class-bws-settings.php:417
1055
  msgid "Custom Code"
1056
  msgstr ""
1057
 
1058
- #: class-bws-settings.php:432
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1059
  msgid "These code will be added to the header on all pages of your site."
1060
  msgstr ""
1061
 
1062
- #: class-bws-settings.php:454
 
 
 
 
 
 
 
 
 
 
 
1063
  #, php-format
1064
  msgid "Activate custom %s code."
1065
  msgstr ""
1066
 
1067
- #: class-bws-settings.php:520
 
 
 
 
 
1068
  msgid "Miscellaneous Settings"
1069
  msgstr ""
1070
 
1071
- #: class-bws-settings.php:527 class-bws-settings.php:585
1072
  #, php-format
1073
  msgid ""
1074
  "It is prohibited to change %s settings on this site in the %s network "
1075
  "settings."
1076
  msgstr ""
1077
 
1078
- #: class-bws-settings.php:530 class-bws-settings.php:588
1079
  #, php-format
1080
  msgid ""
1081
  "It is prohibited to view %s settings on this site in the %s network settings."
1082
  msgstr ""
1083
 
1084
- #: class-bws-settings.php:536
1085
  #, fuzzy
1086
  msgid "Pro Options"
1087
  msgstr "Pro Plugins"
1088
 
1089
- #: class-bws-settings.php:539
1090
  msgid "Enable to display plugin Pro options."
1091
  msgstr ""
1092
 
1093
- #: class-bws-settings.php:544
1094
  msgid "Track Usage"
1095
  msgstr ""
1096
 
1097
- #: class-bws-settings.php:547
1098
  msgid ""
1099
  "Enable to allow tracking plugin usage anonymously in order to make it better."
1100
  msgstr ""
1101
 
1102
- #: class-bws-settings.php:551
1103
  #, fuzzy
1104
  msgid "Default Settings"
1105
  msgstr "Ustawienia"
1106
 
1107
- #: class-bws-settings.php:553
1108
  #, fuzzy
1109
  msgid "Restore Settings"
1110
  msgstr "Przywróć ustawienia"
1111
 
1112
- #: class-bws-settings.php:554
1113
  #, fuzzy
1114
  msgid "This will restore plugin settings to defaults."
1115
  msgstr "Przywróć wszystkie ustawienia do wartości domyśłnych"
1116
 
1117
- #: class-bws-settings.php:578
1118
  msgid "Import / Export"
1119
  msgstr ""
1120
 
1121
- #: class-bws-settings.php:701 class-bws-settings.php:724
1122
  #: class-bws-settings.php:746
1123
  #, fuzzy
1124
  msgid "License Key"
@@ -1130,9 +924,9 @@ msgid "Congratulations! Pro license is activated successfully."
1130
  msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
1131
 
1132
  #: class-bws-settings.php:715
1133
- #, fuzzy, php-format
1134
- msgid "You will be automatically redirected to the %s in 7 seconds."
1135
- msgstr "Zostaniesz automatycznie przekierowany w ciągu 5 sekund."
1136
 
1137
  #: class-bws-settings.php:715
1138
  #, fuzzy
@@ -1144,6 +938,20 @@ msgstr "設定保存."
1144
  msgid "Enter your license key to activate %s and get premium plugin features."
1145
  msgstr ""
1146
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1147
  #: class-bws-settings.php:751
1148
  #, fuzzy
1149
  msgid ""
@@ -1169,24 +977,227 @@ msgid ""
1169
  "using BestWebSoft Client Area."
1170
  msgstr ""
1171
 
1172
- #: class-bws-settings.php:1044
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1173
  #, fuzzy
1174
  msgid "Need Help?"
1175
  msgstr "Potrzebujesz pomocy?"
1176
 
1177
- #: class-bws-settings.php:1044
1178
  msgid "Read the Instruction"
1179
  msgstr ""
1180
 
1181
- #: class-bws-settings.php:1046
1182
  msgid "Watch the Video"
1183
  msgstr ""
1184
 
1185
- #: class-bws-settings.php:1077
1186
  #, fuzzy
1187
  msgid "Start Your Free Trial"
1188
  msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
1189
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1190
  #~ msgid "You license for"
1191
  #~ msgstr "Twoja licencja na"
1192
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-03-28 13:51+0300\n"
6
+ "PO-Revision-Date: 2017-03-28 13:51+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
  "X-Poedit-KeywordsList: __;_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"
51
  msgid "Need help?"
52
  msgstr "Potrzebujesz pomocy?"
53
 
54
+ #: bws_functions.php:103 bws_functions.php:916 class-bws-settings.php:1047
55
  msgid "Visit Help Center"
56
  msgstr ""
57
 
81
  "przeciwnym wypadku wersja PRO zostanie zablokowana."
82
 
83
  #: bws_functions.php:127 bws_functions.php:339 bws_menu.php:627
84
+ #: class-bws-settings.php:143
85
  msgid "Learn More"
86
  msgstr "Dowiedz się więcej"
87
 
129
  "Proszę zaktualizować WordPress do najnowszej wersji."
130
 
131
  #: bws_functions.php:207
132
+ #, php-format
133
+ msgid "Thank you for installing %s plugin!"
134
+ msgstr ""
135
 
136
  #: bws_functions.php:208
137
  msgid "Let's get started"
142
  msgid "Settings"
143
  msgstr "Ustawienia"
144
 
145
+ #: bws_functions.php:211 bws_menu.php:328 class-bws-settings.php:736
146
+ #: class-bws-settings.php:1049 class-bws-settings.php:1059 deprecated.php:694
 
147
  msgid "or"
148
  msgstr "lub"
149
 
206
  "AKTUALIZACJI."
207
 
208
  #: bws_functions.php:477
209
+ #, php-format
210
+ msgid "Thank you for choosing %s plugin!"
211
+ msgstr ""
212
 
213
  #: bws_functions.php:478
214
  msgid ""
220
  msgid "Suggest a Feature"
221
  msgstr ""
222
 
223
+ #: bws_functions.php:495 class-bws-settings.php:533 class-bws-settings.php:536
224
+ #: class-bws-settings.php:584 class-bws-settings.php:587
225
  msgid "Notice"
226
  msgstr "Uwaga"
227
 
229
  msgid "The plugin's settings have been changed."
230
  msgstr "Ustawienia wtyczki zostały zmienione."
231
 
232
+ #: bws_functions.php:496 class-bws-settings.php:182 class-bws-settings.php:202
233
+ #: deprecated.php:640
234
  msgid "Save Changes"
235
  msgstr "Zapisz zmiany"
236
 
243
  "Zawsze możesz sprawdzić funkcje premium poprzez kliknięcie \"Pokaż funkcje "
244
  "PRO\" w zakładce \"Go PRO\""
245
 
246
+ #: bws_functions.php:651
247
  #, fuzzy
248
  msgid "Add shortcode"
249
  msgstr "Dodaj BWS Shortcode"
250
 
251
+ #: bws_functions.php:651
252
  msgid "Add BestWebSoft plugins' shortcodes using this button."
253
  msgstr ""
254
 
255
+ #: bws_functions.php:700
256
  msgid "Close"
257
  msgstr "Zamknij"
258
 
259
+ #: bws_functions.php:792
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:795
267
  msgid "Yes, restore all settings"
268
  msgstr "Tak, przywróć wszystkie ustawienia"
269
 
270
+ #: bws_functions.php:796
271
  msgid "No, go back to the settings page"
272
  msgstr "Nie, wróć do ustawień"
273
 
274
+ #: bws_functions.php:842
275
  msgid "Plugin"
276
  msgstr "Wtyczka"
277
 
278
+ #: bws_functions.php:851
279
  msgid "Shortcode settings"
280
  msgstr "Ustawienia shortcode"
281
 
282
+ #: bws_functions.php:856
283
  msgid "The shortcode will be inserted"
284
  msgstr "Shortcode zostanie umieszczony"
285
 
286
+ #: bws_functions.php:861
287
  msgid "Insert"
288
  msgstr "Umieść"
289
 
290
+ #: bws_functions.php:921
291
  msgid "FAQ"
292
  msgstr "FAQ"
293
 
294
+ #: bws_functions.php:927
295
  msgid "For more information:"
296
  msgstr ""
297
 
298
+ #: bws_functions.php:928
299
  msgid "Documentation"
300
  msgstr ""
301
 
302
+ #: bws_functions.php:929
303
  msgid "Video Instructions"
304
  msgstr ""
305
 
306
+ #: bws_functions.php:930
307
  #, fuzzy
308
  msgid "Submit a Request"
309
  msgstr "送信ボタン"
310
 
311
+ #: bws_menu.php:101 class-bws-settings.php:781 deprecated.php:322
312
+ msgid "Wrong license key"
313
+ msgstr "Niepoprawny klucz licencji"
 
 
 
 
 
 
 
 
 
314
 
315
+ #: bws_menu.php:122 class-bws-settings.php:807 class-bws-settings.php:874
316
+ #: class-bws-settings.php:910 deprecated.php:133 deprecated.php:199
317
+ #: deprecated.php:352
318
  msgid ""
319
  "Something went wrong. Please try again later. If the error appears again, "
320
  "please contact us"
322
  "Coś poszło nie tak. Spróbuj ponownie później. Jeśli błąd pojawi się ponownie "
323
  "proszę skontaktować się z nami"
324
 
325
+ #: bws_menu.php:122 class-bws-settings.php:807 class-bws-settings.php:874
326
+ #: class-bws-settings.php:910 deprecated.php:133 deprecated.php:199
327
+ #: deprecated.php:352
328
  msgid "We are sorry for inconvenience."
329
  msgstr "Przepraszamy za niedogodności."
330
 
331
+ #: bws_menu.php:128 class-bws-settings.php:813 class-bws-settings.php:916
332
+ #: deprecated.php:139 deprecated.php:358
333
  msgid "Wrong license key."
334
  msgstr "Niepoprawny klucz licencji"
335
 
336
+ #: bws_menu.php:130
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
337
  #, fuzzy
338
  msgid ""
339
+ "This license key is bound to another site. Change it via personal Client "
340
+ "Area."
341
+ msgstr "Klucz licencji został przypisany do innej strony."
 
 
 
 
 
 
 
 
 
 
 
 
342
 
343
+ #: bws_menu.php:130
344
+ msgid "Log in"
345
  msgstr ""
346
 
347
+ #: bws_menu.php:132 bws_menu.php:334 deprecated.php:261
 
 
 
 
 
 
 
 
 
 
 
348
  msgid "Unfortunately, you have exceeded the number of available tries per day."
349
  msgstr "Niestety, przekroczono dzienną liczbę dostępnych prób."
350
 
351
+ #: bws_menu.php:134 class-bws-settings.php:922 deprecated.php:364
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
352
  #, fuzzy, php-format
353
  msgid ""
354
  "Unfortunately, Your license has expired. To continue getting top-priority "
357
  "Niestety, Twoja licencja wygasła. By nadal korzystać z szybkiego dostępu do "
358
  "wsparcia oraz aktualizacji powinieneś przedłużyć licencję."
359
 
360
+ #: bws_menu.php:136 class-bws-settings.php:924 deprecated.php:366
361
  msgid ""
362
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
363
  "Trial license can be installed only once."
365
  "Niestety, licencja PRO była już przypisana do tej domeny. Licencja testowa "
366
  "może być wykorzystana tylko raz."
367
 
368
+ #: bws_menu.php:142 class-bws-settings.php:828 deprecated.php:153
369
+ msgid "The license key is valid."
370
+ msgstr "Klucz licencji jest poprawny"
 
 
 
 
 
 
 
 
 
 
371
 
372
+ #: bws_menu.php:144 class-bws-settings.php:831 deprecated.php:156
373
+ msgid "Your license will expire on"
374
+ msgstr "Twoja licencja wygaśnie"
 
 
 
375
 
376
+ #: bws_menu.php:146
377
+ #, fuzzy
378
+ msgid "Congratulations! Pro Membership license is activated successfully."
379
+ msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
380
 
381
+ #: bws_menu.php:153 class-bws-settings.php:996 deprecated.php:435
382
  msgid ""
383
  "Something went wrong. Try again later or upload the plugin manually. We are "
384
  "sorry for inconvenience."
386
  "Coś poszło nie tak. Spróbuj ponowie później lub dodaj wtyczkę manualnie. "
387
  "Przepraszamy za niedogodności."
388
 
389
+ #: bws_menu.php:163
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
390
  #, fuzzy
391
  msgid "Please enter your license key."
392
  msgstr "Podaj klucz licencji"
393
 
394
+ #: bws_menu.php:174
395
  msgid "Not set"
396
  msgstr "Nie ustawiono"
397
 
398
+ #: bws_menu.php:176
399
  msgid "On"
400
  msgstr "Włączone"
401
 
402
+ #: bws_menu.php:176
403
  msgid "Off"
404
  msgstr "Wyłączone"
405
 
406
+ #: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
407
+ #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
408
  msgid "N/A"
409
  msgstr "Brak danych"
410
 
411
+ #: bws_menu.php:182
412
  msgid " Mb"
413
  msgstr " Mb"
414
 
415
+ #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
416
  msgid "Yes"
417
  msgstr "Tak"
418
 
419
+ #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
420
  msgid "No"
421
  msgstr "Nie"
422
 
423
+ #: bws_menu.php:196
424
  #, fuzzy
425
  msgid "WordPress Environment"
426
  msgstr "Środowisko"
427
 
428
+ #: bws_menu.php:198
429
  msgid "Home URL"
430
  msgstr "Adres strony głównej:"
431
 
432
+ #: bws_menu.php:199
433
  #, fuzzy
434
  msgid "Website URL"
435
  msgstr "Adres strony:"
436
 
437
+ #: bws_menu.php:200
438
  #, fuzzy
439
  msgid "WP Version"
440
  msgstr "Wersja PHP"
441
 
442
+ #: bws_menu.php:201
443
  #, fuzzy
444
  msgid "WP Multisite"
445
  msgstr "Multisite"
446
 
447
+ #: bws_menu.php:202
448
  #, fuzzy
449
  msgid "WP Memory Limit"
450
  msgstr "PHP Limit pamięci"
451
 
452
+ #: bws_menu.php:203
453
  msgid "Active Theme"
454
  msgstr "Aktywny motyw"
455
 
456
+ #: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
457
  #, fuzzy, php-format
458
  msgid "by %s"
459
  msgstr "Od %s"
460
 
461
+ #: bws_menu.php:207
462
  #, fuzzy
463
  msgid "Server Environment"
464
  msgstr "Środowisko"
465
 
466
+ #: bws_menu.php:209
467
  msgid "Operating System"
468
  msgstr "System operacyjny"
469
 
470
+ #: bws_menu.php:210
471
  msgid "Server"
472
  msgstr "Serwer"
473
 
474
+ #: bws_menu.php:211
475
  msgid "PHP Version"
476
  msgstr "Wersja PHP"
477
 
 
 
 
 
478
  #: bws_menu.php:212
479
  msgid "PHP Allow URL fopen"
480
  msgstr "Zezwól na PHP fopen"
555
  msgid "Sorry, email message could not be delivered."
556
  msgstr "Przepraszamy, wiadomość nie została dostarczona."
557
 
558
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:360 deprecated.php:91
559
+ msgid "Plugins"
560
+ msgstr "Wtyczki"
561
+
562
+ #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:611 deprecated.php:92
563
+ msgid "Themes"
564
+ msgstr "Motywy"
565
+
566
  #: bws_menu.php:309 bws_menu.php:313 bws_menu.php:662
567
  msgid "System status"
568
  msgstr "Status systemu"
585
  msgid "Subscribe to Pro Membership"
586
  msgstr "有効なテーマ"
587
 
588
+ #: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:749
589
+ #: deprecated.php:227
590
+ msgid "Check license key"
591
+ msgstr "Sprawdź klucz licencji"
592
+
593
  #: bws_menu.php:339
594
  #, fuzzy
595
  msgid "Enter your license key"
596
  msgstr "Podaj klucz licencji"
597
 
598
+ #: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
599
+ #: class-bws-settings.php:728 deprecated.php:259 deprecated.php:267
600
+ #: deprecated.php:629 deprecated.php:700 deprecated.php:709
601
+ msgid "Activate"
602
+ msgstr "Aktywuj"
603
+
604
  #: bws_menu.php:361
605
  #, fuzzy
606
  msgid "Upload Plugin"
634
  msgid "Downloading install package from"
635
  msgstr ""
636
 
637
+ #: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
638
+ #: class-bws-settings.php:948 class-bws-settings.php:970
639
+ #: class-bws-settings.php:992 deprecated.php:387 deprecated.php:409
640
+ #: deprecated.php:431
641
+ msgid "Failed to download the zip archive. Please, upload the plugin manually"
642
+ msgstr ""
643
+ "Pobieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
644
+ "manualnie"
645
+
646
  #: bws_menu.php:408
647
  msgid "Unpacking the package"
648
  msgstr ""
652
  msgid "Installing the plugin"
653
  msgstr "Zainstalowane"
654
 
655
+ #: bws_menu.php:417 class-bws-settings.php:960 deprecated.php:399
656
+ msgid "Failed to open the zip archive. Please, upload the plugin manually"
657
+ msgstr ""
658
+ "Otwieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
659
+ "manualnie"
660
+
661
+ #: bws_menu.php:424 class-bws-settings.php:966 deprecated.php:405
662
+ msgid ""
663
+ "Your server does not support either ZipArchive or Phar. Please, upload the "
664
+ "plugin manually"
665
+ msgstr ""
666
+ "Twój serwer nie wspiera ZipAcrchive lub Phar. Proszę dodać wtyczkę manualnie"
667
+
668
  #: bws_menu.php:427
669
  #, php-format
670
  msgid "The plugin %s is successfully installed."
671
  msgstr ""
672
 
673
+ #: bws_menu.php:434 class-bws-settings.php:973 deprecated.php:412
674
+ msgid "UploadDir is not writable. Please, upload the plugin manually"
675
+ msgstr ""
676
+ "Folder uploadu jest chroniony przez zapisem. Proszę dodać wtyczkę manualnie"
677
+
678
  #: bws_menu.php:439
679
  #, fuzzy
680
  msgid "Activate Plugin"
724
  msgid "Install Now"
725
  msgstr "Instaluj teraz"
726
 
727
+ #: bws_menu.php:549 class-bws-settings.php:156 class-bws-settings.php:1056
728
  msgid "Upgrade to Pro"
729
  msgstr ""
730
 
762
  msgid "Send to custom email &#187;"
763
  msgstr "Prześlij na własny adres &#187;"
764
 
765
+ #: class-bws-settings.php:135
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
766
  msgid "Information"
767
  msgstr ""
768
 
769
+ #: class-bws-settings.php:143
770
  #, fuzzy
771
  msgid "Inactive"
772
  msgstr "Nieaktywne wtyczki"
773
 
774
+ #: class-bws-settings.php:151
775
  msgid "Expired"
776
  msgstr ""
777
 
778
+ #: class-bws-settings.php:154
779
  #, php-format
780
  msgid "%s day(-s) left"
781
  msgstr ""
782
 
783
+ #: class-bws-settings.php:160
784
  #, fuzzy, php-format
785
  msgid "Expired on %s"
786
  msgstr "wygasa"
787
 
788
+ #: class-bws-settings.php:160
789
  msgid "Renew Now"
790
  msgstr ""
791
 
792
+ #: class-bws-settings.php:162
793
  #, fuzzy
794
  msgid "Active"
795
  msgstr "Aktywuj"
796
 
797
+ #: class-bws-settings.php:167
798
  #, fuzzy
799
  msgid "License"
800
  msgstr "Niepoprawny klucz licencji"
801
 
802
+ #: class-bws-settings.php:170
803
  #, fuzzy
804
  msgid "Status"
805
  msgstr "Status systemu"
806
 
807
+ #: class-bws-settings.php:174
808
  #, fuzzy
809
  msgid "Version"
810
  msgstr "wersji!"
811
 
812
+ #: class-bws-settings.php:282
813
  #, fuzzy
814
  msgid "All plugin settings were restored."
815
  msgstr "Ustawienia wtyczki zostały zmienione."
816
 
817
+ #: class-bws-settings.php:420
818
  msgid "Custom Code"
819
  msgstr ""
820
 
821
+ #: class-bws-settings.php:424 deprecated.php:497
822
+ msgid "You do not have sufficient permissions to edit plugins for this site."
823
+ msgstr ""
824
+
825
+ #: class-bws-settings.php:429 deprecated.php:618
826
+ msgid "These styles will be added to the header on all pages of your site."
827
+ msgstr ""
828
+
829
+ #: class-bws-settings.php:432 deprecated.php:620
830
+ #, php-format
831
+ msgid ""
832
+ "This PHP code will be hooked to the %s action and will be printed on front "
833
+ "end only."
834
+ msgstr ""
835
+
836
+ #: class-bws-settings.php:435
837
  msgid "These code will be added to the header on all pages of your site."
838
  msgstr ""
839
 
840
+ #: class-bws-settings.php:443 deprecated.php:644
841
+ #, php-format
842
+ msgid ""
843
+ "You need to make this files writable before you can save your changes. See "
844
+ "%s the Codex %s for more information."
845
+ msgstr ""
846
+
847
+ #: class-bws-settings.php:453 deprecated.php:626
848
+ msgid "Browsing"
849
+ msgstr ""
850
+
851
+ #: class-bws-settings.php:457
852
  #, php-format
853
  msgid "Activate custom %s code."
854
  msgstr ""
855
 
856
+ #: class-bws-settings.php:464 deprecated.php:633
857
+ #, fuzzy, php-format
858
+ msgid "Learn more about %s"
859
+ msgstr "Dowiedz się więcej"
860
+
861
+ #: class-bws-settings.php:524
862
  msgid "Miscellaneous Settings"
863
  msgstr ""
864
 
865
+ #: class-bws-settings.php:533 class-bws-settings.php:584
866
  #, php-format
867
  msgid ""
868
  "It is prohibited to change %s settings on this site in the %s network "
869
  "settings."
870
  msgstr ""
871
 
872
+ #: class-bws-settings.php:536 class-bws-settings.php:587
873
  #, php-format
874
  msgid ""
875
  "It is prohibited to view %s settings on this site in the %s network settings."
876
  msgstr ""
877
 
878
+ #: class-bws-settings.php:545
879
  #, fuzzy
880
  msgid "Pro Options"
881
  msgstr "Pro Plugins"
882
 
883
+ #: class-bws-settings.php:548
884
  msgid "Enable to display plugin Pro options."
885
  msgstr ""
886
 
887
+ #: class-bws-settings.php:553
888
  msgid "Track Usage"
889
  msgstr ""
890
 
891
+ #: class-bws-settings.php:556
892
  msgid ""
893
  "Enable to allow tracking plugin usage anonymously in order to make it better."
894
  msgstr ""
895
 
896
+ #: class-bws-settings.php:560
897
  #, fuzzy
898
  msgid "Default Settings"
899
  msgstr "Ustawienia"
900
 
901
+ #: class-bws-settings.php:562
902
  #, fuzzy
903
  msgid "Restore Settings"
904
  msgstr "Przywróć ustawienia"
905
 
906
+ #: class-bws-settings.php:563
907
  #, fuzzy
908
  msgid "This will restore plugin settings to defaults."
909
  msgstr "Przywróć wszystkie ustawienia do wartości domyśłnych"
910
 
911
+ #: class-bws-settings.php:575
912
  msgid "Import / Export"
913
  msgstr ""
914
 
915
+ #: class-bws-settings.php:691 class-bws-settings.php:724
916
  #: class-bws-settings.php:746
917
  #, fuzzy
918
  msgid "License Key"
924
  msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
925
 
926
  #: class-bws-settings.php:715
927
+ #, php-format
928
+ msgid "You will be automatically redirected to the %s in %s seconds."
929
+ msgstr ""
930
 
931
  #: class-bws-settings.php:715
932
  #, fuzzy
938
  msgid "Enter your license key to activate %s and get premium plugin features."
939
  msgstr ""
940
 
941
+ #: class-bws-settings.php:733 class-bws-settings.php:920 deprecated.php:362
942
+ #: deprecated.php:703
943
+ msgid ""
944
+ "Unfortunately, you have exceeded the number of available tries per day. "
945
+ "Please, upload the plugin manually."
946
+ msgstr ""
947
+ "Niestety, przekroczono liczb dostępnych prób na dziś. Proszę dodać wtyczkę "
948
+ "manualnie."
949
+
950
+ #: class-bws-settings.php:736 deprecated.php:694
951
+ #, php-format
952
+ msgid "Start Your Free %s-Day Trial Now"
953
+ msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
954
+
955
  #: class-bws-settings.php:751
956
  #, fuzzy
957
  msgid ""
977
  "using BestWebSoft Client Area."
978
  msgstr ""
979
 
980
+ #: class-bws-settings.php:815 class-bws-settings.php:918 deprecated.php:141
981
+ #: deprecated.php:360
982
+ #, fuzzy
983
+ msgid "This license key is bound to another site."
984
+ msgstr "Klucz licencji został przypisany do innej strony."
985
+
986
+ #: class-bws-settings.php:817 deprecated.php:143
987
+ msgid ""
988
+ "This license key is valid, but Your license has expired. If you want to "
989
+ "update our plugin in future, you should extend the license."
990
+ msgstr ""
991
+ "Klucz jest poprawny, jednak Twoja licencja wygasła. Jeśli chcesz "
992
+ "aktualizować naszą wtyczkę w przyszłości powinieneś przedłużyć licencję."
993
+
994
+ #: class-bws-settings.php:819 deprecated.php:145
995
+ msgid "Unfortunately, you have exceeded the number of available tries."
996
+ msgstr "Niestety, przekroczono liczbę dostępnych prób."
997
+
998
+ #: class-bws-settings.php:821 deprecated.php:147
999
+ msgid ""
1000
+ "Unfortunately, the Pro Trial licence was already installed to this domain. "
1001
+ "The Pro Trial license can be installed only once."
1002
+ msgstr ""
1003
+ "Niestety, licencja PRO była już przypisana do tej domeny. Licencja testowa "
1004
+ "może być wykorzystana tylko raz."
1005
+
1006
+ #: class-bws-settings.php:826 deprecated.php:151
1007
+ msgid "The Pro Trial license key is valid."
1008
+ msgstr "Klucz licencji do testowej wersji PRO jest poprawny."
1009
+
1010
+ #: class-bws-settings.php:834 deprecated.php:159 deprecated.php:246
1011
+ #, php-format
1012
+ msgid ""
1013
+ "In order to continue using the plugin it is necessary to buy a %s license."
1014
+ msgstr ""
1015
+ "W celu dalszego wykorzystywania wtyczki niezbędne jest wykupienie licencji "
1016
+ "%s."
1017
+
1018
+ #: class-bws-settings.php:1031 deprecated.php:463
1019
+ msgid "Please, enter Your license key"
1020
+ msgstr "Proszę podać klucz licencji."
1021
+
1022
+ #: class-bws-settings.php:1043
1023
  #, fuzzy
1024
  msgid "Need Help?"
1025
  msgstr "Potrzebujesz pomocy?"
1026
 
1027
+ #: class-bws-settings.php:1045
1028
  msgid "Read the Instruction"
1029
  msgstr ""
1030
 
1031
+ #: class-bws-settings.php:1049
1032
  msgid "Watch the Video"
1033
  msgstr ""
1034
 
1035
+ #: class-bws-settings.php:1060
1036
  #, fuzzy
1037
  msgid "Start Your Free Trial"
1038
  msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
1039
 
1040
+ #: deprecated.php:93
1041
+ #, fuzzy
1042
+ msgid "System Status"
1043
+ msgstr "Status systemu"
1044
+
1045
+ #: deprecated.php:204
1046
+ msgid "Please, enter your license key"
1047
+ msgstr "Podaj klucz licencji"
1048
+
1049
+ #: deprecated.php:223
1050
+ #, fuzzy
1051
+ msgid ""
1052
+ "If necessary, you can check if the license key is correct or reenter it in "
1053
+ "the field below. You can find your license key on your personal page - "
1054
+ "Client Area - on our website"
1055
+ msgstr ""
1056
+ "Jeśli to konieczne możesz sprawdzić czy klucz jest poprawny lub umieścić go "
1057
+ "w polu poniżej. Możesz znaleźć swój klucz na naszej stronie w strefie - "
1058
+ "Panel Klienta"
1059
+
1060
+ #: deprecated.php:223
1061
+ #, fuzzy
1062
+ msgid ""
1063
+ "(your username is the email address specified during the purchase). If "
1064
+ "necessary, please submit \"Lost your password?\" request."
1065
+ msgstr ""
1066
+ "(login to adres email podany przy zakupie). Jeśli to koniczne użyj opcji "
1067
+ "\"Zgubiłeś swoje hasło?\"."
1068
+
1069
+ #: deprecated.php:247
1070
+ #, fuzzy
1071
+ msgid "After that, you can activate it by entering your license key."
1072
+ msgstr "Po wszystkim możesz aktywować wtyczkę poprzez podanie klucza licencji."
1073
+
1074
+ #: deprecated.php:249 deprecated.php:688
1075
+ msgid "License key can be found in the"
1076
+ msgstr ""
1077
+
1078
+ #: deprecated.php:251 deprecated.php:690
1079
+ #, fuzzy
1080
+ msgid "(your username is the email address specified during the purchase)."
1081
+ msgstr "(twoja nazwa użytkownika to email podany podczas zakupu)."
1082
+
1083
+ #: deprecated.php:278
1084
+ #, fuzzy
1085
+ msgid ""
1086
+ "Congratulations! The Pro license of the plugin is activated successfully."
1087
+ msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
1088
+
1089
+ #: deprecated.php:280 deprecated.php:669
1090
+ msgid "Please, go to"
1091
+ msgstr "Proszę przejść do"
1092
+
1093
+ #: deprecated.php:280 deprecated.php:669
1094
+ msgid "the setting page"
1095
+ msgstr "ustawień"
1096
+
1097
+ #: deprecated.php:281 deprecated.php:670
1098
+ msgid "You will be redirected automatically in 5 seconds."
1099
+ msgstr "Zostaniesz automatycznie przekierowany w ciągu 5 sekund."
1100
+
1101
+ #: deprecated.php:315
1102
+ msgid "Check premium options on the plugin settings page!"
1103
+ msgstr "Sprawdź dodatkowe opcje premium w ustawieniach wtyczki."
1104
+
1105
+ #: deprecated.php:478
1106
+ msgid "Restore all plugin settings to defaults"
1107
+ msgstr "Przywróć wszystkie ustawienia do wartości domyśłnych"
1108
+
1109
+ #: deprecated.php:480
1110
+ msgid "Restore settings"
1111
+ msgstr "Przywróć ustawienia"
1112
+
1113
+ #: deprecated.php:548 deprecated.php:575
1114
+ #, php-format
1115
+ msgid "File %s edited successfully."
1116
+ msgstr ""
1117
+
1118
+ #: deprecated.php:550 deprecated.php:577
1119
+ msgid "Not enough permissions to create or update the file"
1120
+ msgstr ""
1121
+
1122
+ #: deprecated.php:580
1123
+ msgid "Not enough permissions to create the file"
1124
+ msgstr ""
1125
+
1126
+ #: deprecated.php:624
1127
+ msgid "Editing"
1128
+ msgstr ""
1129
+
1130
+ #: deprecated.php:667
1131
+ #, fuzzy
1132
+ msgid ""
1133
+ "Congratulations! Pro version of the plugin is installed and activated "
1134
+ "successfully."
1135
+ msgstr "Gratulacje! Wersja PRO została pobrana i aktywowana pomyślnie."
1136
+
1137
+ #: deprecated.php:677
1138
+ msgid "Show Pro features"
1139
+ msgstr "Pokaż funkcje PRO"
1140
+
1141
+ #: deprecated.php:684
1142
+ msgid "Enter your license key to install and activate"
1143
+ msgstr ""
1144
+
1145
+ #: deprecated.php:686
1146
+ #, fuzzy
1147
+ msgid "version of the plugin."
1148
+ msgstr "Oceń wtyczkę"
1149
+
1150
+ #: product_list.php:7
1151
+ msgid "Advertisement"
1152
+ msgstr ""
1153
+
1154
+ #: product_list.php:8
1155
+ msgid "Content & Media"
1156
+ msgstr ""
1157
+
1158
+ #: product_list.php:9
1159
+ msgid "Management"
1160
+ msgstr ""
1161
+
1162
+ #: product_list.php:10
1163
+ msgid "Recommended"
1164
+ msgstr "Polecane"
1165
+
1166
+ #: product_list.php:11
1167
+ msgid "Security"
1168
+ msgstr ""
1169
+
1170
+ #: product_list.php:12
1171
+ #, fuzzy
1172
+ msgid "Site Stats"
1173
+ msgstr "Status systemu"
1174
+
1175
+ #: product_list.php:13
1176
+ msgid "Social"
1177
+ msgstr ""
1178
+
1179
+ #: product_list.php:14
1180
+ msgid "Utilities"
1181
+ msgstr ""
1182
+
1183
+ #: product_list.php:15
1184
+ msgid "Other"
1185
+ msgstr ""
1186
+
1187
+ #~ msgid "Thank you for installing"
1188
+ #~ msgstr "Dziękujemy za instalację"
1189
+
1190
+ #, fuzzy
1191
+ #~ msgid "Thank you for choosing"
1192
+ #~ msgstr "Dziękujemy za instalację"
1193
+
1194
+ #, fuzzy
1195
+ #~ msgid "You will be automatically redirected to the %s in 7 seconds."
1196
+ #~ msgstr "Zostaniesz automatycznie przekierowany w ciągu 5 sekund."
1197
+
1198
+ #~ msgid "PHP Safe Mode"
1199
+ #~ msgstr "PHP Safe Mode"
1200
+
1201
  #~ msgid "You license for"
1202
  #~ msgstr "Twoja licencja na"
1203
 
bws_menu/languages/bestwebsoft-ru_RU.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-01-25 17:11+0300\n"
6
- "PO-Revision-Date: 2017-01-25 17:15+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
@@ -13,7 +13,7 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: bws_functions.php:72 bws_functions.php:190
@@ -48,7 +48,7 @@ msgstr "Оценить"
48
  msgid "Need help?"
49
  msgstr "Нужна помощь?"
50
 
51
- #: bws_functions.php:103 bws_functions.php:914
52
  msgid "Visit Help Center"
53
  msgstr "Перейти в Help Center"
54
 
@@ -77,7 +77,7 @@ msgstr ""
77
  "проблему в течение 24 часов, в противном случае плагин будет деактивирован."
78
 
79
  #: bws_functions.php:127 bws_functions.php:339 bws_menu.php:627
80
- #: class-bws-settings.php:136
81
  msgid "Learn More"
82
  msgstr "Подробнее"
83
 
@@ -124,8 +124,9 @@ msgstr ""
124
  "Пожалуйста, обновите WordPress до последней версии."
125
 
126
  #: bws_functions.php:207
127
- msgid "Thank you for installing"
128
- msgstr "Спасибо за установку"
 
129
 
130
  #: bws_functions.php:208
131
  msgid "Let's get started"
@@ -136,9 +137,8 @@ msgstr "Давайте начнем"
136
  msgid "Settings"
137
  msgstr "Настройки"
138
 
139
- #: bws_functions.php:211 deprecated.php:694 bws_menu.php:328
140
- #: class-bws-settings.php:736 class-bws-settings.php:1046
141
- #: class-bws-settings.php:1076
142
  msgid "or"
143
  msgstr "или"
144
 
@@ -200,8 +200,9 @@ msgstr ""
200
  "приоритетную тех.поддержку или обновления."
201
 
202
  #: bws_functions.php:477
203
- msgid "Thank you for choosing"
204
- msgstr "Спасибо за выбор"
 
205
 
206
  #: bws_functions.php:478
207
  msgid ""
@@ -216,8 +217,8 @@ msgstr ""
216
  msgid "Suggest a Feature"
217
  msgstr "Предложить функционал"
218
 
219
- #: bws_functions.php:495 class-bws-settings.php:527 class-bws-settings.php:530
220
- #: class-bws-settings.php:585 class-bws-settings.php:588
221
  msgid "Notice"
222
  msgstr "Внимание"
223
 
@@ -225,8 +226,8 @@ msgstr "Внимание"
225
  msgid "The plugin's settings have been changed."
226
  msgstr "Настройки плагина были изменены"
227
 
228
- #: bws_functions.php:496 deprecated.php:640 class-bws-settings.php:175
229
- #: class-bws-settings.php:189
230
  msgid "Save Changes"
231
  msgstr "Сохранить изменения"
232
 
@@ -238,83 +239,75 @@ msgstr ""
238
  "Вы всегда можете просмотреть премиум опции нажав на кнопку \"Pro опции\" на "
239
  "вкладке \"Разное\"."
240
 
241
- #: bws_functions.php:649
242
  msgid "Add shortcode"
243
  msgstr "Добавить шорткод"
244
 
245
- #: bws_functions.php:649
246
  msgid "Add BestWebSoft plugins' shortcodes using this button."
247
  msgstr "Добавьте шорткоды BestWebSoft плагинов с помощью этой кнопки."
248
 
249
- #: bws_functions.php:698
250
  msgid "Close"
251
  msgstr "Закрыть"
252
 
253
- #: bws_functions.php:790
254
  msgid "Are you sure you want to restore default settings?"
255
  msgstr ""
256
  "Вы уверены что хотите восстановить все настройки плагина к настройкам по "
257
  "умолчанию?"
258
 
259
- #: bws_functions.php:793
260
  msgid "Yes, restore all settings"
261
  msgstr "Да, восстановить все настройки"
262
 
263
- #: bws_functions.php:794
264
  msgid "No, go back to the settings page"
265
  msgstr "Нет, вернуться на страницу настроек"
266
 
267
- #: bws_functions.php:840
268
  msgid "Plugin"
269
  msgstr "Плагин"
270
 
271
- #: bws_functions.php:849
272
  msgid "Shortcode settings"
273
  msgstr "Настройки шорткода"
274
 
275
- #: bws_functions.php:854
276
  msgid "The shortcode will be inserted"
277
  msgstr "Будет вставлен шорткод"
278
 
279
- #: bws_functions.php:859
280
  msgid "Insert"
281
  msgstr "Вставить"
282
 
283
- #: bws_functions.php:919
284
  msgid "FAQ"
285
  msgstr "FAQ"
286
 
287
- #: bws_functions.php:925
288
  msgid "For more information:"
289
  msgstr "Для дополнительной информации:"
290
 
291
- #: bws_functions.php:926
292
  msgid "Documentation"
293
  msgstr "Документация"
294
 
295
- #: bws_functions.php:927
296
  msgid "Video Instructions"
297
  msgstr "Видео инструкции"
298
 
299
- #: bws_functions.php:928
300
  msgid "Submit a Request"
301
  msgstr "Отправить запрос"
302
 
303
- #: deprecated.php:91 bws_menu.php:307 bws_menu.php:311 bws_menu.php:360
304
- msgid "Plugins"
305
- msgstr "Плагины"
306
-
307
- #: deprecated.php:92 bws_menu.php:308 bws_menu.php:312 bws_menu.php:611
308
- msgid "Themes"
309
- msgstr "Темы"
310
-
311
- #: deprecated.php:93
312
- msgid "System Status"
313
- msgstr "Системная информация"
314
 
315
- #: deprecated.php:133 deprecated.php:199 deprecated.php:352 bws_menu.php:120
316
- #: class-bws-settings.php:807 class-bws-settings.php:873
317
- #: class-bws-settings.php:909
318
  msgid ""
319
  "Something went wrong. Please try again later. If the error appears again, "
320
  "please contact us"
@@ -322,145 +315,33 @@ msgstr ""
322
  "Что-то пошло не так. Повторите попытку позже. Если ошибка появится снова, "
323
  "пожалуйста, свяжитесь с нами"
324
 
325
- #: deprecated.php:133 deprecated.php:199 deprecated.php:352 bws_menu.php:120
326
- #: class-bws-settings.php:807 class-bws-settings.php:873
327
- #: class-bws-settings.php:909
328
  msgid "We are sorry for inconvenience."
329
  msgstr "Приносим извинения за неудобства."
330
 
331
- #: deprecated.php:139 deprecated.php:358 bws_menu.php:126
332
- #: class-bws-settings.php:813 class-bws-settings.php:915
333
  msgid "Wrong license key."
334
  msgstr "Неправильный лицензионный ключ."
335
 
336
- #: deprecated.php:141 deprecated.php:360 class-bws-settings.php:815
337
- #: class-bws-settings.php:917
338
- msgid "This license key is bound to another site."
339
- msgstr "Этот лицензионный ключ привязан к другому сайту."
340
-
341
- #: deprecated.php:143 class-bws-settings.php:817
342
- msgid ""
343
- "This license key is valid, but Your license has expired. If you want to "
344
- "update our plugin in future, you should extend the license."
345
- msgstr ""
346
- "Лицензионный ключ принят, но срок действия лицензии истек. Если вы хотите "
347
- "обновлять плагин в будущем, вы должны продлить лицензию."
348
-
349
- #: deprecated.php:145 class-bws-settings.php:819
350
- msgid "Unfortunately, you have exceeded the number of available tries."
351
- msgstr "К сожалению, вы превысили количество доступных попыток."
352
-
353
- #: deprecated.php:147 class-bws-settings.php:821
354
- msgid ""
355
- "Unfortunately, the Pro Trial licence was already installed to this domain. "
356
- "The Pro Trial license can be installed only once."
357
- msgstr ""
358
- "К сожалению, Pro Trial версия плагина уже устанавливалась на этот домен. Pro "
359
- "Trial версию можно устанавливать лишь один раз."
360
-
361
- #: deprecated.php:151 class-bws-settings.php:825
362
- msgid "The Pro Trial license key is valid."
363
- msgstr "Ключ Pro Trial версии действителен."
364
-
365
- #: deprecated.php:153 bws_menu.php:140 class-bws-settings.php:827
366
- msgid "The license key is valid."
367
- msgstr "Лицензионный ключ действителен."
368
-
369
- #: deprecated.php:156 bws_menu.php:142 class-bws-settings.php:830
370
- msgid "Your license will expire on"
371
- msgstr "Ваша лицензия истечет"
372
-
373
- #: deprecated.php:159 deprecated.php:246 class-bws-settings.php:833
374
- #, php-format
375
- msgid ""
376
- "In order to continue using the plugin it is necessary to buy a %s license."
377
- msgstr ""
378
- "Чтобы продолжить пользоваться плагином, необходимо приобрести %s лицензию."
379
-
380
- #: deprecated.php:204
381
- msgid "Please, enter your license key"
382
- msgstr "Пожалуйста, введите Ваш лицензионный ключ"
383
-
384
- #: deprecated.php:223
385
- msgid ""
386
- "If necessary, you can check if the license key is correct or reenter it in "
387
- "the field below. You can find your license key on your personal page - "
388
- "Client Area - on our website"
389
- msgstr ""
390
- "При необходимости вы можете проверить валидность лицензионного ключа или "
391
- "повторно ввести его в поле ниже. Вы можете найти ваш лицензионный ключ на "
392
- "своей личной странице - Client Area - на нашем сайте"
393
-
394
- #: deprecated.php:223
395
  msgid ""
396
- "(your username is the email address specified during the purchase). If "
397
- "necessary, please submit \"Lost your password?\" request."
398
  msgstr ""
399
- "(ваше имя пользователя - это емейл, указанный при покупке). При "
400
- "необходимости нажмите \"Забыли пароль?\"."
401
-
402
- #: deprecated.php:227 bws_menu.php:336 bws_menu.php:347
403
- #: class-bws-settings.php:749
404
- msgid "Check license key"
405
- msgstr "Проверка лицензионного ключа"
406
-
407
- #: deprecated.php:247
408
- msgid "After that, you can activate it by entering your license key."
409
- msgstr "После этого вы сможете активировать его введя лицензионный ключ."
410
-
411
- #: deprecated.php:249 deprecated.php:688
412
- msgid "License key can be found in the"
413
- msgstr "Лицензионный ключ можно найти в"
414
-
415
- #: deprecated.php:251 deprecated.php:690
416
- msgid "(your username is the email address specified during the purchase)."
417
- msgstr "(ваше имя пользователя - это емейл, указанный при покупке)."
418
 
419
- #: deprecated.php:259 deprecated.php:267 deprecated.php:629 deprecated.php:700
420
- #: deprecated.php:709 bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
421
- #: class-bws-settings.php:728
422
- msgid "Activate"
423
- msgstr "Активировать"
424
 
425
- #: deprecated.php:261 bws_menu.php:130 bws_menu.php:334
426
  msgid "Unfortunately, you have exceeded the number of available tries per day."
427
  msgstr "К сожалению, вы превысили количество доступных попыток."
428
 
429
- #: deprecated.php:278
430
- msgid ""
431
- "Congratulations! The Pro license of the plugin is activated successfully."
432
- msgstr "Поздравляем! Pro версия плагина успешно активирована."
433
-
434
- #: deprecated.php:280 deprecated.php:669
435
- msgid "Please, go to"
436
- msgstr "Пожалуйста, перейдите на"
437
-
438
- #: deprecated.php:280 deprecated.php:669
439
- msgid "the setting page"
440
- msgstr "страницу настроек"
441
-
442
- #: deprecated.php:281 deprecated.php:670
443
- msgid "You will be redirected automatically in 5 seconds."
444
- msgstr "Вы будете перенаправлены автоматически через 5 секунд."
445
-
446
- #: deprecated.php:315
447
- msgid "Check premium options on the plugin settings page!"
448
- msgstr "Просмотрите премиум опции на странице настроек плагина!"
449
-
450
- #: deprecated.php:322 bws_menu.php:99 class-bws-settings.php:781
451
- msgid "Wrong license key"
452
- msgstr "Неправильный лицензионный ключ"
453
-
454
- #: deprecated.php:362 deprecated.php:703 class-bws-settings.php:733
455
- #: class-bws-settings.php:919
456
- msgid ""
457
- "Unfortunately, you have exceeded the number of available tries per day. "
458
- "Please, upload the plugin manually."
459
- msgstr ""
460
- "К сожалению, вы превысили количество доступных попыток в день. Пожалуйста, "
461
- "загрузите плагин вручную."
462
-
463
- #: deprecated.php:364 bws_menu.php:132 class-bws-settings.php:921
464
  #, php-format
465
  msgid ""
466
  "Unfortunately, Your license has expired. To continue getting top-priority "
@@ -470,7 +351,7 @@ msgstr ""
470
  "обновлений и приоритетной тех.поддержки, вам необходимо продлить лицензию в "
471
  "вашей %s"
472
 
473
- #: deprecated.php:366 bws_menu.php:134 class-bws-settings.php:923
474
  msgid ""
475
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
476
  "Trial license can be installed only once."
@@ -478,31 +359,19 @@ msgstr ""
478
  "К сожалению, Pro лицензия уже была установлена на этом доменен. Pro Trial "
479
  "лицензия может быть установлена только один раз."
480
 
481
- #: deprecated.php:387 deprecated.php:409 deprecated.php:431 bws_menu.php:400
482
- #: bws_menu.php:431 bws_menu.php:442 class-bws-settings.php:947
483
- #: class-bws-settings.php:969 class-bws-settings.php:991
484
- msgid "Failed to download the zip archive. Please, upload the plugin manually"
485
- msgstr ""
486
- "Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
487
-
488
- #: deprecated.php:399 bws_menu.php:417 class-bws-settings.php:959
489
- msgid "Failed to open the zip archive. Please, upload the plugin manually"
490
- msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
491
 
492
- #: deprecated.php:405 bws_menu.php:424 class-bws-settings.php:965
493
- msgid ""
494
- "Your server does not support either ZipArchive or Phar. Please, upload the "
495
- "plugin manually"
496
- msgstr ""
497
- "Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. "
498
- "Пожалуйста, загрузите плагин вручную"
499
 
500
- #: deprecated.php:412 bws_menu.php:434 class-bws-settings.php:972
501
- msgid "UploadDir is not writable. Please, upload the plugin manually"
502
- msgstr ""
503
- "Папка загрузки не доступна для записи. Пожалуйста, загрузите плагин вручную"
504
 
505
- #: deprecated.php:435 bws_menu.php:151 class-bws-settings.php:995
506
  msgid ""
507
  "Something went wrong. Try again later or upload the plugin manually. We are "
508
  "sorry for inconvenience."
@@ -510,195 +379,88 @@ msgstr ""
510
  "Что-то пошло не так. Повторите попытку позже или загрузите плагин вручную. "
511
  "Приносим извинения за неудобства."
512
 
513
- #: deprecated.php:463 class-bws-settings.php:1030
514
- msgid "Please, enter Your license key"
515
- msgstr "Пожалуйста, введите ваш лицензионный ключ"
516
-
517
- #: deprecated.php:478
518
- msgid "Restore all plugin settings to defaults"
519
- msgstr "Восстановить все настройки плагина к настройкам по умолчанию"
520
-
521
- #: deprecated.php:480
522
- msgid "Restore settings"
523
- msgstr "Восстановить настройки"
524
-
525
- #: deprecated.php:497 class-bws-settings.php:421
526
- msgid "You do not have sufficient permissions to edit plugins for this site."
527
- msgstr ""
528
- "У вас недостаточно полномочий, чтобы редактировать плагины на этом сайте."
529
-
530
- #: deprecated.php:548 deprecated.php:575
531
- #, php-format
532
- msgid "File %s edited successfully."
533
- msgstr "Файл %s успешно изменён."
534
-
535
- #: deprecated.php:550 deprecated.php:577
536
- msgid "Not enough permissions to create or update the file"
537
- msgstr "Не достаточно прав для создания или обновления файла"
538
-
539
- #: deprecated.php:580
540
- msgid "Not enough permissions to create the file"
541
- msgstr "Не достаточно прав для создания файла"
542
-
543
- #: deprecated.php:618 class-bws-settings.php:426
544
- msgid "These styles will be added to the header on all pages of your site."
545
- msgstr "Эти стили будут добавлены в хедер на всех страницах вашего сайта."
546
-
547
- #: deprecated.php:620 class-bws-settings.php:429
548
- #, php-format
549
- msgid ""
550
- "This PHP code will be hooked to the %s action and will be printed on front "
551
- "end only."
552
- msgstr ""
553
- "Этот PHP код будет прикреплен к %s аction и будет добавлен только во "
554
- "фронтенде."
555
-
556
- #: deprecated.php:624
557
- msgid "Editing"
558
- msgstr "Редактирование"
559
-
560
- #: deprecated.php:626 class-bws-settings.php:450
561
- msgid "Browsing"
562
- msgstr "Просмотр"
563
-
564
- #: deprecated.php:633 class-bws-settings.php:461
565
- #, php-format
566
- msgid "Learn more about %s"
567
- msgstr "Подробнее о %s"
568
-
569
- #: deprecated.php:644 class-bws-settings.php:440
570
- #, php-format
571
- msgid ""
572
- "You need to make this files writable before you can save your changes. See "
573
- "%s the Codex %s for more information."
574
- msgstr ""
575
- "Чтобы сохранить изменения, нужно сделать этот файл доступным для записи. "
576
- "Дополнительную информацию можно получить в %s Кодексе %s."
577
-
578
- #: deprecated.php:667
579
- msgid ""
580
- "Congratulations! Pro version of the plugin is installed and activated "
581
- "successfully."
582
- msgstr "Поздравляем! Pro версия плагина успешно загружена и активирована."
583
-
584
- #: deprecated.php:677
585
- msgid "Show Pro features"
586
- msgstr "Показать Pro опции"
587
-
588
- #: deprecated.php:684
589
- msgid "Enter your license key to install and activate"
590
- msgstr "Введите лицензионный ключ для установки и активации"
591
-
592
- #: deprecated.php:686
593
- msgid "version of the plugin."
594
- msgstr "версия плагина."
595
-
596
- #: deprecated.php:694 class-bws-settings.php:736
597
- #, php-format
598
- msgid "Start Your Free %s-Day Trial Now"
599
- msgstr "Попробуйте %s-дневную Trial версию бесплатно"
600
-
601
- #: bws_menu.php:128
602
- msgid ""
603
- "This license key is bound to another site. Change it via personal Client "
604
- "Area."
605
- msgstr ""
606
- "Этот лицензионный ключ привязан к другому сайту. Измените это в Client Area."
607
-
608
- #: bws_menu.php:128
609
- msgid "Log in"
610
- msgstr "Авторизоваться"
611
-
612
- #: bws_menu.php:144
613
- msgid "Congratulations! Pro Membership license is activated successfully."
614
- msgstr "Поздравляем! Pro Membership лицензия успешно активирована."
615
-
616
- #: bws_menu.php:161
617
  msgid "Please enter your license key."
618
  msgstr "Пожалуйста, введите Ваш лицензионный ключ."
619
 
620
- #: bws_menu.php:172
621
  msgid "Not set"
622
  msgstr "Не задан"
623
 
624
- #: bws_menu.php:174 bws_menu.php:175
625
  msgid "On"
626
  msgstr "Вкл"
627
 
628
- #: bws_menu.php:174 bws_menu.php:175
629
  msgid "Off"
630
  msgstr "Выкл"
631
 
632
- #: bws_menu.php:176 bws_menu.php:177 bws_menu.php:178 bws_menu.php:179
633
- #: bws_menu.php:180 bws_menu.php:181 bws_menu.php:190
634
  msgid "N/A"
635
  msgstr "Неизвестно"
636
 
637
- #: bws_menu.php:181
638
  msgid " Mb"
639
  msgstr "Mb"
640
 
641
- #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:184 bws_menu.php:188
642
  msgid "Yes"
643
  msgstr "Да"
644
 
645
- #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:184 bws_menu.php:188
646
  msgid "No"
647
  msgstr "Нет"
648
 
649
- #: bws_menu.php:195
650
  msgid "WordPress Environment"
651
  msgstr "WordPress Системная среда"
652
 
653
- #: bws_menu.php:197
654
  msgid "Home URL"
655
  msgstr "Основной адрес сайта"
656
 
657
- #: bws_menu.php:198
658
  msgid "Website URL"
659
  msgstr "Адрес сайта"
660
 
661
- #: bws_menu.php:199
662
  msgid "WP Version"
663
  msgstr "Версия WordPress"
664
 
665
- #: bws_menu.php:200
666
  msgid "WP Multisite"
667
  msgstr "Мультисайт"
668
 
669
- #: bws_menu.php:201
670
  msgid "WP Memory Limit"
671
  msgstr "Лимит памяти WordPress"
672
 
673
- #: bws_menu.php:202
674
  msgid "Active Theme"
675
  msgstr "Текущая тема"
676
 
677
- #: bws_menu.php:202 bws_menu.php:248 bws_menu.php:251
678
  #, php-format
679
  msgid "by %s"
680
  msgstr "%s"
681
 
682
- #: bws_menu.php:206
683
  msgid "Server Environment"
684
  msgstr "Системная среда сервера"
685
 
686
- #: bws_menu.php:208
687
  msgid "Operating System"
688
  msgstr "Операционная система"
689
 
690
- #: bws_menu.php:209
691
  msgid "Server"
692
  msgstr "Тип сервера"
693
 
694
- #: bws_menu.php:210
695
  msgid "PHP Version"
696
  msgstr "Версия PHP"
697
 
698
- #: bws_menu.php:211
699
- msgid "PHP Safe Mode"
700
- msgstr "PHP Safe Mode"
701
-
702
  #: bws_menu.php:212
703
  msgid "PHP Allow URL fopen"
704
  msgstr "PHP Allow URL fopen"
@@ -775,8 +537,16 @@ msgstr "Спасибо что связались с нами."
775
  msgid "Sorry, email message could not be delivered."
776
  msgstr "Извините, ваш емейл не может быть отправлен."
777
 
778
- #: bws_menu.php:309 bws_menu.php:313 bws_menu.php:662
779
- msgid "System status"
 
 
 
 
 
 
 
 
780
  msgstr "Системная информация"
781
 
782
  #: bws_menu.php:317
@@ -796,10 +566,21 @@ msgstr "Получить Доступ к %s+ Премиум Плагинам"
796
  msgid "Subscribe to Pro Membership"
797
  msgstr "Подписаться на Pro Membership"
798
 
 
 
 
 
 
799
  #: bws_menu.php:339
800
  msgid "Enter your license key"
801
  msgstr "Ваш лицензионный ключ"
802
 
 
 
 
 
 
 
803
  #: bws_menu.php:361
804
  msgid "Upload Plugin"
805
  msgstr "Добавить новый"
@@ -837,6 +618,14 @@ msgstr "Установка плагина"
837
  msgid "Downloading install package from"
838
  msgstr "Скачивание установочного пакета из"
839
 
 
 
 
 
 
 
 
 
840
  #: bws_menu.php:408
841
  msgid "Unpacking the package"
842
  msgstr "Распаковка пакета"
@@ -845,11 +634,28 @@ msgstr "Распаковка пакета"
845
  msgid "Installing the plugin"
846
  msgstr "Установка плагина"
847
 
 
 
 
 
 
 
 
 
 
 
 
 
848
  #: bws_menu.php:427
849
  #, php-format
850
  msgid "The plugin %s is successfully installed."
851
  msgstr "Плагин %s успешно установлен."
852
 
 
 
 
 
 
853
  #: bws_menu.php:439
854
  msgid "Activate Plugin"
855
  msgstr "Активировать плагин"
@@ -895,7 +701,7 @@ msgstr "Обновить до версии %s"
895
  msgid "Install Now"
896
  msgstr "Установить"
897
 
898
- #: bws_menu.php:549 class-bws-settings.php:149 class-bws-settings.php:1073
899
  msgid "Upgrade to Pro"
900
  msgstr "Обновиться на Pro"
901
 
@@ -932,106 +738,106 @@ msgstr "Отправить в тех. поддержку"
932
  msgid "Send to custom email &#187;"
933
  msgstr "Отправить на емейл &#187;"
934
 
935
- #: product_list.php:7
936
- msgid "Advertisement"
937
- msgstr "Реклама"
938
-
939
- #: product_list.php:8
940
- msgid "Content & Media"
941
- msgstr "Содержание & Медиа"
942
-
943
- #: product_list.php:9
944
- msgid "Management"
945
- msgstr "Управление"
946
-
947
- #: product_list.php:10
948
- msgid "Recommended"
949
- msgstr "Рекомендованные"
950
-
951
- #: product_list.php:11
952
- msgid "Security"
953
- msgstr "Безопасность"
954
-
955
- #: product_list.php:12
956
- msgid "Site Stats"
957
- msgstr "Статистика сайта"
958
-
959
- #: product_list.php:13
960
- msgid "Social"
961
- msgstr "Социальное"
962
-
963
- #: product_list.php:14
964
- msgid "Utilities"
965
- msgstr "Утилиты"
966
-
967
- #: product_list.php:15
968
- msgid "Other"
969
- msgstr "Другое"
970
-
971
- #: class-bws-settings.php:129
972
  msgid "Information"
973
  msgstr "Информация"
974
 
975
- #: class-bws-settings.php:136
976
  msgid "Inactive"
977
  msgstr "Неактивна"
978
 
979
- #: class-bws-settings.php:144
980
  msgid "Expired"
981
  msgstr "Истекла"
982
 
983
- #: class-bws-settings.php:147
984
  #, php-format
985
  msgid "%s day(-s) left"
986
  msgstr "%s дней осталось"
987
 
988
- #: class-bws-settings.php:153
989
  #, php-format
990
  msgid "Expired on %s"
991
  msgstr "Истекает %s"
992
 
993
- #: class-bws-settings.php:153
994
  msgid "Renew Now"
995
  msgstr "Возобновить сейчас"
996
 
997
- #: class-bws-settings.php:155
998
  msgid "Active"
999
  msgstr "Активна"
1000
 
1001
- #: class-bws-settings.php:160
1002
  msgid "License"
1003
  msgstr "Лицензия"
1004
 
1005
- #: class-bws-settings.php:163
1006
  msgid "Status"
1007
  msgstr "Статус"
1008
 
1009
- #: class-bws-settings.php:167
1010
  msgid "Version"
1011
  msgstr "Версия"
1012
 
1013
- #: class-bws-settings.php:276
1014
  msgid "All plugin settings were restored."
1015
  msgstr "Все настройки плагина были восстановлены."
1016
 
1017
- #: class-bws-settings.php:417
1018
  msgid "Custom Code"
1019
  msgstr "Пользовательский код"
1020
 
1021
- #: class-bws-settings.php:432
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1022
  msgid "These code will be added to the header on all pages of your site."
1023
  msgstr "Этот код будет добавлен в хедер на всех страницах вашего сайта."
1024
 
1025
- #: class-bws-settings.php:454
 
 
 
 
 
 
 
 
 
 
 
 
 
1026
  #, php-format
1027
  msgid "Activate custom %s code."
1028
  msgstr "Активировать пользовательский %s код."
1029
 
1030
- #: class-bws-settings.php:520
 
 
 
 
 
1031
  msgid "Miscellaneous Settings"
1032
  msgstr "Прочие настройки"
1033
 
1034
- #: class-bws-settings.php:527 class-bws-settings.php:585
1035
  #, php-format
1036
  msgid ""
1037
  "It is prohibited to change %s settings on this site in the %s network "
@@ -1039,49 +845,49 @@ msgid ""
1039
  msgstr ""
1040
  "Cетевыми настройками %s запрещается изменять настройки %s на этом сайте."
1041
 
1042
- #: class-bws-settings.php:530 class-bws-settings.php:588
1043
  #, php-format
1044
  msgid ""
1045
  "It is prohibited to view %s settings on this site in the %s network settings."
1046
  msgstr ""
1047
  "Cетевыми настройками %s запрещается просматривать настройки %s на этом сайте."
1048
 
1049
- #: class-bws-settings.php:536
1050
  msgid "Pro Options"
1051
  msgstr "Pro опции"
1052
 
1053
- #: class-bws-settings.php:539
1054
  msgid "Enable to display plugin Pro options."
1055
  msgstr "Включите для отображения Pro опций плагина."
1056
 
1057
- #: class-bws-settings.php:544
1058
  msgid "Track Usage"
1059
  msgstr "Собирать статистику"
1060
 
1061
- #: class-bws-settings.php:547
1062
  msgid ""
1063
  "Enable to allow tracking plugin usage anonymously in order to make it better."
1064
  msgstr ""
1065
  "Включить, чтобы разрешить анонимно отслеживать использование и сделать "
1066
  "плагин лучше."
1067
 
1068
- #: class-bws-settings.php:551
1069
  msgid "Default Settings"
1070
  msgstr "Настройки по умолчанию"
1071
 
1072
- #: class-bws-settings.php:553
1073
  msgid "Restore Settings"
1074
  msgstr "Восстановить настройки"
1075
 
1076
- #: class-bws-settings.php:554
1077
  msgid "This will restore plugin settings to defaults."
1078
  msgstr "Восстановить все настройки плагина к настройкам по умолчанию."
1079
 
1080
- #: class-bws-settings.php:578
1081
  msgid "Import / Export"
1082
  msgstr "Импорт / Экспорт"
1083
 
1084
- #: class-bws-settings.php:701 class-bws-settings.php:724
1085
  #: class-bws-settings.php:746
1086
  msgid "License Key"
1087
  msgstr "Лицензионный ключ"
@@ -1092,8 +898,8 @@ msgstr "Поздравляем! Pro лицензия успешно активи
1092
 
1093
  #: class-bws-settings.php:715
1094
  #, php-format
1095
- msgid "You will be automatically redirected to the %s in 7 seconds."
1096
- msgstr "Вы будете автоматически перенаправлены на %s через 7 секунд."
1097
 
1098
  #: class-bws-settings.php:715
1099
  msgid "Settings page"
@@ -1106,6 +912,20 @@ msgstr ""
1106
  "Введите лицензионный ключ для активации %s и получения дополнительных "
1107
  "возможностей плагина."
1108
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1109
  #: class-bws-settings.php:751
1110
  msgid ""
1111
  "If necessary, you can check if the license key is correct or reenter it in "
@@ -1130,22 +950,212 @@ msgstr ""
1130
  "Управляй активными лицензиями, загружай BWS продукты, а также просматривай "
1131
  "историю платежей с помощью BestWebSoft Client Area."
1132
 
1133
- #: class-bws-settings.php:1044
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1134
  msgid "Need Help?"
1135
  msgstr "Нужна помощь?"
1136
 
1137
- #: class-bws-settings.php:1044
1138
  msgid "Read the Instruction"
1139
  msgstr "Читать инструкцию"
1140
 
1141
- #: class-bws-settings.php:1046
1142
  msgid "Watch the Video"
1143
  msgstr "Смотреть видео"
1144
 
1145
- #: class-bws-settings.php:1077
1146
  msgid "Start Your Free Trial"
1147
  msgstr "Использовать бесплатную Trial версию"
1148
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1149
  #~ msgid "You license for"
1150
  #~ msgstr "Ваш лицензионный ключ для"
1151
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-03-28 13:51+0300\n"
6
+ "PO-Revision-Date: 2017-03-28 13:53+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
13
  "X-Poedit-KeywordsList: __;_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:72 bws_functions.php:190
48
  msgid "Need help?"
49
  msgstr "Нужна помощь?"
50
 
51
+ #: bws_functions.php:103 bws_functions.php:916 class-bws-settings.php:1047
52
  msgid "Visit Help Center"
53
  msgstr "Перейти в Help Center"
54
 
77
  "проблему в течение 24 часов, в противном случае плагин будет деактивирован."
78
 
79
  #: bws_functions.php:127 bws_functions.php:339 bws_menu.php:627
80
+ #: class-bws-settings.php:143
81
  msgid "Learn More"
82
  msgstr "Подробнее"
83
 
124
  "Пожалуйста, обновите WordPress до последней версии."
125
 
126
  #: bws_functions.php:207
127
+ #, php-format
128
+ msgid "Thank you for installing %s plugin!"
129
+ msgstr "Спасибо, что установили %s плагин!"
130
 
131
  #: bws_functions.php:208
132
  msgid "Let's get started"
137
  msgid "Settings"
138
  msgstr "Настройки"
139
 
140
+ #: bws_functions.php:211 bws_menu.php:328 class-bws-settings.php:736
141
+ #: class-bws-settings.php:1049 class-bws-settings.php:1059 deprecated.php:694
 
142
  msgid "or"
143
  msgstr "или"
144
 
200
  "приоритетную тех.поддержку или обновления."
201
 
202
  #: bws_functions.php:477
203
+ #, php-format
204
+ msgid "Thank you for choosing %s plugin!"
205
+ msgstr "Спасибо за выбор плагина %s!"
206
 
207
  #: bws_functions.php:478
208
  msgid ""
217
  msgid "Suggest a Feature"
218
  msgstr "Предложить функционал"
219
 
220
+ #: bws_functions.php:495 class-bws-settings.php:533 class-bws-settings.php:536
221
+ #: class-bws-settings.php:584 class-bws-settings.php:587
222
  msgid "Notice"
223
  msgstr "Внимание"
224
 
226
  msgid "The plugin's settings have been changed."
227
  msgstr "Настройки плагина были изменены"
228
 
229
+ #: bws_functions.php:496 class-bws-settings.php:182 class-bws-settings.php:202
230
+ #: deprecated.php:640
231
  msgid "Save Changes"
232
  msgstr "Сохранить изменения"
233
 
239
  "Вы всегда можете просмотреть премиум опции нажав на кнопку \"Pro опции\" на "
240
  "вкладке \"Разное\"."
241
 
242
+ #: bws_functions.php:651
243
  msgid "Add shortcode"
244
  msgstr "Добавить шорткод"
245
 
246
+ #: bws_functions.php:651
247
  msgid "Add BestWebSoft plugins' shortcodes using this button."
248
  msgstr "Добавьте шорткоды BestWebSoft плагинов с помощью этой кнопки."
249
 
250
+ #: bws_functions.php:700
251
  msgid "Close"
252
  msgstr "Закрыть"
253
 
254
+ #: bws_functions.php:792
255
  msgid "Are you sure you want to restore default settings?"
256
  msgstr ""
257
  "Вы уверены что хотите восстановить все настройки плагина к настройкам по "
258
  "умолчанию?"
259
 
260
+ #: bws_functions.php:795
261
  msgid "Yes, restore all settings"
262
  msgstr "Да, восстановить все настройки"
263
 
264
+ #: bws_functions.php:796
265
  msgid "No, go back to the settings page"
266
  msgstr "Нет, вернуться на страницу настроек"
267
 
268
+ #: bws_functions.php:842
269
  msgid "Plugin"
270
  msgstr "Плагин"
271
 
272
+ #: bws_functions.php:851
273
  msgid "Shortcode settings"
274
  msgstr "Настройки шорткода"
275
 
276
+ #: bws_functions.php:856
277
  msgid "The shortcode will be inserted"
278
  msgstr "Будет вставлен шорткод"
279
 
280
+ #: bws_functions.php:861
281
  msgid "Insert"
282
  msgstr "Вставить"
283
 
284
+ #: bws_functions.php:921
285
  msgid "FAQ"
286
  msgstr "FAQ"
287
 
288
+ #: bws_functions.php:927
289
  msgid "For more information:"
290
  msgstr "Для дополнительной информации:"
291
 
292
+ #: bws_functions.php:928
293
  msgid "Documentation"
294
  msgstr "Документация"
295
 
296
+ #: bws_functions.php:929
297
  msgid "Video Instructions"
298
  msgstr "Видео инструкции"
299
 
300
+ #: bws_functions.php:930
301
  msgid "Submit a Request"
302
  msgstr "Отправить запрос"
303
 
304
+ #: bws_menu.php:101 class-bws-settings.php:781 deprecated.php:322
305
+ msgid "Wrong license key"
306
+ msgstr "Неправильный лицензионный ключ"
 
 
 
 
 
 
 
 
307
 
308
+ #: bws_menu.php:122 class-bws-settings.php:807 class-bws-settings.php:874
309
+ #: class-bws-settings.php:910 deprecated.php:133 deprecated.php:199
310
+ #: deprecated.php:352
311
  msgid ""
312
  "Something went wrong. Please try again later. If the error appears again, "
313
  "please contact us"
315
  "Что-то пошло не так. Повторите попытку позже. Если ошибка появится снова, "
316
  "пожалуйста, свяжитесь с нами"
317
 
318
+ #: bws_menu.php:122 class-bws-settings.php:807 class-bws-settings.php:874
319
+ #: class-bws-settings.php:910 deprecated.php:133 deprecated.php:199
320
+ #: deprecated.php:352
321
  msgid "We are sorry for inconvenience."
322
  msgstr "Приносим извинения за неудобства."
323
 
324
+ #: bws_menu.php:128 class-bws-settings.php:813 class-bws-settings.php:916
325
+ #: deprecated.php:139 deprecated.php:358
326
  msgid "Wrong license key."
327
  msgstr "Неправильный лицензионный ключ."
328
 
329
+ #: bws_menu.php:130
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
330
  msgid ""
331
+ "This license key is bound to another site. Change it via personal Client "
332
+ "Area."
333
  msgstr ""
334
+ "Этот лицензионный ключ привязан к другому сайту. Измените это в Client Area."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
335
 
336
+ #: bws_menu.php:130
337
+ msgid "Log in"
338
+ msgstr "Авторизоваться"
 
 
339
 
340
+ #: bws_menu.php:132 bws_menu.php:334 deprecated.php:261
341
  msgid "Unfortunately, you have exceeded the number of available tries per day."
342
  msgstr "К сожалению, вы превысили количество доступных попыток."
343
 
344
+ #: bws_menu.php:134 class-bws-settings.php:922 deprecated.php:364
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
345
  #, php-format
346
  msgid ""
347
  "Unfortunately, Your license has expired. To continue getting top-priority "
351
  "обновлений и приоритетной тех.поддержки, вам необходимо продлить лицензию в "
352
  "вашей %s"
353
 
354
+ #: bws_menu.php:136 class-bws-settings.php:924 deprecated.php:366
355
  msgid ""
356
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
357
  "Trial license can be installed only once."
359
  "К сожалению, Pro лицензия уже была установлена на этом доменен. Pro Trial "
360
  "лицензия может быть установлена только один раз."
361
 
362
+ #: bws_menu.php:142 class-bws-settings.php:828 deprecated.php:153
363
+ msgid "The license key is valid."
364
+ msgstr "Лицензионный ключ действителен."
 
 
 
 
 
 
 
365
 
366
+ #: bws_menu.php:144 class-bws-settings.php:831 deprecated.php:156
367
+ msgid "Your license will expire on"
368
+ msgstr "Ваша лицензия истечет"
 
 
 
 
369
 
370
+ #: bws_menu.php:146
371
+ msgid "Congratulations! Pro Membership license is activated successfully."
372
+ msgstr "Поздравляем! Pro Membership лицензия успешно активирована."
 
373
 
374
+ #: bws_menu.php:153 class-bws-settings.php:996 deprecated.php:435
375
  msgid ""
376
  "Something went wrong. Try again later or upload the plugin manually. We are "
377
  "sorry for inconvenience."
379
  "Что-то пошло не так. Повторите попытку позже или загрузите плагин вручную. "
380
  "Приносим извинения за неудобства."
381
 
382
+ #: bws_menu.php:163
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
383
  msgid "Please enter your license key."
384
  msgstr "Пожалуйста, введите Ваш лицензионный ключ."
385
 
386
+ #: bws_menu.php:174
387
  msgid "Not set"
388
  msgstr "Не задан"
389
 
390
+ #: bws_menu.php:176
391
  msgid "On"
392
  msgstr "Вкл"
393
 
394
+ #: bws_menu.php:176
395
  msgid "Off"
396
  msgstr "Выкл"
397
 
398
+ #: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
399
+ #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
400
  msgid "N/A"
401
  msgstr "Неизвестно"
402
 
403
+ #: bws_menu.php:182
404
  msgid " Mb"
405
  msgstr "Mb"
406
 
407
+ #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
408
  msgid "Yes"
409
  msgstr "Да"
410
 
411
+ #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
412
  msgid "No"
413
  msgstr "Нет"
414
 
415
+ #: bws_menu.php:196
416
  msgid "WordPress Environment"
417
  msgstr "WordPress Системная среда"
418
 
419
+ #: bws_menu.php:198
420
  msgid "Home URL"
421
  msgstr "Основной адрес сайта"
422
 
423
+ #: bws_menu.php:199
424
  msgid "Website URL"
425
  msgstr "Адрес сайта"
426
 
427
+ #: bws_menu.php:200
428
  msgid "WP Version"
429
  msgstr "Версия WordPress"
430
 
431
+ #: bws_menu.php:201
432
  msgid "WP Multisite"
433
  msgstr "Мультисайт"
434
 
435
+ #: bws_menu.php:202
436
  msgid "WP Memory Limit"
437
  msgstr "Лимит памяти WordPress"
438
 
439
+ #: bws_menu.php:203
440
  msgid "Active Theme"
441
  msgstr "Текущая тема"
442
 
443
+ #: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
444
  #, php-format
445
  msgid "by %s"
446
  msgstr "%s"
447
 
448
+ #: bws_menu.php:207
449
  msgid "Server Environment"
450
  msgstr "Системная среда сервера"
451
 
452
+ #: bws_menu.php:209
453
  msgid "Operating System"
454
  msgstr "Операционная система"
455
 
456
+ #: bws_menu.php:210
457
  msgid "Server"
458
  msgstr "Тип сервера"
459
 
460
+ #: bws_menu.php:211
461
  msgid "PHP Version"
462
  msgstr "Версия PHP"
463
 
 
 
 
 
464
  #: bws_menu.php:212
465
  msgid "PHP Allow URL fopen"
466
  msgstr "PHP Allow URL fopen"
537
  msgid "Sorry, email message could not be delivered."
538
  msgstr "Извините, ваш емейл не может быть отправлен."
539
 
540
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:360 deprecated.php:91
541
+ msgid "Plugins"
542
+ msgstr "Плагины"
543
+
544
+ #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:611 deprecated.php:92
545
+ msgid "Themes"
546
+ msgstr "Темы"
547
+
548
+ #: bws_menu.php:309 bws_menu.php:313 bws_menu.php:662
549
+ msgid "System status"
550
  msgstr "Системная информация"
551
 
552
  #: bws_menu.php:317
566
  msgid "Subscribe to Pro Membership"
567
  msgstr "Подписаться на Pro Membership"
568
 
569
+ #: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:749
570
+ #: deprecated.php:227
571
+ msgid "Check license key"
572
+ msgstr "Проверка лицензионного ключа"
573
+
574
  #: bws_menu.php:339
575
  msgid "Enter your license key"
576
  msgstr "Ваш лицензионный ключ"
577
 
578
+ #: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
579
+ #: class-bws-settings.php:728 deprecated.php:259 deprecated.php:267
580
+ #: deprecated.php:629 deprecated.php:700 deprecated.php:709
581
+ msgid "Activate"
582
+ msgstr "Активировать"
583
+
584
  #: bws_menu.php:361
585
  msgid "Upload Plugin"
586
  msgstr "Добавить новый"
618
  msgid "Downloading install package from"
619
  msgstr "Скачивание установочного пакета из"
620
 
621
+ #: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
622
+ #: class-bws-settings.php:948 class-bws-settings.php:970
623
+ #: class-bws-settings.php:992 deprecated.php:387 deprecated.php:409
624
+ #: deprecated.php:431
625
+ msgid "Failed to download the zip archive. Please, upload the plugin manually"
626
+ msgstr ""
627
+ "Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
628
+
629
  #: bws_menu.php:408
630
  msgid "Unpacking the package"
631
  msgstr "Распаковка пакета"
634
  msgid "Installing the plugin"
635
  msgstr "Установка плагина"
636
 
637
+ #: bws_menu.php:417 class-bws-settings.php:960 deprecated.php:399
638
+ msgid "Failed to open the zip archive. Please, upload the plugin manually"
639
+ msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
640
+
641
+ #: bws_menu.php:424 class-bws-settings.php:966 deprecated.php:405
642
+ msgid ""
643
+ "Your server does not support either ZipArchive or Phar. Please, upload the "
644
+ "plugin manually"
645
+ msgstr ""
646
+ "Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. "
647
+ "Пожалуйста, загрузите плагин вручную"
648
+
649
  #: bws_menu.php:427
650
  #, php-format
651
  msgid "The plugin %s is successfully installed."
652
  msgstr "Плагин %s успешно установлен."
653
 
654
+ #: bws_menu.php:434 class-bws-settings.php:973 deprecated.php:412
655
+ msgid "UploadDir is not writable. Please, upload the plugin manually"
656
+ msgstr ""
657
+ "Папка загрузки не доступна для записи. Пожалуйста, загрузите плагин вручную"
658
+
659
  #: bws_menu.php:439
660
  msgid "Activate Plugin"
661
  msgstr "Активировать плагин"
701
  msgid "Install Now"
702
  msgstr "Установить"
703
 
704
+ #: bws_menu.php:549 class-bws-settings.php:156 class-bws-settings.php:1056
705
  msgid "Upgrade to Pro"
706
  msgstr "Обновиться на Pro"
707
 
738
  msgid "Send to custom email &#187;"
739
  msgstr "Отправить на емейл &#187;"
740
 
741
+ #: class-bws-settings.php:135
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
742
  msgid "Information"
743
  msgstr "Информация"
744
 
745
+ #: class-bws-settings.php:143
746
  msgid "Inactive"
747
  msgstr "Неактивна"
748
 
749
+ #: class-bws-settings.php:151
750
  msgid "Expired"
751
  msgstr "Истекла"
752
 
753
+ #: class-bws-settings.php:154
754
  #, php-format
755
  msgid "%s day(-s) left"
756
  msgstr "%s дней осталось"
757
 
758
+ #: class-bws-settings.php:160
759
  #, php-format
760
  msgid "Expired on %s"
761
  msgstr "Истекает %s"
762
 
763
+ #: class-bws-settings.php:160
764
  msgid "Renew Now"
765
  msgstr "Возобновить сейчас"
766
 
767
+ #: class-bws-settings.php:162
768
  msgid "Active"
769
  msgstr "Активна"
770
 
771
+ #: class-bws-settings.php:167
772
  msgid "License"
773
  msgstr "Лицензия"
774
 
775
+ #: class-bws-settings.php:170
776
  msgid "Status"
777
  msgstr "Статус"
778
 
779
+ #: class-bws-settings.php:174
780
  msgid "Version"
781
  msgstr "Версия"
782
 
783
+ #: class-bws-settings.php:282
784
  msgid "All plugin settings were restored."
785
  msgstr "Все настройки плагина были восстановлены."
786
 
787
+ #: class-bws-settings.php:420
788
  msgid "Custom Code"
789
  msgstr "Пользовательский код"
790
 
791
+ #: class-bws-settings.php:424 deprecated.php:497
792
+ msgid "You do not have sufficient permissions to edit plugins for this site."
793
+ msgstr ""
794
+ "У вас недостаточно полномочий, чтобы редактировать плагины на этом сайте."
795
+
796
+ #: class-bws-settings.php:429 deprecated.php:618
797
+ msgid "These styles will be added to the header on all pages of your site."
798
+ msgstr "Эти стили будут добавлены в хедер на всех страницах вашего сайта."
799
+
800
+ #: class-bws-settings.php:432 deprecated.php:620
801
+ #, php-format
802
+ msgid ""
803
+ "This PHP code will be hooked to the %s action and will be printed on front "
804
+ "end only."
805
+ msgstr ""
806
+ "Этот PHP код будет прикреплен к %s аction и будет добавлен только во "
807
+ "фронтенде."
808
+
809
+ #: class-bws-settings.php:435
810
  msgid "These code will be added to the header on all pages of your site."
811
  msgstr "Этот код будет добавлен в хедер на всех страницах вашего сайта."
812
 
813
+ #: class-bws-settings.php:443 deprecated.php:644
814
+ #, php-format
815
+ msgid ""
816
+ "You need to make this files writable before you can save your changes. See "
817
+ "%s the Codex %s for more information."
818
+ msgstr ""
819
+ "Чтобы сохранить изменения, нужно сделать этот файл доступным для записи. "
820
+ "Дополнительную информацию можно получить в %s Кодексе %s."
821
+
822
+ #: class-bws-settings.php:453 deprecated.php:626
823
+ msgid "Browsing"
824
+ msgstr "Просмотр"
825
+
826
+ #: class-bws-settings.php:457
827
  #, php-format
828
  msgid "Activate custom %s code."
829
  msgstr "Активировать пользовательский %s код."
830
 
831
+ #: class-bws-settings.php:464 deprecated.php:633
832
+ #, php-format
833
+ msgid "Learn more about %s"
834
+ msgstr "Подробнее о %s"
835
+
836
+ #: class-bws-settings.php:524
837
  msgid "Miscellaneous Settings"
838
  msgstr "Прочие настройки"
839
 
840
+ #: class-bws-settings.php:533 class-bws-settings.php:584
841
  #, php-format
842
  msgid ""
843
  "It is prohibited to change %s settings on this site in the %s network "
845
  msgstr ""
846
  "Cетевыми настройками %s запрещается изменять настройки %s на этом сайте."
847
 
848
+ #: class-bws-settings.php:536 class-bws-settings.php:587
849
  #, php-format
850
  msgid ""
851
  "It is prohibited to view %s settings on this site in the %s network settings."
852
  msgstr ""
853
  "Cетевыми настройками %s запрещается просматривать настройки %s на этом сайте."
854
 
855
+ #: class-bws-settings.php:545
856
  msgid "Pro Options"
857
  msgstr "Pro опции"
858
 
859
+ #: class-bws-settings.php:548
860
  msgid "Enable to display plugin Pro options."
861
  msgstr "Включите для отображения Pro опций плагина."
862
 
863
+ #: class-bws-settings.php:553
864
  msgid "Track Usage"
865
  msgstr "Собирать статистику"
866
 
867
+ #: class-bws-settings.php:556
868
  msgid ""
869
  "Enable to allow tracking plugin usage anonymously in order to make it better."
870
  msgstr ""
871
  "Включить, чтобы разрешить анонимно отслеживать использование и сделать "
872
  "плагин лучше."
873
 
874
+ #: class-bws-settings.php:560
875
  msgid "Default Settings"
876
  msgstr "Настройки по умолчанию"
877
 
878
+ #: class-bws-settings.php:562
879
  msgid "Restore Settings"
880
  msgstr "Восстановить настройки"
881
 
882
+ #: class-bws-settings.php:563
883
  msgid "This will restore plugin settings to defaults."
884
  msgstr "Восстановить все настройки плагина к настройкам по умолчанию."
885
 
886
+ #: class-bws-settings.php:575
887
  msgid "Import / Export"
888
  msgstr "Импорт / Экспорт"
889
 
890
+ #: class-bws-settings.php:691 class-bws-settings.php:724
891
  #: class-bws-settings.php:746
892
  msgid "License Key"
893
  msgstr "Лицензионный ключ"
898
 
899
  #: class-bws-settings.php:715
900
  #, php-format
901
+ msgid "You will be automatically redirected to the %s in %s seconds."
902
+ msgstr "Вы будете автоматически перенаправлены на %s через %s секунд."
903
 
904
  #: class-bws-settings.php:715
905
  msgid "Settings page"
912
  "Введите лицензионный ключ для активации %s и получения дополнительных "
913
  "возможностей плагина."
914
 
915
+ #: class-bws-settings.php:733 class-bws-settings.php:920 deprecated.php:362
916
+ #: deprecated.php:703
917
+ msgid ""
918
+ "Unfortunately, you have exceeded the number of available tries per day. "
919
+ "Please, upload the plugin manually."
920
+ msgstr ""
921
+ "К сожалению, вы превысили количество доступных попыток в день. Пожалуйста, "
922
+ "загрузите плагин вручную."
923
+
924
+ #: class-bws-settings.php:736 deprecated.php:694
925
+ #, php-format
926
+ msgid "Start Your Free %s-Day Trial Now"
927
+ msgstr "Попробуйте %s-дневную Trial версию бесплатно"
928
+
929
  #: class-bws-settings.php:751
930
  msgid ""
931
  "If necessary, you can check if the license key is correct or reenter it in "
950
  "Управляй активными лицензиями, загружай BWS продукты, а также просматривай "
951
  "историю платежей с помощью BestWebSoft Client Area."
952
 
953
+ #: class-bws-settings.php:815 class-bws-settings.php:918 deprecated.php:141
954
+ #: deprecated.php:360
955
+ msgid "This license key is bound to another site."
956
+ msgstr "Этот лицензионный ключ привязан к другому сайту."
957
+
958
+ #: class-bws-settings.php:817 deprecated.php:143
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."
962
+ msgstr ""
963
+ "Лицензионный ключ принят, но срок действия лицензии истек. Если вы хотите "
964
+ "обновлять плагин в будущем, вы должны продлить лицензию."
965
+
966
+ #: class-bws-settings.php:819 deprecated.php:145
967
+ msgid "Unfortunately, you have exceeded the number of available tries."
968
+ msgstr "К сожалению, вы превысили количество доступных попыток."
969
+
970
+ #: class-bws-settings.php:821 deprecated.php:147
971
+ msgid ""
972
+ "Unfortunately, the Pro Trial licence was already installed to this domain. "
973
+ "The Pro Trial license can be installed only once."
974
+ msgstr ""
975
+ "К сожалению, Pro Trial версия плагина уже устанавливалась на этот домен. Pro "
976
+ "Trial версию можно устанавливать лишь один раз."
977
+
978
+ #: class-bws-settings.php:826 deprecated.php:151
979
+ msgid "The Pro Trial license key is valid."
980
+ msgstr "Ключ Pro Trial версии действителен."
981
+
982
+ #: class-bws-settings.php:834 deprecated.php:159 deprecated.php:246
983
+ #, php-format
984
+ msgid ""
985
+ "In order to continue using the plugin it is necessary to buy a %s license."
986
+ msgstr ""
987
+ "Чтобы продолжить пользоваться плагином, необходимо приобрести %s лицензию."
988
+
989
+ #: class-bws-settings.php:1031 deprecated.php:463
990
+ msgid "Please, enter Your license key"
991
+ msgstr "Пожалуйста, введите ваш лицензионный ключ"
992
+
993
+ #: class-bws-settings.php:1043
994
  msgid "Need Help?"
995
  msgstr "Нужна помощь?"
996
 
997
+ #: class-bws-settings.php:1045
998
  msgid "Read the Instruction"
999
  msgstr "Читать инструкцию"
1000
 
1001
+ #: class-bws-settings.php:1049
1002
  msgid "Watch the Video"
1003
  msgstr "Смотреть видео"
1004
 
1005
+ #: class-bws-settings.php:1060
1006
  msgid "Start Your Free Trial"
1007
  msgstr "Использовать бесплатную Trial версию"
1008
 
1009
+ #: deprecated.php:93
1010
+ msgid "System Status"
1011
+ msgstr "Системная информация"
1012
+
1013
+ #: deprecated.php:204
1014
+ msgid "Please, enter your license key"
1015
+ msgstr "Пожалуйста, введите Ваш лицензионный ключ"
1016
+
1017
+ #: deprecated.php:223
1018
+ msgid ""
1019
+ "If necessary, you can check if the license key is correct or reenter it in "
1020
+ "the field below. You can find your license key on your personal page - "
1021
+ "Client Area - on our website"
1022
+ msgstr ""
1023
+ "При необходимости вы можете проверить валидность лицензионного ключа или "
1024
+ "повторно ввести его в поле ниже. Вы можете найти ваш лицензионный ключ на "
1025
+ "своей личной странице - Client Area - на нашем сайте"
1026
+
1027
+ #: deprecated.php:223
1028
+ msgid ""
1029
+ "(your username is the email address specified during the purchase). If "
1030
+ "necessary, please submit \"Lost your password?\" request."
1031
+ msgstr ""
1032
+ "(ваше имя пользователя - это емейл, указанный при покупке). При "
1033
+ "необходимости нажмите \"Забыли пароль?\"."
1034
+
1035
+ #: deprecated.php:247
1036
+ msgid "After that, you can activate it by entering your license key."
1037
+ msgstr "После этого вы сможете активировать его введя лицензионный ключ."
1038
+
1039
+ #: deprecated.php:249 deprecated.php:688
1040
+ msgid "License key can be found in the"
1041
+ msgstr "Лицензионный ключ можно найти в"
1042
+
1043
+ #: deprecated.php:251 deprecated.php:690
1044
+ msgid "(your username is the email address specified during the purchase)."
1045
+ msgstr "(ваше имя пользователя - это емейл, указанный при покупке)."
1046
+
1047
+ #: deprecated.php:278
1048
+ msgid ""
1049
+ "Congratulations! The Pro license of the plugin is activated successfully."
1050
+ msgstr "Поздравляем! Pro версия плагина успешно активирована."
1051
+
1052
+ #: deprecated.php:280 deprecated.php:669
1053
+ msgid "Please, go to"
1054
+ msgstr "Пожалуйста, перейдите на"
1055
+
1056
+ #: deprecated.php:280 deprecated.php:669
1057
+ msgid "the setting page"
1058
+ msgstr "страницу настроек"
1059
+
1060
+ #: deprecated.php:281 deprecated.php:670
1061
+ msgid "You will be redirected automatically in 5 seconds."
1062
+ msgstr "Вы будете перенаправлены автоматически через 5 секунд."
1063
+
1064
+ #: deprecated.php:315
1065
+ msgid "Check premium options on the plugin settings page!"
1066
+ msgstr "Просмотрите премиум опции на странице настроек плагина!"
1067
+
1068
+ #: deprecated.php:478
1069
+ msgid "Restore all plugin settings to defaults"
1070
+ msgstr "Восстановить все настройки плагина к настройкам по умолчанию"
1071
+
1072
+ #: deprecated.php:480
1073
+ msgid "Restore settings"
1074
+ msgstr "Восстановить настройки"
1075
+
1076
+ #: deprecated.php:548 deprecated.php:575
1077
+ #, php-format
1078
+ msgid "File %s edited successfully."
1079
+ msgstr "Файл %s успешно изменён."
1080
+
1081
+ #: deprecated.php:550 deprecated.php:577
1082
+ msgid "Not enough permissions to create or update the file"
1083
+ msgstr "Не достаточно прав для создания или обновления файла"
1084
+
1085
+ #: deprecated.php:580
1086
+ msgid "Not enough permissions to create the file"
1087
+ msgstr "Не достаточно прав для создания файла"
1088
+
1089
+ #: deprecated.php:624
1090
+ msgid "Editing"
1091
+ msgstr "Редактирование"
1092
+
1093
+ #: deprecated.php:667
1094
+ msgid ""
1095
+ "Congratulations! Pro version of the plugin is installed and activated "
1096
+ "successfully."
1097
+ msgstr "Поздравляем! Pro версия плагина успешно загружена и активирована."
1098
+
1099
+ #: deprecated.php:677
1100
+ msgid "Show Pro features"
1101
+ msgstr "Показать Pro опции"
1102
+
1103
+ #: deprecated.php:684
1104
+ msgid "Enter your license key to install and activate"
1105
+ msgstr "Введите лицензионный ключ для установки и активации"
1106
+
1107
+ #: deprecated.php:686
1108
+ msgid "version of the plugin."
1109
+ msgstr "версия плагина."
1110
+
1111
+ #: product_list.php:7
1112
+ msgid "Advertisement"
1113
+ msgstr "Реклама"
1114
+
1115
+ #: product_list.php:8
1116
+ msgid "Content & Media"
1117
+ msgstr "Содержание & Медиа"
1118
+
1119
+ #: product_list.php:9
1120
+ msgid "Management"
1121
+ msgstr "Управление"
1122
+
1123
+ #: product_list.php:10
1124
+ msgid "Recommended"
1125
+ msgstr "Рекомендованные"
1126
+
1127
+ #: product_list.php:11
1128
+ msgid "Security"
1129
+ msgstr "Безопасность"
1130
+
1131
+ #: product_list.php:12
1132
+ msgid "Site Stats"
1133
+ msgstr "Статистика сайта"
1134
+
1135
+ #: product_list.php:13
1136
+ msgid "Social"
1137
+ msgstr "Социальное"
1138
+
1139
+ #: product_list.php:14
1140
+ msgid "Utilities"
1141
+ msgstr "Утилиты"
1142
+
1143
+ #: product_list.php:15
1144
+ msgid "Other"
1145
+ msgstr "Другое"
1146
+
1147
+ #~ msgid "Thank you for installing"
1148
+ #~ msgstr "Спасибо за установку"
1149
+
1150
+ #~ msgid "Thank you for choosing"
1151
+ #~ msgstr "Спасибо за выбор"
1152
+
1153
+ #~ msgid "You will be automatically redirected to the %s in 7 seconds."
1154
+ #~ msgstr "Вы будете автоматически перенаправлены на %s через 7 секунд."
1155
+
1156
+ #~ msgid "PHP Safe Mode"
1157
+ #~ msgstr "PHP Safe Mode"
1158
+
1159
  #~ msgid "You license for"
1160
  #~ msgstr "Ваш лицензионный ключ для"
1161
 
bws_menu/languages/bestwebsoft-uk.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-uk.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-01-25 17:15+0300\n"
6
- "PO-Revision-Date: 2017-01-25 17:19+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
@@ -13,7 +13,7 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: bws_functions.php:72 bws_functions.php:190
@@ -48,9 +48,9 @@ msgstr "Оцінити"
48
  msgid "Need help?"
49
  msgstr "Потрібна допомога?"
50
 
51
- #: bws_functions.php:103 bws_functions.php:914
52
  msgid "Visit Help Center"
53
- msgstr "Перейти в Help Center"
54
 
55
  #: bws_functions.php:106
56
  msgid "Want to support the plugin?"
@@ -77,7 +77,7 @@ msgstr ""
77
  "протягом 24 годин, інакше плагін буде деактивовано."
78
 
79
  #: bws_functions.php:127 bws_functions.php:339 bws_menu.php:627
80
- #: class-bws-settings.php:136
81
  msgid "Learn More"
82
  msgstr "Дізнатись більше"
83
 
@@ -123,8 +123,9 @@ msgstr ""
123
  "ласка, оновіть WordPress до останньої версії."
124
 
125
  #: bws_functions.php:207
126
- msgid "Thank you for installing"
127
- msgstr "Дякуємо, що встановили"
 
128
 
129
  #: bws_functions.php:208
130
  msgid "Let's get started"
@@ -135,9 +136,8 @@ msgstr "Розпочнемо"
135
  msgid "Settings"
136
  msgstr "Налаштування"
137
 
138
- #: bws_functions.php:211 deprecated.php:694 bws_menu.php:328
139
- #: class-bws-settings.php:736 class-bws-settings.php:1046
140
- #: class-bws-settings.php:1076
141
  msgid "or"
142
  msgstr "або"
143
 
@@ -198,8 +198,9 @@ msgstr ""
198
  "першочергову технічну підтримку та оновлення."
199
 
200
  #: bws_functions.php:477
201
- msgid "Thank you for choosing"
202
- msgstr "Дякуємо, що обрали"
 
203
 
204
  #: bws_functions.php:478
205
  msgid ""
@@ -214,8 +215,8 @@ msgstr ""
214
  msgid "Suggest a Feature"
215
  msgstr "Запропонувати функціонал"
216
 
217
- #: bws_functions.php:495 class-bws-settings.php:527 class-bws-settings.php:530
218
- #: class-bws-settings.php:585 class-bws-settings.php:588
219
  msgid "Notice"
220
  msgstr "Зауважте"
221
 
@@ -223,8 +224,8 @@ msgstr "Зауважте"
223
  msgid "The plugin's settings have been changed."
224
  msgstr "Налаштування плагіну змінено."
225
 
226
- #: bws_functions.php:496 deprecated.php:640 class-bws-settings.php:175
227
- #: class-bws-settings.php:189
228
  msgid "Save Changes"
229
  msgstr "Зберегти зміни"
230
 
@@ -236,81 +237,73 @@ msgstr ""
236
  "Ви завжди можете подивитися на преміум опції, натиснувши на кнопку \"Pro "
237
  "опції\" на вкладці \"Різне\"."
238
 
239
- #: bws_functions.php:649
240
  msgid "Add shortcode"
241
  msgstr "Додати шорткод"
242
 
243
- #: bws_functions.php:649
244
  msgid "Add BestWebSoft plugins' shortcodes using this button."
245
  msgstr "Додайте шорткоди BestWebSoft плагінів за допомогою цієї кнопки."
246
 
247
- #: bws_functions.php:698
248
  msgid "Close"
249
  msgstr "Закрити"
250
 
251
- #: bws_functions.php:790
252
  msgid "Are you sure you want to restore default settings?"
253
  msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
254
 
255
- #: bws_functions.php:793
256
  msgid "Yes, restore all settings"
257
  msgstr "Так, скинути налаштування"
258
 
259
- #: bws_functions.php:794
260
  msgid "No, go back to the settings page"
261
  msgstr "Ні, повернутись назад на сторінку налаштувань"
262
 
263
- #: bws_functions.php:840
264
  msgid "Plugin"
265
  msgstr "Плагін"
266
 
267
- #: bws_functions.php:849
268
  msgid "Shortcode settings"
269
  msgstr "Налаштування шорткоду"
270
 
271
- #: bws_functions.php:854
272
  msgid "The shortcode will be inserted"
273
  msgstr "Буде вставлено шорткод"
274
 
275
- #: bws_functions.php:859
276
  msgid "Insert"
277
  msgstr "Вставити"
278
 
279
- #: bws_functions.php:919
280
  msgid "FAQ"
281
  msgstr "FAQ"
282
 
283
- #: bws_functions.php:925
284
  msgid "For more information:"
285
  msgstr "Для отримання додаткової інформації:"
286
 
287
- #: bws_functions.php:926
288
  msgid "Documentation"
289
  msgstr "Документація"
290
 
291
- #: bws_functions.php:927
292
  msgid "Video Instructions"
293
  msgstr "Відео інструкції"
294
 
295
- #: bws_functions.php:928
296
  msgid "Submit a Request"
297
  msgstr "Надіслати запит"
298
 
299
- #: deprecated.php:91 bws_menu.php:307 bws_menu.php:311 bws_menu.php:360
300
- msgid "Plugins"
301
- msgstr "Плагіни"
302
-
303
- #: deprecated.php:92 bws_menu.php:308 bws_menu.php:312 bws_menu.php:611
304
- msgid "Themes"
305
- msgstr "Теми"
306
-
307
- #: deprecated.php:93
308
- msgid "System Status"
309
- msgstr "Системна інформація"
310
 
311
- #: deprecated.php:133 deprecated.php:199 deprecated.php:352 bws_menu.php:120
312
- #: class-bws-settings.php:807 class-bws-settings.php:873
313
- #: class-bws-settings.php:909
314
  msgid ""
315
  "Something went wrong. Please try again later. If the error appears again, "
316
  "please contact us"
@@ -318,145 +311,33 @@ msgstr ""
318
  "Щось не так, спробуйте пізніше. Якщо помилка повториться, будь ласка, "
319
  "повідомте нам"
320
 
321
- #: deprecated.php:133 deprecated.php:199 deprecated.php:352 bws_menu.php:120
322
- #: class-bws-settings.php:807 class-bws-settings.php:873
323
- #: class-bws-settings.php:909
324
  msgid "We are sorry for inconvenience."
325
  msgstr "Просимо вибачення за незручності."
326
 
327
- #: deprecated.php:139 deprecated.php:358 bws_menu.php:126
328
- #: class-bws-settings.php:813 class-bws-settings.php:915
329
  msgid "Wrong license key."
330
  msgstr "Неправильний ліцензійний ключ."
331
 
332
- #: deprecated.php:141 deprecated.php:360 class-bws-settings.php:815
333
- #: class-bws-settings.php:917
334
- msgid "This license key is bound to another site."
335
- msgstr "Цей ліцензійний ключ прив'язано до іншого сайту."
336
-
337
- #: deprecated.php:143 class-bws-settings.php:817
338
- msgid ""
339
- "This license key is valid, but Your license has expired. If you want to "
340
- "update our plugin in future, you should extend the license."
341
- msgstr ""
342
- "Даний ліцензійний ключ дійсний, але строк вашої ліцензії витік. Якщо ви "
343
- "хочете оновлювати наш плагін у майбутньому, вам слід подовжити ліцензію."
344
-
345
- #: deprecated.php:145 class-bws-settings.php:819
346
- msgid "Unfortunately, you have exceeded the number of available tries."
347
- msgstr "На жаль, ви перевищили кількість допустимих спроб."
348
-
349
- #: deprecated.php:147 class-bws-settings.php:821
350
- msgid ""
351
- "Unfortunately, the Pro Trial licence was already installed to this domain. "
352
- "The Pro Trial license can be installed only once."
353
- msgstr ""
354
- "На жаль, Trial Pro версія плагіну уже встановлювалась на цей домен. Trial "
355
- "Pro версію можна встановлювати лише один раз."
356
-
357
- #: deprecated.php:151 class-bws-settings.php:825
358
- msgid "The Pro Trial license key is valid."
359
- msgstr "Ключ тріал Pro версії вірний."
360
-
361
- #: deprecated.php:153 bws_menu.php:140 class-bws-settings.php:827
362
- msgid "The license key is valid."
363
- msgstr "Ліцензійний ключ дійсний."
364
-
365
- #: deprecated.php:156 bws_menu.php:142 class-bws-settings.php:830
366
- msgid "Your license will expire on"
367
- msgstr "Ваша ліцензія закінчується"
368
-
369
- #: deprecated.php:159 deprecated.php:246 class-bws-settings.php:833
370
- #, php-format
371
- msgid ""
372
- "In order to continue using the plugin it is necessary to buy a %s license."
373
- msgstr "Щоб продовжити користуватись плагіном, потрібно придбати %s ліцензію."
374
-
375
- #: deprecated.php:204
376
- msgid "Please, enter your license key"
377
- msgstr "Будь ласка, введіть ваш ліцензійний ключ"
378
-
379
- #: deprecated.php:223
380
- msgid ""
381
- "If necessary, you can check if the license key is correct or reenter it in "
382
- "the field below. You can find your license key on your personal page - "
383
- "Client Area - on our website"
384
- msgstr ""
385
- "При необхідності ви можете перевірити правильність вашого ліцензійного ключа "
386
- "або знову ввести його у полі, що знаходиться нижче. Ви можете знайти свій "
387
- "ліцензійний ключ на вашій персональній сторінці - Client area - на нашому "
388
- "сайті"
389
-
390
- #: deprecated.php:223
391
  msgid ""
392
- "(your username is the email address specified during the purchase). If "
393
- "necessary, please submit \"Lost your password?\" request."
394
  msgstr ""
395
- "(ваше ім'я користувача - це емейл, який ви вказували при купівлі). При "
396
- "необхідності, будь ласка, відправте запит на відновлення вашого паролю."
397
-
398
- #: deprecated.php:227 bws_menu.php:336 bws_menu.php:347
399
- #: class-bws-settings.php:749
400
- msgid "Check license key"
401
- msgstr "Перевірте ліцензійний ключ"
402
-
403
- #: deprecated.php:247
404
- msgid "After that, you can activate it by entering your license key."
405
- msgstr "Після цього ви зможете активувати його ввівши ліцензійний ключ."
406
-
407
- #: deprecated.php:249 deprecated.php:688
408
- msgid "License key can be found in the"
409
- msgstr "Ліцензійний ключ можна знайти в"
410
-
411
- #: deprecated.php:251 deprecated.php:690
412
- msgid "(your username is the email address specified during the purchase)."
413
- msgstr "(ваше ім'я користувача - це емейл, який ви вказували при купівлі)"
414
 
415
- #: deprecated.php:259 deprecated.php:267 deprecated.php:629 deprecated.php:700
416
- #: deprecated.php:709 bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
417
- #: class-bws-settings.php:728
418
- msgid "Activate"
419
- msgstr "Активувати"
420
 
421
- #: deprecated.php:261 bws_menu.php:130 bws_menu.php:334
422
  msgid "Unfortunately, you have exceeded the number of available tries per day."
423
  msgstr "На жаль, ви перевищили кількість допустимих спроб."
424
 
425
- #: deprecated.php:278
426
- msgid ""
427
- "Congratulations! The Pro license of the plugin is activated successfully."
428
- msgstr "Вітаємо! Pro версію плагіну успішно активовано."
429
-
430
- #: deprecated.php:280 deprecated.php:669
431
- msgid "Please, go to"
432
- msgstr "Будь ласка, перейдіть на"
433
-
434
- #: deprecated.php:280 deprecated.php:669
435
- msgid "the setting page"
436
- msgstr "сторінку установок"
437
-
438
- #: deprecated.php:281 deprecated.php:670
439
- msgid "You will be redirected automatically in 5 seconds."
440
- msgstr "Вас буде перенаправлено автоматично через 5 секунд."
441
-
442
- #: deprecated.php:315
443
- msgid "Check premium options on the plugin settings page!"
444
- msgstr "Подивіться преміум опції на сторінці налаштувань плагіна!"
445
-
446
- #: deprecated.php:322 bws_menu.php:99 class-bws-settings.php:781
447
- msgid "Wrong license key"
448
- msgstr "Невірний ключ ліцензії"
449
-
450
- #: deprecated.php:362 deprecated.php:703 class-bws-settings.php:733
451
- #: class-bws-settings.php:919
452
- msgid ""
453
- "Unfortunately, you have exceeded the number of available tries per day. "
454
- "Please, upload the plugin manually."
455
- msgstr ""
456
- "На жаль, ви перевищили кількість доступних спроб на день. Будь ласка, "
457
- "завантажте плагін вручну"
458
-
459
- #: deprecated.php:364 bws_menu.php:132 class-bws-settings.php:921
460
  #, php-format
461
  msgid ""
462
  "Unfortunately, Your license has expired. To continue getting top-priority "
@@ -465,7 +346,7 @@ msgstr ""
465
  "На жаль, ваша ліцензія скінчилась. Для того, щоб і надалі отримувати "
466
  "першочергову техпідтримку і оновлення, будь ласка, продовжте ліцензію на %s"
467
 
468
- #: deprecated.php:366 bws_menu.php:134 class-bws-settings.php:923
469
  msgid ""
470
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
471
  "Trial license can be installed only once."
@@ -473,32 +354,19 @@ msgstr ""
473
  "На жаль, Pro ліцензія уже використовувалась на цьому домені. Тріал Pro "
474
  "версії плагіну можна використати лише один раз."
475
 
476
- #: deprecated.php:387 deprecated.php:409 deprecated.php:431 bws_menu.php:400
477
- #: bws_menu.php:431 bws_menu.php:442 class-bws-settings.php:947
478
- #: class-bws-settings.php:969 class-bws-settings.php:991
479
- msgid "Failed to download the zip archive. Please, upload the plugin manually"
480
- msgstr ""
481
- "Помилка при завантаженні zip-архіву. Будь ласка, завантажте плагін вручну"
482
-
483
- #: deprecated.php:399 bws_menu.php:417 class-bws-settings.php:959
484
- msgid "Failed to open the zip archive. Please, upload the plugin manually"
485
- msgstr "Помилка при відкритті zip-архіву. Будь ласка, завантажте плагін вручну"
486
 
487
- #: deprecated.php:405 bws_menu.php:424 class-bws-settings.php:965
488
- msgid ""
489
- "Your server does not support either ZipArchive or Phar. Please, upload the "
490
- "plugin manually"
491
- msgstr ""
492
- "Ваш сервер не підтримує формати Zip і Phar. Будь ласка, завантажте плагін "
493
- "вручну"
494
 
495
- #: deprecated.php:412 bws_menu.php:434 class-bws-settings.php:972
496
- msgid "UploadDir is not writable. Please, upload the plugin manually"
497
- msgstr ""
498
- "Немає доступу до теки завантажень WordPress. Будь ласка, завантажте плагін "
499
- "вручну"
500
 
501
- #: deprecated.php:435 bws_menu.php:151 class-bws-settings.php:995
502
  msgid ""
503
  "Something went wrong. Try again later or upload the plugin manually. We are "
504
  "sorry for inconvenience."
@@ -506,193 +374,88 @@ msgstr ""
506
  "Виникли певні проблеми. Спробуйте ще раз пізніше або завантажте плагін "
507
  "вручну. Просимо вибачення за незручності."
508
 
509
- #: deprecated.php:463 class-bws-settings.php:1030
510
- msgid "Please, enter Your license key"
511
- msgstr "Будь ласка, впишіть ваш ліцензійний ключ"
512
-
513
- #: deprecated.php:478
514
- msgid "Restore all plugin settings to defaults"
515
- msgstr "Скинути налаштування плагіну до стандартних"
516
-
517
- #: deprecated.php:480
518
- msgid "Restore settings"
519
- msgstr "Скинути налаштування"
520
-
521
- #: deprecated.php:497 class-bws-settings.php:421
522
- msgid "You do not have sufficient permissions to edit plugins for this site."
523
- msgstr "У вас недостатньо повноважень для редагування плагінів цього сайту."
524
-
525
- #: deprecated.php:548 deprecated.php:575
526
- #, php-format
527
- msgid "File %s edited successfully."
528
- msgstr "Файл %s успішно відредаговано."
529
-
530
- #: deprecated.php:550 deprecated.php:577
531
- msgid "Not enough permissions to create or update the file"
532
- msgstr "У Вас недостатньо дозволів для створення або поновлення файлу"
533
-
534
- #: deprecated.php:580
535
- msgid "Not enough permissions to create the file"
536
- msgstr "У Вас недостатньо дозволів для створення файлу"
537
-
538
- #: deprecated.php:618 class-bws-settings.php:426
539
- msgid "These styles will be added to the header on all pages of your site."
540
- msgstr "Ці стилі будуть додані в заголовок на всіх сторінках вашого сайту."
541
-
542
- #: deprecated.php:620 class-bws-settings.php:429
543
- #, php-format
544
- msgid ""
545
- "This PHP code will be hooked to the %s action and will be printed on front "
546
- "end only."
547
- msgstr ""
548
- "Цей PHP код буде прикріплений до %s action і буде додано лише у фронтенді."
549
-
550
- #: deprecated.php:624
551
- msgid "Editing"
552
- msgstr "Редагування"
553
-
554
- #: deprecated.php:626 class-bws-settings.php:450
555
- msgid "Browsing"
556
- msgstr "Огляд"
557
-
558
- #: deprecated.php:633 class-bws-settings.php:461
559
- #, php-format
560
- msgid "Learn more about %s"
561
- msgstr "Дізнатись більше про %s"
562
-
563
- #: deprecated.php:644 class-bws-settings.php:440
564
- #, php-format
565
- msgid ""
566
- "You need to make this files writable before you can save your changes. See "
567
- "%s the Codex %s for more information."
568
- msgstr ""
569
- "Вам потрібно зробити цей файл доступним для запису, перед тим як ви зможете "
570
- "зберегти свої зміни. Перегляньте %sКодекс%s для додаткової інформації."
571
-
572
- #: deprecated.php:667
573
- msgid ""
574
- "Congratulations! Pro version of the plugin is installed and activated "
575
- "successfully."
576
- msgstr "Вітаємо! Pro версію плагіну успішно завантажено та активовано."
577
-
578
- #: deprecated.php:677
579
- msgid "Show Pro features"
580
- msgstr "Показати Pro опції"
581
-
582
- #: deprecated.php:684
583
- msgid "Enter your license key to install and activate"
584
- msgstr "Введіть ліцензійний ключ для установки і активації"
585
-
586
- #: deprecated.php:686
587
- msgid "version of the plugin."
588
- msgstr "версія плагіна."
589
-
590
- #: deprecated.php:694 class-bws-settings.php:736
591
- #, php-format
592
- msgid "Start Your Free %s-Day Trial Now"
593
- msgstr "Спробуйте %s-денну Trial версію безкоштовно"
594
-
595
- #: bws_menu.php:128
596
- msgid ""
597
- "This license key is bound to another site. Change it via personal Client "
598
- "Area."
599
- msgstr ""
600
- "Цей ліцензійний ключ прив'язано до іншого сайту. Змініть це в Client Area."
601
-
602
- #: bws_menu.php:128
603
- msgid "Log in"
604
- msgstr "Увійти"
605
-
606
- #: bws_menu.php:144
607
- msgid "Congratulations! Pro Membership license is activated successfully."
608
- msgstr "Вітаємо! Pro Membership ліцензія успішно активована."
609
-
610
- #: bws_menu.php:161
611
  msgid "Please enter your license key."
612
  msgstr "Будь ласка, введіть ваш ліцензійний ключ."
613
 
614
- #: bws_menu.php:172
615
  msgid "Not set"
616
  msgstr "Не задано"
617
 
618
- #: bws_menu.php:174 bws_menu.php:175
619
  msgid "On"
620
  msgstr "Увімк."
621
 
622
- #: bws_menu.php:174 bws_menu.php:175
623
  msgid "Off"
624
  msgstr "Вимк."
625
 
626
- #: bws_menu.php:176 bws_menu.php:177 bws_menu.php:178 bws_menu.php:179
627
- #: bws_menu.php:180 bws_menu.php:181 bws_menu.php:190
628
  msgid "N/A"
629
  msgstr "Невідомо"
630
 
631
- #: bws_menu.php:181
632
  msgid " Mb"
633
  msgstr "Мб"
634
 
635
- #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:184 bws_menu.php:188
636
  msgid "Yes"
637
  msgstr "Так"
638
 
639
- #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:184 bws_menu.php:188
640
  msgid "No"
641
  msgstr "Ні"
642
 
643
- #: bws_menu.php:195
644
  msgid "WordPress Environment"
645
  msgstr "Системне оточення WordPress"
646
 
647
- #: bws_menu.php:197
648
  msgid "Home URL"
649
  msgstr "Адреса домашньої сторінки"
650
 
651
- #: bws_menu.php:198
652
  msgid "Website URL"
653
  msgstr "Адреса сайту"
654
 
655
- #: bws_menu.php:199
656
  msgid "WP Version"
657
  msgstr "Версія WordPress"
658
 
659
- #: bws_menu.php:200
660
  msgid "WP Multisite"
661
  msgstr "Мультисайт"
662
 
663
- #: bws_menu.php:201
664
  msgid "WP Memory Limit"
665
  msgstr "Ліміт пам’яті WordPress"
666
 
667
- #: bws_menu.php:202
668
  msgid "Active Theme"
669
  msgstr "Активна тема"
670
 
671
- #: bws_menu.php:202 bws_menu.php:248 bws_menu.php:251
672
  #, php-format
673
  msgid "by %s"
674
  msgstr "%s"
675
 
676
- #: bws_menu.php:206
677
  msgid "Server Environment"
678
  msgstr "Системне оточення сервера"
679
 
680
- #: bws_menu.php:208
681
  msgid "Operating System"
682
  msgstr "Операційна система"
683
 
684
- #: bws_menu.php:209
685
  msgid "Server"
686
  msgstr "Тип серверу"
687
 
688
- #: bws_menu.php:210
689
  msgid "PHP Version"
690
  msgstr "Версія PHP"
691
 
692
- #: bws_menu.php:211
693
- msgid "PHP Safe Mode"
694
- msgstr "PHP Безпечний режим"
695
-
696
  #: bws_menu.php:212
697
  msgid "PHP Allow URL fopen"
698
  msgstr "Дозволити PHP URL fopen"
@@ -769,9 +532,17 @@ msgstr "Дякуємо, що звернулись до нас."
769
  msgid "Sorry, email message could not be delivered."
770
  msgstr "Вибачте, ваше емейл не може бути доставлено"
771
 
772
- #: bws_menu.php:309 bws_menu.php:313 bws_menu.php:662
773
- msgid "System status"
774
- msgstr "Системна інформація"
 
 
 
 
 
 
 
 
775
 
776
  #: bws_menu.php:317
777
  msgid "Support"
@@ -790,10 +561,21 @@ msgstr "Отримати Доступ до %s+ Преміум Плагинам"
790
  msgid "Subscribe to Pro Membership"
791
  msgstr "Підписатися на Pro Membership"
792
 
 
 
 
 
 
793
  #: bws_menu.php:339
794
  msgid "Enter your license key"
795
  msgstr "Ваш ліцензійний ключ"
796
 
 
 
 
 
 
 
797
  #: bws_menu.php:361
798
  msgid "Upload Plugin"
799
  msgstr "Завантажити плагін"
@@ -831,6 +613,14 @@ msgstr "Встановлення плагіну"
831
  msgid "Downloading install package from"
832
  msgstr "Завантаження встановлюючого пакунку з"
833
 
 
 
 
 
 
 
 
 
834
  #: bws_menu.php:408
835
  msgid "Unpacking the package"
836
  msgstr "Розпакування пакета"
@@ -839,11 +629,29 @@ msgstr "Розпакування пакета"
839
  msgid "Installing the plugin"
840
  msgstr "Встановлення плагіну"
841
 
 
 
 
 
 
 
 
 
 
 
 
 
842
  #: bws_menu.php:427
843
  #, php-format
844
  msgid "The plugin %s is successfully installed."
845
  msgstr "Плагін %s успішно встановлено."
846
 
 
 
 
 
 
 
847
  #: bws_menu.php:439
848
  msgid "Activate Plugin"
849
  msgstr "Активувати плагін"
@@ -889,7 +697,7 @@ msgstr "Оновити до версії %s"
889
  msgid "Install Now"
890
  msgstr "Встановити"
891
 
892
- #: bws_menu.php:549 class-bws-settings.php:149 class-bws-settings.php:1073
893
  msgid "Upgrade to Pro"
894
  msgstr "Оновитися на Pro"
895
 
@@ -926,106 +734,104 @@ msgstr "Відправити службі тех. підтримки"
926
  msgid "Send to custom email &#187;"
927
  msgstr "Відправити на електронну адресу &#187;"
928
 
929
- #: product_list.php:7
930
- msgid "Advertisement"
931
- msgstr "Реклама"
932
-
933
- #: product_list.php:8
934
- msgid "Content & Media"
935
- msgstr "Зміст & Медіа"
936
-
937
- #: product_list.php:9
938
- msgid "Management"
939
- msgstr "Управління"
940
-
941
- #: product_list.php:10
942
- msgid "Recommended"
943
- msgstr "Рекомендовані "
944
-
945
- #: product_list.php:11
946
- msgid "Security"
947
- msgstr "Безпека"
948
-
949
- #: product_list.php:12
950
- msgid "Site Stats"
951
- msgstr "Статистика сайту"
952
-
953
- #: product_list.php:13
954
- msgid "Social"
955
- msgstr "Соціальне"
956
-
957
- #: product_list.php:14
958
- msgid "Utilities"
959
- msgstr "Утиліти"
960
-
961
- #: product_list.php:15
962
- msgid "Other"
963
- msgstr "Інше"
964
-
965
- #: class-bws-settings.php:129
966
  msgid "Information"
967
  msgstr "Інформація"
968
 
969
- #: class-bws-settings.php:136
970
  msgid "Inactive"
971
  msgstr "Неактивна"
972
 
973
- #: class-bws-settings.php:144
974
  msgid "Expired"
975
  msgstr "Закінчилась"
976
 
977
- #: class-bws-settings.php:147
978
  #, php-format
979
  msgid "%s day(-s) left"
980
  msgstr "%s днів залишилося"
981
 
982
- #: class-bws-settings.php:153
983
  #, php-format
984
  msgid "Expired on %s"
985
  msgstr "Витікає %s"
986
 
987
- #: class-bws-settings.php:153
988
  msgid "Renew Now"
989
  msgstr "Відновити зараз"
990
 
991
- #: class-bws-settings.php:155
992
  msgid "Active"
993
  msgstr "Активна"
994
 
995
- #: class-bws-settings.php:160
996
  msgid "License"
997
  msgstr "Ліцензія"
998
 
999
- #: class-bws-settings.php:163
1000
  msgid "Status"
1001
  msgstr "Статус"
1002
 
1003
- #: class-bws-settings.php:167
1004
  msgid "Version"
1005
  msgstr "Версія"
1006
 
1007
- #: class-bws-settings.php:276
1008
  msgid "All plugin settings were restored."
1009
  msgstr "Усі налаштування плагіну відновлені."
1010
 
1011
- #: class-bws-settings.php:417
1012
  msgid "Custom Code"
1013
  msgstr "Користувацький код"
1014
 
1015
- #: class-bws-settings.php:432
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1016
  msgid "These code will be added to the header on all pages of your site."
1017
  msgstr "Цей код буде додано в заголовок на всіх сторінках вашого сайту."
1018
 
1019
- #: class-bws-settings.php:454
 
 
 
 
 
 
 
 
 
 
 
 
 
1020
  #, php-format
1021
  msgid "Activate custom %s code."
1022
  msgstr "Активувать користувацький %s код."
1023
 
1024
- #: class-bws-settings.php:520
 
 
 
 
 
1025
  msgid "Miscellaneous Settings"
1026
  msgstr "Інші налаштування"
1027
 
1028
- #: class-bws-settings.php:527 class-bws-settings.php:585
1029
  #, php-format
1030
  msgid ""
1031
  "It is prohibited to change %s settings on this site in the %s network "
@@ -1034,7 +840,7 @@ msgstr ""
1034
  "Мережевими налаштуваннями %s забороняється змінювати налаштування %s на "
1035
  "цьому сайті."
1036
 
1037
- #: class-bws-settings.php:530 class-bws-settings.php:588
1038
  #, php-format
1039
  msgid ""
1040
  "It is prohibited to view %s settings on this site in the %s network settings."
@@ -1042,42 +848,42 @@ msgstr ""
1042
  "Мережевими налаштуваннями %s забороняється дивитися налаштування %s на цьому "
1043
  "сайті."
1044
 
1045
- #: class-bws-settings.php:536
1046
  msgid "Pro Options"
1047
  msgstr "Pro опції"
1048
 
1049
- #: class-bws-settings.php:539
1050
  msgid "Enable to display plugin Pro options."
1051
  msgstr "Увімкніть для відображення Pro опцій плагіна."
1052
 
1053
- #: class-bws-settings.php:544
1054
  msgid "Track Usage"
1055
  msgstr "Збирати статистику"
1056
 
1057
- #: class-bws-settings.php:547
1058
  msgid ""
1059
  "Enable to allow tracking plugin usage anonymously in order to make it better."
1060
  msgstr ""
1061
  "Включити, щоб дозволити анонімно відстежувати використання і зробити плагін "
1062
  "краще."
1063
 
1064
- #: class-bws-settings.php:551
1065
  msgid "Default Settings"
1066
  msgstr "Налаштування за замовчуванням"
1067
 
1068
- #: class-bws-settings.php:553
1069
  msgid "Restore Settings"
1070
  msgstr "Відновлення налаштувань"
1071
 
1072
- #: class-bws-settings.php:554
1073
  msgid "This will restore plugin settings to defaults."
1074
  msgstr "Відновити всі налаштування плагіна до налаштувань за замовчуванням."
1075
 
1076
- #: class-bws-settings.php:578
1077
  msgid "Import / Export"
1078
  msgstr "Імпорт / Експорт"
1079
 
1080
- #: class-bws-settings.php:701 class-bws-settings.php:724
1081
  #: class-bws-settings.php:746
1082
  msgid "License Key"
1083
  msgstr "Ключ ліцензії"
@@ -1088,8 +894,8 @@ msgstr "Вітаємо! Pro ліцензія успішно активована
1088
 
1089
  #: class-bws-settings.php:715
1090
  #, php-format
1091
- msgid "You will be automatically redirected to the %s in 7 seconds."
1092
- msgstr "Вас буде автоматично перенаправлено на %s через 7 секунд."
1093
 
1094
  #: class-bws-settings.php:715
1095
  msgid "Settings page"
@@ -1102,6 +908,20 @@ msgstr ""
1102
  "Введіть ліцензійний ключ для активації %s і отримання додаткових можливостей "
1103
  "плагіна."
1104
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1105
  #: class-bws-settings.php:751
1106
  msgid ""
1107
  "If necessary, you can check if the license key is correct or reenter it in "
@@ -1126,22 +946,212 @@ msgstr ""
1126
  "Керуй активними ліцензіями, завантажуй BWS продукти, а також переглядай "
1127
  "історію платежів за допомогою BestWebSoft Client Area."
1128
 
1129
- #: class-bws-settings.php:1044
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1130
  msgid "Need Help?"
1131
  msgstr "Потрібна допомога?"
1132
 
1133
- #: class-bws-settings.php:1044
1134
  msgid "Read the Instruction"
1135
  msgstr "Читати інструкцію"
1136
 
1137
- #: class-bws-settings.php:1046
1138
  msgid "Watch the Video"
1139
  msgstr "Дивитися відео"
1140
 
1141
- #: class-bws-settings.php:1077
1142
  msgid "Start Your Free Trial"
1143
  msgstr "Використовувати безкоштовну Trial версію"
1144
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1145
  #~ msgid "You license for"
1146
  #~ msgstr "Ваша ліцензія для"
1147
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-03-28 13:52+0300\n"
6
+ "PO-Revision-Date: 2017-03-28 13:54+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
13
  "X-Poedit-KeywordsList: __;_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:72 bws_functions.php:190
48
  msgid "Need help?"
49
  msgstr "Потрібна допомога?"
50
 
51
+ #: bws_functions.php:103 bws_functions.php:916 class-bws-settings.php:1047
52
  msgid "Visit Help Center"
53
+ msgstr "Перейти до Help Center"
54
 
55
  #: bws_functions.php:106
56
  msgid "Want to support the plugin?"
77
  "протягом 24 годин, інакше плагін буде деактивовано."
78
 
79
  #: bws_functions.php:127 bws_functions.php:339 bws_menu.php:627
80
+ #: class-bws-settings.php:143
81
  msgid "Learn More"
82
  msgstr "Дізнатись більше"
83
 
123
  "ласка, оновіть WordPress до останньої версії."
124
 
125
  #: bws_functions.php:207
126
+ #, php-format
127
+ msgid "Thank you for installing %s plugin!"
128
+ msgstr "Дякуємо, що встановили %s плагін!"
129
 
130
  #: bws_functions.php:208
131
  msgid "Let's get started"
136
  msgid "Settings"
137
  msgstr "Налаштування"
138
 
139
+ #: bws_functions.php:211 bws_menu.php:328 class-bws-settings.php:736
140
+ #: class-bws-settings.php:1049 class-bws-settings.php:1059 deprecated.php:694
 
141
  msgid "or"
142
  msgstr "або"
143
 
198
  "першочергову технічну підтримку та оновлення."
199
 
200
  #: bws_functions.php:477
201
+ #, php-format
202
+ msgid "Thank you for choosing %s plugin!"
203
+ msgstr "Дякую за вибір плагіна %s!"
204
 
205
  #: bws_functions.php:478
206
  msgid ""
215
  msgid "Suggest a Feature"
216
  msgstr "Запропонувати функціонал"
217
 
218
+ #: bws_functions.php:495 class-bws-settings.php:533 class-bws-settings.php:536
219
+ #: class-bws-settings.php:584 class-bws-settings.php:587
220
  msgid "Notice"
221
  msgstr "Зауважте"
222
 
224
  msgid "The plugin's settings have been changed."
225
  msgstr "Налаштування плагіну змінено."
226
 
227
+ #: bws_functions.php:496 class-bws-settings.php:182 class-bws-settings.php:202
228
+ #: deprecated.php:640
229
  msgid "Save Changes"
230
  msgstr "Зберегти зміни"
231
 
237
  "Ви завжди можете подивитися на преміум опції, натиснувши на кнопку \"Pro "
238
  "опції\" на вкладці \"Різне\"."
239
 
240
+ #: bws_functions.php:651
241
  msgid "Add shortcode"
242
  msgstr "Додати шорткод"
243
 
244
+ #: bws_functions.php:651
245
  msgid "Add BestWebSoft plugins' shortcodes using this button."
246
  msgstr "Додайте шорткоди BestWebSoft плагінів за допомогою цієї кнопки."
247
 
248
+ #: bws_functions.php:700
249
  msgid "Close"
250
  msgstr "Закрити"
251
 
252
+ #: bws_functions.php:792
253
  msgid "Are you sure you want to restore default settings?"
254
  msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
255
 
256
+ #: bws_functions.php:795
257
  msgid "Yes, restore all settings"
258
  msgstr "Так, скинути налаштування"
259
 
260
+ #: bws_functions.php:796
261
  msgid "No, go back to the settings page"
262
  msgstr "Ні, повернутись назад на сторінку налаштувань"
263
 
264
+ #: bws_functions.php:842
265
  msgid "Plugin"
266
  msgstr "Плагін"
267
 
268
+ #: bws_functions.php:851
269
  msgid "Shortcode settings"
270
  msgstr "Налаштування шорткоду"
271
 
272
+ #: bws_functions.php:856
273
  msgid "The shortcode will be inserted"
274
  msgstr "Буде вставлено шорткод"
275
 
276
+ #: bws_functions.php:861
277
  msgid "Insert"
278
  msgstr "Вставити"
279
 
280
+ #: bws_functions.php:921
281
  msgid "FAQ"
282
  msgstr "FAQ"
283
 
284
+ #: bws_functions.php:927
285
  msgid "For more information:"
286
  msgstr "Для отримання додаткової інформації:"
287
 
288
+ #: bws_functions.php:928
289
  msgid "Documentation"
290
  msgstr "Документація"
291
 
292
+ #: bws_functions.php:929
293
  msgid "Video Instructions"
294
  msgstr "Відео інструкції"
295
 
296
+ #: bws_functions.php:930
297
  msgid "Submit a Request"
298
  msgstr "Надіслати запит"
299
 
300
+ #: bws_menu.php:101 class-bws-settings.php:781 deprecated.php:322
301
+ msgid "Wrong license key"
302
+ msgstr "Невірний ключ ліцензії"
 
 
 
 
 
 
 
 
303
 
304
+ #: bws_menu.php:122 class-bws-settings.php:807 class-bws-settings.php:874
305
+ #: class-bws-settings.php:910 deprecated.php:133 deprecated.php:199
306
+ #: deprecated.php:352
307
  msgid ""
308
  "Something went wrong. Please try again later. If the error appears again, "
309
  "please contact us"
311
  "Щось не так, спробуйте пізніше. Якщо помилка повториться, будь ласка, "
312
  "повідомте нам"
313
 
314
+ #: bws_menu.php:122 class-bws-settings.php:807 class-bws-settings.php:874
315
+ #: class-bws-settings.php:910 deprecated.php:133 deprecated.php:199
316
+ #: deprecated.php:352
317
  msgid "We are sorry for inconvenience."
318
  msgstr "Просимо вибачення за незручності."
319
 
320
+ #: bws_menu.php:128 class-bws-settings.php:813 class-bws-settings.php:916
321
+ #: deprecated.php:139 deprecated.php:358
322
  msgid "Wrong license key."
323
  msgstr "Неправильний ліцензійний ключ."
324
 
325
+ #: bws_menu.php:130
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
326
  msgid ""
327
+ "This license key is bound to another site. Change it via personal Client "
328
+ "Area."
329
  msgstr ""
330
+ "Цей ліцензійний ключ прив'язано до іншого сайту. Змініть це в Client Area."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
331
 
332
+ #: bws_menu.php:130
333
+ msgid "Log in"
334
+ msgstr "Увійти"
 
 
335
 
336
+ #: bws_menu.php:132 bws_menu.php:334 deprecated.php:261
337
  msgid "Unfortunately, you have exceeded the number of available tries per day."
338
  msgstr "На жаль, ви перевищили кількість допустимих спроб."
339
 
340
+ #: bws_menu.php:134 class-bws-settings.php:922 deprecated.php:364
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
341
  #, php-format
342
  msgid ""
343
  "Unfortunately, Your license has expired. To continue getting top-priority "
346
  "На жаль, ваша ліцензія скінчилась. Для того, щоб і надалі отримувати "
347
  "першочергову техпідтримку і оновлення, будь ласка, продовжте ліцензію на %s"
348
 
349
+ #: bws_menu.php:136 class-bws-settings.php:924 deprecated.php:366
350
  msgid ""
351
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
352
  "Trial license can be installed only once."
354
  "На жаль, Pro ліцензія уже використовувалась на цьому домені. Тріал Pro "
355
  "версії плагіну можна використати лише один раз."
356
 
357
+ #: bws_menu.php:142 class-bws-settings.php:828 deprecated.php:153
358
+ msgid "The license key is valid."
359
+ msgstr "Ліцензійний ключ дійсний."
 
 
 
 
 
 
 
360
 
361
+ #: bws_menu.php:144 class-bws-settings.php:831 deprecated.php:156
362
+ msgid "Your license will expire on"
363
+ msgstr "Ваша ліцензія закінчується"
 
 
 
 
364
 
365
+ #: bws_menu.php:146
366
+ msgid "Congratulations! Pro Membership license is activated successfully."
367
+ msgstr "Вітаємо! Pro Membership ліцензія успішно активована."
 
 
368
 
369
+ #: bws_menu.php:153 class-bws-settings.php:996 deprecated.php:435
370
  msgid ""
371
  "Something went wrong. Try again later or upload the plugin manually. We are "
372
  "sorry for inconvenience."
374
  "Виникли певні проблеми. Спробуйте ще раз пізніше або завантажте плагін "
375
  "вручну. Просимо вибачення за незручності."
376
 
377
+ #: bws_menu.php:163
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
378
  msgid "Please enter your license key."
379
  msgstr "Будь ласка, введіть ваш ліцензійний ключ."
380
 
381
+ #: bws_menu.php:174
382
  msgid "Not set"
383
  msgstr "Не задано"
384
 
385
+ #: bws_menu.php:176
386
  msgid "On"
387
  msgstr "Увімк."
388
 
389
+ #: bws_menu.php:176
390
  msgid "Off"
391
  msgstr "Вимк."
392
 
393
+ #: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
394
+ #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
395
  msgid "N/A"
396
  msgstr "Невідомо"
397
 
398
+ #: bws_menu.php:182
399
  msgid " Mb"
400
  msgstr "Мб"
401
 
402
+ #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
403
  msgid "Yes"
404
  msgstr "Так"
405
 
406
+ #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
407
  msgid "No"
408
  msgstr "Ні"
409
 
410
+ #: bws_menu.php:196
411
  msgid "WordPress Environment"
412
  msgstr "Системне оточення WordPress"
413
 
414
+ #: bws_menu.php:198
415
  msgid "Home URL"
416
  msgstr "Адреса домашньої сторінки"
417
 
418
+ #: bws_menu.php:199
419
  msgid "Website URL"
420
  msgstr "Адреса сайту"
421
 
422
+ #: bws_menu.php:200
423
  msgid "WP Version"
424
  msgstr "Версія WordPress"
425
 
426
+ #: bws_menu.php:201
427
  msgid "WP Multisite"
428
  msgstr "Мультисайт"
429
 
430
+ #: bws_menu.php:202
431
  msgid "WP Memory Limit"
432
  msgstr "Ліміт пам’яті WordPress"
433
 
434
+ #: bws_menu.php:203
435
  msgid "Active Theme"
436
  msgstr "Активна тема"
437
 
438
+ #: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
439
  #, php-format
440
  msgid "by %s"
441
  msgstr "%s"
442
 
443
+ #: bws_menu.php:207
444
  msgid "Server Environment"
445
  msgstr "Системне оточення сервера"
446
 
447
+ #: bws_menu.php:209
448
  msgid "Operating System"
449
  msgstr "Операційна система"
450
 
451
+ #: bws_menu.php:210
452
  msgid "Server"
453
  msgstr "Тип серверу"
454
 
455
+ #: bws_menu.php:211
456
  msgid "PHP Version"
457
  msgstr "Версія PHP"
458
 
 
 
 
 
459
  #: bws_menu.php:212
460
  msgid "PHP Allow URL fopen"
461
  msgstr "Дозволити PHP URL fopen"
532
  msgid "Sorry, email message could not be delivered."
533
  msgstr "Вибачте, ваше емейл не може бути доставлено"
534
 
535
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:360 deprecated.php:91
536
+ msgid "Plugins"
537
+ msgstr "Плагіни"
538
+
539
+ #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:611 deprecated.php:92
540
+ msgid "Themes"
541
+ msgstr "Теми"
542
+
543
+ #: bws_menu.php:309 bws_menu.php:313 bws_menu.php:662
544
+ msgid "System status"
545
+ msgstr "Системна інформація"
546
 
547
  #: bws_menu.php:317
548
  msgid "Support"
561
  msgid "Subscribe to Pro Membership"
562
  msgstr "Підписатися на Pro Membership"
563
 
564
+ #: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:749
565
+ #: deprecated.php:227
566
+ msgid "Check license key"
567
+ msgstr "Перевірте ліцензійний ключ"
568
+
569
  #: bws_menu.php:339
570
  msgid "Enter your license key"
571
  msgstr "Ваш ліцензійний ключ"
572
 
573
+ #: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
574
+ #: class-bws-settings.php:728 deprecated.php:259 deprecated.php:267
575
+ #: deprecated.php:629 deprecated.php:700 deprecated.php:709
576
+ msgid "Activate"
577
+ msgstr "Активувати"
578
+
579
  #: bws_menu.php:361
580
  msgid "Upload Plugin"
581
  msgstr "Завантажити плагін"
613
  msgid "Downloading install package from"
614
  msgstr "Завантаження встановлюючого пакунку з"
615
 
616
+ #: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
617
+ #: class-bws-settings.php:948 class-bws-settings.php:970
618
+ #: class-bws-settings.php:992 deprecated.php:387 deprecated.php:409
619
+ #: deprecated.php:431
620
+ msgid "Failed to download the zip archive. Please, upload the plugin manually"
621
+ msgstr ""
622
+ "Помилка при завантаженні zip-архіву. Будь ласка, завантажте плагін вручну"
623
+
624
  #: bws_menu.php:408
625
  msgid "Unpacking the package"
626
  msgstr "Розпакування пакета"
629
  msgid "Installing the plugin"
630
  msgstr "Встановлення плагіну"
631
 
632
+ #: bws_menu.php:417 class-bws-settings.php:960 deprecated.php:399
633
+ msgid "Failed to open the zip archive. Please, upload the plugin manually"
634
+ msgstr "Помилка при відкритті zip-архіву. Будь ласка, завантажте плагін вручну"
635
+
636
+ #: bws_menu.php:424 class-bws-settings.php:966 deprecated.php:405
637
+ msgid ""
638
+ "Your server does not support either ZipArchive or Phar. Please, upload the "
639
+ "plugin manually"
640
+ msgstr ""
641
+ "Ваш сервер не підтримує формати Zip і Phar. Будь ласка, завантажте плагін "
642
+ "вручну"
643
+
644
  #: bws_menu.php:427
645
  #, php-format
646
  msgid "The plugin %s is successfully installed."
647
  msgstr "Плагін %s успішно встановлено."
648
 
649
+ #: bws_menu.php:434 class-bws-settings.php:973 deprecated.php:412
650
+ msgid "UploadDir is not writable. Please, upload the plugin manually"
651
+ msgstr ""
652
+ "Немає доступу до теки завантажень WordPress. Будь ласка, завантажте плагін "
653
+ "вручну"
654
+
655
  #: bws_menu.php:439
656
  msgid "Activate Plugin"
657
  msgstr "Активувати плагін"
697
  msgid "Install Now"
698
  msgstr "Встановити"
699
 
700
+ #: bws_menu.php:549 class-bws-settings.php:156 class-bws-settings.php:1056
701
  msgid "Upgrade to Pro"
702
  msgstr "Оновитися на Pro"
703
 
734
  msgid "Send to custom email &#187;"
735
  msgstr "Відправити на електронну адресу &#187;"
736
 
737
+ #: class-bws-settings.php:135
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
738
  msgid "Information"
739
  msgstr "Інформація"
740
 
741
+ #: class-bws-settings.php:143
742
  msgid "Inactive"
743
  msgstr "Неактивна"
744
 
745
+ #: class-bws-settings.php:151
746
  msgid "Expired"
747
  msgstr "Закінчилась"
748
 
749
+ #: class-bws-settings.php:154
750
  #, php-format
751
  msgid "%s day(-s) left"
752
  msgstr "%s днів залишилося"
753
 
754
+ #: class-bws-settings.php:160
755
  #, php-format
756
  msgid "Expired on %s"
757
  msgstr "Витікає %s"
758
 
759
+ #: class-bws-settings.php:160
760
  msgid "Renew Now"
761
  msgstr "Відновити зараз"
762
 
763
+ #: class-bws-settings.php:162
764
  msgid "Active"
765
  msgstr "Активна"
766
 
767
+ #: class-bws-settings.php:167
768
  msgid "License"
769
  msgstr "Ліцензія"
770
 
771
+ #: class-bws-settings.php:170
772
  msgid "Status"
773
  msgstr "Статус"
774
 
775
+ #: class-bws-settings.php:174
776
  msgid "Version"
777
  msgstr "Версія"
778
 
779
+ #: class-bws-settings.php:282
780
  msgid "All plugin settings were restored."
781
  msgstr "Усі налаштування плагіну відновлені."
782
 
783
+ #: class-bws-settings.php:420
784
  msgid "Custom Code"
785
  msgstr "Користувацький код"
786
 
787
+ #: class-bws-settings.php:424 deprecated.php:497
788
+ msgid "You do not have sufficient permissions to edit plugins for this site."
789
+ msgstr "У вас недостатньо повноважень для редагування плагінів цього сайту."
790
+
791
+ #: class-bws-settings.php:429 deprecated.php:618
792
+ msgid "These styles will be added to the header on all pages of your site."
793
+ msgstr "Ці стилі будуть додані в заголовок на всіх сторінках вашого сайту."
794
+
795
+ #: class-bws-settings.php:432 deprecated.php:620
796
+ #, php-format
797
+ msgid ""
798
+ "This PHP code will be hooked to the %s action and will be printed on front "
799
+ "end only."
800
+ msgstr ""
801
+ "Цей PHP код буде прикріплений до %s action і буде додано лише у фронтенді."
802
+
803
+ #: class-bws-settings.php:435
804
  msgid "These code will be added to the header on all pages of your site."
805
  msgstr "Цей код буде додано в заголовок на всіх сторінках вашого сайту."
806
 
807
+ #: class-bws-settings.php:443 deprecated.php:644
808
+ #, php-format
809
+ msgid ""
810
+ "You need to make this files writable before you can save your changes. See "
811
+ "%s the Codex %s for more information."
812
+ msgstr ""
813
+ "Вам потрібно зробити цей файл доступним для запису, перед тим як ви зможете "
814
+ "зберегти свої зміни. Перегляньте %sКодекс%s для додаткової інформації."
815
+
816
+ #: class-bws-settings.php:453 deprecated.php:626
817
+ msgid "Browsing"
818
+ msgstr "Огляд"
819
+
820
+ #: class-bws-settings.php:457
821
  #, php-format
822
  msgid "Activate custom %s code."
823
  msgstr "Активувать користувацький %s код."
824
 
825
+ #: class-bws-settings.php:464 deprecated.php:633
826
+ #, php-format
827
+ msgid "Learn more about %s"
828
+ msgstr "Дізнатись більше про %s"
829
+
830
+ #: class-bws-settings.php:524
831
  msgid "Miscellaneous Settings"
832
  msgstr "Інші налаштування"
833
 
834
+ #: class-bws-settings.php:533 class-bws-settings.php:584
835
  #, php-format
836
  msgid ""
837
  "It is prohibited to change %s settings on this site in the %s network "
840
  "Мережевими налаштуваннями %s забороняється змінювати налаштування %s на "
841
  "цьому сайті."
842
 
843
+ #: class-bws-settings.php:536 class-bws-settings.php:587
844
  #, php-format
845
  msgid ""
846
  "It is prohibited to view %s settings on this site in the %s network settings."
848
  "Мережевими налаштуваннями %s забороняється дивитися налаштування %s на цьому "
849
  "сайті."
850
 
851
+ #: class-bws-settings.php:545
852
  msgid "Pro Options"
853
  msgstr "Pro опції"
854
 
855
+ #: class-bws-settings.php:548
856
  msgid "Enable to display plugin Pro options."
857
  msgstr "Увімкніть для відображення Pro опцій плагіна."
858
 
859
+ #: class-bws-settings.php:553
860
  msgid "Track Usage"
861
  msgstr "Збирати статистику"
862
 
863
+ #: class-bws-settings.php:556
864
  msgid ""
865
  "Enable to allow tracking plugin usage anonymously in order to make it better."
866
  msgstr ""
867
  "Включити, щоб дозволити анонімно відстежувати використання і зробити плагін "
868
  "краще."
869
 
870
+ #: class-bws-settings.php:560
871
  msgid "Default Settings"
872
  msgstr "Налаштування за замовчуванням"
873
 
874
+ #: class-bws-settings.php:562
875
  msgid "Restore Settings"
876
  msgstr "Відновлення налаштувань"
877
 
878
+ #: class-bws-settings.php:563
879
  msgid "This will restore plugin settings to defaults."
880
  msgstr "Відновити всі налаштування плагіна до налаштувань за замовчуванням."
881
 
882
+ #: class-bws-settings.php:575
883
  msgid "Import / Export"
884
  msgstr "Імпорт / Експорт"
885
 
886
+ #: class-bws-settings.php:691 class-bws-settings.php:724
887
  #: class-bws-settings.php:746
888
  msgid "License Key"
889
  msgstr "Ключ ліцензії"
894
 
895
  #: class-bws-settings.php:715
896
  #, php-format
897
+ msgid "You will be automatically redirected to the %s in %s seconds."
898
+ msgstr "Вас буде автоматично перенаправлено на %s через %s секунд."
899
 
900
  #: class-bws-settings.php:715
901
  msgid "Settings page"
908
  "Введіть ліцензійний ключ для активації %s і отримання додаткових можливостей "
909
  "плагіна."
910
 
911
+ #: class-bws-settings.php:733 class-bws-settings.php:920 deprecated.php:362
912
+ #: deprecated.php:703
913
+ msgid ""
914
+ "Unfortunately, you have exceeded the number of available tries per day. "
915
+ "Please, upload the plugin manually."
916
+ msgstr ""
917
+ "На жаль, ви перевищили кількість доступних спроб на день. Будь ласка, "
918
+ "завантажте плагін вручну"
919
+
920
+ #: class-bws-settings.php:736 deprecated.php:694
921
+ #, php-format
922
+ msgid "Start Your Free %s-Day Trial Now"
923
+ msgstr "Спробуйте %s-денну Trial версію безкоштовно"
924
+
925
  #: class-bws-settings.php:751
926
  msgid ""
927
  "If necessary, you can check if the license key is correct or reenter it in "
946
  "Керуй активними ліцензіями, завантажуй BWS продукти, а також переглядай "
947
  "історію платежів за допомогою BestWebSoft Client Area."
948
 
949
+ #: class-bws-settings.php:815 class-bws-settings.php:918 deprecated.php:141
950
+ #: deprecated.php:360
951
+ msgid "This license key is bound to another site."
952
+ msgstr "Цей ліцензійний ключ прив'язано до іншого сайту."
953
+
954
+ #: class-bws-settings.php:817 deprecated.php:143
955
+ msgid ""
956
+ "This license key is valid, but Your license has expired. If you want to "
957
+ "update our plugin in future, you should extend the license."
958
+ msgstr ""
959
+ "Даний ліцензійний ключ дійсний, але строк вашої ліцензії витік. Якщо ви "
960
+ "хочете оновлювати наш плагін у майбутньому, вам слід подовжити ліцензію."
961
+
962
+ #: class-bws-settings.php:819 deprecated.php:145
963
+ msgid "Unfortunately, you have exceeded the number of available tries."
964
+ msgstr "На жаль, ви перевищили кількість допустимих спроб."
965
+
966
+ #: class-bws-settings.php:821 deprecated.php:147
967
+ msgid ""
968
+ "Unfortunately, the Pro Trial licence was already installed to this domain. "
969
+ "The Pro Trial license can be installed only once."
970
+ msgstr ""
971
+ "На жаль, Trial Pro версія плагіну уже встановлювалась на цей домен. Trial "
972
+ "Pro версію можна встановлювати лише один раз."
973
+
974
+ #: class-bws-settings.php:826 deprecated.php:151
975
+ msgid "The Pro Trial license key is valid."
976
+ msgstr "Ключ тріал Pro версії вірний."
977
+
978
+ #: class-bws-settings.php:834 deprecated.php:159 deprecated.php:246
979
+ #, php-format
980
+ msgid ""
981
+ "In order to continue using the plugin it is necessary to buy a %s license."
982
+ msgstr "Щоб продовжити користуватись плагіном, потрібно придбати %s ліцензію."
983
+
984
+ #: class-bws-settings.php:1031 deprecated.php:463
985
+ msgid "Please, enter Your license key"
986
+ msgstr "Будь ласка, впишіть ваш ліцензійний ключ"
987
+
988
+ #: class-bws-settings.php:1043
989
  msgid "Need Help?"
990
  msgstr "Потрібна допомога?"
991
 
992
+ #: class-bws-settings.php:1045
993
  msgid "Read the Instruction"
994
  msgstr "Читати інструкцію"
995
 
996
+ #: class-bws-settings.php:1049
997
  msgid "Watch the Video"
998
  msgstr "Дивитися відео"
999
 
1000
+ #: class-bws-settings.php:1060
1001
  msgid "Start Your Free Trial"
1002
  msgstr "Використовувати безкоштовну Trial версію"
1003
 
1004
+ #: deprecated.php:93
1005
+ msgid "System Status"
1006
+ msgstr "Системна інформація"
1007
+
1008
+ #: deprecated.php:204
1009
+ msgid "Please, enter your license key"
1010
+ msgstr "Будь ласка, введіть ваш ліцензійний ключ"
1011
+
1012
+ #: deprecated.php:223
1013
+ msgid ""
1014
+ "If necessary, you can check if the license key is correct or reenter it in "
1015
+ "the field below. You can find your license key on your personal page - "
1016
+ "Client Area - on our website"
1017
+ msgstr ""
1018
+ "При необхідності ви можете перевірити правильність вашого ліцензійного ключа "
1019
+ "або знову ввести його у полі, що знаходиться нижче. Ви можете знайти свій "
1020
+ "ліцензійний ключ на вашій персональній сторінці - Client area - на нашому "
1021
+ "сайті"
1022
+
1023
+ #: deprecated.php:223
1024
+ msgid ""
1025
+ "(your username is the email address specified during the purchase). If "
1026
+ "necessary, please submit \"Lost your password?\" request."
1027
+ msgstr ""
1028
+ "(ваше ім'я користувача - це емейл, який ви вказували при купівлі). При "
1029
+ "необхідності, будь ласка, відправте запит на відновлення вашого паролю."
1030
+
1031
+ #: deprecated.php:247
1032
+ msgid "After that, you can activate it by entering your license key."
1033
+ msgstr "Після цього ви зможете активувати його ввівши ліцензійний ключ."
1034
+
1035
+ #: deprecated.php:249 deprecated.php:688
1036
+ msgid "License key can be found in the"
1037
+ msgstr "Ліцензійний ключ можна знайти в"
1038
+
1039
+ #: deprecated.php:251 deprecated.php:690
1040
+ msgid "(your username is the email address specified during the purchase)."
1041
+ msgstr "(ваше ім'я користувача - це емейл, який ви вказували при купівлі)"
1042
+
1043
+ #: deprecated.php:278
1044
+ msgid ""
1045
+ "Congratulations! The Pro license of the plugin is activated successfully."
1046
+ msgstr "Вітаємо! Pro версію плагіну успішно активовано."
1047
+
1048
+ #: deprecated.php:280 deprecated.php:669
1049
+ msgid "Please, go to"
1050
+ msgstr "Будь ласка, перейдіть на"
1051
+
1052
+ #: deprecated.php:280 deprecated.php:669
1053
+ msgid "the setting page"
1054
+ msgstr "сторінку установок"
1055
+
1056
+ #: deprecated.php:281 deprecated.php:670
1057
+ msgid "You will be redirected automatically in 5 seconds."
1058
+ msgstr "Вас буде перенаправлено автоматично через 5 секунд."
1059
+
1060
+ #: deprecated.php:315
1061
+ msgid "Check premium options on the plugin settings page!"
1062
+ msgstr "Подивіться преміум опції на сторінці налаштувань плагіна!"
1063
+
1064
+ #: deprecated.php:478
1065
+ msgid "Restore all plugin settings to defaults"
1066
+ msgstr "Скинути налаштування плагіну до стандартних"
1067
+
1068
+ #: deprecated.php:480
1069
+ msgid "Restore settings"
1070
+ msgstr "Скинути налаштування"
1071
+
1072
+ #: deprecated.php:548 deprecated.php:575
1073
+ #, php-format
1074
+ msgid "File %s edited successfully."
1075
+ msgstr "Файл %s успішно відредаговано."
1076
+
1077
+ #: deprecated.php:550 deprecated.php:577
1078
+ msgid "Not enough permissions to create or update the file"
1079
+ msgstr "У Вас недостатньо дозволів для створення або поновлення файлу"
1080
+
1081
+ #: deprecated.php:580
1082
+ msgid "Not enough permissions to create the file"
1083
+ msgstr "У Вас недостатньо дозволів для створення файлу"
1084
+
1085
+ #: deprecated.php:624
1086
+ msgid "Editing"
1087
+ msgstr "Редагування"
1088
+
1089
+ #: deprecated.php:667
1090
+ msgid ""
1091
+ "Congratulations! Pro version of the plugin is installed and activated "
1092
+ "successfully."
1093
+ msgstr "Вітаємо! Pro версію плагіну успішно завантажено та активовано."
1094
+
1095
+ #: deprecated.php:677
1096
+ msgid "Show Pro features"
1097
+ msgstr "Показати Pro опції"
1098
+
1099
+ #: deprecated.php:684
1100
+ msgid "Enter your license key to install and activate"
1101
+ msgstr "Введіть ліцензійний ключ для установки і активації"
1102
+
1103
+ #: deprecated.php:686
1104
+ msgid "version of the plugin."
1105
+ msgstr "версія плагіна."
1106
+
1107
+ #: product_list.php:7
1108
+ msgid "Advertisement"
1109
+ msgstr "Реклама"
1110
+
1111
+ #: product_list.php:8
1112
+ msgid "Content & Media"
1113
+ msgstr "Зміст & Медіа"
1114
+
1115
+ #: product_list.php:9
1116
+ msgid "Management"
1117
+ msgstr "Управління"
1118
+
1119
+ #: product_list.php:10
1120
+ msgid "Recommended"
1121
+ msgstr "Рекомендовані "
1122
+
1123
+ #: product_list.php:11
1124
+ msgid "Security"
1125
+ msgstr "Безпека"
1126
+
1127
+ #: product_list.php:12
1128
+ msgid "Site Stats"
1129
+ msgstr "Статистика сайту"
1130
+
1131
+ #: product_list.php:13
1132
+ msgid "Social"
1133
+ msgstr "Соціальне"
1134
+
1135
+ #: product_list.php:14
1136
+ msgid "Utilities"
1137
+ msgstr "Утиліти"
1138
+
1139
+ #: product_list.php:15
1140
+ msgid "Other"
1141
+ msgstr "Інше"
1142
+
1143
+ #~ msgid "Thank you for installing"
1144
+ #~ msgstr "Дякуємо, що встановили"
1145
+
1146
+ #~ msgid "Thank you for choosing"
1147
+ #~ msgstr "Дякуємо, що обрали"
1148
+
1149
+ #~ msgid "You will be automatically redirected to the %s in 7 seconds."
1150
+ #~ msgstr "Вас буде автоматично перенаправлено на %s через 7 секунд."
1151
+
1152
+ #~ msgid "PHP Safe Mode"
1153
+ #~ msgstr "PHP Безпечний режим"
1154
+
1155
  #~ msgid "You license for"
1156
  #~ msgstr "Ваша ліцензія для"
1157
 
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.4.9
10
  Author URI: https://bestwebsoft.com/
11
  License: GPLv2 or later
12
  */
@@ -686,7 +686,7 @@ if ( ! function_exists( 'gllr_template_pagination' ) ) {
686
  function gllr_template_pagination( $args ) {
687
  extract( $args );
688
  for ( $i = 1; $i <= $pages; $i++ ) {
689
- if ( 1 != $pages && ( !( $i >= $paged + $range + 1 || $i <= $paged - $range - 1 ) || $pages <= $per_page ) ) {
690
  echo ( $paged == $i ) ? "<span class='page-numbers current'>". $i ."</span>" : "<a class='page-numbers inactive' href='". get_pagenum_link( $i ) ."'>" . $i . "</a>";
691
  }
692
  }
@@ -760,7 +760,7 @@ if ( ! function_exists( 'gllr_single_template_content' ) ) {
760
  <div class="gllr_image_row">
761
  <?php } ?>
762
  <div class="gllr_image_block">
763
- <p style="<?php if ( $width ) echo 'width:' . $width + $border_images . 'px;'; if ( $height ) echo 'height:' . $height + $border_images . 'px;'; ?>">
764
  <?php if ( ! empty( $url_for_link ) ) { ?>
765
  <a href="<?php echo $url_for_link; ?>" title="<?php echo $image_text; ?>" target="_blank">
766
  <img <?php if ( $width ) echo 'width="' . $width . '"'; if ( $height ) echo 'height="' . $height . '"'; ?> style="<?php if ( $width ) echo 'width:' . $width . 'px;'; if ( $height ) echo 'height:' . $height . 'px;'; echo $border; ?>" alt="<?php echo $image_alt_tag; ?>" title="<?php echo $image_text; ?>" src="<?php echo $image_attributes[0]; ?>" />
@@ -1797,7 +1797,7 @@ if ( ! function_exists ( 'gllr_shortcode' ) ) {
1797
  <div class="gllr_image_row">
1798
  <?php } ?>
1799
  <div class="gllr_image_block">
1800
- <p style="<?php if ( $width ) echo 'width:' . $width + $border_images . 'px;'; if ( $height ) echo 'height:' . $height + $border_images . 'px;'; ?>">
1801
  <?php if ( ! empty( $url_for_link ) ) { ?>
1802
  <a href="<?php echo $url_for_link; ?>" title="<?php echo $image_text; ?>" target="_blank">
1803
  <img <?php if ( $width ) echo 'width="' . $width . '"'; if ( $height ) echo 'height="' . $height . '"'; ?> style="<?php if ( $width ) echo 'width:' . $width . 'px;'; if ( $height ) echo 'height:' . $height . 'px;'; echo $border; ?>" alt="<?php echo $image_alt_tag; ?>" title="<?php echo $image_text; ?>" src="<?php echo $image_attributes[0]; ?>" />
6
  Author: BestWebSoft
7
  Text Domain: gallery-plugin
8
  Domain Path: /languages
9
+ Version: 4.5.0
10
  Author URI: https://bestwebsoft.com/
11
  License: GPLv2 or later
12
  */
686
  function gllr_template_pagination( $args ) {
687
  extract( $args );
688
  for ( $i = 1; $i <= $pages; $i++ ) {
689
+ if ( 1 != $pages && ( !( $i >= ( $paged + $range + 1 ) || $i <= ( $paged - $range - 1 ) ) || $pages <= $per_page ) ) {
690
  echo ( $paged == $i ) ? "<span class='page-numbers current'>". $i ."</span>" : "<a class='page-numbers inactive' href='". get_pagenum_link( $i ) ."'>" . $i . "</a>";
691
  }
692
  }
760
  <div class="gllr_image_row">
761
  <?php } ?>
762
  <div class="gllr_image_block">
763
+ <p style="<?php if ( $width ) echo 'width:' . ( $width + $border_images ) . 'px;'; if ( $height ) echo 'height:' . ( $height + $border_images ) . 'px;'; ?>">
764
  <?php if ( ! empty( $url_for_link ) ) { ?>
765
  <a href="<?php echo $url_for_link; ?>" title="<?php echo $image_text; ?>" target="_blank">
766
  <img <?php if ( $width ) echo 'width="' . $width . '"'; if ( $height ) echo 'height="' . $height . '"'; ?> style="<?php if ( $width ) echo 'width:' . $width . 'px;'; if ( $height ) echo 'height:' . $height . 'px;'; echo $border; ?>" alt="<?php echo $image_alt_tag; ?>" title="<?php echo $image_text; ?>" src="<?php echo $image_attributes[0]; ?>" />
1797
  <div class="gllr_image_row">
1798
  <?php } ?>
1799
  <div class="gllr_image_block">
1800
+ <p style="<?php if ( $width ) echo 'width:' . ( $width + $border_images ) . 'px;'; if ( $height ) echo 'height:' . ( $height + $border_images ) . 'px;'; ?>">
1801
  <?php if ( ! empty( $url_for_link ) ) { ?>
1802
  <a href="<?php echo $url_for_link; ?>" title="<?php echo $image_text; ?>" target="_blank">
1803
  <img <?php if ( $width ) echo 'width="' . $width . '"'; if ( $height ) echo 'height="' . $height . '"'; ?> style="<?php if ( $width ) echo 'width:' . $width . 'px;'; if ( $height ) echo 'height:' . $height . 'px;'; echo $border; ?>" alt="<?php echo $image_alt_tag; ?>" title="<?php echo $image_text; ?>" src="<?php echo $image_attributes[0]; ?>" />
inc/deprecated.php CHANGED
@@ -34,7 +34,7 @@ if ( ! function_exists( 'gllr_check_old_options' ) ) {
34
  */
35
  if ( ! function_exists( 'gllr_old_template_options' ) ) {
36
  function gllr_old_template_options() {
37
- global $gllr_options, $gllr_plugin_info;
38
  if ( isset( $gllr_options['plugin_option_version'] ) && $gllr_plugin_info["Version"] <= '4.4.7' ) {
39
  /* get template attribute 'gallery-template.php' for pages */
40
  $template_pages = $wpdb->get_var( "SELECT $wpdb->posts.ID FROM $wpdb->posts, $wpdb->postmeta WHERE meta_key = '_wp_page_template' AND meta_value = 'gallery-template.php' AND ( post_status = 'publish' OR post_status = 'private' ) AND $wpdb->posts.ID = $wpdb->postmeta.post_id" );
34
  */
35
  if ( ! function_exists( 'gllr_old_template_options' ) ) {
36
  function gllr_old_template_options() {
37
+ global $gllr_options, $gllr_plugin_info, $wpdb;
38
  if ( isset( $gllr_options['plugin_option_version'] ) && $gllr_plugin_info["Version"] <= '4.4.7' ) {
39
  /* get template attribute 'gallery-template.php' for pages */
40
  $template_pages = $wpdb->get_var( "SELECT $wpdb->posts.ID FROM $wpdb->posts, $wpdb->postmeta WHERE meta_key = '_wp_page_template' AND meta_value = 'gallery-template.php' AND ( post_status = 'publish' OR post_status = 'private' ) AND $wpdb->posts.ID = $wpdb->postmeta.post_id" );
languages/gallery-plugin-cs_CZ.mo CHANGED
Binary file
languages/gallery-plugin-cs_CZ.po CHANGED
@@ -2,10 +2,10 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-01-26 10:38+0300\n"
6
- "PO-Revision-Date: 2017-01-26 10:38+0300\n"
7
- "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
- "Language-Team: Lagya <lagya@me.com>\n"
9
  "Language: cs\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -13,31 +13,30 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.5.4\n"
17
  "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: gallery-plugin.php:39 gallery-plugin.php:1420
21
- #: inc/class-gllr-settings.php:287
22
  msgid "Gallery Settings"
23
  msgstr "Nastavení galerie"
24
 
25
- #: gallery-plugin.php:39 inc/class-gllr-settings.php:298
26
- #, fuzzy
27
  msgid "Global Settings"
28
- msgstr "Nastavení galerie"
29
 
30
- #: gallery-plugin.php:45 gallery-plugin.php:2526
31
  msgid "Upgrade to Pro"
32
- msgstr ""
33
 
34
  #: gallery-plugin.php:232
35
  msgid "Return to all albums"
36
- msgstr ""
37
 
38
  #: gallery-plugin.php:242
39
  msgid "See images &raquo;"
40
- msgstr "Viz obrázky &raquo;"
41
 
42
  #: gallery-plugin.php:248
43
  msgid "Download high resolution image"
@@ -47,17 +46,17 @@ msgstr "Stáhnout obrázek ve vysokém rozlišení"
47
  msgid "Galleries"
48
  msgstr "Galerie"
49
 
50
- #: gallery-plugin.php:329 gallery-plugin.php:2819
51
  msgid "Gallery"
52
  msgstr "Galerie"
53
 
54
  #: gallery-plugin.php:330
55
  msgid "Add New Gallery"
56
- msgstr "Přidej novou galerii"
57
 
58
  #: gallery-plugin.php:331
59
  msgid "Edit Gallery"
60
- msgstr "Uprav galerii"
61
 
62
  #: gallery-plugin.php:332
63
  msgid "New Gallery"
@@ -65,12 +64,11 @@ msgstr "Nová galerie"
65
 
66
  #: gallery-plugin.php:333
67
  msgid "View Gallery"
68
- msgstr "Ukaž galerii"
69
 
70
- #: gallery-plugin.php:334 inc/class-gllr-settings.php:920
71
- #, fuzzy
72
  msgid "Search Galleries"
73
- msgstr "Galerie"
74
 
75
  #: gallery-plugin.php:335
76
  msgid "No Gallery found"
@@ -80,1168 +78,1192 @@ msgstr "Žádná galerie nenalezena"
80
  msgid "Gallery Shortcode"
81
  msgstr "Zkrácený kód galerie"
82
 
83
- #: gallery-plugin.php:366 gallery-plugin.php:395 gallery-plugin.php:2802
84
- #, fuzzy
85
  msgid "Gallery Categories"
86
- msgstr "Velikost obrázku v galerii"
87
 
88
  #: gallery-plugin.php:376
89
  msgid ""
90
  "Add a single gallery with images to your posts, pages, custom post types or "
91
  "widgets by using the following shortcode:"
92
  msgstr ""
 
 
93
 
94
  #: gallery-plugin.php:380
95
  msgid ""
96
  "Add a gallery cover including featured image, description, and a link to "
97
  "your single gallery using the following shortcode:"
98
  msgstr ""
 
 
99
 
100
  #: gallery-plugin.php:396
101
  msgid "Most Used"
102
- msgstr ""
103
 
104
  #: gallery-plugin.php:401
105
  msgid "Default"
106
  msgstr "Výchozí"
107
 
108
  #: gallery-plugin.php:406
109
- #, fuzzy
110
  msgid "Add New Gallery Category"
111
- msgstr "Přidej novou galerii"
112
 
113
  #: gallery-plugin.php:410
114
- #, fuzzy, php-format
115
  msgid "Install %s"
116
- msgstr "Установка %"
117
 
118
- #: gallery-plugin.php:552
119
- #, fuzzy
120
  msgid "Gallery Category"
121
- msgstr "Velikost obrázku v galerii"
122
 
123
- #: gallery-plugin.php:811 gallery-plugin.php:955 gallery-plugin.php:1879
124
  msgid "Sorry, nothing found."
125
- msgstr "Ups, nic nenalezeno"
126
 
127
- #: gallery-plugin.php:1349
128
  msgid "Featured Image"
129
- msgstr ""
130
 
131
- #: gallery-plugin.php:1350 gallery-plugin.php:2383 gallery-plugin.php:2487
132
- #: gallery-plugin.php:2598 inc/class-gllr-settings.php:635
133
  msgid "Title"
134
- msgstr "Titulek"
135
 
136
- #: gallery-plugin.php:1351 inc/class-gllr-settings.php:40
137
- #, fuzzy
138
  msgid "Images"
139
- msgstr "Obrázek"
140
 
141
- #: gallery-plugin.php:1352
142
- #, fuzzy
143
  msgid "Shortcode"
144
  msgstr "Zkrácený kód galerie"
145
 
146
- #: gallery-plugin.php:1353 inc/class-gllr-settings.php:640
147
  msgid "Author"
148
  msgstr "Autor"
149
 
150
- #: gallery-plugin.php:1354 inc/class-gllr-settings.php:490
151
- #: inc/class-gllr-settings.php:636
152
  msgid "Date"
153
  msgstr "Datum"
154
 
155
- #: gallery-plugin.php:1446 gallery-plugin.php:1463
156
- #: inc/class-gllr-settings.php:29 inc/class-gllr-settings.php:41
157
  msgid "Settings"
158
  msgstr "Nastavení"
159
 
160
- #: gallery-plugin.php:1447
161
  msgid "FAQ"
162
- msgstr "FAQ "
163
 
164
- #: gallery-plugin.php:1448
165
  msgid "Support"
166
  msgstr "Podpora"
167
 
168
- #: gallery-plugin.php:1486
169
  msgid "Updating images..."
170
- msgstr "Aktualizuji obrázky..."
171
 
172
- #: gallery-plugin.php:1487
173
- #, fuzzy
174
  msgid "No images found."
175
- msgstr "Nenalezen žádný obrázek"
176
 
177
- #: gallery-plugin.php:1488
178
- #, fuzzy
179
  msgid "All images were updated."
180
- msgstr "Všechny obrázky jsou aktuální"
181
 
182
- #: gallery-plugin.php:1489
183
  msgid "Error."
184
  msgstr "Chyba."
185
 
186
- #: gallery-plugin.php:1501
187
  msgid ""
188
  "You are about to remove these items from this gallery.\n"
189
  " 'Cancel' to stop, 'OK' to delete."
190
  msgstr ""
 
 
191
 
192
- #: gallery-plugin.php:1502
193
  msgid ""
194
  "You are about to remove this image from the gallery.\n"
195
  " 'Cancel' to stop, 'OK' to delete."
196
  msgstr ""
 
 
197
 
198
- #: gallery-plugin.php:1503
199
  msgid ""
200
  "Switching to another mode, all unsaved data will be lost. Save data before "
201
  "switching?"
202
  msgstr ""
 
 
203
 
204
- #: gallery-plugin.php:1504
205
  msgid "Insert Media"
206
- msgstr ""
207
 
208
- #: gallery-plugin.php:1505
209
  msgid "Insert"
210
- msgstr ""
211
 
212
- #: gallery-plugin.php:1517
213
- #, fuzzy
214
  msgid "Learn more"
215
  msgstr "Dozvědět se více"
216
 
217
- #: gallery-plugin.php:1522
218
- #, fuzzy
219
  msgid "Activate"
220
- msgstr "Активовані плагіни"
221
 
222
- #: gallery-plugin.php:1525 inc/class-gllr-settings.php:932
223
- #, fuzzy
224
  msgid "Install Now"
225
- msgstr "Установка %"
226
 
227
- #: gallery-plugin.php:1535
228
  msgid "Add multiple gallery categories"
229
- msgstr ""
230
 
231
- #: gallery-plugin.php:1535
232
  msgid ""
233
  "Install Gallery Categories plugin to add unlimited number of categories."
234
  msgstr ""
 
 
235
 
236
- #: gallery-plugin.php:1544 inc/class-gllr-settings.php:309
237
- #: inc/class-gllr-settings.php:366 inc/class-gllr-settings.php:410
238
- #: inc/class-gllr-settings.php:460 inc/class-gllr-settings.php:577
239
- #: inc/class-gllr-settings.php:665 inc/class-gllr-settings.php:701
240
- #: inc/class-gllr-settings.php:751 inc/class-gllr-settings.php:902
241
  msgid "Close"
242
- msgstr ""
243
 
244
- #: gallery-plugin.php:1907
245
  msgid "Image"
246
  msgstr "Obrázek"
247
 
248
- #: gallery-plugin.php:2055
249
  msgid "Image size not defined"
250
  msgstr "Velikost obrázku není definována"
251
 
252
- #: gallery-plugin.php:2070
253
- #, fuzzy
254
  msgid ""
255
  "Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
256
  "reload images manually."
257
  msgstr ""
258
- "Můžeme aktualizovat pouze PNG, JPEG, GIF, WPMP nebo XBM soubory. Ostatní "
259
- "musíte nahrát ručně."
260
 
261
- #: gallery-plugin.php:2081
262
  msgid "Image size changes not defined"
263
  msgstr "Změna velikosti obrázku není definována"
264
 
265
- #: gallery-plugin.php:2110 gallery-plugin.php:2113 gallery-plugin.php:2118
266
  msgid "Invalid path"
267
- msgstr "Špatná cesta"
268
 
269
- #: gallery-plugin.php:2207
270
  msgid "List View"
271
- msgstr ""
272
 
273
- #: gallery-plugin.php:2208
274
  msgid "Grid View"
275
- msgstr ""
276
 
277
- #: gallery-plugin.php:2263
278
  msgid "Filter"
279
- msgstr ""
280
 
281
- #: gallery-plugin.php:2267
282
  msgid "Empty Trash"
283
- msgstr ""
284
 
285
- #: gallery-plugin.php:2288
286
- #, fuzzy
287
  msgid "No images found"
288
- msgstr "Nenalezen žádný obrázek"
289
 
290
- #: gallery-plugin.php:2340
291
  msgid "Select bulk action"
292
- msgstr ""
293
 
294
- #: gallery-plugin.php:2342
295
  msgid "Bulk Actions"
296
- msgstr ""
297
 
298
- #: gallery-plugin.php:2352
299
  msgid "Apply"
300
- msgstr ""
301
 
302
- #: gallery-plugin.php:2359
303
- #, fuzzy
304
  msgid "Delete from Gallery"
305
- msgstr "Nová galerie"
306
 
307
- #: gallery-plugin.php:2368
308
  msgid "Bulk Select"
309
- msgstr ""
310
 
311
- #: gallery-plugin.php:2369
312
  msgid "Cancel Selection"
313
- msgstr ""
314
 
315
- #: gallery-plugin.php:2370
316
  msgid "Delete Selected"
317
- msgstr ""
318
 
319
- #: gallery-plugin.php:2381
320
  msgid "File"
321
- msgstr ""
322
 
323
- #: gallery-plugin.php:2382 gallery-plugin.php:2482 gallery-plugin.php:2593
324
  msgid "Dimensions"
325
- msgstr ""
326
 
327
- #: gallery-plugin.php:2384 gallery-plugin.php:2493 gallery-plugin.php:2603
328
- #, fuzzy
329
  msgid "Alt Text"
330
- msgstr "Alt tag"
331
 
332
- #: gallery-plugin.php:2385 gallery-plugin.php:2497 gallery-plugin.php:2608
333
  msgid "URL"
334
  msgstr "URL"
335
 
336
- #: gallery-plugin.php:2385 gallery-plugin.php:2499
337
  msgid ""
338
  "Enter your custom URL to link this image to other page or file. Leave blank "
339
  "to open a full size image."
340
  msgstr ""
 
 
341
 
342
- #: gallery-plugin.php:2464
343
- #, fuzzy
344
  msgid "Remove Image from Gallery"
345
- msgstr "Nová galerie"
346
 
347
- #: gallery-plugin.php:2467
348
- #, fuzzy
349
  msgid "Edit Image Info"
350
- msgstr "ID přílohy"
351
 
352
- #: gallery-plugin.php:2468
353
  msgid "Deselect"
354
- msgstr ""
355
 
356
- #: gallery-plugin.php:2480
357
  msgid "File name"
358
- msgstr ""
359
 
360
- #: gallery-plugin.php:2481
361
  msgid "File type"
362
- msgstr ""
363
 
364
- #: gallery-plugin.php:2506
365
  msgid "Description"
366
- msgstr ""
367
 
368
- #: gallery-plugin.php:2512
369
- #, fuzzy
370
  msgid "Lightbox Button URL"
371
- msgstr "Pozadí Lightboxu"
372
 
373
- #: gallery-plugin.php:2519
374
  msgid "New Tab"
375
- msgstr ""
376
 
377
- #: gallery-plugin.php:2521
378
  msgid "Enable to open URLs above in a new tab."
379
- msgstr ""
380
 
381
- #: gallery-plugin.php:2526
382
  msgid "Go Pro"
383
- msgstr ""
384
 
385
- #: gallery-plugin.php:2532
386
  msgid "Edit more details"
387
- msgstr ""
388
 
389
- #: gallery-plugin.php:2534
390
- #, fuzzy
391
  msgid "Remove from Gallery"
392
- msgstr "Nová galerie"
393
 
394
- #: gallery-plugin.php:2568
395
  #, php-format
396
  msgid "Select %s"
397
- msgstr ""
398
 
399
- #: gallery-plugin.php:2581
400
  #, php-format
401
  msgid "Edit &#8220;%s&#8221;"
402
- msgstr ""
403
 
404
- #: gallery-plugin.php:2589
405
- #, fuzzy
406
  msgid "Edit Attachment Info"
407
- msgstr "ID přílohy"
408
 
409
- #: gallery-plugin.php:2626 gallery-plugin.php:2639
410
  msgid "Edit"
411
- msgstr ""
412
 
413
- #: gallery-plugin.php:2629 gallery-plugin.php:2644
414
  msgid "Trash"
415
- msgstr ""
416
 
417
- #: gallery-plugin.php:2632 gallery-plugin.php:2647
418
  msgid "Delete Permanently"
419
- msgstr ""
420
 
421
- #: gallery-plugin.php:2634 gallery-plugin.php:2653
422
  #, php-format
423
  msgid "View &#8220;%s&#8221;"
424
- msgstr ""
425
 
426
- #: gallery-plugin.php:2634 gallery-plugin.php:2653
427
  msgid "View"
428
- msgstr ""
429
 
430
- #: gallery-plugin.php:2636
431
- #, fuzzy
432
  msgid "Attach"
433
- msgstr "ID přílohy"
434
 
435
- #: gallery-plugin.php:2642
436
  msgid "Restore"
437
- msgstr ""
438
 
439
- #: gallery-plugin.php:2772
440
  msgid "Warning"
441
- msgstr ""
442
 
443
- #: gallery-plugin.php:2772
444
  msgid "You can add only images to the gallery"
445
- msgstr ""
446
 
447
- #: gallery-plugin.php:2804
448
  msgid "or"
449
- msgstr ""
450
 
451
- #: gallery-plugin.php:2813
452
- #, fuzzy
453
  msgid "no title"
454
- msgstr "Titulek"
455
 
456
- #: gallery-plugin.php:2821
457
- #, fuzzy
458
  msgid "Sorry, no gallery found."
459
- msgstr "Ups, nic nenalezeno"
460
 
461
- #: gallery-plugin.php:2827
462
- #, fuzzy
463
  msgid ""
464
  "Display an album image with the description and the link to a single gallery "
465
  "page"
466
- msgstr ""
467
- "Chcete-li zobrazit krátký popis obsahující screenshot a odkaz na jednu "
468
- "stránku Galerie"
469
 
470
- #: inc/class-gllr-settings.php:30
471
  msgid "Cover"
472
- msgstr ""
473
 
474
- #: inc/class-gllr-settings.php:31
475
- #, fuzzy
476
  msgid "Lightbox"
477
- msgstr "vpravo"
478
 
479
- #: inc/class-gllr-settings.php:32
480
  msgid "Social"
481
- msgstr ""
482
 
483
- #: inc/class-gllr-settings.php:33
484
  msgid "Misc"
485
- msgstr ""
486
 
487
- #: inc/class-gllr-settings.php:34
488
  msgid "Custom Code"
489
- msgstr ""
490
 
491
- #: inc/class-gllr-settings.php:35
492
  msgid "Import / Export"
493
- msgstr ""
494
 
495
- #: inc/class-gllr-settings.php:36
496
  msgid "License Key"
497
- msgstr ""
498
 
499
- #: inc/class-gllr-settings.php:199
500
  msgid "Custom image size was changed. You need to update gallery images."
501
  msgstr ""
 
 
502
 
503
- #: inc/class-gllr-settings.php:224
504
- #, fuzzy
505
  msgid "Settings saved"
506
  msgstr "Nastavení uloženo"
507
 
508
- #: inc/class-gllr-settings.php:236
509
- #, fuzzy
510
  msgid "Please, enable JavaScript in Your browser."
511
- msgstr "Povolte JavaScript pro použití uploaderu."
512
 
513
- #: inc/class-gllr-settings.php:241
514
- #, fuzzy
515
  msgid "Update Images"
516
- msgstr "Aktualizuji obrázky..."
517
 
518
- #: inc/class-gllr-settings.php:256
519
- #, fuzzy
520
  msgid "Gallery Images"
521
- msgstr "Velikost obrázku v galerii"
522
 
523
- #: inc/class-gllr-settings.php:261
524
  msgid "Adding images requires JavaScript."
525
- msgstr ""
526
 
527
- #: inc/class-gllr-settings.php:264
528
  msgid "Add Media"
529
- msgstr ""
530
 
531
- #: inc/class-gllr-settings.php:273
532
  msgid "The grid view for the Gallery images requires JavaScript."
533
- msgstr ""
534
 
535
- #: inc/class-gllr-settings.php:273
536
  msgid "Switch to the list view"
537
- msgstr ""
538
 
539
- #: inc/class-gllr-settings.php:296
540
- #, fuzzy
541
  msgid "Single Gallery Settings"
542
- msgstr "Nastavení galerie"
543
 
544
- #: inc/class-gllr-settings.php:298
545
  #, php-format
546
  msgid "Enable to configure single gallery settings and disable %s."
547
- msgstr ""
548
 
549
- #: inc/class-gllr-settings.php:313
550
- #, fuzzy
551
  msgid "Gallery Layout"
552
- msgstr "Žádná galerie nenalezena"
553
 
554
- #: inc/class-gllr-settings.php:318
555
  msgid "Grid"
556
- msgstr ""
557
 
558
- #: inc/class-gllr-settings.php:324
559
  msgid "Masonry"
560
- msgstr ""
561
 
562
- #: inc/class-gllr-settings.php:337
563
  msgid "Number of Columns"
564
- msgstr ""
565
 
566
- #: inc/class-gllr-settings.php:339
567
  msgid "columns"
568
- msgstr ""
569
 
570
- #: inc/class-gllr-settings.php:340
571
  #, php-format
572
  msgid "Number of gallery columns (default is %s)."
573
- msgstr ""
574
 
575
- #: inc/class-gllr-settings.php:344 inc/class-gllr-settings.php:705
576
- #, fuzzy
577
  msgid "Image Size"
578
  msgstr "Velikost obrázku"
579
 
580
- #: inc/class-gllr-settings.php:350 inc/class-gllr-settings.php:562
581
  msgid "Custom"
582
- msgstr ""
583
 
584
- #: inc/class-gllr-settings.php:352
585
  msgid ""
586
  "Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
587
  msgstr ""
 
 
588
 
589
- #: inc/class-gllr-settings.php:356
590
- #, fuzzy
591
  msgid "Custom Image Size"
592
- msgstr "Velikost obrázku"
593
 
594
- #: inc/class-gllr-settings.php:358 inc/class-gllr-settings.php:446
595
- #: inc/class-gllr-settings.php:570 inc/class-gllr-settings.php:620
596
- #: inc/class-gllr-settings.php:772
597
  msgid "px"
598
- msgstr ""
599
 
600
- #: inc/class-gllr-settings.php:359
601
  msgid ""
602
  "Adjust these values based on the number of columns in your gallery. This "
603
  "won't effect the full size of your images in the lightbox."
604
  msgstr ""
 
 
605
 
606
- #: inc/class-gllr-settings.php:370
607
- #, fuzzy
608
  msgid "Crop Images"
609
- msgstr "Řadit obrázky"
610
 
611
- #: inc/class-gllr-settings.php:372
612
  msgid ""
613
  "Enable to crop images using the sizes defined for Custom Image Size. Disable "
614
  "to resize images automatically using their aspect ratio."
615
  msgstr ""
 
 
 
616
 
617
- #: inc/class-gllr-settings.php:376 inc/class-gllr-settings.php:587
618
- #, fuzzy
619
  msgid "Crop Position"
620
  msgstr "Pozice ořezu"
621
 
622
- #: inc/class-gllr-settings.php:391 inc/class-gllr-settings.php:602
623
  msgid "Select crop position base (by default: center)."
624
- msgstr ""
625
 
626
- #: inc/class-gllr-settings.php:401
627
- #, fuzzy
628
  msgid "Image Title"
629
- msgstr "Velikost obrázku"
630
 
631
- #: inc/class-gllr-settings.php:403
632
  msgid "Enable to display image title along with the gallery image."
633
- msgstr ""
634
 
635
- #: inc/class-gllr-settings.php:414
636
- #, fuzzy
637
  msgid "Image Title Position"
638
- msgstr "Velikost obrázku není definována"
639
 
640
- #: inc/class-gllr-settings.php:419
641
- #, fuzzy
642
  msgid "Under image"
643
- msgstr "Aktualizace obrázků"
644
 
645
- #: inc/class-gllr-settings.php:425
646
  msgid "On mouse hover"
647
- msgstr ""
648
 
649
- #: inc/class-gllr-settings.php:438
650
- #, fuzzy
651
  msgid "Image Border"
652
- msgstr "Obrázek s okrajem"
653
 
654
- #: inc/class-gllr-settings.php:440
655
  msgid ""
656
  "Enable images border using the styles defined for Image Border Size and "
657
  "Color."
658
  msgstr ""
 
 
659
 
660
- #: inc/class-gllr-settings.php:444
661
- #, fuzzy
662
  msgid "Image Border Size"
663
- msgstr "Velikost obrázku"
664
 
665
- #: inc/class-gllr-settings.php:447
666
  #, php-format
667
  msgid "Gallery image border width (default is %s)"
668
- msgstr ""
669
 
670
- #: inc/class-gllr-settings.php:451
671
- #, fuzzy
672
  msgid "Image Border Color"
673
- msgstr "Vyber barvu okraje"
674
 
675
- #: inc/class-gllr-settings.php:464
676
  msgid "Pagination"
677
- msgstr ""
678
 
679
- #: inc/class-gllr-settings.php:467
680
  msgid ""
681
  "Enable pagination for images to limit number of images displayed on a single "
682
  "gallery page."
683
  msgstr ""
 
 
684
 
685
- #: inc/class-gllr-settings.php:471
686
- #, fuzzy
687
  msgid "Number of Images"
688
- msgstr "Počet snímků na řádku"
689
 
690
- #: inc/class-gllr-settings.php:474
691
  #, php-format
692
  msgid "Number of images displayed per page (default is %d)."
693
- msgstr ""
694
 
695
- #: inc/class-gllr-settings.php:484
696
- #, fuzzy
697
  msgid "Sort Images by"
698
  msgstr "Řazení obrázků dle"
699
 
700
- #: inc/class-gllr-settings.php:487
701
  msgid "Manually (default)"
702
- msgstr ""
703
 
704
- #: inc/class-gllr-settings.php:488
705
- #, fuzzy
706
  msgid "Image ID"
707
- msgstr "Obrázek"
708
 
709
- #: inc/class-gllr-settings.php:489
710
  msgid "Name"
711
- msgstr ""
712
 
713
- #: inc/class-gllr-settings.php:491 inc/class-gllr-settings.php:641
714
  msgid "Random"
715
  msgstr "Náhodně"
716
 
717
- #: inc/class-gllr-settings.php:493
718
  msgid ""
719
  "Select images sorting order in your gallery. By default, you can sort images "
720
  "manually in the images tab."
721
  msgstr ""
 
 
722
 
723
- #: inc/class-gllr-settings.php:497
724
- #, fuzzy
725
  msgid "Arrange Images by"
726
  msgstr "Řazení obrázků dle"
727
 
728
- #: inc/class-gllr-settings.php:500 inc/class-gllr-settings.php:650
729
  msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
730
- msgstr ""
731
 
732
- #: inc/class-gllr-settings.php:501 inc/class-gllr-settings.php:651
733
  msgid "Descending (e.g. 3, 2, 1; c, b, a)"
734
- msgstr ""
735
 
736
- #: inc/class-gllr-settings.php:506
737
- #, fuzzy
738
  msgid "Back Link"
739
- msgstr "URL odkazu Zpět "
740
 
741
- #: inc/class-gllr-settings.php:508
742
  msgid ""
743
  "Enable to show a back link in a single gallery page which navigate to a "
744
  "previous page."
745
  msgstr ""
 
 
746
 
747
- #: inc/class-gllr-settings.php:512
748
- #, fuzzy
749
  msgid "Back Link URL"
750
- msgstr "URL odkazu Zpět "
751
 
752
- #: inc/class-gllr-settings.php:515
753
  msgid "Back link custom page URL. Leave blank to use Gallery page template."
754
  msgstr ""
 
 
755
 
756
- #: inc/class-gllr-settings.php:519
757
- #, fuzzy
758
  msgid "Back Link Label"
759
- msgstr "URL odkazu Zpět "
760
 
761
- #: inc/class-gllr-settings.php:525
762
- #, fuzzy
763
  msgid "Back Link with Shortcode"
764
- msgstr "Zobrazit odkaz Zpět na zkrácený kód"
765
 
766
- #: inc/class-gllr-settings.php:528
767
- #, fuzzy
768
  msgid "Enable to display a back link on a page where shortcode is used."
769
- msgstr "Zobrazit odkaz Zpět na zkrácený kód"
 
770
 
771
- #: inc/class-gllr-settings.php:539
772
- #, fuzzy
773
  msgid "Cover Settings"
774
- msgstr "Nastavení galerie"
775
 
776
- #: inc/class-gllr-settings.php:544
777
- #, fuzzy
778
  msgid "Galleries Page"
779
- msgstr "Galerie"
780
 
781
- #: inc/class-gllr-settings.php:552
782
- #, fuzzy
783
  msgid "Base page where all existing galleries will be displayed."
784
- msgstr ""
785
- "Pokud jste upgradovali na verzi Pro, všechna vaše nastavení a galerie se "
786
- "uloží."
787
 
788
- #: inc/class-gllr-settings.php:556
789
- #, fuzzy
790
  msgid "Cover Image Size"
791
- msgstr "Velikost obrázku"
792
 
793
- #: inc/class-gllr-settings.php:564
794
  msgid "Maximum cover image size. Custom uses the Image Dimensions values."
795
  msgstr ""
 
 
796
 
797
- #: inc/class-gllr-settings.php:568
798
  msgid "Custom Cover Image Size"
799
- msgstr ""
800
 
801
- #: inc/class-gllr-settings.php:581
802
  msgid "Crop Cover Images"
803
- msgstr ""
804
 
805
- #: inc/class-gllr-settings.php:583
806
  msgid ""
807
  "Enable to crop images using the sizes defined for Custom Cover Image Size. "
808
  "Disable to resize images automatically using their aspect ratio."
809
  msgstr ""
 
 
 
810
 
811
- #: inc/class-gllr-settings.php:612
812
- #, fuzzy
813
  msgid "Cover Image Border"
814
- msgstr "Obrázek s okrajem"
815
 
816
- #: inc/class-gllr-settings.php:614
817
  msgid ""
818
  "Enable cover images border using the styles defined for Image Border Size "
819
  "and Color."
820
  msgstr ""
 
 
821
 
822
- #: inc/class-gllr-settings.php:618
823
  msgid "Cover Image Border Size"
824
- msgstr ""
825
 
826
- #: inc/class-gllr-settings.php:621
827
  #, php-format
828
  msgid "Cover image border width (default is %s)"
829
- msgstr ""
830
 
831
- #: inc/class-gllr-settings.php:625
832
- #, fuzzy
833
  msgid "Cover Image Border Color"
834
- msgstr "Vyber barvu okraje"
835
 
836
- #: inc/class-gllr-settings.php:631
837
- #, fuzzy
838
  msgid "Sort Albums by"
839
- msgstr "Řazení obrázků dle"
840
 
841
- #: inc/class-gllr-settings.php:634
842
- #, fuzzy
843
  msgid "Gallery ID"
844
- msgstr "Galerie"
845
 
846
- #: inc/class-gllr-settings.php:637
847
  msgid "Last modified date"
848
- msgstr ""
849
 
850
- #: inc/class-gllr-settings.php:638
851
  msgid "Comment count"
852
- msgstr ""
853
 
854
- #: inc/class-gllr-settings.php:639
855
- #, fuzzy
856
  msgid "Sorting order (the input field for sorting order)"
857
- msgstr ""
858
- "Řazení objednávky (vstupní pole pro třídění pořadí v dialogovém okně "
859
- "Insert / upload Media Gallery)"
860
 
861
- #: inc/class-gllr-settings.php:643
862
  msgid "Select galleries sorting order in your galleries page."
863
- msgstr ""
864
 
865
- #: inc/class-gllr-settings.php:647
866
  msgid "Arrange Albums by"
867
- msgstr ""
868
 
869
- #: inc/class-gllr-settings.php:656
870
- #, fuzzy
871
  msgid "Read More Link Label"
872
- msgstr "Text odkazu Čtěte více"
873
 
874
- #: inc/class-gllr-settings.php:669
875
  msgid "Instant Lightbox"
876
- msgstr ""
877
 
878
- #: inc/class-gllr-settings.php:672
879
  msgid ""
880
  "Enable to display all images in the lightbox after clicking cover image or "
881
  "URL instead of going to a single gallery page."
882
  msgstr ""
 
 
883
 
884
- #: inc/class-gllr-settings.php:686
885
- #, fuzzy
886
  msgid "Lightbox Settings"
887
- msgstr "Pozadí Lightboxu"
888
 
889
- #: inc/class-gllr-settings.php:691
890
  msgid "Enable Lightbox"
891
- msgstr ""
892
 
893
- #: inc/class-gllr-settings.php:694
894
  msgid "Enable to show the lightbox when clicking on gallery images."
895
- msgstr ""
896
 
897
- #: inc/class-gllr-settings.php:712
898
  msgid ""
899
  "Select the maximum gallery image size for the lightbox view. \"Default\" "
900
  "will display the original, full size image."
901
  msgstr ""
 
 
902
 
903
- #: inc/class-gllr-settings.php:716
904
  msgid "Overlay Color"
905
- msgstr ""
906
 
907
- #: inc/class-gllr-settings.php:722
908
  msgid "Overlay Opacity"
909
- msgstr ""
910
 
911
- #: inc/class-gllr-settings.php:725
912
  #, php-format
913
  msgid ""
914
  "Lightbox overlay opacity. Leave blank to disable opacity (default is %d, max "
915
  "is %d)."
916
  msgstr ""
 
 
917
 
918
- #: inc/class-gllr-settings.php:735
919
- #, fuzzy
920
  msgid "Slideshow"
921
- msgstr "Spustit prezentaci"
922
 
923
- #: inc/class-gllr-settings.php:737
924
  msgid "Enable to start the slideshow automatically when the lightbox is used."
925
- msgstr ""
926
 
927
- #: inc/class-gllr-settings.php:741
928
- #, fuzzy
929
  msgid "Slideshow Duration"
930
  msgstr "Interval prezentace"
931
 
932
- #: inc/class-gllr-settings.php:743
933
  msgid "ms"
934
- msgstr ""
935
 
936
- #: inc/class-gllr-settings.php:744
937
  msgid "Slideshow interval duration between two images."
938
- msgstr ""
939
 
940
- #: inc/class-gllr-settings.php:755
941
  msgid "Lightbox Helper"
942
- msgstr ""
943
 
944
- #: inc/class-gllr-settings.php:757
945
  msgid "Enable to use a lightbox helper navigation between images."
946
- msgstr ""
947
 
948
- #: inc/class-gllr-settings.php:761
949
  msgid "Lightbox Helper Type"
950
- msgstr ""
951
 
952
- #: inc/class-gllr-settings.php:764
953
- #, fuzzy
954
  msgid "Thumbnails"
955
- msgstr "Velikost obrázku na obalu alba"
956
 
957
- #: inc/class-gllr-settings.php:765
958
  msgid "Buttons"
959
- msgstr ""
960
 
961
- #: inc/class-gllr-settings.php:770
962
  msgid "Lightbox Helper Thumbnail Size"
963
- msgstr ""
964
 
965
- #: inc/class-gllr-settings.php:776
966
  msgid "Lightbox Helper Thumbnail Position"
967
- msgstr ""
968
 
969
- #: inc/class-gllr-settings.php:779
970
- #, fuzzy
971
  msgid "Top"
972
- msgstr "nahoře"
973
 
974
- #: inc/class-gllr-settings.php:780
975
- #, fuzzy
976
  msgid "Bottom"
977
- msgstr "dole"
978
 
979
- #: inc/class-gllr-settings.php:785
980
- #, fuzzy
981
  msgid "Lightbox Button Label"
982
- msgstr "Pozadí Lightboxu"
983
 
984
- #: inc/class-gllr-settings.php:797
985
- #, fuzzy
986
  msgid "Download Original File"
987
- msgstr "Stáhnout obrázek ve vysokém rozlišení"
988
 
989
- #: inc/class-gllr-settings.php:799
990
- #, fuzzy
991
  msgid ""
992
  "Enable to display link to the original file under each image in the lightbox."
993
- msgstr "Zobrazení obrázku v plné velikosti v lightboxu"
994
 
995
- #: inc/class-gllr-settings.php:803
996
  msgid "Download Link Label"
997
- msgstr ""
998
 
999
- #: inc/class-gllr-settings.php:809
1000
  msgid "Single Lightbox"
1001
- msgstr ""
1002
 
1003
- #: inc/class-gllr-settings.php:811
1004
- #, fuzzy
1005
  msgid ""
1006
  "Enable to use a single lightbox for multiple galleries located on a single "
1007
  "page."
1008
- msgstr "Použijte jeden Lightbox pro více galerií na jedné stránce"
1009
 
1010
- #: inc/class-gllr-settings.php:821
1011
  msgid "Social Sharing Buttons Settings"
1012
- msgstr ""
1013
 
1014
- #: inc/class-gllr-settings.php:829
1015
  msgid "Enable Social Buttons"
1016
- msgstr ""
1017
 
1018
- #: inc/class-gllr-settings.php:831
1019
- #, fuzzy
1020
  msgid "Enable social sharing buttons in the Lightbox."
1021
- msgstr "Zobrazit tlačítka Like v Lightboxu"
1022
 
1023
- #: inc/class-gllr-settings.php:835
1024
  msgid "Social Networks"
1025
- msgstr ""
1026
 
1027
- #: inc/class-gllr-settings.php:846
1028
  msgid "Social Buttons Position"
1029
- msgstr ""
1030
 
1031
- #: inc/class-gllr-settings.php:849
1032
  msgid "Left"
1033
- msgstr ""
1034
 
1035
- #: inc/class-gllr-settings.php:851
1036
  msgid "Select social buttons position in a lightbox."
1037
- msgstr ""
1038
 
1039
- #: inc/class-gllr-settings.php:855
1040
- #, fuzzy
1041
  msgid "Counter"
1042
- msgstr "Interval prezentace"
1043
 
1044
- #: inc/class-gllr-settings.php:858
1045
  msgid "Enable to show likes counter for each social button."
1046
- msgstr ""
1047
 
1048
- #: inc/class-gllr-settings.php:872
1049
- #, fuzzy
1050
  msgid "Demo Data"
1051
- msgstr "Установка %"
1052
 
1053
- #: inc/class-gllr-settings.php:874
1054
  msgid ""
1055
  "Install demo data to create galleries with images, post with shortcodes and "
1056
  "page with a list of all galleries."
1057
  msgstr ""
 
 
1058
 
1059
- #: inc/class-gllr-settings.php:892
1060
- #, fuzzy
1061
  msgid "Gallery Post Type"
1062
- msgstr "Zkrácený kód galerie"
1063
 
1064
- #: inc/class-gllr-settings.php:894
1065
  msgid ""
1066
  "Enable to avoid conflicts with other gallery plugins installed. All "
1067
  "galleries created earlier will stay unchanged. However, after enabling we "
1068
  "recommend to check settings of other plugins where \"gallery\" post type is "
1069
  "used."
1070
  msgstr ""
 
 
 
 
1071
 
1072
- #: inc/class-gllr-settings.php:906
1073
- #, fuzzy
1074
  msgid "Gallery Slug"
1075
- msgstr "Galerie"
1076
 
1077
- #: inc/class-gllr-settings.php:910
1078
  msgid "Enter the unique gallery slug."
1079
- msgstr ""
1080
 
1081
- #: inc/class-gllr-settings.php:926
1082
- #, fuzzy
1083
  msgid "Activate Now"
1084
- msgstr "Активовані плагіни"
1085
 
1086
- #: inc/class-gllr-settings.php:935
1087
  msgid "Enable to include galleries to your website search."
1088
- msgstr ""
1089
 
1090
- #: inc/class-gllr-settings.php:935
1091
  #, php-format
1092
  msgid "%s is required."
1093
- msgstr ""
1094
 
1095
  #: inc/demo-data/class-bws-demo-data.php:33
1096
- #, fuzzy
1097
  msgid "Install Demo Data"
1098
- msgstr "Установка %"
1099
 
1100
  #: inc/demo-data/class-bws-demo-data.php:36
1101
  msgid "Remove Demo Data"
1102
- msgstr ""
1103
 
1104
  #: inc/demo-data/class-bws-demo-data.php:37
1105
  msgid "Delete demo data and restore old plugin settings."
1106
- msgstr ""
1107
 
1108
  #: inc/demo-data/class-bws-demo-data.php:50
1109
  msgid "Yes, install demo data"
1110
- msgstr ""
1111
 
1112
  #: inc/demo-data/class-bws-demo-data.php:51
1113
  msgid "Are you sure you want to install demo data?"
1114
- msgstr ""
1115
 
1116
  #: inc/demo-data/class-bws-demo-data.php:53
1117
  msgid "Yes, remove demo data"
1118
- msgstr ""
1119
 
1120
  #: inc/demo-data/class-bws-demo-data.php:54
1121
  msgid "Are you sure you want to remove demo data?"
1122
- msgstr ""
1123
 
1124
  #: inc/demo-data/class-bws-demo-data.php:61
1125
- #, fuzzy
1126
  msgid "No, go back to the settings page"
1127
- msgstr "na stránce pluginu ("
1128
 
1129
  #: inc/demo-data/class-bws-demo-data.php:111
1130
  msgid "Can not get demo data."
1131
- msgstr ""
1132
 
1133
  #: inc/demo-data/class-bws-demo-data.php:118
1134
  msgid "Demo settings already installed."
1135
- msgstr ""
1136
 
1137
  #: inc/demo-data/class-bws-demo-data.php:363
1138
  msgid "Demo data installed successfully."
1139
- msgstr ""
1140
 
1141
  #: inc/demo-data/class-bws-demo-data.php:365
1142
  msgid "View post with shortcodes"
1143
- msgstr ""
1144
 
1145
  #: inc/demo-data/class-bws-demo-data.php:368
1146
  msgid "View page with examples"
1147
- msgstr ""
1148
 
1149
  #: inc/demo-data/class-bws-demo-data.php:379
1150
  msgid "Installation of demo data with some errors occurred."
1151
- msgstr ""
1152
 
1153
  #: inc/demo-data/class-bws-demo-data.php:382
1154
  msgid "Posts data is missing."
1155
- msgstr ""
1156
 
1157
  #: inc/demo-data/class-bws-demo-data.php:454
1158
  msgid "Demo data have already been removed."
1159
- msgstr ""
1160
 
1161
  #: inc/demo-data/class-bws-demo-data.php:511
1162
  msgid "Demo data successfully removed."
1163
- msgstr ""
1164
 
1165
  #: inc/demo-data/class-bws-demo-data.php:515
1166
  msgid "Removing demo data with some errors occurred."
1167
- msgstr ""
1168
 
1169
  #: inc/demo-data/class-bws-demo-data.php:583
1170
  msgid "Close notice"
1171
- msgstr ""
1172
 
1173
  #: inc/demo-data/class-bws-demo-data.php:587
1174
  msgid ""
1175
  "Do you want to install demo content and settings (You can do this later "
1176
  "using Import / Export settings)?"
1177
  msgstr ""
 
 
1178
 
1179
  #: inc/demo-data/class-bws-demo-data.php:587
1180
- #, fuzzy
1181
  msgid "Yes, install demo now"
1182
- msgstr "Установка %"
1183
 
1184
- #, fuzzy
1185
- #~ msgid "No image found."
1186
- #~ msgstr "Nenalezen žádný obrázek"
 
 
 
 
 
1187
 
1188
- #, fuzzy
1189
  #~ msgid ""
1190
  #~ "If you would like to add a Gallery to your page or post, please use %s "
1191
  #~ "button"
1192
  #~ msgstr ""
1193
- #~ "Pokud byste chtěli přidat jednu Galerie na vaše stránky nebo příspěvek, "
1194
- #~ "stačí zkopírovat a vložit tento zkrácený kód do příspěvku nebo stránky:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1195
 
1196
- #, fuzzy
1197
  #~ msgid ""
1198
  #~ "Use this shortcode to display an album image with the description and the "
1199
  #~ "link to a single gallery page"
1200
  #~ msgstr ""
1201
- #~ "Chcete-li zobrazit krátký popis obsahující screenshot a odkaz na jednu "
1202
- #~ "stránku Galerie"
 
 
 
1203
 
1204
- #, fuzzy
1205
  #~ msgid "Install plugin"
1206
- #~ msgstr "Встановлених модулів"
1207
 
1208
- #, fuzzy
1209
  #~ msgid "Photos"
1210
- #~ msgstr "Foto"
 
 
 
1211
 
1212
- #, fuzzy
1213
  #~ msgid "All plugin settings were restored."
1214
- #~ msgstr "na stránce pluginu ("
 
 
 
 
 
 
1215
 
1216
  #~ msgid "Please enable JavaScript to use the option to renew images."
1217
  #~ msgstr "Povolte JavaScript pro použití možnosti obnovení obrázků."
1218
 
1219
- #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
1220
  #~ msgid ""
1221
  #~ "The number of images per row can be less depending on the width of the "
1222
  #~ "parent block"
1223
- #~ msgstr "Počet snímků na řádku"
 
 
 
 
 
1224
 
1225
  #~ msgid ""
1226
  #~ "WordPress will create a new thumbnail with the specified dimensions when "
1227
  #~ "you upload a new photo."
1228
  #~ msgstr ""
1229
- #~ "WordPress se vytvoří novou miniaturu se zadanými rozměry, když nahrajete "
1230
- #~ "novou fotku."
1231
 
1232
- #, fuzzy
1233
  #~ msgid "For the album cover"
1234
- #~ msgstr "Velikost obrázku na obalu alba"
 
 
 
 
 
 
 
 
 
1235
 
1236
  #~ msgid "Update images for gallery"
1237
- #~ msgstr "Aktualizace obrázků galerie"
1238
 
1239
- #, fuzzy
1240
  #~ msgid "For images in the lightbox"
1241
- #~ msgstr "Velikost obrazu v Lightboxu"
1242
 
1243
  #~ msgid "Display a full size image in the lightbox"
1244
- #~ msgstr "Zobrazení obrázku v plné velikosti v lightboxu"
 
 
 
1245
 
1246
  #~ msgid "center"
1247
  #~ msgstr "střed"
@@ -1252,29 +1274,53 @@ msgstr "Установка %"
1252
  #~ msgid "Vertical"
1253
  #~ msgstr "Vertikálně"
1254
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1255
  #~ msgid "Learn More"
1256
- #~ msgstr "Dozvědět se více"
 
 
 
1257
 
1258
- #, fuzzy
1259
  #~ msgid ""
1260
  #~ "Turn off the checkbox, if you want to display image title just in a "
1261
  #~ "lightbox"
1262
- #~ msgstr "Vypněte políčko, chcete-li zobrazit text pouze v Lightboxu"
 
 
 
1263
 
1264
  #~ msgid "Border width in px, just numbers"
1265
  #~ msgstr "Šířka okraje v px, jen čísla"
1266
 
1267
- #, fuzzy
 
 
1268
  #~ msgid "by Attachment ID"
1269
- #~ msgstr "ID přílohy"
1270
 
1271
- #, fuzzy
1272
  #~ msgid "by Image Name"
1273
- #~ msgstr "Název obrázku"
1274
 
1275
- #, fuzzy
1276
  #~ msgid "by Date"
1277
- #~ msgstr "Datum"
 
 
 
 
 
 
1278
 
1279
  #~ msgid ""
1280
  #~ "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
@@ -1286,49 +1332,147 @@ msgstr "Установка %"
1286
  #~ msgstr ""
1287
  #~ "DESC (řadit sestupně od nejvyšší po nejnižší hodnotu - 3, 2, 1, c, b, a)"
1288
 
1289
- #, fuzzy
1290
  #~ msgid "Sort galleries"
1291
- #~ msgstr "Galerie"
 
 
 
1292
 
1293
- #, fuzzy
1294
  #~ msgid "by Title"
1295
- #~ msgstr "Titulek"
 
 
 
 
 
 
 
 
 
1296
 
1297
- #, fuzzy
1298
  #~ msgid "by Author"
1299
- #~ msgstr "Autor"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1300
 
1301
  #~ msgid "Display the Back link"
1302
  #~ msgstr "Zobrazit odkaz Zpět"
1303
 
 
 
 
1304
  #~ msgid "The Back link text"
1305
  #~ msgstr "Text odkazu Zpět"
1306
 
 
 
 
1307
  #~ msgid "Gallery page (Page with Gallery Template)"
1308
- #~ msgstr "Stránka Galerie (stránka šablony)"
1309
 
1310
  #~ msgid "(Full URL to custom page)"
1311
  #~ msgstr "(celá URL na vlastní stránku)"
1312
 
 
 
 
1313
  #~ msgid "Add gallery to the search"
1314
  #~ msgstr "Přidat galerii do vyhledávání"
1315
 
1316
- #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1317
  #~ msgid "Single gallery view"
1318
- #~ msgstr "Jména pro galerii"
 
 
 
1319
 
1320
- #, fuzzy
1321
  #~ msgid "Use pagination for images"
1322
- #~ msgstr "Aktualizuji obrázky..."
 
 
 
1323
 
1324
  #~ msgid "Lightbox background"
1325
- #~ msgstr "Pozadí Lightboxu"
1326
 
1327
  #~ msgid "Background transparency (from 0 to 1)"
1328
  #~ msgstr "Průhlednost pozadí (od 0 do 1)"
1329
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1330
  #~ msgid "FaceBook"
1331
- #~ msgstr "FaceBook"
1332
 
1333
  #~ msgid "Twitter"
1334
  #~ msgstr "Twitter"
@@ -1339,144 +1483,103 @@ msgstr "Установка %"
1339
  #~ msgid "Google +1"
1340
  #~ msgstr "Google +1"
1341
 
 
 
 
 
 
 
1342
  #~ msgid "left"
1343
  #~ msgstr "vlevo"
1344
 
 
 
 
1345
  #~ msgid "Slug for gallery item"
1346
- #~ msgstr "Jména pro galerii"
1347
 
1348
  #~ msgid "for any structure of permalinks except the default structure"
1349
- #~ msgstr "pro všechny struktury permalinks kromě výchozí struktury"
1350
 
1351
  #~ msgid "Save Changes"
1352
- #~ msgstr "Ulož změny"
1353
 
1354
- #, fuzzy
1355
- #~ msgid "Edit Attachment"
1356
- #~ msgstr "ID přílohy"
1357
-
1358
- #~ msgid "This setting is available in Pro version"
1359
- #~ msgstr "Toto nastavení je k dispozici ve verzi Pro"
1360
-
1361
- #, fuzzy
1362
  #~ msgid ""
1363
- #~ "The following files '%s' and '%s' were not found in the directory of your "
1364
- #~ "theme. Please copy them from the directory `%s` to the directory of your "
1365
- #~ "theme for the correct work of the Gallery plugin"
1366
  #~ msgstr ""
1367
- #~ "Následující soubory \"gallery-template.php\" a \"gallery-single-template."
1368
- #~ "php\"nebyly nalezeny v adresáři vašeho tématu WP. Zkopírujte prosím z "
1369
- #~ "adresáře `/wp-content/plugins/gallery-plugin/template/` do adresáře "
1370
- #~ "vašeho motivu pro správnou práci pluginu Gallery."
1371
-
1372
- #~ msgid "Select a background color"
1373
- #~ msgstr "Vyberte barvu pozadí"
1374
 
1375
- #, fuzzy
1376
- #~ msgid "Sort galleries by"
1377
- #~ msgstr "Řazení obrázků dle"
1378
-
1379
- #~ msgid "Width (in px)"
1380
- #~ msgstr "Šířka (v px)"
1381
-
1382
- #~ msgid "Height (in px)"
1383
- #~ msgstr "Výška (v px)"
1384
-
1385
- #~ msgid "Max width (in px)"
1386
- #~ msgstr "Max. šířka (v px)"
1387
-
1388
- #~ msgid "Max height (in px)"
1389
- #~ msgstr "Max. výška (v px)"
1390
-
1391
- #, fuzzy
1392
- #~ msgid "Display text under the image"
1393
- #~ msgstr "Zobrazený text nad obrázkem"
1394
 
1395
- #~ msgid "Notice:"
1396
- #~ msgstr "Poznámka:"
1397
 
1398
  #~ msgid ""
1399
- #~ "The plugin's settings have been changed. In order to save them please "
1400
- #~ "don't forget to click the 'Save Changes' button."
1401
  #~ msgstr ""
1402
- #~ "Nastavení pluginu bylo změněno. Nezapomeňte si nastavení uložit kliknutím "
1403
- #~ "na tlačítko \"Ulož změny\"."
1404
-
1405
- #~ msgid "Using Custom Search powered by"
1406
- #~ msgstr "Použití Custom Search powered by"
1407
 
1408
- #~ msgid "Activate Custom Search"
1409
- #~ msgstr "Povolení Custom Search"
1410
 
1411
- #~ msgid "Download Custom Search"
1412
- #~ msgstr "Stáhněte Custom Search"
1413
-
1414
- #, fuzzy
1415
- #~ msgid "Uploaded on"
1416
- #~ msgstr "Nahraj soubor"
1417
 
1418
- #~ msgid "(by click on image opens a link in a new window)"
1419
- #~ msgstr "(kliknutím na obrázek se otevře odkaz v novém okně)"
1420
 
1421
- #~ msgid "Add a Gallery"
1422
- #~ msgstr "Přidej galerii"
1423
 
1424
- #~ msgid "Find a Gallery"
1425
- #~ msgstr "Najdi galerii"
1426
 
1427
  #~ msgid ""
1428
- #~ "The gallery temp directory (gallery-plugin/upload/files) is not available "
1429
- #~ "for record on your webserver. Please use the standard WP functionality to "
1430
- #~ "upload images (media library)"
1431
  #~ msgstr ""
1432
- #~ "Adresář galerie temp (gallery-plugin/upload/files) není k dispozici pro "
1433
- #~ "zápis na váš webový server. Pro nahrání obrázků, použijte prosím "
1434
- #~ "standardní funkce WP (knihovna médií)"
1435
-
1436
- #~ msgid "Choose an image for upload:"
1437
- #~ msgstr "Vyberte obrázky pro upload:"
1438
 
1439
- #~ msgid "Allow the download link for all images in this gallery"
1440
- #~ msgstr "Nechte odkaz ke stažení pro všechny obrázky v této galerii"
1441
 
1442
  #~ msgid ""
1443
- #~ "Please use the drag and drop function to change an order of the images "
1444
- #~ "displaying and do not forget to save the post."
 
1445
  #~ msgstr ""
1446
- #~ "Chcete-li změnit pořadí snímků zobrazujících nezapomeňte uložit příspěvek "
1447
- #~ "Využijte funkci přetažení."
1448
-
1449
- #~ msgid "Please make a choice"
1450
- #~ msgstr "Vyberte volbu"
1451
 
1452
- #~ msgid "sort images"
1453
- #~ msgstr "řadit obrázky"
1454
-
1455
- #~ msgid "on the plugin settings page ("
1456
- #~ msgstr "na stránce pluginu ("
1457
 
1458
- #, fuzzy
1459
- #~ msgid "Open the URL"
1460
- #~ msgstr "Otevřete odkaz"
1461
 
1462
- #~ msgid "Current window"
1463
- #~ msgstr "Aktuální okno"
1464
 
1465
- #~ msgid "New window"
1466
- #~ msgstr "Nové okno"
1467
 
1468
- #~ msgid "Delete"
1469
- #~ msgstr "Smazat"
1470
 
1471
- #~ msgid ""
1472
- #~ "You can add a Single Gallery to the page or post by inserting this "
1473
- #~ "shortcode into the content"
1474
- #~ msgstr ""
1475
- #~ "Můžete přidat Galerii vložením tohoto zkráceného kódu na stránku nebo do "
1476
- #~ "příspěvku"
1477
 
1478
- #~ msgid "Publishing"
1479
- #~ msgstr "Vydavatelství"
1480
 
1481
- #~ msgid "Background color"
1482
- #~ msgstr "Barva pozadí"
2
  msgstr ""
3
  "Project-Id-Version: Gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-04-06 11:25+0300\n"
6
+ "PO-Revision-Date: 2017-04-06 11:25+0300\n"
7
+ "Last-Translator: Mik013\n"
8
+ "Language-Team: Mik013\n"
9
  "Language: cs\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "X-Poedit-KeywordsList: __;_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>=2 && n<=4) ? 1 : 2;\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: gallery-plugin.php:39 gallery-plugin.php:1389
21
+ #: inc/class-gllr-settings.php:308
22
  msgid "Gallery Settings"
23
  msgstr "Nastavení galerie"
24
 
25
+ #: gallery-plugin.php:39 inc/class-gllr-settings.php:319
 
26
  msgid "Global Settings"
27
+ msgstr "Obecná nastavení"
28
 
29
+ #: gallery-plugin.php:45 gallery-plugin.php:2495
30
  msgid "Upgrade to Pro"
31
+ msgstr "Aktualizovat na Pro"
32
 
33
  #: gallery-plugin.php:232
34
  msgid "Return to all albums"
35
+ msgstr "Vrátit se ke všem albům"
36
 
37
  #: gallery-plugin.php:242
38
  msgid "See images &raquo;"
39
+ msgstr "Prohlédnout obrázky &raquo;"
40
 
41
  #: gallery-plugin.php:248
42
  msgid "Download high resolution image"
46
  msgid "Galleries"
47
  msgstr "Galerie"
48
 
49
+ #: gallery-plugin.php:329 gallery-plugin.php:2788
50
  msgid "Gallery"
51
  msgstr "Galerie"
52
 
53
  #: gallery-plugin.php:330
54
  msgid "Add New Gallery"
55
+ msgstr "Přidat novou galerii"
56
 
57
  #: gallery-plugin.php:331
58
  msgid "Edit Gallery"
59
+ msgstr "Upravit galerii"
60
 
61
  #: gallery-plugin.php:332
62
  msgid "New Gallery"
64
 
65
  #: gallery-plugin.php:333
66
  msgid "View Gallery"
67
+ msgstr "Zobrazit galerii"
68
 
69
+ #: gallery-plugin.php:334 inc/class-gllr-settings.php:943
 
70
  msgid "Search Galleries"
71
+ msgstr "Hledat galerie"
72
 
73
  #: gallery-plugin.php:335
74
  msgid "No Gallery found"
78
  msgid "Gallery Shortcode"
79
  msgstr "Zkrácený kód galerie"
80
 
81
+ #: gallery-plugin.php:366 gallery-plugin.php:395 gallery-plugin.php:2771
 
82
  msgid "Gallery Categories"
83
+ msgstr "Kategorie galerií"
84
 
85
  #: gallery-plugin.php:376
86
  msgid ""
87
  "Add a single gallery with images to your posts, pages, custom post types or "
88
  "widgets by using the following shortcode:"
89
  msgstr ""
90
+ "Přidat galerii s obrázky do příspěvků, stránek, vlastních typů příspěvků "
91
+ "nebo widgetů pomocí následujícího zkráceného kódu:"
92
 
93
  #: gallery-plugin.php:380
94
  msgid ""
95
  "Add a gallery cover including featured image, description, and a link to "
96
  "your single gallery using the following shortcode:"
97
  msgstr ""
98
+ "Přidat obal galerie včetně náhledového obrázku, popisu a odkazu na vaši "
99
+ "konkrétní galerii pomocí následujícího zkráceného kódu:"
100
 
101
  #: gallery-plugin.php:396
102
  msgid "Most Used"
103
+ msgstr "Nejpoužívanější"
104
 
105
  #: gallery-plugin.php:401
106
  msgid "Default"
107
  msgstr "Výchozí"
108
 
109
  #: gallery-plugin.php:406
 
110
  msgid "Add New Gallery Category"
111
+ msgstr "Přidat novou kategorii galerie"
112
 
113
  #: gallery-plugin.php:410
114
+ #, php-format
115
  msgid "Install %s"
116
+ msgstr "Instalace %s"
117
 
118
+ #: gallery-plugin.php:554
 
119
  msgid "Gallery Category"
120
+ msgstr "Kategorie galerie"
121
 
122
+ #: gallery-plugin.php:813 gallery-plugin.php:920 gallery-plugin.php:1848
123
  msgid "Sorry, nothing found."
124
+ msgstr "Je nám líto, nic nenalezeno"
125
 
126
+ #: gallery-plugin.php:1318
127
  msgid "Featured Image"
128
+ msgstr "Náhledový obrázek"
129
 
130
+ #: gallery-plugin.php:1319 gallery-plugin.php:2352 gallery-plugin.php:2456
131
+ #: gallery-plugin.php:2567 inc/class-gllr-settings.php:656
132
  msgid "Title"
133
+ msgstr "Název"
134
 
135
+ #: gallery-plugin.php:1320 inc/class-gllr-settings.php:41
 
136
  msgid "Images"
137
+ msgstr "Obrázky"
138
 
139
+ #: gallery-plugin.php:1321
 
140
  msgid "Shortcode"
141
  msgstr "Zkrácený kód galerie"
142
 
143
+ #: gallery-plugin.php:1322 inc/class-gllr-settings.php:661
144
  msgid "Author"
145
  msgstr "Autor"
146
 
147
+ #: gallery-plugin.php:1323 inc/class-gllr-settings.php:511
148
+ #: inc/class-gllr-settings.php:657
149
  msgid "Date"
150
  msgstr "Datum"
151
 
152
+ #: gallery-plugin.php:1415 gallery-plugin.php:1432
153
+ #: inc/class-gllr-settings.php:30 inc/class-gllr-settings.php:42
154
  msgid "Settings"
155
  msgstr "Nastavení"
156
 
157
+ #: gallery-plugin.php:1416
158
  msgid "FAQ"
159
+ msgstr "Často kladené otázky (FAQ)"
160
 
161
+ #: gallery-plugin.php:1417
162
  msgid "Support"
163
  msgstr "Podpora"
164
 
165
+ #: gallery-plugin.php:1455
166
  msgid "Updating images..."
167
+ msgstr "Aktualizace obrázků..."
168
 
169
+ #: gallery-plugin.php:1456
 
170
  msgid "No images found."
171
+ msgstr "Nenalezeny žádné obrázky"
172
 
173
+ #: gallery-plugin.php:1457
 
174
  msgid "All images were updated."
175
+ msgstr "Všechny obrázky byly aktuálizovány"
176
 
177
+ #: gallery-plugin.php:1458
178
  msgid "Error."
179
  msgstr "Chyba."
180
 
181
+ #: gallery-plugin.php:1470
182
  msgid ""
183
  "You are about to remove these items from this gallery.\n"
184
  " 'Cancel' to stop, 'OK' to delete."
185
  msgstr ""
186
+ "Chystáte se odstranit tyto položky z této galerie.\n"
187
+ " 'Cancel' pro zrušení, 'OK' pro smazání."
188
 
189
+ #: gallery-plugin.php:1471
190
  msgid ""
191
  "You are about to remove this image from the gallery.\n"
192
  " 'Cancel' to stop, 'OK' to delete."
193
  msgstr ""
194
+ "Chystáte se odstranit tento obrázek z této galerie.\n"
195
+ " 'Cancel' pro zrušení, 'OK' pro smazání."
196
 
197
+ #: gallery-plugin.php:1472
198
  msgid ""
199
  "Switching to another mode, all unsaved data will be lost. Save data before "
200
  "switching?"
201
  msgstr ""
202
+ "Přepnutím do jiného módu dojde ke ztrátě všech neuložených dat. Uložit dat "
203
+ "před přepnutím?"
204
 
205
+ #: gallery-plugin.php:1473
206
  msgid "Insert Media"
207
+ msgstr "Vložit média"
208
 
209
+ #: gallery-plugin.php:1474
210
  msgid "Insert"
211
+ msgstr "Vložit"
212
 
213
+ #: gallery-plugin.php:1486
 
214
  msgid "Learn more"
215
  msgstr "Dozvědět se více"
216
 
217
+ #: gallery-plugin.php:1491
 
218
  msgid "Activate"
219
+ msgstr "Aktivovat"
220
 
221
+ #: gallery-plugin.php:1494 inc/class-gllr-settings.php:964
 
222
  msgid "Install Now"
223
+ msgstr "Instalovat nyní"
224
 
225
+ #: gallery-plugin.php:1504
226
  msgid "Add multiple gallery categories"
227
+ msgstr "Přidat více kategorií galerií"
228
 
229
+ #: gallery-plugin.php:1504
230
  msgid ""
231
  "Install Gallery Categories plugin to add unlimited number of categories."
232
  msgstr ""
233
+ "Nainstalovat Gallery Categories plugin pro možnost přidat neomezený počet "
234
+ "kategorií."
235
 
236
+ #: gallery-plugin.php:1513 inc/class-gllr-settings.php:330
237
+ #: inc/class-gllr-settings.php:387 inc/class-gllr-settings.php:431
238
+ #: inc/class-gllr-settings.php:481 inc/class-gllr-settings.php:598
239
+ #: inc/class-gllr-settings.php:686 inc/class-gllr-settings.php:722
240
+ #: inc/class-gllr-settings.php:772 inc/class-gllr-settings.php:925
241
  msgid "Close"
242
+ msgstr "Zavřít"
243
 
244
+ #: gallery-plugin.php:1876
245
  msgid "Image"
246
  msgstr "Obrázek"
247
 
248
+ #: gallery-plugin.php:2024
249
  msgid "Image size not defined"
250
  msgstr "Velikost obrázku není definována"
251
 
252
+ #: gallery-plugin.php:2039
 
253
  msgid ""
254
  "Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
255
  "reload images manually."
256
  msgstr ""
257
+ "Plugin dokáže aktualizovat pouze PNG, JPEG, GIF, WPMP nebo XBM soubory. "
258
+ "Ostatní musíte nahrát ručně."
259
 
260
+ #: gallery-plugin.php:2050
261
  msgid "Image size changes not defined"
262
  msgstr "Změna velikosti obrázku není definována"
263
 
264
+ #: gallery-plugin.php:2079 gallery-plugin.php:2082 gallery-plugin.php:2087
265
  msgid "Invalid path"
266
+ msgstr "Nesprávná cesta"
267
 
268
+ #: gallery-plugin.php:2176
269
  msgid "List View"
270
+ msgstr "Zobrazení seznamu"
271
 
272
+ #: gallery-plugin.php:2177
273
  msgid "Grid View"
274
+ msgstr "Zobrazení mřížky"
275
 
276
+ #: gallery-plugin.php:2232
277
  msgid "Filter"
278
+ msgstr "Filtr"
279
 
280
+ #: gallery-plugin.php:2236
281
  msgid "Empty Trash"
282
+ msgstr "Vysypat koš"
283
 
284
+ #: gallery-plugin.php:2257
 
285
  msgid "No images found"
286
+ msgstr "Nenalezeny žádné obrázky"
287
 
288
+ #: gallery-plugin.php:2309
289
  msgid "Select bulk action"
290
+ msgstr "Vyberte hromadnou akci"
291
 
292
+ #: gallery-plugin.php:2311
293
  msgid "Bulk Actions"
294
+ msgstr "Hromadné akce"
295
 
296
+ #: gallery-plugin.php:2321
297
  msgid "Apply"
298
+ msgstr "Použít"
299
 
300
+ #: gallery-plugin.php:2328
 
301
  msgid "Delete from Gallery"
302
+ msgstr "Smazat z galerie"
303
 
304
+ #: gallery-plugin.php:2337
305
  msgid "Bulk Select"
306
+ msgstr "Hromadný výběr"
307
 
308
+ #: gallery-plugin.php:2338
309
  msgid "Cancel Selection"
310
+ msgstr "Zrušit výběr"
311
 
312
+ #: gallery-plugin.php:2339
313
  msgid "Delete Selected"
314
+ msgstr "Smazat vybrané"
315
 
316
+ #: gallery-plugin.php:2350
317
  msgid "File"
318
+ msgstr "Soubor"
319
 
320
+ #: gallery-plugin.php:2351 gallery-plugin.php:2451 gallery-plugin.php:2562
321
  msgid "Dimensions"
322
+ msgstr "Rozměry"
323
 
324
+ #: gallery-plugin.php:2353 gallery-plugin.php:2462 gallery-plugin.php:2572
 
325
  msgid "Alt Text"
326
+ msgstr "Alternativní text (alt tag)"
327
 
328
+ #: gallery-plugin.php:2354 gallery-plugin.php:2466 gallery-plugin.php:2577
329
  msgid "URL"
330
  msgstr "URL"
331
 
332
+ #: gallery-plugin.php:2354 gallery-plugin.php:2468
333
  msgid ""
334
  "Enter your custom URL to link this image to other page or file. Leave blank "
335
  "to open a full size image."
336
  msgstr ""
337
+ "Zadejte vlastní URL pro odkaz u tohoto obrázku na jinou stránku nebo soubor. "
338
+ "Ponechte prázdné pro otevření obrázku v plné velikosti."
339
 
340
+ #: gallery-plugin.php:2433
 
341
  msgid "Remove Image from Gallery"
342
+ msgstr "Odstranit obrázek z galerie"
343
 
344
+ #: gallery-plugin.php:2436
 
345
  msgid "Edit Image Info"
346
+ msgstr "Upravit informace o obrázku"
347
 
348
+ #: gallery-plugin.php:2437
349
  msgid "Deselect"
350
+ msgstr "Zrušit výběr"
351
 
352
+ #: gallery-plugin.php:2449
353
  msgid "File name"
354
+ msgstr "Jméno souboru"
355
 
356
+ #: gallery-plugin.php:2450
357
  msgid "File type"
358
+ msgstr "Typ souboru"
359
 
360
+ #: gallery-plugin.php:2475
361
  msgid "Description"
362
+ msgstr "Popis"
363
 
364
+ #: gallery-plugin.php:2481
 
365
  msgid "Lightbox Button URL"
366
+ msgstr "URL tlačítka v Lightboxu"
367
 
368
+ #: gallery-plugin.php:2488
369
  msgid "New Tab"
370
+ msgstr "Nová záložka"
371
 
372
+ #: gallery-plugin.php:2490
373
  msgid "Enable to open URLs above in a new tab."
374
+ msgstr "Zapnout otevření URL adresy na nové záložce."
375
 
376
+ #: gallery-plugin.php:2495
377
  msgid "Go Pro"
378
+ msgstr "Přejít na PRO"
379
 
380
+ #: gallery-plugin.php:2501
381
  msgid "Edit more details"
382
+ msgstr "Upravit další detaily"
383
 
384
+ #: gallery-plugin.php:2503
 
385
  msgid "Remove from Gallery"
386
+ msgstr "Odstranit z galerie"
387
 
388
+ #: gallery-plugin.php:2537
389
  #, php-format
390
  msgid "Select %s"
391
+ msgstr "Vybrat %s"
392
 
393
+ #: gallery-plugin.php:2550
394
  #, php-format
395
  msgid "Edit &#8220;%s&#8221;"
396
+ msgstr "Upravit &#8220;%s&#8221;"
397
 
398
+ #: gallery-plugin.php:2558
 
399
  msgid "Edit Attachment Info"
400
+ msgstr "Upravit informace o příloze"
401
 
402
+ #: gallery-plugin.php:2595 gallery-plugin.php:2608
403
  msgid "Edit"
404
+ msgstr "Upravit"
405
 
406
+ #: gallery-plugin.php:2598 gallery-plugin.php:2613
407
  msgid "Trash"
408
+ msgstr "Koš"
409
 
410
+ #: gallery-plugin.php:2601 gallery-plugin.php:2616
411
  msgid "Delete Permanently"
412
+ msgstr "Smazat trvale"
413
 
414
+ #: gallery-plugin.php:2603 gallery-plugin.php:2622
415
  #, php-format
416
  msgid "View &#8220;%s&#8221;"
417
+ msgstr "Zobrazit &#8220;%s&#8221;"
418
 
419
+ #: gallery-plugin.php:2603 gallery-plugin.php:2622
420
  msgid "View"
421
+ msgstr "Zobrazit"
422
 
423
+ #: gallery-plugin.php:2605
 
424
  msgid "Attach"
425
+ msgstr "Přiložit"
426
 
427
+ #: gallery-plugin.php:2611
428
  msgid "Restore"
429
+ msgstr "Obnovit"
430
 
431
+ #: gallery-plugin.php:2741
432
  msgid "Warning"
433
+ msgstr "Upozornění"
434
 
435
+ #: gallery-plugin.php:2741
436
  msgid "You can add only images to the gallery"
437
+ msgstr "Do galerie můžete přidat pouze obrázky"
438
 
439
+ #: gallery-plugin.php:2773
440
  msgid "or"
441
+ msgstr "anebo"
442
 
443
+ #: gallery-plugin.php:2782
 
444
  msgid "no title"
445
+ msgstr "bez titulku"
446
 
447
+ #: gallery-plugin.php:2790
 
448
  msgid "Sorry, no gallery found."
449
+ msgstr "Je nám líto, žádná galerie nenalezena"
450
 
451
+ #: gallery-plugin.php:2796
 
452
  msgid ""
453
  "Display an album image with the description and the link to a single gallery "
454
  "page"
455
+ msgstr "Zobrazit obrázek alba s popisem a odkazem na danou stránku galerie"
 
 
456
 
457
+ #: inc/class-gllr-settings.php:31
458
  msgid "Cover"
459
+ msgstr "Obal"
460
 
461
+ #: inc/class-gllr-settings.php:32
 
462
  msgid "Lightbox"
463
+ msgstr "Lightbox"
464
 
465
+ #: inc/class-gllr-settings.php:33
466
  msgid "Social"
467
+ msgstr "Sociální"
468
 
469
+ #: inc/class-gllr-settings.php:34
470
  msgid "Misc"
471
+ msgstr "Různé"
472
 
473
+ #: inc/class-gllr-settings.php:35
474
  msgid "Custom Code"
475
+ msgstr "Vlastní kód"
476
 
477
+ #: inc/class-gllr-settings.php:36
478
  msgid "Import / Export"
479
+ msgstr "Import / Export"
480
 
481
+ #: inc/class-gllr-settings.php:37
482
  msgid "License Key"
483
+ msgstr "Licenční klíč"
484
 
485
+ #: inc/class-gllr-settings.php:208
486
  msgid "Custom image size was changed. You need to update gallery images."
487
  msgstr ""
488
+ "Vlastní velikost obrázku byla změněna. Je potřeba aktualizovat obrázky "
489
+ "galerie."
490
 
491
+ #: inc/class-gllr-settings.php:245
 
492
  msgid "Settings saved"
493
  msgstr "Nastavení uloženo"
494
 
495
+ #: inc/class-gllr-settings.php:257
 
496
  msgid "Please, enable JavaScript in Your browser."
497
+ msgstr "Prosím, povolte JavaScript ve vašem prohlížeči."
498
 
499
+ #: inc/class-gllr-settings.php:262
 
500
  msgid "Update Images"
501
+ msgstr "Aktualizace obrázků galerie"
502
 
503
+ #: inc/class-gllr-settings.php:277
 
504
  msgid "Gallery Images"
505
+ msgstr "Obrázky v galerii"
506
 
507
+ #: inc/class-gllr-settings.php:282
508
  msgid "Adding images requires JavaScript."
509
+ msgstr "Přidání obrázků vyžaduje JavaScript."
510
 
511
+ #: inc/class-gllr-settings.php:285
512
  msgid "Add Media"
513
+ msgstr "Přidat média"
514
 
515
+ #: inc/class-gllr-settings.php:294
516
  msgid "The grid view for the Gallery images requires JavaScript."
517
+ msgstr "Zobrazení obrázků galerie v mřížce vyžaduje JavaScript."
518
 
519
+ #: inc/class-gllr-settings.php:294
520
  msgid "Switch to the list view"
521
+ msgstr "Přepnout do zobrazení seznamu"
522
 
523
+ #: inc/class-gllr-settings.php:317
 
524
  msgid "Single Gallery Settings"
525
+ msgstr "Nastavení konkrétní galerie"
526
 
527
+ #: inc/class-gllr-settings.php:319
528
  #, php-format
529
  msgid "Enable to configure single gallery settings and disable %s."
530
+ msgstr "Umožňuje nastavení konkrétní galerie a zákaz %s."
531
 
532
+ #: inc/class-gllr-settings.php:334
 
533
  msgid "Gallery Layout"
534
+ msgstr "Vzhled galerie"
535
 
536
+ #: inc/class-gllr-settings.php:339
537
  msgid "Grid"
538
+ msgstr "Mřížka"
539
 
540
+ #: inc/class-gllr-settings.php:345
541
  msgid "Masonry"
542
+ msgstr "Dlaždice"
543
 
544
+ #: inc/class-gllr-settings.php:358
545
  msgid "Number of Columns"
546
+ msgstr "Počet sloupců"
547
 
548
+ #: inc/class-gllr-settings.php:360
549
  msgid "columns"
550
+ msgstr "sloupce"
551
 
552
+ #: inc/class-gllr-settings.php:361
553
  #, php-format
554
  msgid "Number of gallery columns (default is %s)."
555
+ msgstr "Počet sloupců galerie (výchozí hodnota je %s)."
556
 
557
+ #: inc/class-gllr-settings.php:365 inc/class-gllr-settings.php:726
 
558
  msgid "Image Size"
559
  msgstr "Velikost obrázku"
560
 
561
+ #: inc/class-gllr-settings.php:371 inc/class-gllr-settings.php:583
562
  msgid "Custom"
563
+ msgstr "Vlastní"
564
 
565
+ #: inc/class-gllr-settings.php:373
566
  msgid ""
567
  "Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
568
  msgstr ""
569
+ "Maximální velikost obrázku galerie. \"Vlastní\" používá hodnoty rozměru "
570
+ "obrázku."
571
 
572
+ #: inc/class-gllr-settings.php:377
 
573
  msgid "Custom Image Size"
574
+ msgstr "Vlastní velikost obrázku"
575
 
576
+ #: inc/class-gllr-settings.php:379 inc/class-gllr-settings.php:467
577
+ #: inc/class-gllr-settings.php:591 inc/class-gllr-settings.php:641
578
+ #: inc/class-gllr-settings.php:793
579
  msgid "px"
580
+ msgstr "px"
581
 
582
+ #: inc/class-gllr-settings.php:380
583
  msgid ""
584
  "Adjust these values based on the number of columns in your gallery. This "
585
  "won't effect the full size of your images in the lightbox."
586
  msgstr ""
587
+ "Upravit tyto hodnoty v závislosti na počtu sloupců ve galerii. Toto nemá "
588
+ "vliv na plnou velikost vašich snímků v Lightboxu."
589
 
590
+ #: inc/class-gllr-settings.php:391
 
591
  msgid "Crop Images"
592
+ msgstr "Oříznout obrázky"
593
 
594
+ #: inc/class-gllr-settings.php:393
595
  msgid ""
596
  "Enable to crop images using the sizes defined for Custom Image Size. Disable "
597
  "to resize images automatically using their aspect ratio."
598
  msgstr ""
599
+ "Umožní oříznutí snímků pomocí velikosti definované pro Vlastní velikost "
600
+ "obrázku. Zakáže změnu velikosti obrázků automaticky pomocí poměru jejich "
601
+ "stran."
602
 
603
+ #: inc/class-gllr-settings.php:397 inc/class-gllr-settings.php:608
 
604
  msgid "Crop Position"
605
  msgstr "Pozice ořezu"
606
 
607
+ #: inc/class-gllr-settings.php:412 inc/class-gllr-settings.php:623
608
  msgid "Select crop position base (by default: center)."
609
+ msgstr "Vybrat základnu pozice ořezu (výchozí: střed)."
610
 
611
+ #: inc/class-gllr-settings.php:422
 
612
  msgid "Image Title"
613
+ msgstr "Název obrázku:"
614
 
615
+ #: inc/class-gllr-settings.php:424
616
  msgid "Enable to display image title along with the gallery image."
617
+ msgstr "Povolit zobrazení názvu obrázku spolu s obrázkem galerie."
618
 
619
+ #: inc/class-gllr-settings.php:435
 
620
  msgid "Image Title Position"
621
+ msgstr "Umístění názvu obrázku"
622
 
623
+ #: inc/class-gllr-settings.php:440
 
624
  msgid "Under image"
625
+ msgstr "Pod obrázkem"
626
 
627
+ #: inc/class-gllr-settings.php:446
628
  msgid "On mouse hover"
629
+ msgstr "Při přejetí myší"
630
 
631
+ #: inc/class-gllr-settings.php:459
 
632
  msgid "Image Border"
633
+ msgstr "Rámeček obrázku"
634
 
635
+ #: inc/class-gllr-settings.php:461
636
  msgid ""
637
  "Enable images border using the styles defined for Image Border Size and "
638
  "Color."
639
  msgstr ""
640
+ "Povolit ohraničení obrázku s použitím stylů definovaných pro pohraniční "
641
+ "Image velikosti a barvy."
642
 
643
+ #: inc/class-gllr-settings.php:465
 
644
  msgid "Image Border Size"
645
+ msgstr "Velikost rámečku obrázku"
646
 
647
+ #: inc/class-gllr-settings.php:468
648
  #, php-format
649
  msgid "Gallery image border width (default is %s)"
650
+ msgstr "Šířka rámečku obrázku galerie (výchozí je %s)"
651
 
652
+ #: inc/class-gllr-settings.php:472
 
653
  msgid "Image Border Color"
654
+ msgstr "Barva rámečku obrázku"
655
 
656
+ #: inc/class-gllr-settings.php:485
657
  msgid "Pagination"
658
+ msgstr "Stránkování"
659
 
660
+ #: inc/class-gllr-settings.php:488
661
  msgid ""
662
  "Enable pagination for images to limit number of images displayed on a single "
663
  "gallery page."
664
  msgstr ""
665
+ "Povolit stránkování obrázků a omezit tak jejich počet zobrazených na jedné "
666
+ "stránce galerie."
667
 
668
+ #: inc/class-gllr-settings.php:492
 
669
  msgid "Number of Images"
670
+ msgstr "Počet obrázků"
671
 
672
+ #: inc/class-gllr-settings.php:495
673
  #, php-format
674
  msgid "Number of images displayed per page (default is %d)."
675
+ msgstr "Počet zobrazovaných obrázků na stránku (výchozí hodnota je %d)."
676
 
677
+ #: inc/class-gllr-settings.php:505
 
678
  msgid "Sort Images by"
679
  msgstr "Řazení obrázků dle"
680
 
681
+ #: inc/class-gllr-settings.php:508
682
  msgid "Manually (default)"
683
+ msgstr "Ručně (výchozí)"
684
 
685
+ #: inc/class-gllr-settings.php:509
 
686
  msgid "Image ID"
687
+ msgstr "ID obrázku"
688
 
689
+ #: inc/class-gllr-settings.php:510
690
  msgid "Name"
691
+ msgstr "Jméno"
692
 
693
+ #: inc/class-gllr-settings.php:512 inc/class-gllr-settings.php:662
694
  msgid "Random"
695
  msgstr "Náhodně"
696
 
697
+ #: inc/class-gllr-settings.php:514
698
  msgid ""
699
  "Select images sorting order in your gallery. By default, you can sort images "
700
  "manually in the images tab."
701
  msgstr ""
702
+ "Zvolte způsob řazení obrázků ve vaší galerii. Ve výchozím nastavení, můžete "
703
+ "snímky uspořádat ručně na kartě obrázky."
704
 
705
+ #: inc/class-gllr-settings.php:518
 
706
  msgid "Arrange Images by"
707
  msgstr "Řazení obrázků dle"
708
 
709
+ #: inc/class-gllr-settings.php:521 inc/class-gllr-settings.php:671
710
  msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
711
+ msgstr "Vzestupně (např. 1, 2, 3; a, b, c)"
712
 
713
+ #: inc/class-gllr-settings.php:522 inc/class-gllr-settings.php:672
714
  msgid "Descending (e.g. 3, 2, 1; c, b, a)"
715
+ msgstr "Sestupně (např. 3, 2, 1; c, b, a)"
716
 
717
+ #: inc/class-gllr-settings.php:527
 
718
  msgid "Back Link"
719
+ msgstr "Zpětný odkaz"
720
 
721
+ #: inc/class-gllr-settings.php:529
722
  msgid ""
723
  "Enable to show a back link in a single gallery page which navigate to a "
724
  "previous page."
725
  msgstr ""
726
+ "Povolit zobrazení zpětného odkazu na stránce galerie, který bude odkazovat "
727
+ "na předchozí stránku."
728
 
729
+ #: inc/class-gllr-settings.php:533
 
730
  msgid "Back Link URL"
731
+ msgstr "URL zpětného odkazu"
732
 
733
+ #: inc/class-gllr-settings.php:536
734
  msgid "Back link custom page URL. Leave blank to use Gallery page template."
735
  msgstr ""
736
+ "Zpětný URL odkaz na vlastní stránku. Ponechte nevyplněné pro použití "
737
+ "nastavení ze šablony galerie."
738
 
739
+ #: inc/class-gllr-settings.php:540
 
740
  msgid "Back Link Label"
741
+ msgstr "Popisek zpětného odkazu"
742
 
743
+ #: inc/class-gllr-settings.php:546
 
744
  msgid "Back Link with Shortcode"
745
+ msgstr "Zpětný odkaz se zkráceným kódem"
746
 
747
+ #: inc/class-gllr-settings.php:549
 
748
  msgid "Enable to display a back link on a page where shortcode is used."
749
+ msgstr ""
750
+ "Povolit zobrazení zpětného odkazu na stránce, kde se používá zkrácený kód."
751
 
752
+ #: inc/class-gllr-settings.php:560
 
753
  msgid "Cover Settings"
754
+ msgstr "Nastavení obalu"
755
 
756
+ #: inc/class-gllr-settings.php:565
 
757
  msgid "Galleries Page"
758
+ msgstr "Stránka galerií"
759
 
760
+ #: inc/class-gllr-settings.php:573
 
761
  msgid "Base page where all existing galleries will be displayed."
762
+ msgstr "Základní stránka, kde budou zobrazeny všechny existující galerie."
 
 
763
 
764
+ #: inc/class-gllr-settings.php:577
 
765
  msgid "Cover Image Size"
766
+ msgstr "Velikost obrázku obalu"
767
 
768
+ #: inc/class-gllr-settings.php:585
769
  msgid "Maximum cover image size. Custom uses the Image Dimensions values."
770
  msgstr ""
771
+ "Maximální velikost obalu obrázku galerie. \"Vlastní\" používá hodnoty "
772
+ "rozměru obrázku."
773
 
774
+ #: inc/class-gllr-settings.php:589
775
  msgid "Custom Cover Image Size"
776
+ msgstr "Vlastní velikost obrázku obalu"
777
 
778
+ #: inc/class-gllr-settings.php:602
779
  msgid "Crop Cover Images"
780
+ msgstr "Oříznout obrázky obalu"
781
 
782
+ #: inc/class-gllr-settings.php:604
783
  msgid ""
784
  "Enable to crop images using the sizes defined for Custom Cover Image Size. "
785
  "Disable to resize images automatically using their aspect ratio."
786
  msgstr ""
787
+ "Povolit oříznutí snímků pomocí velikosti definované pro Vlastní velikost "
788
+ "obrázku. Zakáže změnu velikosti obrázků automaticky pomocí poměru jejich "
789
+ "stran."
790
 
791
+ #: inc/class-gllr-settings.php:633
 
792
  msgid "Cover Image Border"
793
+ msgstr "Rámeček obrázku obalu"
794
 
795
+ #: inc/class-gllr-settings.php:635
796
  msgid ""
797
  "Enable cover images border using the styles defined for Image Border Size "
798
  "and Color."
799
  msgstr ""
800
+ "Povolit ohraničení obrázku obalu s použitím stylů definovaných pro Velikost "
801
+ "rámečku obrázku a Barvu."
802
 
803
+ #: inc/class-gllr-settings.php:639
804
  msgid "Cover Image Border Size"
805
+ msgstr "Velikost rámečku obrázku obalu"
806
 
807
+ #: inc/class-gllr-settings.php:642
808
  #, php-format
809
  msgid "Cover image border width (default is %s)"
810
+ msgstr "Šířka rámečku obrázku obalu (výchozí je %s)"
811
 
812
+ #: inc/class-gllr-settings.php:646
 
813
  msgid "Cover Image Border Color"
814
+ msgstr "Barva rámečku obrázku obalu"
815
 
816
+ #: inc/class-gllr-settings.php:652
 
817
  msgid "Sort Albums by"
818
+ msgstr "Řazení alb dle"
819
 
820
+ #: inc/class-gllr-settings.php:655
 
821
  msgid "Gallery ID"
822
+ msgstr "podle ID galerie"
823
 
824
+ #: inc/class-gllr-settings.php:658
825
  msgid "Last modified date"
826
+ msgstr "podle data poslední úpravy"
827
 
828
+ #: inc/class-gllr-settings.php:659
829
  msgid "Comment count"
830
+ msgstr "podle počtu komentářů"
831
 
832
+ #: inc/class-gllr-settings.php:660
 
833
  msgid "Sorting order (the input field for sorting order)"
834
+ msgstr "podle řazení (vstupní pole pro řazení v dialogovém okně)"
 
 
835
 
836
+ #: inc/class-gllr-settings.php:664
837
  msgid "Select galleries sorting order in your galleries page."
838
+ msgstr "Zvolit způsob řazení galerií na vaší stránce galerií."
839
 
840
+ #: inc/class-gllr-settings.php:668
841
  msgid "Arrange Albums by"
842
+ msgstr "Řazení alb dle"
843
 
844
+ #: inc/class-gllr-settings.php:677
 
845
  msgid "Read More Link Label"
846
+ msgstr "Popisek odkazu Dozvědět se více"
847
 
848
+ #: inc/class-gllr-settings.php:690
849
  msgid "Instant Lightbox"
850
+ msgstr "Instant Lightbox"
851
 
852
+ #: inc/class-gllr-settings.php:693
853
  msgid ""
854
  "Enable to display all images in the lightbox after clicking cover image or "
855
  "URL instead of going to a single gallery page."
856
  msgstr ""
857
+ "Povolit zobrazení všech obrázků v Lightboxu po kliknutí na obrázek obalu "
858
+ "nebo URL namísto přechodu na stránku konkrétní galerie."
859
 
860
+ #: inc/class-gllr-settings.php:707
 
861
  msgid "Lightbox Settings"
862
+ msgstr "Nastavení Lightbox"
863
 
864
+ #: inc/class-gllr-settings.php:712
865
  msgid "Enable Lightbox"
866
+ msgstr "Povolit Lightbox"
867
 
868
+ #: inc/class-gllr-settings.php:715
869
  msgid "Enable to show the lightbox when clicking on gallery images."
870
+ msgstr "Povolit zobrazení Lightboxu při kliknutí na obrázky galerie."
871
 
872
+ #: inc/class-gllr-settings.php:733
873
  msgid ""
874
  "Select the maximum gallery image size for the lightbox view. \"Default\" "
875
  "will display the original, full size image."
876
  msgstr ""
877
+ "Zvolte maximální velikost obrázku galerie pro zobrazení v Lightboxu. "
878
+ "\"Výchozí\" zobrazí původní obrázek v plné velikosti."
879
 
880
+ #: inc/class-gllr-settings.php:737
881
  msgid "Overlay Color"
882
+ msgstr "Barva překrytí"
883
 
884
+ #: inc/class-gllr-settings.php:743
885
  msgid "Overlay Opacity"
886
+ msgstr "Průhlednost překrytí"
887
 
888
+ #: inc/class-gllr-settings.php:746
889
  #, php-format
890
  msgid ""
891
  "Lightbox overlay opacity. Leave blank to disable opacity (default is %d, max "
892
  "is %d)."
893
  msgstr ""
894
+ "Překrytí a průhlednost Lightboxu. Pro vypnutí průhlednosti ponechte prázdné "
895
+ "(výchozí je % d, max je %d)."
896
 
897
+ #: inc/class-gllr-settings.php:756
 
898
  msgid "Slideshow"
899
+ msgstr "Prezentace"
900
 
901
+ #: inc/class-gllr-settings.php:758
902
  msgid "Enable to start the slideshow automatically when the lightbox is used."
903
+ msgstr "Povolit automatické spuštění prezentace při použití Lightboxu."
904
 
905
+ #: inc/class-gllr-settings.php:762
 
906
  msgid "Slideshow Duration"
907
  msgstr "Interval prezentace"
908
 
909
+ #: inc/class-gllr-settings.php:764
910
  msgid "ms"
911
+ msgstr "ms"
912
 
913
+ #: inc/class-gllr-settings.php:765
914
  msgid "Slideshow interval duration between two images."
915
+ msgstr "Interval prezentace mezi dvěma obrázky."
916
 
917
+ #: inc/class-gllr-settings.php:776
918
  msgid "Lightbox Helper"
919
+ msgstr "Lightbox pomocník"
920
 
921
+ #: inc/class-gllr-settings.php:778
922
  msgid "Enable to use a lightbox helper navigation between images."
923
+ msgstr "Povolit využívat Lightbox pomocníka při navigaci mezi snímky."
924
 
925
+ #: inc/class-gllr-settings.php:782
926
  msgid "Lightbox Helper Type"
927
+ msgstr "Typ pomocníka Lightbox"
928
 
929
+ #: inc/class-gllr-settings.php:785
 
930
  msgid "Thumbnails"
931
+ msgstr "Miniatury"
932
 
933
+ #: inc/class-gllr-settings.php:786
934
  msgid "Buttons"
935
+ msgstr "Tlačítka"
936
 
937
+ #: inc/class-gllr-settings.php:791
938
  msgid "Lightbox Helper Thumbnail Size"
939
+ msgstr "Lightbox pomocník velikost miniatur"
940
 
941
+ #: inc/class-gllr-settings.php:797
942
  msgid "Lightbox Helper Thumbnail Position"
943
+ msgstr "Lightbox pomocník umístění miniatur"
944
 
945
+ #: inc/class-gllr-settings.php:800
 
946
  msgid "Top"
947
+ msgstr "Nahoře"
948
 
949
+ #: inc/class-gllr-settings.php:801
 
950
  msgid "Bottom"
951
+ msgstr "Dole"
952
 
953
+ #: inc/class-gllr-settings.php:806
 
954
  msgid "Lightbox Button Label"
955
+ msgstr "Popisek tlačítka Lightboxu"
956
 
957
+ #: inc/class-gllr-settings.php:818
 
958
  msgid "Download Original File"
959
+ msgstr "Stáhnout původní soubor"
960
 
961
+ #: inc/class-gllr-settings.php:820
 
962
  msgid ""
963
  "Enable to display link to the original file under each image in the lightbox."
964
+ msgstr "Zobrazit odkaz na původní soubor pod každým obrázkem v Lightboxu"
965
 
966
+ #: inc/class-gllr-settings.php:824
967
  msgid "Download Link Label"
968
+ msgstr "Popisek odkazu Stáhnout"
969
 
970
+ #: inc/class-gllr-settings.php:830
971
  msgid "Single Lightbox"
972
+ msgstr "Jediný Lightbox"
973
 
974
+ #: inc/class-gllr-settings.php:832
 
975
  msgid ""
976
  "Enable to use a single lightbox for multiple galleries located on a single "
977
  "page."
978
+ msgstr "Povolit jeden Lightbox pro více galerií umístěných na jediné stránce."
979
 
980
+ #: inc/class-gllr-settings.php:842
981
  msgid "Social Sharing Buttons Settings"
982
+ msgstr "Nastavení Social Sharing Buttons"
983
 
984
+ #: inc/class-gllr-settings.php:850
985
  msgid "Enable Social Buttons"
986
+ msgstr "Povolit Social Buttons"
987
 
988
+ #: inc/class-gllr-settings.php:852
 
989
  msgid "Enable social sharing buttons in the Lightbox."
990
+ msgstr "Povolit Social Buttons v Lightboxu."
991
 
992
+ #: inc/class-gllr-settings.php:856
993
  msgid "Social Networks"
994
+ msgstr "Sociální sítě"
995
 
996
+ #: inc/class-gllr-settings.php:867
997
  msgid "Social Buttons Position"
998
+ msgstr "Umístění Social Buttons"
999
 
1000
+ #: inc/class-gllr-settings.php:870
1001
  msgid "Left"
1002
+ msgstr "Vlevo"
1003
 
1004
+ #: inc/class-gllr-settings.php:872
1005
  msgid "Select social buttons position in a lightbox."
1006
+ msgstr "Zvolte umístění Social Buttons v Lightboxu."
1007
 
1008
+ #: inc/class-gllr-settings.php:876
 
1009
  msgid "Counter"
1010
+ msgstr "Zobrazit počítadlo"
1011
 
1012
+ #: inc/class-gllr-settings.php:879
1013
  msgid "Enable to show likes counter for each social button."
1014
+ msgstr "Povolit zobrazení počítadla pro jednotlivá tlačítka."
1015
 
1016
+ #: inc/class-gllr-settings.php:894
 
1017
  msgid "Demo Data"
1018
+ msgstr "Demo data"
1019
 
1020
+ #: inc/class-gllr-settings.php:896
1021
  msgid ""
1022
  "Install demo data to create galleries with images, post with shortcodes and "
1023
  "page with a list of all galleries."
1024
  msgstr ""
1025
+ "Nainstalovat demo data pro vytvoření galerií s obrázky, příspěvkem se "
1026
+ "zkrácenými kódy a stránkou se seznamem všech galerií."
1027
 
1028
+ #: inc/class-gllr-settings.php:915
 
1029
  msgid "Gallery Post Type"
1030
+ msgstr "Typ příspěvku Galerie"
1031
 
1032
+ #: inc/class-gllr-settings.php:917
1033
  msgid ""
1034
  "Enable to avoid conflicts with other gallery plugins installed. All "
1035
  "galleries created earlier will stay unchanged. However, after enabling we "
1036
  "recommend to check settings of other plugins where \"gallery\" post type is "
1037
  "used."
1038
  msgstr ""
1039
+ "Pro předcházení problémům s jinými nainstalovanými pluginy - Povolte. "
1040
+ "Všechny dříve vytvořené galerie zůstanou beze změny. Nicméně, po povolení "
1041
+ "doporučujeme zkontrolovat nastavení dalších pluginů, které používají typ "
1042
+ "poříspěvku \"galerie\"."
1043
 
1044
+ #: inc/class-gllr-settings.php:929
 
1045
  msgid "Gallery Slug"
1046
+ msgstr "Název v URL Galerie"
1047
 
1048
+ #: inc/class-gllr-settings.php:933
1049
  msgid "Enter the unique gallery slug."
1050
+ msgstr "Vložit unikátní název v URL Galerie"
1051
 
1052
+ #: inc/class-gllr-settings.php:949
 
1053
  msgid "Activate Now"
1054
+ msgstr "Aktivovat nyní"
1055
 
1056
+ #: inc/class-gllr-settings.php:967
1057
  msgid "Enable to include galleries to your website search."
1058
+ msgstr "Povolit zahrnutí galerií do vyhledávání na vašem webu."
1059
 
1060
+ #: inc/class-gllr-settings.php:967
1061
  #, php-format
1062
  msgid "%s is required."
1063
+ msgstr "%s je vyžádován."
1064
 
1065
  #: inc/demo-data/class-bws-demo-data.php:33
 
1066
  msgid "Install Demo Data"
1067
+ msgstr "Instalovat demo data"
1068
 
1069
  #: inc/demo-data/class-bws-demo-data.php:36
1070
  msgid "Remove Demo Data"
1071
+ msgstr "Odstranit demo data"
1072
 
1073
  #: inc/demo-data/class-bws-demo-data.php:37
1074
  msgid "Delete demo data and restore old plugin settings."
1075
+ msgstr "Odstranit demo data a obnovit původní nastavení pluginu."
1076
 
1077
  #: inc/demo-data/class-bws-demo-data.php:50
1078
  msgid "Yes, install demo data"
1079
+ msgstr "Ano, instalovat demo data"
1080
 
1081
  #: inc/demo-data/class-bws-demo-data.php:51
1082
  msgid "Are you sure you want to install demo data?"
1083
+ msgstr "Opravdu chcete nainstalovat demo data?"
1084
 
1085
  #: inc/demo-data/class-bws-demo-data.php:53
1086
  msgid "Yes, remove demo data"
1087
+ msgstr "Ano, odstranit demo data"
1088
 
1089
  #: inc/demo-data/class-bws-demo-data.php:54
1090
  msgid "Are you sure you want to remove demo data?"
1091
+ msgstr "Opravdu chcete odinstalovat demo data?"
1092
 
1093
  #: inc/demo-data/class-bws-demo-data.php:61
 
1094
  msgid "No, go back to the settings page"
1095
+ msgstr "Ne, vrátit se na nastavení"
1096
 
1097
  #: inc/demo-data/class-bws-demo-data.php:111
1098
  msgid "Can not get demo data."
1099
+ msgstr "Nepodařilo se získat demo data."
1100
 
1101
  #: inc/demo-data/class-bws-demo-data.php:118
1102
  msgid "Demo settings already installed."
1103
+ msgstr "Demo data jsou již nainstalována."
1104
 
1105
  #: inc/demo-data/class-bws-demo-data.php:363
1106
  msgid "Demo data installed successfully."
1107
+ msgstr "Demo data byla úspěšně nainstalována."
1108
 
1109
  #: inc/demo-data/class-bws-demo-data.php:365
1110
  msgid "View post with shortcodes"
1111
+ msgstr "Zobrazit příspěvek se zkrácenými kódy"
1112
 
1113
  #: inc/demo-data/class-bws-demo-data.php:368
1114
  msgid "View page with examples"
1115
+ msgstr "Zobrazit stránku s příklady"
1116
 
1117
  #: inc/demo-data/class-bws-demo-data.php:379
1118
  msgid "Installation of demo data with some errors occurred."
1119
+ msgstr "V průběhu instalace demo dat došlo k chybám."
1120
 
1121
  #: inc/demo-data/class-bws-demo-data.php:382
1122
  msgid "Posts data is missing."
1123
+ msgstr "Chybí data příspěvku."
1124
 
1125
  #: inc/demo-data/class-bws-demo-data.php:454
1126
  msgid "Demo data have already been removed."
1127
+ msgstr "Demo data již byla odstraněna."
1128
 
1129
  #: inc/demo-data/class-bws-demo-data.php:511
1130
  msgid "Demo data successfully removed."
1131
+ msgstr "Demo data byla úspěšně odstraněna."
1132
 
1133
  #: inc/demo-data/class-bws-demo-data.php:515
1134
  msgid "Removing demo data with some errors occurred."
1135
+ msgstr "V průběhu odinstalace demo dat došlo k chybám."
1136
 
1137
  #: inc/demo-data/class-bws-demo-data.php:583
1138
  msgid "Close notice"
1139
+ msgstr "Zavřít upozornění"
1140
 
1141
  #: inc/demo-data/class-bws-demo-data.php:587
1142
  msgid ""
1143
  "Do you want to install demo content and settings (You can do this later "
1144
  "using Import / Export settings)?"
1145
  msgstr ""
1146
+ "Chcete nainstalovat demo obsah a nastavení (můžete to udělat i později "
1147
+ "pomocí nastavení Import / Export)?"
1148
 
1149
  #: inc/demo-data/class-bws-demo-data.php:587
 
1150
  msgid "Yes, install demo now"
1151
+ msgstr "Ano, instalovat demo data nyní"
1152
 
1153
+ #~ msgid ""
1154
+ #~ "The following files '%s' and '%s' were not found in the directory of your "
1155
+ #~ "theme. Please copy them from the directory `%s` to the directory of your "
1156
+ #~ "theme for the correct work of the Gallery plugin"
1157
+ #~ msgstr ""
1158
+ #~ "Následující soubory '%s' a '%s' nebyly nalezeny v adresáři vaší WP "
1159
+ #~ "šablony. Pro správnou práci pluginu Gallery je prosím zkopírujte z "
1160
+ #~ "adresáře `%s` do adresáře vaší šablony."
1161
 
 
1162
  #~ msgid ""
1163
  #~ "If you would like to add a Gallery to your page or post, please use %s "
1164
  #~ "button"
1165
  #~ msgstr ""
1166
+ #~ "Pokud chcete přidat galerii do vašeho příspěvku nebo na stránku, použijte "
1167
+ #~ "tlačítko %s"
1168
+
1169
+ #~ msgid ""
1170
+ #~ "You can add the Gallery to your page or post by clicking on %s button in "
1171
+ #~ "the content edit block using the Visual mode. If the button isn't "
1172
+ #~ "displayed, please use the shortcode below"
1173
+ #~ msgstr ""
1174
+ #~ "Na stránku nebo do příspěvku můžete galerii přidat klepnutím na tlačítko "
1175
+ #~ "%s na kartě pro úpravy obsahu ve vizuálním módu. Pokud tlačítko není "
1176
+ #~ "zobrazeno, použijte krátký kód níže"
1177
+
1178
+ #~ msgid ""
1179
+ #~ "Add this shortcode to a page, post or widget to display a single gallery"
1180
+ #~ msgstr ""
1181
+ #~ "Vložte tento zkrácený kód na stránku, příspěvek nebo widget pro "
1182
+ #~ "zobrazení dané galerie"
1183
 
 
1184
  #~ msgid ""
1185
  #~ "Use this shortcode to display an album image with the description and the "
1186
  #~ "link to a single gallery page"
1187
  #~ msgstr ""
1188
+ #~ "Pro zobrazení náhledového obrázku alba s popisem a odkazem na danou "
1189
+ #~ "galerii použijte tento zkrácený kód"
1190
+
1191
+ #~ msgid "Short display"
1192
+ #~ msgstr "Zobrazení alba"
1193
 
 
1194
  #~ msgid "Install plugin"
1195
+ #~ msgstr "Instalovat plugin"
1196
 
 
1197
  #~ msgid "Photos"
1198
+ #~ msgstr "Fotky"
1199
+
1200
+ #~ msgid "Settings are saved"
1201
+ #~ msgstr "Nastavení uloženo"
1202
 
 
1203
  #~ msgid "All plugin settings were restored."
1204
+ #~ msgstr "Byla obnovena všechna nastavení pluginu."
1205
+
1206
+ #~ msgid "Custom code"
1207
+ #~ msgstr "Vlastní kód"
1208
+
1209
+ #~ msgid "Go PRO"
1210
+ #~ msgstr "Přejít na PRO"
1211
 
1212
  #~ msgid "Please enable JavaScript to use the option to renew images."
1213
  #~ msgstr "Povolte JavaScript pro použití možnosti obnovení obrázků."
1214
 
1215
+ #~ msgid ""
1216
+ #~ "You can add the Gallery to your page or post by clicking on %s button in "
1217
+ #~ "the content edit block using the Visual mode. If the button isn't "
1218
+ #~ "displayed, please use the shortcode %s, where * stands for gallery ID"
1219
+ #~ msgstr ""
1220
+ #~ "Na stránku nebo do příspěvku můžete galerii přidat klepnutím na tlačítko "
1221
+ #~ "%s na kartě pro úpravy obsahu ve vizuálním módu. Pokud tlačítko není "
1222
+ #~ "zobrazeno, použijte krátký kód %s, kde * značí ID gallerie"
1223
+
1224
+ #~ msgid "Number of images in the row"
1225
+ #~ msgstr "Počet obrázků na řádku"
1226
+
1227
  #~ msgid ""
1228
  #~ "The number of images per row can be less depending on the width of the "
1229
  #~ "parent block"
1230
+ #~ msgstr ""
1231
+ #~ "Počet obrázků na řádku může být snížen v závislosti na šířce nadřazeného "
1232
+ #~ "bloku"
1233
+
1234
+ #~ msgid "Image size"
1235
+ #~ msgstr "Velikost obrázku"
1236
 
1237
  #~ msgid ""
1238
  #~ "WordPress will create a new thumbnail with the specified dimensions when "
1239
  #~ "you upload a new photo."
1240
  #~ msgstr ""
1241
+ #~ "Když nahrajete novou fotku, WordPress vytvoří novou miniaturu se zadanými "
1242
+ #~ "rozměry."
1243
 
 
1244
  #~ msgid "For the album cover"
1245
+ #~ msgstr "Pro obal alba"
1246
+
1247
+ #~ msgid "width x height"
1248
+ #~ msgstr "šířka x výška"
1249
+
1250
+ #~ msgid "in px"
1251
+ #~ msgstr "v px"
1252
+
1253
+ #~ msgid "For thumbnails"
1254
+ #~ msgstr "Pro miniatury"
1255
 
1256
  #~ msgid "Update images for gallery"
1257
+ #~ msgstr "Aktualizovat obrázky pro galerii"
1258
 
 
1259
  #~ msgid "For images in the lightbox"
1260
+ #~ msgstr "Velikost obrazků v lightboxu"
1261
 
1262
  #~ msgid "Display a full size image in the lightbox"
1263
+ #~ msgstr "Zobrazení obrázku v lightboxu v plné velikosti"
1264
+
1265
+ #~ msgid "Crop position"
1266
+ #~ msgstr "Pozice ořezu"
1267
 
1268
  #~ msgid "center"
1269
  #~ msgstr "střed"
1274
  #~ msgid "Vertical"
1275
  #~ msgstr "Vertikálně"
1276
 
1277
+ #~ msgid ""
1278
+ #~ "If you upgrade to Pro version all your settings and galleries will be "
1279
+ #~ "saved."
1280
+ #~ msgstr ""
1281
+ #~ "Pokud upgradujete na verzi Pro, všechna vaše nastavení a galerie zůstanou "
1282
+ #~ "zachovány."
1283
+
1284
+ #~ msgid "Unlock premium options by upgrading to Pro version"
1285
+ #~ msgstr "Odemkněte prémiové možnosti upgradem na Pro verzi"
1286
+
1287
+ #~ msgid "Start Your Trial"
1288
+ #~ msgstr "Vyzkoušejte po omezenou dobu"
1289
+
1290
  #~ msgid "Learn More"
1291
+ #~ msgstr "zjistěte více"
1292
+
1293
+ #~ msgid "Display image title"
1294
+ #~ msgstr "Zobrazit název obrázku"
1295
 
 
1296
  #~ msgid ""
1297
  #~ "Turn off the checkbox, if you want to display image title just in a "
1298
  #~ "lightbox"
1299
+ #~ msgstr "Od-zaškrtněte, chcete-li název obrázku zobrazit pouze v lightboxu"
1300
+
1301
+ #~ msgid "Images with border"
1302
+ #~ msgstr "Obrázek s okrajem"
1303
 
1304
  #~ msgid "Border width in px, just numbers"
1305
  #~ msgstr "Šířka okraje v px, jen čísla"
1306
 
1307
+ #~ msgid "Sort images"
1308
+ #~ msgstr "Řadit obrázky"
1309
+
1310
  #~ msgid "by Attachment ID"
1311
+ #~ msgstr "podle ID přílohy"
1312
 
 
1313
  #~ msgid "by Image Name"
1314
+ #~ msgstr "podle názvu obrázku"
1315
 
 
1316
  #~ msgid "by Date"
1317
+ #~ msgstr "podle datumu"
1318
+
1319
+ #~ msgid "by Sorting order in the Gallery"
1320
+ #~ msgstr "podle řazení v galerii"
1321
+
1322
+ #~ msgid "The images sort order"
1323
+ #~ msgstr "Řazení obrázků"
1324
 
1325
  #~ msgid ""
1326
  #~ "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
1332
  #~ msgstr ""
1333
  #~ "DESC (řadit sestupně od nejvyšší po nejnižší hodnotu - 3, 2, 1, c, b, a)"
1334
 
 
1335
  #~ msgid "Sort galleries"
1336
+ #~ msgstr "Řazení galerií"
1337
+
1338
+ #~ msgid "by Gallery ID"
1339
+ #~ msgstr "podle ID galerie"
1340
 
 
1341
  #~ msgid "by Title"
1342
+ #~ msgstr "podle názvu"
1343
+
1344
+ #~ msgid "by Last modified date"
1345
+ #~ msgstr "podle data poslední úpravy"
1346
+
1347
+ #~ msgid "by Comment count"
1348
+ #~ msgstr "podle počtu komentářů"
1349
+
1350
+ #~ msgid "by Sorting order (the input field for sorting order)"
1351
+ #~ msgstr "podle řazení (vstupní pole pro řazení v dialogovém okně)"
1352
 
 
1353
  #~ msgid "by Author"
1354
+ #~ msgstr "podle autora"
1355
+
1356
+ #~ msgid "The galleries sort order"
1357
+ #~ msgstr "Řazení galerií"
1358
+
1359
+ #~ msgid "Start slideshow"
1360
+ #~ msgstr "Spustit prezentaci"
1361
+
1362
+ #~ msgid "Slideshow interval"
1363
+ #~ msgstr "Interval prezentace"
1364
+
1365
+ #~ msgid "(ms)"
1366
+ #~ msgstr "(ms)"
1367
+
1368
+ #~ msgid "Use single lightbox for multiple galleries on one page"
1369
+ #~ msgstr "Použít jediný lightbox pro více galerií na jedné stránce"
1370
 
1371
  #~ msgid "Display the Back link"
1372
  #~ msgstr "Zobrazit odkaz Zpět"
1373
 
1374
+ #~ msgid "Display the Back link in the shortcode"
1375
+ #~ msgstr "Zobrazit odkaz Zpět ve zkráceném kódu"
1376
+
1377
  #~ msgid "The Back link text"
1378
  #~ msgstr "Text odkazu Zpět"
1379
 
1380
+ #~ msgid "The Back link URL"
1381
+ #~ msgstr "URL odkazu Zpět "
1382
+
1383
  #~ msgid "Gallery page (Page with Gallery Template)"
1384
+ #~ msgstr "Stránka galerie (stránka s šablonou galerie)"
1385
 
1386
  #~ msgid "(Full URL to custom page)"
1387
  #~ msgstr "(celá URL na vlastní stránku)"
1388
 
1389
+ #~ msgid "The Read More link text"
1390
+ #~ msgstr "Text odkazu Čtěte více"
1391
+
1392
  #~ msgid "Add gallery to the search"
1393
  #~ msgstr "Přidat galerii do vyhledávání"
1394
 
1395
+ #~ msgid "Using"
1396
+ #~ msgstr "S použitím"
1397
+
1398
+ #~ msgid "powered by"
1399
+ #~ msgstr "vytvořeno"
1400
+
1401
+ #~ msgid "Download"
1402
+ #~ msgstr "Stáhnout"
1403
+
1404
+ #~ msgid "Rewrite templates after update"
1405
+ #~ msgstr "Přepsat šablony při aktualizaci"
1406
+
1407
+ #~ msgid ""
1408
+ #~ "Turn off the checkbox, if You edited the file '%s' or '%s' file in your "
1409
+ #~ "theme folder and You don't want to rewrite them"
1410
+ #~ msgstr ""
1411
+ #~ "Od-zaškrtněte, pokud máte upravený soubor '%s' nebo '%s' ve složce vaší "
1412
+ #~ "šablony, aby jste zabránili jejich přepsání"
1413
+
1414
+ #~ msgid "Rename gallery post type"
1415
+ #~ msgstr "Přejmenovat typ příspěvku galerie"
1416
+
1417
+ #~ msgid ""
1418
+ #~ "To avoid conflicts with other plugins, please mark this checkbox to "
1419
+ #~ "rename it now"
1420
+ #~ msgstr ""
1421
+ #~ "Aby nedocházelo ke konfliktům s jinými pluginy, označte toto políčko pro "
1422
+ #~ "přejmenování nyní"
1423
+
1424
+ #~ msgid ""
1425
+ #~ "All galleries created earlier will stay unchanged, however, after "
1426
+ #~ "renaming, please check settings of your other plugins where 'gallery' "
1427
+ #~ "post type is used"
1428
+ #~ msgstr ""
1429
+ #~ "Všechny galerie vytvořené dříve zůstanou beze změny, nicméně, po "
1430
+ #~ "přejmenování, zkontrolujte nastavení vašich dalších pluginů, kde je typ "
1431
+ #~ "příspěvku \"galerie\" používán"
1432
+
1433
  #~ msgid "Single gallery view"
1434
+ #~ msgstr "Vzhled jednotlivé galerie"
1435
+
1436
+ #~ msgid "By mouse hover"
1437
+ #~ msgstr "Při přejetí myší"
1438
 
 
1439
  #~ msgid "Use pagination for images"
1440
+ #~ msgstr "Pro obrázky použít stránkování"
1441
+
1442
+ #~ msgid "per page"
1443
+ #~ msgstr "na stránku"
1444
 
1445
  #~ msgid "Lightbox background"
1446
+ #~ msgstr "Pozadí lightboxu"
1447
 
1448
  #~ msgid "Background transparency (from 0 to 1)"
1449
  #~ msgstr "Průhlednost pozadí (od 0 do 1)"
1450
 
1451
+ #~ msgid ""
1452
+ #~ "Display all images in the lightbox instead of going into a single gallery"
1453
+ #~ msgstr ""
1454
+ #~ "Zobrazovat všechny obrázky v lightboxu, namísto přechodu do další galerie"
1455
+
1456
+ #~ msgid "When using the gallery template or a shortcode with `%s` parameter"
1457
+ #~ msgstr "Při použití šablony galerie nebo zkráceného kódu s parametrem `%s`"
1458
+
1459
+ #~ msgid "The lightbox helper"
1460
+ #~ msgstr "Pomůcka lightbox"
1461
+
1462
+ #~ msgid "Do not use"
1463
+ #~ msgstr "Nepoužívat"
1464
+
1465
+ #~ msgid "Button helper"
1466
+ #~ msgstr "Pomůcka tlačítko"
1467
+
1468
+ #~ msgid "Thumbnail helper"
1469
+ #~ msgstr "Pomůcka miniatura"
1470
+
1471
+ #~ msgid "Display Like buttons in the lightbox"
1472
+ #~ msgstr "Zobrazit tlačítka Like v lightboxu"
1473
+
1474
  #~ msgid "FaceBook"
1475
+ #~ msgstr "Facebook"
1476
 
1477
  #~ msgid "Twitter"
1478
  #~ msgstr "Twitter"
1483
  #~ msgid "Google +1"
1484
  #~ msgstr "Google +1"
1485
 
1486
+ #~ msgid "Show counter"
1487
+ #~ msgstr "Zobrazit počítadlo"
1488
+
1489
+ #~ msgid "Align"
1490
+ #~ msgstr "Zarovnat"
1491
+
1492
  #~ msgid "left"
1493
  #~ msgstr "vlevo"
1494
 
1495
+ #~ msgid "Title for lightbox button"
1496
+ #~ msgstr "Titulek tlačítka v lightboxu"
1497
+
1498
  #~ msgid "Slug for gallery item"
1499
+ #~ msgstr "Krátká URL pro položku galerie"
1500
 
1501
  #~ msgid "for any structure of permalinks except the default structure"
1502
+ #~ msgstr "pro všechny struktury trvalých odkazů kromě výchozí struktury"
1503
 
1504
  #~ msgid "Save Changes"
1505
+ #~ msgstr "Uložit změny"
1506
 
 
 
 
 
 
 
 
 
1507
  #~ msgid ""
1508
+ #~ "If you install the demo-data, will be created galleries with images, demo-"
1509
+ #~ "post with available shortcodes and page with a list of all the galleries."
 
1510
  #~ msgstr ""
1511
+ #~ "Pokud nainstalujete demo-data, bude vytvořena galerie s obrázky, demo-"
1512
+ #~ "příspěvek s dostupnými krátkými kódy a stránka se seznamem všech galerií."
 
 
 
 
 
1513
 
1514
+ #~ msgid "No image found."
1515
+ #~ msgstr "Nenalezen žádný obrázek."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1516
 
1517
+ #~ msgid "All images are updated."
1518
+ #~ msgstr "Všechny obrázky jsou aktualizovány."
1519
 
1520
  #~ msgid ""
1521
+ #~ "You are about to delete these items from this gallery.\n"
1522
+ #~ " 'Cancel' to stop, 'OK' to delete."
1523
  #~ msgstr ""
1524
+ #~ "Chystáte se odstranit tyto položky z této galerie.\n"
1525
+ #~ " 'Cancel' pro zrušení, 'OK' pro smazání."
 
 
 
1526
 
1527
+ #~ msgid "Install now"
1528
+ #~ msgstr "Instalovat nyní"
1529
 
1530
+ #~ msgid ""
1531
+ #~ "We can update only PNG, JPEG, GIF, WPMP or XBM filetype. For other, "
1532
+ #~ "please, manually reload image."
1533
+ #~ msgstr ""
1534
+ #~ "Můžeme aktualizovat pouze soubory formátu: PNG, JPEG, GIF, WPMP nebo XBM. "
1535
+ #~ "Ostatní musíte (znovu)nahrát ručně."
1536
 
1537
+ #~ msgid "Add images requires JavaScript."
1538
+ #~ msgstr "Přidání obrázků vyžaduje JavaScript."
1539
 
1540
+ #~ msgid "Display link to the original file under each image in the lightbox"
1541
+ #~ msgstr "Zobrazit odkaz na původní soubor pod každým obrázkem v lightboxu"
1542
 
1543
+ #~ msgid "Alt tag"
1544
+ #~ msgstr "Alt popisek"
1545
 
1546
  #~ msgid ""
1547
+ #~ "The alt attribute specifies an alternate text for an image, if the image "
1548
+ #~ "cannot be displayed."
 
1549
  #~ msgstr ""
1550
+ #~ "Atribut alt určuje alternativní text k obrázku, pokud jej nelze zobrazit."
 
 
 
 
 
1551
 
1552
+ #~ msgid "Custom URL"
1553
+ #~ msgstr "Vlastní URL"
1554
 
1555
  #~ msgid ""
1556
+ #~ "By clicking on the thumbnail you'll go to the link (if the field is "
1557
+ #~ "filled) or the image will be opened in the lightbox (if the field isn't "
1558
+ #~ "filled)"
1559
  #~ msgstr ""
1560
+ #~ "Po kliknutí na miniaturu přejdete na odkaz (pokud je pole vyplněno) nebo "
1561
+ #~ "obrázek bude otevřen v lightboxu (pokud pole vyplněno není)"
 
 
 
1562
 
1563
+ #~ msgid "Edit Attachment"
1564
+ #~ msgstr "Upravit přílohu"
 
 
 
1565
 
1566
+ #~ msgid "Pro version"
1567
+ #~ msgstr "Pro verze"
 
1568
 
1569
+ #~ msgid "This setting is available in Pro version"
1570
+ #~ msgstr "Toto nastavení je k dispozici ve verzi Pro"
1571
 
1572
+ #~ msgid "Delete demo-data and restore old plugin settings."
1573
+ #~ msgstr "Odstranit demo data a obnovit původní nastavení pluginu."
1574
 
1575
+ #~ msgid "Demo options already installed."
1576
+ #~ msgstr "Demo data jsou již nainstalována."
1577
 
1578
+ #~ msgid "Demo data successfully installed."
1579
+ #~ msgstr "Demo data byla úspěšně nainstalována."
 
 
 
 
1580
 
1581
+ #~ msgid "Install demo data"
1582
+ #~ msgstr "Instalovat demo data"
1583
 
1584
+ #~ msgid "for an acquaintance with the possibilities of the"
1585
+ #~ msgstr "pro seznámení se s možnostmi"
languages/gallery-plugin-fr_FR.mo CHANGED
Binary file
languages/gallery-plugin-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-01-26 10:38+0300\n"
6
- "PO-Revision-Date: 2017-01-26 10:38+0300\n"
7
  "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Didier, L Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
@@ -15,20 +15,19 @@ msgstr ""
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
- "X-Generator: Poedit 1.5.4\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: gallery-plugin.php:39 gallery-plugin.php:1420
22
- #: inc/class-gllr-settings.php:287
23
  msgid "Gallery Settings"
24
  msgstr "Paramètres de la galerie"
25
 
26
- #: gallery-plugin.php:39 inc/class-gllr-settings.php:298
27
- #, fuzzy
28
  msgid "Global Settings"
29
- msgstr "Paramètres de la galerie"
30
 
31
- #: gallery-plugin.php:45 gallery-plugin.php:2526
32
  msgid "Upgrade to Pro"
33
  msgstr "Passer à la version PRO"
34
 
@@ -48,7 +47,7 @@ msgstr "Télécharger l'image en haute résolution"
48
  msgid "Galleries"
49
  msgstr "Galeries"
50
 
51
- #: gallery-plugin.php:329 gallery-plugin.php:2819
52
  msgid "Gallery"
53
  msgstr "Galerie"
54
 
@@ -68,7 +67,7 @@ msgstr "Nouvelle galerie"
68
  msgid "View Gallery"
69
  msgstr "Voir la galerie"
70
 
71
- #: gallery-plugin.php:334 inc/class-gllr-settings.php:920
72
  msgid "Search Galleries"
73
  msgstr "Rechercher une galerie"
74
 
@@ -80,7 +79,7 @@ msgstr "Pas de galeries trouvées"
80
  msgid "Gallery Shortcode"
81
  msgstr "Code court de la galerie"
82
 
83
- #: gallery-plugin.php:366 gallery-plugin.php:395 gallery-plugin.php:2802
84
  msgid "Gallery Categories"
85
  msgstr "Catégories de galeries"
86
 
@@ -89,12 +88,16 @@ msgid ""
89
  "Add a single gallery with images to your posts, pages, custom post types or "
90
  "widgets by using the following shortcode:"
91
  msgstr ""
 
 
92
 
93
  #: gallery-plugin.php:380
94
  msgid ""
95
  "Add a gallery cover including featured image, description, and a link to "
96
  "your single gallery using the following shortcode:"
97
  msgstr ""
 
 
98
 
99
  #: gallery-plugin.php:396
100
  msgid "Most Used"
@@ -113,74 +116,70 @@ msgstr "Ajouter une nouvelle catégorie de galerie"
113
  msgid "Install %s"
114
  msgstr "Installation %s"
115
 
116
- #: gallery-plugin.php:552
117
  msgid "Gallery Category"
118
  msgstr "Catégories de galeries"
119
 
120
- #: gallery-plugin.php:811 gallery-plugin.php:955 gallery-plugin.php:1879
121
  msgid "Sorry, nothing found."
122
  msgstr "Désolé, rien n'a été trouvé"
123
 
124
- #: gallery-plugin.php:1349
125
  msgid "Featured Image"
126
- msgstr ""
127
 
128
- #: gallery-plugin.php:1350 gallery-plugin.php:2383 gallery-plugin.php:2487
129
- #: gallery-plugin.php:2598 inc/class-gllr-settings.php:635
130
  msgid "Title"
131
  msgstr "Titre"
132
 
133
- #: gallery-plugin.php:1351 inc/class-gllr-settings.php:40
134
- #, fuzzy
135
  msgid "Images"
136
- msgstr "Image "
137
 
138
- #: gallery-plugin.php:1352
139
  msgid "Shortcode"
140
  msgstr "Code court"
141
 
142
- #: gallery-plugin.php:1353 inc/class-gllr-settings.php:640
143
  msgid "Author"
144
  msgstr "Auteur"
145
 
146
- #: gallery-plugin.php:1354 inc/class-gllr-settings.php:490
147
- #: inc/class-gllr-settings.php:636
148
  msgid "Date"
149
  msgstr "Date"
150
 
151
- #: gallery-plugin.php:1446 gallery-plugin.php:1463
152
- #: inc/class-gllr-settings.php:29 inc/class-gllr-settings.php:41
153
  msgid "Settings"
154
  msgstr "Paramètres"
155
 
156
- #: gallery-plugin.php:1447
157
  msgid "FAQ"
158
  msgstr "FAQ"
159
 
160
- #: gallery-plugin.php:1448
161
  msgid "Support"
162
  msgstr "Soutien"
163
 
164
- #: gallery-plugin.php:1486
165
  msgid "Updating images..."
166
  msgstr "Mise à jour des images..."
167
 
168
- #: gallery-plugin.php:1487
169
- #, fuzzy
170
  msgid "No images found."
171
- msgstr "Pas d'image trouvée"
172
 
173
- #: gallery-plugin.php:1488
174
- #, fuzzy
175
  msgid "All images were updated."
176
  msgstr "Toutes les images ont été mises à jour."
177
 
178
- #: gallery-plugin.php:1489
179
  msgid "Error."
180
  msgstr "Erreur."
181
 
182
- #: gallery-plugin.php:1501
183
- #, fuzzy
184
  msgid ""
185
  "You are about to remove these items from this gallery.\n"
186
  " 'Cancel' to stop, 'OK' to delete."
@@ -188,8 +187,7 @@ msgstr ""
188
  "Vous allez supprimer ces éléments de la galerie.\n"
189
  "'Annuler' pour arrêter, 'Ok' pour supprimer"
190
 
191
- #: gallery-plugin.php:1502
192
- #, fuzzy
193
  msgid ""
194
  "You are about to remove this image from the gallery.\n"
195
  " 'Cancel' to stop, 'OK' to delete."
@@ -197,7 +195,7 @@ msgstr ""
197
  "Vous allez supprimer ces éléments de la galerie.\n"
198
  "'Annuler' pour arrêter, 'Ok' pour supprimer"
199
 
200
- #: gallery-plugin.php:1503
201
  msgid ""
202
  "Switching to another mode, all unsaved data will be lost. Save data before "
203
  "switching?"
@@ -205,55 +203,54 @@ msgstr ""
205
  "ou plus! Nous ne garantissons pas que notre extension fonctionne "
206
  "correctement. Merci de mettre à jour votre version de WordPress."
207
 
208
- #: gallery-plugin.php:1504
209
  msgid "Insert Media"
210
  msgstr "Insérer un média"
211
 
212
- #: gallery-plugin.php:1505
213
  msgid "Insert"
214
  msgstr "Insérer"
215
 
216
- #: gallery-plugin.php:1517
217
  msgid "Learn more"
218
  msgstr "En savoir plus"
219
 
220
- #: gallery-plugin.php:1522
221
  msgid "Activate"
222
  msgstr "Activer"
223
 
224
- #: gallery-plugin.php:1525 inc/class-gllr-settings.php:932
225
  msgid "Install Now"
226
  msgstr "Installer maintenant"
227
 
228
- #: gallery-plugin.php:1535
229
  msgid "Add multiple gallery categories"
230
  msgstr "Ajouter des catégories de galeries"
231
 
232
- #: gallery-plugin.php:1535
233
  msgid ""
234
  "Install Gallery Categories plugin to add unlimited number of categories."
235
  msgstr ""
236
  "Installer l'extension 'Gallery Categories' pour ajouter un nombre infini de "
237
  "catégories."
238
 
239
- #: gallery-plugin.php:1544 inc/class-gllr-settings.php:309
240
- #: inc/class-gllr-settings.php:366 inc/class-gllr-settings.php:410
241
- #: inc/class-gllr-settings.php:460 inc/class-gllr-settings.php:577
242
- #: inc/class-gllr-settings.php:665 inc/class-gllr-settings.php:701
243
- #: inc/class-gllr-settings.php:751 inc/class-gllr-settings.php:902
244
  msgid "Close"
245
  msgstr "Fermer"
246
 
247
- #: gallery-plugin.php:1907
248
  msgid "Image"
249
  msgstr "Image "
250
 
251
- #: gallery-plugin.php:2055
252
  msgid "Image size not defined"
253
  msgstr "Taille de l'image non définie"
254
 
255
- #: gallery-plugin.php:2070
256
- #, fuzzy
257
  msgid ""
258
  "Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
259
  "reload images manually."
@@ -261,201 +258,198 @@ msgstr ""
261
  "Il n'est possible de mettre à jour que les images de type PNG, JPEG, GIF, "
262
  "WPMP or XBM. Pour les autres, merci de faire une mise à jour manuelle."
263
 
264
- #: gallery-plugin.php:2081
265
  msgid "Image size changes not defined"
266
  msgstr "La modification de la taille n'est pas définie"
267
 
268
- #: gallery-plugin.php:2110 gallery-plugin.php:2113 gallery-plugin.php:2118
269
  msgid "Invalid path"
270
  msgstr "Chemin invalide"
271
 
272
- #: gallery-plugin.php:2207
273
  msgid "List View"
274
  msgstr "Vue en mode liste"
275
 
276
- #: gallery-plugin.php:2208
277
  msgid "Grid View"
278
  msgstr "Vue en mode grille"
279
 
280
- #: gallery-plugin.php:2263
281
  msgid "Filter"
282
  msgstr "Filtrer"
283
 
284
- #: gallery-plugin.php:2267
285
  msgid "Empty Trash"
286
  msgstr "Vider la corbeille"
287
 
288
- #: gallery-plugin.php:2288
289
  msgid "No images found"
290
  msgstr "Pas d'image trouvée"
291
 
292
- #: gallery-plugin.php:2340
293
  msgid "Select bulk action"
294
  msgstr "Sélectionne l'action en masse"
295
 
296
- #: gallery-plugin.php:2342
297
  msgid "Bulk Actions"
298
  msgstr "Actions en masse"
299
 
300
- #: gallery-plugin.php:2352
301
  msgid "Apply"
302
  msgstr "Appliquer"
303
 
304
- #: gallery-plugin.php:2359
305
  msgid "Delete from Gallery"
306
  msgstr "Supprimer de la galerie"
307
 
308
- #: gallery-plugin.php:2368
309
  msgid "Bulk Select"
310
  msgstr "Sélection en masse"
311
 
312
- #: gallery-plugin.php:2369
313
  msgid "Cancel Selection"
314
  msgstr "Annuler la sélection"
315
 
316
- #: gallery-plugin.php:2370
317
  msgid "Delete Selected"
318
  msgstr "Supprimer la sélection"
319
 
320
- #: gallery-plugin.php:2381
321
  msgid "File"
322
  msgstr "Fichier"
323
 
324
- #: gallery-plugin.php:2382 gallery-plugin.php:2482 gallery-plugin.php:2593
325
  msgid "Dimensions"
326
  msgstr "Dimensions"
327
 
328
- #: gallery-plugin.php:2384 gallery-plugin.php:2493 gallery-plugin.php:2603
329
- #, fuzzy
330
  msgid "Alt Text"
331
- msgstr "Tag Alt"
332
 
333
- #: gallery-plugin.php:2385 gallery-plugin.php:2497 gallery-plugin.php:2608
334
  msgid "URL"
335
  msgstr "URL"
336
 
337
- #: gallery-plugin.php:2385 gallery-plugin.php:2499
338
  msgid ""
339
  "Enter your custom URL to link this image to other page or file. Leave blank "
340
  "to open a full size image."
341
  msgstr ""
 
 
342
 
343
- #: gallery-plugin.php:2464
344
- #, fuzzy
345
  msgid "Remove Image from Gallery"
346
- msgstr "Supprimer de la galerie"
347
 
348
- #: gallery-plugin.php:2467
349
- #, fuzzy
350
  msgid "Edit Image Info"
351
- msgstr "Modifier les informations du document"
352
 
353
- #: gallery-plugin.php:2468
354
  msgid "Deselect"
355
  msgstr "Désélectionner"
356
 
357
- #: gallery-plugin.php:2480
358
  msgid "File name"
359
  msgstr "Nom du fichier"
360
 
361
- #: gallery-plugin.php:2481
362
  msgid "File type"
363
  msgstr "Type de fichier"
364
 
365
- #: gallery-plugin.php:2506
366
  msgid "Description"
367
  msgstr "Description"
368
 
369
- #: gallery-plugin.php:2512
370
- #, fuzzy
371
  msgid "Lightbox Button URL"
372
  msgstr "URL du bouton pour Lightbox"
373
 
374
- #: gallery-plugin.php:2519
375
  msgid "New Tab"
376
- msgstr ""
377
 
378
- #: gallery-plugin.php:2521
379
  msgid "Enable to open URLs above in a new tab."
380
- msgstr ""
381
 
382
- #: gallery-plugin.php:2526
383
  msgid "Go Pro"
384
  msgstr "Passer à la version PRO"
385
 
386
- #: gallery-plugin.php:2532
387
  msgid "Edit more details"
388
  msgstr "Modifier plus de détails"
389
 
390
- #: gallery-plugin.php:2534
391
- #, fuzzy
392
  msgid "Remove from Gallery"
393
  msgstr "Supprimer de la galerie"
394
 
395
- #: gallery-plugin.php:2568
396
  #, php-format
397
  msgid "Select %s"
398
  msgstr "Sélectionner %s"
399
 
400
- #: gallery-plugin.php:2581
401
  #, php-format
402
  msgid "Edit &#8220;%s&#8221;"
403
  msgstr "Pré-visualiser &#8220;%s&#8221;"
404
 
405
- #: gallery-plugin.php:2589
406
  msgid "Edit Attachment Info"
407
  msgstr "Modifier les informations du document"
408
 
409
- #: gallery-plugin.php:2626 gallery-plugin.php:2639
410
  msgid "Edit"
411
  msgstr "Modifier"
412
 
413
- #: gallery-plugin.php:2629 gallery-plugin.php:2644
414
  msgid "Trash"
415
  msgstr "Poubelle"
416
 
417
- #: gallery-plugin.php:2632 gallery-plugin.php:2647
418
  msgid "Delete Permanently"
419
  msgstr "Supprimer de manière définitive"
420
 
421
- #: gallery-plugin.php:2634 gallery-plugin.php:2653
422
  #, php-format
423
  msgid "View &#8220;%s&#8221;"
424
  msgstr "Pré-visualiser &#8220;%s&#8221;"
425
 
426
- #: gallery-plugin.php:2634 gallery-plugin.php:2653
427
  msgid "View"
428
  msgstr "Voir"
429
 
430
- #: gallery-plugin.php:2636
431
  msgid "Attach"
432
  msgstr "Attacher"
433
 
434
- #: gallery-plugin.php:2642
435
  msgid "Restore"
436
  msgstr "Remettre"
437
 
438
- #: gallery-plugin.php:2772
439
  msgid "Warning"
440
  msgstr "Avertissement"
441
 
442
- #: gallery-plugin.php:2772
443
  msgid "You can add only images to the gallery"
444
  msgstr "Vous ne pouvez ajouter que des images dans la galerie"
445
 
446
- #: gallery-plugin.php:2804
447
  msgid "or"
448
  msgstr "ou"
449
 
450
- #: gallery-plugin.php:2813
451
  msgid "no title"
452
  msgstr "Pas de titre"
453
 
454
- #: gallery-plugin.php:2821
455
  msgid "Sorry, no gallery found."
456
  msgstr "Désolé, rien n'a été trouvé."
457
 
458
- #: gallery-plugin.php:2827
459
  msgid ""
460
  "Display an album image with the description and the link to a single gallery "
461
  "page"
@@ -463,602 +457,587 @@ msgstr ""
463
  "Afficher une image pour l'album avec la description et un lien vers une page "
464
  "contenant la galerie"
465
 
466
- #: inc/class-gllr-settings.php:30
467
  msgid "Cover"
468
- msgstr ""
469
 
470
- #: inc/class-gllr-settings.php:31
471
- #, fuzzy
472
  msgid "Lightbox"
473
- msgstr "droite"
474
 
475
- #: inc/class-gllr-settings.php:32
476
  msgid "Social"
477
  msgstr "Social"
478
 
479
- #: inc/class-gllr-settings.php:33
480
  msgid "Misc"
481
- msgstr ""
482
 
483
- #: inc/class-gllr-settings.php:34
484
- #, fuzzy
485
  msgid "Custom Code"
486
  msgstr "Code personnalisé"
487
 
488
- #: inc/class-gllr-settings.php:35
489
  msgid "Import / Export"
490
- msgstr ""
491
 
492
- #: inc/class-gllr-settings.php:36
493
- #, fuzzy
494
  msgid "License Key"
495
- msgstr "Clé de licence incorrecte"
496
 
497
- #: inc/class-gllr-settings.php:199
498
  msgid "Custom image size was changed. You need to update gallery images."
499
  msgstr ""
 
 
500
 
501
- #: inc/class-gllr-settings.php:224
502
- #, fuzzy
503
  msgid "Settings saved"
504
  msgstr "Paramètres enregistrés."
505
 
506
- #: inc/class-gllr-settings.php:236
507
- #, fuzzy
508
  msgid "Please, enable JavaScript in Your browser."
509
- msgstr "Merci d'activer JavaScript pour utiliser l'envoi de fichiers."
510
 
511
- #: inc/class-gllr-settings.php:241
512
- #, fuzzy
513
  msgid "Update Images"
514
- msgstr "Mise à jour des images..."
515
 
516
- #: inc/class-gllr-settings.php:256
517
- #, fuzzy
518
  msgid "Gallery Images"
519
- msgstr "Taille de l'image de la galerie"
520
 
521
- #: inc/class-gllr-settings.php:261
522
- #, fuzzy
523
  msgid "Adding images requires JavaScript."
524
  msgstr "Ajouter des images nécessite Java-script."
525
 
526
- #: inc/class-gllr-settings.php:264
527
  msgid "Add Media"
528
  msgstr "Ajouter un média"
529
 
530
- #: inc/class-gllr-settings.php:273
531
  msgid "The grid view for the Gallery images requires JavaScript."
532
  msgstr ""
533
  "La vue en mode grille pour les images des galeries nécessite Java-script."
534
 
535
- #: inc/class-gllr-settings.php:273
536
  msgid "Switch to the list view"
537
  msgstr "Basculer vers une vue en mode liste"
538
 
539
- #: inc/class-gllr-settings.php:296
540
- #, fuzzy
541
  msgid "Single Gallery Settings"
542
  msgstr "Paramètres de la galerie"
543
 
544
- #: inc/class-gllr-settings.php:298
545
  #, php-format
546
  msgid "Enable to configure single gallery settings and disable %s."
547
  msgstr ""
 
548
 
549
- #: inc/class-gllr-settings.php:313
550
- #, fuzzy
551
  msgid "Gallery Layout"
552
- msgstr "Pas de galeries trouvées"
553
 
554
- #: inc/class-gllr-settings.php:318
555
  msgid "Grid"
556
  msgstr "Grille"
557
 
558
- #: inc/class-gllr-settings.php:324
559
  msgid "Masonry"
560
  msgstr "Mur"
561
 
562
- #: inc/class-gllr-settings.php:337
563
  msgid "Number of Columns"
564
- msgstr ""
565
 
566
- #: inc/class-gllr-settings.php:339
567
  msgid "columns"
568
- msgstr ""
569
 
570
- #: inc/class-gllr-settings.php:340
571
  #, php-format
572
  msgid "Number of gallery columns (default is %s)."
573
- msgstr ""
574
 
575
- #: inc/class-gllr-settings.php:344 inc/class-gllr-settings.php:705
576
- #, fuzzy
577
  msgid "Image Size"
578
  msgstr "Taille de l'image"
579
 
580
- #: inc/class-gllr-settings.php:350 inc/class-gllr-settings.php:562
581
- #, fuzzy
582
  msgid "Custom"
583
- msgstr "URL personnalisée"
584
 
585
- #: inc/class-gllr-settings.php:352
586
  msgid ""
587
  "Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
588
  msgstr ""
 
 
589
 
590
- #: inc/class-gllr-settings.php:356
591
- #, fuzzy
592
  msgid "Custom Image Size"
593
- msgstr "Taille de l'image"
594
 
595
- #: inc/class-gllr-settings.php:358 inc/class-gllr-settings.php:446
596
- #: inc/class-gllr-settings.php:570 inc/class-gllr-settings.php:620
597
- #: inc/class-gllr-settings.php:772
598
  msgid "px"
599
- msgstr ""
600
 
601
- #: inc/class-gllr-settings.php:359
602
  msgid ""
603
  "Adjust these values based on the number of columns in your gallery. This "
604
  "won't effect the full size of your images in the lightbox."
605
  msgstr ""
 
 
606
 
607
- #: inc/class-gllr-settings.php:370
608
- #, fuzzy
609
  msgid "Crop Images"
610
- msgstr "Trier les images"
611
 
612
- #: inc/class-gllr-settings.php:372
613
  msgid ""
614
  "Enable to crop images using the sizes defined for Custom Image Size. Disable "
615
  "to resize images automatically using their aspect ratio."
616
  msgstr ""
 
 
 
617
 
618
- #: inc/class-gllr-settings.php:376 inc/class-gllr-settings.php:587
619
- #, fuzzy
620
  msgid "Crop Position"
621
- msgstr "Point de base"
622
 
623
- #: inc/class-gllr-settings.php:391 inc/class-gllr-settings.php:602
624
  msgid "Select crop position base (by default: center)."
625
  msgstr ""
 
626
 
627
- #: inc/class-gllr-settings.php:401
628
- #, fuzzy
629
  msgid "Image Title"
630
- msgstr "Taille de l'image"
631
 
632
- #: inc/class-gllr-settings.php:403
633
  msgid "Enable to display image title along with the gallery image."
634
- msgstr ""
635
 
636
- #: inc/class-gllr-settings.php:414
637
- #, fuzzy
638
  msgid "Image Title Position"
639
- msgstr "Taille de l'image non définie"
640
 
641
- #: inc/class-gllr-settings.php:419
642
  msgid "Under image"
643
  msgstr "Sous l'image"
644
 
645
- #: inc/class-gllr-settings.php:425
646
- #, fuzzy
647
  msgid "On mouse hover"
648
- msgstr "par survol de la souris"
649
 
650
- #: inc/class-gllr-settings.php:438
651
- #, fuzzy
652
  msgid "Image Border"
653
  msgstr "Image avec bordure"
654
 
655
- #: inc/class-gllr-settings.php:440
656
  msgid ""
657
  "Enable images border using the styles defined for Image Border Size and "
658
  "Color."
659
  msgstr ""
 
 
660
 
661
- #: inc/class-gllr-settings.php:444
662
- #, fuzzy
663
  msgid "Image Border Size"
664
- msgstr "Taille de l'image"
665
 
666
- #: inc/class-gllr-settings.php:447
667
  #, php-format
668
  msgid "Gallery image border width (default is %s)"
669
- msgstr ""
670
 
671
- #: inc/class-gllr-settings.php:451
672
- #, fuzzy
673
  msgid "Image Border Color"
674
  msgstr "Choisir une couleur pour la bordure"
675
 
676
- #: inc/class-gllr-settings.php:464
677
  msgid "Pagination"
678
- msgstr ""
679
 
680
- #: inc/class-gllr-settings.php:467
681
  msgid ""
682
  "Enable pagination for images to limit number of images displayed on a single "
683
  "gallery page."
684
  msgstr ""
 
 
685
 
686
- #: inc/class-gllr-settings.php:471
687
- #, fuzzy
688
  msgid "Number of Images"
689
- msgstr "Nombre d'images par ligne"
690
 
691
- #: inc/class-gllr-settings.php:474
692
  #, php-format
693
  msgid "Number of images displayed per page (default is %d)."
694
- msgstr ""
695
 
696
- #: inc/class-gllr-settings.php:484
697
- #, fuzzy
698
  msgid "Sort Images by"
699
  msgstr "Trier les images par"
700
 
701
- #: inc/class-gllr-settings.php:487
702
  msgid "Manually (default)"
703
- msgstr ""
704
 
705
- #: inc/class-gllr-settings.php:488
706
- #, fuzzy
707
  msgid "Image ID"
708
- msgstr "Image "
709
 
710
- #: inc/class-gllr-settings.php:489
711
  msgid "Name"
712
- msgstr ""
713
 
714
- #: inc/class-gllr-settings.php:491 inc/class-gllr-settings.php:641
715
  msgid "Random"
716
  msgstr "Aléatoire"
717
 
718
- #: inc/class-gllr-settings.php:493
719
  msgid ""
720
  "Select images sorting order in your gallery. By default, you can sort images "
721
  "manually in the images tab."
722
  msgstr ""
 
 
723
 
724
- #: inc/class-gllr-settings.php:497
725
- #, fuzzy
726
  msgid "Arrange Images by"
727
  msgstr "Trier les images par"
728
 
729
- #: inc/class-gllr-settings.php:500 inc/class-gllr-settings.php:650
730
  msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
731
- msgstr ""
732
 
733
- #: inc/class-gllr-settings.php:501 inc/class-gllr-settings.php:651
734
  msgid "Descending (e.g. 3, 2, 1; c, b, a)"
735
- msgstr ""
736
 
737
- #: inc/class-gllr-settings.php:506
738
- #, fuzzy
739
  msgid "Back Link"
740
- msgstr "L'URL pour le lien de retour"
741
 
742
- #: inc/class-gllr-settings.php:508
743
  msgid ""
744
  "Enable to show a back link in a single gallery page which navigate to a "
745
  "previous page."
746
  msgstr ""
 
 
747
 
748
- #: inc/class-gllr-settings.php:512
749
- #, fuzzy
750
  msgid "Back Link URL"
751
  msgstr "L'URL pour le lien de retour"
752
 
753
- #: inc/class-gllr-settings.php:515
754
  msgid "Back link custom page URL. Leave blank to use Gallery page template."
755
  msgstr ""
 
 
756
 
757
- #: inc/class-gllr-settings.php:519
758
- #, fuzzy
759
  msgid "Back Link Label"
760
- msgstr "L'URL pour le lien de retour"
761
 
762
- #: inc/class-gllr-settings.php:525
763
- #, fuzzy
764
  msgid "Back Link with Shortcode"
765
- msgstr "Afficher le lien de retour dans le code court"
766
 
767
- #: inc/class-gllr-settings.php:528
768
- #, fuzzy
769
  msgid "Enable to display a back link on a page where shortcode is used."
770
- msgstr "Afficher le lien de retour dans le code court"
 
 
771
 
772
- #: inc/class-gllr-settings.php:539
773
- #, fuzzy
774
  msgid "Cover Settings"
775
- msgstr "Modifier les paramètres"
776
 
777
- #: inc/class-gllr-settings.php:544
778
- #, fuzzy
779
  msgid "Galleries Page"
780
- msgstr "Galeries"
781
 
782
- #: inc/class-gllr-settings.php:552
783
- #, fuzzy
784
  msgid "Base page where all existing galleries will be displayed."
785
- msgstr ""
786
- "Si vous passez à  la version Pro, tous ces paramètres seront enregistrés."
787
 
788
- #: inc/class-gllr-settings.php:556
789
- #, fuzzy
790
  msgid "Cover Image Size"
791
- msgstr "Taille de l'image"
792
 
793
- #: inc/class-gllr-settings.php:564
794
  msgid "Maximum cover image size. Custom uses the Image Dimensions values."
795
  msgstr ""
 
 
796
 
797
- #: inc/class-gllr-settings.php:568
798
  msgid "Custom Cover Image Size"
799
- msgstr ""
800
 
801
- #: inc/class-gllr-settings.php:581
802
  msgid "Crop Cover Images"
803
- msgstr ""
804
 
805
- #: inc/class-gllr-settings.php:583
806
  msgid ""
807
  "Enable to crop images using the sizes defined for Custom Cover Image Size. "
808
  "Disable to resize images automatically using their aspect ratio."
809
  msgstr ""
 
 
 
810
 
811
- #: inc/class-gllr-settings.php:612
812
- #, fuzzy
813
  msgid "Cover Image Border"
814
- msgstr "L'ordre des images"
815
 
816
- #: inc/class-gllr-settings.php:614
817
  msgid ""
818
  "Enable cover images border using the styles defined for Image Border Size "
819
  "and Color."
820
  msgstr ""
 
 
821
 
822
- #: inc/class-gllr-settings.php:618
823
  msgid "Cover Image Border Size"
824
- msgstr ""
825
 
826
- #: inc/class-gllr-settings.php:621
827
  #, php-format
828
  msgid "Cover image border width (default is %s)"
829
- msgstr ""
830
 
831
- #: inc/class-gllr-settings.php:625
832
- #, fuzzy
833
  msgid "Cover Image Border Color"
834
- msgstr "Choisir une couleur pour la bordure"
835
 
836
- #: inc/class-gllr-settings.php:631
837
- #, fuzzy
838
  msgid "Sort Albums by"
839
- msgstr "Trier les images par"
840
 
841
- #: inc/class-gllr-settings.php:634
842
- #, fuzzy
843
  msgid "Gallery ID"
844
- msgstr "par galerie ID"
845
 
846
- #: inc/class-gllr-settings.php:637
847
- #, fuzzy
848
  msgid "Last modified date"
849
- msgstr "par date de dernière modification"
850
 
851
- #: inc/class-gllr-settings.php:638
852
- #, fuzzy
853
  msgid "Comment count"
854
- msgstr "par nombre de commentaires"
855
 
856
- #: inc/class-gllr-settings.php:639
857
- #, fuzzy
858
  msgid "Sorting order (the input field for sorting order)"
859
- msgstr "par ordre de tri (le champ pour définir le critère de tri)"
860
 
861
- #: inc/class-gllr-settings.php:643
862
  msgid "Select galleries sorting order in your galleries page."
863
- msgstr ""
864
 
865
- #: inc/class-gllr-settings.php:647
866
  msgid "Arrange Albums by"
867
- msgstr ""
868
 
869
- #: inc/class-gllr-settings.php:656
870
- #, fuzzy
871
  msgid "Read More Link Label"
872
- msgstr "Texte pour le lien \"Read More\""
873
 
874
- #: inc/class-gllr-settings.php:669
875
  msgid "Instant Lightbox"
876
- msgstr ""
877
 
878
- #: inc/class-gllr-settings.php:672
879
- #, fuzzy
880
  msgid ""
881
  "Enable to display all images in the lightbox after clicking cover image or "
882
  "URL instead of going to a single gallery page."
883
  msgstr ""
884
- "Afficher toutes les images dans une 'lightbox' au lieu de d'une seule galerie"
 
 
885
 
886
- #: inc/class-gllr-settings.php:686
887
- #, fuzzy
888
  msgid "Lightbox Settings"
889
- msgstr "URL du bouton pour Lightbox"
890
 
891
- #: inc/class-gllr-settings.php:691
892
  msgid "Enable Lightbox"
893
- msgstr ""
894
 
895
- #: inc/class-gllr-settings.php:694
896
  msgid "Enable to show the lightbox when clicking on gallery images."
897
  msgstr ""
 
 
898
 
899
- #: inc/class-gllr-settings.php:712
900
  msgid ""
901
  "Select the maximum gallery image size for the lightbox view. \"Default\" "
902
  "will display the original, full size image."
903
  msgstr ""
 
 
904
 
905
- #: inc/class-gllr-settings.php:716
906
  msgid "Overlay Color"
907
- msgstr ""
908
 
909
- #: inc/class-gllr-settings.php:722
910
  msgid "Overlay Opacity"
911
- msgstr ""
912
 
913
- #: inc/class-gllr-settings.php:725
914
  #, php-format
915
  msgid ""
916
  "Lightbox overlay opacity. Leave blank to disable opacity (default is %d, max "
917
  "is %d)."
918
  msgstr ""
 
 
919
 
920
- #: inc/class-gllr-settings.php:735
921
- #, fuzzy
922
  msgid "Slideshow"
923
- msgstr "Démarrer le diaporama"
924
 
925
- #: inc/class-gllr-settings.php:737
926
  msgid "Enable to start the slideshow automatically when the lightbox is used."
927
  msgstr ""
 
 
928
 
929
- #: inc/class-gllr-settings.php:741
930
- #, fuzzy
931
  msgid "Slideshow Duration"
932
- msgstr "Intervalle de transition pour le diaporama"
933
 
934
- #: inc/class-gllr-settings.php:743
935
- #, fuzzy
936
  msgid "ms"
937
- msgstr "(ms)"
938
 
939
- #: inc/class-gllr-settings.php:744
940
  msgid "Slideshow interval duration between two images."
941
- msgstr ""
942
 
943
- #: inc/class-gllr-settings.php:755
944
- #, fuzzy
945
  msgid "Lightbox Helper"
946
- msgstr "L'aide de lightbox"
947
 
948
- #: inc/class-gllr-settings.php:757
949
  msgid "Enable to use a lightbox helper navigation between images."
950
  msgstr ""
 
951
 
952
- #: inc/class-gllr-settings.php:761
953
- #, fuzzy
954
  msgid "Lightbox Helper Type"
955
- msgstr "L'aide de lightbox"
956
 
957
- #: inc/class-gllr-settings.php:764
958
- #, fuzzy
959
  msgid "Thumbnails"
960
- msgstr "Pour les vignettes"
961
 
962
- #: inc/class-gllr-settings.php:765
963
- #, fuzzy
964
  msgid "Buttons"
965
- msgstr "Bouton pour l'assistant"
966
 
967
- #: inc/class-gllr-settings.php:770
968
  msgid "Lightbox Helper Thumbnail Size"
969
- msgstr ""
970
 
971
- #: inc/class-gllr-settings.php:776
972
  msgid "Lightbox Helper Thumbnail Position"
973
- msgstr ""
974
 
975
- #: inc/class-gllr-settings.php:779
976
- #, fuzzy
977
  msgid "Top"
978
- msgstr "haut"
979
 
980
- #: inc/class-gllr-settings.php:780
981
- #, fuzzy
982
  msgid "Bottom"
983
- msgstr "bas"
984
 
985
- #: inc/class-gllr-settings.php:785
986
- #, fuzzy
987
  msgid "Lightbox Button Label"
988
- msgstr "URL du bouton pour Lightbox"
989
 
990
- #: inc/class-gllr-settings.php:797
991
- #, fuzzy
992
  msgid "Download Original File"
993
- msgstr "Télécharger l'image en haute résolution"
994
 
995
- #: inc/class-gllr-settings.php:799
996
- #, fuzzy
997
  msgid ""
998
  "Enable to display link to the original file under each image in the lightbox."
999
  msgstr ""
1000
- "Afficher un lien vers l'image d'origine sous chaque image dans la lightbox"
 
1001
 
1002
- #: inc/class-gllr-settings.php:803
1003
  msgid "Download Link Label"
1004
- msgstr ""
1005
 
1006
- #: inc/class-gllr-settings.php:809
1007
  msgid "Single Lightbox"
1008
- msgstr ""
1009
 
1010
- #: inc/class-gllr-settings.php:811
1011
- #, fuzzy
1012
  msgid ""
1013
  "Enable to use a single lightbox for multiple galleries located on a single "
1014
  "page."
1015
- msgstr "Utiliser un seul diaporama pour plusieurs galeries sur une seule page"
 
 
1016
 
1017
- #: inc/class-gllr-settings.php:821
1018
  msgid "Social Sharing Buttons Settings"
1019
- msgstr ""
1020
 
1021
- #: inc/class-gllr-settings.php:829
1022
  msgid "Enable Social Buttons"
1023
- msgstr ""
1024
 
1025
- #: inc/class-gllr-settings.php:831
1026
- #, fuzzy
1027
  msgid "Enable social sharing buttons in the Lightbox."
1028
- msgstr "Afficher les boutons des réseaux sociaux dans la boite"
 
1029
 
1030
- #: inc/class-gllr-settings.php:835
1031
  msgid "Social Networks"
1032
- msgstr ""
1033
 
1034
- #: inc/class-gllr-settings.php:846
1035
  msgid "Social Buttons Position"
1036
- msgstr ""
1037
 
1038
- #: inc/class-gllr-settings.php:849
1039
  msgid "Left"
1040
- msgstr ""
1041
 
1042
- #: inc/class-gllr-settings.php:851
1043
  msgid "Select social buttons position in a lightbox."
1044
- msgstr ""
1045
 
1046
- #: inc/class-gllr-settings.php:855
1047
- #, fuzzy
1048
  msgid "Counter"
1049
- msgstr "Afficher le compteur"
1050
 
1051
- #: inc/class-gllr-settings.php:858
1052
  msgid "Enable to show likes counter for each social button."
1053
  msgstr ""
 
 
1054
 
1055
- #: inc/class-gllr-settings.php:872
1056
- #, fuzzy
1057
  msgid "Demo Data"
1058
- msgstr "Supprimer les données de démonstration"
1059
 
1060
- #: inc/class-gllr-settings.php:874
1061
- #, fuzzy
1062
  msgid ""
1063
  "Install demo data to create galleries with images, post with shortcodes and "
1064
  "page with a list of all galleries."
@@ -1067,45 +1046,42 @@ msgstr ""
1067
  "images, des articles avec les différents codes courts, des pages avec des "
1068
  "listes de galeries seront créés."
1069
 
1070
- #: inc/class-gllr-settings.php:892
1071
- #, fuzzy
1072
  msgid "Gallery Post Type"
1073
- msgstr "Renomme le type d'article de la galerie"
1074
 
1075
- #: inc/class-gllr-settings.php:894
1076
- #, fuzzy
1077
  msgid ""
1078
  "Enable to avoid conflicts with other gallery plugins installed. All "
1079
  "galleries created earlier will stay unchanged. However, after enabling we "
1080
  "recommend to check settings of other plugins where \"gallery\" post type is "
1081
  "used."
1082
  msgstr ""
1083
- "Toutes les galeries crées avant ne seront pas modifiées, cependant, après la "
1084
- "modification, merci de vérifier le paramétrage de vos autres extensions "
1085
- "le type d'article 'galerie' est utilisé."
 
1086
 
1087
- #: inc/class-gllr-settings.php:906
1088
- #, fuzzy
1089
  msgid "Gallery Slug"
1090
- msgstr "Galerie"
1091
 
1092
- #: inc/class-gllr-settings.php:910
1093
  msgid "Enter the unique gallery slug."
1094
- msgstr ""
1095
 
1096
- #: inc/class-gllr-settings.php:926
1097
- #, fuzzy
1098
  msgid "Activate Now"
1099
- msgstr "Activer"
1100
 
1101
- #: inc/class-gllr-settings.php:935
1102
  msgid "Enable to include galleries to your website search."
1103
- msgstr ""
1104
 
1105
- #: inc/class-gllr-settings.php:935
1106
- #, fuzzy, php-format
1107
  msgid "%s is required."
1108
- msgstr "requis"
1109
 
1110
  #: inc/demo-data/class-bws-demo-data.php:33
1111
  msgid "Install Demo Data"
@@ -1116,7 +1092,6 @@ msgid "Remove Demo Data"
1116
  msgstr "Supprimer les données de démonstration"
1117
 
1118
  #: inc/demo-data/class-bws-demo-data.php:37
1119
- #, fuzzy
1120
  msgid "Delete demo data and restore old plugin settings."
1121
  msgstr ""
1122
  "Supprimer les données de démonstration et remettre le paramétrage antérieur "
@@ -1147,14 +1122,12 @@ msgid "Can not get demo data."
1147
  msgstr "Impossible d'obtenir les données de démonstration."
1148
 
1149
  #: inc/demo-data/class-bws-demo-data.php:118
1150
- #, fuzzy
1151
  msgid "Demo settings already installed."
1152
  msgstr "Les données de démonstration sont déjà installées."
1153
 
1154
  #: inc/demo-data/class-bws-demo-data.php:363
1155
- #, fuzzy
1156
  msgid "Demo data installed successfully."
1157
- msgstr "Les données de démonstration ont été supprimées."
1158
 
1159
  #: inc/demo-data/class-bws-demo-data.php:365
1160
  msgid "View post with shortcodes"
@@ -1197,319 +1170,298 @@ msgid ""
1197
  "Do you want to install demo content and settings (You can do this later "
1198
  "using Import / Export settings)?"
1199
  msgstr ""
 
 
1200
 
1201
  #: inc/demo-data/class-bws-demo-data.php:587
1202
- #, fuzzy
1203
  msgid "Yes, install demo now"
1204
  msgstr "Oui, installer les données de démonstration"
1205
 
1206
- #~ msgid "No image found."
1207
- #~ msgstr "Pas d'image trouvée."
1208
 
1209
- #~ msgid "Demo data successfully installed."
1210
- #~ msgstr "Les données de démonstration ont été installées avec succès."
1211
 
1212
- #~ msgid ""
1213
- #~ "If you would like to add a Gallery to your page or post, please use %s "
1214
- #~ "button"
1215
- #~ msgstr ""
1216
- #~ "Si vous voulez ajouter la galerie dans une page ou un article, utiliser "
1217
- #~ "le bouton %s"
1218
 
1219
- #~ msgid ""
1220
- #~ "You can add the Gallery to your page or post by clicking on %s button in "
1221
- #~ "the content edit block using the Visual mode. If the button isn't "
1222
- #~ "displayed, please use the shortcode below"
1223
- #~ msgstr ""
1224
- #~ "Vous pouvez ajouter la galerie à votre page ou votre article en cliquant "
1225
- #~ "sur le bouton %s dans la zone d'édition du contenu en mode visuel. Si le "
1226
- #~ "bouton n'est pas visible, vous pouvez utiliser le code court ci-dessous"
1227
 
1228
- #~ msgid ""
1229
- #~ "Add this shortcode to a page, post or widget to display a single gallery"
1230
- #~ msgstr ""
1231
- #~ "Ajouter ce code court à une page, un article ou un widget pour afficher "
1232
- #~ "une seule galerie"
1233
 
1234
- #~ msgid ""
1235
- #~ "Use this shortcode to display an album image with the description and the "
1236
- #~ "link to a single gallery page"
1237
- #~ msgstr ""
1238
- #~ "Utilisez ce code court pour afficher une image représentant l'album avec "
1239
- #~ "la description et un lien vers une page contenant la galerie"
1240
 
1241
- #~ msgid "Short display"
1242
- #~ msgstr "Affichage court"
1243
 
1244
- #~ msgid "Install plugin"
1245
- #~ msgstr "Installer l'extension"
1246
 
1247
- #~ msgid "Photos"
1248
- #~ msgstr "Photos"
 
 
 
 
 
 
 
 
 
1249
 
1250
  #~ msgid "All plugin settings were restored."
1251
  #~ msgstr ""
1252
  #~ "Toutes les valeurs par défaut des paramètres de l'extension ont été "
1253
  #~ "remises."
1254
 
1255
- #~ msgid "Go PRO"
1256
- #~ msgstr "Choisir la version PRO"
1257
-
1258
- #~ msgid "Please enable JavaScript to use the option to renew images."
1259
- #~ msgstr ""
1260
- #~ "Merci d'activer JavaScript pour utiliser l'option de mise à jour des "
1261
- #~ "images."
1262
-
1263
  #~ msgid ""
1264
- #~ "You can add the Gallery to your page or post by clicking on %s button in "
1265
- #~ "the content edit block using the Visual mode. If the button isn't "
1266
- #~ "displayed, please use the shortcode %s, where * stands for gallery ID"
1267
  #~ msgstr ""
1268
- #~ "Vous pouvez ajouter la galerie à votre page ou votre article en cliquant "
1269
- #~ "sur le bouton %s dans la zone d'édition du contenu en mode visuel. Si le "
1270
- #~ "bouton n'est pas visible, vous pouvez utiliser le code court %s où * "
1271
- #~ "représente l'ID de la galerie"
1272
 
1273
- #~ msgid ""
1274
- #~ "The number of images per row can be less depending on the width of the "
1275
- #~ "parent block"
1276
  #~ msgstr ""
1277
- #~ "Il peut y avoir moins d'images par ligne en fonction de la largeur du "
1278
- #~ "bloc parent"
1279
 
1280
  #~ msgid ""
1281
- #~ "WordPress will create a new thumbnail with the specified dimensions when "
1282
- #~ "you upload a new photo."
1283
  #~ msgstr ""
1284
- #~ "WordPress créera une copie de la miniature avec les dimensions spécifiées "
1285
- #~ "quand vous envoyez une nouvelle photo."
1286
-
1287
- #~ msgid "For the album cover"
1288
- #~ msgstr "Pour la vignette de l'album"
1289
 
1290
- #~ msgid "width x height"
1291
- #~ msgstr "largeur x hauteur"
1292
 
1293
- #~ msgid "in px"
1294
- #~ msgstr "en px"
 
 
 
 
1295
 
1296
- #~ msgid "Update images for gallery"
1297
- #~ msgstr "Mettre à jour les images pour la galerie"
1298
 
1299
- #~ msgid "For images in the lightbox"
1300
- #~ msgstr "Pour les images dans la boite"
1301
 
1302
- #~ msgid "Display a full size image in the lightbox"
1303
- #~ msgstr "Afficher une image en taille normale dans la boite"
1304
 
1305
- #~ msgid "center"
1306
- #~ msgstr "centré"
1307
 
1308
- #~ msgid "Horizontal"
1309
- #~ msgstr "Horizontale"
1310
 
1311
- #~ msgid "Vertical"
1312
- #~ msgstr "Verticale"
 
 
 
 
1313
 
1314
- #~ msgid "Unlock premium options by upgrading to Pro version"
1315
- #~ msgstr "Débloquer les options premium en migrant vers la version PRO."
 
 
 
 
1316
 
1317
- #~ msgid "Start Your Trial"
1318
- #~ msgstr "Débuter votre essai"
1319
 
1320
- #~ msgid "Learn More"
1321
- #~ msgstr "En savoir plus"
1322
 
1323
- #~ msgid "Display image title"
1324
- #~ msgstr "Afficher le titre de l'image"
1325
 
1326
  #~ msgid ""
1327
- #~ "Turn off the checkbox, if you want to display image title just in a "
1328
- #~ "lightbox"
1329
  #~ msgstr ""
1330
- #~ "Si vous voulez juste afficher le titre de l'image dans une boite, "
1331
- #~ "désactiver l'option"
1332
 
1333
- #~ msgid "Border width in px, just numbers"
1334
- #~ msgstr "Taille de la bordure en pixel, juste le nombre"
1335
 
1336
- #~ msgid "by Attachment ID"
1337
- #~ msgstr "par ID du fichier"
1338
 
1339
- #~ msgid "by Image Name"
1340
- #~ msgstr "par nom de l'image "
1341
 
1342
- #~ msgid "by Date"
1343
- #~ msgstr "par date"
 
 
1344
 
1345
- #~ msgid "by Sorting order in the Gallery"
1346
- #~ msgstr "par ordre de tri dans la galerie"
 
 
 
1347
 
1348
  #~ msgid ""
1349
- #~ "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
1350
  #~ msgstr ""
1351
- #~ "ASC (ordre ascendant de la plus petite à la plus grande valeur - 1, 2, 3; "
1352
- #~ "a, b, c)"
1353
 
1354
  #~ msgid ""
1355
- #~ "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
 
1356
  #~ msgstr ""
1357
- #~ "DESC (ordre descendant de la plus grade à la plus petite - 3, 2, 1; c, b, "
1358
- #~ "a)"
1359
-
1360
- #~ msgid "Sort galleries"
1361
- #~ msgstr "Trier les galeries"
1362
-
1363
- #~ msgid "by Title"
1364
- #~ msgstr "par titre"
1365
-
1366
- #~ msgid "by Author"
1367
- #~ msgstr "par auteur"
1368
-
1369
- #~ msgid "The galleries sort order"
1370
- #~ msgstr "L'ordre de tri des galleries"
1371
-
1372
- #~ msgid "Display the Back link"
1373
- #~ msgstr "Afficher le lien de retour"
1374
-
1375
- #~ msgid "The Back link text"
1376
- #~ msgstr "Le texte pour le lien de retour"
1377
-
1378
- #~ msgid "Gallery page (Page with Gallery Template)"
1379
- #~ msgstr "Page de la galerie (Page avec le modèle de galerie)"
1380
-
1381
- #~ msgid "(Full URL to custom page)"
1382
- #~ msgstr "(URL complète pour la page spécifique)"
1383
-
1384
- #~ msgid "Add gallery to the search"
1385
- #~ msgstr "Ajouter les galeries à la recherche"
1386
-
1387
- #~ msgid "Using"
1388
- #~ msgstr "Utilisant"
1389
 
1390
- #~ msgid "powered by"
1391
- #~ msgstr "fournis par"
1392
 
1393
- #~ msgid "Download"
1394
- #~ msgstr "Télécharger"
1395
 
1396
  #~ msgid ""
1397
- #~ "To avoid conflicts with other plugins, please mark this checkbox to "
1398
- #~ "rename it now"
1399
  #~ msgstr ""
1400
- #~ "Pour éviter les conflits avec d'autres extensions, merci de cocher cette "
1401
- #~ "case pour effectuer la renommage maintenant."
1402
-
1403
- #~ msgid "Single gallery view"
1404
- #~ msgstr "Vue pour une seule galerie"
1405
-
1406
- #~ msgid "Use pagination for images"
1407
- #~ msgstr "Utiliser la pagination pour les images"
1408
-
1409
- #~ msgid "per page"
1410
- #~ msgstr "par page"
1411
 
1412
- #~ msgid "Lightbox background"
1413
- #~ msgstr "Fond de la boite"
1414
 
1415
- #~ msgid "Background transparency (from 0 to 1)"
1416
- #~ msgstr "Transparence du fond (de 0 à 1)"
1417
 
1418
- #~ msgid "When using the gallery template or a shortcode with `%s` parameter"
 
 
1419
  #~ msgstr ""
1420
- #~ "Quand vous utilisez le modèle de galerie ou le code court avec le "
1421
- #~ "paramètre '%s'"
1422
-
1423
- #~ msgid "Do not use"
1424
- #~ msgstr "Ne pas utiliser"
1425
-
1426
- #~ msgid "Thumbnail helper"
1427
- #~ msgstr "Assistant de la galerie"
1428
 
1429
- #~ msgid "FaceBook"
1430
- #~ msgstr "FaceBook"
1431
 
1432
- #~ msgid "Twitter"
1433
- #~ msgstr "Twitter"
 
 
 
 
 
1434
 
1435
- #~ msgid "Pinterest"
1436
- #~ msgstr "Pinterest"
1437
 
1438
- #~ msgid "Google +1"
1439
- #~ msgstr "Google +1"
1440
 
1441
- #~ msgid "Align"
1442
- #~ msgstr "Aligner"
1443
 
1444
- #~ msgid "left"
1445
- #~ msgstr "gauche"
 
 
 
 
 
1446
 
1447
- #~ msgid "Title for lightbox button"
1448
- #~ msgstr "Titre pour le bouton lightbox"
 
 
1449
 
1450
- #~ msgid "Slug for gallery item"
1451
- #~ msgstr "Racine pour les pages des galeries"
 
 
 
 
1452
 
1453
- #~ msgid "for any structure of permalinks except the default structure"
1454
- #~ msgstr "pour toute forme de permaliens à l'exception de la forme par défaut"
1455
 
1456
- #~ msgid "Save Changes"
1457
- #~ msgstr "Enregistrer les modifications"
1458
 
1459
- #~ msgid "Install now"
1460
- #~ msgstr "Installé maintenant"
1461
 
1462
  #~ msgid ""
1463
- #~ "The alt attribute specifies an alternate text for an image, if the image "
1464
- #~ "cannot be displayed."
1465
  #~ msgstr ""
1466
- #~ "L'attribut 'alt' permet de définir un texte alternatif pour une image, "
1467
- #~ "quand celle-ci ne peux pas être affichée."
1468
 
1469
  #~ msgid ""
1470
- #~ "By clicking on the thumbnail you'll go to the link (if the field is "
1471
- #~ "filled) or the image will be opened in the lightbox (if the field isn't "
1472
- #~ "filled)"
1473
  #~ msgstr ""
1474
- #~ "En cliquant sur la vignette vous naviguerez vers le lien (si le champ est "
1475
- #~ "rempli) ou bien l'image sera ouverte dans une 'lightbox' (si le champ est "
1476
- #~ "vide)"
1477
-
1478
- #~ msgid "Edit Attachment"
1479
- #~ msgstr "Modifier le document"
1480
-
1481
- #~ msgid "Pro version"
1482
- #~ msgstr "version PRO"
1483
 
1484
- #~ msgid "This setting is available in Pro version"
1485
- #~ msgstr "Ce paramètre est disponible dans la version Pro"
 
 
 
 
1486
 
1487
- #~ msgid "Install demo data"
1488
- #~ msgstr "Installer les données de démonstration"
 
 
 
1489
 
1490
- #~ msgid "for an acquaintance with the possibilities of the"
1491
- #~ msgstr "pour une vision des possibilités de "
 
 
1492
 
1493
  #~ msgid ""
1494
- #~ "The following files '%s' and '%s' were not found in the directory of your "
1495
- #~ "theme. Please copy them from the directory `%s` to the directory of your "
1496
- #~ "theme for the correct work of the Gallery plugin"
1497
  #~ msgstr ""
1498
- #~ "Les fichiers suivants '%s' et '%s' n'ont pas été trouvés dans le "
1499
- #~ "répertoire de votre thème. Merci de les copier depuis le répertoire '%s' "
1500
- #~ "dans le répertoire de votre thème pour le bon fonctionnement de "
1501
- #~ "l'extension Gallery"
1502
 
1503
- #~ msgid "Rewrite templates after update"
1504
- #~ msgstr "Modifier les modèles après la mise à jour"
 
 
1505
 
1506
  #~ msgid ""
1507
- #~ "Turn off the checkbox, if You edited the file '%s' or '%s' file in your "
1508
- #~ "theme folder and You don't want to rewrite them"
1509
  #~ msgstr ""
1510
- #~ "Décochez la case si vous avez modifié le fichier '%s' ou le fichier '%s' "
1511
- #~ "dans le répertoire de votre thème et que vous souhaitez garder votre "
1512
- #~ "version"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1513
 
1514
  #~ msgid "Advertisement"
1515
  #~ msgstr "Publicité"
@@ -1536,19 +1488,8 @@ msgstr "Oui, installer les données de démonstration"
1536
  #~ msgstr "Autre"
1537
 
1538
  #~ msgid ""
1539
- #~ "Something went wrong. Please try again later. If the error appears again, "
1540
- #~ "please contact us"
1541
- #~ msgstr ""
1542
- #~ "Il est survenu une erreur. Essayer de nouveau. Si l'erreur se produit de "
1543
- #~ "nouveau, merci de contacter <a href=http://support.bestwebsoft."
1544
- #~ "com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
1545
-
1546
- #~ msgid "We are sorry for inconvenience."
1547
- #~ msgstr "Nous sommes désolés pour le désagrément."
1548
-
1549
- #~ msgid ""
1550
- #~ "This license key is bind to another website. Change it via personal "
1551
- #~ "Client Area."
1552
  #~ msgstr ""
1553
  #~ "La clé de licence correspond à un autre site. Modifier là au travers de "
1554
  #~ "votre espace client."
@@ -1562,38 +1503,10 @@ msgstr "Oui, installer les données de démonstration"
1562
  #~ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
1563
  #~ "télécharger l'extension manuellement."
1564
 
1565
- #~ msgid ""
1566
- #~ "Unfortunately, Your license has expired. To continue getting top-priority "
1567
- #~ "support and plugin updates you should extend it in your"
1568
- #~ msgstr ""
1569
- #~ "Désoler, votre licence est terminée. Pour continuer à disposer du support "
1570
- #~ "rapide et des mises à jour de l'extension vous devez la renouveler dans "
1571
- #~ "votre"
1572
-
1573
- #~ msgid ""
1574
- #~ "Unfortunately, the Pro licence was already installed to this domain. The "
1575
- #~ "Pro Trial license can be installed only once."
1576
- #~ msgstr ""
1577
- #~ "Malheureusement la licence PRO a déjà été installée sur ce domaine. La "
1578
- #~ "licence PRO d'évaluation peut être installée une seule fois."
1579
-
1580
- #~ msgid "The license key is valid."
1581
- #~ msgstr "La clé de licence est valide."
1582
-
1583
- #~ msgid "Your license will expire on"
1584
- #~ msgstr "Votre licence se termine le "
1585
-
1586
- #~ msgid "Congratulations! Pro Membership license is successfully activated."
1587
- #~ msgstr ""
1588
- #~ "Félicitations! La version PRO de cette extension a été téléchargée et "
1589
- #~ "activée avec succès."
1590
-
1591
- #~ msgid ""
1592
- #~ "Something went wrong. Try again later or upload the plugin manually. We "
1593
- #~ "are sorry for inconvenience."
1594
  #~ msgstr ""
1595
- #~ "Il est survenu une erreur. Essayer de nouveau ou bien télécharger "
1596
- #~ "l'extension manuellement.Nous sommes désolés pour le désagrément."
1597
 
1598
  #~ msgid "Please enter your license key."
1599
  #~ msgstr "Merci de saisir votre clé de licence."
@@ -1619,23 +1532,41 @@ msgstr "Oui, installer les données de démonstration"
1619
  #~ msgid "No"
1620
  #~ msgstr "No"
1621
 
1622
- #~ msgid "Operating System"
1623
- #~ msgstr "Operating System"
1624
 
1625
- #~ msgid "Server"
1626
- #~ msgstr "Server"
1627
 
1628
- #~ msgid "Memory usage"
1629
- #~ msgstr "Memory usage"
1630
 
1631
- #~ msgid "MYSQL Version"
1632
- #~ msgstr "MYSQL Version"
1633
 
1634
- #~ msgid "SQL Mode"
1635
- #~ msgstr "SQL Mode"
1636
 
1637
- #~ msgid "PHP Version"
1638
- #~ msgstr "PHP Version"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1639
 
1640
  #~ msgid "PHP Safe Mode"
1641
  #~ msgstr "PHP Safe Mode"
@@ -1646,6 +1577,9 @@ msgstr "Oui, installer les données de démonstration"
1646
  #~ msgid "PHP Memory Limit"
1647
  #~ msgstr "PHP Memory Limit"
1648
 
 
 
 
1649
  #~ msgid "PHP Max Upload Size"
1650
  #~ msgstr "PHP Max Upload Size"
1651
 
@@ -1664,28 +1598,28 @@ msgstr "Oui, installer les données de démonstration"
1664
  #~ msgid "PHP XML support"
1665
  #~ msgstr "PHP XML support"
1666
 
1667
- #~ msgid "Site URL"
1668
- #~ msgstr "Site URL"
1669
 
1670
- #~ msgid "Home URL"
1671
- #~ msgstr "Home URL"
1672
 
1673
- #~ msgid "WordPress Version"
1674
- #~ msgstr "WordPress Version"
1675
 
1676
- #~ msgid "WordPress DB Version"
1677
- #~ msgstr "WordPress DB Version"
1678
 
1679
- #~ msgid "Multisite"
1680
- #~ msgstr "Multisite"
1681
 
1682
- #~ msgid "Active Theme"
1683
- #~ msgstr "Active Theme"
1684
 
1685
  #~ msgid "Please enter a valid email address."
1686
  #~ msgstr "Merci de fournir une adresse e-mail valide."
1687
 
1688
- #~ msgid "Email with system info is sent to "
1689
  #~ msgstr "L'e-mail avec les informations systèmes est envoyé à "
1690
 
1691
  #~ msgid "Thank you for contacting us."
@@ -1706,18 +1640,12 @@ msgstr "Oui, installer les données de démonstration"
1706
  #~ msgid "Manage purchased licenses & subscriptions"
1707
  #~ msgstr "Gérer les licences et les adhésions"
1708
 
1709
- #~ msgid "Client Area"
1710
- #~ msgstr "Espace client"
1711
-
1712
  #~ msgid "Get Access to %s+ Premium Plugins"
1713
  #~ msgstr "Accéder à plus de %s extension premiums"
1714
 
1715
  #~ msgid "Subscribe to Pro Membership"
1716
  #~ msgstr "Souscrire une adhésion PRO"
1717
 
1718
- #~ msgid "Check license key"
1719
- #~ msgstr "Vérifier la clé de licence"
1720
-
1721
  #~ msgid "Enter your license key"
1722
  #~ msgstr "Merci de saisir votre clé de licence"
1723
 
@@ -1751,37 +1679,14 @@ msgstr "Oui, installer les données de démonstration"
1751
  #~ msgid "Downloading install package from"
1752
  #~ msgstr "Télécharger le paquet d'installation depuis"
1753
 
1754
- #~ msgid ""
1755
- #~ "Failed to download the zip archive. Please, upload the plugin manually"
1756
- #~ msgstr ""
1757
- #~ "Erreur de téléchargement de l'archive ZIP. Merci de télécharger "
1758
- #~ "l'extension manuellement."
1759
-
1760
  #~ msgid "Unpacking the package"
1761
  #~ msgstr "Décompresser le paquet"
1762
 
1763
  #~ msgid "Installing the plugin"
1764
  #~ msgstr "Installer l'extension"
1765
 
1766
- #~ msgid "Failed to open the zip archive. Please, upload the plugin manually"
1767
- #~ msgstr ""
1768
- #~ "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
1769
- #~ "manuellement."
1770
-
1771
- #~ msgid ""
1772
- #~ "Your server does not support either ZipArchive or Phar. Please, upload "
1773
- #~ "the plugin manually"
1774
- #~ msgstr ""
1775
- #~ "Votre serveur n'a pas le support du format des archives ZIP ou Phar. "
1776
- #~ "Merci de télécharger l'extension manuellement."
1777
-
1778
- #~ msgid "Successfully installed the plugin"
1779
- #~ msgstr "Extension installée avec succès"
1780
-
1781
- #~ msgid "UploadDir is not writable. Please, upload the plugin manually"
1782
- #~ msgstr ""
1783
- #~ "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
1784
- #~ "manuellement."
1785
 
1786
  #~ msgid "Activate Plugin"
1787
  #~ msgstr "Activer l'extension"
@@ -1843,17 +1748,8 @@ msgstr "Oui, installer les données de démonstration"
1843
  #~ msgid "Send to custom email &#187;"
1844
  #~ msgstr "Envoyer un e-mail spécifique &#187;"
1845
 
1846
- #~ msgid "Environment"
1847
- #~ msgstr "Environment"
1848
-
1849
- #~ msgid "Active Plugins"
1850
- #~ msgstr "Extensions actives"
1851
-
1852
- #~ msgid "Inactive Plugins"
1853
- #~ msgstr "Extensions inactives"
1854
-
1855
- #~ msgid "System Status"
1856
- #~ msgstr "Etat du système"
1857
 
1858
  #~ msgid ""
1859
  #~ "or higher, that is why it has been deactivated! Please upgrade WordPress "
@@ -1868,6 +1764,60 @@ msgstr "Oui, installer les données de démonstration"
1868
  #~ msgid "Plugins page"
1869
  #~ msgstr "Page des extensions"
1870
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1871
  #~ msgid ""
1872
  #~ "or higher! We do not guarantee that our plugin will work correctly. "
1873
  #~ "Please upgrade to WordPress latest version."
@@ -1893,6 +1843,16 @@ msgstr "Oui, installer les données de démonstration"
1893
  #~ msgid "Less Details"
1894
  #~ msgstr "Moins de détails"
1895
 
 
 
 
 
 
 
 
 
 
 
1896
  #~ msgid "It’s time to upgrade your"
1897
  #~ msgstr "C'est le moment de mettre à jour votre "
1898
 
@@ -1907,42 +1867,117 @@ msgstr "Oui, installer les données de démonstration"
1907
  #~ "Étend les fonctionnalités classiques de l'extension avec des nouvelles "
1908
  #~ "options."
1909
 
1910
- #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
 
 
1911
  #~ msgstr ""
1912
- #~ "Si notre extension vous satisfait, merci de la notée avec 5 étoiles dans "
1913
- #~ "Wordpress"
1914
-
1915
- #~ msgid "Rate the plugin"
1916
- #~ msgstr "Noter l'extension"
1917
 
1918
- #~ msgid "If there is something wrong about it, please contact us"
1919
- #~ msgstr "Si vous avez des questions, merci de nous contacter"
1920
 
1921
- #~ msgid "Donations play an important role in supporting great projects"
1922
- #~ msgstr "Les dons jouent un rôle important dans l'aide aux projets"
 
 
 
 
1923
 
1924
- #~ msgid "Check premium options on the plugin settings page!"
1925
- #~ msgstr "Vérifier les options premium dans les paramètres de l'extension!"
1926
 
1927
- #~ msgid "This license key is bind to another site"
1928
- #~ msgstr "La clé de licence correspond à un autre site."
1929
 
1930
  #~ msgid ""
1931
- #~ "Unfortunately, you have exceeded the number of available tries per day. "
1932
- #~ "Please, upload the plugin manually."
1933
  #~ msgstr ""
1934
- #~ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
1935
- #~ "télécharger l'extension manuellement."
1936
 
1937
- #~ msgid "Please, enter Your license key"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1938
  #~ msgstr "Merci de saisir votre clé de licence"
1939
 
1940
  #~ msgid ""
1941
- #~ "Congratulations! Pro version of the plugin is successfully installed and "
1942
- #~ "activated."
 
1943
  #~ msgstr ""
1944
- #~ "Félicitations! La version PRO de cette extension a été téléchargée et "
1945
- #~ "activée avec succès."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1946
 
1947
  #~ msgid "Please, go to"
1948
  #~ msgstr "Merci d’aller à"
@@ -1953,6 +1988,34 @@ msgstr "Oui, installer les données de démonstration"
1953
  #~ msgid "You will be redirected automatically in 5 seconds."
1954
  #~ msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
1955
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1956
  #~ msgid "Show Pro features"
1957
  #~ msgstr "Voir les fonctionnalités PRO"
1958
 
@@ -1962,246 +2025,319 @@ msgstr "Oui, installer les données de démonstration"
1962
  #~ msgid "version of the plugin."
1963
  #~ msgstr "version de l'extension."
1964
 
1965
- #~ msgid "License key can be found in the"
1966
- #~ msgstr "La clé de licence peut être trouvée dans "
1967
-
1968
- #~ msgid "(your username is the email address specified during the purchase)."
1969
  #~ msgstr ""
1970
- #~ "(votre nom d'utilisateur est l'adresse e-mail que vous avez donnée lors "
1971
- #~ "de l'achat de l'extension)."
 
 
1972
 
1973
- #~ msgid "Start Your Free %s-Day Trial Now"
1974
- #~ msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
 
 
 
 
1975
 
1976
  #~ msgid ""
1977
- #~ "In order to continue using the plugin it is necessary to buy a %s license."
 
 
1978
  #~ msgstr ""
1979
- #~ "Afin de pouvoir continuer à utiliser cette extension il est nécessaire "
1980
- #~ "d'acheter une licence %s."
 
1981
 
1982
- #~ msgid "After that you can activate it by entering your license key."
 
1983
  #~ msgstr ""
1984
- #~ " Après vous pouvez activer cette extension en donnant votre clé de "
1985
- #~ "licence."
1986
 
1987
  #~ msgid ""
1988
- #~ "Congratulations! The Pro license of the plugin is successfully activated."
 
1989
  #~ msgstr ""
1990
- #~ "Félicitations! La version PRO de cette extension a été téléchargée et "
1991
- #~ "activée avec succès."
1992
 
1993
- #~ msgid "Wrong license key."
1994
- #~ msgstr "Clé de licence incorrecte."
1995
 
1996
- #~ msgid "This license key is bind to another site."
1997
- #~ msgstr "La clé de licence correspond à un autre site."
 
 
 
 
 
 
 
 
 
 
 
1998
 
1999
  #~ msgid ""
2000
- #~ "This license key is valid, but Your license has expired. If you want to "
2001
- #~ "update our plugin in future, you should extend the license."
 
2002
  #~ msgstr ""
2003
- #~ "La clé de licence est valide mais votre durée de validité est passée. "
2004
- #~ "Pour continuer à disposer du support rapide et des mises à jour de "
2005
- #~ "l'extension vous devez la renouveler."
 
2006
 
2007
- #~ msgid "Unfortunately, you have exceeded the number of available tries."
 
 
2008
  #~ msgstr ""
2009
- #~ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
2010
- #~ "télécharger l'extension manuellement."
2011
 
2012
  #~ msgid ""
2013
- #~ "Unfortunately, the Pro Trial licence was already installed to this "
2014
- #~ "domain. The Pro Trial license can be installed only once."
2015
  #~ msgstr ""
2016
- #~ "Malheureusement la licence PRO a déjà été installée sur ce domaine. La "
2017
- #~ "licence PRO d'évaluation peut être installée une seule fois."
2018
 
2019
- #~ msgid "The Pro Trial license key is valid."
2020
- #~ msgstr "La clé de licence d'évaluation est valide."
2021
 
2022
- #~ msgid "Please, enter your license key"
2023
- #~ msgstr "Merci de saisir votre clé de licence"
2024
 
2025
- #~ msgid ""
2026
- #~ "If needed you can check if the license key is correct or reenter it in "
2027
- #~ "the field below. You can find your license key on your personal page - "
2028
- #~ "Client area - on our website"
2029
- #~ msgstr ""
2030
- #~ "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou "
2031
- #~ "la saisir de nouveau dans le champ ci-dessous. Vous pouvez trouver votre "
2032
- #~ "clé de licence sur votre page personnelle (zone client) sur notre site "
2033
- #~ "web."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2034
 
2035
  #~ msgid ""
2036
- #~ "(your username is the email address specified during the purchase). If "
2037
- #~ "necessary, please submit \"Lost your password?\" request."
2038
  #~ msgstr ""
2039
- #~ "(votre nom d'utilisateur est l'adresse e-mail que vous avez donnée lors "
2040
- #~ "de l'achat de l'extension). Si nécessaire, utilisez la fonction de "
2041
- #~ "demande de mot de passe perdu."
2042
 
2043
- #~ msgid "WARNING: Illegal use notification"
2044
- #~ msgstr "AVERTISSEMENT : Notification d'utilisation abusive"
2045
 
2046
- #~ msgid ""
2047
- #~ "You can use one license of the Pro plugin for one domain only. Please "
2048
- #~ "check and edit your license or domain if necessary using you personal "
2049
- #~ "Client Area. We strongly recommend you to solve the problem within 24 "
2050
- #~ "hours, otherwise the Pro plugin will be deactivated."
2051
- #~ msgstr ""
2052
- #~ "Vous ne pouvez utiliser qu'une licence pour un domaine de la version PRO "
2053
- #~ "de l'extension. Vérifiez et modifiez votre licence ou domaine si "
2054
- #~ "nécessaire dans votre zone client. Nous vous recommandons de résoudre ce "
2055
- #~ "problème dans les 24 heures, sinon l'extension sera rendue inactive. "
 
2056
 
2057
  #~ msgid ""
2058
- #~ "Notice: Your Pro Trial license has expired. To continue using the plugin "
2059
- #~ "you should buy a Pro license"
2060
  #~ msgstr ""
2061
- #~ "Information : Votre licence d'évaluation est terminée. Pour continuer à "
2062
- #~ "utiliser cette extension vous devez acheter une licence PRO"
2063
 
2064
  #~ msgid ""
2065
- #~ "Your license has expired. To continue getting top-priority support and "
2066
- #~ "plugin updates you should extend it."
2067
  #~ msgstr ""
2068
- #~ "Votre licence est terminée. Pour continuer à disposer du support rapide "
2069
- #~ "et des mises à jour de l'extension vous devez la renouveller."
2070
 
2071
- #~ msgid "Notice: You are using the Pro Trial license of %s plugin."
2072
- #~ msgstr ""
2073
- #~ "Avertissement : vous utilisez la version d'évaluation de l'extension %s."
2074
 
2075
- #~ msgid "Notice: You are using the Pro Trial license of plugin."
2076
- #~ msgstr ""
2077
- #~ "Avertissement : vous utilisez la version d'évaluation de l'extension."
2078
 
2079
- #~ msgid "The Pro Trial license will expire on"
2080
- #~ msgstr "Votre licence se termine le "
2081
 
2082
- #~ msgid "You license for"
2083
- #~ msgstr "Votre licence pour"
 
 
 
2084
 
2085
- #~ msgid "expires on"
2086
- #~ msgstr "se termine le"
2087
 
2088
- #~ msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
2089
- #~ msgstr "et vous ne disposerez plus du support rapide et des mises à jour."
2090
 
2091
- #~ msgid "Thank you for choosing"
2092
- #~ msgstr "Merci d'avoir choisi"
2093
 
2094
- #~ msgid ""
2095
- #~ "If you have a feature, suggestion or idea you'd like to see in the "
2096
- #~ "plugin, we'd love to hear about it!"
2097
- #~ msgstr ""
2098
- #~ "Si vous avez une fonctionnalité, une suggestion ou une idée que vous "
2099
- #~ "souhaitez pour cette extension, nous serons ravis d'en parler avec vous !"
2100
 
2101
- #~ msgid "Suggest a Feature"
2102
- #~ msgstr "Proposer une fonctionnalité"
2103
 
2104
- #~ msgid "Notice"
2105
- #~ msgstr "Avertissement"
2106
 
2107
- #~ msgid "The plugin's settings have been changed."
2108
- #~ msgstr "Les paramètres de l'extension ont été modifiés."
 
 
 
2109
 
2110
  #~ msgid ""
2111
- #~ "You can always look at premium options by clicking on the \"Show Pro "
2112
- #~ "features\" in the \"Go PRO\" tab"
2113
  #~ msgstr ""
2114
- #~ "Vous pouvez toujours consulter les options premium en cliquant sur \"Voir "
2115
- #~ "les fonctionnalités PRO\" dans l'onglet \"Passer PRO\""
 
2116
 
2117
- #~ msgid "Add BWS Shortcode"
2118
- #~ msgstr "Ajouter le code court de l'extension BWS"
 
 
 
 
2119
 
2120
- #~ msgid "Add BWS Plugins Shortcode"
2121
- #~ msgstr "Ajouter le code court de l'extension BWS"
2122
 
2123
- #~ msgid "Add shortcode"
2124
- #~ msgstr "Ajouter le code court"
2125
 
2126
- #~ msgid "Add BestWebSoft plugins' shortcodes using this button."
2127
- #~ msgstr "Ajouter le code court de l'extension BWS avec ce bouton."
2128
 
2129
- #~ msgid "Restore all plugin settings to defaults"
2130
- #~ msgstr "Remettre les valeurs par défaut des paramètres de l'extension"
2131
 
2132
- #~ msgid "Restore settings"
2133
- #~ msgstr "Remettre les paramètres"
2134
 
2135
- #~ msgid "Are you sure you want to restore all settings by default?"
2136
- #~ msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
 
 
2137
 
2138
- #~ msgid "Yes, restore all settings"
2139
- #~ msgstr "Oui, remettre les valeurs par défaut"
2140
 
2141
- #~ msgid "Plugin"
2142
- #~ msgstr "Extension"
2143
 
2144
- #~ msgid "Shortcode settings"
2145
- #~ msgstr "Paramètres du code court"
2146
 
2147
- #~ msgid "The shortcode will be inserted"
2148
- #~ msgstr "Le code court sera inséré"
2149
 
2150
- #~ msgid "Visit Help Center"
2151
- #~ msgstr "Visite le centre de support"
2152
 
2153
- #~ msgid "For more information:"
2154
- #~ msgstr "Pour plus d'information&nbsp;:"
2155
 
2156
- #~ msgid "Documentation"
2157
- #~ msgstr "Documentation"
2158
 
2159
- #~ msgid "Video Instructions"
2160
- #~ msgstr "Instruction vidéo"
2161
 
2162
- #~ msgid "Submit a Request"
2163
- #~ msgstr "Soumettre une requête"
2164
 
2165
- #~ msgid ""
2166
- #~ "You do not have sufficient permissions to edit plugins for this site."
2167
- #~ msgstr ""
2168
- #~ "Vous n'avez pas assez de droits pour modifier l'extension pour ce site."
2169
 
2170
- #~ msgid "File %s edited successfully."
2171
- #~ msgstr "Fichier %s modifié avec succès."
2172
 
2173
- #~ msgid "Not enough permissions to create or update the file"
2174
- #~ msgstr "Pas assez de droits pour créer ou modifier le fichier"
2175
 
2176
- #~ msgid "Not enough permissions to create the file"
2177
- #~ msgstr "Pas assez de droits pour créer le fichier"
2178
 
2179
- #~ msgid "These styles will be added to the header on all pages of your site."
 
 
2180
  #~ msgstr ""
2181
- #~ "Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
 
2182
 
2183
  #~ msgid ""
2184
- #~ "This PHP code will be hooked to the %s action and will be printed on "
2185
- #~ "front end only."
 
2186
  #~ msgstr ""
2187
- #~ "Ce code PHP sera rattaché à l'action %s et sera affiché uniquement sur la "
2188
- #~ "partie publique."
 
2189
 
2190
- #~ msgid "Editing"
2191
- #~ msgstr "Modifier"
2192
 
2193
- #~ msgid "Browsing"
2194
- #~ msgstr "Parcourir"
2195
 
2196
- #~ msgid "Learn more about %s"
2197
- #~ msgstr "En savoir plus sur %s"
2198
 
2199
- #~ msgid ""
2200
- #~ "You need to make this files writable before you can save your changes. "
2201
- #~ "See %s the Codex %s for more information."
 
 
 
 
2202
  #~ msgstr ""
2203
- #~ "Vous devez rendre ce fichier modifiable avant de pouvoir enregistrer vos "
2204
- #~ "modifications. Regarder %s du Codex %s pour plus d'informations."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2205
 
2206
  #~ msgid "My Account"
2207
  #~ msgstr "Mon compte"
@@ -2220,9 +2356,6 @@ msgstr "Oui, installer les données de démonstration"
2220
  #~ msgid "Don’t have valid license key yet?"
2221
  #~ msgstr "Vous n'avez pas encore de licence valide ?"
2222
 
2223
- #~ msgid "Need help?"
2224
- #~ msgstr "Besoin d'aide ?"
2225
-
2226
  #~ msgid "Installed plugins"
2227
  #~ msgstr "Extensions installées"
2228
 
@@ -2367,9 +2500,6 @@ msgstr "Oui, installer les données de démonstration"
2367
  #~ msgid "Using Custom Search powered by"
2368
  #~ msgstr "Utiliser les recherche personalisées fournies par"
2369
 
2370
- #~ msgid "Activate Custom Search"
2371
- #~ msgstr "Activer les recherche personalisées"
2372
-
2373
  #~ msgid "Download Custom Search"
2374
  #~ msgstr "Télécharger les recherches personalisées"
2375
 
@@ -2411,9 +2541,6 @@ msgstr "Oui, installer les données de démonstration"
2411
  #~ "Cette fonction est disponible dans le version pro de cette extension. "
2412
  #~ "Pour plus de détails, suivre le lien"
2413
 
2414
- #~ msgid "Pro plugins"
2415
- #~ msgstr "Extensions Pro"
2416
-
2417
  #~ msgid "Activated plugins"
2418
  #~ msgstr "Extensions activées"
2419
 
2
  msgstr ""
3
  "Project-Id-Version: gallery-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-04-06 11:20+0300\n"
6
+ "PO-Revision-Date: 2017-04-06 11:21+0300\n"
7
  "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Didier, L Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
+ "X-Generator: Poedit 1.8.7.1\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: gallery-plugin.php:39 gallery-plugin.php:1389
22
+ #: inc/class-gllr-settings.php:308
23
  msgid "Gallery Settings"
24
  msgstr "Paramètres de la galerie"
25
 
26
+ #: gallery-plugin.php:39 inc/class-gllr-settings.php:319
 
27
  msgid "Global Settings"
28
+ msgstr "Paramètres généraux"
29
 
30
+ #: gallery-plugin.php:45 gallery-plugin.php:2495
31
  msgid "Upgrade to Pro"
32
  msgstr "Passer à la version PRO"
33
 
47
  msgid "Galleries"
48
  msgstr "Galeries"
49
 
50
+ #: gallery-plugin.php:329 gallery-plugin.php:2788
51
  msgid "Gallery"
52
  msgstr "Galerie"
53
 
67
  msgid "View Gallery"
68
  msgstr "Voir la galerie"
69
 
70
+ #: gallery-plugin.php:334 inc/class-gllr-settings.php:943
71
  msgid "Search Galleries"
72
  msgstr "Rechercher une galerie"
73
 
79
  msgid "Gallery Shortcode"
80
  msgstr "Code court de la galerie"
81
 
82
+ #: gallery-plugin.php:366 gallery-plugin.php:395 gallery-plugin.php:2771
83
  msgid "Gallery Categories"
84
  msgstr "Catégories de galeries"
85
 
88
  "Add a single gallery with images to your posts, pages, custom post types or "
89
  "widgets by using the following shortcode:"
90
  msgstr ""
91
+ "Ajouter une galerie avec des images dans vos articles, pages, type d'article "
92
+ "personnalisé ou widgets en utilisant le code court&nbsp;:"
93
 
94
  #: gallery-plugin.php:380
95
  msgid ""
96
  "Add a gallery cover including featured image, description, and a link to "
97
  "your single gallery using the following shortcode:"
98
  msgstr ""
99
+ "Ajouter une présentation de votre galerie avec une image à la une, une "
100
+ "description et un lien vers votre galerie en utilisant le code court&nbsp;:"
101
 
102
  #: gallery-plugin.php:396
103
  msgid "Most Used"
116
  msgid "Install %s"
117
  msgstr "Installation %s"
118
 
119
+ #: gallery-plugin.php:554
120
  msgid "Gallery Category"
121
  msgstr "Catégories de galeries"
122
 
123
+ #: gallery-plugin.php:813 gallery-plugin.php:920 gallery-plugin.php:1848
124
  msgid "Sorry, nothing found."
125
  msgstr "Désolé, rien n'a été trouvé"
126
 
127
+ #: gallery-plugin.php:1318
128
  msgid "Featured Image"
129
+ msgstr "Image à la une"
130
 
131
+ #: gallery-plugin.php:1319 gallery-plugin.php:2352 gallery-plugin.php:2456
132
+ #: gallery-plugin.php:2567 inc/class-gllr-settings.php:656
133
  msgid "Title"
134
  msgstr "Titre"
135
 
136
+ #: gallery-plugin.php:1320 inc/class-gllr-settings.php:41
 
137
  msgid "Images"
138
+ msgstr "Images"
139
 
140
+ #: gallery-plugin.php:1321
141
  msgid "Shortcode"
142
  msgstr "Code court"
143
 
144
+ #: gallery-plugin.php:1322 inc/class-gllr-settings.php:661
145
  msgid "Author"
146
  msgstr "Auteur"
147
 
148
+ #: gallery-plugin.php:1323 inc/class-gllr-settings.php:511
149
+ #: inc/class-gllr-settings.php:657
150
  msgid "Date"
151
  msgstr "Date"
152
 
153
+ #: gallery-plugin.php:1415 gallery-plugin.php:1432
154
+ #: inc/class-gllr-settings.php:30 inc/class-gllr-settings.php:42
155
  msgid "Settings"
156
  msgstr "Paramètres"
157
 
158
+ #: gallery-plugin.php:1416
159
  msgid "FAQ"
160
  msgstr "FAQ"
161
 
162
+ #: gallery-plugin.php:1417
163
  msgid "Support"
164
  msgstr "Soutien"
165
 
166
+ #: gallery-plugin.php:1455
167
  msgid "Updating images..."
168
  msgstr "Mise à jour des images..."
169
 
170
+ #: gallery-plugin.php:1456
 
171
  msgid "No images found."
172
+ msgstr "Pas d'image trouvée."
173
 
174
+ #: gallery-plugin.php:1457
 
175
  msgid "All images were updated."
176
  msgstr "Toutes les images ont été mises à jour."
177
 
178
+ #: gallery-plugin.php:1458
179
  msgid "Error."
180
  msgstr "Erreur."
181
 
182
+ #: gallery-plugin.php:1470
 
183
  msgid ""
184
  "You are about to remove these items from this gallery.\n"
185
  " 'Cancel' to stop, 'OK' to delete."
187
  "Vous allez supprimer ces éléments de la galerie.\n"
188
  "'Annuler' pour arrêter, 'Ok' pour supprimer"
189
 
190
+ #: gallery-plugin.php:1471
 
191
  msgid ""
192
  "You are about to remove this image from the gallery.\n"
193
  " 'Cancel' to stop, 'OK' to delete."
195
  "Vous allez supprimer ces éléments de la galerie.\n"
196
  "'Annuler' pour arrêter, 'Ok' pour supprimer"
197
 
198
+ #: gallery-plugin.php:1472
199
  msgid ""
200
  "Switching to another mode, all unsaved data will be lost. Save data before "
201
  "switching?"
203
  "ou plus! Nous ne garantissons pas que notre extension fonctionne "
204
  "correctement. Merci de mettre à jour votre version de WordPress."
205
 
206
+ #: gallery-plugin.php:1473
207
  msgid "Insert Media"
208
  msgstr "Insérer un média"
209
 
210
+ #: gallery-plugin.php:1474
211
  msgid "Insert"
212
  msgstr "Insérer"
213
 
214
+ #: gallery-plugin.php:1486
215
  msgid "Learn more"
216
  msgstr "En savoir plus"
217
 
218
+ #: gallery-plugin.php:1491
219
  msgid "Activate"
220
  msgstr "Activer"
221
 
222
+ #: gallery-plugin.php:1494 inc/class-gllr-settings.php:964
223
  msgid "Install Now"
224
  msgstr "Installer maintenant"
225
 
226
+ #: gallery-plugin.php:1504
227
  msgid "Add multiple gallery categories"
228
  msgstr "Ajouter des catégories de galeries"
229
 
230
+ #: gallery-plugin.php:1504
231
  msgid ""
232
  "Install Gallery Categories plugin to add unlimited number of categories."
233
  msgstr ""
234
  "Installer l'extension 'Gallery Categories' pour ajouter un nombre infini de "
235
  "catégories."
236
 
237
+ #: gallery-plugin.php:1513 inc/class-gllr-settings.php:330
238
+ #: inc/class-gllr-settings.php:387 inc/class-gllr-settings.php:431
239
+ #: inc/class-gllr-settings.php:481 inc/class-gllr-settings.php:598
240
+ #: inc/class-gllr-settings.php:686 inc/class-gllr-settings.php:722
241
+ #: inc/class-gllr-settings.php:772 inc/class-gllr-settings.php:925
242
  msgid "Close"
243
  msgstr "Fermer"
244
 
245
+ #: gallery-plugin.php:1876
246
  msgid "Image"
247
  msgstr "Image "
248
 
249
+ #: gallery-plugin.php:2024
250
  msgid "Image size not defined"
251
  msgstr "Taille de l'image non définie"
252
 
253
+ #: gallery-plugin.php:2039
 
254
  msgid ""
255
  "Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
256
  "reload images manually."
258
  "Il n'est possible de mettre à jour que les images de type PNG, JPEG, GIF, "
259
  "WPMP or XBM. Pour les autres, merci de faire une mise à jour manuelle."
260
 
261
+ #: gallery-plugin.php:2050
262
  msgid "Image size changes not defined"
263
  msgstr "La modification de la taille n'est pas définie"
264
 
265
+ #: gallery-plugin.php:2079 gallery-plugin.php:2082 gallery-plugin.php:2087
266
  msgid "Invalid path"
267
  msgstr "Chemin invalide"
268
 
269
+ #: gallery-plugin.php:2176
270
  msgid "List View"
271
  msgstr "Vue en mode liste"
272
 
273
+ #: gallery-plugin.php:2177
274
  msgid "Grid View"
275
  msgstr "Vue en mode grille"
276
 
277
+ #: gallery-plugin.php:2232
278
  msgid "Filter"
279
  msgstr "Filtrer"
280
 
281
+ #: gallery-plugin.php:2236
282
  msgid "Empty Trash"
283
  msgstr "Vider la corbeille"
284
 
285
+ #: gallery-plugin.php:2257
286
  msgid "No images found"
287
  msgstr "Pas d'image trouvée"
288
 
289
+ #: gallery-plugin.php:2309
290
  msgid "Select bulk action"
291
  msgstr "Sélectionne l'action en masse"
292
 
293
+ #: gallery-plugin.php:2311
294
  msgid "Bulk Actions"
295
  msgstr "Actions en masse"
296
 
297
+ #: gallery-plugin.php:2321
298
  msgid "Apply"
299
  msgstr "Appliquer"
300
 
301
+ #: gallery-plugin.php:2328
302
  msgid "Delete from Gallery"
303
  msgstr "Supprimer de la galerie"
304
 
305
+ #: gallery-plugin.php:2337
306
  msgid "Bulk Select"
307
  msgstr "Sélection en masse"
308
 
309
+ #: gallery-plugin.php:2338
310
  msgid "Cancel Selection"
311
  msgstr "Annuler la sélection"
312
 
313
+ #: gallery-plugin.php:2339
314
  msgid "Delete Selected"
315
  msgstr "Supprimer la sélection"
316
 
317
+ #: gallery-plugin.php:2350
318
  msgid "File"
319
  msgstr "Fichier"
320
 
321
+ #: gallery-plugin.php:2351 gallery-plugin.php:2451 gallery-plugin.php:2562
322
  msgid "Dimensions"
323
  msgstr "Dimensions"
324
 
325
+ #: gallery-plugin.php:2353 gallery-plugin.php:2462 gallery-plugin.php:2572
 
326
  msgid "Alt Text"
327
+ msgstr "Alt Texte"
328
 
329
+ #: gallery-plugin.php:2354 gallery-plugin.php:2466 gallery-plugin.php:2577
330
  msgid "URL"
331
  msgstr "URL"
332
 
333
+ #: gallery-plugin.php:2354 gallery-plugin.php:2468
334
  msgid ""
335
  "Enter your custom URL to link this image to other page or file. Leave blank "
336
  "to open a full size image."
337
  msgstr ""
338
+ "Saisir votre URL personnalisée pour faire un lien de cette image vers une "
339
+ "page ou un article. Laisser vide pour ouvrir l'image en plein écran."
340
 
341
+ #: gallery-plugin.php:2433
 
342
  msgid "Remove Image from Gallery"
343
+ msgstr "Supprimer les images de la galerie"
344
 
345
+ #: gallery-plugin.php:2436
 
346
  msgid "Edit Image Info"
347
+ msgstr "Modifier les informations de l'image"
348
 
349
+ #: gallery-plugin.php:2437
350
  msgid "Deselect"
351
  msgstr "Désélectionner"
352
 
353
+ #: gallery-plugin.php:2449
354
  msgid "File name"
355
  msgstr "Nom du fichier"
356
 
357
+ #: gallery-plugin.php:2450
358
  msgid "File type"
359
  msgstr "Type de fichier"
360
 
361
+ #: gallery-plugin.php:2475
362
  msgid "Description"
363
  msgstr "Description"
364
 
365
+ #: gallery-plugin.php:2481
 
366
  msgid "Lightbox Button URL"
367
  msgstr "URL du bouton pour Lightbox"
368
 
369
+ #: gallery-plugin.php:2488
370
  msgid "New Tab"
371
+ msgstr "Nouvel onglet"
372
 
373
+ #: gallery-plugin.php:2490
374
  msgid "Enable to open URLs above in a new tab."
375
+ msgstr "Activer pour ouvrir l'URL dans un nouvel onglet."
376
 
377
+ #: gallery-plugin.php:2495
378
  msgid "Go Pro"
379
  msgstr "Passer à la version PRO"
380
 
381
+ #: gallery-plugin.php:2501
382
  msgid "Edit more details"
383
  msgstr "Modifier plus de détails"
384
 
385
+ #: gallery-plugin.php:2503
 
386
  msgid "Remove from Gallery"
387
  msgstr "Supprimer de la galerie"
388
 
389
+ #: gallery-plugin.php:2537
390
  #, php-format
391
  msgid "Select %s"
392
  msgstr "Sélectionner %s"
393
 
394
+ #: gallery-plugin.php:2550
395
  #, php-format
396
  msgid "Edit &#8220;%s&#8221;"
397
  msgstr "Pré-visualiser &#8220;%s&#8221;"
398
 
399
+ #: gallery-plugin.php:2558
400
  msgid "Edit Attachment Info"
401
  msgstr "Modifier les informations du document"
402
 
403
+ #: gallery-plugin.php:2595 gallery-plugin.php:2608
404
  msgid "Edit"
405
  msgstr "Modifier"
406
 
407
+ #: gallery-plugin.php:2598 gallery-plugin.php:2613
408
  msgid "Trash"
409
  msgstr "Poubelle"
410
 
411
+ #: gallery-plugin.php:2601 gallery-plugin.php:2616
412
  msgid "Delete Permanently"
413
  msgstr "Supprimer de manière définitive"
414
 
415
+ #: gallery-plugin.php:2603 gallery-plugin.php:2622
416
  #, php-format
417
  msgid "View &#8220;%s&#8221;"
418
  msgstr "Pré-visualiser &#8220;%s&#8221;"
419
 
420
+ #: gallery-plugin.php:2603 gallery-plugin.php:2622
421
  msgid "View"
422
  msgstr "Voir"
423
 
424
+ #: gallery-plugin.php:2605
425
  msgid "Attach"
426
  msgstr "Attacher"
427
 
428
+ #: gallery-plugin.php:2611
429
  msgid "Restore"
430
  msgstr "Remettre"
431
 
432
+ #: gallery-plugin.php:2741
433
  msgid "Warning"
434
  msgstr "Avertissement"
435
 
436
+ #: gallery-plugin.php:2741
437
  msgid "You can add only images to the gallery"
438
  msgstr "Vous ne pouvez ajouter que des images dans la galerie"
439
 
440
+ #: gallery-plugin.php:2773
441
  msgid "or"
442
  msgstr "ou"
443
 
444
+ #: gallery-plugin.php:2782
445
  msgid "no title"
446
  msgstr "Pas de titre"
447
 
448
+ #: gallery-plugin.php:2790
449
  msgid "Sorry, no gallery found."
450
  msgstr "Désolé, rien n'a été trouvé."
451
 
452
+ #: gallery-plugin.php:2796
453
  msgid ""
454
  "Display an album image with the description and the link to a single gallery "
455
  "page"
457
  "Afficher une image pour l'album avec la description et un lien vers une page "
458
  "contenant la galerie"
459
 
460
+ #: inc/class-gllr-settings.php:31
461
  msgid "Cover"
462
+ msgstr "Couverture"
463
 
464
+ #: inc/class-gllr-settings.php:32
 
465
  msgid "Lightbox"
466
+ msgstr "Lightbox"
467
 
468
+ #: inc/class-gllr-settings.php:33
469
  msgid "Social"
470
  msgstr "Social"
471
 
472
+ #: inc/class-gllr-settings.php:34
473
  msgid "Misc"
474
+ msgstr "Divers"
475
 
476
+ #: inc/class-gllr-settings.php:35
 
477
  msgid "Custom Code"
478
  msgstr "Code personnalisé"
479
 
480
+ #: inc/class-gllr-settings.php:36
481
  msgid "Import / Export"
482
+ msgstr "Importer / Exporter"
483
 
484
+ #: inc/class-gllr-settings.php:37
 
485
  msgid "License Key"
486
+ msgstr "Clé de licence"
487
 
488
+ #: inc/class-gllr-settings.php:208
489
  msgid "Custom image size was changed. You need to update gallery images."
490
  msgstr ""
491
+ "La taille personnalisée des images a été modifiée. Vous devez mettre à jour "
492
+ "les images dans les galeries."
493
 
494
+ #: inc/class-gllr-settings.php:245
 
495
  msgid "Settings saved"
496
  msgstr "Paramètres enregistrés."
497
 
498
+ #: inc/class-gllr-settings.php:257
 
499
  msgid "Please, enable JavaScript in Your browser."
500
+ msgstr "Merci d'activer JavaScript dans votre navigateur."
501
 
502
+ #: inc/class-gllr-settings.php:262
 
503
  msgid "Update Images"
504
+ msgstr "Mise à jour des images"
505
 
506
+ #: inc/class-gllr-settings.php:277
 
507
  msgid "Gallery Images"
508
+ msgstr "Galerie d'images"
509
 
510
+ #: inc/class-gllr-settings.php:282
 
511
  msgid "Adding images requires JavaScript."
512
  msgstr "Ajouter des images nécessite Java-script."
513
 
514
+ #: inc/class-gllr-settings.php:285
515
  msgid "Add Media"
516
  msgstr "Ajouter un média"
517
 
518
+ #: inc/class-gllr-settings.php:294
519
  msgid "The grid view for the Gallery images requires JavaScript."
520
  msgstr ""
521
  "La vue en mode grille pour les images des galeries nécessite Java-script."
522
 
523
+ #: inc/class-gllr-settings.php:294
524
  msgid "Switch to the list view"
525
  msgstr "Basculer vers une vue en mode liste"
526
 
527
+ #: inc/class-gllr-settings.php:317
 
528
  msgid "Single Gallery Settings"
529
  msgstr "Paramètres de la galerie"
530
 
531
+ #: inc/class-gllr-settings.php:319
532
  #, php-format
533
  msgid "Enable to configure single gallery settings and disable %s."
534
  msgstr ""
535
+ "Activer pour pouvoir définir les paramètres par galerie et désactiver %s."
536
 
537
+ #: inc/class-gllr-settings.php:334
 
538
  msgid "Gallery Layout"
539
+ msgstr "Mise en page de la galerie"
540
 
541
+ #: inc/class-gllr-settings.php:339
542
  msgid "Grid"
543
  msgstr "Grille"
544
 
545
+ #: inc/class-gllr-settings.php:345
546
  msgid "Masonry"
547
  msgstr "Mur"
548
 
549
+ #: inc/class-gllr-settings.php:358
550
  msgid "Number of Columns"
551
+ msgstr "Nombre de colonnes"
552
 
553
+ #: inc/class-gllr-settings.php:360
554
  msgid "columns"
555
+ msgstr "colonnes"
556
 
557
+ #: inc/class-gllr-settings.php:361
558
  #, php-format
559
  msgid "Number of gallery columns (default is %s)."
560
+ msgstr "Nombre de colonnes pour la galerie (par défaut %s)."
561
 
562
+ #: inc/class-gllr-settings.php:365 inc/class-gllr-settings.php:726
 
563
  msgid "Image Size"
564
  msgstr "Taille de l'image"
565
 
566
+ #: inc/class-gllr-settings.php:371 inc/class-gllr-settings.php:583
 
567
  msgid "Custom"
568
+ msgstr "Personnalisé"
569
 
570
+ #: inc/class-gllr-settings.php:373
571
  msgid ""
572
  "Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
573
  msgstr ""
574
+ "Taille maximum d'une image dans la galerie. \"Personnalisé\" utilise les "
575
+ "valeurs définies pour les images."
576
 
577
+ #: inc/class-gllr-settings.php:377
 
578
  msgid "Custom Image Size"
579
+ msgstr "Taille de l'image personalisée"
580
 
581
+ #: inc/class-gllr-settings.php:379 inc/class-gllr-settings.php:467
582
+ #: inc/class-gllr-settings.php:591 inc/class-gllr-settings.php:641
583
+ #: inc/class-gllr-settings.php:793
584
  msgid "px"
585
+ msgstr "px"
586
 
587
+ #: inc/class-gllr-settings.php:380
588
  msgid ""
589
  "Adjust these values based on the number of columns in your gallery. This "
590
  "won't effect the full size of your images in the lightbox."
591
  msgstr ""
592
+ "Ajuster ces valeurs sur la base du nombre de colonnes dans votre galerie. "
593
+ "Cela ne changera pas la taille maximum de vos images dans la lightbox."
594
 
595
+ #: inc/class-gllr-settings.php:391
 
596
  msgid "Crop Images"
597
+ msgstr "Réduire les images"
598
 
599
+ #: inc/class-gllr-settings.php:393
600
  msgid ""
601
  "Enable to crop images using the sizes defined for Custom Image Size. Disable "
602
  "to resize images automatically using their aspect ratio."
603
  msgstr ""
604
+ "Activer pour réduire les images en utilisant les tailles définies dans les "
605
+ "paramètres de personnalisation. Désactiver pour restaurer les images "
606
+ "automatiquement en utilisant leur aspect d'origine."
607
 
608
+ #: inc/class-gllr-settings.php:397 inc/class-gllr-settings.php:608
 
609
  msgid "Crop Position"
610
+ msgstr "Position pour la réduction"
611
 
612
+ #: inc/class-gllr-settings.php:412 inc/class-gllr-settings.php:623
613
  msgid "Select crop position base (by default: center)."
614
  msgstr ""
615
+ "Sélectionner la position de base pour la réduction (par défaut le centre)."
616
 
617
+ #: inc/class-gllr-settings.php:422
 
618
  msgid "Image Title"
619
+ msgstr "Titre de l'image"
620
 
621
+ #: inc/class-gllr-settings.php:424
622
  msgid "Enable to display image title along with the gallery image."
623
+ msgstr "Activer pour afficher le titre avec l'image dans la galerie."
624
 
625
+ #: inc/class-gllr-settings.php:435
 
626
  msgid "Image Title Position"
627
+ msgstr "Position du titre de l'image"
628
 
629
+ #: inc/class-gllr-settings.php:440
630
  msgid "Under image"
631
  msgstr "Sous l'image"
632
 
633
+ #: inc/class-gllr-settings.php:446
 
634
  msgid "On mouse hover"
635
+ msgstr "Par survol de la souris"
636
 
637
+ #: inc/class-gllr-settings.php:459
 
638
  msgid "Image Border"
639
  msgstr "Image avec bordure"
640
 
641
+ #: inc/class-gllr-settings.php:461
642
  msgid ""
643
  "Enable images border using the styles defined for Image Border Size and "
644
  "Color."
645
  msgstr ""
646
+ "Activer les bordures autour des images en utilisant le style et la couleur "
647
+ "définie."
648
 
649
+ #: inc/class-gllr-settings.php:465
 
650
  msgid "Image Border Size"
651
+ msgstr "Taille de la bordure de l'image"
652
 
653
+ #: inc/class-gllr-settings.php:468
654
  #, php-format
655
  msgid "Gallery image border width (default is %s)"
656
+ msgstr "Largeur de la bordure pour les images (par défaut %s)"
657
 
658
+ #: inc/class-gllr-settings.php:472
 
659
  msgid "Image Border Color"
660
  msgstr "Choisir une couleur pour la bordure"
661
 
662
+ #: inc/class-gllr-settings.php:485
663
  msgid "Pagination"
664
+ msgstr "Pagination"
665
 
666
+ #: inc/class-gllr-settings.php:488
667
  msgid ""
668
  "Enable pagination for images to limit number of images displayed on a single "
669
  "gallery page."
670
  msgstr ""
671
+ "Activer la pagination pour les images afin de limiter le nombre d'images "
672
+ "affichées sur une seule page dans la galerie."
673
 
674
+ #: inc/class-gllr-settings.php:492
 
675
  msgid "Number of Images"
676
+ msgstr "Nombre d'images"
677
 
678
+ #: inc/class-gllr-settings.php:495
679
  #, php-format
680
  msgid "Number of images displayed per page (default is %d)."
681
+ msgstr "Nombre d'images affichées par page (par défaut %d)."
682
 
683
+ #: inc/class-gllr-settings.php:505
 
684
  msgid "Sort Images by"
685
  msgstr "Trier les images par"
686
 
687
+ #: inc/class-gllr-settings.php:508
688
  msgid "Manually (default)"
689
+ msgstr "Manuel (défaut)"
690
 
691
+ #: inc/class-gllr-settings.php:509
 
692
  msgid "Image ID"
693
+ msgstr "Image ID"
694
 
695
+ #: inc/class-gllr-settings.php:510
696
  msgid "Name"
697
+ msgstr "Nom"
698
 
699
+ #: inc/class-gllr-settings.php:512 inc/class-gllr-settings.php:662
700
  msgid "Random"
701
  msgstr "Aléatoire"
702
 
703
+ #: inc/class-gllr-settings.php:514
704
  msgid ""
705
  "Select images sorting order in your gallery. By default, you can sort images "
706
  "manually in the images tab."
707
  msgstr ""
708
+ "Choisir l'ordre de tri des images dans votre galerie. Par défaut, vous "
709
+ "pouvez trier les images manuellement dans l'onglet des images. "
710
 
711
+ #: inc/class-gllr-settings.php:518
 
712
  msgid "Arrange Images by"
713
  msgstr "Trier les images par"
714
 
715
+ #: inc/class-gllr-settings.php:521 inc/class-gllr-settings.php:671
716
  msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
717
+ msgstr "Ascendant (par ex 1, 2, 3; a, b, c)"
718
 
719
+ #: inc/class-gllr-settings.php:522 inc/class-gllr-settings.php:672
720
  msgid "Descending (e.g. 3, 2, 1; c, b, a)"
721
+ msgstr "Descendant (par ex 1, 2, 3; a, b, c)"
722
 
723
+ #: inc/class-gllr-settings.php:527
 
724
  msgid "Back Link"
725
+ msgstr "Lien de retour"
726
 
727
+ #: inc/class-gllr-settings.php:529
728
  msgid ""
729
  "Enable to show a back link in a single gallery page which navigate to a "
730
  "previous page."
731
  msgstr ""
732
+ "Activer pour afficher un lien de retour dans la page d'une galerie vers la "
733
+ "page précédente."
734
 
735
+ #: inc/class-gllr-settings.php:533
 
736
  msgid "Back Link URL"
737
  msgstr "L'URL pour le lien de retour"
738
 
739
+ #: inc/class-gllr-settings.php:536
740
  msgid "Back link custom page URL. Leave blank to use Gallery page template."
741
  msgstr ""
742
+ "Lien de retour personnalisé vers une page. Laisser vide pour utiliser le "
743
+ "modèle de page de galerie."
744
 
745
+ #: inc/class-gllr-settings.php:540
 
746
  msgid "Back Link Label"
747
+ msgstr "Libellé pour le lien de retour"
748
 
749
+ #: inc/class-gllr-settings.php:546
 
750
  msgid "Back Link with Shortcode"
751
+ msgstr "Lien de retour dans le code court"
752
 
753
+ #: inc/class-gllr-settings.php:549
 
754
  msgid "Enable to display a back link on a page where shortcode is used."
755
+ msgstr ""
756
+ "Activer pour afficher le lien de retour vers la page où le code court est "
757
+ "utilisé."
758
 
759
+ #: inc/class-gllr-settings.php:560
 
760
  msgid "Cover Settings"
761
+ msgstr "Paramètres de couverture"
762
 
763
+ #: inc/class-gllr-settings.php:565
 
764
  msgid "Galleries Page"
765
+ msgstr "Page des galeries"
766
 
767
+ #: inc/class-gllr-settings.php:573
 
768
  msgid "Base page where all existing galleries will be displayed."
769
+ msgstr "Page de base où toutes les galeries existantes seront affichées."
 
770
 
771
+ #: inc/class-gllr-settings.php:577
 
772
  msgid "Cover Image Size"
773
+ msgstr "Taille de l'image de couverture"
774
 
775
+ #: inc/class-gllr-settings.php:585
776
  msgid "Maximum cover image size. Custom uses the Image Dimensions values."
777
  msgstr ""
778
+ "Taille maximum de l'image de couverture. Utiliser les dimensions "
779
+ "personnalisées de l'image."
780
 
781
+ #: inc/class-gllr-settings.php:589
782
  msgid "Custom Cover Image Size"
783
+ msgstr "Taille personnalisée de l'image de couverture"
784
 
785
+ #: inc/class-gllr-settings.php:602
786
  msgid "Crop Cover Images"
787
+ msgstr "Réduire les images de couverture"
788
 
789
+ #: inc/class-gllr-settings.php:604
790
  msgid ""
791
  "Enable to crop images using the sizes defined for Custom Cover Image Size. "
792
  "Disable to resize images automatically using their aspect ratio."
793
  msgstr ""
794
+ "Activer pour réduire les images de couverture en utilisant la taille définie "
795
+ "dans le champ de personnalisation. Désactiver pour restaurer les images "
796
+ "automatiquement en utilisant leur aspect d'origine."
797
 
798
+ #: inc/class-gllr-settings.php:633
 
799
  msgid "Cover Image Border"
800
+ msgstr "Bordure de l'image de couverture"
801
 
802
+ #: inc/class-gllr-settings.php:635
803
  msgid ""
804
  "Enable cover images border using the styles defined for Image Border Size "
805
  "and Color."
806
  msgstr ""
807
+ "Activer les bordures de l'image de couverture avec la taille et la couleur "
808
+ "définies."
809
 
810
+ #: inc/class-gllr-settings.php:639
811
  msgid "Cover Image Border Size"
812
+ msgstr "Taille de la bordure de l'image de couverture"
813
 
814
+ #: inc/class-gllr-settings.php:642
815
  #, php-format
816
  msgid "Cover image border width (default is %s)"
817
+ msgstr "Taille de la bordure de l'image de couverture (par défaut %s)"
818
 
819
+ #: inc/class-gllr-settings.php:646
 
820
  msgid "Cover Image Border Color"
821
+ msgstr "Couleur de la bordure de l'image de couverture"
822
 
823
+ #: inc/class-gllr-settings.php:652
 
824
  msgid "Sort Albums by"
825
+ msgstr "Trier les albums par"
826
 
827
+ #: inc/class-gllr-settings.php:655
 
828
  msgid "Gallery ID"
829
+ msgstr "Galerie ID"
830
 
831
+ #: inc/class-gllr-settings.php:658
 
832
  msgid "Last modified date"
833
+ msgstr "Date de dernière modification"
834
 
835
+ #: inc/class-gllr-settings.php:659
 
836
  msgid "Comment count"
837
+ msgstr "Nombre de commentaires"
838
 
839
+ #: inc/class-gllr-settings.php:660
 
840
  msgid "Sorting order (the input field for sorting order)"
841
+ msgstr "Ordre de tri (le champ pour définir le critère de tri)"
842
 
843
+ #: inc/class-gllr-settings.php:664
844
  msgid "Select galleries sorting order in your galleries page."
845
+ msgstr "Choisissez l'ordre de tri de vos galeries dans la page des albums."
846
 
847
+ #: inc/class-gllr-settings.php:668
848
  msgid "Arrange Albums by"
849
+ msgstr "Tirer les albums par"
850
 
851
+ #: inc/class-gllr-settings.php:677
 
852
  msgid "Read More Link Label"
853
+ msgstr "Texte pour le lien \"En savoir plus\""
854
 
855
+ #: inc/class-gllr-settings.php:690
856
  msgid "Instant Lightbox"
857
+ msgstr "Lightbox rapide"
858
 
859
+ #: inc/class-gllr-settings.php:693
 
860
  msgid ""
861
  "Enable to display all images in the lightbox after clicking cover image or "
862
  "URL instead of going to a single gallery page."
863
  msgstr ""
864
+ "Activer pour afficher toutes les images dans une 'lightbox' après avoir "
865
+ "cliquer sur l'image de couverture ou le lien au lieu d'une page avec la "
866
+ "galerie"
867
 
868
+ #: inc/class-gllr-settings.php:707
 
869
  msgid "Lightbox Settings"
870
+ msgstr "Paramètres lightbox"
871
 
872
+ #: inc/class-gllr-settings.php:712
873
  msgid "Enable Lightbox"
874
+ msgstr "Activer Lightbox"
875
 
876
+ #: inc/class-gllr-settings.php:715
877
  msgid "Enable to show the lightbox when clicking on gallery images."
878
  msgstr ""
879
+ "Activer pour voir la lightbox lorsque l'on clique sur une image de la "
880
+ "galerie."
881
 
882
+ #: inc/class-gllr-settings.php:733
883
  msgid ""
884
  "Select the maximum gallery image size for the lightbox view. \"Default\" "
885
  "will display the original, full size image."
886
  msgstr ""
887
+ "Choisissez la taille maximum de l'image pour la lightbox. \"Défaut\" "
888
+ "affichera l'image d'origine dans sa taille d'origine."
889
 
890
+ #: inc/class-gllr-settings.php:737
891
  msgid "Overlay Color"
892
+ msgstr "Couleur de superposition"
893
 
894
+ #: inc/class-gllr-settings.php:743
895
  msgid "Overlay Opacity"
896
+ msgstr "Opacité de la superposition"
897
 
898
+ #: inc/class-gllr-settings.php:746
899
  #, php-format
900
  msgid ""
901
  "Lightbox overlay opacity. Leave blank to disable opacity (default is %d, max "
902
  "is %d)."
903
  msgstr ""
904
+ "Opacité pour la superposition de Lightbox. Laisser vide pour ne pas utiliser "
905
+ "l''opacité (par défaut %d, max %d)."
906
 
907
+ #: inc/class-gllr-settings.php:756
 
908
  msgid "Slideshow"
909
+ msgstr "Diaporama"
910
 
911
+ #: inc/class-gllr-settings.php:758
912
  msgid "Enable to start the slideshow automatically when the lightbox is used."
913
  msgstr ""
914
+ "Activer pour lancer le diaporama automatiquement quand la lightbox est "
915
+ "utilisée."
916
 
917
+ #: inc/class-gllr-settings.php:762
 
918
  msgid "Slideshow Duration"
919
+ msgstr "Durée du diaporama"
920
 
921
+ #: inc/class-gllr-settings.php:764
 
922
  msgid "ms"
923
+ msgstr "ms"
924
 
925
+ #: inc/class-gllr-settings.php:765
926
  msgid "Slideshow interval duration between two images."
927
+ msgstr "Durée entre deux images dans le diaporama."
928
 
929
+ #: inc/class-gllr-settings.php:776
 
930
  msgid "Lightbox Helper"
931
+ msgstr "Lightbox helper"
932
 
933
+ #: inc/class-gllr-settings.php:778
934
  msgid "Enable to use a lightbox helper navigation between images."
935
  msgstr ""
936
+ "Activer pour utiliser un helper de navigation dans lightbox entre les images."
937
 
938
+ #: inc/class-gllr-settings.php:782
 
939
  msgid "Lightbox Helper Type"
940
+ msgstr "Lightbox Helper Type"
941
 
942
+ #: inc/class-gllr-settings.php:785
 
943
  msgid "Thumbnails"
944
+ msgstr "Vignettes"
945
 
946
+ #: inc/class-gllr-settings.php:786
 
947
  msgid "Buttons"
948
+ msgstr "Boutons"
949
 
950
+ #: inc/class-gllr-settings.php:791
951
  msgid "Lightbox Helper Thumbnail Size"
952
+ msgstr "Taille des vignettes du helper Lightbox"
953
 
954
+ #: inc/class-gllr-settings.php:797
955
  msgid "Lightbox Helper Thumbnail Position"
956
+ msgstr "Position du helper des vignettes lightbox"
957
 
958
+ #: inc/class-gllr-settings.php:800
 
959
  msgid "Top"
960
+ msgstr "Haut"
961
 
962
+ #: inc/class-gllr-settings.php:801
 
963
  msgid "Bottom"
964
+ msgstr "Bas"
965
 
966
+ #: inc/class-gllr-settings.php:806
 
967
  msgid "Lightbox Button Label"
968
+ msgstr "Label du bouton pour Lightbox"
969
 
970
+ #: inc/class-gllr-settings.php:818
 
971
  msgid "Download Original File"
972
+ msgstr "Télécharger l'image originale"
973
 
974
+ #: inc/class-gllr-settings.php:820
 
975
  msgid ""
976
  "Enable to display link to the original file under each image in the lightbox."
977
  msgstr ""
978
+ "Activer pour afficher un lien vers l'image d'origine sous chaque image dans "
979
+ "la lightbox."
980
 
981
+ #: inc/class-gllr-settings.php:824
982
  msgid "Download Link Label"
983
+ msgstr "Titre pour le lien de téléchargement"
984
 
985
+ #: inc/class-gllr-settings.php:830
986
  msgid "Single Lightbox"
987
+ msgstr "Lightbox simple"
988
 
989
+ #: inc/class-gllr-settings.php:832
 
990
  msgid ""
991
  "Enable to use a single lightbox for multiple galleries located on a single "
992
  "page."
993
+ msgstr ""
994
+ "Activer pour utiliser un seul diaporama pour plusieurs galeries se trouvant "
995
+ "sur la même page."
996
 
997
+ #: inc/class-gllr-settings.php:842
998
  msgid "Social Sharing Buttons Settings"
999
+ msgstr "Paramètres des boutons des réseaux sociaux"
1000
 
1001
+ #: inc/class-gllr-settings.php:850
1002
  msgid "Enable Social Buttons"
1003
+ msgstr "Activer les boutons pour les réseaux sociaux"
1004
 
1005
+ #: inc/class-gllr-settings.php:852
 
1006
  msgid "Enable social sharing buttons in the Lightbox."
1007
+ msgstr ""
1008
+ "Afficher les boutons de partage sur les réseaux sociaux dans la lightbox"
1009
 
1010
+ #: inc/class-gllr-settings.php:856
1011
  msgid "Social Networks"
1012
+ msgstr "Réseaux sociaux"
1013
 
1014
+ #: inc/class-gllr-settings.php:867
1015
  msgid "Social Buttons Position"
1016
+ msgstr "Position des boutons sociaux"
1017
 
1018
+ #: inc/class-gllr-settings.php:870
1019
  msgid "Left"
1020
+ msgstr "Gauche"
1021
 
1022
+ #: inc/class-gllr-settings.php:872
1023
  msgid "Select social buttons position in a lightbox."
1024
+ msgstr "Choisir la position des boutons des réseaux sociaux dans la lightbox."
1025
 
1026
+ #: inc/class-gllr-settings.php:876
 
1027
  msgid "Counter"
1028
+ msgstr "Compteur"
1029
 
1030
+ #: inc/class-gllr-settings.php:879
1031
  msgid "Enable to show likes counter for each social button."
1032
  msgstr ""
1033
+ "Activer pour voir le nombre de \"J'aime\" sur chaque bouton des réseaux "
1034
+ "sociaux."
1035
 
1036
+ #: inc/class-gllr-settings.php:894
 
1037
  msgid "Demo Data"
1038
+ msgstr "Données de démonstration"
1039
 
1040
+ #: inc/class-gllr-settings.php:896
 
1041
  msgid ""
1042
  "Install demo data to create galleries with images, post with shortcodes and "
1043
  "page with a list of all galleries."
1046
  "images, des articles avec les différents codes courts, des pages avec des "
1047
  "listes de galeries seront créés."
1048
 
1049
+ #: inc/class-gllr-settings.php:915
 
1050
  msgid "Gallery Post Type"
1051
+ msgstr "Type d'article de Galerie"
1052
 
1053
+ #: inc/class-gllr-settings.php:917
 
1054
  msgid ""
1055
  "Enable to avoid conflicts with other gallery plugins installed. All "
1056
  "galleries created earlier will stay unchanged. However, after enabling we "
1057
  "recommend to check settings of other plugins where \"gallery\" post type is "
1058
  "used."
1059
  msgstr ""
1060
+ "Activer pour éviter les conflits avec d'autres extensions de galerie "
1061
+ "installées. Toutes les galeries crées avant ne seront pas modifiées, "
1062
+ "cependant, après la modification, merci de vérifier le paramétrage de vos "
1063
+ "autres extensions où le type d'article 'galerie' est utilisé."
1064
 
1065
+ #: inc/class-gllr-settings.php:929
 
1066
  msgid "Gallery Slug"
1067
+ msgstr "Identifiant de la galerie"
1068
 
1069
+ #: inc/class-gllr-settings.php:933
1070
  msgid "Enter the unique gallery slug."
1071
+ msgstr "Saisir le slug unique pour la galerie."
1072
 
1073
+ #: inc/class-gllr-settings.php:949
 
1074
  msgid "Activate Now"
1075
+ msgstr "Activer maintenant"
1076
 
1077
+ #: inc/class-gllr-settings.php:967
1078
  msgid "Enable to include galleries to your website search."
1079
+ msgstr "Activer pour inclure les galeries dans la recherche de votre site."
1080
 
1081
+ #: inc/class-gllr-settings.php:967
1082
+ #, php-format
1083
  msgid "%s is required."
1084
+ msgstr "%s est requis"
1085
 
1086
  #: inc/demo-data/class-bws-demo-data.php:33
1087
  msgid "Install Demo Data"
1092
  msgstr "Supprimer les données de démonstration"
1093
 
1094
  #: inc/demo-data/class-bws-demo-data.php:37
 
1095
  msgid "Delete demo data and restore old plugin settings."
1096
  msgstr ""
1097
  "Supprimer les données de démonstration et remettre le paramétrage antérieur "
1122
  msgstr "Impossible d'obtenir les données de démonstration."
1123
 
1124
  #: inc/demo-data/class-bws-demo-data.php:118
 
1125
  msgid "Demo settings already installed."
1126
  msgstr "Les données de démonstration sont déjà installées."
1127
 
1128
  #: inc/demo-data/class-bws-demo-data.php:363
 
1129
  msgid "Demo data installed successfully."
1130
+ msgstr "Les données de démonstration ont été installées."
1131
 
1132
  #: inc/demo-data/class-bws-demo-data.php:365
1133
  msgid "View post with shortcodes"
1170
  "Do you want to install demo content and settings (You can do this later "
1171
  "using Import / Export settings)?"
1172
  msgstr ""
1173
+ "Voulez-vous installer le contenu de démonstration et les paramètres (Vous "
1174
+ "pouvez le faire plus tard en utilisant l'import et l'export des paramètres) ?"
1175
 
1176
  #: inc/demo-data/class-bws-demo-data.php:587
 
1177
  msgid "Yes, install demo now"
1178
  msgstr "Oui, installer les données de démonstration"
1179
 
1180
+ #~ msgid "Information"
1181
+ #~ msgstr "Information"
1182
 
1183
+ #~ msgid "Inactive"
1184
+ #~ msgstr "Inactif"
1185
 
1186
+ #~ msgid "Learn More"
1187
+ #~ msgstr "En savoir plus"
 
 
 
 
1188
 
1189
+ #~ msgid "Expired"
1190
+ #~ msgstr "Expiré"
 
 
 
 
 
 
1191
 
1192
+ #~ msgid "%s day(-s) left"
1193
+ #~ msgstr "%s jour(s) restant"
 
 
 
1194
 
1195
+ #~ msgid "Expired on %s"
1196
+ #~ msgstr "Se termine le %s"
 
 
 
 
1197
 
1198
+ #~ msgid "Renew Now"
1199
+ #~ msgstr "Renouveler maintenant"
1200
 
1201
+ #~ msgid "Active"
1202
+ #~ msgstr "Activer"
1203
 
1204
+ #~ msgid "License"
1205
+ #~ msgstr "Licence"
1206
+
1207
+ #~ msgid "Status"
1208
+ #~ msgstr "Etat"
1209
+
1210
+ #~ msgid "Version"
1211
+ #~ msgstr "Version"
1212
+
1213
+ #~ msgid "Save Changes"
1214
+ #~ msgstr "Enregistrer les modifications"
1215
 
1216
  #~ msgid "All plugin settings were restored."
1217
  #~ msgstr ""
1218
  #~ "Toutes les valeurs par défaut des paramètres de l'extension ont été "
1219
  #~ "remises."
1220
 
 
 
 
 
 
 
 
 
1221
  #~ msgid ""
1222
+ #~ "You do not have sufficient permissions to edit plugins for this site."
 
 
1223
  #~ msgstr ""
1224
+ #~ "Vous n'avez pas assez de droits pour modifier l'extension pour ce site."
 
 
 
1225
 
1226
+ #~ msgid "These styles will be added to the header on all pages of your site."
 
 
1227
  #~ msgstr ""
1228
+ #~ "Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
 
1229
 
1230
  #~ msgid ""
1231
+ #~ "This PHP code will be hooked to the %s action and will be printed on "
1232
+ #~ "front end only."
1233
  #~ msgstr ""
1234
+ #~ "Ce code PHP sera rattaché à l'action %s et sera affiché uniquement sur la "
1235
+ #~ "partie publique."
 
 
 
1236
 
1237
+ #~ msgid "These code will be added to the header on all pages of your site."
1238
+ #~ msgstr "Ce code sera ajouté aux entêtes sur toutes les pages de votre site."
1239
 
1240
+ #~ msgid ""
1241
+ #~ "You need to make this files writable before you can save your changes. "
1242
+ #~ "See %s the Codex %s for more information."
1243
+ #~ msgstr ""
1244
+ #~ "Vous devez rendre ce fichier modifiable avant de pouvoir enregistrer vos "
1245
+ #~ "modifications. Regarder %s du Codex %s pour plus d'informations."
1246
 
1247
+ #~ msgid "Browsing"
1248
+ #~ msgstr "Parcourir"
1249
 
1250
+ #~ msgid "Activate custom %s code."
1251
+ #~ msgstr "Activer le code personnalisé %s."
1252
 
1253
+ #~ msgid "Learn more about %s"
1254
+ #~ msgstr "En savoir plus sur %s"
1255
 
1256
+ #~ msgid "Miscellaneous Settings"
1257
+ #~ msgstr "Paramètres divers"
1258
 
1259
+ #~ msgid "Notice"
1260
+ #~ msgstr "Avertissement"
1261
 
1262
+ #~ msgid ""
1263
+ #~ "It is prohibited to change %s settings on this site in the %s network "
1264
+ #~ "settings."
1265
+ #~ msgstr ""
1266
+ #~ "Il est interdit de modifier les paramètres %s sur ce site dans les "
1267
+ #~ "paramètres réseau %s."
1268
 
1269
+ #~ msgid ""
1270
+ #~ "It is prohibited to view %s settings on this site in the %s network "
1271
+ #~ "settings."
1272
+ #~ msgstr ""
1273
+ #~ "Il est interdit de voir les paramètres %s sur ce site dans les paramètres "
1274
+ #~ "réseau %s."
1275
 
1276
+ #~ msgid "Pro Options"
1277
+ #~ msgstr "Options Pro"
1278
 
1279
+ #~ msgid "Enable to display plugin Pro options."
1280
+ #~ msgstr "Activer pour voir les options PRO de cette extension."
1281
 
1282
+ #~ msgid "Track Usage"
1283
+ #~ msgstr "Suivre l'utilisation"
1284
 
1285
  #~ msgid ""
1286
+ #~ "Enable to allow tracking plugin usage anonymously in order to make it "
1287
+ #~ "better."
1288
  #~ msgstr ""
1289
+ #~ "Activer pour autoriser le suivi de l'utilisation de cette extension de "
1290
+ #~ "manière anonyme afin de la rendre meilleur."
1291
 
1292
+ #~ msgid "Default Settings"
1293
+ #~ msgstr "Paramètres par défaut"
1294
 
1295
+ #~ msgid "Restore Settings"
1296
+ #~ msgstr "Remettre les paramètres"
1297
 
1298
+ #~ msgid "This will restore plugin settings to defaults."
1299
+ #~ msgstr "Remettre les valeurs par défaut des paramètres de l'extension"
1300
 
1301
+ #~ msgid "Congratulations! Pro license is activated successfully."
1302
+ #~ msgstr ""
1303
+ #~ "Félicitations! La version PRO de cette extension a été téléchargée et "
1304
+ #~ "activée avec succès."
1305
 
1306
+ #~ msgid "You will be automatically redirected to the %s in 7 seconds."
1307
+ #~ msgstr "Vous allez être redirigé automatiquement vers %s dans 7 secondes"
1308
+
1309
+ #~ msgid "Settings page"
1310
+ #~ msgstr "Page des paramètres"
1311
 
1312
  #~ msgid ""
1313
+ #~ "Enter your license key to activate %s and get premium plugin features."
1314
  #~ msgstr ""
1315
+ #~ "Saisir votre clé de licence pour activer %s et obtenir les fonctions "
1316
+ #~ "premium."
1317
 
1318
  #~ msgid ""
1319
+ #~ "Unfortunately, you have exceeded the number of available tries per day. "
1320
+ #~ "Please, upload the plugin manually."
1321
  #~ msgstr ""
1322
+ #~ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
1323
+ #~ "télécharger l'extension manuellement."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1324
 
1325
+ #~ msgid "Start Your Free %s-Day Trial Now"
1326
+ #~ msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
1327
 
1328
+ #~ msgid "Check license key"
1329
+ #~ msgstr "Vérifier la clé de licence"
1330
 
1331
  #~ msgid ""
1332
+ #~ "If necessary, you can check if the license key is correct or reenter it "
1333
+ #~ "in the field below."
1334
  #~ msgstr ""
1335
+ #~ "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou "
1336
+ #~ "la saisir de nouveau dans le champ ci-dessous."
 
 
 
 
 
 
 
 
 
1337
 
1338
+ #~ msgid "Manage License Settings"
1339
+ #~ msgstr "Paramètres de gestion des licences"
1340
 
1341
+ #~ msgid "Login to Client Area"
1342
+ #~ msgstr "Connexion à l'espace client"
1343
 
1344
+ #~ msgid ""
1345
+ #~ "Manage active licenses, download BWS products, and view your payment "
1346
+ #~ "history using BestWebSoft Client Area."
1347
  #~ msgstr ""
1348
+ #~ "Gérer les licences actives, télécharger les produits BWS, et voir "
1349
+ #~ "l'historique de vos paiements dans la zone client BestWebSoft."
 
 
 
 
 
 
1350
 
1351
+ #~ msgid "Wrong license key"
1352
+ #~ msgstr "Clé de licence incorrecte"
1353
 
1354
+ #~ msgid ""
1355
+ #~ "Something went wrong. Please try again later. If the error appears again, "
1356
+ #~ "please contact us"
1357
+ #~ msgstr ""
1358
+ #~ "Il est survenu une erreur. Essayer de nouveau. Si l'erreur se produit de "
1359
+ #~ "nouveau, merci de contacter <a href=http://support.bestwebsoft."
1360
+ #~ "com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
1361
 
1362
+ #~ msgid "We are sorry for inconvenience."
1363
+ #~ msgstr "Nous sommes désolés pour le désagrément."
1364
 
1365
+ #~ msgid "Wrong license key."
1366
+ #~ msgstr "Clé de licence incorrecte."
1367
 
1368
+ #~ msgid "This license key is bound to another site."
1369
+ #~ msgstr "La clé de licence correspond à un autre site."
1370
 
1371
+ #~ msgid ""
1372
+ #~ "This license key is valid, but Your license has expired. If you want to "
1373
+ #~ "update our plugin in future, you should extend the license."
1374
+ #~ msgstr ""
1375
+ #~ "La clé de licence est valide mais votre durée de validité est passée. "
1376
+ #~ "Pour continuer à disposer du support rapide et des mises à jour de "
1377
+ #~ "l'extension vous devez la renouveler."
1378
 
1379
+ #~ msgid "Unfortunately, you have exceeded the number of available tries."
1380
+ #~ msgstr ""
1381
+ #~ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
1382
+ #~ "télécharger l'extension manuellement."
1383
 
1384
+ #~ msgid ""
1385
+ #~ "Unfortunately, the Pro Trial licence was already installed to this "
1386
+ #~ "domain. The Pro Trial license can be installed only once."
1387
+ #~ msgstr ""
1388
+ #~ "Malheureusement la licence PRO a déjà été installée sur ce domaine. La "
1389
+ #~ "licence PRO d'évaluation peut être installée une seule fois."
1390
 
1391
+ #~ msgid "The Pro Trial license key is valid."
1392
+ #~ msgstr "La clé de licence d'évaluation est valide."
1393
 
1394
+ #~ msgid "The license key is valid."
1395
+ #~ msgstr "La clé de licence est valide."
1396
 
1397
+ #~ msgid "Your license will expire on"
1398
+ #~ msgstr "Votre licence se termine le "
1399
 
1400
  #~ msgid ""
1401
+ #~ "In order to continue using the plugin it is necessary to buy a %s license."
 
1402
  #~ msgstr ""
1403
+ #~ "Afin de pouvoir continuer à utiliser cette extension il est nécessaire "
1404
+ #~ "d'acheter une licence %s."
1405
 
1406
  #~ msgid ""
1407
+ #~ "Unfortunately, Your license has expired. To continue getting top-priority "
1408
+ #~ "support and plugin updates, you should extend it in your %s"
 
1409
  #~ msgstr ""
1410
+ #~ "Désoler, votre licence est terminée. Pour continuer à disposer du support "
1411
+ #~ "rapide et des mises à jour de l'extension vous devez la renouveler dans "
1412
+ #~ "votre %s"
 
 
 
 
 
 
1413
 
1414
+ #~ msgid ""
1415
+ #~ "Unfortunately, the Pro licence was already installed to this domain. The "
1416
+ #~ "Pro Trial license can be installed only once."
1417
+ #~ msgstr ""
1418
+ #~ "Malheureusement la licence PRO a déjà été installée sur ce domaine. La "
1419
+ #~ "licence PRO d'évaluation peut être installée une seule fois."
1420
 
1421
+ #~ msgid ""
1422
+ #~ "Failed to download the zip archive. Please, upload the plugin manually"
1423
+ #~ msgstr ""
1424
+ #~ "Erreur de téléchargement de l'archive ZIP. Merci de télécharger "
1425
+ #~ "l'extension manuellement."
1426
 
1427
+ #~ msgid "Failed to open the zip archive. Please, upload the plugin manually"
1428
+ #~ msgstr ""
1429
+ #~ "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
1430
+ #~ "manuellement."
1431
 
1432
  #~ msgid ""
1433
+ #~ "Your server does not support either ZipArchive or Phar. Please, upload "
1434
+ #~ "the plugin manually"
 
1435
  #~ msgstr ""
1436
+ #~ "Votre serveur n'a pas le support du format des archives ZIP ou Phar. "
1437
+ #~ "Merci de télécharger l'extension manuellement."
 
 
1438
 
1439
+ #~ msgid "UploadDir is not writable. Please, upload the plugin manually"
1440
+ #~ msgstr ""
1441
+ #~ "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
1442
+ #~ "manuellement."
1443
 
1444
  #~ msgid ""
1445
+ #~ "Something went wrong. Try again later or upload the plugin manually. We "
1446
+ #~ "are sorry for inconvenience."
1447
  #~ msgstr ""
1448
+ #~ "Il est survenu une erreur. Essayer de nouveau ou bien télécharger "
1449
+ #~ "l'extension manuellement.Nous sommes désolés pour le désagrément."
1450
+
1451
+ #~ msgid "Please, enter Your license key"
1452
+ #~ msgstr "Merci de saisir votre clé de licence"
1453
+
1454
+ #~ msgid "Need Help?"
1455
+ #~ msgstr "Besoin d'aide ?"
1456
+
1457
+ #~ msgid "Read the Instruction"
1458
+ #~ msgstr "Lire les instructions"
1459
+
1460
+ #~ msgid "Watch the Video"
1461
+ #~ msgstr "Regarder la vidéo"
1462
+
1463
+ #~ msgid "Start Your Free Trial"
1464
+ #~ msgstr "Débuter votre essai gratuit"
1465
 
1466
  #~ msgid "Advertisement"
1467
  #~ msgstr "Publicité"
1488
  #~ msgstr "Autre"
1489
 
1490
  #~ msgid ""
1491
+ #~ "This license key is bound to another site. Change it via personal Client "
1492
+ #~ "Area."
 
 
 
 
 
 
 
 
 
 
 
1493
  #~ msgstr ""
1494
  #~ "La clé de licence correspond à un autre site. Modifier là au travers de "
1495
  #~ "votre espace client."
1503
  #~ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
1504
  #~ "télécharger l'extension manuellement."
1505
 
1506
+ #~ msgid "Congratulations! Pro Membership license is activated successfully."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1507
  #~ msgstr ""
1508
+ #~ "Félicitations! La version PRO de cette extension a été activée avec "
1509
+ #~ "succès."
1510
 
1511
  #~ msgid "Please enter your license key."
1512
  #~ msgstr "Merci de saisir votre clé de licence."
1532
  #~ msgid "No"
1533
  #~ msgstr "No"
1534
 
1535
+ #~ msgid "WordPress Environment"
1536
+ #~ msgstr "Environnement WordPress"
1537
 
1538
+ #~ msgid "Home URL"
1539
+ #~ msgstr "Home URL"
1540
 
1541
+ #~ msgid "Website URL"
1542
+ #~ msgstr "Site URL"
1543
 
1544
+ #~ msgid "WP Version"
1545
+ #~ msgstr "WP Version"
1546
 
1547
+ #~ msgid "WP Multisite"
1548
+ #~ msgstr "WP Multi-site"
1549
 
1550
+ #~ msgid "WP Memory Limit"
1551
+ #~ msgstr "WP Memory Limit"
1552
+
1553
+ #~ msgid "Active Theme"
1554
+ #~ msgstr "Active Theme"
1555
+
1556
+ #~ msgid "by %s"
1557
+ #~ msgstr "par %s"
1558
+
1559
+ #~ msgid "Server Environment"
1560
+ #~ msgstr "Environnement serveur"
1561
+
1562
+ #~ msgid "Operating System"
1563
+ #~ msgstr "Operating System"
1564
+
1565
+ #~ msgid "Server"
1566
+ #~ msgstr "Server"
1567
+
1568
+ #~ msgid "PHP Version"
1569
+ #~ msgstr "PHP Version"
1570
 
1571
  #~ msgid "PHP Safe Mode"
1572
  #~ msgstr "PHP Safe Mode"
1577
  #~ msgid "PHP Memory Limit"
1578
  #~ msgstr "PHP Memory Limit"
1579
 
1580
+ #~ msgid "Memory Usage"
1581
+ #~ msgstr "Utilisation de la mémoire"
1582
+
1583
  #~ msgid "PHP Max Upload Size"
1584
  #~ msgstr "PHP Max Upload Size"
1585
 
1598
  #~ msgid "PHP XML support"
1599
  #~ msgstr "PHP XML support"
1600
 
1601
+ #~ msgid "Database"
1602
+ #~ msgstr "Base de données"
1603
 
1604
+ #~ msgid "WP DB version"
1605
+ #~ msgstr "WP DB version"
1606
 
1607
+ #~ msgid "MySQL version"
1608
+ #~ msgstr "MYSQL Version"
1609
 
1610
+ #~ msgid "SQL Mode"
1611
+ #~ msgstr "SQL Mode"
1612
 
1613
+ #~ msgid "Active Plugins"
1614
+ #~ msgstr "Extensions actives"
1615
 
1616
+ #~ msgid "Inactive Plugins"
1617
+ #~ msgstr "Extensions inactives"
1618
 
1619
  #~ msgid "Please enter a valid email address."
1620
  #~ msgstr "Merci de fournir une adresse e-mail valide."
1621
 
1622
+ #~ msgid "Email with system info is sent to"
1623
  #~ msgstr "L'e-mail avec les informations systèmes est envoyé à "
1624
 
1625
  #~ msgid "Thank you for contacting us."
1640
  #~ msgid "Manage purchased licenses & subscriptions"
1641
  #~ msgstr "Gérer les licences et les adhésions"
1642
 
 
 
 
1643
  #~ msgid "Get Access to %s+ Premium Plugins"
1644
  #~ msgstr "Accéder à plus de %s extension premiums"
1645
 
1646
  #~ msgid "Subscribe to Pro Membership"
1647
  #~ msgstr "Souscrire une adhésion PRO"
1648
 
 
 
 
1649
  #~ msgid "Enter your license key"
1650
  #~ msgstr "Merci de saisir votre clé de licence"
1651
 
1679
  #~ msgid "Downloading install package from"
1680
  #~ msgstr "Télécharger le paquet d'installation depuis"
1681
 
 
 
 
 
 
 
1682
  #~ msgid "Unpacking the package"
1683
  #~ msgstr "Décompresser le paquet"
1684
 
1685
  #~ msgid "Installing the plugin"
1686
  #~ msgstr "Installer l'extension"
1687
 
1688
+ #~ msgid "The plugin %s is successfully installed."
1689
+ #~ msgstr "L'extension %s a été installée avec succès."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1690
 
1691
  #~ msgid "Activate Plugin"
1692
  #~ msgstr "Activer l'extension"
1748
  #~ msgid "Send to custom email &#187;"
1749
  #~ msgstr "Envoyer un e-mail spécifique &#187;"
1750
 
1751
+ #~ msgid "requires"
1752
+ #~ msgstr "requis"
 
 
 
 
 
 
 
 
 
1753
 
1754
  #~ msgid ""
1755
  #~ "or higher, that is why it has been deactivated! Please upgrade WordPress "
1764
  #~ msgid "Plugins page"
1765
  #~ msgstr "Page des extensions"
1766
 
1767
+ #~ msgid "Like the plugin?"
1768
+ #~ msgstr "Vous aimez cette extension?"
1769
+
1770
+ #~ msgid "Rate it"
1771
+ #~ msgstr "Noter la"
1772
+
1773
+ #~ msgid "Need help?"
1774
+ #~ msgstr "Besoin d'aide ?"
1775
+
1776
+ #~ msgid "Visit Help Center"
1777
+ #~ msgstr "Visite le centre de support"
1778
+
1779
+ #~ msgid "Want to support the plugin?"
1780
+ #~ msgstr "Vous voulez aider cette extension?"
1781
+
1782
+ #~ msgid "WARNING: Illegal use notification"
1783
+ #~ msgstr "AVERTISSEMENT : Notification d'utilisation abusive"
1784
+
1785
+ #~ msgid ""
1786
+ #~ "You can use one license of the Pro plugin for one domain only. Please "
1787
+ #~ "check and edit your license or domain if necessary using you personal "
1788
+ #~ "Client Area. We strongly recommend you to solve the problem within 24 "
1789
+ #~ "hours, otherwise the Pro plugin will be deactivated."
1790
+ #~ msgstr ""
1791
+ #~ "Vous ne pouvez utiliser qu'une licence pour un domaine de la version PRO "
1792
+ #~ "de l'extension. Vérifiez et modifiez votre licence ou domaine si "
1793
+ #~ "nécessaire dans votre zone client. Nous vous recommandons de résoudre ce "
1794
+ #~ "problème dans les 24 heures, sinon l'extension sera rendue inactive. "
1795
+
1796
+ #~ msgid ""
1797
+ #~ "Notice: Your Pro Trial license has expired. To continue using the plugin, "
1798
+ #~ "you should buy a Pro license"
1799
+ #~ msgstr ""
1800
+ #~ "Information : Votre licence d'évaluation est terminée. Pour continuer à "
1801
+ #~ "utiliser cette extension vous devez acheter une licence PRO"
1802
+
1803
+ #~ msgid ""
1804
+ #~ "Your license has expired. To continue getting top-priority support and "
1805
+ #~ "plugin updates, you should extend it."
1806
+ #~ msgstr ""
1807
+ #~ "Votre licence est terminée. Pour continuer à disposer du support rapide "
1808
+ #~ "et des mises à jour de l'extension vous devez la renouveler."
1809
+
1810
+ #~ msgid "Notice: You are using the Pro Trial license of %s plugin."
1811
+ #~ msgstr ""
1812
+ #~ "Avertissement : vous utilisez la version d'évaluation de l'extension %s."
1813
+
1814
+ #~ msgid "Notice: You are using the Pro Trial license of plugin."
1815
+ #~ msgstr ""
1816
+ #~ "Avertissement : vous utilisez la version d'évaluation de l'extension."
1817
+
1818
+ #~ msgid "The Pro Trial license will expire on"
1819
+ #~ msgstr "Votre licence se termine le "
1820
+
1821
  #~ msgid ""
1822
  #~ "or higher! We do not guarantee that our plugin will work correctly. "
1823
  #~ "Please upgrade to WordPress latest version."
1843
  #~ msgid "Less Details"
1844
  #~ msgstr "Moins de détails"
1845
 
1846
+ #~ msgid "Deprecated function(-s) is used on the site here:"
1847
+ #~ msgstr "Des fonctions obsolètes sont utilisées sur ce site ici&nbsp;:"
1848
+
1849
+ #~ msgid ""
1850
+ #~ "This function(-s) will be removed over time. Please update the product(-"
1851
+ #~ "s)."
1852
+ #~ msgstr ""
1853
+ #~ "Ces fonctions seront supprimées dans une prochaine version. Merci de "
1854
+ #~ "mettre à jour vos produits."
1855
+
1856
  #~ msgid "It’s time to upgrade your"
1857
  #~ msgstr "C'est le moment de mettre à jour votre "
1858
 
1867
  #~ "Étend les fonctionnalités classiques de l'extension avec des nouvelles "
1868
  #~ "options."
1869
 
1870
+ #~ msgid ""
1871
+ #~ "Your license key for %s expires on %s and you won't be granted TOP-"
1872
+ #~ "PRIORITY SUPPORT or UPDATES."
1873
  #~ msgstr ""
1874
+ #~ "Votre clé de licence pour %s est terminée le %s et vous ne disposerez "
1875
+ #~ "plus du support rapide et des mises à jour."
 
 
 
1876
 
1877
+ #~ msgid "Thank you for choosing"
1878
+ #~ msgstr "Merci d'avoir choisi"
1879
 
1880
+ #~ msgid ""
1881
+ #~ "If you have a feature, suggestion or idea you'd like to see in the "
1882
+ #~ "plugin, we'd love to hear about it!"
1883
+ #~ msgstr ""
1884
+ #~ "Si vous avez une fonctionnalité, une suggestion ou une idée que vous "
1885
+ #~ "souhaitez pour cette extension, nous serons ravis d'en parler avec vous !"
1886
 
1887
+ #~ msgid "Suggest a Feature"
1888
+ #~ msgstr "Proposer une fonctionnalité"
1889
 
1890
+ #~ msgid "The plugin's settings have been changed."
1891
+ #~ msgstr "Les paramètres de l'extension ont été modifiés."
1892
 
1893
  #~ msgid ""
1894
+ #~ "You can always look at premium options by checking the \"Pro Options\" in "
1895
+ #~ "the \"Misc\" tab."
1896
  #~ msgstr ""
1897
+ #~ "Vous pouvez toujours consulter les options premium en cliquant sur \"Voir "
1898
+ #~ "les fonctionnalités PRO\" dans l'onglet \"Divers\""
1899
 
1900
+ #~ msgid "Add BWS Shortcode"
1901
+ #~ msgstr "Ajouter le code court de l'extension BWS"
1902
+
1903
+ #~ msgid "Add BWS Plugins Shortcode"
1904
+ #~ msgstr "Ajouter le code court de l'extension BWS"
1905
+
1906
+ #~ msgid "Add shortcode"
1907
+ #~ msgstr "Ajouter le code court"
1908
+
1909
+ #~ msgid "Add BestWebSoft plugins' shortcodes using this button."
1910
+ #~ msgstr "Ajouter le code court de l'extension BWS avec ce bouton."
1911
+
1912
+ #~ msgid "Are you sure you want to restore default settings?"
1913
+ #~ msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
1914
+
1915
+ #~ msgid "Yes, restore all settings"
1916
+ #~ msgstr "Oui, remettre les valeurs par défaut"
1917
+
1918
+ #~ msgid "Plugin"
1919
+ #~ msgstr "Extension"
1920
+
1921
+ #~ msgid "Shortcode settings"
1922
+ #~ msgstr "Paramètres du code court"
1923
+
1924
+ #~ msgid "The shortcode will be inserted"
1925
+ #~ msgstr "Le code court sera inséré"
1926
+
1927
+ #~ msgid "For more information:"
1928
+ #~ msgstr "Pour plus d'information&nbsp;:"
1929
+
1930
+ #~ msgid "Documentation"
1931
+ #~ msgstr "Documentation"
1932
+
1933
+ #~ msgid "Video Instructions"
1934
+ #~ msgstr "Instruction vidéo"
1935
+
1936
+ #~ msgid "Submit a Request"
1937
+ #~ msgstr "Soumettre une requête"
1938
+
1939
+ #~ msgid "System Status"
1940
+ #~ msgstr "Etat du système"
1941
+
1942
+ #~ msgid "Please, enter your license key"
1943
  #~ msgstr "Merci de saisir votre clé de licence"
1944
 
1945
  #~ msgid ""
1946
+ #~ "If necessary, you can check if the license key is correct or reenter it "
1947
+ #~ "in the field below. You can find your license key on your personal page - "
1948
+ #~ "Client Area - on our website"
1949
  #~ msgstr ""
1950
+ #~ "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou "
1951
+ #~ "la saisir de nouveau dans le champ ci-dessous. Vous pouvez trouver votre "
1952
+ #~ "clé de licence sur votre page personnelle (zone client) sur notre site "
1953
+ #~ "web."
1954
+
1955
+ #~ msgid ""
1956
+ #~ "(your username is the email address specified during the purchase). If "
1957
+ #~ "necessary, please submit \"Lost your password?\" request."
1958
+ #~ msgstr ""
1959
+ #~ "(votre nom d'utilisateur est l'adresse e-mail que vous avez donnée lors "
1960
+ #~ "de l'achat de l'extension). Si nécessaire, utilisez la fonction de "
1961
+ #~ "demande de mot de passe perdu."
1962
+
1963
+ #~ msgid "After that, you can activate it by entering your license key."
1964
+ #~ msgstr ""
1965
+ #~ " Après vous pouvez activer cette extension en donnant votre clé de "
1966
+ #~ "licence."
1967
+
1968
+ #~ msgid "License key can be found in the"
1969
+ #~ msgstr "La clé de licence peut être trouvée dans "
1970
+
1971
+ #~ msgid "(your username is the email address specified during the purchase)."
1972
+ #~ msgstr ""
1973
+ #~ "(votre nom d'utilisateur est l'adresse e-mail que vous avez donnée lors "
1974
+ #~ "de l'achat de l'extension)."
1975
+
1976
+ #~ msgid ""
1977
+ #~ "Congratulations! The Pro license of the plugin is activated successfully."
1978
+ #~ msgstr ""
1979
+ #~ "Félicitations! La version PRO de cette extension a été activée avec "
1980
+ #~ "succès."
1981
 
1982
  #~ msgid "Please, go to"
1983
  #~ msgstr "Merci d’aller à"
1988
  #~ msgid "You will be redirected automatically in 5 seconds."
1989
  #~ msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
1990
 
1991
+ #~ msgid "Check premium options on the plugin settings page!"
1992
+ #~ msgstr "Vérifier les options premium dans les paramètres de l'extension!"
1993
+
1994
+ #~ msgid "Restore all plugin settings to defaults"
1995
+ #~ msgstr "Remettre les valeurs par défaut des paramètres de l'extension"
1996
+
1997
+ #~ msgid "Restore settings"
1998
+ #~ msgstr "Remettre les paramètres"
1999
+
2000
+ #~ msgid "File %s edited successfully."
2001
+ #~ msgstr "Fichier %s modifié avec succès."
2002
+
2003
+ #~ msgid "Not enough permissions to create or update the file"
2004
+ #~ msgstr "Pas assez de droits pour créer ou modifier le fichier"
2005
+
2006
+ #~ msgid "Not enough permissions to create the file"
2007
+ #~ msgstr "Pas assez de droits pour créer le fichier"
2008
+
2009
+ #~ msgid "Editing"
2010
+ #~ msgstr "Modifier"
2011
+
2012
+ #~ msgid ""
2013
+ #~ "Congratulations! Pro version of the plugin is installed and activated "
2014
+ #~ "successfully."
2015
+ #~ msgstr ""
2016
+ #~ "Félicitations! La version PRO de cette extension a été téléchargée et "
2017
+ #~ "activée avec succès."
2018
+
2019
  #~ msgid "Show Pro features"
2020
  #~ msgstr "Voir les fonctionnalités PRO"
2021
 
2025
  #~ msgid "version of the plugin."
2026
  #~ msgstr "version de l'extension."
2027
 
2028
+ #~ msgid ""
2029
+ #~ "The following files '%s' and '%s' were not found in the directory of your "
2030
+ #~ "theme. Please copy them from the directory `%s` to the directory of your "
2031
+ #~ "theme for the correct work of the Gallery plugin"
2032
  #~ msgstr ""
2033
+ #~ "Les fichiers suivants '%s' et '%s' n'ont pas été trouvés dans le "
2034
+ #~ "répertoire de votre thème. Merci de les copier depuis le répertoire '%s' "
2035
+ #~ "dans le répertoire de votre thème pour le bon fonctionnement de "
2036
+ #~ "l'extension Gallery"
2037
 
2038
+ #~ msgid ""
2039
+ #~ "If you would like to add a Gallery to your page or post, please use %s "
2040
+ #~ "button"
2041
+ #~ msgstr ""
2042
+ #~ "Si vous voulez ajouter la galerie dans une page ou un article, utiliser "
2043
+ #~ "le bouton %s"
2044
 
2045
  #~ msgid ""
2046
+ #~ "You can add the Gallery to your page or post by clicking on %s button in "
2047
+ #~ "the content edit block using the Visual mode. If the button isn't "
2048
+ #~ "displayed, please use the shortcode below"
2049
  #~ msgstr ""
2050
+ #~ "Vous pouvez ajouter la galerie à votre page ou votre article en cliquant "
2051
+ #~ "sur le bouton %s dans la zone d'édition du contenu en mode visuel. Si le "
2052
+ #~ "bouton n'est pas visible, vous pouvez utiliser le code court ci-dessous"
2053
 
2054
+ #~ msgid ""
2055
+ #~ "Add this shortcode to a page, post or widget to display a single gallery"
2056
  #~ msgstr ""
2057
+ #~ "Ajouter ce code court à une page, un article ou un widget pour afficher "
2058
+ #~ "une seule galerie"
2059
 
2060
  #~ msgid ""
2061
+ #~ "Use this shortcode to display an album image with the description and the "
2062
+ #~ "link to a single gallery page"
2063
  #~ msgstr ""
2064
+ #~ "Utilisez ce code court pour afficher une image représentant l'album avec "
2065
+ #~ "la description et un lien vers une page contenant la galerie"
2066
 
2067
+ #~ msgid "Short display"
2068
+ #~ msgstr "Affichage court"
2069
 
2070
+ #~ msgid "Install plugin"
2071
+ #~ msgstr "Installer l'extension"
2072
+
2073
+ #~ msgid "Photos"
2074
+ #~ msgstr "Photos"
2075
+
2076
+ #~ msgid "Go PRO"
2077
+ #~ msgstr "Choisir la version PRO"
2078
+
2079
+ #~ msgid "Please enable JavaScript to use the option to renew images."
2080
+ #~ msgstr ""
2081
+ #~ "Merci d'activer JavaScript pour utiliser l'option de mise à jour des "
2082
+ #~ "images."
2083
 
2084
  #~ msgid ""
2085
+ #~ "You can add the Gallery to your page or post by clicking on %s button in "
2086
+ #~ "the content edit block using the Visual mode. If the button isn't "
2087
+ #~ "displayed, please use the shortcode %s, where * stands for gallery ID"
2088
  #~ msgstr ""
2089
+ #~ "Vous pouvez ajouter la galerie à votre page ou votre article en cliquant "
2090
+ #~ "sur le bouton %s dans la zone d'édition du contenu en mode visuel. Si le "
2091
+ #~ "bouton n'est pas visible, vous pouvez utiliser le code court %s où * "
2092
+ #~ "représente l'ID de la galerie"
2093
 
2094
+ #~ msgid ""
2095
+ #~ "The number of images per row can be less depending on the width of the "
2096
+ #~ "parent block"
2097
  #~ msgstr ""
2098
+ #~ "Il peut y avoir moins d'images par ligne en fonction de la largeur du "
2099
+ #~ "bloc parent"
2100
 
2101
  #~ msgid ""
2102
+ #~ "WordPress will create a new thumbnail with the specified dimensions when "
2103
+ #~ "you upload a new photo."
2104
  #~ msgstr ""
2105
+ #~ "WordPress créera une copie de la miniature avec les dimensions spécifiées "
2106
+ #~ "quand vous envoyez une nouvelle photo."
2107
 
2108
+ #~ msgid "For the album cover"
2109
+ #~ msgstr "Pour la vignette de l'album"
2110
 
2111
+ #~ msgid "width x height"
2112
+ #~ msgstr "largeur x hauteur"
2113
 
2114
+ #~ msgid "in px"
2115
+ #~ msgstr "en px"
2116
+
2117
+ #~ msgid "Update images for gallery"
2118
+ #~ msgstr "Mettre à jour les images pour la galerie"
2119
+
2120
+ #~ msgid "For images in the lightbox"
2121
+ #~ msgstr "Pour les images dans la boite"
2122
+
2123
+ #~ msgid "Display a full size image in the lightbox"
2124
+ #~ msgstr "Afficher une image en taille normale dans la boite"
2125
+
2126
+ #~ msgid "center"
2127
+ #~ msgstr "centré"
2128
+
2129
+ #~ msgid "Horizontal"
2130
+ #~ msgstr "Horizontale"
2131
+
2132
+ #~ msgid "Vertical"
2133
+ #~ msgstr "Verticale"
2134
+
2135
+ #~ msgid "Unlock premium options by upgrading to Pro version"
2136
+ #~ msgstr "Débloquer les options premium en migrant vers la version PRO."
2137
+
2138
+ #~ msgid "Display image title"
2139
+ #~ msgstr "Afficher le titre de l'image"
2140
 
2141
  #~ msgid ""
2142
+ #~ "Turn off the checkbox, if you want to display image title just in a "
2143
+ #~ "lightbox"
2144
  #~ msgstr ""
2145
+ #~ "Si vous voulez juste afficher le titre de l'image dans une boite, "
2146
+ #~ "désactiver l'option"
 
2147
 
2148
+ #~ msgid "Border width in px, just numbers"
2149
+ #~ msgstr "Taille de la bordure en pixel, juste le nombre"
2150
 
2151
+ #~ msgid "by Attachment ID"
2152
+ #~ msgstr "par ID du fichier"
2153
+
2154
+ #~ msgid "by Image Name"
2155
+ #~ msgstr "par nom de l'image "
2156
+
2157
+ #~ msgid "by Date"
2158
+ #~ msgstr "par date"
2159
+
2160
+ #~ msgid "by Sorting order in the Gallery"
2161
+ #~ msgstr "par ordre de tri dans la galerie"
2162
 
2163
  #~ msgid ""
2164
+ #~ "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
 
2165
  #~ msgstr ""
2166
+ #~ "ASC (ordre ascendant de la plus petite à la plus grande valeur - 1, 2, 3; "
2167
+ #~ "a, b, c)"
2168
 
2169
  #~ msgid ""
2170
+ #~ "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
 
2171
  #~ msgstr ""
2172
+ #~ "DESC (ordre descendant de la plus grade à la plus petite - 3, 2, 1; c, b, "
2173
+ #~ "a)"
2174
 
2175
+ #~ msgid "Sort galleries"
2176
+ #~ msgstr "Trier les galeries"
 
2177
 
2178
+ #~ msgid "by Title"
2179
+ #~ msgstr "par titre"
 
2180
 
2181
+ #~ msgid "by Author"
2182
+ #~ msgstr "par auteur"
2183
 
2184
+ #~ msgid "The galleries sort order"
2185
+ #~ msgstr "L'ordre de tri des galleries"
2186
+
2187
+ #~ msgid "Display the Back link"
2188
+ #~ msgstr "Afficher le lien de retour"
2189
 
2190
+ #~ msgid "The Back link text"
2191
+ #~ msgstr "Le texte pour le lien de retour"
2192
 
2193
+ #~ msgid "Gallery page (Page with Gallery Template)"
2194
+ #~ msgstr "Page de la galerie (Page avec le modèle de galerie)"
2195
 
2196
+ #~ msgid "(Full URL to custom page)"
2197
+ #~ msgstr "(URL complète pour la page spécifique)"
2198
 
2199
+ #~ msgid "Add gallery to the search"
2200
+ #~ msgstr "Ajouter les galeries à la recherche"
 
 
 
 
2201
 
2202
+ #~ msgid "Using"
2203
+ #~ msgstr "Utilisant"
2204
 
2205
+ #~ msgid "powered by"
2206
+ #~ msgstr "fournis par"
2207
 
2208
+ #~ msgid "Download"
2209
+ #~ msgstr "Télécharger"
2210
+
2211
+ #~ msgid "Rewrite templates after update"
2212
+ #~ msgstr "Modifier les modèles après la mise à jour"
2213
 
2214
  #~ msgid ""
2215
+ #~ "Turn off the checkbox, if You edited the file '%s' or '%s' file in your "
2216
+ #~ "theme folder and You don't want to rewrite them"
2217
  #~ msgstr ""
2218
+ #~ "Décochez la case si vous avez modifié le fichier '%s' ou le fichier '%s' "
2219
+ #~ "dans le répertoire de votre thème et que vous souhaitez garder votre "
2220
+ #~ "version"
2221
 
2222
+ #~ msgid ""
2223
+ #~ "To avoid conflicts with other plugins, please mark this checkbox to "
2224
+ #~ "rename it now"
2225
+ #~ msgstr ""
2226
+ #~ "Pour éviter les conflits avec d'autres extensions, merci de cocher cette "
2227
+ #~ "case pour effectuer la renommage maintenant."
2228
 
2229
+ #~ msgid "Single gallery view"
2230
+ #~ msgstr "Vue pour une seule galerie"
2231
 
2232
+ #~ msgid "Use pagination for images"
2233
+ #~ msgstr "Utiliser la pagination pour les images"
2234
 
2235
+ #~ msgid "per page"
2236
+ #~ msgstr "par page"
2237
 
2238
+ #~ msgid "Lightbox background"
2239
+ #~ msgstr "Fond de la boite"
2240
 
2241
+ #~ msgid "Background transparency (from 0 to 1)"
2242
+ #~ msgstr "Transparence du fond (de 0 à 1)"
2243
 
2244
+ #~ msgid "When using the gallery template or a shortcode with `%s` parameter"
2245
+ #~ msgstr ""
2246
+ #~ "Quand vous utilisez le modèle de galerie ou le code court avec le "
2247
+ #~ "paramètre '%s'"
2248
 
2249
+ #~ msgid "Do not use"
2250
+ #~ msgstr "Ne pas utiliser"
2251
 
2252
+ #~ msgid "Thumbnail helper"
2253
+ #~ msgstr "Assistant de la galerie"
2254
 
2255
+ #~ msgid "FaceBook"
2256
+ #~ msgstr "FaceBook"
2257
 
2258
+ #~ msgid "Twitter"
2259
+ #~ msgstr "Twitter"
2260
 
2261
+ #~ msgid "Pinterest"
2262
+ #~ msgstr "Pinterest"
2263
 
2264
+ #~ msgid "Google +1"
2265
+ #~ msgstr "Google +1"
2266
 
2267
+ #~ msgid "Align"
2268
+ #~ msgstr "Aligner"
2269
 
2270
+ #~ msgid "left"
2271
+ #~ msgstr "gauche"
2272
 
2273
+ #~ msgid "Title for lightbox button"
2274
+ #~ msgstr "Titre pour le bouton lightbox"
2275
 
2276
+ #~ msgid "Slug for gallery item"
2277
+ #~ msgstr "Racine pour les pages des galeries"
 
 
2278
 
2279
+ #~ msgid "for any structure of permalinks except the default structure"
2280
+ #~ msgstr "pour toute forme de permaliens à l'exception de la forme par défaut"
2281
 
2282
+ #~ msgid "No image found."
2283
+ #~ msgstr "Pas d'image trouvée."
2284
 
2285
+ #~ msgid "Install now"
2286
+ #~ msgstr "Installé maintenant"
2287
 
2288
+ #~ msgid ""
2289
+ #~ "The alt attribute specifies an alternate text for an image, if the image "
2290
+ #~ "cannot be displayed."
2291
  #~ msgstr ""
2292
+ #~ "L'attribut 'alt' permet de définir un texte alternatif pour une image, "
2293
+ #~ "quand celle-ci ne peux pas être affichée."
2294
 
2295
  #~ msgid ""
2296
+ #~ "By clicking on the thumbnail you'll go to the link (if the field is "
2297
+ #~ "filled) or the image will be opened in the lightbox (if the field isn't "
2298
+ #~ "filled)"
2299
  #~ msgstr ""
2300
+ #~ "En cliquant sur la vignette vous naviguerez vers le lien (si le champ est "
2301
+ #~ "rempli) ou bien l'image sera ouverte dans une 'lightbox' (si le champ est "
2302
+ #~ "vide)"
2303
 
2304
+ #~ msgid "Edit Attachment"
2305
+ #~ msgstr "Modifier le document"
2306
 
2307
+ #~ msgid "This setting is available in Pro version"
2308
+ #~ msgstr "Ce paramètre est disponible dans la version Pro"
2309
 
2310
+ #~ msgid "WordPress Version"
2311
+ #~ msgstr "WordPress Version"
2312
 
2313
+ #~ msgid "WordPress DB Version"
2314
+ #~ msgstr "WordPress DB Version"
2315
+
2316
+ #~ msgid "Successfully installed the plugin"
2317
+ #~ msgstr "Extension installée avec succès"
2318
+
2319
+ #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
2320
  #~ msgstr ""
2321
+ #~ "Si notre extension vous satisfait, merci de la notée avec 5 étoiles dans "
2322
+ #~ "Wordpress"
2323
+
2324
+ #~ msgid "If there is something wrong about it, please contact us"
2325
+ #~ msgstr "Si vous avez des questions, merci de nous contacter"
2326
+
2327
+ #~ msgid "Donations play an important role in supporting great projects"
2328
+ #~ msgstr "Les dons jouent un rôle important dans l'aide aux projets"
2329
+
2330
+ #~ msgid "This license key is bind to another site"
2331
+ #~ msgstr "La clé de licence correspond à un autre site."
2332
+
2333
+ #~ msgid "You license for"
2334
+ #~ msgstr "Votre licence pour"
2335
+
2336
+ #~ msgid "Install demo data"
2337
+ #~ msgstr "Installer les données de démonstration"
2338
+
2339
+ #~ msgid "for an acquaintance with the possibilities of the"
2340
+ #~ msgstr "pour une vision des possibilités de "
2341
 
2342
  #~ msgid "My Account"
2343
  #~ msgstr "Mon compte"
2356
  #~ msgid "Don’t have valid license key yet?"
2357
  #~ msgstr "Vous n'avez pas encore de licence valide ?"
2358
 
 
 
 
2359
  #~ msgid "Installed plugins"
2360
  #~ msgstr "Extensions installées"
2361
 
2500
  #~ msgid "Using Custom Search powered by"
2501
  #~ msgstr "Utiliser les recherche personalisées fournies par"
2502
 
 
 
 
2503
  #~ msgid "Download Custom Search"
2504
  #~ msgstr "Télécharger les recherches personalisées"
2505
 
2541
  #~ "Cette fonction est disponible dans le version pro de cette extension. "
2542
  #~ "Pour plus de détails, suivre le lien"
2543
 
 
 
 
2544
  #~ msgid "Activated plugins"
2545
  #~ msgstr "Extensions activées"
2546
 
languages/gallery-plugin-id_ID.mo ADDED
Binary file
languages/gallery-plugin-id_ID.po ADDED
@@ -0,0 +1,1701 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Gallery\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-04-06 11:30+0300\n"
6
+ "PO-Revision-Date: 2017-04-06 11:30+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_ID\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 1.8.7.1\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: gallery-plugin.php:39 gallery-plugin.php:1389
20
+ #: inc/class-gllr-settings.php:308
21
+ msgid "Gallery Settings"
22
+ msgstr "Pengaturan Gallery"
23
+
24
+ #: gallery-plugin.php:39 inc/class-gllr-settings.php:319
25
+ msgid "Global Settings"
26
+ msgstr "Pengaturan global"
27
+
28
+ #: gallery-plugin.php:45 gallery-plugin.php:2495
29
+ msgid "Upgrade to Pro"
30
+ msgstr "Upgrade ke yang lebih baik"
31
+
32
+ #: gallery-plugin.php:232
33
+ msgid "Return to all albums"
34
+ msgstr "Kembali ke semua album"
35
+
36
+ #: gallery-plugin.php:242
37
+ msgid "See images &raquo;"
38
+ msgstr "Lihat gambar & raquo;"
39
+
40
+ #: gallery-plugin.php:248
41
+ msgid "Download high resolution image"
42
+ msgstr "Download gambar resolusi tinggi"
43
+
44
+ #: gallery-plugin.php:328 gallery-plugin.php:337
45
+ msgid "Galleries"
46
+ msgstr "Galeri"
47
+
48
+ #: gallery-plugin.php:329 gallery-plugin.php:2788
49
+ msgid "Gallery"
50
+ msgstr "Galeri"
51
+
52
+ #: gallery-plugin.php:330
53
+ msgid "Add New Gallery"
54
+ msgstr "Tambahkan Galeri Baru"
55
+
56
+ #: gallery-plugin.php:331
57
+ msgid "Edit Gallery"
58
+ msgstr "Mengedit Galeri"
59
+
60
+ #: gallery-plugin.php:332
61
+ msgid "New Gallery"
62
+ msgstr "Galeri baru"
63
+
64
+ #: gallery-plugin.php:333
65
+ msgid "View Gallery"
66
+ msgstr "Lihat Galeri"
67
+
68
+ #: gallery-plugin.php:334 inc/class-gllr-settings.php:943
69
+ msgid "Search Galleries"
70
+ msgstr "Cari Galeri"
71
+
72
+ #: gallery-plugin.php:335
73
+ msgid "No Gallery found"
74
+ msgstr "Tidak ada Galeri ditemukan"
75
+
76
+ #: gallery-plugin.php:364
77
+ msgid "Gallery Shortcode"
78
+ msgstr "galeri pendek"
79
+
80
+ #: gallery-plugin.php:366 gallery-plugin.php:395 gallery-plugin.php:2771
81
+ msgid "Gallery Categories"
82
+ msgstr "Galeri Kategori"
83
+
84
+ #: gallery-plugin.php:376
85
+ msgid ""
86
+ "Add a single gallery with images to your posts, pages, custom post types or "
87
+ "widgets by using the following shortcode:"
88
+ msgstr ""
89
+ "Menambahkan sebuah galeri tunggal dengan gambar untuk posting, halaman, "
90
+ "jenis posting kustom atau widget dengan menggunakan shortcode berikut:"
91
+
92
+ #: gallery-plugin.php:380
93
+ msgid ""
94
+ "Add a gallery cover including featured image, description, and a link to "
95
+ "your single gallery using the following shortcode:"
96
+ msgstr ""
97
+ "Menambahkan penutup galeri termasuk gambar fitur, deskripsi, dan link ke "
98
+ "galeri tunggal Anda menggunakan shortcode berikut:"
99
+
100
+ #: gallery-plugin.php:396
101
+ msgid "Most Used"
102
+ msgstr "sebagian Digunakan"
103
+
104
+ #: gallery-plugin.php:401
105
+ msgid "Default"
106
+ msgstr "kegagalan"
107
+
108
+ #: gallery-plugin.php:406
109
+ msgid "Add New Gallery Category"
110
+ msgstr "Tambahkan Baru Galeri Kategori"
111
+
112
+ #: gallery-plugin.php:410
113
+ #, php-format
114
+ msgid "Install %s"
115
+ msgstr "Menginstal %s"
116
+
117
+ #: gallery-plugin.php:554
118
+ msgid "Gallery Category"
119
+ msgstr "Galeri Kategori"
120
+
121
+ #: gallery-plugin.php:813 gallery-plugin.php:920 gallery-plugin.php:1848
122
+ msgid "Sorry, nothing found."
123
+ msgstr "Maaf, tidak ditemukan."
124
+
125
+ #: gallery-plugin.php:1318
126
+ msgid "Featured Image"
127
+ msgstr "Gambar Pilihan"
128
+
129
+ #: gallery-plugin.php:1319 gallery-plugin.php:2352 gallery-plugin.php:2456
130
+ #: gallery-plugin.php:2567 inc/class-gllr-settings.php:656
131
+ msgid "Title"
132
+ msgstr "Judul"
133
+
134
+ #: gallery-plugin.php:1320 inc/class-gllr-settings.php:41
135
+ msgid "Images"
136
+ msgstr "gambar"
137
+
138
+ #: gallery-plugin.php:1321
139
+ msgid "Shortcode"
140
+ msgstr "Kode pendek"
141
+
142
+ #: gallery-plugin.php:1322 inc/class-gllr-settings.php:661
143
+ msgid "Author"
144
+ msgstr "Penulis"
145
+
146
+ #: gallery-plugin.php:1323 inc/class-gllr-settings.php:511
147
+ #: inc/class-gllr-settings.php:657
148
+ msgid "Date"
149
+ msgstr "Tanggal"
150
+
151
+ #: gallery-plugin.php:1415 gallery-plugin.php:1432
152
+ #: inc/class-gllr-settings.php:30 inc/class-gllr-settings.php:42
153
+ msgid "Settings"
154
+ msgstr "pengaturan"
155
+
156
+ #: gallery-plugin.php:1416
157
+ msgid "FAQ"
158
+ msgstr "FAQ"
159
+
160
+ #: gallery-plugin.php:1417
161
+ msgid "Support"
162
+ msgstr "Mendukung"
163
+
164
+ #: gallery-plugin.php:1455
165
+ msgid "Updating images..."
166
+ msgstr "Memperbarui gambar ..."
167
+
168
+ #: gallery-plugin.php:1456
169
+ msgid "No images found."
170
+ msgstr "Tidak ada gambar yang ditemukan."
171
+
172
+ #: gallery-plugin.php:1457
173
+ msgid "All images were updated."
174
+ msgstr "Semua gambar yang diperbarui."
175
+
176
+ #: gallery-plugin.php:1458
177
+ msgid "Error."
178
+ msgstr "Kesalahan."
179
+
180
+ #: gallery-plugin.php:1470
181
+ msgid ""
182
+ "You are about to remove these items from this gallery.\n"
183
+ " 'Cancel' to stop, 'OK' to delete."
184
+ msgstr ""
185
+ "Anda akan menghapus item dari galeri ini. \\ N 'Batal' untuk menghentikan, "
186
+ "'OK' untuk menghapus."
187
+
188
+ #: gallery-plugin.php:1471
189
+ msgid ""
190
+ "You are about to remove this image from the gallery.\n"
191
+ " 'Cancel' to stop, 'OK' to delete."
192
+ msgstr ""
193
+ "Anda akan menghapus gambar ini dari galeri. \\ N 'Batal' untuk menghentikan, "
194
+ "'OK' untuk menghapus."
195
+
196
+ #: gallery-plugin.php:1472
197
+ msgid ""
198
+ "Switching to another mode, all unsaved data will be lost. Save data before "
199
+ "switching?"
200
+ msgstr ""
201
+ "Beralih ke mode lain, semua data yang belum disimpan akan hilang. Menyimpan "
202
+ "data sebelum beralih?"
203
+
204
+ #: gallery-plugin.php:1473
205
+ msgid "Insert Media"
206
+ msgstr "Insert Media"
207
+
208
+ #: gallery-plugin.php:1474
209
+ msgid "Insert"
210
+ msgstr "Memasukkan"
211
+
212
+ #: gallery-plugin.php:1486
213
+ msgid "Learn more"
214
+ msgstr "Belajarlah lagi"
215
+
216
+ #: gallery-plugin.php:1491
217
+ msgid "Activate"
218
+ msgstr "Mengaktifkan"
219
+
220
+ #: gallery-plugin.php:1494 inc/class-gllr-settings.php:964
221
+ msgid "Install Now"
222
+ msgstr "Pasang sekarang"
223
+
224
+ #: gallery-plugin.php:1504
225
+ msgid "Add multiple gallery categories"
226
+ msgstr "Tambahkan beberapa kategori galeri"
227
+
228
+ #: gallery-plugin.php:1504
229
+ msgid ""
230
+ "Install Gallery Categories plugin to add unlimited number of categories."
231
+ msgstr ""
232
+ "Instal Galeri Kategori plugin untuk menambahkan jumlah yang tidak terbatas "
233
+ "kategori."
234
+
235
+ #: gallery-plugin.php:1513 inc/class-gllr-settings.php:330
236
+ #: inc/class-gllr-settings.php:387 inc/class-gllr-settings.php:431
237
+ #: inc/class-gllr-settings.php:481 inc/class-gllr-settings.php:598
238
+ #: inc/class-gllr-settings.php:686 inc/class-gllr-settings.php:722
239
+ #: inc/class-gllr-settings.php:772 inc/class-gllr-settings.php:925
240
+ msgid "Close"
241
+ msgstr "Dekat"
242
+
243
+ #: gallery-plugin.php:1876
244
+ msgid "Image"
245
+ msgstr "Gambar"
246
+
247
+ #: gallery-plugin.php:2024
248
+ msgid "Image size not defined"
249
+ msgstr "ukuran gambar tidak didefinisikan"
250
+
251
+ #: gallery-plugin.php:2039
252
+ msgid ""
253
+ "Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
254
+ "reload images manually."
255
+ msgstr ""
256
+ "update Plugin hanya PNG, JPEG, GIF, WPMP atau XBM filetype. Untuk lainnya, "
257
+ "silakan ulang gambar secara manual."
258
+
259
+ #: gallery-plugin.php:2050
260
+ msgid "Image size changes not defined"
261
+ msgstr "ukuran gambar perubahan tidak didefinisikan"
262
+
263
+ #: gallery-plugin.php:2079 gallery-plugin.php:2082 gallery-plugin.php:2087
264
+ msgid "Invalid path"
265
+ msgstr "Jalan yang salah"
266
+
267
+ #: gallery-plugin.php:2176
268
+ msgid "List View"
269
+ msgstr "Daftar View"
270
+
271
+ #: gallery-plugin.php:2177
272
+ msgid "Grid View"
273
+ msgstr "Tampilan bergaris"
274
+
275
+ #: gallery-plugin.php:2232
276
+ msgid "Filter"
277
+ msgstr "Menyaring"
278
+
279
+ #: gallery-plugin.php:2236
280
+ msgid "Empty Trash"
281
+ msgstr "Sampah kosong"
282
+
283
+ #: gallery-plugin.php:2257
284
+ msgid "No images found"
285
+ msgstr "Tidak ada gambar yang ditemukan"
286
+
287
+ #: gallery-plugin.php:2309
288
+ msgid "Select bulk action"
289
+ msgstr "tindakan massal pilih"
290
+
291
+ #: gallery-plugin.php:2311
292
+ msgid "Bulk Actions"
293
+ msgstr "Aksi besar"
294
+
295
+ #: gallery-plugin.php:2321
296
+ msgid "Apply"
297
+ msgstr "Menerapkan"
298
+
299
+ #: gallery-plugin.php:2328
300
+ msgid "Delete from Gallery"
301
+ msgstr "Hapus dari Galeri"
302
+
303
+ #: gallery-plugin.php:2337
304
+ msgid "Bulk Select"
305
+ msgstr "massal Pilih"
306
+
307
+ #: gallery-plugin.php:2338
308
+ msgid "Cancel Selection"
309
+ msgstr "Batal Seleksi"
310
+
311
+ #: gallery-plugin.php:2339
312
+ msgid "Delete Selected"
313
+ msgstr "Hapus yang Dipilih"
314
+
315
+ #: gallery-plugin.php:2350
316
+ msgid "File"
317
+ msgstr "Mengajukan"
318
+
319
+ #: gallery-plugin.php:2351 gallery-plugin.php:2451 gallery-plugin.php:2562
320
+ msgid "Dimensions"
321
+ msgstr "Ukuran"
322
+
323
+ #: gallery-plugin.php:2353 gallery-plugin.php:2462 gallery-plugin.php:2572
324
+ msgid "Alt Text"
325
+ msgstr "Alt Teks"
326
+
327
+ #: gallery-plugin.php:2354 gallery-plugin.php:2466 gallery-plugin.php:2577
328
+ msgid "URL"
329
+ msgstr "URL"
330
+
331
+ #: gallery-plugin.php:2354 gallery-plugin.php:2468
332
+ msgid ""
333
+ "Enter your custom URL to link this image to other page or file. Leave blank "
334
+ "to open a full size image."
335
+ msgstr ""
336
+ "Masukkan URL kustom Anda untuk menghubungkan gambar ini ke halaman lain atau "
337
+ "file. Biarkan kosong untuk membuka gambar ukuran penuh."
338
+
339
+ #: gallery-plugin.php:2433
340
+ msgid "Remove Image from Gallery"
341
+ msgstr "Hapus Gambar dari Galeri"
342
+
343
+ #: gallery-plugin.php:2436
344
+ msgid "Edit Image Info"
345
+ msgstr "Info mengedit Gambar"
346
+
347
+ #: gallery-plugin.php:2437
348
+ msgid "Deselect"
349
+ msgstr "hapus"
350
+
351
+ #: gallery-plugin.php:2449
352
+ msgid "File name"
353
+ msgstr "Nama file"
354
+
355
+ #: gallery-plugin.php:2450
356
+ msgid "File type"
357
+ msgstr "jenis file"
358
+
359
+ #: gallery-plugin.php:2475
360
+ msgid "Description"
361
+ msgstr "Deskripsi"
362
+
363
+ #: gallery-plugin.php:2481
364
+ msgid "Lightbox Button URL"
365
+ msgstr "URL Tombol Lightbox"
366
+
367
+ #: gallery-plugin.php:2488
368
+ msgid "New Tab"
369
+ msgstr "Tab baru"
370
+
371
+ #: gallery-plugin.php:2490
372
+ msgid "Enable to open URLs above in a new tab."
373
+ msgstr "Memungkinkan untuk membuka URL di atas di tab baru."
374
+
375
+ #: gallery-plugin.php:2495
376
+ msgid "Go Pro"
377
+ msgstr "Go Pro"
378
+
379
+ #: gallery-plugin.php:2501
380
+ msgid "Edit more details"
381
+ msgstr "Mengedit rincian lebih lanjut"
382
+
383
+ #: gallery-plugin.php:2503
384
+ msgid "Remove from Gallery"
385
+ msgstr "Hapus dari Galeri"
386
+
387
+ #: gallery-plugin.php:2537
388
+ #, php-format
389
+ msgid "Select %s"
390
+ msgstr "Pilih %s"
391
+
392
+ #: gallery-plugin.php:2550
393
+ #, php-format
394
+ msgid "Edit &#8220;%s&#8221;"
395
+ msgstr "Mengedit & # 8220; %s & # 8221;"
396
+
397
+ #: gallery-plugin.php:2558
398
+ msgid "Edit Attachment Info"
399
+ msgstr "Info mengedit Lampiran"
400
+
401
+ #: gallery-plugin.php:2595 gallery-plugin.php:2608
402
+ msgid "Edit"
403
+ msgstr "mengedit"
404
+
405
+ #: gallery-plugin.php:2598 gallery-plugin.php:2613
406
+ msgid "Trash"
407
+ msgstr "Sampah"
408
+
409
+ #: gallery-plugin.php:2601 gallery-plugin.php:2616
410
+ msgid "Delete Permanently"
411
+ msgstr "Hapus secara permanen"
412
+
413
+ #: gallery-plugin.php:2603 gallery-plugin.php:2622
414
+ #, php-format
415
+ msgid "View &#8220;%s&#8221;"
416
+ msgstr "Lihat & # 8220; %s & # 8221;"
417
+
418
+ #: gallery-plugin.php:2603 gallery-plugin.php:2622
419
+ msgid "View"
420
+ msgstr "Melihat"
421
+
422
+ #: gallery-plugin.php:2605
423
+ msgid "Attach"
424
+ msgstr "Melampirkan"
425
+
426
+ #: gallery-plugin.php:2611
427
+ msgid "Restore"
428
+ msgstr "Mengembalikan"
429
+
430
+ #: gallery-plugin.php:2741
431
+ msgid "Warning"
432
+ msgstr "PERINGATAN"
433
+
434
+ #: gallery-plugin.php:2741
435
+ msgid "You can add only images to the gallery"
436
+ msgstr "Anda dapat menambahkan hanya gambar ke galeri"
437
+
438
+ #: gallery-plugin.php:2773
439
+ msgid "or"
440
+ msgstr "atau"
441
+
442
+ #: gallery-plugin.php:2782
443
+ msgid "no title"
444
+ msgstr "tanpa judul"
445
+
446
+ #: gallery-plugin.php:2790
447
+ msgid "Sorry, no gallery found."
448
+ msgstr "Maaf, tidak ada galeri ditemukan."
449
+
450
+ #: gallery-plugin.php:2796
451
+ msgid ""
452
+ "Display an album image with the description and the link to a single gallery "
453
+ "page"
454
+ msgstr ""
455
+ "Menampilkan gambar album dengan deskripsi dan link ke halaman galeri tunggal"
456
+
457
+ #: inc/class-gllr-settings.php:31
458
+ msgid "Cover"
459
+ msgstr "Penutup"
460
+
461
+ #: inc/class-gllr-settings.php:32
462
+ msgid "Lightbox"
463
+ msgstr "Kotak lampu"
464
+
465
+ #: inc/class-gllr-settings.php:33
466
+ msgid "Social"
467
+ msgstr "Sosial"
468
+
469
+ #: inc/class-gllr-settings.php:34
470
+ msgid "Misc"
471
+ msgstr "Lain-lain"
472
+
473
+ #: inc/class-gllr-settings.php:35
474
+ msgid "Custom Code"
475
+ msgstr "Kode kustom"
476
+
477
+ #: inc/class-gllr-settings.php:36
478
+ msgid "Import / Export"
479
+ msgstr "Ekspor Impor"
480
+
481
+ #: inc/class-gllr-settings.php:37
482
+ msgid "License Key"
483
+ msgstr "Kunci lisensi"
484
+
485
+ #: inc/class-gllr-settings.php:208
486
+ msgid "Custom image size was changed. You need to update gallery images."
487
+ msgstr "ukuran gambar kustom berubah. Anda perlu memperbarui gambar galeri."
488
+
489
+ #: inc/class-gllr-settings.php:245
490
+ msgid "Settings saved"
491
+ msgstr "pengaturan disimpan"
492
+
493
+ #: inc/class-gllr-settings.php:257
494
+ msgid "Please, enable JavaScript in Your browser."
495
+ msgstr "Silahkan mengaktifkan JavaScript di browser Anda."
496
+
497
+ #: inc/class-gllr-settings.php:262
498
+ msgid "Update Images"
499
+ msgstr "Gambar pembaruan"
500
+
501
+ #: inc/class-gllr-settings.php:277
502
+ msgid "Gallery Images"
503
+ msgstr "Galeri gambar"
504
+
505
+ #: inc/class-gllr-settings.php:282
506
+ msgid "Adding images requires JavaScript."
507
+ msgstr "Menambahkan gambar membutuhkan JavaScript."
508
+
509
+ #: inc/class-gllr-settings.php:285
510
+ msgid "Add Media"
511
+ msgstr "Tambahkan Media"
512
+
513
+ #: inc/class-gllr-settings.php:294
514
+ msgid "The grid view for the Gallery images requires JavaScript."
515
+ msgstr "Tampilan kotak untuk gambar Galeri membutuhkan JavaScript."
516
+
517
+ #: inc/class-gllr-settings.php:294
518
+ msgid "Switch to the list view"
519
+ msgstr "Beralih ke tampilan daftar"
520
+
521
+ #: inc/class-gllr-settings.php:317
522
+ msgid "Single Gallery Settings"
523
+ msgstr "Pengaturan Galeri tunggal"
524
+
525
+ #: inc/class-gllr-settings.php:319
526
+ #, php-format
527
+ msgid "Enable to configure single gallery settings and disable %s."
528
+ msgstr ""
529
+ "Memungkinkan untuk mengkonfigurasi pengaturan galeri tunggal dan "
530
+ "menonaktifkan %s ."
531
+
532
+ #: inc/class-gllr-settings.php:334
533
+ msgid "Gallery Layout"
534
+ msgstr "galeri Tata Letak"
535
+
536
+ #: inc/class-gllr-settings.php:339
537
+ msgid "Grid"
538
+ msgstr "kisi"
539
+
540
+ #: inc/class-gllr-settings.php:345
541
+ msgid "Masonry"
542
+ msgstr "perkumpulan rahasia"
543
+
544
+ #: inc/class-gllr-settings.php:358
545
+ msgid "Number of Columns"
546
+ msgstr "Jumlah kolom"
547
+
548
+ #: inc/class-gllr-settings.php:360
549
+ msgid "columns"
550
+ msgstr "kolom"
551
+
552
+ #: inc/class-gllr-settings.php:361
553
+ #, php-format
554
+ msgid "Number of gallery columns (default is %s)."
555
+ msgstr "Jumlah kolom galeri (default adalah %s )."
556
+
557
+ #: inc/class-gllr-settings.php:365 inc/class-gllr-settings.php:726
558
+ msgid "Image Size"
559
+ msgstr "Ukuran gambar"
560
+
561
+ #: inc/class-gllr-settings.php:371 inc/class-gllr-settings.php:583
562
+ msgid "Custom"
563
+ msgstr "Adat"
564
+
565
+ #: inc/class-gllr-settings.php:373
566
+ msgid ""
567
+ "Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
568
+ msgstr ""
569
+ "Maksimum ukuran galeri foto. \\ \"Custom \" menggunakan Gambar nilai Dimensi."
570
+
571
+ #: inc/class-gllr-settings.php:377
572
+ msgid "Custom Image Size"
573
+ msgstr "Ukuran kustom Gambar"
574
+
575
+ #: inc/class-gllr-settings.php:379 inc/class-gllr-settings.php:467
576
+ #: inc/class-gllr-settings.php:591 inc/class-gllr-settings.php:641
577
+ #: inc/class-gllr-settings.php:793
578
+ msgid "px"
579
+ msgstr "px"
580
+
581
+ #: inc/class-gllr-settings.php:380
582
+ msgid ""
583
+ "Adjust these values based on the number of columns in your gallery. This "
584
+ "won't effect the full size of your images in the lightbox."
585
+ msgstr ""
586
+ "Menyesuaikan nilai-nilai ini didasarkan pada jumlah kolom dalam galeri anda. "
587
+ "Ini tidak akan mempengaruhi ukuran penuh gambar Anda dalam lightbox."
588
+
589
+ #: inc/class-gllr-settings.php:391
590
+ msgid "Crop Images"
591
+ msgstr "Gambar tanaman"
592
+
593
+ #: inc/class-gllr-settings.php:393
594
+ msgid ""
595
+ "Enable to crop images using the sizes defined for Custom Image Size. Disable "
596
+ "to resize images automatically using their aspect ratio."
597
+ msgstr ""
598
+ "Memungkinkan untuk memotong gambar menggunakan ukuran yang ditetapkan untuk "
599
+ "Ukuran Custom Image. Menonaktifkan untuk mengubah ukuran gambar secara "
600
+ "otomatis menggunakan aspek rasio mereka."
601
+
602
+ #: inc/class-gllr-settings.php:397 inc/class-gllr-settings.php:608
603
+ msgid "Crop Position"
604
+ msgstr "Posisi tanaman"
605
+
606
+ #: inc/class-gllr-settings.php:412 inc/class-gllr-settings.php:623
607
+ msgid "Select crop position base (by default: center)."
608
+ msgstr "Pilih posisi tanaman dasar (default: pusat)."
609
+
610
+ #: inc/class-gllr-settings.php:422
611
+ msgid "Image Title"
612
+ msgstr "gambar Judul"
613
+
614
+ #: inc/class-gllr-settings.php:424
615
+ msgid "Enable to display image title along with the gallery image."
616
+ msgstr ""
617
+ "Memungkinkan untuk menampilkan judul gambar bersama dengan gambar galeri."
618
+
619
+ #: inc/class-gllr-settings.php:435
620
+ msgid "Image Title Position"
621
+ msgstr "Gambar Judul Posisi"
622
+
623
+ #: inc/class-gllr-settings.php:440
624
+ msgid "Under image"
625
+ msgstr "di bawah gambar"
626
+
627
+ #: inc/class-gllr-settings.php:446
628
+ msgid "On mouse hover"
629
+ msgstr "Pada mouse hover"
630
+
631
+ #: inc/class-gllr-settings.php:459
632
+ msgid "Image Border"
633
+ msgstr "gambar Border"
634
+
635
+ #: inc/class-gllr-settings.php:461
636
+ msgid ""
637
+ "Enable images border using the styles defined for Image Border Size and "
638
+ "Color."
639
+ msgstr ""
640
+ "Aktifkan gambar perbatasan menggunakan gaya yang ditetapkan untuk Ukuran "
641
+ "Gambar Border dan Warna."
642
+
643
+ #: inc/class-gllr-settings.php:465
644
+ msgid "Image Border Size"
645
+ msgstr "Gambar Ukuran Border"
646
+
647
+ #: inc/class-gllr-settings.php:468
648
+ #, php-format
649
+ msgid "Gallery image border width (default is %s)"
650
+ msgstr "Galeri lebar border image (default adalah %s )"
651
+
652
+ #: inc/class-gllr-settings.php:472
653
+ msgid "Image Border Color"
654
+ msgstr "Warna Gambar Border"
655
+
656
+ #: inc/class-gllr-settings.php:485
657
+ msgid "Pagination"
658
+ msgstr "pagination"
659
+
660
+ #: inc/class-gllr-settings.php:488
661
+ msgid ""
662
+ "Enable pagination for images to limit number of images displayed on a single "
663
+ "gallery page."
664
+ msgstr ""
665
+ "Aktifkan pagination untuk gambar untuk membatasi jumlah gambar yang "
666
+ "ditampilkan pada halaman galeri tunggal."
667
+
668
+ #: inc/class-gllr-settings.php:492
669
+ msgid "Number of Images"
670
+ msgstr "Jumlah gambar"
671
+
672
+ #: inc/class-gllr-settings.php:495
673
+ #, php-format
674
+ msgid "Number of images displayed per page (default is %d)."
675
+ msgstr "Jumlah gambar yang ditampilkan per halaman (default adalah %d )."
676
+
677
+ #: inc/class-gllr-settings.php:505
678
+ msgid "Sort Images by"
679
+ msgstr "Urutkan Gambar dengan"
680
+
681
+ #: inc/class-gllr-settings.php:508
682
+ msgid "Manually (default)"
683
+ msgstr "Manual (default)"
684
+
685
+ #: inc/class-gllr-settings.php:509
686
+ msgid "Image ID"
687
+ msgstr "ID gambar"
688
+
689
+ #: inc/class-gllr-settings.php:510
690
+ msgid "Name"
691
+ msgstr "Nama"
692
+
693
+ #: inc/class-gllr-settings.php:512 inc/class-gllr-settings.php:662
694
+ msgid "Random"
695
+ msgstr "Acak"
696
+
697
+ #: inc/class-gllr-settings.php:514
698
+ msgid ""
699
+ "Select images sorting order in your gallery. By default, you can sort images "
700
+ "manually in the images tab."
701
+ msgstr ""
702
+ "Pilih gambar menyortir urutan galeri Anda. Secara default, Anda dapat "
703
+ "mengurutkan gambar secara manual di tab gambar."
704
+
705
+ #: inc/class-gllr-settings.php:518
706
+ msgid "Arrange Images by"
707
+ msgstr "Atur Gambar dengan"
708
+
709
+ #: inc/class-gllr-settings.php:521 inc/class-gllr-settings.php:671
710
+ msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
711
+ msgstr "Naik (misalnya 1, 2, 3, a, b, c)"
712
+
713
+ #: inc/class-gllr-settings.php:522 inc/class-gllr-settings.php:672
714
+ msgid "Descending (e.g. 3, 2, 1; c, b, a)"
715
+ msgstr "Menurun (misalnya 3, 2, 1; c, b, a)"
716
+
717
+ #: inc/class-gllr-settings.php:527
718
+ msgid "Back Link"
719
+ msgstr "Back link"
720
+
721
+ #: inc/class-gllr-settings.php:529
722
+ msgid ""
723
+ "Enable to show a back link in a single gallery page which navigate to a "
724
+ "previous page."
725
+ msgstr ""
726
+ "Memungkinkan untuk menunjukkan link kembali halaman galeri tunggal yang "
727
+ "menavigasi ke halaman sebelumnya."
728
+
729
+ #: inc/class-gllr-settings.php:533
730
+ msgid "Back Link URL"
731
+ msgstr "Tautan URL Kembali"
732
+
733
+ #: inc/class-gllr-settings.php:536
734
+ msgid "Back link custom page URL. Leave blank to use Gallery page template."
735
+ msgstr ""
736
+ "Kembali menautkan URL halaman kustom. Biarkan kosong untuk menggunakan "
737
+ "Gallery template halaman."
738
+
739
+ #: inc/class-gllr-settings.php:540
740
+ msgid "Back Link Label"
741
+ msgstr "Back Link Label"
742
+
743
+ #: inc/class-gllr-settings.php:546
744
+ msgid "Back Link with Shortcode"
745
+ msgstr "Back Link dengan pendek"
746
+
747
+ #: inc/class-gllr-settings.php:549
748
+ msgid "Enable to display a back link on a page where shortcode is used."
749
+ msgstr ""
750
+ "Memungkinkan untuk menampilkan link kembali pada halaman di mana shortcode "
751
+ "digunakan."
752
+
753
+ #: inc/class-gllr-settings.php:560
754
+ msgid "Cover Settings"
755
+ msgstr "Pengaturan penutup"
756
+
757
+ #: inc/class-gllr-settings.php:565
758
+ msgid "Galleries Page"
759
+ msgstr "galeri Halaman"
760
+
761
+ #: inc/class-gllr-settings.php:573
762
+ msgid "Base page where all existing galleries will be displayed."
763
+ msgstr "halaman dasar di mana semua galeri yang ada akan ditampilkan."
764
+
765
+ #: inc/class-gllr-settings.php:577
766
+ msgid "Cover Image Size"
767
+ msgstr "Ukuran Penutup gambar"
768
+
769
+ #: inc/class-gllr-settings.php:585
770
+ msgid "Maximum cover image size. Custom uses the Image Dimensions values."
771
+ msgstr ""
772
+ "Maksimum ukuran Penutup gambar. Kustom menggunakan Gambar nilai Dimensi."
773
+
774
+ #: inc/class-gllr-settings.php:589
775
+ msgid "Custom Cover Image Size"
776
+ msgstr "Kustom Sampul Ukuran Gambar"
777
+
778
+ #: inc/class-gllr-settings.php:602
779
+ msgid "Crop Cover Images"
780
+ msgstr "Gambar Cover Crop"
781
+
782
+ #: inc/class-gllr-settings.php:604
783
+ msgid ""
784
+ "Enable to crop images using the sizes defined for Custom Cover Image Size. "
785
+ "Disable to resize images automatically using their aspect ratio."
786
+ msgstr ""
787
+ "Memungkinkan untuk memotong gambar menggunakan ukuran yang ditetapkan untuk "
788
+ "Custom Sampul Ukuran Gambar. Menonaktifkan untuk mengubah ukuran gambar "
789
+ "secara otomatis menggunakan aspek rasio mereka."
790
+
791
+ #: inc/class-gllr-settings.php:633
792
+ msgid "Cover Image Border"
793
+ msgstr "Penutup Gambar Berbatasan"
794
+
795
+ #: inc/class-gllr-settings.php:635
796
+ msgid ""
797
+ "Enable cover images border using the styles defined for Image Border Size "
798
+ "and Color."
799
+ msgstr ""
800
+ "Aktifkan gambar sampul perbatasan menggunakan gaya yang ditetapkan untuk "
801
+ "Ukuran Gambar Berbatasan dan Warna."
802
+
803
+ #: inc/class-gllr-settings.php:639
804
+ msgid "Cover Image Border Size"
805
+ msgstr "Penutup Ukuran Gambar Border"
806
+
807
+ #: inc/class-gllr-settings.php:642
808
+ #, php-format
809
+ msgid "Cover image border width (default is %s)"
810
+ msgstr "Menutupi lebar berbatasan gambar (default adalah %s )"
811
+
812
+ #: inc/class-gllr-settings.php:646
813
+ msgid "Cover Image Border Color"
814
+ msgstr "Penutup gambar Warna Berbatasan"
815
+
816
+ #: inc/class-gllr-settings.php:652
817
+ msgid "Sort Albums by"
818
+ msgstr "Album Urutkan berdasarkan"
819
+
820
+ #: inc/class-gllr-settings.php:655
821
+ msgid "Gallery ID"
822
+ msgstr "galeri ID"
823
+
824
+ #: inc/class-gllr-settings.php:658
825
+ msgid "Last modified date"
826
+ msgstr "tanggal diubah terakhir"
827
+
828
+ #: inc/class-gllr-settings.php:659
829
+ msgid "Comment count"
830
+ msgstr "jumlah komentar"
831
+
832
+ #: inc/class-gllr-settings.php:660
833
+ msgid "Sorting order (the input field for sorting order)"
834
+ msgstr "Menyortir order (kolom input untuk menyortir order)"
835
+
836
+ #: inc/class-gllr-settings.php:664
837
+ msgid "Select galleries sorting order in your galleries page."
838
+ msgstr "Pilih galeri menyortir urutan halaman galeri Anda."
839
+
840
+ #: inc/class-gllr-settings.php:668
841
+ msgid "Arrange Albums by"
842
+ msgstr "Mengatur Album oleh"
843
+
844
+ #: inc/class-gllr-settings.php:677
845
+ msgid "Read More Link Label"
846
+ msgstr "Read More link Label"
847
+
848
+ #: inc/class-gllr-settings.php:690
849
+ msgid "Instant Lightbox"
850
+ msgstr "Lightbox instan"
851
+
852
+ #: inc/class-gllr-settings.php:693
853
+ msgid ""
854
+ "Enable to display all images in the lightbox after clicking cover image or "
855
+ "URL instead of going to a single gallery page."
856
+ msgstr ""
857
+ "Memungkinkan untuk menampilkan semua gambar dalam lightbox setelah mengklik "
858
+ "gambar cover atau URL bukannya pergi ke halaman galeri tunggal."
859
+
860
+ #: inc/class-gllr-settings.php:707
861
+ msgid "Lightbox Settings"
862
+ msgstr "Pengaturan Lightbox"
863
+
864
+ #: inc/class-gllr-settings.php:712
865
+ msgid "Enable Lightbox"
866
+ msgstr "aktifkan Lightbox"
867
+
868
+ #: inc/class-gllr-settings.php:715
869
+ msgid "Enable to show the lightbox when clicking on gallery images."
870
+ msgstr "Aktifkan untuk menampilkan lightbox ketika mengklik gambar galeri."
871
+
872
+ #: inc/class-gllr-settings.php:733
873
+ msgid ""
874
+ "Select the maximum gallery image size for the lightbox view. \"Default\" "
875
+ "will display the original, full size image."
876
+ msgstr ""
877
+ "Pilih ukuran galeri gambar maksimal untuk tampilan lightbox. \\ \"Default \" "
878
+ "akan menampilkan asli, ukuran gambar penuh."
879
+
880
+ #: inc/class-gllr-settings.php:737
881
+ msgid "Overlay Color"
882
+ msgstr "Hamparan Warna"
883
+
884
+ #: inc/class-gllr-settings.php:743
885
+ msgid "Overlay Opacity"
886
+ msgstr "Opacity hamparan"
887
+
888
+ #: inc/class-gllr-settings.php:746
889
+ #, php-format
890
+ msgid ""
891
+ "Lightbox overlay opacity. Leave blank to disable opacity (default is %d, max "
892
+ "is %d)."
893
+ msgstr ""
894
+ "Lightbox hamparan opacity. Biarkan kosong untuk menonaktifkan opacity "
895
+ "(default %d , max adalah %d )."
896
+
897
+ #: inc/class-gllr-settings.php:756
898
+ msgid "Slideshow"
899
+ msgstr "slideshow"
900
+
901
+ #: inc/class-gllr-settings.php:758
902
+ msgid "Enable to start the slideshow automatically when the lightbox is used."
903
+ msgstr ""
904
+ "Memungkinkan untuk memulai slideshow secara otomatis ketika lightbox yang "
905
+ "digunakan."
906
+
907
+ #: inc/class-gllr-settings.php:762
908
+ msgid "Slideshow Duration"
909
+ msgstr "Durasi slideshow"
910
+
911
+ #: inc/class-gllr-settings.php:764
912
+ msgid "ms"
913
+ msgstr "Nona"
914
+
915
+ #: inc/class-gllr-settings.php:765
916
+ msgid "Slideshow interval duration between two images."
917
+ msgstr "Slideshow durasi interval antara dua gambar."
918
+
919
+ #: inc/class-gllr-settings.php:776
920
+ msgid "Lightbox Helper"
921
+ msgstr "Lightbox Helper"
922
+
923
+ #: inc/class-gllr-settings.php:778
924
+ msgid "Enable to use a lightbox helper navigation between images."
925
+ msgstr ""
926
+ "Memungkinkan untuk menggunakan navigasi lightbox pembantu antara gambar."
927
+
928
+ #: inc/class-gllr-settings.php:782
929
+ msgid "Lightbox Helper Type"
930
+ msgstr "Lightbox Helper Jenis"
931
+
932
+ #: inc/class-gllr-settings.php:785
933
+ msgid "Thumbnails"
934
+ msgstr "thumbnail"
935
+
936
+ #: inc/class-gllr-settings.php:786
937
+ msgid "Buttons"
938
+ msgstr "kancing-kancing"
939
+
940
+ #: inc/class-gllr-settings.php:791
941
+ msgid "Lightbox Helper Thumbnail Size"
942
+ msgstr "Ukuran Lightbox Helper Thumbnail"
943
+
944
+ #: inc/class-gllr-settings.php:797
945
+ msgid "Lightbox Helper Thumbnail Position"
946
+ msgstr "Lightbox Helper Thumbnail Posisi"
947
+
948
+ #: inc/class-gllr-settings.php:800
949
+ msgid "Top"
950
+ msgstr "Puncak"
951
+
952
+ #: inc/class-gllr-settings.php:801
953
+ msgid "Bottom"
954
+ msgstr "Bawah"
955
+
956
+ #: inc/class-gllr-settings.php:806
957
+ msgid "Lightbox Button Label"
958
+ msgstr "Lightbox Tombol Label"
959
+
960
+ #: inc/class-gllr-settings.php:818
961
+ msgid "Download Original File"
962
+ msgstr "Ambil Asli Berkas"
963
+
964
+ #: inc/class-gllr-settings.php:820
965
+ msgid ""
966
+ "Enable to display link to the original file under each image in the lightbox."
967
+ msgstr ""
968
+ "Memungkinkan untuk menampilkan link ke file asli di bawah setiap gambar "
969
+ "dalam lightbox."
970
+
971
+ #: inc/class-gllr-settings.php:824
972
+ msgid "Download Link Label"
973
+ msgstr "Download Link Label"
974
+
975
+ #: inc/class-gllr-settings.php:830
976
+ msgid "Single Lightbox"
977
+ msgstr "Lightbox tunggal"
978
+
979
+ #: inc/class-gllr-settings.php:832
980
+ msgid ""
981
+ "Enable to use a single lightbox for multiple galleries located on a single "
982
+ "page."
983
+ msgstr ""
984
+ "Memungkinkan untuk menggunakan lightbox tunggal untuk beberapa galeri yang "
985
+ "terletak pada satu halaman."
986
+
987
+ #: inc/class-gllr-settings.php:842
988
+ msgid "Social Sharing Buttons Settings"
989
+ msgstr "Sharing sosial Tombol Pengaturan"
990
+
991
+ #: inc/class-gllr-settings.php:850
992
+ msgid "Enable Social Buttons"
993
+ msgstr "Aktifkan Tombol Sosial"
994
+
995
+ #: inc/class-gllr-settings.php:852
996
+ msgid "Enable social sharing buttons in the Lightbox."
997
+ msgstr "Aktifkan tombol berbagi sosial di Lightbox."
998
+
999
+ #: inc/class-gllr-settings.php:856
1000
+ msgid "Social Networks"
1001
+ msgstr "Jaringan sosial"
1002
+
1003
+ #: inc/class-gllr-settings.php:867
1004
+ msgid "Social Buttons Position"
1005
+ msgstr "Tombol sosial Posisi"
1006
+
1007
+ #: inc/class-gllr-settings.php:870
1008
+ msgid "Left"
1009
+ msgstr "Kiri"
1010
+
1011
+ #: inc/class-gllr-settings.php:872
1012
+ msgid "Select social buttons position in a lightbox."
1013
+ msgstr "Pilih posisi tombol sosial di lightbox."
1014
+
1015
+ #: inc/class-gllr-settings.php:876
1016
+ msgid "Counter"
1017
+ msgstr "Melawan"
1018
+
1019
+ #: inc/class-gllr-settings.php:879
1020
+ msgid "Enable to show likes counter for each social button."
1021
+ msgstr ""
1022
+ "Aktifkan untuk menampilkan orang-orang seperti meja untuk setiap tombol "
1023
+ "sosial."
1024
+
1025
+ #: inc/class-gllr-settings.php:894
1026
+ msgid "Demo Data"
1027
+ msgstr "data yang demo"
1028
+
1029
+ #: inc/class-gllr-settings.php:896
1030
+ msgid ""
1031
+ "Install demo data to create galleries with images, post with shortcodes and "
1032
+ "page with a list of all galleries."
1033
+ msgstr ""
1034
+ "Pasang data demo untuk membuat galeri dengan gambar, posting dengan "
1035
+ "shortcode dan halaman dengan daftar semua galeri."
1036
+
1037
+ #: inc/class-gllr-settings.php:915
1038
+ msgid "Gallery Post Type"
1039
+ msgstr "Galeri Posting Mengetik"
1040
+
1041
+ #: inc/class-gllr-settings.php:917
1042
+ msgid ""
1043
+ "Enable to avoid conflicts with other gallery plugins installed. All "
1044
+ "galleries created earlier will stay unchanged. However, after enabling we "
1045
+ "recommend to check settings of other plugins where \"gallery\" post type is "
1046
+ "used."
1047
+ msgstr ""
1048
+ "Memungkinkan untuk menghindari konflik dengan plugin galeri lainnya "
1049
+ "diinstal. Semua galeri buat sebelumnya akan tetap tidak berubah. Namun, "
1050
+ "setelah mengaktifkan kami sarankan untuk memeriksa pengaturan plugin lain di "
1051
+ "mana \\ \"gallery \" Jenis posting digunakan."
1052
+
1053
+ #: inc/class-gllr-settings.php:929
1054
+ msgid "Gallery Slug"
1055
+ msgstr "galeri Slug"
1056
+
1057
+ #: inc/class-gllr-settings.php:933
1058
+ msgid "Enter the unique gallery slug."
1059
+ msgstr "Masukkan siput galeri unik."
1060
+
1061
+ #: inc/class-gllr-settings.php:949
1062
+ msgid "Activate Now"
1063
+ msgstr "Sekarang aktif"
1064
+
1065
+ #: inc/class-gllr-settings.php:967
1066
+ msgid "Enable to include galleries to your website search."
1067
+ msgstr "Memungkinkan untuk menyertakan galeri untuk pencarian website Anda."
1068
+
1069
+ #: inc/class-gllr-settings.php:967
1070
+ #, php-format
1071
+ msgid "%s is required."
1072
+ msgstr "%s diperlukan."
1073
+
1074
+ #: inc/demo-data/class-bws-demo-data.php:33
1075
+ msgid "Install Demo Data"
1076
+ msgstr "Instal Demo data"
1077
+
1078
+ #: inc/demo-data/class-bws-demo-data.php:36
1079
+ msgid "Remove Demo Data"
1080
+ msgstr "Hapus Demo data"
1081
+
1082
+ #: inc/demo-data/class-bws-demo-data.php:37
1083
+ msgid "Delete demo data and restore old plugin settings."
1084
+ msgstr "Hapus demo data dan mengembalikan pengaturan plugin tua."
1085
+
1086
+ #: inc/demo-data/class-bws-demo-data.php:50
1087
+ msgid "Yes, install demo data"
1088
+ msgstr "Ya, data pemasangan demo"
1089
+
1090
+ #: inc/demo-data/class-bws-demo-data.php:51
1091
+ msgid "Are you sure you want to install demo data?"
1092
+ msgstr "Apakah Anda yakin Anda ingin menginstal data yang demo?"
1093
+
1094
+ #: inc/demo-data/class-bws-demo-data.php:53
1095
+ msgid "Yes, remove demo data"
1096
+ msgstr "Ya, menghapus data demo"
1097
+
1098
+ #: inc/demo-data/class-bws-demo-data.php:54
1099
+ msgid "Are you sure you want to remove demo data?"
1100
+ msgstr "Apakah Anda yakin ingin menghapus data demo?"
1101
+
1102
+ #: inc/demo-data/class-bws-demo-data.php:61
1103
+ msgid "No, go back to the settings page"
1104
+ msgstr "Tidak, kembali ke halaman pengaturan"
1105
+
1106
+ #: inc/demo-data/class-bws-demo-data.php:111
1107
+ msgid "Can not get demo data."
1108
+ msgstr "tidak bisa mendapatkan data demo."
1109
+
1110
+ #: inc/demo-data/class-bws-demo-data.php:118
1111
+ msgid "Demo settings already installed."
1112
+ msgstr "pengaturan demo sudah terpasang."
1113
+
1114
+ #: inc/demo-data/class-bws-demo-data.php:363
1115
+ msgid "Demo data installed successfully."
1116
+ msgstr "Data demo berhasil diinstal."
1117
+
1118
+ #: inc/demo-data/class-bws-demo-data.php:365
1119
+ msgid "View post with shortcodes"
1120
+ msgstr "Lihat posting dengan shortcode"
1121
+
1122
+ #: inc/demo-data/class-bws-demo-data.php:368
1123
+ msgid "View page with examples"
1124
+ msgstr "Lihat halaman dengan contoh-contoh"
1125
+
1126
+ #: inc/demo-data/class-bws-demo-data.php:379
1127
+ msgid "Installation of demo data with some errors occurred."
1128
+ msgstr "Instalasi data demo dengan beberapa kesalahan terjadi."
1129
+
1130
+ #: inc/demo-data/class-bws-demo-data.php:382
1131
+ msgid "Posts data is missing."
1132
+ msgstr "Tulisan data hilang."
1133
+
1134
+ #: inc/demo-data/class-bws-demo-data.php:454
1135
+ msgid "Demo data have already been removed."
1136
+ msgstr "Data demo telah dihapus."
1137
+
1138
+ #: inc/demo-data/class-bws-demo-data.php:511
1139
+ msgid "Demo data successfully removed."
1140
+ msgstr "Data demo berhasil dihapus."
1141
+
1142
+ #: inc/demo-data/class-bws-demo-data.php:515
1143
+ msgid "Removing demo data with some errors occurred."
1144
+ msgstr "Menghapus Data demo dengan beberapa kesalahan terjadi."
1145
+
1146
+ #: inc/demo-data/class-bws-demo-data.php:583
1147
+ msgid "Close notice"
1148
+ msgstr "Tutup pemberitahuan"
1149
+
1150
+ #: inc/demo-data/class-bws-demo-data.php:587
1151
+ msgid ""
1152
+ "Do you want to install demo content and settings (You can do this later "
1153
+ "using Import / Export settings)?"
1154
+ msgstr ""
1155
+ "Apakah Anda ingin menginstal konten demo dan pengaturan (Anda dapat "
1156
+ "melakukannya nanti menggunakan pengaturan Impor / Ekspor)?"
1157
+
1158
+ #: inc/demo-data/class-bws-demo-data.php:587
1159
+ msgid "Yes, install demo now"
1160
+ msgstr "Ya, instal demo sekarang"
1161
+
1162
+ #~ msgid "No image found."
1163
+ #~ msgstr "Зображення не знайдено."
1164
+
1165
+ #~ msgid "Demo data successfully installed."
1166
+ #~ msgstr "Демо-дані успішно встановлено."
1167
+
1168
+ #~ msgid "Could not calculate resized image dimensions"
1169
+ #~ msgstr "Неможливо обчислити змінені розміри зображення"
1170
+
1171
+ #~ msgid "Resize path invalid"
1172
+ #~ msgstr "Шлях для збереження зміненого розміру некоректний"
1173
+
1174
+ #~ msgid "Gallery Pro Settings"
1175
+ #~ msgstr "Установки Галереї Про"
1176
+
1177
+ #~ msgid "Purchase Information"
1178
+ #~ msgstr "Інформація про покупку"
1179
+
1180
+ #~ msgid "Network"
1181
+ #~ msgstr "Мережі"
1182
+
1183
+ #~ msgid "Notice:"
1184
+ #~ msgstr "Попередження:"
1185
+
1186
+ #~ msgid "This option will replace all current settings on separate sites."
1187
+ #~ msgstr "Ця опція замінить всі поточні налаштування на окремих сайтах."
1188
+
1189
+ #~ msgid "Lightbox button URL"
1190
+ #~ msgstr "URL кнопки лайтбоксу"
1191
+
1192
+ #~ msgid "Open the URL"
1193
+ #~ msgstr "Відкрити посилання"
1194
+
1195
+ #~ msgid ""
1196
+ #~ "It is prohibited to view Gallery Pro settings on this site in the Gallery "
1197
+ #~ "Pro network settings."
1198
+ #~ msgstr ""
1199
+ #~ "Заборонено переглядати налаштування Gallery Pro на цьому сайті в "
1200
+ #~ "налаштуваннях мережі Gallery Pro."
1201
+
1202
+ #~ msgid ""
1203
+ #~ "It is prohibited to change Gallery Pro settings on this site in the "
1204
+ #~ "Gallery Pro network settings."
1205
+ #~ msgstr ""
1206
+ #~ "Заборонено змінювати налаштування Gallery Pro на цьому сайті в "
1207
+ #~ "налаштуваннях мережі Gallery Pro."
1208
+
1209
+ #~ msgid "Apply network settings"
1210
+ #~ msgstr "Застосувати налаштування мережі"
1211
+
1212
+ #~ msgid "Apply to all sites and use by default"
1213
+ #~ msgstr "Застосувати до всіх сайтів і використовувати за замовчуванням"
1214
+
1215
+ #~ msgid "All current settings on separate sites will be replaced"
1216
+ #~ msgstr "Всі поточні налаштування на окремих сайтах буде замінено"
1217
+
1218
+ #~ msgid "Allow to change the settings on separate websites"
1219
+ #~ msgstr "Дозволити зміну налаштувань на окремих сайтах"
1220
+
1221
+ #~ msgid "Allow to view the settings on separate websites"
1222
+ #~ msgstr "Дозволити перегляд налаштувань на окремих сайтах"
1223
+
1224
+ #~ msgid "By default"
1225
+ #~ msgstr "За замовчуванням"
1226
+
1227
+ #~ msgid "Settings will be applied to newly added websites by default"
1228
+ #~ msgstr ""
1229
+ #~ "Налаштування застосовуватимуться до всіх новододаних сайтів автоматично"
1230
+
1231
+ #~ msgid "Do not apply"
1232
+ #~ msgstr "Не застосовувати"
1233
+
1234
+ #~ msgid "Change the settings on separate sites of the multisite only"
1235
+ #~ msgstr "Змінити налаштування лише для окремих сайтів"
1236
+
1237
+ #~ msgid "Custom Lightbox Image Size"
1238
+ #~ msgstr "Користувацький розмір зображення лайтбоксу"
1239
+
1240
+ #~ msgid "Crop Lightbox Images"
1241
+ #~ msgstr "Обрізка зображень лайтбоксу"
1242
+
1243
+ #~ msgid ""
1244
+ #~ "Enable to crop images using the sizes defined for Custom Lightbox Image "
1245
+ #~ "Size. Disable to resize images automatically using their aspect ratio."
1246
+ #~ msgstr ""
1247
+ #~ "Увімкніть, щоб обрізати зображення, використовуючи розміри, визначені для "
1248
+ #~ "користувацького розміру зображень лайтбоксу. Вимкніть, щоб змінити розмір "
1249
+ #~ "зображення автоматично, використовуючи їх пропорції."
1250
+
1251
+ #~ msgid "Right"
1252
+ #~ msgstr "Право"
1253
+
1254
+ #~ msgid "Center"
1255
+ #~ msgstr "Центр"
1256
+
1257
+ #~ msgid ""
1258
+ #~ "If you would like to add a Gallery to your page or post, please use %s "
1259
+ #~ "button"
1260
+ #~ msgstr ""
1261
+ #~ "Якщо ви хочете додати галерею на вашу сторінку або пост, будь ласка, "
1262
+ #~ "використовуйте кнопку %s"
1263
+
1264
+ #~ msgid ""
1265
+ #~ "You can add the Gallery to your page or post by clicking on %s button in "
1266
+ #~ "the content edit block using the Visual mode. If the button isn't "
1267
+ #~ "displayed, please use the shortcode below"
1268
+ #~ msgstr ""
1269
+ #~ "Ви можете додати Галерею на вашу сторінку або пост, натиснувши на кнопку "
1270
+ #~ "%s в блоці редагування контенту в режимі Visual. Якщо кнопка не "
1271
+ #~ "відображається, будь ласка, використовуйте шорткод нижче"
1272
+
1273
+ #~ msgid ""
1274
+ #~ "Add this shortcode to a page, post or widget to display a single gallery"
1275
+ #~ msgstr ""
1276
+ #~ "Додати цей шорткод у сторінку, пост чи віджет для відображення галереї"
1277
+
1278
+ #~ msgid ""
1279
+ #~ "Use this shortcode to display an album image with the description and the "
1280
+ #~ "link to a single gallery page"
1281
+ #~ msgstr ""
1282
+ #~ "Вивести короткий опис зі скріншотом та посиланням на сторінку з галереєю"
1283
+
1284
+ #~ msgid "Short display"
1285
+ #~ msgstr "Скорочене відображення"
1286
+
1287
+ #~ msgid "Install plugin"
1288
+ #~ msgstr "Встановити плагін"
1289
+
1290
+ #~ msgid "Photos"
1291
+ #~ msgstr "Фото"
1292
+
1293
+ #~ msgid "All plugin settings were restored."
1294
+ #~ msgstr "Налаштування плагіну були відновлені."
1295
+
1296
+ #~ msgid "You are using the PRO Trial license of Gallery plugin."
1297
+ #~ msgstr "Ви використовуєте тріал-ліцензію плагіну Gallery Pro."
1298
+
1299
+ #~ msgid "The PRO Trial license will expire on"
1300
+ #~ msgstr "Термін вашої тріал-ліцензії закінчується"
1301
+
1302
+ #~ msgid "Trial to PRO"
1303
+ #~ msgstr "Перейти з тріалу до PRO"
1304
+
1305
+ #~ msgid ""
1306
+ #~ "Single gallery view was changed. To display images correctly, please "
1307
+ #~ "click \"%s\" button."
1308
+ #~ msgstr ""
1309
+ #~ "Вид галереї був змінений. Для коректного відображення зображень, будь "
1310
+ #~ "ласка, натисніть кнопку \"%s\"."
1311
+
1312
+ #~ msgid "Update images for gallery"
1313
+ #~ msgstr "Оновити всі зображення галереї"
1314
+
1315
+ #~ msgid "Please enable JavaScript to use the option to renew images."
1316
+ #~ msgstr ""
1317
+ #~ "Будь ласка, увімкніть JavaScript для використання опції оновлення "
1318
+ #~ "зображень."
1319
+
1320
+ #~ msgid ""
1321
+ #~ "You can add the Gallery to your page or post by clicking on %s button in "
1322
+ #~ "the content edit block using the Visual mode. If the button isn't "
1323
+ #~ "displayed, please use the shortcode %s, where * stands for gallery ID"
1324
+ #~ msgstr ""
1325
+ #~ "Ви можете додати Галерею на вашу сторінку або пост, натиснувши на кнопку "
1326
+ #~ "%s в блоці редагування контенту в режимі Visual. Якщо кнопка не "
1327
+ #~ "відображається, будь ласка, використовуйте шорткод %s, де * позначає ID "
1328
+ #~ "галереї"
1329
+
1330
+ #~ msgid "Single gallery view"
1331
+ #~ msgstr "Вид галереї"
1332
+
1333
+ #~ msgid ""
1334
+ #~ "The number of images per row can be less depending on the width of the "
1335
+ #~ "parent block"
1336
+ #~ msgstr ""
1337
+ #~ "Кількість зображень в рядку може бути менше в залежності від ширини "
1338
+ #~ "батьківського блоку"
1339
+
1340
+ #~ msgid ""
1341
+ #~ "The images size can be changed (larger or smaller) depending on the width "
1342
+ #~ "of the parent block"
1343
+ #~ msgstr ""
1344
+ #~ "Розмір зображень може бути змінений (бути більше або менше) в залежності "
1345
+ #~ "від ширини батьківського блоку"
1346
+
1347
+ #~ msgid ""
1348
+ #~ "This option will be applied to all of your newly downloaded images. If "
1349
+ #~ "you want to apply it to all of your early downloaded images, please click "
1350
+ #~ "\"Update images for gallery\" button."
1351
+ #~ msgstr ""
1352
+ #~ "Ця опція після зміни застосовуеться до всіх знов завантажених зображень. "
1353
+ #~ "Якщо ви бажаете, щоб вона застосовувалась до всіх раніше завантажених "
1354
+ #~ "зображень, то натисніть кнопку \"Оновити всі зображення галереї\"."
1355
+
1356
+ #~ msgid "left"
1357
+ #~ msgstr "зліва"
1358
+
1359
+ #~ msgid "Horizontal"
1360
+ #~ msgstr "Горизонтальна"
1361
+
1362
+ #~ msgid "Vertical"
1363
+ #~ msgstr "Вертикальна"
1364
+
1365
+ #~ msgid ""
1366
+ #~ "WordPress will create a copy of the post thumbnail with the specified "
1367
+ #~ "dimensions when you upload a new photo."
1368
+ #~ msgstr ""
1369
+ #~ "WordPress створить копію іконки посту з заданими розмірами, коли ви "
1370
+ #~ "завантажите нову фотографію."
1371
+
1372
+ #~ msgid "For the album cover"
1373
+ #~ msgstr "Для обкладинки альбому"
1374
+
1375
+ #~ msgid "width x height"
1376
+ #~ msgstr "ширина x висота"
1377
+
1378
+ #~ msgid "in px"
1379
+ #~ msgstr "в px"
1380
+
1381
+ #~ msgid "For images in the lightbox"
1382
+ #~ msgstr "Для зображень в лайтбоксі"
1383
+
1384
+ #~ msgid "Display a full size image in the lightbox"
1385
+ #~ msgstr "Відображати повне зображення в лайтбоксі"
1386
+
1387
+ #~ msgid "Display image title"
1388
+ #~ msgstr "Відображати заголовок зображення"
1389
+
1390
+ #~ msgid ""
1391
+ #~ "Turn off the checkbox, if you want to display image title just in a "
1392
+ #~ "lightbox"
1393
+ #~ msgstr ""
1394
+ #~ "Вимкніть прапорець, якщо ви хочете відображати заголовок зображення "
1395
+ #~ "тільки у лайтбоксі"
1396
+
1397
+ #~ msgid "Border width in px, just numbers"
1398
+ #~ msgstr "Ширина рамки у пікселях, тільки числа"
1399
+
1400
+ #~ msgid "Use pagination for images"
1401
+ #~ msgstr "Використовувати пагінацію для зображень"
1402
+
1403
+ #~ msgid "per page"
1404
+ #~ msgstr "на сторінці"
1405
+
1406
+ #~ msgid "Sorting images can be changed due to the Masonry plugin features."
1407
+ #~ msgstr ""
1408
+ #~ "Сортування зображень може бути змінена у зв'язку з особливостями плагіна "
1409
+ #~ "Masonry."
1410
+
1411
+ #~ msgid "by Attachment ID"
1412
+ #~ msgstr "по ID зображення"
1413
+
1414
+ #~ msgid "by Image Name"
1415
+ #~ msgstr "по Назві зображення"
1416
+
1417
+ #~ msgid "by Date"
1418
+ #~ msgstr "по Даті"
1419
+
1420
+ #~ msgid "by Sorting order in the Gallery"
1421
+ #~ msgstr "по Порядку сортування в Галереї"
1422
+
1423
+ #~ msgid ""
1424
+ #~ "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
1425
+ #~ msgstr ""
1426
+ #~ "ASC (в порядку зростання від найменшого до найбільшого значення - 1, 2, "
1427
+ #~ "3; а, б, в)"
1428
+
1429
+ #~ msgid ""
1430
+ #~ "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
1431
+ #~ msgstr ""
1432
+ #~ "DESC (за зменшенням від найбільшого до найменшого значення - 3, 2, 1; в, "
1433
+ #~ "б, а)"
1434
+
1435
+ #~ msgid "Sort galleries"
1436
+ #~ msgstr "Сортувати галереї"
1437
+
1438
+ #~ msgid "by Title"
1439
+ #~ msgstr "по Назві"
1440
+
1441
+ #~ msgid "by Author"
1442
+ #~ msgstr "по Автору"
1443
+
1444
+ #~ msgid "The galleries sort order"
1445
+ #~ msgstr "Порядок сортування галерей"
1446
+
1447
+ #~ msgid "Lightbox background"
1448
+ #~ msgstr "Фон лайтбоксу"
1449
+
1450
+ #~ msgid "Background transparency (from 0 to 1)"
1451
+ #~ msgstr "Прозорість фону (від 0 до 1)"
1452
+
1453
+ #~ msgid "When using the gallery template or a shortcode with `%s` parameter"
1454
+ #~ msgstr ""
1455
+ #~ "Коли використовується темплейт галереї або шорткод з параметром `%s`"
1456
+
1457
+ #~ msgid "Do not use"
1458
+ #~ msgstr "Не використовувати"
1459
+
1460
+ #~ msgid "Thumbnail helper"
1461
+ #~ msgstr "Допоміжні мініатюри"
1462
+
1463
+ #~ msgid "Width (in px)"
1464
+ #~ msgstr "Ширина (в пікселях)"
1465
+
1466
+ #~ msgid "Height (in px)"
1467
+ #~ msgstr "Висота (в пікселях)"
1468
+
1469
+ #~ msgid "FaceBook"
1470
+ #~ msgstr "FaceBook"
1471
+
1472
+ #~ msgid "Twitter"
1473
+ #~ msgstr "Twitter"
1474
+
1475
+ #~ msgid "Pinterest"
1476
+ #~ msgstr "Pinterest"
1477
+
1478
+ #~ msgid "Google +1"
1479
+ #~ msgstr "Google +1"
1480
+
1481
+ #~ msgid "Align"
1482
+ #~ msgstr "Вирівнювання"
1483
+
1484
+ #~ msgid "Title for lightbox button"
1485
+ #~ msgstr "Назва для кнопки лайтбоксу"
1486
+
1487
+ #~ msgid "Display the Back link"
1488
+ #~ msgstr "Відображати посилання Повернутися"
1489
+
1490
+ #~ msgid "The Back link text"
1491
+ #~ msgstr "Текст для посилання Повернутися"
1492
+
1493
+ #~ msgid "Gallery page (Page with Gallery Template)"
1494
+ #~ msgstr "Сторінка Галереї (сторінка з шаблоном галереї)"
1495
+
1496
+ #~ msgid "Full URL to custom page"
1497
+ #~ msgstr "Повне посилання на сторінку користувача"
1498
+
1499
+ #~ msgid "Add gallery to the search"
1500
+ #~ msgstr "Додати галерею до пошуку"
1501
+
1502
+ #~ msgid "Using"
1503
+ #~ msgstr "Використовуючи"
1504
+
1505
+ #~ msgid "powered by"
1506
+ #~ msgstr "за підтримки"
1507
+
1508
+ #~ msgid "Download"
1509
+ #~ msgstr "Завантажити"
1510
+
1511
+ #~ msgid "Slug for gallery item"
1512
+ #~ msgstr "Назва для елементу галереї"
1513
+
1514
+ #~ msgid "for any structure of permalinks except the default structure"
1515
+ #~ msgstr "для будь-яких структур пермалінків окрім стандартної структури"
1516
+
1517
+ #~ msgid ""
1518
+ #~ "To avoid conflicts with other plugins, please mark this checkbox to "
1519
+ #~ "rename it now"
1520
+ #~ msgstr ""
1521
+ #~ "Для того, щоб уникнути конфліктів з іншими плагінами, будь ласка, "
1522
+ #~ "увімкніть прапорець, щоб перейменувати його зараз"
1523
+
1524
+ #~ msgid "Save Changes"
1525
+ #~ msgstr "Зберегти зміни"
1526
+
1527
+ #~ msgid ""
1528
+ #~ "The alt attribute specifies an alternate text for an image, if the image "
1529
+ #~ "cannot be displayed."
1530
+ #~ msgstr ""
1531
+ #~ "Атрибут Alt визначає альтернативний текст для зображення, якщо зображення "
1532
+ #~ "не може бути відображене."
1533
+
1534
+ #~ msgid ""
1535
+ #~ "By clicking on the thumbnail you'll go to the link (if the field is "
1536
+ #~ "filled) or the image will be opened in the lightbox (if the field isn't "
1537
+ #~ "filled)"
1538
+ #~ msgstr ""
1539
+ #~ "Клікаючи на мініатюру, вас буде перенаправлено за посиланням (при умові, "
1540
+ #~ "якщо поле заповнене), або зображення відкриється в лайтбоксі (якщо поле "
1541
+ #~ "не заповнене)"
1542
+
1543
+ #~ msgid "Edit Attachment"
1544
+ #~ msgstr "Редагувати прикріплений файл"
1545
+
1546
+ #~ msgid "Current window"
1547
+ #~ msgstr "Поточне вікно"
1548
+
1549
+ #~ msgid "New window"
1550
+ #~ msgstr "Нове вікно"
1551
+
1552
+ #~ msgid "Install demo data"
1553
+ #~ msgstr "Встановити демо-дані"
1554
+
1555
+ #~ msgid "for an acquaintance with the possibilities of the"
1556
+ #~ msgstr "для ознайомлення із можливостями плагіну"
1557
+
1558
+ #~ msgid ""
1559
+ #~ "The following files '%s' or '%s' were not found in the directory of your "
1560
+ #~ "theme. Please copy them from the directory '%s' to the directory of your "
1561
+ #~ "theme for the correct work of the Gallery plugin"
1562
+ #~ msgstr ""
1563
+ #~ "Файли '%s' та '%s' не було знайдено в каталозі вашої теми. Будь ласка, "
1564
+ #~ "скопіюйте їх з каталогу '%s' в каталог вашої теми для коректної роботи "
1565
+ #~ "плагіну Gallery"
1566
+
1567
+ #~ msgid "Rewrite templates after update"
1568
+ #~ msgstr "Перезаписати шаблони після оновлення"
1569
+
1570
+ #~ msgid ""
1571
+ #~ "Turn off the checkbox, if You edited the file '%s' or '%s' file in your "
1572
+ #~ "theme folder and You don't want to rewrite them"
1573
+ #~ msgstr ""
1574
+ #~ "Вимкніть прапорець, якщо ви редагували файл '%s' або '%s' в папці тем та "
1575
+ #~ "не хочете щоб вони були оновлені"
1576
+
1577
+ #~ msgid "Select a background color"
1578
+ #~ msgstr "Виберіть колір фону"
1579
+
1580
+ #~ msgid "Sort galleries by"
1581
+ #~ msgstr "Сортувати галереї за"
1582
+
1583
+ #~ msgid "The number of images per row can be less"
1584
+ #~ msgstr "Кількість зображень в рядку може бути менше"
1585
+
1586
+ #~ msgid ""
1587
+ #~ "If you install the demo-data, will be created galleries with images, demo-"
1588
+ #~ "post with available shortcodes and page with a list of all the galleries, "
1589
+ #~ "plugin settings will be overwritten, however, when you delete the demo "
1590
+ #~ "data, they will be restored."
1591
+ #~ msgstr ""
1592
+ #~ "Під час встановки демо-даних будуть створені галереї із зображеннями, "
1593
+ #~ "пост із доступними шорткодами та сторінка зі списком галерей, "
1594
+ #~ "налаштування плагіну будуть перезаписані, але, під час видалення демо-"
1595
+ #~ "даних, вони будуть відновлені."
1596
+
1597
+ #~ msgid "Max width (in px)"
1598
+ #~ msgstr "Макс. ширина (в пікселях)"
1599
+
1600
+ #~ msgid "Max height (in px)"
1601
+ #~ msgstr "Макс. висота (в пікселях)"
1602
+
1603
+ #~ msgid "Display text under the image"
1604
+ #~ msgstr "Відображати текст під зображенням"
1605
+
1606
+ #~ msgid ""
1607
+ #~ "The plugin's settings have been changed. In order to save them please "
1608
+ #~ "don't forget to click the 'Save Changes' button."
1609
+ #~ msgstr ""
1610
+ #~ "Налаштування плагіну було змінено. Щоб зберегти їх, будь ласка, не "
1611
+ #~ "забудьте клікнути \"Зберегти зміни\"."
1612
+
1613
+ #~ msgid "Background color"
1614
+ #~ msgstr "Колір фону"
1615
+
1616
+ #~ msgid "Using Custom Search powered by"
1617
+ #~ msgstr "Використовуючи Custom Search, розроблений"
1618
+
1619
+ #~ msgid "Activate Custom Search"
1620
+ #~ msgstr "Активувати Custom Search"
1621
+
1622
+ #~ msgid "Download Custom Search"
1623
+ #~ msgstr "Завантажити Custom Search"
1624
+
1625
+ #~ msgid "(by click on image opens a link in a new window)"
1626
+ #~ msgstr "(при кліку на зображення відкриється нове вікно)"
1627
+
1628
+ #~ msgid "Add a Gallery"
1629
+ #~ msgstr "Додати галерею"
1630
+
1631
+ #~ msgid "Find a Gallery"
1632
+ #~ msgstr "Знайти галерею"
1633
+
1634
+ #~ msgid "Upload File"
1635
+ #~ msgstr "Завантажити файл"
1636
+
1637
+ #~ msgid "Choose a media file that will be attached"
1638
+ #~ msgstr "Виберіть медіа файли для прикріплення"
1639
+
1640
+ #~ msgid "You need to install \"%s\" plugin to use this functionality"
1641
+ #~ msgstr ""
1642
+ #~ "Щоб використовувати цей функціонал, вам необхідно встановити плагін \"%s\""
1643
+
1644
+ #~ msgid "Attach media item to this gallery"
1645
+ #~ msgstr "Прикріпити медіа файл до галереї"
1646
+
1647
+ #~ msgid ""
1648
+ #~ "The gallery temp directory (gallery-plugin-pro/upload/files) is not "
1649
+ #~ "available for record on your webserver. Please use the standard WP "
1650
+ #~ "functionality to upload images (media library)"
1651
+ #~ msgstr ""
1652
+ #~ "Каталог галереї для зберігання тимчасових файлів (gallery-plugin-pro/"
1653
+ #~ "upload/files) закритий для запису на вашому веб-сервері. Будь ласка, "
1654
+ #~ "скористуйтеся стандартним функціоналом WP для завантаження зображень "
1655
+ #~ "(медіа-бібліотека)"
1656
+
1657
+ #~ msgid "Choose an image for upload:"
1658
+ #~ msgstr "Вибрати зображення для завантаження:"
1659
+
1660
+ #~ msgid "Allow the download link for all images in this gallery"
1661
+ #~ msgstr ""
1662
+ #~ "Дозволити посилання для завантаження для всіх зображень в даній галереї"
1663
+
1664
+ #~ msgid ""
1665
+ #~ "Please use the drag and drop function to change an order of the images "
1666
+ #~ "displaying and do not forget to save the post."
1667
+ #~ msgstr ""
1668
+ #~ "Будь ласка, скористуйтеся функцією перетягнення, щоб змінити порядок "
1669
+ #~ "відображення зображень та не забудьте зберегти запис."
1670
+
1671
+ #~ msgid "Please make a choice"
1672
+ #~ msgstr "Будь ласка, виберіть"
1673
+
1674
+ #~ msgid "sort images"
1675
+ #~ msgstr "Сортувати зображення"
1676
+
1677
+ #~ msgid "on the plugin settings page ("
1678
+ #~ msgstr "на сторінці установок плагіну ("
1679
+
1680
+ #~ msgid "Delete"
1681
+ #~ msgstr "Видалити"
1682
+
1683
+ #~ msgid ""
1684
+ #~ "You can add a Single Gallery to the page or post by inserting this "
1685
+ #~ "shortcode into the content"
1686
+ #~ msgstr ""
1687
+ #~ "Ви можете додати Галерею на вашу сторінку або у ваш запис шляхом "
1688
+ #~ "розміщення даного шорткоду в контент"
1689
+
1690
+ #~ msgid "Publishing"
1691
+ #~ msgstr "Публікація"
1692
+
1693
+ #~ msgid "Already attached?"
1694
+ #~ msgstr "Уже прикріплено?"
1695
+
1696
+ #~ msgid ""
1697
+ #~ "If you'd like to attach the files, which are already uploaded, please use "
1698
+ #~ "Re-attacher plugin."
1699
+ #~ msgstr ""
1700
+ #~ "Для того, щоб перекріпити файли, які вже було завантажено, будь ласка, "
1701
+ #~ "скористуйтеся нашим плагіном Re-attacher."
readme.txt CHANGED
@@ -3,8 +3,8 @@ 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.0
6
- Tested up to: 4.7.2
7
- Stable tag: 4.4.9
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -18,7 +18,7 @@ Showcase portfolio or just to show off useful images easily with gallery plugin
18
 
19
  [View Demo](https://bestwebsoft.com/demo-for-gallery-pro/)
20
 
21
- http://www.youtube.com/watch?v=aydaTdOpaRM
22
 
23
  = Free Features =
24
 
@@ -104,7 +104,7 @@ If you have a feature suggestion or idea you'd like to see in the plugin, we'd l
104
  * [[Doc] How to Receive Trial License](https://docs.google.com/document/d/1koBRu7k9OnOw2Ic3YqmBWjL_KtC3tI8WU1agMa3AYGo/)
105
  * [[Doc] Installation](https://docs.google.com/document/d/1-hvn6WRvWnOqj5v5pLUk7Awyu87lq5B_dO-Tv-MC9JQ/)
106
  * [[Doc] Purchase](https://docs.google.com/document/d/1EUdBVvnm7IHZ6y0DNyldZypUQKpB8UVPToSc_LdOYQI/)
107
- * [[Video] How to Add](http://www.youtube.com/watch?v=-P9o6-APlv0)
108
  * [[Video] Installation Instruction](https://www.youtube.com/watch?v=3u-Ov-HxZ7U)
109
  * [[Video] Purchase, Installation, Configuration Tutorial](https://www.youtube.com/watch?v=KAbiac-iORw)
110
 
@@ -117,10 +117,11 @@ Visit our Help Center if you have any questions, our friendly Support Team is ha
117
  * Brazilian Portuguese (pt_BR) (thanks to DJIO, www.djio.com.br)
118
  * Bulgarian (bg_BG) (thanks to Petya)
119
  * Chinese (zh_CN) (thanks to [Xiaobo Chen](mailto:mibcxb@gmail.com))
120
- * Czech (cs_CZ) (thanks to [Lagya](mailto:lagya@me.com))
121
  * Dutch (nl_NL) (thanks to [J Goessens](mailto:j.goessens@gmail.com))
122
  * French (fr_FR) (thanks to Didier, [L Capronnier](mailto:lcapronnier@yahoo.com))
123
  * German (de_DE) (thanks to Thomas Bludau, [Jonas Seemann](mailto:info@ahoidesign.de))
 
124
  * Russian (ru_RU)
125
  * Serbian (sr_RS) (thanks to [Andrijana Nikolic](mailto:andrijanan@webhostinggeeks.com) www.webhostinggeeks.com )
126
  * Slovak (sk_SK) (thanks to [Michal Kralik](mailto:ja@michalkralik.sk))
@@ -129,7 +130,7 @@ Visit our Help Center if you have any questions, our friendly Support Team is ha
129
  * Turkish (tr) (thanks to [Ismail Demirbilek](mailto:ce.demirbilek@gmail.com))
130
  * Ukrainian (uk)
131
 
132
- Some of these translations are not complete. We are constantly adding new features which should be translated. If you would like to create your own language pack or update the existing one, you can send [the text of PO and MO files](http://codex.wordpress.org/Translating_WordPress) to [BestWebSoft](https://support.bestwebsoft.com/hc/en-us/requests/new) and we'll add it to the plugin. You can download the latest version of the program for work with PO and MO [files Poedit](http://www.poedit.net/download.php).
133
 
134
  = Recommended Plugins =
135
 
@@ -221,6 +222,11 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
221
 
222
  == Changelog ==
223
 
 
 
 
 
 
224
  = V4.4.9 - 13.02.2017 =
225
  * NEW : Cover settings were added.
226
  * Update : The plugin settings page has been updated.
@@ -611,6 +617,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
611
 
612
  == Upgrade Notice ==
613
 
 
 
 
614
  = V4.4.9 =
615
  * New features added.
616
  * Usability improved.
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.0
6
+ Tested up to: 4.7.3
7
+ Stable tag: 4.5.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
18
 
19
  [View Demo](https://bestwebsoft.com/demo-for-gallery-pro/)
20
 
21
+ https://www.youtube.com/watch?v=aydaTdOpaRM
22
 
23
  = Free Features =
24
 
104
  * [[Doc] How to Receive Trial License](https://docs.google.com/document/d/1koBRu7k9OnOw2Ic3YqmBWjL_KtC3tI8WU1agMa3AYGo/)
105
  * [[Doc] Installation](https://docs.google.com/document/d/1-hvn6WRvWnOqj5v5pLUk7Awyu87lq5B_dO-Tv-MC9JQ/)
106
  * [[Doc] Purchase](https://docs.google.com/document/d/1EUdBVvnm7IHZ6y0DNyldZypUQKpB8UVPToSc_LdOYQI/)
107
+ * [[Video] How to Add](https://www.youtube.com/watch?v=-P9o6-APlv0)
108
  * [[Video] Installation Instruction](https://www.youtube.com/watch?v=3u-Ov-HxZ7U)
109
  * [[Video] Purchase, Installation, Configuration Tutorial](https://www.youtube.com/watch?v=KAbiac-iORw)
110
 
117
  * Brazilian Portuguese (pt_BR) (thanks to DJIO, www.djio.com.br)
118
  * Bulgarian (bg_BG) (thanks to Petya)
119
  * Chinese (zh_CN) (thanks to [Xiaobo Chen](mailto:mibcxb@gmail.com))
120
+ * Czech (cs_CZ) (thanks to [Michal Kučera](mailto:kucerami@gmail.com) www.n0lim.it)
121
  * Dutch (nl_NL) (thanks to [J Goessens](mailto:j.goessens@gmail.com))
122
  * French (fr_FR) (thanks to Didier, [L Capronnier](mailto:lcapronnier@yahoo.com))
123
  * German (de_DE) (thanks to Thomas Bludau, [Jonas Seemann](mailto:info@ahoidesign.de))
124
+ * Indonesian (id_ID) (thanks to [Jordan Silaen](mailto:jordan.silaen@chameleonjohn.com) www.chameleonjohn.com)
125
  * Russian (ru_RU)
126
  * Serbian (sr_RS) (thanks to [Andrijana Nikolic](mailto:andrijanan@webhostinggeeks.com) www.webhostinggeeks.com )
127
  * Slovak (sk_SK) (thanks to [Michal Kralik](mailto:ja@michalkralik.sk))
130
  * Turkish (tr) (thanks to [Ismail Demirbilek](mailto:ce.demirbilek@gmail.com))
131
  * Ukrainian (uk)
132
 
133
+ Some of these translations are not complete. We are constantly adding new features which should be translated. If you would like to create your own language pack or update the existing one, you can send [the text of PO and MO files](https://codex.wordpress.org/Translating_WordPress) to [BestWebSoft](https://support.bestwebsoft.com/hc/en-us/requests/new) and we'll add it to the plugin. You can download the latest version of the program for work with PO and MO [files Poedit](https://www.poedit.net/download.php).
134
 
135
  = Recommended Plugins =
136
 
222
 
223
  == Changelog ==
224
 
225
+ = V4.5.0 - 06.04.2017 =
226
+ * NEW : The Indonesian language file is added.
227
+ * Update : The French language file is updated.
228
+ * Update : The Czech language file is updated.
229
+
230
  = V4.4.9 - 13.02.2017 =
231
  * NEW : Cover settings were added.
232
  * Update : The plugin settings page has been updated.
617
 
618
  == Upgrade Notice ==
619
 
620
+ = V4.5.0 =
621
+ * Languages updated.
622
+
623
  = V4.4.9 =
624
  * New features added.
625
  * Usability improved.