Version Description
- 14.04.2017 =
- Bugfix : Multiple Cross-Site Scripting (XSS) vulnerability was fixed.
- Update : The French language file is updated.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Contact Form by BestWebSoft |
Version | 4.0.6 |
Comparing to | |
See all releases |
Code changes from version 4.0.5 to 4.0.6
- bws_menu/bws_functions.php +2 -2
- bws_menu/bws_menu.php +12 -10
- bws_menu/class-bws-settings.php +23 -12
- bws_menu/css/general_style.css +19 -3
- bws_menu/fonts/bwsicons.eot +0 -0
- bws_menu/fonts/bwsicons.svg +2 -1
- bws_menu/fonts/bwsicons.ttf +0 -0
- bws_menu/fonts/bwsicons.woff +0 -0
- bws_menu/languages/bestwebsoft-cs_CZ.mo +0 -0
- bws_menu/languages/bestwebsoft-cs_CZ.po +371 -427
- bws_menu/languages/bestwebsoft-fr_FR.mo +0 -0
- bws_menu/languages/bestwebsoft-fr_FR.po +263 -298
- bws_menu/languages/bestwebsoft-pl_PL.mo +0 -0
- bws_menu/languages/bestwebsoft-pl_PL.po +188 -176
- bws_menu/languages/bestwebsoft-ru_RU.mo +0 -0
- bws_menu/languages/bestwebsoft-ru_RU.po +185 -174
- bws_menu/languages/bestwebsoft-uk.mo +0 -0
- bws_menu/languages/bestwebsoft-uk.po +186 -175
- contact_form.php +1 -1
- languages/contact-form-plugin-fr_FR.mo +0 -0
- languages/contact-form-plugin-fr_FR.po +494 -331
- readme.txt +27 -14
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
|
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
|
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>
|
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>
|
bws_menu/bws_menu.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
* Function for displaying BestWebSoft menu
|
4 |
-
* Version: 2.0.
|
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 ( $
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
|
|
|
|
64 |
}
|
65 |
/* check expired */
|
66 |
if ( $is_pro_installed && isset( $bstwbsftwppdtplgns_options['time_out'][ $value_plugin['pro_version'] ] ) &&
|
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'] ] ) &&
|
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>
|
@@ -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 |
-
|
700 |
-
|
701 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|
705 |
<?php } else {
|
706 |
$attr = '';
|
707 |
if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $this->bws_license_plugin ]['count'] ) &&
|
@@ -786,10 +797,10 @@ 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 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
$raw_response = wp_remote_post( 'http://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 ) ) {
|
@@ -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 (
|
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;
|
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>
|
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 ) ) {
|
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;
|
bws_menu/css/general_style.css
CHANGED
@@ -647,11 +647,18 @@ span.bws_code {
|
|
647 |
content: "\f317";
|
648 |
}
|
649 |
#bws_settings_tabs li.bws-tab-errors a:before {
|
650 |
-
|
|
|
|
|
|
|
651 |
}
|
652 |
#bws_settings_tabs li.bws-tab-notifications a:before {
|
653 |
content: "\f466";
|
654 |
}
|
|
|
|
|
|
|
|
|
655 |
#bws_settings_tabs li:last-child a {
|
656 |
border-bottom: none;
|
657 |
}
|
@@ -679,6 +686,12 @@ span.bws_code {
|
|
679 |
margin-right: 10px;
|
680 |
width: calc( 100% - 20px );
|
681 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
682 |
.bws_form .postbox .hndle {
|
683 |
cursor: inherit;
|
684 |
}
|
@@ -768,6 +781,9 @@ span.bws_code {
|
|
768 |
.bws_form #postbox-container-2 .postbox {
|
769 |
margin-bottom: 20px;
|
770 |
}
|
|
|
|
|
|
|
771 |
}
|
772 |
@media screen and (max-width: 782px) {
|
773 |
.bws-hide-for-mobile {
|
@@ -778,10 +794,10 @@ span.bws_code {
|
|
778 |
#bws_settings_tabs_wrapper .bws_tab .form-table td input[type=file] {
|
779 |
width: 182px;
|
780 |
}
|
781 |
-
#bws_settings_tabs_wrapper .bws_tab .form-table td input[type=text],
|
782 |
#bws_settings_tabs_wrapper .bws_tab .form-table td input[type=password],
|
783 |
#bws_settings_tabs_wrapper .bws_tab .form-table td input[type=search],
|
784 |
-
#bws_settings_tabs_wrapper .bws_tab .form-table td input[type=number],
|
785 |
#bws_settings_tabs_wrapper .bws_tab .form-table td select,
|
786 |
#bws_settings_tabs_wrapper .bws_tab .form-table td textarea {
|
787 |
width: 100%;
|
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 |
}
|
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/fonts/bwsicons.eot
CHANGED
Binary file
|
bws_menu/fonts/bwsicons.svg
CHANGED
@@ -60,7 +60,7 @@
|
|
60 |
<glyph unicode="" 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="" 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="" 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="" glyph-name="zendesk-help-center" d="
|
64 |
<glyph unicode="" 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="" 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="" 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" />
|
@@ -68,4 +68,5 @@
|
|
68 |
<glyph unicode="" 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="" glyph-name="shortcode" d="M0 896v-896h384v192h-192v512h192v192h-192zM832 896h-192v-192h192v-512h-192v-192h384v896z" />
|
70 |
<glyph unicode="" 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 |
</font></defs></svg>
|
60 |
<glyph unicode="" 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="" 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="" 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="" 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="" 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="" 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="" 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" />
|
68 |
<glyph unicode="" 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="" glyph-name="shortcode" d="M0 896v-896h384v192h-192v512h192v192h-192zM832 896h-192v-192h192v-512h-192v-192h384v896z" />
|
70 |
<glyph unicode="" 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="" 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
CHANGED
Binary file
|
bws_menu/fonts/bwsicons.woff
CHANGED
Binary file
|
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:
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: Mik013\n"
|
9 |
"Language: cs_CZ\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -37,28 +37,26 @@ msgid "Plugins page"
|
|
37 |
msgstr "Stránka pluginů"
|
38 |
|
39 |
#: bws_functions.php:91
|
40 |
-
#, fuzzy
|
41 |
msgid "Like the plugin?"
|
42 |
-
msgstr "
|
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:916 class-bws-settings.php:
|
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 "
|
60 |
|
61 |
-
#: bws_functions.php:107 bws_menu.php:
|
62 |
msgid "Donate"
|
63 |
msgstr "Darovat"
|
64 |
|
@@ -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 |
-
"
|
79 |
"během 24 hodin, jinak bude Pro plugin deaktivován."
|
80 |
|
81 |
-
#: bws_functions.php:127 bws_functions.php:339 bws_menu.php:
|
82 |
-
#: class-bws-settings.php:
|
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ší
|
93 |
-
"pluginu bude nutné zakoupit
|
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,20 +123,21 @@ msgstr ""
|
|
127 |
"aktualizujte na nejnovější verzi WordPressu."
|
128 |
|
129 |
#: bws_functions.php:207
|
130 |
-
|
131 |
-
|
|
|
132 |
|
133 |
#: bws_functions.php:208
|
134 |
msgid "Let's get started"
|
135 |
msgstr "Začněme"
|
136 |
|
137 |
-
#: bws_functions.php:209 bws_functions.php:242 bws_menu.php:
|
138 |
-
#: bws_menu.php:
|
139 |
msgid "Settings"
|
140 |
msgstr "Nastavení"
|
141 |
|
142 |
-
#: bws_functions.php:211 bws_menu.php:
|
143 |
-
#: class-bws-settings.php:
|
144 |
msgid "or"
|
145 |
msgstr "nebo"
|
146 |
|
@@ -167,12 +164,13 @@ msgstr "Méně detailů"
|
|
167 |
|
168 |
#: bws_functions.php:262
|
169 |
msgid "Deprecated function(-s) is used on the site here:"
|
170 |
-
msgstr ""
|
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 |
|
177 |
#: bws_functions.php:335
|
178 |
msgid "It’s time to upgrade your"
|
@@ -188,18 +186,21 @@ msgstr "verzi!"
|
|
188 |
|
189 |
#: bws_functions.php:336
|
190 |
msgid "Extend standard plugin functionality with new great options."
|
191 |
-
msgstr "Rozšiřuje standardní funkce pluginu novými
|
192 |
|
193 |
#: bws_functions.php:382
|
194 |
-
#,
|
195 |
msgid ""
|
196 |
"Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
|
197 |
"SUPPORT or UPDATES."
|
198 |
-
msgstr "
|
|
|
|
|
199 |
|
200 |
#: bws_functions.php:477
|
201 |
-
|
202 |
-
|
|
|
203 |
|
204 |
#: bws_functions.php:478
|
205 |
msgid ""
|
@@ -213,8 +214,8 @@ msgstr ""
|
|
213 |
msgid "Suggest a Feature"
|
214 |
msgstr "Navrhnout vlastnost"
|
215 |
|
216 |
-
#: bws_functions.php:495 class-bws-settings.php:
|
217 |
-
#: class-bws-settings.php:
|
218 |
msgid "Notice"
|
219 |
msgstr "Poznámka"
|
220 |
|
@@ -222,19 +223,18 @@ msgstr "Poznámka"
|
|
222 |
msgid "The plugin's settings have been changed."
|
223 |
msgstr "Nastavení pluginu bylo změněno."
|
224 |
|
225 |
-
#: bws_functions.php:496 class-bws-settings.php:
|
226 |
#: deprecated.php:640
|
227 |
msgid "Save Changes"
|
228 |
msgstr "Uložit změny"
|
229 |
|
230 |
#: bws_functions.php:510
|
231 |
-
#, fuzzy
|
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 \"
|
237 |
-
"
|
238 |
|
239 |
#: bws_functions.php:651
|
240 |
msgid "Add shortcode"
|
@@ -242,16 +242,16 @@ 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 |
|
247 |
#: bws_functions.php:700
|
248 |
msgid "Close"
|
249 |
msgstr "Zavřít"
|
250 |
|
251 |
#: bws_functions.php:792
|
252 |
-
#, fuzzy
|
253 |
msgid "Are you sure you want to restore default settings?"
|
254 |
-
msgstr "Jste si jisti, že chcete obnovit
|
255 |
|
256 |
#: bws_functions.php:795
|
257 |
msgid "Yes, restore all settings"
|
@@ -294,16 +294,15 @@ msgid "Video Instructions"
|
|
294 |
msgstr "Video instrukce"
|
295 |
|
296 |
#: bws_functions.php:930
|
297 |
-
#, fuzzy
|
298 |
msgid "Submit a Request"
|
299 |
msgstr "Odeslat požadavek"
|
300 |
|
301 |
-
#: bws_menu.php:
|
302 |
msgid "Wrong license key"
|
303 |
msgstr "Špatný licenční klíč"
|
304 |
|
305 |
-
#: bws_menu.php:
|
306 |
-
#: class-bws-settings.php:
|
307 |
#: deprecated.php:352
|
308 |
msgid ""
|
309 |
"Something went wrong. Please try again later. If the error appears again, "
|
@@ -312,66 +311,63 @@ msgstr ""
|
|
312 |
"Něco se pokazilo. Prosím zkuste to znovu později. Pokud se chyba objeví "
|
313 |
"znovu, obraťte se na nás"
|
314 |
|
315 |
-
#: bws_menu.php:
|
316 |
-
#: class-bws-settings.php:
|
317 |
#: deprecated.php:352
|
318 |
msgid "We are sorry for inconvenience."
|
319 |
msgstr "Omlouváme se za nepříjemnosti."
|
320 |
|
321 |
-
#: bws_menu.php:
|
322 |
#: deprecated.php:139 deprecated.php:358
|
323 |
msgid "Wrong license key."
|
324 |
msgstr "Neplatný licenční klíč"
|
325 |
|
326 |
-
#: bws_menu.php:
|
327 |
-
#, fuzzy
|
328 |
msgid ""
|
329 |
"This license key is bound to another site. Change it via personal Client "
|
330 |
"Area."
|
331 |
msgstr ""
|
332 |
-
"Tento licenční klíč je přidružen k
|
333 |
-
"
|
334 |
|
335 |
-
#: bws_menu.php:
|
336 |
-
#, fuzzy
|
337 |
msgid "Log in"
|
338 |
msgstr "Přihlášení"
|
339 |
|
340 |
-
#: bws_menu.php:
|
341 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
342 |
msgstr "Bohužel, překročili jste dostupný počet pokusů pro daný den."
|
343 |
|
344 |
-
#: bws_menu.php:
|
345 |
-
#,
|
346 |
msgid ""
|
347 |
"Unfortunately, Your license has expired. To continue getting top-priority "
|
348 |
"support and plugin updates, you should extend it in your %s"
|
349 |
msgstr ""
|
350 |
"Bohužel, Vaše licence vypršela. Chcete-li pokračovat v získávání top-"
|
351 |
-
"prioritní podpory a aktualizace pluginu měli byste ji prodloužit ve vašem"
|
352 |
|
353 |
-
#: bws_menu.php:
|
354 |
msgid ""
|
355 |
"Unfortunately, the Pro licence was already installed to this domain. The Pro "
|
356 |
"Trial license can be installed only once."
|
357 |
msgstr ""
|
358 |
-
"Bohužel,
|
359 |
-
"
|
360 |
|
361 |
-
#: bws_menu.php:
|
362 |
msgid "The license key is valid."
|
363 |
msgstr "Licenční klíč je platný"
|
364 |
|
365 |
-
#: bws_menu.php:
|
366 |
msgid "Your license will expire on"
|
367 |
msgstr "Vaše licence vyprší"
|
368 |
|
369 |
-
#: bws_menu.php:
|
370 |
-
#, fuzzy
|
371 |
msgid "Congratulations! Pro Membership license is activated successfully."
|
372 |
-
msgstr "Gratulujeme!
|
373 |
|
374 |
-
#: bws_menu.php:
|
375 |
msgid ""
|
376 |
"Something went wrong. Try again later or upload the plugin manually. We are "
|
377 |
"sorry for inconvenience."
|
@@ -379,226 +375,218 @@ msgstr ""
|
|
379 |
"Něco se pokazilo. Zkuste to později, nebo nahrajte plugin ručně. Omlouváme "
|
380 |
"se za nepříjemnosti."
|
381 |
|
382 |
-
#: bws_menu.php:
|
383 |
msgid "Please enter your license key."
|
384 |
msgstr "Prosím vložte váš licenční klíč."
|
385 |
|
386 |
-
#: bws_menu.php:
|
387 |
-
#, fuzzy
|
388 |
msgid "Not set"
|
389 |
msgstr "Nenastaveno"
|
390 |
|
391 |
-
#: bws_menu.php:
|
392 |
msgid "On"
|
393 |
msgstr "Zapnout"
|
394 |
|
395 |
-
|
396 |
-
|
397 |
msgid "Off"
|
398 |
msgstr "Vypnout"
|
399 |
|
400 |
-
#: bws_menu.php:
|
401 |
-
#: bws_menu.php:
|
402 |
msgid "N/A"
|
403 |
msgstr "N/A"
|
404 |
|
405 |
-
#: bws_menu.php:
|
406 |
msgid " Mb"
|
407 |
msgstr " Mb"
|
408 |
|
409 |
-
#: bws_menu.php:
|
410 |
msgid "Yes"
|
411 |
msgstr "Ano"
|
412 |
|
413 |
-
#: bws_menu.php:
|
414 |
msgid "No"
|
415 |
msgstr "Ne"
|
416 |
|
417 |
-
#: bws_menu.php:
|
418 |
-
#, fuzzy
|
419 |
msgid "WordPress Environment"
|
420 |
-
msgstr "
|
421 |
|
422 |
-
#: bws_menu.php:
|
423 |
msgid "Home URL"
|
424 |
msgstr "Domovská URL"
|
425 |
|
426 |
-
#: bws_menu.php:
|
427 |
-
#, fuzzy
|
428 |
msgid "Website URL"
|
429 |
msgstr "URL webových stránek"
|
430 |
|
431 |
-
#: bws_menu.php:
|
432 |
-
#, fuzzy
|
433 |
msgid "WP Version"
|
434 |
-
msgstr "
|
435 |
|
436 |
-
#: bws_menu.php:
|
437 |
msgid "WP Multisite"
|
438 |
-
msgstr ""
|
439 |
|
440 |
-
#: bws_menu.php:
|
441 |
-
#, fuzzy
|
442 |
msgid "WP Memory Limit"
|
443 |
-
msgstr "
|
444 |
|
445 |
-
#: bws_menu.php:
|
446 |
msgid "Active Theme"
|
447 |
msgstr "Aktivovat šablonu"
|
448 |
|
449 |
-
#: bws_menu.php:
|
450 |
#, php-format
|
451 |
msgid "by %s"
|
452 |
-
msgstr ""
|
453 |
|
454 |
-
#: bws_menu.php:
|
455 |
-
#, fuzzy
|
456 |
msgid "Server Environment"
|
457 |
msgstr "Prostředí"
|
458 |
|
459 |
-
#: bws_menu.php:
|
460 |
msgid "Operating System"
|
461 |
msgstr "Operační systém"
|
462 |
|
463 |
-
#: bws_menu.php:
|
464 |
msgid "Server"
|
465 |
msgstr "Server"
|
466 |
|
467 |
-
#: bws_menu.php:
|
468 |
msgid "PHP Version"
|
469 |
msgstr "PHP Verze"
|
470 |
|
471 |
-
|
|
|
472 |
msgid "PHP Allow URL fopen"
|
473 |
-
msgstr ""
|
474 |
|
475 |
-
#: bws_menu.php:
|
476 |
msgid "PHP Memory Limit"
|
477 |
msgstr "PHP Limit paměti"
|
478 |
|
479 |
-
#: bws_menu.php:
|
480 |
-
#, fuzzy
|
481 |
msgid "Memory Usage"
|
482 |
msgstr "Využití paměti"
|
483 |
|
484 |
-
|
|
|
485 |
msgid "PHP Max Upload Size"
|
486 |
-
msgstr ""
|
487 |
|
488 |
-
|
|
|
489 |
msgid "PHP Max Post Size"
|
490 |
-
msgstr ""
|
491 |
|
492 |
-
|
|
|
493 |
msgid "PHP Max Script Execute Time"
|
494 |
-
msgstr ""
|
495 |
|
496 |
-
#: bws_menu.php:
|
497 |
msgid "PHP Exif support"
|
498 |
-
msgstr ""
|
499 |
|
500 |
-
#: bws_menu.php:
|
501 |
msgid "PHP IPTC support"
|
502 |
-
msgstr ""
|
503 |
|
504 |
-
#: bws_menu.php:
|
505 |
msgid "PHP XML support"
|
506 |
-
msgstr ""
|
507 |
|
508 |
-
#: bws_menu.php:
|
509 |
msgid "Database"
|
510 |
-
msgstr ""
|
511 |
|
512 |
-
#: bws_menu.php:
|
513 |
-
#, fuzzy
|
514 |
msgid "WP DB version"
|
515 |
-
msgstr "
|
516 |
|
517 |
-
#: bws_menu.php:
|
518 |
-
#, fuzzy
|
519 |
msgid "MySQL version"
|
520 |
msgstr "Verze MYSQL"
|
521 |
|
522 |
-
#: bws_menu.php:
|
523 |
msgid "SQL Mode"
|
524 |
msgstr "Mód SQL"
|
525 |
|
526 |
-
#: bws_menu.php:
|
527 |
msgid "Active Plugins"
|
528 |
msgstr "Aktivní pluginy"
|
529 |
|
530 |
-
#: bws_menu.php:
|
531 |
msgid "Inactive Plugins"
|
532 |
msgstr "Neaktivní pluginy"
|
533 |
|
534 |
-
#: bws_menu.php:
|
535 |
msgid "Please enter a valid email address."
|
536 |
msgstr "Prosím vložte platnou e-mailovou adresu."
|
537 |
|
538 |
-
#: bws_menu.php:
|
539 |
-
#, fuzzy
|
540 |
msgid "Email with system info is sent to"
|
541 |
msgstr "E-mail se systémovým nastavením byl odeslán na"
|
542 |
|
543 |
-
#: bws_menu.php:
|
544 |
msgid "Thank you for contacting us."
|
545 |
msgstr "Děkujeme, že jste nás kontaktovali."
|
546 |
|
547 |
-
#: bws_menu.php:
|
548 |
msgid "Sorry, email message could not be delivered."
|
549 |
msgstr "Je nám líto, ale e-mail nemohl být doručen."
|
550 |
|
551 |
-
#: bws_menu.php:
|
552 |
msgid "Plugins"
|
553 |
msgstr "Pluginy"
|
554 |
|
555 |
-
#: bws_menu.php:
|
556 |
msgid "Themes"
|
557 |
msgstr "Šablony"
|
558 |
|
559 |
-
#: bws_menu.php:
|
560 |
msgid "System status"
|
561 |
msgstr "Stav systému"
|
562 |
|
563 |
-
#: bws_menu.php:
|
564 |
msgid "Support"
|
565 |
msgstr "Podpora"
|
566 |
|
567 |
-
#: bws_menu.php:
|
568 |
-
#, fuzzy
|
569 |
msgid "Manage purchased licenses & subscriptions"
|
570 |
-
msgstr "Spravovat zakoupené licence
|
571 |
|
572 |
-
#: bws_menu.php:
|
573 |
#, php-format
|
574 |
msgid "Get Access to %s+ Premium Plugins"
|
575 |
msgstr "Získejte přístup k %s+ Premiovým pluginům"
|
576 |
|
577 |
-
#: bws_menu.php:
|
578 |
-
#, fuzzy
|
579 |
msgid "Subscribe to Pro Membership"
|
580 |
msgstr "Přihlásit se k Pro členství"
|
581 |
|
582 |
-
#: bws_menu.php:
|
583 |
#: deprecated.php:227
|
584 |
msgid "Check license key"
|
585 |
-
msgstr "
|
586 |
|
587 |
-
#: bws_menu.php:
|
588 |
msgid "Enter your license key"
|
589 |
msgstr "Vložte váš licenční klíč"
|
590 |
|
591 |
-
#: bws_menu.php:
|
592 |
-
#: class-bws-settings.php:
|
593 |
#: deprecated.php:629 deprecated.php:700 deprecated.php:709
|
594 |
msgid "Activate"
|
595 |
msgstr "Aktivovat"
|
596 |
|
597 |
-
#: bws_menu.php:
|
598 |
msgid "Upload Plugin"
|
599 |
msgstr "Nahrát plugin"
|
600 |
|
601 |
-
#: bws_menu.php:
|
602 |
#, php-format
|
603 |
msgid ""
|
604 |
"The plugin generated %d characters of <strong>unexpected output</strong> "
|
@@ -611,46 +599,45 @@ msgstr ""
|
|
611 |
"problems with syndication feeds or other issues, pokuste se deaktivovat, "
|
612 |
"nebo odstranit tento plugin."
|
613 |
|
614 |
-
#: bws_menu.php:
|
615 |
-
#, fuzzy
|
616 |
msgid ""
|
617 |
"Plugin could not be activated because it triggered a <strong>fatal error</"
|
618 |
"strong>."
|
619 |
msgstr ""
|
620 |
-
"Plugin nemůže být aktivován, neboť způsobil <strong>
|
621 |
|
622 |
-
#: bws_menu.php:
|
623 |
msgid "Plugin <strong>activated</strong>."
|
624 |
msgstr "Plugin <strong>aktivován</strong>."
|
625 |
|
626 |
-
#: bws_menu.php:
|
627 |
msgid "Installing Plugin"
|
628 |
msgstr "Instalace pluginu"
|
629 |
|
630 |
-
#: bws_menu.php:
|
631 |
msgid "Downloading install package from"
|
632 |
msgstr "Stahování instalačního balíčku z"
|
633 |
|
634 |
-
#: bws_menu.php:
|
635 |
-
#: class-bws-settings.php:
|
636 |
-
#: class-bws-settings.php:
|
637 |
#: deprecated.php:431
|
638 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
639 |
msgstr "Stažení zip archivu selhalo. Prosíme, nahrajte plugin ručně."
|
640 |
|
641 |
-
#: bws_menu.php:
|
642 |
msgid "Unpacking the package"
|
643 |
msgstr "Rozbalování balíčku"
|
644 |
|
645 |
-
#: bws_menu.php:
|
646 |
msgid "Installing the plugin"
|
647 |
msgstr "Instalace pluginu"
|
648 |
|
649 |
-
#: bws_menu.php:
|
650 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
651 |
msgstr "Otevření zip archivu selhalo. Prosíme, nahrajte plugin ručně."
|
652 |
|
653 |
-
#: bws_menu.php:
|
654 |
msgid ""
|
655 |
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
656 |
"plugin manually"
|
@@ -658,182 +645,169 @@ msgstr ""
|
|
658 |
"Váš server nepodporuje buď ZipArchive nebo Phar. Prosím, nahrajte plugin "
|
659 |
"ručně"
|
660 |
|
661 |
-
#: bws_menu.php:
|
662 |
#, php-format
|
663 |
msgid "The plugin %s is successfully installed."
|
664 |
-
msgstr ""
|
665 |
|
666 |
-
#: bws_menu.php:
|
667 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
668 |
msgstr "Nelze zapisovat do UploadDir. Prosím, nahrajte plugin ručně"
|
669 |
|
670 |
-
#: bws_menu.php:
|
671 |
msgid "Activate Plugin"
|
672 |
msgstr "Aktivovat plugin"
|
673 |
|
674 |
-
#: bws_menu.php:
|
675 |
-
#, fuzzy
|
676 |
msgid "Return to BestWebSoft Panel"
|
677 |
msgstr "Návrat na BestWebSoft panel"
|
678 |
|
679 |
-
#: bws_menu.php:
|
680 |
msgid "All"
|
681 |
msgstr "Vše"
|
682 |
|
683 |
-
#: bws_menu.php:
|
684 |
msgid "Installed"
|
685 |
msgstr "Instalováno"
|
686 |
|
687 |
-
#: bws_menu.php:
|
688 |
msgid "Not Installed"
|
689 |
msgstr "Neninstalováno"
|
690 |
|
691 |
-
#: bws_menu.php:
|
692 |
-
#, fuzzy
|
693 |
msgid "Filter results"
|
694 |
msgstr "Výsledky filtrování"
|
695 |
|
696 |
-
#: bws_menu.php:
|
697 |
msgid "Category"
|
698 |
msgstr "Rubriky"
|
699 |
|
700 |
-
#: bws_menu.php:
|
701 |
msgid "Not installed"
|
702 |
msgstr "Neninstalováno"
|
703 |
|
704 |
-
#: bws_menu.php:
|
705 |
-
#, fuzzy
|
706 |
msgid "Renew to get updates"
|
707 |
-
msgstr "
|
708 |
|
709 |
-
#: bws_menu.php:
|
710 |
-
#,
|
711 |
msgid "Update to v %s"
|
712 |
-
msgstr "Aktualizovat na
|
713 |
|
714 |
-
#: bws_menu.php:
|
715 |
msgid "Install Now"
|
716 |
msgstr "Instalovat nyní"
|
717 |
|
718 |
-
#: bws_menu.php:
|
719 |
msgid "Upgrade to Pro"
|
720 |
msgstr "Aktualizovat na Pro"
|
721 |
|
722 |
-
#: bws_menu.php:
|
723 |
msgid "Activate this plugin"
|
724 |
msgstr "Aktivovat tento plugin"
|
725 |
|
726 |
-
#: bws_menu.php:
|
727 |
msgid "Install this plugin"
|
728 |
msgstr "Instalovat tento plugin"
|
729 |
|
730 |
-
#: bws_menu.php:
|
731 |
msgid "Nothing found. Try another criteria."
|
732 |
msgstr "Nic nenalezeno. Zkuste jiná kritéria."
|
733 |
|
734 |
-
|
|
|
735 |
#, php-format
|
736 |
msgid "By %s"
|
737 |
-
msgstr ""
|
738 |
|
739 |
-
#: bws_menu.php:
|
740 |
msgid "Already Installed"
|
741 |
msgstr "Již instalováno"
|
742 |
|
743 |
-
#: bws_menu.php:
|
744 |
msgid "Browse Free WordPress Themes"
|
745 |
msgstr "Procházet WordPress šablony zdarma"
|
746 |
|
747 |
-
#: bws_menu.php:
|
748 |
msgid "Send to support"
|
749 |
msgstr "Odeslat podpoře"
|
750 |
|
751 |
-
#: bws_menu.php:
|
752 |
msgid "Send to custom email »"
|
753 |
msgstr "Odeslat na vlastní e-mail »"
|
754 |
|
755 |
-
#: class-bws-settings.php:
|
756 |
-
#, fuzzy
|
757 |
msgid "Information"
|
758 |
-
msgstr "
|
759 |
|
760 |
-
#: class-bws-settings.php:
|
761 |
-
#, fuzzy
|
762 |
msgid "Inactive"
|
763 |
-
msgstr "Neaktivní
|
764 |
|
765 |
-
#: class-bws-settings.php:
|
766 |
msgid "Expired"
|
767 |
-
msgstr ""
|
768 |
|
769 |
-
#: class-bws-settings.php:
|
770 |
#, php-format
|
771 |
msgid "%s day(-s) left"
|
772 |
-
msgstr ""
|
773 |
|
774 |
-
#: class-bws-settings.php:
|
775 |
-
#,
|
776 |
msgid "Expired on %s"
|
777 |
-
msgstr "
|
778 |
|
779 |
-
#: class-bws-settings.php:
|
780 |
msgid "Renew Now"
|
781 |
-
msgstr ""
|
782 |
|
783 |
-
#: class-bws-settings.php:
|
784 |
-
#, fuzzy
|
785 |
msgid "Active"
|
786 |
-
msgstr "
|
787 |
|
788 |
-
#: class-bws-settings.php:
|
789 |
-
#, fuzzy
|
790 |
msgid "License"
|
791 |
-
msgstr "
|
792 |
|
793 |
-
#: class-bws-settings.php:
|
794 |
-
#, fuzzy
|
795 |
msgid "Status"
|
796 |
-
msgstr "Stav
|
797 |
|
798 |
-
#: class-bws-settings.php:
|
799 |
-
#, fuzzy
|
800 |
msgid "Version"
|
801 |
-
msgstr "
|
802 |
|
803 |
-
#: class-bws-settings.php:
|
804 |
-
#, fuzzy
|
805 |
msgid "All plugin settings were restored."
|
806 |
-
msgstr "
|
807 |
|
808 |
-
#: class-bws-settings.php:
|
809 |
-
#, fuzzy
|
810 |
msgid "Custom Code"
|
811 |
-
msgstr "
|
812 |
|
813 |
-
#: class-bws-settings.php:
|
814 |
msgid "You do not have sufficient permissions to edit plugins for this site."
|
815 |
msgstr "Nemáte dostatečná oprávnění pro úpravu pluginů tohoto webu."
|
816 |
|
817 |
-
#: class-bws-settings.php:
|
818 |
-
#, fuzzy
|
819 |
msgid "These styles will be added to the header on all pages of your site."
|
820 |
-
msgstr "Tyto styly budou přidány do
|
821 |
|
822 |
-
#: class-bws-settings.php:
|
823 |
#, php-format
|
824 |
msgid ""
|
825 |
"This PHP code will be hooked to the %s action and will be printed on front "
|
826 |
"end only."
|
827 |
msgstr ""
|
828 |
-
"Tento PHP kód bude
|
829 |
-
"endu."
|
830 |
|
831 |
-
#: class-bws-settings.php:
|
832 |
-
#, fuzzy
|
833 |
msgid "These code will be added to the header on all pages of your site."
|
834 |
-
msgstr "
|
835 |
|
836 |
-
#: class-bws-settings.php:
|
837 |
#, php-format
|
838 |
msgid ""
|
839 |
"You need to make this files writable before you can save your changes. See "
|
@@ -842,101 +816,96 @@ msgstr ""
|
|
842 |
"Před tím, než budete moci vaše změny uložit, nastavte těmto souborům "
|
843 |
"oprávnění pro zápis. Podívejte se %s na Kodex %s pro více informací."
|
844 |
|
845 |
-
#: class-bws-settings.php:
|
846 |
msgid "Browsing"
|
847 |
msgstr "Procházení"
|
848 |
|
849 |
-
#: class-bws-settings.php:
|
850 |
#, php-format
|
851 |
msgid "Activate custom %s code."
|
852 |
-
msgstr ""
|
853 |
|
854 |
-
#: class-bws-settings.php:
|
855 |
#, php-format
|
856 |
msgid "Learn more about %s"
|
857 |
msgstr "Dozvědět se více o %s"
|
858 |
|
859 |
-
#: class-bws-settings.php:
|
860 |
msgid "Miscellaneous Settings"
|
861 |
-
msgstr ""
|
862 |
|
863 |
-
#: class-bws-settings.php:
|
864 |
#, php-format
|
865 |
msgid ""
|
866 |
"It is prohibited to change %s settings on this site in the %s network "
|
867 |
"settings."
|
868 |
-
msgstr ""
|
869 |
|
870 |
-
#: class-bws-settings.php:
|
871 |
#, php-format
|
872 |
msgid ""
|
873 |
"It is prohibited to view %s settings on this site in the %s network settings."
|
874 |
-
msgstr ""
|
875 |
|
876 |
-
#: class-bws-settings.php:
|
877 |
-
#, fuzzy
|
878 |
msgid "Pro Options"
|
879 |
-
msgstr "
|
880 |
|
881 |
-
#: class-bws-settings.php:
|
882 |
msgid "Enable to display plugin Pro options."
|
883 |
-
msgstr ""
|
884 |
|
885 |
-
#: class-bws-settings.php:
|
886 |
msgid "Track Usage"
|
887 |
-
msgstr ""
|
888 |
|
889 |
-
#: class-bws-settings.php:
|
890 |
msgid ""
|
891 |
"Enable to allow tracking plugin usage anonymously in order to make it better."
|
892 |
msgstr ""
|
|
|
893 |
|
894 |
-
#: class-bws-settings.php:
|
895 |
-
#, fuzzy
|
896 |
msgid "Default Settings"
|
897 |
-
msgstr "
|
898 |
|
899 |
-
#: class-bws-settings.php:
|
900 |
-
#, fuzzy
|
901 |
msgid "Restore Settings"
|
902 |
msgstr "Obnovit nastavení"
|
903 |
|
904 |
-
#: class-bws-settings.php:
|
905 |
-
#, fuzzy
|
906 |
msgid "This will restore plugin settings to defaults."
|
907 |
-
msgstr "
|
908 |
|
909 |
-
#: class-bws-settings.php:
|
910 |
msgid "Import / Export"
|
911 |
-
msgstr ""
|
912 |
|
913 |
-
#: class-bws-settings.php:
|
914 |
-
#: class-bws-settings.php:
|
915 |
-
#, fuzzy
|
916 |
msgid "License Key"
|
917 |
-
msgstr "
|
918 |
|
919 |
-
#: class-bws-settings.php:
|
920 |
-
#, fuzzy
|
921 |
msgid "Congratulations! Pro license is activated successfully."
|
922 |
-
msgstr "Gratulujeme!
|
923 |
|
924 |
-
#: class-bws-settings.php:
|
925 |
-
#,
|
926 |
-
msgid "You will be automatically redirected to the %s in
|
927 |
-
msgstr "
|
928 |
|
929 |
-
#: class-bws-settings.php:
|
930 |
-
#, fuzzy
|
931 |
msgid "Settings page"
|
932 |
-
msgstr "
|
933 |
|
934 |
-
#: class-bws-settings.php:
|
935 |
-
#,
|
936 |
msgid "Enter your license key to activate %s and get premium plugin features."
|
937 |
-
msgstr "
|
|
|
938 |
|
939 |
-
#: class-bws-settings.php:
|
940 |
#: deprecated.php:703
|
941 |
msgid ""
|
942 |
"Unfortunately, you have exceeded the number of available tries per day. "
|
@@ -945,43 +914,41 @@ msgstr ""
|
|
945 |
"Bohužel, jste překročili počet dostupných pokusů za den. Prosím, nahrejte "
|
946 |
"plugin ručně."
|
947 |
|
948 |
-
#: class-bws-settings.php:
|
949 |
#, php-format
|
950 |
msgid "Start Your Free %s-Day Trial Now"
|
951 |
msgstr "Vyzkoušejte vaší %s-denní zkušební verzi zdarma nyní"
|
952 |
|
953 |
-
#: class-bws-settings.php:
|
954 |
-
#, fuzzy
|
955 |
msgid ""
|
956 |
"If necessary, you can check if the license key is correct or reenter it in "
|
957 |
"the field below."
|
958 |
msgstr ""
|
959 |
"V případě potřeby zkontrolujte, je-li licenční klíč správně zadán, případně "
|
960 |
-
"jej do pole níže vložte znova.
|
961 |
-
"stránce - Klientská zóna - na našem webu"
|
962 |
|
963 |
-
#: class-bws-settings.php:
|
964 |
msgid "Manage License Settings"
|
965 |
-
msgstr ""
|
966 |
|
967 |
-
#: class-bws-settings.php:
|
968 |
-
#, fuzzy
|
969 |
msgid "Login to Client Area"
|
970 |
-
msgstr "
|
971 |
|
972 |
-
#: class-bws-settings.php:
|
973 |
msgid ""
|
974 |
"Manage active licenses, download BWS products, and view your payment history "
|
975 |
"using BestWebSoft Client Area."
|
976 |
msgstr ""
|
|
|
|
|
977 |
|
978 |
-
#: class-bws-settings.php:
|
979 |
#: deprecated.php:360
|
980 |
-
#, fuzzy
|
981 |
msgid "This license key is bound to another site."
|
982 |
-
msgstr "Tento licenční klíč je přidružen k
|
983 |
|
984 |
-
#: class-bws-settings.php:
|
985 |
msgid ""
|
986 |
"This license key is valid, but Your license has expired. If you want to "
|
987 |
"update our plugin in future, you should extend the license."
|
@@ -989,11 +956,11 @@ msgstr ""
|
|
989 |
"Tento licenční klíč je platný, ale vaše licence vypršela. Chcete-li náš "
|
990 |
"plugin v budoucnosti aktualizovat, měli by jste licenci prodloužit."
|
991 |
|
992 |
-
#: class-bws-settings.php:
|
993 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
994 |
msgstr "Bohužel, překročili jste dostupný počet pokusů."
|
995 |
|
996 |
-
#: class-bws-settings.php:
|
997 |
msgid ""
|
998 |
"Unfortunately, the Pro Trial licence was already installed to this domain. "
|
999 |
"The Pro Trial license can be installed only once."
|
@@ -1001,39 +968,36 @@ msgstr ""
|
|
1001 |
"Bohužel, tato zkušební Pro licence již pro tuto doménu byla použita. "
|
1002 |
"Zkušební Pro licence může být instalována pouze jedenkrát."
|
1003 |
|
1004 |
-
#: class-bws-settings.php:
|
1005 |
msgid "The Pro Trial license key is valid."
|
1006 |
msgstr "Licenční klíč zkušební Pro verze je platný"
|
1007 |
|
1008 |
-
#: class-bws-settings.php:
|
1009 |
#, php-format
|
1010 |
msgid ""
|
1011 |
"In order to continue using the plugin it is necessary to buy a %s license."
|
1012 |
msgstr ""
|
1013 |
"Pokud chcete nadále využívat tento plugin, je nutné zakoupit %s licenci."
|
1014 |
|
1015 |
-
#: class-bws-settings.php:
|
1016 |
msgid "Please, enter Your license key"
|
1017 |
msgstr "Prosím, vložte váš licenční klíč"
|
1018 |
|
1019 |
-
#: class-bws-settings.php:
|
1020 |
-
#, fuzzy
|
1021 |
msgid "Need Help?"
|
1022 |
-
msgstr "
|
1023 |
|
1024 |
-
#: class-bws-settings.php:
|
1025 |
-
#, fuzzy
|
1026 |
msgid "Read the Instruction"
|
1027 |
-
msgstr "
|
1028 |
|
1029 |
-
#: class-bws-settings.php:
|
1030 |
msgid "Watch the Video"
|
1031 |
-
msgstr ""
|
1032 |
|
1033 |
-
#: class-bws-settings.php:
|
1034 |
-
#, fuzzy
|
1035 |
msgid "Start Your Free Trial"
|
1036 |
-
msgstr "Vyzkoušejte
|
1037 |
|
1038 |
#: deprecated.php:93
|
1039 |
msgid "System Status"
|
@@ -1044,7 +1008,6 @@ msgid "Please, enter your license key"
|
|
1044 |
msgstr "Prosím, vložte váš licenční klíč."
|
1045 |
|
1046 |
#: deprecated.php:223
|
1047 |
-
#, fuzzy
|
1048 |
msgid ""
|
1049 |
"If necessary, you can check if the license key is correct or reenter it in "
|
1050 |
"the field below. You can find your license key on your personal page - "
|
@@ -1063,9 +1026,8 @@ msgstr ""
|
|
1063 |
"nutné, prosím odešlete \"Lost your password?\" požadavek."
|
1064 |
|
1065 |
#: deprecated.php:247
|
1066 |
-
#, fuzzy
|
1067 |
msgid "After that, you can activate it by entering your license key."
|
1068 |
-
msgstr "
|
1069 |
|
1070 |
#: deprecated.php:249 deprecated.php:688
|
1071 |
msgid "License key can be found in the"
|
@@ -1073,10 +1035,9 @@ msgstr "Licenční klíč najdete v"
|
|
1073 |
|
1074 |
#: deprecated.php:251 deprecated.php:690
|
1075 |
msgid "(your username is the email address specified during the purchase)."
|
1076 |
-
msgstr "(vaše uživatelské jméno je e-mailová adresa
|
1077 |
|
1078 |
#: deprecated.php:278
|
1079 |
-
#, fuzzy
|
1080 |
msgid ""
|
1081 |
"Congratulations! The Pro license of the plugin is activated successfully."
|
1082 |
msgstr "Gratulujeme! PRO licence pluginu je úspěšně aktivována."
|
@@ -1086,7 +1047,6 @@ msgid "Please, go to"
|
|
1086 |
msgstr "Prosím, jděte na"
|
1087 |
|
1088 |
#: deprecated.php:280 deprecated.php:669
|
1089 |
-
#, fuzzy
|
1090 |
msgid "the setting page"
|
1091 |
msgstr "stránka nastavení"
|
1092 |
|
@@ -1120,12 +1080,10 @@ msgid "Not enough permissions to create the file"
|
|
1120 |
msgstr "Nedostatečná oprávnění pro vytvoření souboru"
|
1121 |
|
1122 |
#: deprecated.php:624
|
1123 |
-
#, fuzzy
|
1124 |
msgid "Editing"
|
1125 |
-
msgstr "
|
1126 |
|
1127 |
#: deprecated.php:667
|
1128 |
-
#, fuzzy
|
1129 |
msgid ""
|
1130 |
"Congratulations! Pro version of the plugin is installed and activated "
|
1131 |
"successfully."
|
@@ -1179,25 +1137,25 @@ msgstr "Utility"
|
|
1179 |
msgid "Other"
|
1180 |
msgstr "Ostatní"
|
1181 |
|
1182 |
-
#~ msgid "
|
1183 |
-
#~ msgstr "
|
1184 |
|
1185 |
-
|
1186 |
-
#~
|
1187 |
-
#~ msgstr "vyprší"
|
1188 |
|
1189 |
-
|
1190 |
-
#~
|
|
|
1191 |
|
1192 |
-
#~ msgid "
|
1193 |
-
#~ msgstr "
|
1194 |
-
|
1195 |
-
#, fuzzy
|
1196 |
-
#~ msgid "Please, go to %s"
|
1197 |
-
#~ msgstr "Prosím, jděte na"
|
1198 |
|
1199 |
#~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
1200 |
-
#~ msgstr "
|
|
|
|
|
|
|
|
|
1201 |
|
1202 |
#~ msgid "If there is something wrong about it, please contact us"
|
1203 |
#~ msgstr "Pokud cokoli není v pořádku, obraťte se na nás"
|
@@ -1205,126 +1163,112 @@ msgstr "Ostatní"
|
|
1205 |
#~ msgid "Donations play an important role in supporting great projects"
|
1206 |
#~ msgstr "Dary hrají důležitou roli v podpoře velkých projektů"
|
1207 |
|
1208 |
-
#~ msgid "
|
1209 |
-
#~ msgstr "
|
1210 |
-
|
1211 |
-
#~ msgid "Activate Membership"
|
1212 |
-
#~ msgstr "Активировать Membership"
|
1213 |
-
|
1214 |
-
#~ msgid "Don’t have valid license key yet?"
|
1215 |
-
#~ msgstr "Нет действующего лицензионного ключа?"
|
1216 |
|
1217 |
#~ msgid ""
|
1218 |
-
#~ "
|
1219 |
-
#~ "
|
1220 |
#~ msgstr ""
|
1221 |
-
#~ "
|
1222 |
-
#~ "
|
1223 |
-
#~ "%s в месяц."
|
1224 |
-
|
1225 |
-
#~ msgid "My Account"
|
1226 |
-
#~ msgstr "Мой аккаунт"
|
1227 |
-
|
1228 |
-
#~ msgid "BWS Panel"
|
1229 |
-
#~ msgstr "BWS Панель"
|
1230 |
-
|
1231 |
-
#~ msgid "panel"
|
1232 |
-
#~ msgstr "панель"
|
1233 |
-
|
1234 |
-
#~ msgid "You can download and activate"
|
1235 |
-
#~ msgstr "Вы можете скачать и активировать"
|
1236 |
-
|
1237 |
-
#~ msgid "version of this plugin by entering Your license key."
|
1238 |
-
#~ msgstr "версию этого плагина, введя ваш лицензионный ключ."
|
1239 |
|
1240 |
#~ msgid ""
|
1241 |
-
#~ "
|
1242 |
-
#~ "
|
1243 |
#~ msgstr ""
|
1244 |
-
#~ "
|
1245 |
-
#~ "area, нажав на ссылку"
|
1246 |
-
|
1247 |
-
#~ msgid "Configure Settings"
|
1248 |
-
#~ msgstr "Настройка параметров"
|
1249 |
-
|
1250 |
-
#~ msgid "Go"
|
1251 |
-
#~ msgstr "Перейти на"
|
1252 |
-
|
1253 |
-
#~ msgid "DONATE"
|
1254 |
-
#~ msgstr "Пожертвовать"
|
1255 |
-
|
1256 |
-
#~ msgid "Recommended plugins"
|
1257 |
-
#~ msgstr "Рекомендованные к установке плагины"
|
1258 |
|
1259 |
-
#~ msgid "
|
1260 |
-
#~ msgstr "
|
1261 |
|
1262 |
-
#~ msgid "
|
1263 |
-
#~
|
|
|
1264 |
|
1265 |
-
#~ msgid "
|
1266 |
-
#~ msgstr "
|
1267 |
|
1268 |
-
#~ msgid "
|
1269 |
-
#~
|
|
|
|
|
|
|
|
|
|
|
|
|
1270 |
|
1271 |
-
#~ msgid "
|
1272 |
-
#~
|
|
|
|
|
|
|
|
|
1273 |
|
1274 |
-
#~ msgid "
|
1275 |
-
#~
|
|
|
|
|
|
|
|
|
1276 |
|
1277 |
-
#~ msgid "
|
1278 |
-
#~ msgstr "
|
1279 |
|
1280 |
-
#~ msgid "
|
1281 |
-
#~ msgstr "
|
1282 |
|
1283 |
-
#~ msgid "
|
1284 |
-
#~ msgstr "
|
1285 |
|
1286 |
#~ msgid ""
|
1287 |
-
#~ "
|
1288 |
-
#~ "
|
1289 |
#~ msgstr ""
|
1290 |
-
#~ "
|
1291 |
-
#~ "
|
1292 |
|
1293 |
-
#~ msgid "
|
1294 |
-
#~ msgstr "
|
|
|
1295 |
|
1296 |
-
#~ msgid "
|
1297 |
-
#~
|
|
|
|
|
|
|
|
|
1298 |
|
1299 |
-
#~ msgid "
|
1300 |
-
#~ msgstr "
|
1301 |
|
1302 |
-
#~ msgid "
|
1303 |
-
#~ msgstr "
|
1304 |
|
1305 |
-
#~ msgid "
|
1306 |
-
#~ msgstr "
|
1307 |
|
1308 |
-
#~ msgid "
|
1309 |
-
#~ msgstr "
|
1310 |
|
1311 |
-
#~ msgid "
|
1312 |
-
#~ msgstr "
|
1313 |
|
1314 |
-
#~ msgid "
|
1315 |
-
#~ msgstr "
|
1316 |
|
1317 |
-
|
1318 |
-
#~
|
|
|
1319 |
|
1320 |
-
#~ msgid "
|
1321 |
-
#~ msgstr "
|
1322 |
|
1323 |
-
#~ msgid "
|
1324 |
-
#~ msgstr "
|
1325 |
|
1326 |
-
#~ msgid "
|
1327 |
-
#~ msgstr "
|
1328 |
|
1329 |
-
#~ msgid "
|
1330 |
-
#~ 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"
|
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"
|
61 |
msgstr "Darovat"
|
62 |
|
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"
|
132 |
msgstr "Začněme"
|
133 |
|
134 |
+
#: bws_functions.php:209 bws_functions.php:242 bws_menu.php:557
|
135 |
+
#: bws_menu.php:559
|
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"
|
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"
|
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, "
|
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 |
|
513 |
+
#: bws_menu.php:230
|
514 |
msgid "SQL Mode"
|
515 |
msgstr "Mód SQL"
|
516 |
|
517 |
+
#: bws_menu.php:234
|
518 |
msgid "Active Plugins"
|
519 |
msgstr "Aktivní pluginy"
|
520 |
|
521 |
+
#: bws_menu.php:239
|
522 |
msgid "Inactive Plugins"
|
523 |
msgstr "Neaktivní pluginy"
|
524 |
|
525 |
+
#: bws_menu.php:260
|
526 |
msgid "Please enter a valid email address."
|
527 |
msgstr "Prosím vložte platnou e-mailovou adresu."
|
528 |
|
529 |
+
#: bws_menu.php:264
|
|
|
530 |
msgid "Email with system info is sent to"
|
531 |
msgstr "E-mail se systémovým nastavením byl odeslán na"
|
532 |
|
533 |
+
#: bws_menu.php:268
|
534 |
msgid "Thank you for contacting us."
|
535 |
msgstr "Děkujeme, že jste nás kontaktovali."
|
536 |
|
537 |
+
#: bws_menu.php:291
|
538 |
msgid "Sorry, email message could not be delivered."
|
539 |
msgstr "Je nám líto, ale e-mail nemohl být doručen."
|
540 |
|
541 |
+
#: bws_menu.php:307 bws_menu.php:311 bws_menu.php:360 deprecated.php:91
|
542 |
msgid "Plugins"
|
543 |
msgstr "Pluginy"
|
544 |
|
545 |
+
#: bws_menu.php:308 bws_menu.php:312 bws_menu.php:611 deprecated.php:92
|
546 |
msgid "Themes"
|
547 |
msgstr "Šablony"
|
548 |
|
549 |
+
#: bws_menu.php:309 bws_menu.php:313 bws_menu.php:662
|
550 |
msgid "System status"
|
551 |
msgstr "Stav systému"
|
552 |
|
553 |
+
#: bws_menu.php:317
|
554 |
msgid "Support"
|
555 |
msgstr "Podpora"
|
556 |
|
557 |
+
#: bws_menu.php:318
|
|
|
558 |
msgid "Manage purchased licenses & subscriptions"
|
559 |
+
msgstr "Spravovat zakoupené licence a předplatné"
|
560 |
|
561 |
+
#: bws_menu.php:326
|
562 |
#, php-format
|
563 |
msgid "Get Access to %s+ Premium Plugins"
|
564 |
msgstr "Získejte přístup k %s+ Premiovým pluginům"
|
565 |
|
566 |
+
#: bws_menu.php:328
|
|
|
567 |
msgid "Subscribe to Pro Membership"
|
568 |
msgstr "Přihlásit se k Pro členství"
|
569 |
|
570 |
+
#: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php: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"
|
588 |
|
589 |
+
#: bws_menu.php:365
|
590 |
#, php-format
|
591 |
msgid ""
|
592 |
"The plugin generated %d characters of <strong>unexpected output</strong> "
|
599 |
"problems with syndication feeds or other issues, pokuste se deaktivovat, "
|
600 |
"nebo odstranit tento plugin."
|
601 |
|
602 |
+
#: bws_menu.php:367
|
|
|
603 |
msgid ""
|
604 |
"Plugin could not be activated because it triggered a <strong>fatal error</"
|
605 |
"strong>."
|
606 |
msgstr ""
|
607 |
+
"Plugin nemůže být aktivován, neboť způsobil <strong>závažnou chybu</strong>."
|
608 |
|
609 |
+
#: bws_menu.php:370
|
610 |
msgid "Plugin <strong>activated</strong>."
|
611 |
msgstr "Plugin <strong>aktivován</strong>."
|
612 |
|
613 |
+
#: bws_menu.php:377
|
614 |
msgid "Installing Plugin"
|
615 |
msgstr "Instalace pluginu"
|
616 |
|
617 |
+
#: bws_menu.php:383
|
618 |
msgid "Downloading install package from"
|
619 |
msgstr "Stahování instalačního balíčku z"
|
620 |
|
621 |
+
#: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
|
622 |
+
#: class-bws-settings.php: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"
|
631 |
|
632 |
+
#: bws_menu.php:413 bws_menu.php:421
|
633 |
msgid "Installing the plugin"
|
634 |
msgstr "Instalace pluginu"
|
635 |
|
636 |
+
#: bws_menu.php:417 class-bws-settings.php: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"
|
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 |
|
665 |
+
#: bws_menu.php:449 bws_menu.php:464 bws_menu.php:593
|
666 |
msgid "All"
|
667 |
msgstr "Vše"
|
668 |
|
669 |
+
#: bws_menu.php:450 bws_menu.php:650
|
670 |
msgid "Installed"
|
671 |
msgstr "Instalováno"
|
672 |
|
673 |
+
#: bws_menu.php:451
|
674 |
msgid "Not Installed"
|
675 |
msgstr "Neninstalováno"
|
676 |
|
677 |
+
#: bws_menu.php:457
|
|
|
678 |
msgid "Filter results"
|
679 |
msgstr "Výsledky filtrování"
|
680 |
|
681 |
+
#: bws_menu.php:460 bws_menu.php:589
|
682 |
msgid "Category"
|
683 |
msgstr "Rubriky"
|
684 |
|
685 |
+
#: bws_menu.php:524
|
686 |
msgid "Not installed"
|
687 |
msgstr "Neninstalováno"
|
688 |
|
689 |
+
#: bws_menu.php:528
|
|
|
690 |
msgid "Renew to get updates"
|
691 |
+
msgstr "Obnovit pro získání aktualizací"
|
692 |
|
693 |
+
#: bws_menu.php:531
|
694 |
+
#, php-format
|
695 |
msgid "Update to v %s"
|
696 |
+
msgstr "Aktualizovat na %s"
|
697 |
|
698 |
+
#: bws_menu.php:543 bws_menu.php:566 bws_menu.php:575
|
699 |
msgid "Install Now"
|
700 |
msgstr "Instalovat nyní"
|
701 |
|
702 |
+
#: bws_menu.php:549 class-bws-settings.php:156 class-bws-settings.php:1056
|
703 |
msgid "Upgrade to Pro"
|
704 |
msgstr "Aktualizovat na Pro"
|
705 |
|
706 |
+
#: bws_menu.php:563 bws_menu.php:572
|
707 |
msgid "Activate this plugin"
|
708 |
msgstr "Aktivovat tento plugin"
|
709 |
|
710 |
+
#: bws_menu.php:575
|
711 |
msgid "Install this plugin"
|
712 |
msgstr "Instalovat tento plugin"
|
713 |
|
714 |
+
#: bws_menu.php:584
|
715 |
msgid "Nothing found. Try another criteria."
|
716 |
msgstr "Nic nenalezeno. Zkuste jiná kritéria."
|
717 |
|
718 |
+
# podle, nebo taky od
|
719 |
+
#: bws_menu.php:621 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"
|
726 |
msgstr "Již instalováno"
|
727 |
|
728 |
+
#: bws_menu.php:659
|
729 |
msgid "Browse Free WordPress Themes"
|
730 |
msgstr "Procházet WordPress šablony zdarma"
|
731 |
|
732 |
+
#: bws_menu.php:668
|
733 |
msgid "Send to support"
|
734 |
msgstr "Odeslat podpoře"
|
735 |
|
736 |
+
#: bws_menu.php:675
|
737 |
msgid "Send to custom email »"
|
738 |
msgstr "Odeslat na vlastní e-mail »"
|
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 "
|
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. "
|
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."
|
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."
|
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"
|
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 - "
|
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"
|
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."
|
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 |
|
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."
|
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"
|
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-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
"Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
|
8 |
"Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
|
9 |
"Language: fr_FR\n"
|
@@ -38,28 +38,26 @@ 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:916 class-bws-settings.php:
|
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 |
|
62 |
-
#: bws_functions.php:107 bws_menu.php:
|
63 |
msgid "Donate"
|
64 |
msgstr "Don"
|
65 |
|
@@ -80,28 +78,26 @@ msgstr ""
|
|
80 |
"de résoudre ce problème dans les 24 heures, sinon l'extension sera rendue "
|
81 |
"inactive."
|
82 |
|
83 |
-
#: bws_functions.php:127 bws_functions.php:339 bws_menu.php:
|
84 |
-
#: class-bws-settings.php:
|
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 à
|
95 |
-
"
|
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
|
105 |
|
106 |
#: bws_functions.php:146 bws_functions.php:382 deprecated.php:584
|
107 |
msgid "Learn more"
|
@@ -130,20 +126,21 @@ msgstr ""
|
|
130 |
"correctement. Merci de mettre à jour Wordpress avec la dernière version."
|
131 |
|
132 |
#: bws_functions.php:207
|
133 |
-
|
134 |
-
|
|
|
135 |
|
136 |
#: bws_functions.php:208
|
137 |
msgid "Let's get started"
|
138 |
msgstr "Démarrer"
|
139 |
|
140 |
-
#: bws_functions.php:209 bws_functions.php:242 bws_menu.php:
|
141 |
-
#: bws_menu.php:
|
142 |
msgid "Settings"
|
143 |
msgstr "Réglages"
|
144 |
|
145 |
-
#: bws_functions.php:211 bws_menu.php:
|
146 |
-
#: class-bws-settings.php:
|
147 |
msgid "or"
|
148 |
msgstr "ou"
|
149 |
|
@@ -170,12 +167,14 @@ msgstr "Moins de détails"
|
|
170 |
|
171 |
#: bws_functions.php:262
|
172 |
msgid "Deprecated function(-s) is used on the site here:"
|
173 |
-
msgstr ""
|
174 |
|
175 |
#: bws_functions.php:276
|
176 |
msgid ""
|
177 |
"This function(-s) will be removed over time. Please update the product(-s)."
|
178 |
msgstr ""
|
|
|
|
|
179 |
|
180 |
#: bws_functions.php:335
|
181 |
msgid "It’s time to upgrade your"
|
@@ -196,15 +195,18 @@ msgstr ""
|
|
196 |
"options."
|
197 |
|
198 |
#: bws_functions.php:382
|
199 |
-
#,
|
200 |
msgid ""
|
201 |
"Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
|
202 |
"SUPPORT or UPDATES."
|
203 |
-
msgstr "
|
|
|
|
|
204 |
|
205 |
#: bws_functions.php:477
|
206 |
-
|
207 |
-
|
|
|
208 |
|
209 |
#: bws_functions.php:478
|
210 |
msgid ""
|
@@ -218,8 +220,8 @@ msgstr ""
|
|
218 |
msgid "Suggest a Feature"
|
219 |
msgstr "Proposer une fonctionnalité"
|
220 |
|
221 |
-
#: bws_functions.php:495 class-bws-settings.php:
|
222 |
-
#: class-bws-settings.php:
|
223 |
msgid "Notice"
|
224 |
msgstr "Avertissement"
|
225 |
|
@@ -227,19 +229,18 @@ msgstr "Avertissement"
|
|
227 |
msgid "The plugin's settings have been changed."
|
228 |
msgstr "Les paramètres de l'extension ont été modifiés."
|
229 |
|
230 |
-
#: bws_functions.php:496 class-bws-settings.php:
|
231 |
#: deprecated.php:640
|
232 |
msgid "Save Changes"
|
233 |
-
msgstr "
|
234 |
|
235 |
#: bws_functions.php:510
|
236 |
-
#, fuzzy
|
237 |
msgid ""
|
238 |
"You can always look at premium options by checking the \"Pro Options\" in "
|
239 |
"the \"Misc\" tab."
|
240 |
msgstr ""
|
241 |
"Vous pouvez toujours consulter les options premium en cliquant sur le lien "
|
242 |
-
"\"Voir les fonctionnalités de la version PRO\" dans l'onglet
|
243 |
|
244 |
#: bws_functions.php:651
|
245 |
msgid "Add shortcode"
|
@@ -254,7 +255,6 @@ msgid "Close"
|
|
254 |
msgstr "Fermer"
|
255 |
|
256 |
#: bws_functions.php:792
|
257 |
-
#, fuzzy
|
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 |
|
@@ -302,12 +302,12 @@ msgstr "Vidéo explicative"
|
|
302 |
msgid "Submit a Request"
|
303 |
msgstr "Soumettre une requête"
|
304 |
|
305 |
-
#: bws_menu.php:
|
306 |
msgid "Wrong license key"
|
307 |
msgstr "Clé de licence incorrecte"
|
308 |
|
309 |
-
#: bws_menu.php:
|
310 |
-
#: class-bws-settings.php:
|
311 |
#: deprecated.php:352
|
312 |
msgid ""
|
313 |
"Something went wrong. Please try again later. If the error appears again, "
|
@@ -317,19 +317,18 @@ msgstr ""
|
|
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:
|
321 |
-
#: class-bws-settings.php:
|
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:
|
327 |
#: deprecated.php:139 deprecated.php:358
|
328 |