Version Description
- 08.08.2016 =
- Update : All functionality for wordpress 4.6 was updated.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Facebook Button by BestWebSoft |
Version | 2.50 |
Comparing to | |
See all releases |
Code changes from version 2.49 to 2.50
- bws_menu/bws_functions.php +74 -31
- bws_menu/bws_menu.php +34 -28
- bws_menu/css/general_style.css +7 -6
- bws_menu/css/style.css +49 -25
- bws_menu/icons/themes/renty.png +0 -0
- bws_menu/images/logo-white-min.png +0 -0
- bws_menu/languages/bestwebsoft-fr_FR.mo +0 -0
- bws_menu/languages/bestwebsoft-fr_FR.po +103 -102
- bws_menu/languages/bestwebsoft-pl_PL.mo +0 -0
- bws_menu/languages/bestwebsoft-pl_PL.po +88 -98
- bws_menu/languages/bestwebsoft-ru_RU.mo +0 -0
- bws_menu/languages/bestwebsoft-ru_RU.po +100 -100
- bws_menu/languages/bestwebsoft-uk.mo +0 -0
- bws_menu/languages/bestwebsoft-uk.po +100 -100
- bws_menu/product_list.php +11 -6
- facebook-button-plugin.php +1 -1
- readme.txt +88 -45
- screenshot-3.png +0 -0
bws_menu/bws_functions.php
CHANGED
@@ -33,7 +33,7 @@ if ( ! function_exists ( 'bws_general_menu' ) ) {
|
|
33 |
}
|
34 |
}
|
35 |
|
36 |
-
add_menu_page( 'BWS Panel', 'BWS Panel', 'manage_options', 'bws_panel', 'bws_add_menu_render', plugins_url( 'images/
|
37 |
|
38 |
add_submenu_page( 'bws_panel', __( 'Plugins', 'bestwebsoft' ), __( 'Plugins', 'bestwebsoft' ), 'manage_options', 'bws_panel', 'bws_add_menu_render' );
|
39 |
add_submenu_page( 'bws_panel', __( 'Themes', 'bestwebsoft' ), __( 'Themes', 'bestwebsoft' ), 'manage_options', 'bws_themes', 'bws_add_menu_render' );
|
@@ -305,7 +305,7 @@ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
|
|
305 |
$to_send["plugins"][ $bws_license_plugin ]["bws_license_key"] = $bws_license_key;
|
306 |
$to_send["plugins"][ $bws_license_plugin ]["bws_illegal_client"] = true;
|
307 |
$options = array(
|
308 |
-
'timeout' => ( ( defined('DOING_CRON') && DOING_CRON ) ? 30 : 3 ),
|
309 |
'body' => array( 'plugins' => serialize( $to_send ) ),
|
310 |
'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' ) );
|
311 |
$raw_response = wp_remote_post( 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/update-check/1.0/', $options );
|
@@ -323,7 +323,7 @@ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
|
|
323 |
} elseif ( "you_are_banned" == $value->package ) {
|
324 |
$result['error'] = __( "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually.", 'bestwebsoft' );
|
325 |
} elseif ( "time_out" == $value->package ) {
|
326 |
-
$result['error'] = __( "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your", 'bestwebsoft' ) . ' <a href="http://bestwebsoft.com/wp-admin/admin.php?page=
|
327 |
} elseif ( "duplicate_domen_for_trial" == $value->package ) {
|
328 |
$result['error'] = __( "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once.", 'bestwebsoft' );
|
329 |
}
|
@@ -417,6 +417,9 @@ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
|
|
417 |
update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
418 |
else
|
419 |
update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
|
|
|
|
|
|
420 |
}
|
421 |
} else {
|
422 |
$result['error'] = __( "Please, enter Your license key", 'bestwebsoft' );
|
@@ -558,6 +561,9 @@ if ( ! function_exists( 'bws_check_pro_license' ) ) {
|
|
558 |
$license_key = isset( $_POST['bws_license_key'] ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : '';
|
559 |
|
560 |
if ( '' != $license_key ) {
|
|
|
|
|
|
|
561 |
if ( ! function_exists( 'get_plugins' ) )
|
562 |
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
563 |
$plugins_all = get_plugins();
|
@@ -597,7 +603,7 @@ if ( ! function_exists( 'bws_check_pro_license' ) ) {
|
|
597 |
else
|
598 |
$result['message'] = __( 'The license key is valid.', 'bestwebsoft' );
|
599 |
|
600 |
-
if (
|
601 |
$result['message'] .= ' ' . __( 'Your license will expire on', 'bestwebsoft' ) . ' ' . $value->time_out . '.';
|
602 |
|
603 |
if ( isset( $value->trial ) && $trial_plugin != false )
|
@@ -612,16 +618,25 @@ if ( ! function_exists( 'bws_check_pro_license' ) ) {
|
|
612 |
if ( empty( $result['error'] ) ) {
|
613 |
if ( $bstwbsftwppdtplgns_options[ $plugin_basename ] != $license_key ) {
|
614 |
$bstwbsftwppdtplgns_options[ $plugin_basename ] = $license_key;
|
615 |
-
|
616 |
-
if ( is_multisite() )
|
617 |
-
update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
618 |
-
else
|
619 |
-
update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
620 |
$file = @fopen( dirname( dirname( __FILE__ ) ) . "/license_key.txt" , "w+" );
|
621 |
if ( $file ) {
|
622 |
@fwrite( $file, $license_key );
|
623 |
@fclose( $file );
|
624 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
625 |
}
|
626 |
}
|
627 |
}
|
@@ -657,37 +672,63 @@ if ( ! function_exists ( 'bws_check_pro_license_form' ) ) {
|
|
657 |
|
658 |
if ( ! function_exists ( 'bws_plugin_update_row' ) ) {
|
659 |
function bws_plugin_update_row( $plugin_key, $link_slug = false, $free_plugin_name = false ) {
|
660 |
-
global $bstwbsftwppdtplgns_options;
|
661 |
$wp_list_table = _get_list_table( 'WP_Plugins_List_Table' );
|
662 |
if ( isset( $bstwbsftwppdtplgns_options['wrong_license_key'][ $plugin_key ] ) ) {
|
663 |
-
|
|
|
|
|
|
|
|
|
664 |
<td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
|
665 |
-
<div class="update-message
|
|
|
|
|
|
|
|
|
|
|
|
|
666 |
</td>
|
667 |
</tr>';
|
668 |
} elseif ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) && strtotime( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) < strtotime( date("m/d/Y") ) ) {
|
669 |
-
|
|
|
|
|
|
|
|
|
670 |
<td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
|
671 |
-
<div class="update-message" style
|
|
|
|
|
672 |
if ( isset( $bstwbsftwppdtplgns_options['trial'][ $plugin_key ] ) && $link_slug != false ) {
|
673 |
echo __( 'Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license', 'bestwebsoft' ) . ' - <a href="http://bestwebsoft.com/products/' . $link_slug .'/">http://bestwebsoft.com/products/' . $link_slug . '/</a>';
|
674 |
} else {
|
675 |
echo __( 'Your license has expired. To continue getting top-priority support and plugin updates you should extend it.', 'bestwebsoft' ) . ' <a target="_new" href="http://support.bestwebsoft.com/entries/53487136">' . __( "Learn more", 'bestwebsoft' ) . '</a>';
|
676 |
}
|
|
|
|
|
677 |
echo '</div>
|
678 |
</td>
|
679 |
</tr>';
|
680 |
} elseif ( isset( $bstwbsftwppdtplgns_options['trial'][ $plugin_key ] ) ) {
|
681 |
-
|
|
|
|
|
|
|
|
|
682 |
<td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
|
683 |
-
<div class="update-message" style
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
|
|
|
|
|
|
|
|
691 |
echo '</div>
|
692 |
</td>
|
693 |
</tr>';
|
@@ -876,7 +917,7 @@ if ( ! function_exists ( 'bws_plugins_admin_init' ) ) {
|
|
876 |
$result = activate_plugin( $plugin, '', is_network_admin() );
|
877 |
if ( is_wp_error( $result ) ) {
|
878 |
if ( 'unexpected_output' == $result->get_error_code() ) {
|
879 |
-
$redirect = self_admin_url( 'admin.php?page=
|
880 |
wp_redirect( add_query_arg( '_error_nonce', wp_create_nonce( 'plugin-activation-error_' . $plugin ), $redirect ) );
|
881 |
exit();
|
882 |
} else {
|
@@ -893,11 +934,11 @@ if ( ! function_exists ( 'bws_plugins_admin_init' ) ) {
|
|
893 |
unset( $recent[ $plugin ] );
|
894 |
update_site_option( 'recently_activated', $recent );
|
895 |
}
|
896 |
-
wp_redirect( self_admin_url( 'admin.php?page=
|
897 |
exit();
|
898 |
}
|
899 |
|
900 |
-
if ( isset( $_GET['page'] ) && $_GET['page'] == '
|
901 |
if ( ! session_id() )
|
902 |
@session_start();
|
903 |
}
|
@@ -912,7 +953,7 @@ if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) ) {
|
|
912 |
wp_enqueue_style( 'bws-admin-css', plugins_url( 'css/general_style.css', __FILE__ ) );
|
913 |
wp_enqueue_script( 'bws-admin-scripts', plugins_url( 'js/general_script.js', __FILE__ ), array( 'jquery' ) );
|
914 |
|
915 |
-
if ( isset( $_GET['page'] ) && in_array( $_GET['page'], array( 'bws_panel', '
|
916 |
wp_enqueue_style( 'bws_menu_style', plugins_url( 'css/style.css', __FILE__ ) );
|
917 |
wp_enqueue_script( 'bws_menu_script', plugins_url( 'js/bws_menu.js' , __FILE__ ) );
|
918 |
wp_enqueue_script( 'theme-install' );
|
@@ -925,7 +966,7 @@ if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) ) {
|
|
925 |
if ( ! function_exists ( 'bws_plugins_admin_head' ) ) {
|
926 |
function bws_plugins_admin_head() {
|
927 |
global $bws_shortcode_list, $wp_version, $post_type;
|
928 |
-
if ( isset( $_GET['page'] ) && $_GET['page'] == "
|
929 |
<noscript>
|
930 |
<style type="text/css">
|
931 |
.bws_product_button {
|
@@ -1386,7 +1427,7 @@ if ( ! function_exists( 'bws_custom_code_tab' ) ) {
|
|
1386 |
<?php if ( 'css' == $extension )
|
1387 |
_e( 'These styles will be added to the header on all pages of your site.', 'bestwebsoft' );
|
1388 |
else
|
1389 |
-
printf( __( '
|
1390 |
</p>
|
1391 |
<p><big>
|
1392 |
<?php if ( ! file_exists( ${"real_{$extension}_file"} ) || ( is_writeable( ${"real_{$extension}_file"} ) ) ) {
|
@@ -1457,7 +1498,8 @@ if ( ! function_exists( 'bws_enqueue_custom_code_php' ) ) {
|
|
1457 |
if ( ! $is_multisite && ! empty( $bstwbsftwppdtplgns_options['custom_code']['bws-custom-code.php'] ) ) {
|
1458 |
|
1459 |
if ( file_exists( $bstwbsftwppdtplgns_options['custom_code']['bws-custom-code.php'] ) ) {
|
1460 |
-
|
|
|
1461 |
require_once( $bstwbsftwppdtplgns_options['custom_code']['bws-custom-code.php'] );
|
1462 |
} else {
|
1463 |
unset( $bstwbsftwppdtplgns_options['custom_code']['bws-custom-code.php'] );
|
@@ -1468,7 +1510,8 @@ if ( ! function_exists( 'bws_enqueue_custom_code_php' ) ) {
|
|
1468 |
}
|
1469 |
} elseif ( $is_multisite && ! empty( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ]['bws-custom-code.php'] ) ) {
|
1470 |
if ( file_exists( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ]['bws-custom-code.php'] ) ) {
|
1471 |
-
|
|
|
1472 |
require_once( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ]['bws-custom-code.php'] );
|
1473 |
} else {
|
1474 |
unset( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ]['bws-custom-code.php'] );
|
33 |
}
|
34 |
}
|
35 |
|
36 |
+
add_menu_page( 'BWS Panel', 'BWS Panel', 'manage_options', 'bws_panel', 'bws_add_menu_render', plugins_url( 'images/logo-white-min.png', __FILE__ ), '1001' );
|
37 |
|
38 |
add_submenu_page( 'bws_panel', __( 'Plugins', 'bestwebsoft' ), __( 'Plugins', 'bestwebsoft' ), 'manage_options', 'bws_panel', 'bws_add_menu_render' );
|
39 |
add_submenu_page( 'bws_panel', __( 'Themes', 'bestwebsoft' ), __( 'Themes', 'bestwebsoft' ), 'manage_options', 'bws_themes', 'bws_add_menu_render' );
|
305 |
$to_send["plugins"][ $bws_license_plugin ]["bws_license_key"] = $bws_license_key;
|
306 |
$to_send["plugins"][ $bws_license_plugin ]["bws_illegal_client"] = true;
|
307 |
$options = array(
|
308 |
+
'timeout' => ( ( defined( 'DOING_CRON' ) && DOING_CRON ) ? 30 : 3 ),
|
309 |
'body' => array( 'plugins' => serialize( $to_send ) ),
|
310 |
'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' ) );
|
311 |
$raw_response = wp_remote_post( 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/update-check/1.0/', $options );
|
323 |
} elseif ( "you_are_banned" == $value->package ) {
|
324 |
$result['error'] = __( "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually.", 'bestwebsoft' );
|
325 |
} elseif ( "time_out" == $value->package ) {
|
326 |
+
$result['error'] = __( "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your", 'bestwebsoft' ) . ' <a href="http://bestwebsoft.com/wp-admin/admin.php?page=client-area">Client area</a>';
|
327 |
} elseif ( "duplicate_domen_for_trial" == $value->package ) {
|
328 |
$result['error'] = __( "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once.", 'bestwebsoft' );
|
329 |
}
|
417 |
update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
418 |
else
|
419 |
update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
420 |
+
|
421 |
+
if ( ! empty( $result['pro_plugin_is_activated'] ) )
|
422 |
+
delete_transient( 'bws_plugins_update' );
|
423 |
}
|
424 |
} else {
|
425 |
$result['error'] = __( "Please, enter Your license key", 'bestwebsoft' );
|
561 |
$license_key = isset( $_POST['bws_license_key'] ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : '';
|
562 |
|
563 |
if ( '' != $license_key ) {
|
564 |
+
|
565 |
+
delete_transient( 'bws_plugins_update' );
|
566 |
+
|
567 |
if ( ! function_exists( 'get_plugins' ) )
|
568 |
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
569 |
$plugins_all = get_plugins();
|
603 |
else
|
604 |
$result['message'] = __( 'The license key is valid.', 'bestwebsoft' );
|
605 |
|
606 |
+
if ( ! empty( $value->time_out ) )
|
607 |
$result['message'] .= ' ' . __( 'Your license will expire on', 'bestwebsoft' ) . ' ' . $value->time_out . '.';
|
608 |
|
609 |
if ( isset( $value->trial ) && $trial_plugin != false )
|
618 |
if ( empty( $result['error'] ) ) {
|
619 |
if ( $bstwbsftwppdtplgns_options[ $plugin_basename ] != $license_key ) {
|
620 |
$bstwbsftwppdtplgns_options[ $plugin_basename ] = $license_key;
|
621 |
+
|
|
|
|
|
|
|
|
|
622 |
$file = @fopen( dirname( dirname( __FILE__ ) ) . "/license_key.txt" , "w+" );
|
623 |
if ( $file ) {
|
624 |
@fwrite( $file, $license_key );
|
625 |
@fclose( $file );
|
626 |
}
|
627 |
+
$update_option = true;
|
628 |
+
}
|
629 |
+
|
630 |
+
if ( $bstwbsftwppdtplgns_options['time_out'][ $plugin_basename ] != $value->time_out ) {
|
631 |
+
$bstwbsftwppdtplgns_options['time_out'][ $plugin_basename ] = $value->time_out;
|
632 |
+
$update_option = true;
|
633 |
+
}
|
634 |
+
|
635 |
+
if ( isset( $update_option ) ) {
|
636 |
+
if ( is_multisite() )
|
637 |
+
update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
638 |
+
else
|
639 |
+
update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
640 |
}
|
641 |
}
|
642 |
}
|
672 |
|
673 |
if ( ! function_exists ( 'bws_plugin_update_row' ) ) {
|
674 |
function bws_plugin_update_row( $plugin_key, $link_slug = false, $free_plugin_name = false ) {
|
675 |
+
global $bstwbsftwppdtplgns_options, $wp_version;
|
676 |
$wp_list_table = _get_list_table( 'WP_Plugins_List_Table' );
|
677 |
if ( isset( $bstwbsftwppdtplgns_options['wrong_license_key'][ $plugin_key ] ) ) {
|
678 |
+
$explode_plugin_key = explode( '/', $plugin_key );
|
679 |
+
$class = ( $wp_version >= 4.6 ) ? 'active' : '';
|
680 |
+
$style = ( $wp_version < 4.6 ) ? ' style="background-color: #FFEBE8;border-color: #CC0000;"' : '';
|
681 |
+
$div_class = ( $wp_version >= 4.6 ) ? ' notice inline notice-warning notice-alt' : '';
|
682 |
+
echo '<tr class="bws-plugin-update-tr plugin-update-tr ' . $class . '" id="' . $explode_plugin_key[0] . '-update" data-slug="' . $explode_plugin_key[0] . '" data-plugin="' . $plugin_key . '">
|
683 |
<td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
|
684 |
+
<div class="update-message' . $div_class . '"' . $style . '>';
|
685 |
+
if ( $wp_version >= 4.6 )
|
686 |
+
echo '<p>';
|
687 |
+
echo '<strong>' . __( 'WARNING: Illegal use notification', 'bestwebsoft' ) . '.</strong> ' . __( 'You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated.', 'bestwebsoft' ) . ' <a target="_blank" href="http://support.bestwebsoft.com/hc/en-us/articles/204240089">' . __( 'Learn More', 'bestwebsoft' ) . '</a>';
|
688 |
+
if ( $wp_version >= 4.6 )
|
689 |
+
echo '</p>';
|
690 |
+
echo '</div>
|
691 |
</td>
|
692 |
</tr>';
|
693 |
} elseif ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) && strtotime( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) < strtotime( date("m/d/Y") ) ) {
|
694 |
+
$explode_plugin_key = explode( '/', $plugin_key );
|
695 |
+
$class = ( $wp_version >= 4.6 ) ? 'active' : '';
|
696 |
+
$style = ( $wp_version < 4.6 ) ? ' style="color: #8C0000;"' : '';
|
697 |
+
$div_class = ( $wp_version >= 4.6 ) ? ' notice inline notice-warning notice-alt' : '';
|
698 |
+
echo '<tr class="bws-plugin-update-tr plugin-update-tr ' . $class . '" id="' . $explode_plugin_key[0] . '-update" data-slug="' . $explode_plugin_key[0] . '" data-plugin="' . $plugin_key . '">
|
699 |
<td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
|
700 |
+
<div class="update-message' . $div_class . '"' . $style . '>';
|
701 |
+
if ( $wp_version >= 4.6 )
|
702 |
+
echo '<p>';
|
703 |
if ( isset( $bstwbsftwppdtplgns_options['trial'][ $plugin_key ] ) && $link_slug != false ) {
|
704 |
echo __( 'Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license', 'bestwebsoft' ) . ' - <a href="http://bestwebsoft.com/products/' . $link_slug .'/">http://bestwebsoft.com/products/' . $link_slug . '/</a>';
|
705 |
} else {
|
706 |
echo __( 'Your license has expired. To continue getting top-priority support and plugin updates you should extend it.', 'bestwebsoft' ) . ' <a target="_new" href="http://support.bestwebsoft.com/entries/53487136">' . __( "Learn more", 'bestwebsoft' ) . '</a>';
|
707 |
}
|
708 |
+
if ( $wp_version >= 4.6 )
|
709 |
+
echo '</p>';
|
710 |
echo '</div>
|
711 |
</td>
|
712 |
</tr>';
|
713 |
} elseif ( isset( $bstwbsftwppdtplgns_options['trial'][ $plugin_key ] ) ) {
|
714 |
+
$explode_plugin_key = explode( '/', $plugin_key );
|
715 |
+
$class = ( $wp_version >= 4.6 ) ? 'active' : '';
|
716 |
+
$style = ( $wp_version < 4.6 ) ? ' style="color: #8C0000;"' : '';
|
717 |
+
$div_class = ( $wp_version >= 4.6 ) ? ' notice inline notice-warning notice-alt' : '';
|
718 |
+
echo '<tr class="bws-plugin-update-tr plugin-update-tr ' . $class . '" id="' . $explode_plugin_key[0] . '-update" data-slug="' . $explode_plugin_key[0] . '" data-plugin="' . $plugin_key . '">
|
719 |
<td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
|
720 |
+
<div class="update-message' . $div_class . '"' . $style . '>';
|
721 |
+
if ( $wp_version >= 4.6 )
|
722 |
+
echo '<p>';
|
723 |
+
if ( $free_plugin_name != false ) {
|
724 |
+
echo sprintf( __( 'Notice: You are using the Pro Trial license of %s plugin.', 'bestwebsoft' ), $free_plugin_name );
|
725 |
+
} else {
|
726 |
+
_e( 'Notice: You are using the Pro Trial license of plugin.', 'bestwebsoft' );
|
727 |
+
}
|
728 |
+
if ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) )
|
729 |
+
echo ' ' . __( "The Pro Trial license will expire on", 'bestwebsoft' ) . ' ' . $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] . '.';
|
730 |
+
if ( $wp_version >= 4.6 )
|
731 |
+
echo '</p>';
|
732 |
echo '</div>
|
733 |
</td>
|
734 |
</tr>';
|
917 |
$result = activate_plugin( $plugin, '', is_network_admin() );
|
918 |
if ( is_wp_error( $result ) ) {
|
919 |
if ( 'unexpected_output' == $result->get_error_code() ) {
|
920 |
+
$redirect = self_admin_url( 'admin.php?page=bws_panel&error=true&charsout=' . strlen( $result->get_error_data() ) . '&plugin=' . $plugin );
|
921 |
wp_redirect( add_query_arg( '_error_nonce', wp_create_nonce( 'plugin-activation-error_' . $plugin ), $redirect ) );
|
922 |
exit();
|
923 |
} else {
|
934 |
unset( $recent[ $plugin ] );
|
935 |
update_site_option( 'recently_activated', $recent );
|
936 |
}
|
937 |
+
wp_redirect( self_admin_url( 'admin.php?page=bws_panel&activate=true' ) );
|
938 |
exit();
|
939 |
}
|
940 |
|
941 |
+
if ( isset( $_GET['page'] ) && $_GET['page'] == 'bws_panel' ) {
|
942 |
if ( ! session_id() )
|
943 |
@session_start();
|
944 |
}
|
953 |
wp_enqueue_style( 'bws-admin-css', plugins_url( 'css/general_style.css', __FILE__ ) );
|
954 |
wp_enqueue_script( 'bws-admin-scripts', plugins_url( 'js/general_script.js', __FILE__ ), array( 'jquery' ) );
|
955 |
|
956 |
+
if ( isset( $_GET['page'] ) && in_array( $_GET['page'], array( 'bws_panel', 'bws_themes', 'bws_system_status' ) ) ) {
|
957 |
wp_enqueue_style( 'bws_menu_style', plugins_url( 'css/style.css', __FILE__ ) );
|
958 |
wp_enqueue_script( 'bws_menu_script', plugins_url( 'js/bws_menu.js' , __FILE__ ) );
|
959 |
wp_enqueue_script( 'theme-install' );
|
966 |
if ( ! function_exists ( 'bws_plugins_admin_head' ) ) {
|
967 |
function bws_plugins_admin_head() {
|
968 |
global $bws_shortcode_list, $wp_version, $post_type;
|
969 |
+
if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_panel" ) { ?>
|
970 |
<noscript>
|
971 |
<style type="text/css">
|
972 |
.bws_product_button {
|
1427 |
<?php if ( 'css' == $extension )
|
1428 |
_e( 'These styles will be added to the header on all pages of your site.', 'bestwebsoft' );
|
1429 |
else
|
1430 |
+
printf( __( 'This PHP code will be hooked to the %s action and will be printed on front end only.', 'bestwebsoft' ), '<a href="http://codex.wordpress.org/Plugin_API/Action_Reference/init" target="_blank"><code>init</code></a>' ); ?>
|
1431 |
</p>
|
1432 |
<p><big>
|
1433 |
<?php if ( ! file_exists( ${"real_{$extension}_file"} ) || ( is_writeable( ${"real_{$extension}_file"} ) ) ) {
|
1498 |
if ( ! $is_multisite && ! empty( $bstwbsftwppdtplgns_options['custom_code']['bws-custom-code.php'] ) ) {
|
1499 |
|
1500 |
if ( file_exists( $bstwbsftwppdtplgns_options['custom_code']['bws-custom-code.php'] ) ) {
|
1501 |
+
if ( ! defined( 'BWS_GLOBAL' ) )
|
1502 |
+
define( 'BWS_GLOBAL', true );
|
1503 |
require_once( $bstwbsftwppdtplgns_options['custom_code']['bws-custom-code.php'] );
|
1504 |
} else {
|
1505 |
unset( $bstwbsftwppdtplgns_options['custom_code']['bws-custom-code.php'] );
|
1510 |
}
|
1511 |
} elseif ( $is_multisite && ! empty( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ]['bws-custom-code.php'] ) ) {
|
1512 |
if ( file_exists( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ]['bws-custom-code.php'] ) ) {
|
1513 |
+
if ( ! defined( 'BWS_GLOBAL' ) )
|
1514 |
+
define( 'BWS_GLOBAL', true );
|
1515 |
require_once( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ]['bws-custom-code.php'] );
|
1516 |
} else {
|
1517 |
unset( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ]['bws-custom-code.php'] );
|
bws_menu/bws_menu.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
* Function for displaying BestWebSoft menu
|
4 |
-
* Version: 1.9.
|
5 |
*/
|
6 |
|
7 |
if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
|
@@ -113,11 +113,11 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
113 |
if ( "wrong_license_key" == $value->package ) {
|
114 |
$error = __( "Wrong license key", 'bestwebsoft' );
|
115 |
} elseif ( "wrong_domain" == $value->package ) {
|
116 |
-
$error = __( 'This license key is bind to another website. Change it via personal Client Area.', 'bestwebsoft' ) . '<a target="_blank" href="http://bestwebsoft.com/wp-admin/admin.php?page=
|
117 |
} elseif ( "you_are_banned" == $value->package ) {
|
118 |
$error = __( "Unfortunately, you have exceeded the number of available tries per day.", 'bestwebsoft' );
|
119 |
} elseif ( "time_out" == $value->package ) {
|
120 |
-
$error = __( "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your", 'bestwebsoft' ) . ' <a target="_blank" href="http://bestwebsoft.com/wp-admin/admin.php?page=
|
121 |
} elseif ( "duplicate_domen_for_trial" == $value->package ) {
|
122 |
$error = __( "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once.", 'bestwebsoft' );
|
123 |
} elseif ( is_array( $value->package ) && ! empty( $value->package ) ) {
|
@@ -292,34 +292,34 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
292 |
<?php if ( 'bws_panel' == $_GET['page'] && ! isset( $_POST['bws_plugin_action_submit'] ) ) { ?>
|
293 |
<div class="bws-membership-wrap">
|
294 |
<div class="bws-membership-backround"></div>
|
295 |
-
<div class="bws-membership">
|
296 |
-
<div class="bws-membership-title"><?php printf( __( 'Get Access to %s+ Premium Plugins', 'bestwebsoft' ), '30' ); ?></div>
|
297 |
-
<
|
298 |
-
|
299 |
<?php if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) &&
|
300 |
'5' < $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] &&
|
301 |
$bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - ( 24 * 60 * 60 ) ) ) { ?>
|
302 |
-
<div>
|
303 |
<input disabled="disabled" type="text" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
|
304 |
-
<
|
305 |
</div>
|
306 |
-
<
|
307 |
<?php } else { ?>
|
308 |
-
<div>
|
309 |
-
<input type="text" placeholder="<?php _e( 'Enter your license key', 'bestwebsoft' ); ?>" maxlength="100" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
|
310 |
-
<
|
311 |
-
<input type="hidden" name="bws_license_submit" value="submit" />
|
312 |
-
<?php if ( empty( $plugins_array ) ) { ?>
|
313 |
-
<input type="submit" class="bws-button" value="<?php _e( 'Activate Membership', 'bestwebsoft' ); ?>" />
|
314 |
-
<?php } else { ?>
|
315 |
-
<input type="submit" class="bws-button" value="<?php _e( 'Check license key', 'bestwebsoft' ); ?>" />
|
316 |
-
<?php } ?>
|
317 |
-
<?php wp_nonce_field( plugin_basename(__FILE__), 'bws_license_nonce_name' ); ?>
|
318 |
</div>
|
319 |
-
<
|
320 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
321 |
</form>
|
322 |
-
<div class="
|
323 |
</div>
|
324 |
</div>
|
325 |
<?php } ?>
|
@@ -490,6 +490,8 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
490 |
if ( ! empty( $value_plugin['expired'] ) || ! empty( $value_plugin['update_availible'] ) )
|
491 |
echo ' class="bws-update-available"';
|
492 |
echo '>v ' . $all_plugins[ $key_plugin ]['Version'] . '</span>';
|
|
|
|
|
493 |
}
|
494 |
|
495 |
if ( ! empty( $value_plugin['expired'] ) ) {
|
@@ -598,8 +600,8 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
598 |
</div>
|
599 |
<?php }
|
600 |
} else { ?>
|
601 |
-
<div class="theme-browser">
|
602 |
-
<div class="themes">
|
603 |
<?php foreach ( $themes as $key => $theme ) {
|
604 |
$installed_theme = wp_get_theme( $theme->slug ); ?>
|
605 |
<div class="theme" tabindex="0">
|
@@ -611,9 +613,13 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
611 |
<div class="theme-actions">
|
612 |
<a class="button button-secondary preview install-theme-preview" href="<?php echo $theme->href; ?>" target="_blank"><?php esc_html_e( 'Learn More', 'bestwebsoft' ); ?></a>
|
613 |
</div>
|
614 |
-
<?php if ( $installed_theme->exists() ) {
|
615 |
-
|
616 |
-
|
|
|
|
|
|
|
|
|
617 |
</div>
|
618 |
<?php } ?>
|
619 |
<br class="clear" />
|
1 |
<?php
|
2 |
/*
|
3 |
* Function for displaying BestWebSoft menu
|
4 |
+
* Version: 1.9.2
|
5 |
*/
|
6 |
|
7 |
if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
|
113 |
if ( "wrong_license_key" == $value->package ) {
|
114 |
$error = __( "Wrong license key", 'bestwebsoft' );
|
115 |
} elseif ( "wrong_domain" == $value->package ) {
|
116 |
+
$error = __( 'This license key is bind to another website. Change it via personal Client Area.', 'bestwebsoft' ) . '<a target="_blank" href="http://bestwebsoft.com/wp-admin/admin.php?page=client-area">' . __( 'Log in', 'bestwebsoft' ) . '</a>';
|
117 |
} elseif ( "you_are_banned" == $value->package ) {
|
118 |
$error = __( "Unfortunately, you have exceeded the number of available tries per day.", 'bestwebsoft' );
|
119 |
} elseif ( "time_out" == $value->package ) {
|
120 |
+
$error = __( "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your", 'bestwebsoft' ) . ' <a target="_blank" href="http://bestwebsoft.com/wp-admin/admin.php?page=client-area">Client Area</a>';
|
121 |
} elseif ( "duplicate_domen_for_trial" == $value->package ) {
|
122 |
$error = __( "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once.", 'bestwebsoft' );
|
123 |
} elseif ( is_array( $value->package ) && ! empty( $value->package ) ) {
|
292 |
<?php if ( 'bws_panel' == $_GET['page'] && ! isset( $_POST['bws_plugin_action_submit'] ) ) { ?>
|
293 |
<div class="bws-membership-wrap">
|
294 |
<div class="bws-membership-backround"></div>
|
295 |
+
<div class="bws-membership">
|
296 |
+
<div class="bws-membership-title"><?php printf( __( 'Get Access to %s+ Premium Plugins', 'bestwebsoft' ), '30' ); ?></div>
|
297 |
+
<form class="bws-membership-form" method="post" action="">
|
298 |
+
<span class="bws-membership-link"><a target="_blank" href="http://bestwebsoft.com/membership/"><?php _e( 'Subscribe to Pro Membership', 'bestwebsoft' ); ?></a> <?php _e( 'or', 'bestwebsoft' ); ?></span>
|
299 |
<?php if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) &&
|
300 |
'5' < $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] &&
|
301 |
$bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - ( 24 * 60 * 60 ) ) ) { ?>
|
302 |
+
<div class="bws_form_input_wrap">
|
303 |
<input disabled="disabled" type="text" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
|
304 |
+
<div class="bws_error"><?php _e( "Unfortunately, you have exceeded the number of available tries per day.", 'bestwebsoft' ); ?></div>
|
305 |
</div>
|
306 |
+
<input disabled="disabled" type="submit" class="bws-button" value="<?php _e( 'Check license key', 'bestwebsoft' ); ?>" />
|
307 |
<?php } else { ?>
|
308 |
+
<div class="bws_form_input_wrap">
|
309 |
+
<input <?php if ( "" != $error ) echo "class=\"bws_input_error\""; ?> type="text" placeholder="<?php _e( 'Enter your license key', 'bestwebsoft' ); ?>" maxlength="100" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
|
310 |
+
<div class="bws_error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><?php echo $error; ?></div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
311 |
</div>
|
312 |
+
<input type="hidden" name="bws_license_plugin" value="<?php echo $bws_license_plugin; ?>" />
|
313 |
+
<input type="hidden" name="bws_license_submit" value="submit" />
|
314 |
+
<?php if ( empty( $plugins_array ) ) { ?>
|
315 |
+
<input type="submit" class="bws-button" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
|
316 |
+
<?php } else { ?>
|
317 |
+
<input type="submit" class="bws-button" value="<?php _e( 'Check license key', 'bestwebsoft' ); ?>" />
|
318 |
+
<?php } ?>
|
319 |
+
<?php wp_nonce_field( plugin_basename(__FILE__), 'bws_license_nonce_name' ); ?>
|
320 |
+
<?php } ?>
|
321 |
</form>
|
322 |
+
<div class="clear"></div>
|
323 |
</div>
|
324 |
</div>
|
325 |
<?php } ?>
|
490 |
if ( ! empty( $value_plugin['expired'] ) || ! empty( $value_plugin['update_availible'] ) )
|
491 |
echo ' class="bws-update-available"';
|
492 |
echo '>v ' . $all_plugins[ $key_plugin ]['Version'] . '</span>';
|
493 |
+
} else {
|
494 |
+
echo '<span>' . __( 'Not installed', 'bestwebsoft' ) . '</span>';
|
495 |
}
|
496 |
|
497 |
if ( ! empty( $value_plugin['expired'] ) ) {
|
600 |
</div>
|
601 |
<?php }
|
602 |
} else { ?>
|
603 |
+
<div class="theme-browser content-filterable rendered">
|
604 |
+
<div class="themes wp-clearfix">
|
605 |
<?php foreach ( $themes as $key => $theme ) {
|
606 |
$installed_theme = wp_get_theme( $theme->slug ); ?>
|
607 |
<div class="theme" tabindex="0">
|
613 |
<div class="theme-actions">
|
614 |
<a class="button button-secondary preview install-theme-preview" href="<?php echo $theme->href; ?>" target="_blank"><?php esc_html_e( 'Learn More', 'bestwebsoft' ); ?></a>
|
615 |
</div>
|
616 |
+
<?php if ( $installed_theme->exists() ) {
|
617 |
+
if ( $wp_version < '4.6' ) { ?>
|
618 |
+
<div class="theme-installed"><?php _e( 'Already Installed', 'bestwebsoft' ); ?></div>
|
619 |
+
<?php } else { ?>
|
620 |
+
<div class="notice notice-success notice-alt inline"><p><?php _e( 'Installed', 'bestwebsoft' ); ?></p></div>
|
621 |
+
<?php }
|
622 |
+
} ?>
|
623 |
</div>
|
624 |
<?php } ?>
|
625 |
<br class="clear" />
|
bws_menu/css/general_style.css
CHANGED
@@ -1,9 +1,3 @@
|
|
1 |
-
#adminmenu #toplevel_page_bws_panel div.wp-menu-image img,
|
2 |
-
.admin-color-classic #adminmenu #toplevel_page_bws_panel div.wp-menu-image img,
|
3 |
-
#adminmenu #toplevel_page_bws_panel:hover div.wp-menu-image img,
|
4 |
-
#adminmenu #toplevel_page_bws_panel.wp-has-current-submenu div.wp-menu-image img {
|
5 |
-
width: 18px;
|
6 |
-
}
|
7 |
#adminmenu #toplevel_page_bws_panel .wp-submenu li:nth-child(4) a {
|
8 |
border-bottom: 1px solid #444;
|
9 |
padding-bottom: 12px;
|
@@ -502,4 +496,11 @@ span.bws_code {
|
|
502 |
#bws_shortcode_content .title,
|
503 |
#bws_shortcode_content .checkbox-title {
|
504 |
white-space: normal;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
505 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#adminmenu #toplevel_page_bws_panel .wp-submenu li:nth-child(4) a {
|
2 |
border-bottom: 1px solid #444;
|
3 |
padding-bottom: 12px;
|
496 |
#bws_shortcode_content .title,
|
497 |
#bws_shortcode_content .checkbox-title {
|
498 |
white-space: normal;
|
499 |
+
}
|
500 |
+
/* styles for notices (license has expired, Illegal use notification ond other) on the /plugins.php page */
|
501 |
+
.bws-plugin-update-tr .update-message {
|
502 |
+
margin-top: 0 !important;
|
503 |
+
}
|
504 |
+
.bws-plugin-update-tr .update-message :before {
|
505 |
+
content: '';
|
506 |
}
|
bws_menu/css/style.css
CHANGED
@@ -2,14 +2,12 @@ a.toplevel_page_bws_panel.wp-has-current-submenu:after {
|
|
2 |
display: none;
|
3 |
}
|
4 |
.toplevel_page_bws_panel #wpcontent,
|
5 |
-
.bws-panel_page_bws_plugins #wpcontent,
|
6 |
.bws-panel_page_bws_themes #wpcontent,
|
7 |
.bws-panel_page_bws_system_status #wpcontent {
|
8 |
padding-left: 0;
|
9 |
padding-right: 0;
|
10 |
}
|
11 |
.toplevel_page_bws_panel .update-nag,
|
12 |
-
.bws-panel_page_bws_plugins .update-nag,
|
13 |
.bws-panel_page_bws_themes .update-nag,
|
14 |
.bws-panel_page_bws_system_status .update-nag {
|
15 |
display: none;
|
@@ -112,6 +110,7 @@ a.toplevel_page_bws_panel.wp-has-current-submenu:after {
|
|
112 |
background: url("../images/membership-background.jpg") no-repeat center #fff;
|
113 |
overflow: hidden;
|
114 |
position: relative;
|
|
|
115 |
}
|
116 |
.bws-membership-backround {
|
117 |
background-color: #000;
|
@@ -123,30 +122,30 @@ a.toplevel_page_bws_panel.wp-has-current-submenu:after {
|
|
123 |
}
|
124 |
.bws-membership {
|
125 |
color: #fff;
|
126 |
-
padding:
|
127 |
-
text-align: center;
|
128 |
z-index: 6;
|
129 |
position: relative;
|
130 |
}
|
131 |
-
.bws-membership * {
|
132 |
-
text-align: center;
|
133 |
-
}
|
134 |
.bws-membership-title {
|
135 |
-
font-size:
|
|
|
136 |
font-weight: 600;
|
137 |
-
|
138 |
}
|
139 |
-
.bws-membership-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
|
|
|
|
|
|
144 |
}
|
145 |
.bws-membership input[type="text"] {
|
146 |
border-radius: 3px;
|
147 |
border: none;
|
148 |
-
font-size:
|
149 |
-
padding: 8px
|
150 |
text-align: left;
|
151 |
}
|
152 |
.bws-membership .bws-button {
|
@@ -155,35 +154,39 @@ a.toplevel_page_bws_panel.wp-has-current-submenu:after {
|
|
155 |
text-align: center;
|
156 |
display: inline-block;
|
157 |
text-decoration: none;
|
158 |
-
font-size:
|
159 |
-
|
160 |
-
padding: 8px 30px;
|
161 |
border-radius: 3px;
|
162 |
border: none;
|
163 |
cursor: pointer;
|
|
|
164 |
}
|
165 |
.bws-membership-link {
|
166 |
-
font-size:
|
167 |
color: #999;
|
168 |
-
|
169 |
-
|
170 |
}
|
171 |
.bws-membership-link a {
|
172 |
color: #fff;
|
173 |
text-decoration: none;
|
174 |
border-bottom: 1px solid #999;
|
|
|
175 |
}
|
176 |
.bws-membership-link a:hover {
|
177 |
border-bottom: none;
|
178 |
}
|
179 |
.bws_error {
|
180 |
color: #c5412b;
|
181 |
-
margin-top:
|
182 |
}
|
183 |
.bws_error a {
|
184 |
color: #fff;
|
185 |
text-decoration: none;
|
186 |
}
|
|
|
|
|
|
|
187 |
/*
|
188 |
* themes
|
189 |
*/
|
@@ -221,6 +224,9 @@ a.toplevel_page_bws_panel.wp-has-current-submenu:after {
|
|
221 |
margin-right: 10px;
|
222 |
max-width: 400px;
|
223 |
}
|
|
|
|
|
|
|
224 |
.bws_system_info th {
|
225 |
padding: 10px 0;
|
226 |
text-align: left;
|
@@ -419,6 +425,14 @@ a.bws_donate {
|
|
419 |
.bws-products {
|
420 |
width: 370px;
|
421 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
422 |
}
|
423 |
@media screen and (max-width: 782px) {
|
424 |
.bws-header {
|
@@ -442,12 +456,22 @@ a.bws_donate {
|
|
442 |
width: 100%;
|
443 |
padding: 17px 20px 20px;
|
444 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
445 |
.bws-membership .bws-button,
|
|
|
446 |
.bws-membership input[type="text"] {
|
447 |
width: 100%;
|
|
|
448 |
}
|
449 |
-
.bws-membership
|
450 |
-
margin-
|
451 |
}
|
452 |
.bws-filter {
|
453 |
display: none;
|
2 |
display: none;
|
3 |
}
|
4 |
.toplevel_page_bws_panel #wpcontent,
|
|
|
5 |
.bws-panel_page_bws_themes #wpcontent,
|
6 |
.bws-panel_page_bws_system_status #wpcontent {
|
7 |
padding-left: 0;
|
8 |
padding-right: 0;
|
9 |
}
|
10 |
.toplevel_page_bws_panel .update-nag,
|
|
|
11 |
.bws-panel_page_bws_themes .update-nag,
|
12 |
.bws-panel_page_bws_system_status .update-nag {
|
13 |
display: none;
|
110 |
background: url("../images/membership-background.jpg") no-repeat center #fff;
|
111 |
overflow: hidden;
|
112 |
position: relative;
|
113 |
+
margin: 20px 20px 0 20px;
|
114 |
}
|
115 |
.bws-membership-backround {
|
116 |
background-color: #000;
|
122 |
}
|
123 |
.bws-membership {
|
124 |
color: #fff;
|
125 |
+
padding: 23px 22px 23px 20px;
|
|
|
126 |
z-index: 6;
|
127 |
position: relative;
|
128 |
}
|
|
|
|
|
|
|
129 |
.bws-membership-title {
|
130 |
+
font-size: 18px;
|
131 |
+
line-height: 30px;
|
132 |
font-weight: 600;
|
133 |
+
float: left;
|
134 |
}
|
135 |
+
.bws-membership-form {
|
136 |
+
float: right;
|
137 |
+
}
|
138 |
+
.bws-membership-form * {
|
139 |
+
vertical-align: top;
|
140 |
+
}
|
141 |
+
.bws_form_input_wrap {
|
142 |
+
display: inline-block;
|
143 |
}
|
144 |
.bws-membership input[type="text"] {
|
145 |
border-radius: 3px;
|
146 |
border: none;
|
147 |
+
font-size: 13px;
|
148 |
+
padding: 8px 19px 8px 9px;
|
149 |
text-align: left;
|
150 |
}
|
151 |
.bws-membership .bws-button {
|
154 |
text-align: center;
|
155 |
display: inline-block;
|
156 |
text-decoration: none;
|
157 |
+
font-size: 13px;
|
158 |
+
padding: 8px 9px;
|
|
|
159 |
border-radius: 3px;
|
160 |
border: none;
|
161 |
cursor: pointer;
|
162 |
+
margin: 0 6px;
|
163 |
}
|
164 |
.bws-membership-link {
|
165 |
+
font-size: 15px;
|
166 |
color: #999;
|
167 |
+
padding: 0 8px;
|
168 |
+
line-height: 27px;
|
169 |
}
|
170 |
.bws-membership-link a {
|
171 |
color: #fff;
|
172 |
text-decoration: none;
|
173 |
border-bottom: 1px solid #999;
|
174 |
+
padding: 0 3px;
|
175 |
}
|
176 |
.bws-membership-link a:hover {
|
177 |
border-bottom: none;
|
178 |
}
|
179 |
.bws_error {
|
180 |
color: #c5412b;
|
181 |
+
margin-top: 1px;
|
182 |
}
|
183 |
.bws_error a {
|
184 |
color: #fff;
|
185 |
text-decoration: none;
|
186 |
}
|
187 |
+
.bws_input_error {
|
188 |
+
border: 1px solid #c5412b !important;
|
189 |
+
}
|
190 |
/*
|
191 |
* themes
|
192 |
*/
|
224 |
margin-right: 10px;
|
225 |
max-width: 400px;
|
226 |
}
|
227 |
+
.rtl .bws_system_info {
|
228 |
+
float: right;
|
229 |
+
}
|
230 |
.bws_system_info th {
|
231 |
padding: 10px 0;
|
232 |
text-align: left;
|
425 |
.bws-products {
|
426 |
width: 370px;
|
427 |
}
|
428 |
+
.bws-membership-title,
|
429 |
+
.bws-membership-form {
|
430 |
+
float: none;
|
431 |
+
text-align: center;
|
432 |
+
}
|
433 |
+
.bws-membership-title {
|
434 |
+
margin-bottom: 10px;
|
435 |
+
}
|
436 |
}
|
437 |
@media screen and (max-width: 782px) {
|
438 |
.bws-header {
|
456 |
width: 100%;
|
457 |
padding: 17px 20px 20px;
|
458 |
}
|
459 |
+
.bws-membership * {
|
460 |
+
text-align: center;
|
461 |
+
}
|
462 |
+
.bws-membership-title,
|
463 |
+
.bws-membership-link {
|
464 |
+
margin-bottom: 10px;
|
465 |
+
display: block;
|
466 |
+
}
|
467 |
.bws-membership .bws-button,
|
468 |
+
.bws_form_input_wrap,
|
469 |
.bws-membership input[type="text"] {
|
470 |
width: 100%;
|
471 |
+
margin: 0;
|
472 |
}
|
473 |
+
.bws-membership .bws-button {
|
474 |
+
margin-top: 8px;
|
475 |
}
|
476 |
.bws-filter {
|
477 |
display: none;
|
bws_menu/icons/themes/renty.png
ADDED
Binary file
|
bws_menu/images/logo-white-min.png
ADDED
Binary file
|
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: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
|
8 |
"Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
|
9 |
"Language: fr_FR\n"
|
@@ -21,7 +21,7 @@ msgstr ""
|
|
21 |
msgid "Plugins"
|
22 |
msgstr "Extensions"
|
23 |
|
24 |
-
#: bws_functions.php:39 bws_menu.php:283 bws_menu.php:
|
25 |
msgid "Themes"
|
26 |
msgstr "Thèmes"
|
27 |
|
@@ -65,12 +65,12 @@ msgstr "Merci d'avoir installé"
|
|
65 |
msgid "Let's get started"
|
66 |
msgstr "Démarrer"
|
67 |
|
68 |
-
#: bws_functions.php:120 bws_functions.php:153 bws_menu.php:
|
69 |
-
#: bws_menu.php:
|
70 |
msgid "Settings"
|
71 |
msgstr "Réglages"
|
72 |
|
73 |
-
#: bws_functions.php:122 bws_functions.php:479
|
74 |
msgid "or"
|
75 |
msgstr "ou"
|
76 |
|
@@ -79,7 +79,7 @@ msgid "Add New"
|
|
79 |
msgstr "Ajouter"
|
80 |
|
81 |
#: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
|
82 |
-
#: bws_functions.php:
|
83 |
msgid "Close notice"
|
84 |
msgstr "Effacer l'avertissement"
|
85 |
|
@@ -113,7 +113,7 @@ msgstr ""
|
|
113 |
"Étend les fonctionnalités classiques de l'extension avec des nouvelles "
|
114 |
"options."
|
115 |
|
116 |
-
#: bws_functions.php:222 bws_functions.php:
|
117 |
msgid "Learn More"
|
118 |
msgstr "En savoir plus"
|
119 |
|
@@ -275,8 +275,8 @@ msgid "Start Your Free %s-Day Trial Now"
|
|
275 |
msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
|
276 |
|
277 |
#: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
|
278 |
-
#: bws_functions.php:532 bws_functions.php:
|
279 |
-
#: bws_menu.php:
|
280 |
msgid "Activate"
|
281 |
msgstr "Activé"
|
282 |
|
@@ -293,7 +293,7 @@ msgid "After that you can activate it by entering your license key."
|
|
293 |
msgstr ""
|
294 |
" Après vous pouvez activer cette extension en donnant votre clé de licence."
|
295 |
|
296 |
-
#: bws_functions.php:526 bws_menu.php:118 bws_menu.php:
|
297 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
298 |
msgstr ""
|
299 |
"Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
|
@@ -372,15 +372,15 @@ msgstr ""
|
|
372 |
"l'achat de l'extension). Si nécessaire, utilisez la fonction de demande de "
|
373 |
"mot de passe perdu."
|
374 |
|
375 |
-
#: bws_functions.php:651 bws_menu.php:
|
376 |
msgid "Check license key"
|
377 |
msgstr "Vérifier la clé de licence"
|
378 |
|
379 |
-
#: bws_functions.php:
|
380 |
msgid "WARNING: Illegal use notification"
|
381 |
msgstr "AVERTISSEMENT : Notification d'utilisation abusive"
|
382 |
|
383 |
-
#: bws_functions.php:
|
384 |
msgid ""
|
385 |
"You can use one license of the Pro plugin for one domain only. Please check "
|
386 |
"and edit your license or domain if necessary using you personal Client Area. "
|
@@ -393,7 +393,7 @@ msgstr ""
|
|
393 |
"de résoudre ce problème dans les 24 heures, sinon l'extension sera rendue "
|
394 |
"inactive."
|
395 |
|
396 |
-
#: bws_functions.php:
|
397 |
msgid ""
|
398 |
"Notice: Your Pro Trial license has expired. To continue using the plugin you "
|
399 |
"should buy a Pro license"
|
@@ -401,7 +401,7 @@ msgstr ""
|
|
401 |
"Votre licence d'évaluation est terminée. Pour continuer à disposer du "
|
402 |
"support rapide et des mises à jour de l'extension vous devez la renouveler."
|
403 |
|
404 |
-
#: bws_functions.php:
|
405 |
msgid ""
|
406 |
"Your license has expired. To continue getting top-priority support and "
|
407 |
"plugin updates you should extend it."
|
@@ -409,41 +409,41 @@ msgstr ""
|
|
409 |
"Votre licence est terminée. Pour continuer à disposer du support rapide et "
|
410 |
"des mises à jour de l'extension vous devez la renouveller."
|
411 |
|
412 |
-
#: bws_functions.php:
|
413 |
msgid "Learn more"
|
414 |
msgstr "En savoir plus"
|
415 |
|
416 |
-
#: bws_functions.php:
|
417 |
#, php-format
|
418 |
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
419 |
msgstr ""
|
420 |
"Avertissement : vous utilisez la version d'évaluation de l'extension %s."
|
421 |
|
422 |
-
#: bws_functions.php:
|
423 |
msgid "Notice: You are using the Pro Trial license of plugin."
|
424 |
msgstr "Avertissement : vous utilisez la version d'évaluation de l'extension."
|
425 |
|
426 |
-
#: bws_functions.php:
|
427 |
msgid "The Pro Trial license will expire on"
|
428 |
msgstr "La licence PRO d'évaluation expirera le"
|
429 |
|
430 |
-
#: bws_functions.php:
|
431 |
msgid "You license for"
|
432 |
msgstr "Votre licence pour"
|
433 |
|
434 |
-
#: bws_functions.php:
|
435 |
msgid "expires on"
|
436 |
msgstr "se termine le"
|
437 |
|
438 |
-
#: bws_functions.php:
|
439 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
440 |
msgstr "et vous ne disposerez plus du support rapide et des mises à jour."
|
441 |
|
442 |
-
#: bws_functions.php:
|
443 |
msgid "Thank you for choosing"
|
444 |
msgstr "Merci d'avoir choisi"
|
445 |
|
446 |
-
#: bws_functions.php:
|
447 |
msgid ""
|
448 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
449 |
"we'd love to hear about it!"
|
@@ -451,23 +451,23 @@ msgstr ""
|
|
451 |
"Si vous avez une fonctionnalité, une suggestion ou une idée que vous "
|
452 |
"souhaitez pour cette extension, nous serons ravis d'en parler avec vous !"
|
453 |
|
454 |
-
#: bws_functions.php:
|
455 |
msgid "Suggest a Feature"
|
456 |
msgstr "Proposer une fonctionnalité"
|
457 |
|
458 |
-
#: bws_functions.php:
|
459 |
msgid "Notice"
|
460 |
msgstr "Avertissement"
|
461 |
|
462 |
-
#: bws_functions.php:
|
463 |
msgid "The plugin's settings have been changed."
|
464 |
msgstr "Les paramètres de l'extension ont été modifiés."
|
465 |
|
466 |
-
#: bws_functions.php:
|
467 |
msgid "Save Changes"
|
468 |
msgstr "Sauvegarder les modifications"
|
469 |
|
470 |
-
#: bws_functions.php:
|
471 |
msgid ""
|
472 |
"You can always look at premium options by clicking on the \"Show Pro features"
|
473 |
"\" in the \"Go PRO\" tab"
|
@@ -475,124 +475,124 @@ msgstr ""
|
|
475 |
"Vous pouvez toujours consulter les options premium en cliquant sur le lien "
|
476 |
"\"Voir les fonctionnalités de la version PRO\" dans l'onglet Passer PRO"
|
477 |
|
478 |
-
#: bws_functions.php:
|
479 |
msgid "Add shortcode"
|
480 |
msgstr "Ajouter le code court"
|
481 |
|
482 |
-
#: bws_functions.php:
|
483 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
484 |
msgstr "Ajouter le code court des extensions BestWebSoft avec ce bouton."
|
485 |
|
486 |
-
#: bws_functions.php:
|
487 |
msgid "Close"
|
488 |
msgstr "Fermer"
|
489 |
|
490 |
-
#: bws_functions.php:
|
491 |
msgid "Restore all plugin settings to defaults"
|
492 |
msgstr "Remettre les valeurs par défaut des paramètres de l'extension"
|
493 |
|
494 |
-
#: bws_functions.php:
|
495 |
msgid "Restore settings"
|
496 |
msgstr "Remettre les paramètres"
|
497 |
|
498 |
-
#: bws_functions.php:
|
499 |
msgid "Are you sure you want to restore all settings by default?"
|
500 |
msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
|
501 |
|
502 |
-
#: bws_functions.php:
|
503 |
msgid "Yes, restore all settings"
|
504 |
msgstr "Oui, remettre les valeurs par défaut"
|
505 |
|
506 |
-
#: bws_functions.php:
|
507 |
msgid "No, go back to the settings page"
|
508 |
msgstr "Non, retourner à la page des paramètres"
|
509 |
|
510 |
-
#: bws_functions.php:
|
511 |
msgid "Plugin"
|
512 |
msgstr "Extension"
|
513 |
|
514 |
-
#: bws_functions.php:
|
515 |
msgid "Shortcode settings"
|
516 |
msgstr "Paramètres du code court"
|
517 |
|
518 |
-
#: bws_functions.php:
|
519 |
msgid "The shortcode will be inserted"
|
520 |
msgstr "Le code court sera inséré"
|
521 |
|
522 |
-
#: bws_functions.php:
|
523 |
msgid "Insert"
|
524 |
msgstr "Insérer"
|
525 |
|
526 |
-
#: bws_functions.php:
|
527 |
msgid "Visit Help Center"
|
528 |
msgstr "Visiter le site du support"
|
529 |
|
530 |
-
#: bws_functions.php:
|
531 |
msgid "FAQ"
|
532 |
msgstr "FAQ"
|
533 |
|
534 |
-
#: bws_functions.php:
|
535 |
msgid "For more information:"
|
536 |
msgstr "Pour plus d'informations :"
|
537 |
|
538 |
-
#: bws_functions.php:
|
539 |
msgid "Documentation"
|
540 |
msgstr "Documentation"
|
541 |
|
542 |
-
#: bws_functions.php:
|
543 |
msgid "Video Instructions"
|
544 |
msgstr "Vidéo explicative"
|
545 |
|
546 |
-
#: bws_functions.php:
|
547 |
msgid "Submit a Request"
|
548 |
msgstr "Soumettre une requête"
|
549 |
|
550 |
-
#: bws_functions.php:
|
551 |
msgid "You do not have sufficient permissions to edit plugins for this site."
|
552 |
msgstr ""
|
553 |
"Vous n'avez pas assez de droits pour modifier l'extension pour ce site."
|
554 |
|
555 |
-
#: bws_functions.php:
|
556 |
#, php-format
|
557 |
msgid "File %s edited successfully."
|
558 |
msgstr "Le fichier %s a été modifié avec succès."
|
559 |
|
560 |
-
#: bws_functions.php:
|
561 |
msgid "Not enough permissions to create or update the file"
|
562 |
msgstr "Pas assez de droits pour créer ou modifier le fichier"
|
563 |
|
564 |
-
#: bws_functions.php:
|
565 |
msgid "Not enough permissions to create the file"
|
566 |
msgstr "Pas assez de droits pour créer le fichier"
|
567 |
|
568 |
-
#: bws_functions.php:
|
569 |
msgid "These styles will be added to the header on all pages of your site."
|
570 |
msgstr ""
|
571 |
"Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
|
572 |
|
573 |
-
#: bws_functions.php:
|
574 |
-
#, php-format
|
575 |
msgid ""
|
576 |
-
"
|
577 |
"end only."
|
578 |
msgstr ""
|
579 |
"Ce code PHP sera rattaché à l'action %s et sera affiché uniquement sur la "
|
580 |
"partie publique."
|
581 |
|
582 |
-
#: bws_functions.php:
|
583 |
msgid "Editing"
|
584 |
msgstr "Modifier"
|
585 |
|
586 |
-
#: bws_functions.php:
|
587 |
msgid "Browsing"
|
588 |
msgstr "Parcourir"
|
589 |
|
590 |
-
#: bws_functions.php:
|
591 |
#, php-format
|
592 |
msgid "Learn more about %s"
|
593 |
msgstr "En savoir plus sur %s"
|
594 |
|
595 |
-
#: bws_functions.php:
|
596 |
#, php-format
|
597 |
msgid ""
|
598 |
"You need to make this files writable before you can save your changes. See "
|
@@ -752,7 +752,7 @@ msgstr "Merci de nous avoir contacté."
|
|
752 |
msgid "Sorry, email message could not be delivered."
|
753 |
msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
|
754 |
|
755 |
-
#: bws_menu.php:286 bws_menu.php:
|
756 |
msgid "System status"
|
757 |
msgstr "Etat du système"
|
758 |
|
@@ -773,33 +773,15 @@ msgstr "Espace client"
|
|
773 |
msgid "Get Access to %s+ Premium Plugins"
|
774 |
msgstr "Accéder à plus de %s extension premiums"
|
775 |
|
776 |
-
#: bws_menu.php:
|
777 |
-
#,
|
778 |
-
msgid ""
|
779 |
-
"
|
780 |
-
"on a single website %s for only %s per month."
|
781 |
-
msgstr ""
|
782 |
-
"Rejoignez le réseau PRO de BestWebSoft, arrêtez quand vous le vouler et "
|
783 |
-
"utiliser toutes les extensions sur un seul site %s pour seulement %s par "
|
784 |
-
"mois."
|
785 |
|
786 |
#: bws_menu.php:309
|
787 |
msgid "Enter your license key"
|
788 |
msgstr "Merci de saisir votre clé de licence"
|
789 |
|
790 |
-
#: bws_menu.php:313
|
791 |
-
msgid "Activate Membership"
|
792 |
-
msgstr "Activer l'adhésion"
|
793 |
-
|
794 |
-
#: bws_menu.php:322
|
795 |
-
msgid "Don’t have valid license key yet?"
|
796 |
-
msgstr "Vous n'avez pas encore de licence valide ?"
|
797 |
-
|
798 |
-
#: bws_menu.php:322
|
799 |
-
#, fuzzy
|
800 |
-
msgid "Subscribe to Pro Membership Now"
|
801 |
-
msgstr "Souscrire une adhésion PRO"
|
802 |
-
|
803 |
#: bws_menu.php:331
|
804 |
msgid "Upload Plugin"
|
805 |
msgstr "Charger l'extension"
|
@@ -857,11 +839,11 @@ msgstr "Activer l'extension"
|
|
857 |
msgid "Return to BestWebSoft Panel"
|
858 |
msgstr "Retourner à l'administration BestWebSoft"
|
859 |
|
860 |
-
#: bws_menu.php:419 bws_menu.php:434 bws_menu.php:
|
861 |
msgid "All"
|
862 |
msgstr "Tous"
|
863 |
|
864 |
-
#: bws_menu.php:420
|
865 |
msgid "Installed"
|
866 |
msgstr "Installé"
|
867 |
|
@@ -873,73 +855,78 @@ msgstr "Non installé"
|
|
873 |
msgid "Filter results"
|
874 |
msgstr "Filtrer les résultats"
|
875 |
|
876 |
-
#: bws_menu.php:430 bws_menu.php:
|
877 |
msgid "Category"
|
878 |
msgstr "Catégorie"
|
879 |
|
880 |
-
#: bws_menu.php:
|
|
|
|
|
|
|
|
|
|
|
881 |
msgid "Renew to get updates"
|
882 |
msgstr "Se réabonner pour avoir les mises à jour"
|
883 |
|
884 |
-
#: bws_menu.php:
|
885 |
#, php-format
|
886 |
msgid "Update to v %s"
|
887 |
msgstr "Mettre à jour avec la version %s"
|
888 |
|
889 |
-
#: bws_menu.php:
|
890 |
msgid "Install Now"
|
891 |
msgstr "Installer maintenant"
|
892 |
|
893 |
-
#: bws_menu.php:
|
894 |
msgid "Upgrade to Pro"
|
895 |
msgstr "Passer à la version PRO"
|
896 |
|
897 |
-
#: bws_menu.php:
|
898 |
msgid "Donate"
|
899 |
msgstr "Don"
|
900 |
|
901 |
-
#: bws_menu.php:
|
902 |
msgid "Activate this plugin"
|
903 |
msgstr "Activer cette extension"
|
904 |
|
905 |
-
#: bws_menu.php:
|
906 |
msgid "Install this plugin"
|
907 |
msgstr "Installer cette extension"
|
908 |
|
909 |
-
#: bws_menu.php:
|
910 |
msgid "Nothing found. Try another criteria."
|
911 |
msgstr "Pas de réponse. essayer d'autres critères."
|
912 |
|
913 |
-
#: bws_menu.php:
|
914 |
#, php-format
|
915 |
msgid "By %s"
|
916 |
msgstr "Par %s"
|
917 |
|
918 |
-
#: bws_menu.php:
|
919 |
msgid "Already Installed"
|
920 |
msgstr "Déjà installé"
|
921 |
|
922 |
-
#: bws_menu.php:
|
923 |
msgid "Browse Free WordPress Themes"
|
924 |
msgstr "Parcourir les thèmes gratuits pour WordPress"
|
925 |
|
926 |
-
#: bws_menu.php:
|
927 |
msgid "Send to support"
|
928 |
msgstr "Envoyé au support"
|
929 |
|
930 |
-
#: bws_menu.php:
|
931 |
msgid "Send to custom email »"
|
932 |
msgstr "Envoyer un e-mail spécifique »"
|
933 |
|
934 |
-
#: bws_menu.php:
|
935 |
msgid "Environment"
|
936 |
msgstr "Environnent"
|
937 |
|
938 |
-
#: bws_menu.php:
|
939 |
msgid "Active Plugins"
|
940 |
msgstr "Extensions actives"
|
941 |
|
942 |
-
#: bws_menu.php:
|
943 |
msgid "Inactive Plugins"
|
944 |
msgstr "Extensions inactives"
|
945 |
|
@@ -979,6 +966,20 @@ msgstr "Utilitaires"
|
|
979 |
msgid "Other"
|
980 |
msgstr "Autre"
|
981 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
982 |
#~ msgid "My Account"
|
983 |
#~ msgstr "Mon compte"
|
984 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-08-04 15:44+0300\n"
|
6 |
+
"PO-Revision-Date: 2016-08-04 15:44+0300\n"
|
7 |
"Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
|
8 |
"Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
|
9 |
"Language: fr_FR\n"
|
21 |
msgid "Plugins"
|
22 |
msgstr "Extensions"
|
23 |
|
24 |
+
#: bws_functions.php:39 bws_menu.php:283 bws_menu.php:581
|
25 |
msgid "Themes"
|
26 |
msgstr "Thèmes"
|
27 |
|
65 |
msgid "Let's get started"
|
66 |
msgstr "Démarrer"
|
67 |
|
68 |
+
#: bws_functions.php:120 bws_functions.php:153 bws_menu.php:527
|
69 |
+
#: bws_menu.php:529
|
70 |
msgid "Settings"
|
71 |
msgstr "Réglages"
|
72 |
|
73 |
+
#: bws_functions.php:122 bws_functions.php:479 bws_menu.php:298
|
74 |
msgid "or"
|
75 |
msgstr "ou"
|
76 |
|
79 |
msgstr "Ajouter"
|
80 |
|
81 |
#: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
|
82 |
+
#: bws_functions.php:727 bws_functions.php:831
|
83 |
msgid "Close notice"
|
84 |
msgstr "Effacer l'avertissement"
|
85 |
|
113 |
"Étend les fonctionnalités classiques de l'extension avec des nouvelles "
|
114 |
"options."
|
115 |
|
116 |
+
#: bws_functions.php:222 bws_functions.php:666 bws_menu.php:597
|
117 |
msgid "Learn More"
|
118 |
msgstr "En savoir plus"
|
119 |
|
275 |
msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
|
276 |
|
277 |
#: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
|
278 |
+
#: bws_functions.php:532 bws_functions.php:1401 bws_menu.php:315
|
279 |
+
#: bws_menu.php:533 bws_menu.php:542
|
280 |
msgid "Activate"
|
281 |
msgstr "Activé"
|
282 |
|
293 |
msgstr ""
|
294 |
" Après vous pouvez activer cette extension en donnant votre clé de licence."
|
295 |
|
296 |
+
#: bws_functions.php:526 bws_menu.php:118 bws_menu.php:304
|
297 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
298 |
msgstr ""
|
299 |
"Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
|
372 |
"l'achat de l'extension). Si nécessaire, utilisez la fonction de demande de "
|
373 |
"mot de passe perdu."
|
374 |
|
375 |
+
#: bws_functions.php:651 bws_menu.php:306 bws_menu.php:317
|
376 |
msgid "Check license key"
|
377 |
msgstr "Vérifier la clé de licence"
|
378 |
|
379 |
+
#: bws_functions.php:666
|
380 |
msgid "WARNING: Illegal use notification"
|
381 |
msgstr "AVERTISSEMENT : Notification d'utilisation abusive"
|
382 |
|
383 |
+
#: bws_functions.php:666
|
384 |
msgid ""
|
385 |
"You can use one license of the Pro plugin for one domain only. Please check "
|
386 |
"and edit your license or domain if necessary using you personal Client Area. "
|
393 |
"de résoudre ce problème dans les 24 heures, sinon l'extension sera rendue "
|
394 |
"inactive."
|
395 |
|
396 |
+
#: bws_functions.php:675
|
397 |
msgid ""
|
398 |
"Notice: Your Pro Trial license has expired. To continue using the plugin you "
|
399 |
"should buy a Pro license"
|
401 |
"Votre licence d'évaluation est terminée. Pour continuer à disposer du "
|
402 |
"support rapide et des mises à jour de l'extension vous devez la renouveler."
|
403 |
|
404 |
+
#: bws_functions.php:677
|
405 |
msgid ""
|
406 |
"Your license has expired. To continue getting top-priority support and "
|
407 |
"plugin updates you should extend it."
|
409 |
"Votre licence est terminée. Pour continuer à disposer du support rapide et "
|
410 |
"des mises à jour de l'extension vous devez la renouveller."
|
411 |
|
412 |
+
#: bws_functions.php:677 bws_functions.php:731 bws_functions.php:1356
|
413 |
msgid "Learn more"
|
414 |
msgstr "En savoir plus"
|
415 |
|
416 |
+
#: bws_functions.php:688
|
417 |
#, php-format
|
418 |
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
419 |
msgstr ""
|
420 |
"Avertissement : vous utilisez la version d'évaluation de l'extension %s."
|
421 |
|
422 |
+
#: bws_functions.php:690
|
423 |
msgid "Notice: You are using the Pro Trial license of plugin."
|
424 |
msgstr "Avertissement : vous utilisez la version d'évaluation de l'extension."
|
425 |
|
426 |
+
#: bws_functions.php:693
|
427 |
msgid "The Pro Trial license will expire on"
|
428 |
msgstr "La licence PRO d'évaluation expirera le"
|
429 |
|
430 |
+
#: bws_functions.php:731
|
431 |
msgid "You license for"
|
432 |
msgstr "Votre licence pour"
|
433 |
|
434 |
+
#: bws_functions.php:731
|
435 |
msgid "expires on"
|
436 |
msgstr "se termine le"
|
437 |
|
438 |
+
#: bws_functions.php:731
|
439 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
440 |
msgstr "et vous ne disposerez plus du support rapide et des mises à jour."
|
441 |
|
442 |
+
#: bws_functions.php:826
|
443 |
msgid "Thank you for choosing"
|
444 |
msgstr "Merci d'avoir choisi"
|
445 |
|
446 |
+
#: bws_functions.php:827
|
447 |
msgid ""
|
448 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
449 |
"we'd love to hear about it!"
|
451 |
"Si vous avez une fonctionnalité, une suggestion ou une idée que vous "
|
452 |
"souhaitez pour cette extension, nous serons ravis d'en parler avec vous !"
|
453 |
|
454 |
+
#: bws_functions.php:828
|
455 |
msgid "Suggest a Feature"
|
456 |
msgstr "Proposer une fonctionnalité"
|
457 |
|
458 |
+
#: bws_functions.php:844
|
459 |
msgid "Notice"
|
460 |
msgstr "Avertissement"
|
461 |
|
462 |
+
#: bws_functions.php:844
|
463 |
msgid "The plugin's settings have been changed."
|
464 |
msgstr "Les paramètres de l'extension ont été modifiés."
|
465 |
|
466 |
+
#: bws_functions.php:845 bws_functions.php:1412
|
467 |
msgid "Save Changes"
|
468 |
msgstr "Sauvegarder les modifications"
|
469 |
|
470 |
+
#: bws_functions.php:859
|
471 |
msgid ""
|
472 |
"You can always look at premium options by clicking on the \"Show Pro features"
|
473 |
"\" in the \"Go PRO\" tab"
|
475 |
"Vous pouvez toujours consulter les options premium en cliquant sur le lien "
|
476 |
"\"Voir les fonctionnalités de la version PRO\" dans l'onglet Passer PRO"
|
477 |
|
478 |
+
#: bws_functions.php:988
|
479 |
msgid "Add shortcode"
|
480 |
msgstr "Ajouter le code court"
|
481 |
|
482 |
+
#: bws_functions.php:988
|
483 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
484 |
msgstr "Ajouter le code court des extensions BestWebSoft avec ce bouton."
|
485 |
|
486 |
+
#: bws_functions.php:1037
|
487 |
msgid "Close"
|
488 |
msgstr "Fermer"
|
489 |
|
490 |
+
#: bws_functions.php:1129
|
491 |
msgid "Restore all plugin settings to defaults"
|
492 |
msgstr "Remettre les valeurs par défaut des paramètres de l'extension"
|
493 |
|
494 |
+
#: bws_functions.php:1131
|
495 |
msgid "Restore settings"
|
496 |
msgstr "Remettre les paramètres"
|
497 |
|
498 |
+
#: bws_functions.php:1142
|
499 |
msgid "Are you sure you want to restore all settings by default?"
|
500 |
msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
|
501 |
|
502 |
+
#: bws_functions.php:1145
|
503 |
msgid "Yes, restore all settings"
|
504 |
msgstr "Oui, remettre les valeurs par défaut"
|
505 |
|
506 |
+
#: bws_functions.php:1146
|
507 |
msgid "No, go back to the settings page"
|
508 |
msgstr "Non, retourner à la page des paramètres"
|
509 |
|
510 |
+
#: bws_functions.php:1192
|
511 |
msgid "Plugin"
|
512 |
msgstr "Extension"
|
513 |
|
514 |
+
#: bws_functions.php:1201
|
515 |
msgid "Shortcode settings"
|
516 |
msgstr "Paramètres du code court"
|
517 |
|
518 |
+
#: bws_functions.php:1206
|
519 |
msgid "The shortcode will be inserted"
|
520 |
msgstr "Le code court sera inséré"
|
521 |
|
522 |
+
#: bws_functions.php:1211
|
523 |
msgid "Insert"
|
524 |
msgstr "Insérer"
|
525 |
|
526 |
+
#: bws_functions.php:1244
|
527 |
msgid "Visit Help Center"
|
528 |
msgstr "Visiter le site du support"
|
529 |
|
530 |
+
#: bws_functions.php:1249
|
531 |
msgid "FAQ"
|
532 |
msgstr "FAQ"
|
533 |
|
534 |
+
#: bws_functions.php:1255
|
535 |
msgid "For more information:"
|
536 |
msgstr "Pour plus d'informations :"
|
537 |
|
538 |
+
#: bws_functions.php:1256
|
539 |
msgid "Documentation"
|
540 |
msgstr "Documentation"
|
541 |
|
542 |
+
#: bws_functions.php:1257
|
543 |
msgid "Video Instructions"
|
544 |
msgstr "Vidéo explicative"
|
545 |
|
546 |
+
#: bws_functions.php:1258
|
547 |
msgid "Submit a Request"
|
548 |
msgstr "Soumettre une requête"
|
549 |
|
550 |
+
#: bws_functions.php:1269
|
551 |
msgid "You do not have sufficient permissions to edit plugins for this site."
|
552 |
msgstr ""
|
553 |
"Vous n'avez pas assez de droits pour modifier l'extension pour ce site."
|
554 |
|
555 |
+
#: bws_functions.php:1320 bws_functions.php:1347
|
556 |
#, php-format
|
557 |
msgid "File %s edited successfully."
|
558 |
msgstr "Le fichier %s a été modifié avec succès."
|
559 |
|
560 |
+
#: bws_functions.php:1322 bws_functions.php:1349
|
561 |
msgid "Not enough permissions to create or update the file"
|
562 |
msgstr "Pas assez de droits pour créer ou modifier le fichier"
|
563 |
|
564 |
+
#: bws_functions.php:1352
|
565 |
msgid "Not enough permissions to create the file"
|
566 |
msgstr "Pas assez de droits pour créer le fichier"
|
567 |
|
568 |
+
#: bws_functions.php:1390
|
569 |
msgid "These styles will be added to the header on all pages of your site."
|
570 |
msgstr ""
|
571 |
"Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
|
572 |
|
573 |
+
#: bws_functions.php:1392
|
574 |
+
#, fuzzy, php-format
|
575 |
msgid ""
|
576 |
+
"This PHP code will be hooked to the %s action and will be printed on front "
|
577 |
"end only."
|
578 |
msgstr ""
|
579 |
"Ce code PHP sera rattaché à l'action %s et sera affiché uniquement sur la "
|
580 |
"partie publique."
|
581 |
|
582 |
+
#: bws_functions.php:1396
|
583 |
msgid "Editing"
|
584 |
msgstr "Modifier"
|
585 |
|
586 |
+
#: bws_functions.php:1398
|
587 |
msgid "Browsing"
|
588 |
msgstr "Parcourir"
|
589 |
|
590 |
+
#: bws_functions.php:1405
|
591 |
#, php-format
|
592 |
msgid "Learn more about %s"
|
593 |
msgstr "En savoir plus sur %s"
|
594 |
|
595 |
+
#: bws_functions.php:1416
|
596 |
#, php-format
|
597 |
msgid ""
|
598 |
"You need to make this files writable before you can save your changes. See "
|
752 |
msgid "Sorry, email message could not be delivered."
|
753 |
msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
|
754 |
|
755 |
+
#: bws_menu.php:286 bws_menu.php:632
|
756 |
msgid "System status"
|
757 |
msgstr "Etat du système"
|
758 |
|
773 |
msgid "Get Access to %s+ Premium Plugins"
|
774 |
msgstr "Accéder à plus de %s extension premiums"
|
775 |
|
776 |
+
#: bws_menu.php:298
|
777 |
+
#, fuzzy
|
778 |
+
msgid "Subscribe to Pro Membership"
|
779 |
+
msgstr "Souscrire une adhésion PRO"
|
|
|
|
|
|
|
|
|
|
|
780 |
|
781 |
#: bws_menu.php:309
|
782 |
msgid "Enter your license key"
|
783 |
msgstr "Merci de saisir votre clé de licence"
|
784 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
785 |
#: bws_menu.php:331
|
786 |
msgid "Upload Plugin"
|
787 |
msgstr "Charger l'extension"
|
839 |
msgid "Return to BestWebSoft Panel"
|
840 |
msgstr "Retourner à l'administration BestWebSoft"
|
841 |
|
842 |
+
#: bws_menu.php:419 bws_menu.php:434 bws_menu.php:563
|
843 |
msgid "All"
|
844 |
msgstr "Tous"
|
845 |
|
846 |
+
#: bws_menu.php:420 bws_menu.php:620
|
847 |
msgid "Installed"
|
848 |
msgstr "Installé"
|
849 |
|
855 |
msgid "Filter results"
|
856 |
msgstr "Filtrer les résultats"
|
857 |
|
858 |
+
#: bws_menu.php:430 bws_menu.php:559
|
859 |
msgid "Category"
|
860 |
msgstr "Catégorie"
|
861 |
|
862 |
+
#: bws_menu.php:494
|
863 |
+
#, fuzzy
|
864 |
+
msgid "Not installed"
|
865 |
+
msgstr "Non installé"
|
866 |
+
|
867 |
+
#: bws_menu.php:498
|
868 |
msgid "Renew to get updates"
|
869 |
msgstr "Se réabonner pour avoir les mises à jour"
|
870 |
|
871 |
+
#: bws_menu.php:501
|
872 |
#, php-format
|
873 |
msgid "Update to v %s"
|
874 |
msgstr "Mettre à jour avec la version %s"
|
875 |
|
876 |
+
#: bws_menu.php:513 bws_menu.php:536 bws_menu.php:545
|
877 |
msgid "Install Now"
|
878 |
msgstr "Installer maintenant"
|
879 |
|
880 |
+
#: bws_menu.php:519
|
881 |
msgid "Upgrade to Pro"
|
882 |
msgstr "Passer à la version PRO"
|
883 |
|
884 |
+
#: bws_menu.php:523
|
885 |
msgid "Donate"
|
886 |
msgstr "Don"
|
887 |
|
888 |
+
#: bws_menu.php:533 bws_menu.php:542
|
889 |
msgid "Activate this plugin"
|
890 |
msgstr "Activer cette extension"
|
891 |
|
892 |
+
#: bws_menu.php:545
|
893 |
msgid "Install this plugin"
|
894 |
msgstr "Installer cette extension"
|
895 |
|
896 |
+
#: bws_menu.php:554
|
897 |
msgid "Nothing found. Try another criteria."
|
898 |
msgstr "Pas de réponse. essayer d'autres critères."
|
899 |
|
900 |
+
#: bws_menu.php:591 bws_menu.php:611
|
901 |
#, php-format
|
902 |
msgid "By %s"
|
903 |
msgstr "Par %s"
|
904 |
|
905 |
+
#: bws_menu.php:618
|
906 |
msgid "Already Installed"
|
907 |
msgstr "Déjà installé"
|
908 |
|
909 |
+
#: bws_menu.php:629
|
910 |
msgid "Browse Free WordPress Themes"
|
911 |
msgstr "Parcourir les thèmes gratuits pour WordPress"
|
912 |
|
913 |
+
#: bws_menu.php:638
|
914 |
msgid "Send to support"
|
915 |
msgstr "Envoyé au support"
|
916 |
|
917 |
+
#: bws_menu.php:645
|
918 |
msgid "Send to custom email »"
|
919 |
msgstr "Envoyer un e-mail spécifique »"
|
920 |
|
921 |
+
#: bws_menu.php:652
|
922 |
msgid "Environment"
|
923 |
msgstr "Environnent"
|
924 |
|
925 |
+
#: bws_menu.php:663
|
926 |
msgid "Active Plugins"
|
927 |
msgstr "Extensions actives"
|
928 |
|
929 |
+
#: bws_menu.php:676
|
930 |
msgid "Inactive Plugins"
|
931 |
msgstr "Extensions inactives"
|
932 |
|
966 |
msgid "Other"
|
967 |
msgstr "Autre"
|
968 |
|
969 |
+
#~ msgid "Activate Membership"
|
970 |
+
#~ msgstr "Activer l'adhésion"
|
971 |
+
|
972 |
+
#~ msgid "Don’t have valid license key yet?"
|
973 |
+
#~ msgstr "Vous n'avez pas encore de licence valide ?"
|
974 |
+
|
975 |
+
#~ msgid ""
|
976 |
+
#~ "Join BestWebSoft Pro Membership today, cancel any time and use all "
|
977 |
+
#~ "plugins on a single website %s for only %s per month."
|
978 |
+
#~ msgstr ""
|
979 |
+
#~ "Rejoignez le réseau PRO de BestWebSoft, arrêtez quand vous le vouler et "
|
980 |
+
#~ "utiliser toutes les extensions sur un seul site %s pour seulement %s par "
|
981 |
+
#~ "mois."
|
982 |
+
|
983 |
#~ msgid "My Account"
|
984 |
#~ msgstr "Mon compte"
|
985 |
|
bws_menu/languages/bestwebsoft-pl_PL.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-pl_PL.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Damian Dąbrowski <contact@codester.pl>\n"
|
9 |
"Language: pl_PL\n"
|
@@ -22,7 +22,7 @@ msgstr ""
|
|
22 |
msgid "Plugins"
|
23 |
msgstr "Wtyczki"
|
24 |
|
25 |
-
#: bws_functions.php:39 bws_menu.php:283 bws_menu.php:
|
26 |
msgid "Themes"
|
27 |
msgstr "Motywy"
|
28 |
|
@@ -67,12 +67,12 @@ msgstr "Dziękujemy za instalację"
|
|
67 |
msgid "Let's get started"
|
68 |
msgstr "Zaczynajmny"
|
69 |
|
70 |
-
#: bws_functions.php:120 bws_functions.php:153 bws_menu.php:
|
71 |
-
#: bws_menu.php:
|
72 |
msgid "Settings"
|
73 |
msgstr "Ustawienia"
|
74 |
|
75 |
-
#: bws_functions.php:122 bws_functions.php:479
|
76 |
msgid "or"
|
77 |
msgstr "lub"
|
78 |
|
@@ -81,7 +81,7 @@ msgid "Add New"
|
|
81 |
msgstr "Dodaj nowy"
|
82 |
|
83 |
#: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
|
84 |
-
#: bws_functions.php:
|
85 |
msgid "Close notice"
|
86 |
msgstr "Zamknij powiadomienie"
|
87 |
|
@@ -116,7 +116,7 @@ msgstr "wersji!"
|
|
116 |
msgid "Extend standard plugin functionality with new great options."
|
117 |
msgstr "Rozszerz podstawowe funkcje wtyczki o nowe wspaniałe opcje."
|
118 |
|
119 |
-
#: bws_functions.php:222 bws_functions.php:
|
120 |
msgid "Learn More"
|
121 |
msgstr "Dowiedz się więcej"
|
122 |
|
@@ -271,8 +271,8 @@ msgid "Start Your Free %s-Day Trial Now"
|
|
271 |
msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
|
272 |
|
273 |
#: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
|
274 |
-
#: bws_functions.php:532 bws_functions.php:
|
275 |
-
#: bws_menu.php:
|
276 |
msgid "Activate"
|
277 |
msgstr "Aktywuj"
|
278 |
|
@@ -288,7 +288,7 @@ msgstr ""
|
|
288 |
msgid "After that you can activate it by entering your license key."
|
289 |
msgstr "Po wszystkim możesz aktywować wtyczkę poprzez podanie klucza licencji."
|
290 |
|
291 |
-
#: bws_functions.php:526 bws_menu.php:118 bws_menu.php:
|
292 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
293 |
msgstr "Niestety, przekroczono dzienną liczbę dostępnych prób."
|
294 |
|
@@ -360,15 +360,15 @@ msgstr ""
|
|
360 |
"(login to adres email podany przy zakupie). Jeśli to koniczne użyj opcji "
|
361 |
"\"Zgubiłeś swoje hasło?\"."
|
362 |
|
363 |
-
#: bws_functions.php:651 bws_menu.php:
|
364 |
msgid "Check license key"
|
365 |
msgstr "Sprawdź klucz licencji"
|
366 |
|
367 |
-
#: bws_functions.php:
|
368 |
msgid "WARNING: Illegal use notification"
|
369 |
msgstr "UWAGA: Odnotowano nielegalne użycie"
|
370 |
|
371 |
-
#: bws_functions.php:
|
372 |
msgid ""
|
373 |
"You can use one license of the Pro plugin for one domain only. Please check "
|
374 |
"and edit your license or domain if necessary using you personal Client Area. "
|
@@ -380,7 +380,7 @@ msgstr ""
|
|
380 |
"Panel Klienta. Zalecamy rozwiązanie tego problemu w przeciągu 24 godzin, w "
|
381 |
"przeciwnym wypadku wersja PRO zostanie zablokowana."
|
382 |
|
383 |
-
#: bws_functions.php:
|
384 |
msgid ""
|
385 |
"Notice: Your Pro Trial license has expired. To continue using the plugin you "
|
386 |
"should buy a Pro license"
|
@@ -388,7 +388,7 @@ msgstr ""
|
|
388 |
"Uwaga: Testowa wersja PRO niestety wygasła. Aby kontynuować korzystanie z "
|
389 |
"naszej wtyczki powinieneś zakupić klucz licencji."
|
390 |
|
391 |
-
#: bws_functions.php:
|
392 |
msgid ""
|
393 |
"Your license has expired. To continue getting top-priority support and "
|
394 |
"plugin updates you should extend it."
|
@@ -396,65 +396,65 @@ msgstr ""
|
|
396 |
"Twoja licencja wygasła. Aby podtrzymać szybki dostęp do pomocy i "
|
397 |
"aktualizacji powinieneś przedłużyć licencję."
|
398 |
|
399 |
-
#: bws_functions.php:
|
400 |
msgid "Learn more"
|
401 |
msgstr "Dowiedz się więcej"
|
402 |
|
403 |
-
#: bws_functions.php:
|
404 |
#, php-format
|
405 |
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
406 |
msgstr "Uwaga: Wykorzystujesz próbną licencję wersji PRO dla %s."
|
407 |
|
408 |
-
#: bws_functions.php:
|
409 |
msgid "Notice: You are using the Pro Trial license of plugin."
|
410 |
msgstr "Uwaga: Wykorzystywana jest próbna licencja wtyczki."
|
411 |
|
412 |
-
#: bws_functions.php:
|
413 |
msgid "The Pro Trial license will expire on"
|
414 |
msgstr "Licencja próbna wygaśnie"
|
415 |
|
416 |
-
#: bws_functions.php:
|
417 |
msgid "You license for"
|
418 |
msgstr "Twoja licencja na"
|
419 |
|
420 |
-
#: bws_functions.php:
|
421 |
msgid "expires on"
|
422 |
msgstr "wygasa"
|
423 |
|
424 |
-
#: bws_functions.php:
|
425 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
426 |
msgstr ""
|
427 |
"zostaniesz wówczas pozbawiony SZYBKIEGO DOSTĘDO DO SUPPORTU oraz "
|
428 |
"AKTUALIZACJI."
|
429 |
|
430 |
-
#: bws_functions.php:
|
431 |
#, fuzzy
|
432 |
msgid "Thank you for choosing"
|
433 |
msgstr "Dziękujemy za instalację"
|
434 |
|
435 |
-
#: bws_functions.php:
|
436 |
msgid ""
|
437 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
438 |
"we'd love to hear about it!"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: bws_functions.php:
|
442 |
msgid "Suggest a Feature"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: bws_functions.php:
|
446 |
msgid "Notice"
|
447 |
msgstr "Uwaga"
|
448 |
|
449 |
-
#: bws_functions.php:
|
450 |
msgid "The plugin's settings have been changed."
|
451 |
msgstr "Ustawienia wtyczki zostały zmienione."
|
452 |
|
453 |
-
#: bws_functions.php:
|
454 |
msgid "Save Changes"
|
455 |
msgstr "Zapisz zmiany"
|
456 |
|
457 |
-
#: bws_functions.php:
|
458 |
msgid ""
|
459 |
"You can always look at premium options by clicking on the \"Show Pro features"
|
460 |
"\" in the \"Go PRO\" tab"
|
@@ -462,124 +462,124 @@ msgstr ""
|
|
462 |
"Zawsze możesz sprawdzić funkcje premium poprzez kliknięcie \"Pokaż funkcje "
|
463 |
"PRO\" w zakładce \"Go PRO\""
|
464 |
|
465 |
-
#: bws_functions.php:
|
466 |
#, fuzzy
|
467 |
msgid "Add shortcode"
|
468 |
msgstr "Dodaj BWS Shortcode"
|
469 |
|
470 |
-
#: bws_functions.php:
|
471 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: bws_functions.php:
|
475 |
msgid "Close"
|
476 |
msgstr "Zamknij"
|
477 |
|
478 |
-
#: bws_functions.php:
|
479 |
msgid "Restore all plugin settings to defaults"
|
480 |
msgstr "Przywróć wszystkie ustawienia do wartości domyśłnych"
|
481 |
|
482 |
-
#: bws_functions.php:
|
483 |
msgid "Restore settings"
|
484 |
msgstr "Przywróć ustawienia"
|
485 |
|
486 |
-
#: bws_functions.php:
|
487 |
msgid "Are you sure you want to restore all settings by default?"
|
488 |
msgstr ""
|
489 |
"Czy jesteś pewien, że chcesz przywrócić wszystkie ustawienia do wartości "
|
490 |
"domyślnych?"
|
491 |
|
492 |
-
#: bws_functions.php:
|
493 |
msgid "Yes, restore all settings"
|
494 |
msgstr "Tak, przywróć wszystkie ustawienia"
|
495 |
|
496 |
-
#: bws_functions.php:
|
497 |
msgid "No, go back to the settings page"
|
498 |
msgstr "Nie, wróć do ustawień"
|
499 |
|
500 |
-
#: bws_functions.php:
|
501 |
msgid "Plugin"
|
502 |
msgstr "Wtyczka"
|
503 |
|
504 |
-
#: bws_functions.php:
|
505 |
msgid "Shortcode settings"
|
506 |
msgstr "Ustawienia shortcode"
|
507 |
|
508 |
-
#: bws_functions.php:
|
509 |
msgid "The shortcode will be inserted"
|
510 |
msgstr "Shortcode zostanie umieszczony"
|
511 |
|
512 |
-
#: bws_functions.php:
|
513 |
msgid "Insert"
|
514 |
msgstr "Umieść"
|
515 |
|
516 |
-
#: bws_functions.php:
|
517 |
msgid "Visit Help Center"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: bws_functions.php:
|
521 |
msgid "FAQ"
|
522 |
msgstr "FAQ"
|
523 |
|
524 |
-
#: bws_functions.php:
|
525 |
msgid "For more information:"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: bws_functions.php:
|
529 |
msgid "Documentation"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: bws_functions.php:
|
533 |
msgid "Video Instructions"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: bws_functions.php:
|
537 |
#, fuzzy
|
538 |
msgid "Submit a Request"
|
539 |
msgstr "送信ボタン"
|
540 |
|
541 |
-
#: bws_functions.php:
|
542 |
msgid "You do not have sufficient permissions to edit plugins for this site."
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: bws_functions.php:
|
546 |
#, php-format
|
547 |
msgid "File %s edited successfully."
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: bws_functions.php:
|
551 |
msgid "Not enough permissions to create or update the file"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: bws_functions.php:
|
555 |
msgid "Not enough permissions to create the file"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: bws_functions.php:
|
559 |
msgid "These styles will be added to the header on all pages of your site."
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: bws_functions.php:
|
563 |
#, php-format
|
564 |
msgid ""
|
565 |
-
"
|
566 |
"end only."
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: bws_functions.php:
|
570 |
msgid "Editing"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: bws_functions.php:
|
574 |
msgid "Browsing"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: bws_functions.php:
|
578 |
#, fuzzy, php-format
|
579 |
msgid "Learn more about %s"
|
580 |
msgstr "Dowiedz się więcej"
|
581 |
|
582 |
-
#: bws_functions.php:
|
583 |
#, php-format
|
584 |
msgid ""
|
585 |
"You need to make this files writable before you can save your changes. See "
|
@@ -736,7 +736,7 @@ msgstr "Dziękujemy za kontakt."
|
|
736 |
msgid "Sorry, email message could not be delivered."
|
737 |
msgstr "Przepraszamy, wiadomość nie została dostarczona."
|
738 |
|
739 |
-
#: bws_menu.php:286 bws_menu.php:
|
740 |
msgid "System status"
|
741 |
msgstr "Status systemu"
|
742 |
|
@@ -758,31 +758,16 @@ msgstr "Panel Klienta"
|
|
758 |
msgid "Get Access to %s+ Premium Plugins"
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: bws_menu.php:
|
762 |
-
#,
|
763 |
-
msgid ""
|
764 |
-
|
765 |
-
"on a single website %s for only %s per month."
|
766 |
-
msgstr ""
|
767 |
|
768 |
#: bws_menu.php:309
|
769 |
#, fuzzy
|
770 |
msgid "Enter your license key"
|
771 |
msgstr "Podaj klucz licencji"
|
772 |
|
773 |
-
#: bws_menu.php:313
|
774 |
-
#, fuzzy
|
775 |
-
msgid "Activate Membership"
|
776 |
-
msgstr "有効なテーマ"
|
777 |
-
|
778 |
-
#: bws_menu.php:322
|
779 |
-
msgid "Don’t have valid license key yet?"
|
780 |
-
msgstr ""
|
781 |
-
|
782 |
-
#: bws_menu.php:322
|
783 |
-
msgid "Subscribe to Pro Membership Now"
|
784 |
-
msgstr ""
|
785 |
-
|
786 |
#: bws_menu.php:331
|
787 |
#, fuzzy
|
788 |
msgid "Upload Plugin"
|
@@ -839,11 +824,11 @@ msgstr "Aktywne wtyczki"
|
|
839 |
msgid "Return to BestWebSoft Panel"
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: bws_menu.php:419 bws_menu.php:434 bws_menu.php:
|
843 |
msgid "All"
|
844 |
msgstr "Wszystko"
|
845 |
|
846 |
-
#: bws_menu.php:420
|
847 |
msgid "Installed"
|
848 |
msgstr "Zainstalowane"
|
849 |
|
@@ -856,75 +841,80 @@ msgstr "Zainstalowane"
|
|
856 |
msgid "Filter results"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: bws_menu.php:430 bws_menu.php:
|
860 |
msgid "Category"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: bws_menu.php:
|
|
|
|
|
|
|
|
|
|
|
864 |
#, fuzzy
|
865 |
msgid "Renew to get updates"
|
866 |
msgstr "ページに転送"
|
867 |
|
868 |
-
#: bws_menu.php:
|
869 |
#, fuzzy, php-format
|
870 |
msgid "Update to v %s"
|
871 |
msgstr "Aktualizuj do wersji %s"
|
872 |
|
873 |
-
#: bws_menu.php:
|
874 |
msgid "Install Now"
|
875 |
msgstr "Instaluj teraz"
|
876 |
|
877 |
-
#: bws_menu.php:
|
878 |
msgid "Upgrade to Pro"
|
879 |
msgstr ""
|
880 |
|
881 |
-
#: bws_menu.php:
|
882 |
msgid "Donate"
|
883 |
msgstr ""
|
884 |
|
885 |
-
#: bws_menu.php:
|
886 |
msgid "Activate this plugin"
|
887 |
msgstr "Aktywuj wtyczkę"
|
888 |
|
889 |
-
#: bws_menu.php:
|
890 |
#, fuzzy
|
891 |
msgid "Install this plugin"
|
892 |
msgstr "Zainstalowane"
|
893 |
|
894 |
-
#: bws_menu.php:
|
895 |
msgid "Nothing found. Try another criteria."
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: bws_menu.php:
|
899 |
#, php-format
|
900 |
msgid "By %s"
|
901 |
msgstr "Od %s"
|
902 |
|
903 |
-
#: bws_menu.php:
|
904 |
msgid "Already Installed"
|
905 |
msgstr "Zainstalowane"
|
906 |
|
907 |
-
#: bws_menu.php:
|
908 |
msgid "Browse Free WordPress Themes"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: bws_menu.php:
|
912 |
msgid "Send to support"
|
913 |
msgstr "Wyślij do supportu"
|
914 |
|
915 |
-
#: bws_menu.php:
|
916 |
msgid "Send to custom email »"
|
917 |
msgstr "Prześlij na własny adres »"
|
918 |
|
919 |
-
#: bws_menu.php:
|
920 |
msgid "Environment"
|
921 |
msgstr "Środowisko"
|
922 |
|
923 |
-
#: bws_menu.php:
|
924 |
msgid "Active Plugins"
|
925 |
msgstr "Aktywne wtyczki"
|
926 |
|
927 |
-
#: bws_menu.php:
|
928 |
msgid "Inactive Plugins"
|
929 |
msgstr "Nieaktywne wtyczki"
|
930 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-08-04 15:44+0300\n"
|
6 |
+
"PO-Revision-Date: 2016-08-04 15:44+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Damian Dąbrowski <contact@codester.pl>\n"
|
9 |
"Language: pl_PL\n"
|
22 |
msgid "Plugins"
|
23 |
msgstr "Wtyczki"
|
24 |
|
25 |
+
#: bws_functions.php:39 bws_menu.php:283 bws_menu.php:581
|
26 |
msgid "Themes"
|
27 |
msgstr "Motywy"
|
28 |
|
67 |
msgid "Let's get started"
|
68 |
msgstr "Zaczynajmny"
|
69 |
|
70 |
+
#: bws_functions.php:120 bws_functions.php:153 bws_menu.php:527
|
71 |
+
#: bws_menu.php:529
|
72 |
msgid "Settings"
|
73 |
msgstr "Ustawienia"
|
74 |
|
75 |
+
#: bws_functions.php:122 bws_functions.php:479 bws_menu.php:298
|
76 |
msgid "or"
|
77 |
msgstr "lub"
|
78 |
|
81 |
msgstr "Dodaj nowy"
|
82 |
|
83 |
#: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
|
84 |
+
#: bws_functions.php:727 bws_functions.php:831
|
85 |
msgid "Close notice"
|
86 |
msgstr "Zamknij powiadomienie"
|
87 |
|
116 |
msgid "Extend standard plugin functionality with new great options."
|
117 |
msgstr "Rozszerz podstawowe funkcje wtyczki o nowe wspaniałe opcje."
|
118 |
|
119 |
+
#: bws_functions.php:222 bws_functions.php:666 bws_menu.php:597
|
120 |
msgid "Learn More"
|
121 |
msgstr "Dowiedz się więcej"
|
122 |
|
271 |
msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
|
272 |
|
273 |
#: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
|
274 |
+
#: bws_functions.php:532 bws_functions.php:1401 bws_menu.php:315
|
275 |
+
#: bws_menu.php:533 bws_menu.php:542
|
276 |
msgid "Activate"
|
277 |
msgstr "Aktywuj"
|
278 |
|
288 |
msgid "After that you can activate it by entering your license key."
|
289 |
msgstr "Po wszystkim możesz aktywować wtyczkę poprzez podanie klucza licencji."
|
290 |
|
291 |
+
#: bws_functions.php:526 bws_menu.php:118 bws_menu.php:304
|
292 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
293 |
msgstr "Niestety, przekroczono dzienną liczbę dostępnych prób."
|
294 |
|
360 |
"(login to adres email podany przy zakupie). Jeśli to koniczne użyj opcji "
|
361 |
"\"Zgubiłeś swoje hasło?\"."
|
362 |
|
363 |
+
#: bws_functions.php:651 bws_menu.php:306 bws_menu.php:317
|
364 |
msgid "Check license key"
|
365 |
msgstr "Sprawdź klucz licencji"
|
366 |
|
367 |
+
#: bws_functions.php:666
|
368 |
msgid "WARNING: Illegal use notification"
|
369 |
msgstr "UWAGA: Odnotowano nielegalne użycie"
|
370 |
|
371 |
+
#: bws_functions.php:666
|
372 |
msgid ""
|
373 |
"You can use one license of the Pro plugin for one domain only. Please check "
|
374 |
"and edit your license or domain if necessary using you personal Client Area. "
|
380 |
"Panel Klienta. Zalecamy rozwiązanie tego problemu w przeciągu 24 godzin, w "
|
381 |
"przeciwnym wypadku wersja PRO zostanie zablokowana."
|
382 |
|
383 |
+
#: bws_functions.php:675
|
384 |
msgid ""
|
385 |
"Notice: Your Pro Trial license has expired. To continue using the plugin you "
|
386 |
"should buy a Pro license"
|
388 |
"Uwaga: Testowa wersja PRO niestety wygasła. Aby kontynuować korzystanie z "
|
389 |
"naszej wtyczki powinieneś zakupić klucz licencji."
|
390 |
|
391 |
+
#: bws_functions.php:677
|
392 |
msgid ""
|
393 |
"Your license has expired. To continue getting top-priority support and "
|
394 |
"plugin updates you should extend it."
|
396 |
"Twoja licencja wygasła. Aby podtrzymać szybki dostęp do pomocy i "
|
397 |
"aktualizacji powinieneś przedłużyć licencję."
|
398 |
|
399 |
+
#: bws_functions.php:677 bws_functions.php:731 bws_functions.php:1356
|
400 |
msgid "Learn more"
|
401 |
msgstr "Dowiedz się więcej"
|
402 |
|
403 |
+
#: bws_functions.php:688
|
404 |
#, php-format
|
405 |
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
406 |
msgstr "Uwaga: Wykorzystujesz próbną licencję wersji PRO dla %s."
|
407 |
|
408 |
+
#: bws_functions.php:690
|
409 |
msgid "Notice: You are using the Pro Trial license of plugin."
|
410 |
msgstr "Uwaga: Wykorzystywana jest próbna licencja wtyczki."
|
411 |
|
412 |
+
#: bws_functions.php:693
|
413 |
msgid "The Pro Trial license will expire on"
|
414 |
msgstr "Licencja próbna wygaśnie"
|
415 |
|
416 |
+
#: bws_functions.php:731
|
417 |
msgid "You license for"
|
418 |
msgstr "Twoja licencja na"
|
419 |
|
420 |
+
#: bws_functions.php:731
|
421 |
msgid "expires on"
|
422 |
msgstr "wygasa"
|
423 |
|
424 |
+
#: bws_functions.php:731
|
425 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
426 |
msgstr ""
|
427 |
"zostaniesz wówczas pozbawiony SZYBKIEGO DOSTĘDO DO SUPPORTU oraz "
|
428 |
"AKTUALIZACJI."
|
429 |
|
430 |
+
#: bws_functions.php:826
|
431 |
#, fuzzy
|
432 |
msgid "Thank you for choosing"
|
433 |
msgstr "Dziękujemy za instalację"
|
434 |
|
435 |
+
#: bws_functions.php:827
|
436 |
msgid ""
|
437 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
438 |
"we'd love to hear about it!"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: bws_functions.php:828
|
442 |
msgid "Suggest a Feature"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: bws_functions.php:844
|
446 |
msgid "Notice"
|
447 |
msgstr "Uwaga"
|
448 |
|
449 |
+
#: bws_functions.php:844
|
450 |
msgid "The plugin's settings have been changed."
|
451 |
msgstr "Ustawienia wtyczki zostały zmienione."
|
452 |
|
453 |
+
#: bws_functions.php:845 bws_functions.php:1412
|
454 |
msgid "Save Changes"
|
455 |
msgstr "Zapisz zmiany"
|
456 |
|
457 |
+
#: bws_functions.php:859
|
458 |
msgid ""
|
459 |
"You can always look at premium options by clicking on the \"Show Pro features"
|
460 |
"\" in the \"Go PRO\" tab"
|
462 |
"Zawsze możesz sprawdzić funkcje premium poprzez kliknięcie \"Pokaż funkcje "
|
463 |
"PRO\" w zakładce \"Go PRO\""
|
464 |
|
465 |
+
#: bws_functions.php:988
|
466 |
#, fuzzy
|
467 |
msgid "Add shortcode"
|
468 |
msgstr "Dodaj BWS Shortcode"
|
469 |
|
470 |
+
#: bws_functions.php:988
|
471 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: bws_functions.php:1037
|
475 |
msgid "Close"
|
476 |
msgstr "Zamknij"
|
477 |
|
478 |
+
#: bws_functions.php:1129
|
479 |
msgid "Restore all plugin settings to defaults"
|
480 |
msgstr "Przywróć wszystkie ustawienia do wartości domyśłnych"
|
481 |
|
482 |
+
#: bws_functions.php:1131
|
483 |
msgid "Restore settings"
|
484 |
msgstr "Przywróć ustawienia"
|
485 |
|
486 |
+
#: bws_functions.php:1142
|
487 |
msgid "Are you sure you want to restore all settings by default?"
|
488 |
msgstr ""
|
489 |
"Czy jesteś pewien, że chcesz przywrócić wszystkie ustawienia do wartości "
|
490 |
"domyślnych?"
|
491 |
|
492 |
+
#: bws_functions.php:1145
|
493 |
msgid "Yes, restore all settings"
|
494 |
msgstr "Tak, przywróć wszystkie ustawienia"
|
495 |
|
496 |
+
#: bws_functions.php:1146
|
497 |
msgid "No, go back to the settings page"
|
498 |
msgstr "Nie, wróć do ustawień"
|
499 |
|
500 |
+
#: bws_functions.php:1192
|
501 |
msgid "Plugin"
|
502 |
msgstr "Wtyczka"
|
503 |
|
504 |
+
#: bws_functions.php:1201
|
505 |
msgid "Shortcode settings"
|
506 |
msgstr "Ustawienia shortcode"
|
507 |
|
508 |
+
#: bws_functions.php:1206
|
509 |
msgid "The shortcode will be inserted"
|
510 |
msgstr "Shortcode zostanie umieszczony"
|
511 |
|
512 |
+
#: bws_functions.php:1211
|
513 |
msgid "Insert"
|
514 |
msgstr "Umieść"
|
515 |
|
516 |
+
#: bws_functions.php:1244
|
517 |
msgid "Visit Help Center"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: bws_functions.php:1249
|
521 |
msgid "FAQ"
|
522 |
msgstr "FAQ"
|
523 |
|
524 |
+
#: bws_functions.php:1255
|
525 |
msgid "For more information:"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: bws_functions.php:1256
|
529 |
msgid "Documentation"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: bws_functions.php:1257
|
533 |
msgid "Video Instructions"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: bws_functions.php:1258
|
537 |
#, fuzzy
|
538 |
msgid "Submit a Request"
|
539 |
msgstr "送信ボタン"
|
540 |
|
541 |
+
#: bws_functions.php:1269
|
542 |
msgid "You do not have sufficient permissions to edit plugins for this site."
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: bws_functions.php:1320 bws_functions.php:1347
|
546 |
#, php-format
|
547 |
msgid "File %s edited successfully."
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: bws_functions.php:1322 bws_functions.php:1349
|
551 |
msgid "Not enough permissions to create or update the file"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: bws_functions.php:1352
|
555 |
msgid "Not enough permissions to create the file"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: bws_functions.php:1390
|
559 |
msgid "These styles will be added to the header on all pages of your site."
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: bws_functions.php:1392
|
563 |
#, php-format
|
564 |
msgid ""
|
565 |
+
"This PHP code will be hooked to the %s action and will be printed on front "
|
566 |
"end only."
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: bws_functions.php:1396
|
570 |
msgid "Editing"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: bws_functions.php:1398
|
574 |
msgid "Browsing"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: bws_functions.php:1405
|
578 |
#, fuzzy, php-format
|
579 |
msgid "Learn more about %s"
|
580 |
msgstr "Dowiedz się więcej"
|
581 |
|
582 |
+
#: bws_functions.php:1416
|
583 |
#, php-format
|
584 |
msgid ""
|
585 |
"You need to make this files writable before you can save your changes. See "
|
736 |
msgid "Sorry, email message could not be delivered."
|
737 |
msgstr "Przepraszamy, wiadomość nie została dostarczona."
|
738 |
|
739 |
+
#: bws_menu.php:286 bws_menu.php:632
|
740 |
msgid "System status"
|
741 |
msgstr "Status systemu"
|
742 |
|
758 |
msgid "Get Access to %s+ Premium Plugins"
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: bws_menu.php:298
|
762 |
+
#, fuzzy
|
763 |
+
msgid "Subscribe to Pro Membership"
|
764 |
+
msgstr "有効なテーマ"
|
|
|
|
|
765 |
|
766 |
#: bws_menu.php:309
|
767 |
#, fuzzy
|
768 |
msgid "Enter your license key"
|
769 |
msgstr "Podaj klucz licencji"
|
770 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
771 |
#: bws_menu.php:331
|
772 |
#, fuzzy
|
773 |
msgid "Upload Plugin"
|
824 |
msgid "Return to BestWebSoft Panel"
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: bws_menu.php:419 bws_menu.php:434 bws_menu.php:563
|
828 |
msgid "All"
|
829 |
msgstr "Wszystko"
|
830 |
|
831 |
+
#: bws_menu.php:420 bws_menu.php:620
|
832 |
msgid "Installed"
|
833 |
msgstr "Zainstalowane"
|
834 |
|
841 |
msgid "Filter results"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: bws_menu.php:430 bws_menu.php:559
|
845 |
msgid "Category"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: bws_menu.php:494
|
849 |
+
#, fuzzy
|
850 |
+
msgid "Not installed"
|
851 |
+
msgstr "Zainstalowane"
|
852 |
+
|
853 |
+
#: bws_menu.php:498
|
854 |
#, fuzzy
|
855 |
msgid "Renew to get updates"
|
856 |
msgstr "ページに転送"
|
857 |
|
858 |
+
#: bws_menu.php:501
|
859 |
#, fuzzy, php-format
|
860 |
msgid "Update to v %s"
|
861 |
msgstr "Aktualizuj do wersji %s"
|
862 |
|
863 |
+
#: bws_menu.php:513 bws_menu.php:536 bws_menu.php:545
|
864 |
msgid "Install Now"
|
865 |
msgstr "Instaluj teraz"
|
866 |
|
867 |
+
#: bws_menu.php:519
|
868 |
msgid "Upgrade to Pro"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: bws_menu.php:523
|
872 |
msgid "Donate"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: bws_menu.php:533 bws_menu.php:542
|
876 |
msgid "Activate this plugin"
|
877 |
msgstr "Aktywuj wtyczkę"
|
878 |
|
879 |
+
#: bws_menu.php:545
|
880 |
#, fuzzy
|
881 |
msgid "Install this plugin"
|
882 |
msgstr "Zainstalowane"
|
883 |
|
884 |
+
#: bws_menu.php:554
|
885 |
msgid "Nothing found. Try another criteria."
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: bws_menu.php:591 bws_menu.php:611
|
889 |
#, php-format
|
890 |
msgid "By %s"
|
891 |
msgstr "Od %s"
|
892 |
|
893 |
+
#: bws_menu.php:618
|
894 |
msgid "Already Installed"
|
895 |
msgstr "Zainstalowane"
|
896 |
|
897 |
+
#: bws_menu.php:629
|
898 |
msgid "Browse Free WordPress Themes"
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: bws_menu.php:638
|
902 |
msgid "Send to support"
|
903 |
msgstr "Wyślij do supportu"
|
904 |
|
905 |
+
#: bws_menu.php:645
|
906 |
msgid "Send to custom email »"
|
907 |
msgstr "Prześlij na własny adres »"
|
908 |
|
909 |
+
#: bws_menu.php:652
|
910 |
msgid "Environment"
|
911 |
msgstr "Środowisko"
|
912 |
|
913 |
+
#: bws_menu.php:663
|
914 |
msgid "Active Plugins"
|
915 |
msgstr "Aktywne wtyczki"
|
916 |
|
917 |
+
#: bws_menu.php:676
|
918 |
msgid "Inactive Plugins"
|
919 |
msgstr "Nieaktywne wtyczki"
|
920 |
|
bws_menu/languages/bestwebsoft-ru_RU.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-ru_RU.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
@@ -20,7 +20,7 @@ msgstr ""
|
|
20 |
msgid "Plugins"
|
21 |
msgstr "Плагины"
|
22 |
|
23 |
-
#: bws_functions.php:39 bws_menu.php:283 bws_menu.php:
|
24 |
msgid "Themes"
|
25 |
msgstr "Темы"
|
26 |
|
@@ -64,12 +64,12 @@ msgstr "Спасибо за установку"
|
|
64 |
msgid "Let's get started"
|
65 |
msgstr "Давайте начнем"
|
66 |
|
67 |
-
#: bws_functions.php:120 bws_functions.php:153 bws_menu.php:
|
68 |
-
#: bws_menu.php:
|
69 |
msgid "Settings"
|
70 |
msgstr "Настройки"
|
71 |
|
72 |
-
#: bws_functions.php:122 bws_functions.php:479
|
73 |
msgid "or"
|
74 |
msgstr "или"
|
75 |
|
@@ -78,7 +78,7 @@ msgid "Add New"
|
|
78 |
msgstr "Добавить"
|
79 |
|
80 |
#: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
|
81 |
-
#: bws_functions.php:
|
82 |
msgid "Close notice"
|
83 |
msgstr "Закрыть"
|
84 |
|
@@ -110,7 +110,7 @@ msgstr "версии!"
|
|
110 |
msgid "Extend standard plugin functionality with new great options."
|
111 |
msgstr "Расширяет возможности стандартного функционала плагина."
|
112 |
|
113 |
-
#: bws_functions.php:222 bws_functions.php:
|
114 |
msgid "Learn More"
|
115 |
msgstr "Подробнее"
|
116 |
|
@@ -262,8 +262,8 @@ msgid "Start Your Free %s-Day Trial Now"
|
|
262 |
msgstr "Попробуйте %s-дневную Trial версию бесплатно"
|
263 |
|
264 |
#: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
|
265 |
-
#: bws_functions.php:532 bws_functions.php:
|
266 |
-
#: bws_menu.php:
|
267 |
msgid "Activate"
|
268 |
msgstr "Активировать"
|
269 |
|
@@ -278,7 +278,7 @@ msgstr ""
|
|
278 |
msgid "After that you can activate it by entering your license key."
|
279 |
msgstr "После этого вы сможете активировать его введя лицензионный ключ."
|
280 |
|
281 |
-
#: bws_functions.php:526 bws_menu.php:118 bws_menu.php:
|
282 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
283 |
msgstr "К сожалению, вы превысили количество доступных попыток."
|
284 |
|
@@ -349,15 +349,15 @@ msgstr ""
|
|
349 |
"(ваше имя пользователя - это емейл, указанный при покупке). При "
|
350 |
"необходимости нажмите \"Забыли пароль?\"."
|
351 |
|
352 |
-
#: bws_functions.php:651 bws_menu.php:
|
353 |
msgid "Check license key"
|
354 |
msgstr "Проверка лицензионного ключа"
|
355 |
|
356 |
-
#: bws_functions.php:
|
357 |
msgid "WARNING: Illegal use notification"
|
358 |
msgstr "ВНИМАНИЕ: уведомление о незаконном использовании"
|
359 |
|
360 |
-
#: bws_functions.php:
|
361 |
msgid ""
|
362 |
"You can use one license of the Pro plugin for one domain only. Please check "
|
363 |
"and edit your license or domain if necessary using you personal Client Area. "
|
@@ -369,7 +369,7 @@ msgstr ""
|
|
369 |
"используя Ваш личный Client Area. Мы настоятельно рекомендуем вам решить "
|
370 |
"проблему в течение 24 часов, в противном случае плагин будет деактивирован."
|
371 |
|
372 |
-
#: bws_functions.php:
|
373 |
msgid ""
|
374 |
"Notice: Your Pro Trial license has expired. To continue using the plugin you "
|
375 |
"should buy a Pro license"
|
@@ -377,7 +377,7 @@ msgstr ""
|
|
377 |
"Внимание: Срок действия Pro Trial версии истек. Чтобы продолжить "
|
378 |
"пользоваться плагином, пожалуйста, приобретите лицензию Pro"
|
379 |
|
380 |
-
#: bws_functions.php:
|
381 |
msgid ""
|
382 |
"Your license has expired. To continue getting top-priority support and "
|
383 |
"plugin updates you should extend it."
|
@@ -386,40 +386,40 @@ msgstr ""
|
|
386 |
"плагин в дальнейшем и иметь приоритетную тех.поддержку, то вам нужно "
|
387 |
"продлить лицензию."
|
388 |
|
389 |
-
#: bws_functions.php:
|
390 |
msgid "Learn more"
|
391 |
msgstr "Подробнее"
|
392 |
|
393 |
-
#: bws_functions.php:
|
394 |
#, php-format
|
395 |
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
396 |
msgstr "Внимание: Вы используете Pro Trial версию плагина %s."
|
397 |
|
398 |
-
#: bws_functions.php:
|
399 |
msgid "Notice: You are using the Pro Trial license of plugin."
|
400 |
msgstr "Внимание: Вы используете Pro Trial версию плагина."
|
401 |
|
402 |
-
#: bws_functions.php:
|
403 |
msgid "The Pro Trial license will expire on"
|
404 |
msgstr "Ваша лицензия Pro Trial версии плагина истекает"
|
405 |
|
406 |
-
#: bws_functions.php:
|
407 |
msgid "You license for"
|
408 |
msgstr "Ваш лицензионный ключ для"
|
409 |
|
410 |
-
#: bws_functions.php:
|
411 |
msgid "expires on"
|
412 |
msgstr "истекает"
|
413 |
|
414 |
-
#: bws_functions.php:
|
415 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
416 |
msgstr "и вы не будете получать приоритетную тех.поддержку или обновления."
|
417 |
|
418 |
-
#: bws_functions.php:
|
419 |
msgid "Thank you for choosing"
|
420 |
msgstr "Спасибо за выбор"
|
421 |
|
422 |
-
#: bws_functions.php:
|
423 |
msgid ""
|
424 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
425 |
"we'd love to hear about it!"
|
@@ -428,23 +428,23 @@ msgstr ""
|
|
428 |
"функционала плагина, пожалуйста, присылайте их нам! Мы вседа открыты для "
|
429 |
"новых идей!"
|
430 |
|
431 |
-
#: bws_functions.php:
|
432 |
msgid "Suggest a Feature"
|
433 |
msgstr "Предложить функционал"
|
434 |
|
435 |
-
#: bws_functions.php:
|
436 |
msgid "Notice"
|
437 |
msgstr "Внимание"
|
438 |
|
439 |
-
#: bws_functions.php:
|
440 |
msgid "The plugin's settings have been changed."
|
441 |
msgstr "Настройки плагина были изменены"
|
442 |
|
443 |
-
#: bws_functions.php:
|
444 |
msgid "Save Changes"
|
445 |
msgstr "Сохранить изменения"
|
446 |
|
447 |
-
#: bws_functions.php:
|
448 |
msgid ""
|
449 |
"You can always look at premium options by clicking on the \"Show Pro features"
|
450 |
"\" in the \"Go PRO\" tab"
|
@@ -452,125 +452,125 @@ msgstr ""
|
|
452 |
"Вы всегда можете просмотреть премиум опции нажав на кнопку \"Показать Pro "
|
453 |
"опции\" на вкладке \"Перейти на PRO\""
|
454 |
|
455 |
-
#: bws_functions.php:
|
456 |
msgid "Add shortcode"
|
457 |
msgstr "Добавить шорткод"
|
458 |
|
459 |
-
#: bws_functions.php:
|
460 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
461 |
msgstr "Добавьте шорткоды BestWebSoft плагинов с помощью этой кнопки."
|
462 |
|
463 |
-
#: bws_functions.php:
|
464 |
msgid "Close"
|
465 |
msgstr "Закрыть"
|
466 |
|
467 |
-
#: bws_functions.php:
|
468 |
msgid "Restore all plugin settings to defaults"
|
469 |
msgstr "Восстановить все настройки плагина к настройкам по умолчанию"
|
470 |
|
471 |
-
#: bws_functions.php:
|
472 |
msgid "Restore settings"
|
473 |
msgstr "Восстановить настройки"
|
474 |
|
475 |
-
#: bws_functions.php:
|
476 |
msgid "Are you sure you want to restore all settings by default?"
|
477 |
msgstr ""
|
478 |
"Вы уверены что хотите восстановить все настройки плагина к настройкам по "
|
479 |
"умолчанию?"
|
480 |
|
481 |
-
#: bws_functions.php:
|
482 |
msgid "Yes, restore all settings"
|
483 |
msgstr "Да, восстановить все настройки"
|
484 |
|
485 |
-
#: bws_functions.php:
|
486 |
msgid "No, go back to the settings page"
|
487 |
msgstr "Нет, вернуться на страницу настроек"
|
488 |
|
489 |
-
#: bws_functions.php:
|
490 |
msgid "Plugin"
|
491 |
msgstr "Плагин"
|
492 |
|
493 |
-
#: bws_functions.php:
|
494 |
msgid "Shortcode settings"
|
495 |
msgstr "Настройки шорткода"
|
496 |
|
497 |
-
#: bws_functions.php:
|
498 |
msgid "The shortcode will be inserted"
|
499 |
msgstr "Будет вставлен шорткод"
|
500 |
|
501 |
-
#: bws_functions.php:
|
502 |
msgid "Insert"
|
503 |
msgstr "Вставить"
|
504 |
|
505 |
-
#: bws_functions.php:
|
506 |
msgid "Visit Help Center"
|
507 |
msgstr "Перейти в Help Center"
|
508 |
|
509 |
-
#: bws_functions.php:
|
510 |
msgid "FAQ"
|
511 |
msgstr "FAQ"
|
512 |
|
513 |
-
#: bws_functions.php:
|
514 |
msgid "For more information:"
|
515 |
msgstr "Для дополнительной информации:"
|
516 |
|
517 |
-
#: bws_functions.php:
|
518 |
msgid "Documentation"
|
519 |
msgstr "Документация"
|
520 |
|
521 |
-
#: bws_functions.php:
|
522 |
msgid "Video Instructions"
|
523 |
msgstr "Видео инструкции"
|
524 |
|
525 |
-
#: bws_functions.php:
|
526 |
msgid "Submit a Request"
|
527 |
msgstr "Отправить запрос"
|
528 |
|
529 |
-
#: bws_functions.php:
|
530 |
msgid "You do not have sufficient permissions to edit plugins for this site."
|
531 |
msgstr ""
|
532 |
"У вас недостаточно полномочий, чтобы редактировать плагины на этом сайте."
|
533 |
|
534 |
-
#: bws_functions.php:
|
535 |
#, php-format
|
536 |
msgid "File %s edited successfully."
|
537 |
msgstr "Файл %s успешно изменён."
|
538 |
|
539 |
-
#: bws_functions.php:
|
540 |
msgid "Not enough permissions to create or update the file"
|
541 |
msgstr "Не достаточно прав для создания или обновления файла"
|
542 |
|
543 |
-
#: bws_functions.php:
|
544 |
msgid "Not enough permissions to create the file"
|
545 |
msgstr "Не достаточно прав для создания файла"
|
546 |
|
547 |
-
#: bws_functions.php:
|
548 |
msgid "These styles will be added to the header on all pages of your site."
|
549 |
msgstr "Эти стили будут добавлены в хедер на всех страницах вашего сайта."
|
550 |
|
551 |
-
#: bws_functions.php:
|
552 |
#, php-format
|
553 |
msgid ""
|
554 |
-
"
|
555 |
"end only."
|
556 |
msgstr ""
|
557 |
"Этот PHP код будет прикреплен к %s аction и будет добавлен только во "
|
558 |
"фронтенде."
|
559 |
|
560 |
-
#: bws_functions.php:
|
561 |
msgid "Editing"
|
562 |
msgstr "Редактирование"
|
563 |
|
564 |
-
#: bws_functions.php:
|
565 |
msgid "Browsing"
|
566 |
msgstr "Просмотр"
|
567 |
|
568 |
-
#: bws_functions.php:
|
569 |
#, php-format
|
570 |
msgid "Learn more about %s"
|
571 |
msgstr "Подробнее о %s"
|
572 |
|
573 |
-
#: bws_functions.php:
|
574 |
#, php-format
|
575 |
msgid ""
|
576 |
"You need to make this files writable before you can save your changes. See "
|
@@ -727,7 +727,7 @@ msgstr "Спасибо что связались с нами."
|
|
727 |
msgid "Sorry, email message could not be delivered."
|
728 |
msgstr "Извините, ваш емейл не может быть отправлен."
|
729 |
|
730 |
-
#: bws_menu.php:286 bws_menu.php:
|
731 |
msgid "System status"
|
732 |
msgstr "Системная информация"
|
733 |
|
@@ -748,32 +748,14 @@ msgstr "Client Area"
|
|
748 |
msgid "Get Access to %s+ Premium Plugins"
|
749 |
msgstr "Получить Доступ к %s+ Премиум Плагинам"
|
750 |
|
751 |
-
#: bws_menu.php:
|
752 |
-
|
753 |
-
|
754 |
-
"Join BestWebSoft Pro Membership today, cancel any time and use all plugins "
|
755 |
-
"on a single website %s for only %s per month."
|
756 |
-
msgstr ""
|
757 |
-
"Присоединяйтесь к BestWebSoft Pro Membership сегодня, отменяйте подписку в "
|
758 |
-
"любое время и используйте все плагины на одном сайте %s всего лишь за %s в "
|
759 |
-
"месяц."
|
760 |
|
761 |
#: bws_menu.php:309
|
762 |
msgid "Enter your license key"
|
763 |
msgstr "Ваш лицензионный ключ"
|
764 |
|
765 |
-
#: bws_menu.php:313
|
766 |
-
msgid "Activate Membership"
|
767 |
-
msgstr "Активировать Membership"
|
768 |
-
|
769 |
-
#: bws_menu.php:322
|
770 |
-
msgid "Don’t have valid license key yet?"
|
771 |
-
msgstr "Нет действующего лицензионного ключа?"
|
772 |
-
|
773 |
-
#: bws_menu.php:322
|
774 |
-
msgid "Subscribe to Pro Membership Now"
|
775 |
-
msgstr "Подписаться на Pro Membership Сейчас"
|
776 |
-
|
777 |
#: bws_menu.php:331
|
778 |
msgid "Upload Plugin"
|
779 |
msgstr "Добавить новый"
|
@@ -831,11 +813,11 @@ msgstr "Активировать плагин"
|
|
831 |
msgid "Return to BestWebSoft Panel"
|
832 |
msgstr "Возврат к BestWebSoft Panel"
|
833 |
|
834 |
-
#: bws_menu.php:419 bws_menu.php:434 bws_menu.php:
|
835 |
msgid "All"
|
836 |
msgstr "Все"
|
837 |
|
838 |
-
#: bws_menu.php:420
|
839 |
msgid "Installed"
|
840 |
msgstr "Установленные"
|
841 |
|
@@ -847,73 +829,77 @@ msgstr "Не установленные"
|
|
847 |
msgid "Filter results"
|
848 |
msgstr "Фильтр результатов"
|
849 |
|
850 |
-
#: bws_menu.php:430 bws_menu.php:
|
851 |
msgid "Category"
|
852 |
msgstr "Категория"
|
853 |
|
854 |
-
#: bws_menu.php:
|
|
|
|
|
|
|
|
|
855 |
msgid "Renew to get updates"
|
856 |
msgstr "Продлить для обновления"
|
857 |
|
858 |
-
#: bws_menu.php:
|
859 |
#, php-format
|
860 |
msgid "Update to v %s"
|
861 |
msgstr "Обновить до версии %s"
|
862 |
|
863 |
-
#: bws_menu.php:
|
864 |
msgid "Install Now"
|
865 |
msgstr "Установить"
|
866 |
|
867 |
-
#: bws_menu.php:
|
868 |
msgid "Upgrade to Pro"
|
869 |
msgstr "Обновиться на Pro"
|
870 |
|
871 |
-
#: bws_menu.php:
|
872 |
msgid "Donate"
|
873 |
msgstr "Пожертвовать"
|
874 |
|
875 |
-
#: bws_menu.php:
|
876 |
msgid "Activate this plugin"
|
877 |
msgstr "Активировать плагин"
|
878 |
|
879 |
-
#: bws_menu.php:
|
880 |
msgid "Install this plugin"
|
881 |
msgstr "Установить этот плагин"
|
882 |
|
883 |
-
#: bws_menu.php:
|
884 |
msgid "Nothing found. Try another criteria."
|
885 |
msgstr "Ничего не найдено. Попробуйте другие критерии."
|
886 |
|
887 |
-
#: bws_menu.php:
|
888 |
#, php-format
|
889 |
msgid "By %s"
|
890 |
msgstr "%s"
|
891 |
|
892 |
-
#: bws_menu.php:
|
893 |
msgid "Already Installed"
|
894 |
msgstr "Уже установлена"
|
895 |
|
896 |
-
#: bws_menu.php:
|
897 |
msgid "Browse Free WordPress Themes"
|
898 |
msgstr "Обзор бесплатных WordPress тем"
|
899 |
|
900 |
-
#: bws_menu.php:
|
901 |
msgid "Send to support"
|
902 |
msgstr "Отправить в тех. поддержку"
|
903 |
|
904 |
-
#: bws_menu.php:
|
905 |
msgid "Send to custom email »"
|
906 |
msgstr "Отправить на емейл »"
|
907 |
|
908 |
-
#: bws_menu.php:
|
909 |
msgid "Environment"
|
910 |
msgstr "Системная среда"
|
911 |
|
912 |
-
#: bws_menu.php:
|
913 |
msgid "Active Plugins"
|
914 |
msgstr "Активированные плагины"
|
915 |
|
916 |
-
#: bws_menu.php:
|
917 |
msgid "Inactive Plugins"
|
918 |
msgstr "Неактивированные плагины"
|
919 |
|
@@ -953,6 +939,20 @@ msgstr "Утилиты"
|
|
953 |
msgid "Other"
|
954 |
msgstr "Другое"
|
955 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
956 |
#~ msgid "My Account"
|
957 |
#~ msgstr "Мой аккаунт"
|
958 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-08-04 15:44+0300\n"
|
6 |
+
"PO-Revision-Date: 2016-08-04 15:44+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
20 |
msgid "Plugins"
|
21 |
msgstr "Плагины"
|
22 |
|
23 |
+
#: bws_functions.php:39 bws_menu.php:283 bws_menu.php:581
|
24 |
msgid "Themes"
|
25 |
msgstr "Темы"
|
26 |
|
64 |
msgid "Let's get started"
|
65 |
msgstr "Давайте начнем"
|
66 |
|
67 |
+
#: bws_functions.php:120 bws_functions.php:153 bws_menu.php:527
|
68 |
+
#: bws_menu.php:529
|
69 |
msgid "Settings"
|
70 |
msgstr "Настройки"
|
71 |
|
72 |
+
#: bws_functions.php:122 bws_functions.php:479 bws_menu.php:298
|
73 |
msgid "or"
|
74 |
msgstr "или"
|
75 |
|
78 |
msgstr "Добавить"
|
79 |
|
80 |
#: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
|
81 |
+
#: bws_functions.php:727 bws_functions.php:831
|
82 |
msgid "Close notice"
|
83 |
msgstr "Закрыть"
|
84 |
|
110 |
msgid "Extend standard plugin functionality with new great options."
|
111 |
msgstr "Расширяет возможности стандартного функционала плагина."
|
112 |
|
113 |
+
#: bws_functions.php:222 bws_functions.php:666 bws_menu.php:597
|
114 |
msgid "Learn More"
|
115 |
msgstr "Подробнее"
|
116 |
|
262 |
msgstr "Попробуйте %s-дневную Trial версию бесплатно"
|
263 |
|
264 |
#: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
|
265 |
+
#: bws_functions.php:532 bws_functions.php:1401 bws_menu.php:315
|
266 |
+
#: bws_menu.php:533 bws_menu.php:542
|
267 |
msgid "Activate"
|
268 |
msgstr "Активировать"
|
269 |
|
278 |
msgid "After that you can activate it by entering your license key."
|
279 |
msgstr "После этого вы сможете активировать его введя лицензионный ключ."
|
280 |
|
281 |
+
#: bws_functions.php:526 bws_menu.php:118 bws_menu.php:304
|
282 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
283 |
msgstr "К сожалению, вы превысили количество доступных попыток."
|
284 |
|
349 |
"(ваше имя пользователя - это емейл, указанный при покупке). При "
|
350 |
"необходимости нажмите \"Забыли пароль?\"."
|
351 |
|
352 |
+
#: bws_functions.php:651 bws_menu.php:306 bws_menu.php:317
|
353 |
msgid "Check license key"
|
354 |
msgstr "Проверка лицензионного ключа"
|
355 |
|
356 |
+
#: bws_functions.php:666
|
357 |
msgid "WARNING: Illegal use notification"
|
358 |
msgstr "ВНИМАНИЕ: уведомление о незаконном использовании"
|
359 |
|
360 |
+
#: bws_functions.php:666
|
361 |
msgid ""
|
362 |
"You can use one license of the Pro plugin for one domain only. Please check "
|
363 |
"and edit your license or domain if necessary using you personal Client Area. "
|
369 |
"используя Ваш личный Client Area. Мы настоятельно рекомендуем вам решить "
|
370 |
"проблему в течение 24 часов, в противном случае плагин будет деактивирован."
|
371 |
|
372 |
+
#: bws_functions.php:675
|
373 |
msgid ""
|
374 |
"Notice: Your Pro Trial license has expired. To continue using the plugin you "
|
375 |
"should buy a Pro license"
|
377 |
"Внимание: Срок действия Pro Trial версии истек. Чтобы продолжить "
|
378 |
"пользоваться плагином, пожалуйста, приобретите лицензию Pro"
|
379 |
|
380 |
+
#: bws_functions.php:677
|
381 |
msgid ""
|
382 |
"Your license has expired. To continue getting top-priority support and "
|
383 |
"plugin updates you should extend it."
|
386 |
"плагин в дальнейшем и иметь приоритетную тех.поддержку, то вам нужно "
|
387 |
"продлить лицензию."
|
388 |
|
389 |
+
#: bws_functions.php:677 bws_functions.php:731 bws_functions.php:1356
|
390 |
msgid "Learn more"
|
391 |
msgstr "Подробнее"
|
392 |
|
393 |
+
#: bws_functions.php:688
|
394 |
#, php-format
|
395 |
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
396 |
msgstr "Внимание: Вы используете Pro Trial версию плагина %s."
|
397 |
|
398 |
+
#: bws_functions.php:690
|
399 |
msgid "Notice: You are using the Pro Trial license of plugin."
|
400 |
msgstr "Внимание: Вы используете Pro Trial версию плагина."
|
401 |
|
402 |
+
#: bws_functions.php:693
|
403 |
msgid "The Pro Trial license will expire on"
|
404 |
msgstr "Ваша лицензия Pro Trial версии плагина истекает"
|
405 |
|
406 |
+
#: bws_functions.php:731
|
407 |
msgid "You license for"
|
408 |
msgstr "Ваш лицензионный ключ для"
|
409 |
|
410 |
+
#: bws_functions.php:731
|
411 |
msgid "expires on"
|
412 |
msgstr "истекает"
|
413 |
|
414 |
+
#: bws_functions.php:731
|
415 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
416 |
msgstr "и вы не будете получать приоритетную тех.поддержку или обновления."
|
417 |
|
418 |
+
#: bws_functions.php:826
|
419 |
msgid "Thank you for choosing"
|
420 |
msgstr "Спасибо за выбор"
|
421 |
|
422 |
+
#: bws_functions.php:827
|
423 |
msgid ""
|
424 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
425 |
"we'd love to hear about it!"
|
428 |
"функционала плагина, пожалуйста, присылайте их нам! Мы вседа открыты для "
|
429 |
"новых идей!"
|
430 |
|
431 |
+
#: bws_functions.php:828
|
432 |
msgid "Suggest a Feature"
|
433 |
msgstr "Предложить функционал"
|
434 |
|
435 |
+
#: bws_functions.php:844
|
436 |
msgid "Notice"
|
437 |
msgstr "Внимание"
|
438 |
|
439 |
+
#: bws_functions.php:844
|
440 |
msgid "The plugin's settings have been changed."
|
441 |
msgstr "Настройки плагина были изменены"
|
442 |
|
443 |
+
#: bws_functions.php:845 bws_functions.php:1412
|
444 |
msgid "Save Changes"
|
445 |
msgstr "Сохранить изменения"
|
446 |
|
447 |
+
#: bws_functions.php:859
|
448 |
msgid ""
|
449 |
"You can always look at premium options by clicking on the \"Show Pro features"
|
450 |
"\" in the \"Go PRO\" tab"
|
452 |
"Вы всегда можете просмотреть премиум опции нажав на кнопку \"Показать Pro "
|
453 |
"опции\" на вкладке \"Перейти на PRO\""
|
454 |
|
455 |
+
#: bws_functions.php:988
|
456 |
msgid "Add shortcode"
|
457 |
msgstr "Добавить шорткод"
|
458 |
|
459 |
+
#: bws_functions.php:988
|
460 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
461 |
msgstr "Добавьте шорткоды BestWebSoft плагинов с помощью этой кнопки."
|
462 |
|
463 |
+
#: bws_functions.php:1037
|
464 |
msgid "Close"
|
465 |
msgstr "Закрыть"
|
466 |
|
467 |
+
#: bws_functions.php:1129
|
468 |
msgid "Restore all plugin settings to defaults"
|
469 |
msgstr "Восстановить все настройки плагина к настройкам по умолчанию"
|
470 |
|
471 |
+
#: bws_functions.php:1131
|
472 |
msgid "Restore settings"
|
473 |
msgstr "Восстановить настройки"
|
474 |
|
475 |
+
#: bws_functions.php:1142
|
476 |
msgid "Are you sure you want to restore all settings by default?"
|
477 |
msgstr ""
|
478 |
"Вы уверены что хотите восстановить все настройки плагина к настройкам по "
|
479 |
"умолчанию?"
|
480 |
|
481 |
+
#: bws_functions.php:1145
|
482 |
msgid "Yes, restore all settings"
|
483 |
msgstr "Да, восстановить все настройки"
|
484 |
|
485 |
+
#: bws_functions.php:1146
|
486 |
msgid "No, go back to the settings page"
|
487 |
msgstr "Нет, вернуться на страницу настроек"
|
488 |
|
489 |
+
#: bws_functions.php:1192
|
490 |
msgid "Plugin"
|
491 |
msgstr "Плагин"
|
492 |
|
493 |
+
#: bws_functions.php:1201
|
494 |
msgid "Shortcode settings"
|
495 |
msgstr "Настройки шорткода"
|
496 |
|
497 |
+
#: bws_functions.php:1206
|
498 |
msgid "The shortcode will be inserted"
|
499 |
msgstr "Будет вставлен шорткод"
|
500 |
|
501 |
+
#: bws_functions.php:1211
|
502 |
msgid "Insert"
|
503 |
msgstr "Вставить"
|
504 |
|
505 |
+
#: bws_functions.php:1244
|
506 |
msgid "Visit Help Center"
|
507 |
msgstr "Перейти в Help Center"
|
508 |
|
509 |
+
#: bws_functions.php:1249
|
510 |
msgid "FAQ"
|
511 |
msgstr "FAQ"
|
512 |
|
513 |
+
#: bws_functions.php:1255
|
514 |
msgid "For more information:"
|
515 |
msgstr "Для дополнительной информации:"
|
516 |
|
517 |
+
#: bws_functions.php:1256
|
518 |
msgid "Documentation"
|
519 |
msgstr "Документация"
|
520 |
|
521 |
+
#: bws_functions.php:1257
|
522 |
msgid "Video Instructions"
|
523 |
msgstr "Видео инструкции"
|
524 |
|
525 |
+
#: bws_functions.php:1258
|
526 |
msgid "Submit a Request"
|
527 |
msgstr "Отправить запрос"
|
528 |
|
529 |
+
#: bws_functions.php:1269
|
530 |
msgid "You do not have sufficient permissions to edit plugins for this site."
|
531 |
msgstr ""
|
532 |
"У вас недостаточно полномочий, чтобы редактировать плагины на этом сайте."
|
533 |
|
534 |
+
#: bws_functions.php:1320 bws_functions.php:1347
|
535 |
#, php-format
|
536 |
msgid "File %s edited successfully."
|
537 |
msgstr "Файл %s успешно изменён."
|
538 |
|
539 |
+
#: bws_functions.php:1322 bws_functions.php:1349
|
540 |
msgid "Not enough permissions to create or update the file"
|
541 |
msgstr "Не достаточно прав для создания или обновления файла"
|
542 |
|
543 |
+
#: bws_functions.php:1352
|
544 |
msgid "Not enough permissions to create the file"
|
545 |
msgstr "Не достаточно прав для создания файла"
|
546 |
|
547 |
+
#: bws_functions.php:1390
|
548 |
msgid "These styles will be added to the header on all pages of your site."
|
549 |
msgstr "Эти стили будут добавлены в хедер на всех страницах вашего сайта."
|
550 |
|
551 |
+
#: bws_functions.php:1392
|
552 |
#, php-format
|
553 |
msgid ""
|
554 |
+
"This PHP code will be hooked to the %s action and will be printed on front "
|
555 |
"end only."
|
556 |
msgstr ""
|
557 |
"Этот PHP код будет прикреплен к %s аction и будет добавлен только во "
|
558 |
"фронтенде."
|
559 |
|
560 |
+
#: bws_functions.php:1396
|
561 |
msgid "Editing"
|
562 |
msgstr "Редактирование"
|
563 |
|
564 |
+
#: bws_functions.php:1398
|
565 |
msgid "Browsing"
|
566 |
msgstr "Просмотр"
|
567 |
|
568 |
+
#: bws_functions.php:1405
|
569 |
#, php-format
|
570 |
msgid "Learn more about %s"
|
571 |
msgstr "Подробнее о %s"
|
572 |
|
573 |
+
#: bws_functions.php:1416
|
574 |
#, php-format
|
575 |
msgid ""
|
576 |
"You need to make this files writable before you can save your changes. See "
|
727 |
msgid "Sorry, email message could not be delivered."
|
728 |
msgstr "Извините, ваш емейл не может быть отправлен."
|
729 |
|
730 |
+
#: bws_menu.php:286 bws_menu.php:632
|
731 |
msgid "System status"
|
732 |
msgstr "Системная информация"
|
733 |
|
748 |
msgid "Get Access to %s+ Premium Plugins"
|
749 |
msgstr "Получить Доступ к %s+ Премиум Плагинам"
|
750 |
|
751 |
+
#: bws_menu.php:298
|
752 |
+
msgid "Subscribe to Pro Membership"
|
753 |
+
msgstr "Подписаться на Pro Membership"
|
|
|
|
|
|
|
|
|
|
|
|
|
754 |
|
755 |
#: bws_menu.php:309
|
756 |
msgid "Enter your license key"
|
757 |
msgstr "Ваш лицензионный ключ"
|
758 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
759 |
#: bws_menu.php:331
|
760 |
msgid "Upload Plugin"
|
761 |
msgstr "Добавить новый"
|
813 |
msgid "Return to BestWebSoft Panel"
|
814 |
msgstr "Возврат к BestWebSoft Panel"
|
815 |
|
816 |
+
#: bws_menu.php:419 bws_menu.php:434 bws_menu.php:563
|
817 |
msgid "All"
|
818 |
msgstr "Все"
|
819 |
|
820 |
+
#: bws_menu.php:420 bws_menu.php:620
|
821 |
msgid "Installed"
|
822 |
msgstr "Установленные"
|
823 |
|
829 |
msgid "Filter results"
|
830 |
msgstr "Фильтр результатов"
|
831 |
|
832 |
+
#: bws_menu.php:430 bws_menu.php:559
|
833 |
msgid "Category"
|
834 |
msgstr "Категория"
|
835 |
|
836 |
+
#: bws_menu.php:494
|
837 |
+
msgid "Not installed"
|
838 |
+
msgstr "Не установлен"
|
839 |
+
|
840 |
+
#: bws_menu.php:498
|
841 |
msgid "Renew to get updates"
|
842 |
msgstr "Продлить для обновления"
|
843 |
|
844 |
+
#: bws_menu.php:501
|
845 |
#, php-format
|
846 |
msgid "Update to v %s"
|
847 |
msgstr "Обновить до версии %s"
|
848 |
|
849 |
+
#: bws_menu.php:513 bws_menu.php:536 bws_menu.php:545
|
850 |
msgid "Install Now"
|
851 |
msgstr "Установить"
|
852 |
|
853 |
+
#: bws_menu.php:519
|
854 |
msgid "Upgrade to Pro"
|
855 |
msgstr "Обновиться на Pro"
|
856 |
|
857 |
+
#: bws_menu.php:523
|
858 |
msgid "Donate"
|
859 |
msgstr "Пожертвовать"
|
860 |
|
861 |
+
#: bws_menu.php:533 bws_menu.php:542
|
862 |
msgid "Activate this plugin"
|
863 |
msgstr "Активировать плагин"
|
864 |
|
865 |
+
#: bws_menu.php:545
|
866 |
msgid "Install this plugin"
|
867 |
msgstr "Установить этот плагин"
|
868 |
|
869 |
+
#: bws_menu.php:554
|
870 |
msgid "Nothing found. Try another criteria."
|
871 |
msgstr "Ничего не найдено. Попробуйте другие критерии."
|
872 |
|
873 |
+
#: bws_menu.php:591 bws_menu.php:611
|
874 |
#, php-format
|
875 |
msgid "By %s"
|
876 |
msgstr "%s"
|
877 |
|
878 |
+
#: bws_menu.php:618
|
879 |
msgid "Already Installed"
|
880 |
msgstr "Уже установлена"
|
881 |
|
882 |
+
#: bws_menu.php:629
|
883 |
msgid "Browse Free WordPress Themes"
|
884 |
msgstr "Обзор бесплатных WordPress тем"
|
885 |
|
886 |
+
#: bws_menu.php:638
|
887 |
msgid "Send to support"
|
888 |
msgstr "Отправить в тех. поддержку"
|
889 |
|
890 |
+
#: bws_menu.php:645
|
891 |
msgid "Send to custom email »"
|
892 |
msgstr "Отправить на емейл »"
|
893 |
|
894 |
+
#: bws_menu.php:652
|
895 |
msgid "Environment"
|
896 |
msgstr "Системная среда"
|
897 |
|
898 |
+
#: bws_menu.php:663
|
899 |
msgid "Active Plugins"
|
900 |
msgstr "Активированные плагины"
|
901 |
|
902 |
+
#: bws_menu.php:676
|
903 |
msgid "Inactive Plugins"
|
904 |
msgstr "Неактивированные плагины"
|
905 |
|
939 |
msgid "Other"
|
940 |
msgstr "Другое"
|
941 |
|
942 |
+
#~ msgid "Activate Membership"
|
943 |
+
#~ msgstr "Активировать Membership"
|
944 |
+
|
945 |
+
#~ msgid "Don’t have valid license key yet?"
|
946 |
+
#~ msgstr "Нет действующего лицензионного ключа?"
|
947 |
+
|
948 |
+
#~ msgid ""
|
949 |
+
#~ "Join BestWebSoft Pro Membership today, cancel any time and use all "
|
950 |
+
#~ "plugins on a single website %s for only %s per month."
|
951 |
+
#~ msgstr ""
|
952 |
+
#~ "Присоединяйтесь к BestWebSoft Pro Membership сегодня, отменяйте подписку "
|
953 |
+
#~ "в любое время и используйте все плагины на одном сайте %s всего лишь за "
|
954 |
+
#~ "%s в месяц."
|
955 |
+
|
956 |
#~ msgid "My Account"
|
957 |
#~ msgstr "Мой аккаунт"
|
958 |
|
bws_menu/languages/bestwebsoft-uk.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-uk.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
@@ -20,7 +20,7 @@ msgstr ""
|
|
20 |
msgid "Plugins"
|
21 |
msgstr "Плагіни"
|
22 |
|
23 |
-
#: bws_functions.php:39 bws_menu.php:283 bws_menu.php:
|
24 |
msgid "Themes"
|
25 |
msgstr "Теми"
|
26 |
|
@@ -64,12 +64,12 @@ msgstr "Дякуємо, що встановили"
|
|
64 |
msgid "Let's get started"
|
65 |
msgstr "Розпочнемо"
|
66 |
|
67 |
-
#: bws_functions.php:120 bws_functions.php:153 bws_menu.php:
|
68 |
-
#: bws_menu.php:
|
69 |
msgid "Settings"
|
70 |
msgstr "Налаштування"
|
71 |
|
72 |
-
#: bws_functions.php:122 bws_functions.php:479
|
73 |
msgid "or"
|
74 |
msgstr "або"
|
75 |
|
@@ -78,7 +78,7 @@ msgid "Add New"
|
|
78 |
msgstr "Додати"
|
79 |
|
80 |
#: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
|
81 |
-
#: bws_functions.php:
|
82 |
msgid "Close notice"
|
83 |
msgstr "Закрити"
|
84 |
|
@@ -110,7 +110,7 @@ msgstr "версії!"
|
|
110 |
msgid "Extend standard plugin functionality with new great options."
|
111 |
msgstr "Розширює можливості стандартного функціоналу плагіна."
|
112 |
|
113 |
-
#: bws_functions.php:222 bws_functions.php:
|
114 |
msgid "Learn More"
|
115 |
msgstr "Дізнатись більше"
|
116 |
|
@@ -262,8 +262,8 @@ msgid "Start Your Free %s-Day Trial Now"
|
|
262 |
msgstr "Спробуйте %s-денну тріал версію безкоштовно"
|
263 |
|
264 |
#: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
|
265 |
-
#: bws_functions.php:532 bws_functions.php:
|
266 |
-
#: bws_menu.php:
|
267 |
msgid "Activate"
|
268 |
msgstr "Активувати"
|
269 |
|
@@ -277,7 +277,7 @@ msgstr "Щоб продовжити користуватись плагіном,
|
|
277 |
msgid "After that you can activate it by entering your license key."
|
278 |
msgstr "Після цього ви зможете активувати його ввівши ліцензійний ключ."
|
279 |
|
280 |
-
#: bws_functions.php:526 bws_menu.php:118 bws_menu.php:
|
281 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
282 |
msgstr "На жаль, ви перевищили кількість допустимих спроб."
|
283 |
|
@@ -349,15 +349,15 @@ msgstr ""
|
|
349 |
"(ваше ім'я користувача - це емейл, який ви вказували при купівлі). При "
|
350 |
"необхідності, будь ласка, відправте запит на відновлення вашого паролю."
|
351 |
|
352 |
-
#: bws_functions.php:651 bws_menu.php:
|
353 |
msgid "Check license key"
|
354 |
msgstr "Перевірте ліцензійний ключ"
|
355 |
|
356 |
-
#: bws_functions.php:
|
357 |
msgid "WARNING: Illegal use notification"
|
358 |
msgstr "УВАГА: виявлено несанкціоноване використання плагіну"
|
359 |
|
360 |
-
#: bws_functions.php:
|
361 |
msgid ""
|
362 |
"You can use one license of the Pro plugin for one domain only. Please check "
|
363 |
"and edit your license or domain if necessary using you personal Client Area. "
|
@@ -369,7 +369,7 @@ msgstr ""
|
|
369 |
"вкладці Client Area. Ми настійливо рекомендуємо Вам вирішити це питання "
|
370 |
"протягом 24 годин, інакше плагін буде деактивовано."
|
371 |
|
372 |
-
#: bws_functions.php:
|
373 |
msgid ""
|
374 |
"Notice: Your Pro Trial license has expired. To continue using the plugin you "
|
375 |
"should buy a Pro license"
|
@@ -377,7 +377,7 @@ msgstr ""
|
|
377 |
"Увага: Термін дії тріал періоду Pro версії плагіну скінчився. Щоб продовжити "
|
378 |
"користуватись плагіном, будь ласка, придбайте ліцензію Pro"
|
379 |
|
380 |
-
#: bws_functions.php:
|
381 |
msgid ""
|
382 |
"Your license has expired. To continue getting top-priority support and "
|
383 |
"plugin updates you should extend it."
|
@@ -385,42 +385,42 @@ msgstr ""
|
|
385 |
"Строк вашої ліцензії витік. Якщо ви хочете оновлювати наш плагін у "
|
386 |
"майбутньому, вам слід подовжити ліцензію."
|
387 |
|
388 |
-
#: bws_functions.php:
|
389 |
msgid "Learn more"
|
390 |
msgstr "Дізнатись більше"
|
391 |
|
392 |
-
#: bws_functions.php:
|
393 |
#, php-format
|
394 |
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
395 |
msgstr "Увага: Ви використовуєте тріал Pro версію плагіну %s."
|
396 |
|
397 |
-
#: bws_functions.php:
|
398 |
msgid "Notice: You are using the Pro Trial license of plugin."
|
399 |
msgstr "Увага: Ви використовуєте тріал Pro версію плагіну."
|
400 |
|
401 |
-
#: bws_functions.php:
|
402 |
msgid "The Pro Trial license will expire on"
|
403 |
msgstr "Тріал період Pro версії плагіну закінчується"
|
404 |
|
405 |
-
#: bws_functions.php:
|
406 |
msgid "You license for"
|
407 |
msgstr "Ваша ліцензія для"
|
408 |
|
409 |
-
#: bws_functions.php:
|
410 |
msgid "expires on"
|
411 |
msgstr "витікає"
|
412 |
|
413 |
-
#: bws_functions.php:
|
414 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
415 |
msgstr ""
|
416 |
"та ви більше не будете отримувати першочергову технічну підтримку та "
|
417 |
"оновлення."
|
418 |
|
419 |
-
#: bws_functions.php:
|
420 |
msgid "Thank you for choosing"
|
421 |
msgstr "Дякуємо, що обрали"
|
422 |
|
423 |
-
#: bws_functions.php:
|
424 |
msgid ""
|
425 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
426 |
"we'd love to hear about it!"
|
@@ -429,23 +429,23 @@ msgstr ""
|
|
429 |
"функціоналу плагіна, будь ласка, надсилайте їх нам! Ми завжди відкриті для "
|
430 |
"нових ідей!"
|
431 |
|
432 |
-
#: bws_functions.php:
|
433 |
msgid "Suggest a Feature"
|
434 |
msgstr "Запропонувати функціонал"
|
435 |
|
436 |
-
#: bws_functions.php:
|
437 |
msgid "Notice"
|
438 |
msgstr "Зауважте"
|
439 |
|
440 |
-
#: bws_functions.php:
|
441 |
msgid "The plugin's settings have been changed."
|
442 |
msgstr "Налаштування плагіну змінено."
|
443 |
|
444 |
-
#: bws_functions.php:
|
445 |
msgid "Save Changes"
|
446 |
msgstr "Зберегти зміни"
|
447 |
|
448 |
-
#: bws_functions.php:
|
449 |
msgid ""
|
450 |
"You can always look at premium options by clicking on the \"Show Pro features"
|
451 |
"\" in the \"Go PRO\" tab"
|
@@ -453,121 +453,121 @@ msgstr ""
|
|
453 |
"Ви завжди можете подивитися на преміум опції, натиснувши на кнопку "
|
454 |
"\"Показати Pro особливост\" на вкладці \"Перейти на PRO\""
|
455 |
|
456 |
-
#: bws_functions.php:
|
457 |
msgid "Add shortcode"
|
458 |
msgstr "Додати шорткод"
|
459 |
|
460 |
-
#: bws_functions.php:
|
461 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
462 |
msgstr "Додайте шорткоди BestWebSoft плагінів за допомогою цієї кнопки."
|
463 |
|
464 |
-
#: bws_functions.php:
|
465 |
msgid "Close"
|
466 |
msgstr "Закрити"
|
467 |
|
468 |
-
#: bws_functions.php:
|
469 |
msgid "Restore all plugin settings to defaults"
|
470 |
msgstr "Скинути налаштування плагіну до стандартних"
|
471 |
|
472 |
-
#: bws_functions.php:
|
473 |
msgid "Restore settings"
|
474 |
msgstr "Скинути налаштування"
|
475 |
|
476 |
-
#: bws_functions.php:
|
477 |
msgid "Are you sure you want to restore all settings by default?"
|
478 |
msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
|
479 |
|
480 |
-
#: bws_functions.php:
|
481 |
msgid "Yes, restore all settings"
|
482 |
msgstr "Так, скинути налаштування"
|
483 |
|
484 |
-
#: bws_functions.php:
|
485 |
msgid "No, go back to the settings page"
|
486 |
msgstr "Ні, повернутись назад на сторінку налаштувань"
|
487 |
|
488 |
-
#: bws_functions.php:
|
489 |
msgid "Plugin"
|
490 |
msgstr "Плагін"
|
491 |
|
492 |
-
#: bws_functions.php:
|
493 |
msgid "Shortcode settings"
|
494 |
msgstr "Налаштування шорткоду"
|
495 |
|
496 |
-
#: bws_functions.php:
|
497 |
msgid "The shortcode will be inserted"
|
498 |
msgstr "Буде вставлено шорткод"
|
499 |
|
500 |
-
#: bws_functions.php:
|
501 |
msgid "Insert"
|
502 |
msgstr "Вставити"
|
503 |
|
504 |
-
#: bws_functions.php:
|
505 |
msgid "Visit Help Center"
|
506 |
msgstr "Перейти в Help Center"
|
507 |
|
508 |
-
#: bws_functions.php:
|
509 |
msgid "FAQ"
|
510 |
msgstr "FAQ"
|
511 |
|
512 |
-
#: bws_functions.php:
|
513 |
msgid "For more information:"
|
514 |
msgstr "Для отримання додаткової інформації:"
|
515 |
|
516 |
-
#: bws_functions.php:
|
517 |
msgid "Documentation"
|
518 |
msgstr "Документація"
|
519 |
|
520 |
-
#: bws_functions.php:
|
521 |
msgid "Video Instructions"
|
522 |
msgstr "Відео інструкції"
|
523 |
|
524 |
-
#: bws_functions.php:
|
525 |
msgid "Submit a Request"
|
526 |
msgstr "Надіслати запит"
|
527 |
|
528 |
-
#: bws_functions.php:
|
529 |
msgid "You do not have sufficient permissions to edit plugins for this site."
|
530 |
msgstr "У вас недостатньо повноважень для редагування плагінів цього сайту."
|
531 |
|
532 |
-
#: bws_functions.php:
|
533 |
#, php-format
|
534 |
msgid "File %s edited successfully."
|
535 |
msgstr "Файл %s успішно відредаговано."
|
536 |
|
537 |
-
#: bws_functions.php:
|
538 |
msgid "Not enough permissions to create or update the file"
|
539 |
msgstr "У Вас недостатньо дозволів для створення або поновлення файлу"
|
540 |
|
541 |
-
#: bws_functions.php:
|
542 |
msgid "Not enough permissions to create the file"
|
543 |
msgstr "У Вас недостатньо дозволів для створення файлу"
|
544 |
|
545 |
-
#: bws_functions.php:
|
546 |
msgid "These styles will be added to the header on all pages of your site."
|
547 |
msgstr "Ці стилі будуть додані в заголовок на всіх сторінках вашого сайту."
|
548 |
|
549 |
-
#: bws_functions.php:
|
550 |
#, php-format
|
551 |
msgid ""
|
552 |
-
"
|
553 |
"end only."
|
554 |
msgstr ""
|
555 |
"Цей PHP код буде прикріплений до %s action і буде додано лише у фронтенді."
|
556 |
|
557 |
-
#: bws_functions.php:
|
558 |
msgid "Editing"
|
559 |
msgstr "Редагування"
|
560 |
|
561 |
-
#: bws_functions.php:
|
562 |
msgid "Browsing"
|
563 |
msgstr "Огляд"
|
564 |
|
565 |
-
#: bws_functions.php:
|
566 |
#, php-format
|
567 |
msgid "Learn more about %s"
|
568 |
msgstr "Дізнатись більше про %s"
|
569 |
|
570 |
-
#: bws_functions.php:
|
571 |
#, php-format
|
572 |
msgid ""
|
573 |
"You need to make this files writable before you can save your changes. See "
|
@@ -724,7 +724,7 @@ msgstr "Дякуємо, що звернулись до нас."
|
|
724 |
msgid "Sorry, email message could not be delivered."
|
725 |
msgstr "Вибачте, ваше емейл не може бути доставлено"
|
726 |
|
727 |
-
#: bws_menu.php:286 bws_menu.php:
|
728 |
msgid "System status"
|
729 |
msgstr "Системна інформація"
|
730 |
|
@@ -745,32 +745,14 @@ msgstr "Client Area"
|
|
745 |
msgid "Get Access to %s+ Premium Plugins"
|
746 |
msgstr "Отримати Доступ до %s+ Преміум Плагинам"
|
747 |
|
748 |
-
#: bws_menu.php:
|
749 |
-
|
750 |
-
|
751 |
-
"Join BestWebSoft Pro Membership today, cancel any time and use all plugins "
|
752 |
-
"on a single website %s for only %s per month."
|
753 |
-
msgstr ""
|
754 |
-
"Приєднуйтесь до BestWebSoft Pro Membership сьогодні, скасовуйте підписку в "
|
755 |
-
"будь-який час і використовуйте всі плагіни на одному сайті %s всього лише за "
|
756 |
-
"%s в місяць."
|
757 |
|
758 |
#: bws_menu.php:309
|
759 |
msgid "Enter your license key"
|
760 |
msgstr "Ваш ліцензійний ключ"
|
761 |
|
762 |
-
#: bws_menu.php:313
|
763 |
-
msgid "Activate Membership"
|
764 |
-
msgstr "Активувати Membership"
|
765 |
-
|
766 |
-
#: bws_menu.php:322
|
767 |
-
msgid "Don’t have valid license key yet?"
|
768 |
-
msgstr "Немає чинного ліцензійного ключа?"
|
769 |
-
|
770 |
-
#: bws_menu.php:322
|
771 |
-
msgid "Subscribe to Pro Membership Now"
|
772 |
-
msgstr "Підписатися на Pro Membership Зараз"
|
773 |
-
|
774 |
#: bws_menu.php:331
|
775 |
msgid "Upload Plugin"
|
776 |
msgstr "Завантажити плагін"
|
@@ -828,11 +810,11 @@ msgstr "Активувати плагін"
|
|
828 |
msgid "Return to BestWebSoft Panel"
|
829 |
msgstr "Назад до BestWebSoft Panel"
|
830 |
|
831 |
-
#: bws_menu.php:419 bws_menu.php:434 bws_menu.php:
|
832 |
msgid "All"
|
833 |
msgstr "Всі"
|
834 |
|
835 |
-
#: bws_menu.php:420
|
836 |
msgid "Installed"
|
837 |
msgstr "Встановлені"
|
838 |
|
@@ -844,73 +826,77 @@ msgstr "Не встановлені"
|
|
844 |
msgid "Filter results"
|
845 |
msgstr "Фільтр результатів"
|
846 |
|
847 |
-
#: bws_menu.php:430 bws_menu.php:
|
848 |
msgid "Category"
|
849 |
msgstr "Категорія"
|
850 |
|
851 |
-
#: bws_menu.php:
|
|
|
|
|
|
|
|
|
852 |
msgid "Renew to get updates"
|
853 |
msgstr "Продовжити для поновлення"
|
854 |
|
855 |
-
#: bws_menu.php:
|
856 |
#, php-format
|
857 |
msgid "Update to v %s"
|
858 |
msgstr "Оновити до версії %s"
|
859 |
|
860 |
-
#: bws_menu.php:
|
861 |
msgid "Install Now"
|
862 |
msgstr "Встановити"
|
863 |
|
864 |
-
#: bws_menu.php:
|
865 |
msgid "Upgrade to Pro"
|
866 |
msgstr "Оновитися на Pro"
|
867 |
|
868 |
-
#: bws_menu.php:
|
869 |
msgid "Donate"
|
870 |
msgstr "Пожертвувати"
|
871 |
|
872 |
-
#: bws_menu.php:
|
873 |
msgid "Activate this plugin"
|
874 |
msgstr "Активувати плагін"
|
875 |
|
876 |
-
#: bws_menu.php:
|
877 |
msgid "Install this plugin"
|
878 |
msgstr "Встановити плагін"
|
879 |
|
880 |
-
#: bws_menu.php:
|
881 |
msgid "Nothing found. Try another criteria."
|
882 |
msgstr "Нічого не знайдено. Спробуйте інші критерії."
|
883 |
|
884 |
-
#: bws_menu.php:
|
885 |
#, php-format
|
886 |
msgid "By %s"
|
887 |
msgstr "За %s"
|
888 |
|
889 |
-
#: bws_menu.php:
|
890 |
msgid "Already Installed"
|
891 |
msgstr "Уже встановлено %s"
|
892 |
|
893 |
-
#: bws_menu.php:
|
894 |
msgid "Browse Free WordPress Themes"
|
895 |
msgstr "Огляд безкоштовних WordPress тем"
|
896 |
|
897 |
-
#: bws_menu.php:
|
898 |
msgid "Send to support"
|
899 |
msgstr "Відправити службі тех. підтримки"
|
900 |
|
901 |
-
#: bws_menu.php:
|
902 |
msgid "Send to custom email »"
|
903 |
msgstr "Відправити на електронну адресу »"
|
904 |
|
905 |
-
#: bws_menu.php:
|
906 |
msgid "Environment"
|
907 |
msgstr "Системне оточення"
|
908 |
|
909 |
-
#: bws_menu.php:
|
910 |
msgid "Active Plugins"
|
911 |
msgstr "Активні плагіни"
|
912 |
|
913 |
-
#: bws_menu.php:
|
914 |
msgid "Inactive Plugins"
|
915 |
msgstr "Не активні плагіни"
|
916 |
|
@@ -950,6 +936,20 @@ msgstr "Утиліти"
|
|
950 |
msgid "Other"
|
951 |
msgstr "Інше"
|
952 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
953 |
#~ msgid "My Account"
|
954 |
#~ msgstr "Мій аккаунт"
|
955 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-08-04 15:44+0300\n"
|
6 |
+
"PO-Revision-Date: 2016-08-04 15:44+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
20 |
msgid "Plugins"
|
21 |
msgstr "Плагіни"
|
22 |
|
23 |
+
#: bws_functions.php:39 bws_menu.php:283 bws_menu.php:581
|
24 |
msgid "Themes"
|
25 |
msgstr "Теми"
|
26 |
|
64 |
msgid "Let's get started"
|
65 |
msgstr "Розпочнемо"
|
66 |
|
67 |
+
#: bws_functions.php:120 bws_functions.php:153 bws_menu.php:527
|
68 |
+
#: bws_menu.php:529
|
69 |
msgid "Settings"
|
70 |
msgstr "Налаштування"
|
71 |
|
72 |
+
#: bws_functions.php:122 bws_functions.php:479 bws_menu.php:298
|
73 |
msgid "or"
|
74 |
msgstr "або"
|
75 |
|
78 |
msgstr "Додати"
|
79 |
|
80 |
#: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
|
81 |
+
#: bws_functions.php:727 bws_functions.php:831
|
82 |
msgid "Close notice"
|
83 |
msgstr "Закрити"
|
84 |
|
110 |
msgid "Extend standard plugin functionality with new great options."
|
111 |
msgstr "Розширює можливості стандартного функціоналу плагіна."
|
112 |
|
113 |
+
#: bws_functions.php:222 bws_functions.php:666 bws_menu.php:597
|
114 |
msgid "Learn More"
|
115 |
msgstr "Дізнатись більше"
|
116 |
|
262 |
msgstr "Спробуйте %s-денну тріал версію безкоштовно"
|
263 |
|
264 |
#: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
|
265 |
+
#: bws_functions.php:532 bws_functions.php:1401 bws_menu.php:315
|
266 |
+
#: bws_menu.php:533 bws_menu.php:542
|
267 |
msgid "Activate"
|
268 |
msgstr "Активувати"
|
269 |
|
277 |
msgid "After that you can activate it by entering your license key."
|
278 |
msgstr "Після цього ви зможете активувати його ввівши ліцензійний ключ."
|
279 |
|
280 |
+
#: bws_functions.php:526 bws_menu.php:118 bws_menu.php:304
|
281 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
282 |
msgstr "На жаль, ви перевищили кількість допустимих спроб."
|
283 |
|
349 |
"(ваше ім'я користувача - це емейл, який ви вказували при купівлі). При "
|
350 |
"необхідності, будь ласка, відправте запит на відновлення вашого паролю."
|
351 |
|
352 |
+
#: bws_functions.php:651 bws_menu.php:306 bws_menu.php:317
|
353 |
msgid "Check license key"
|
354 |
msgstr "Перевірте ліцензійний ключ"
|
355 |
|
356 |
+
#: bws_functions.php:666
|
357 |
msgid "WARNING: Illegal use notification"
|
358 |
msgstr "УВАГА: виявлено несанкціоноване використання плагіну"
|
359 |
|
360 |
+
#: bws_functions.php:666
|
361 |
msgid ""
|
362 |
"You can use one license of the Pro plugin for one domain only. Please check "
|
363 |
"and edit your license or domain if necessary using you personal Client Area. "
|
369 |
"вкладці Client Area. Ми настійливо рекомендуємо Вам вирішити це питання "
|
370 |
"протягом 24 годин, інакше плагін буде деактивовано."
|
371 |
|
372 |
+
#: bws_functions.php:675
|
373 |
msgid ""
|
374 |
"Notice: Your Pro Trial license has expired. To continue using the plugin you "
|
375 |
"should buy a Pro license"
|
377 |
"Увага: Термін дії тріал періоду Pro версії плагіну скінчився. Щоб продовжити "
|
378 |
"користуватись плагіном, будь ласка, придбайте ліцензію Pro"
|
379 |
|
380 |
+
#: bws_functions.php:677
|
381 |
msgid ""
|
382 |
"Your license has expired. To continue getting top-priority support and "
|
383 |
"plugin updates you should extend it."
|
385 |
"Строк вашої ліцензії витік. Якщо ви хочете оновлювати наш плагін у "
|
386 |
"майбутньому, вам слід подовжити ліцензію."
|
387 |
|
388 |
+
#: bws_functions.php:677 bws_functions.php:731 bws_functions.php:1356
|
389 |
msgid "Learn more"
|
390 |
msgstr "Дізнатись більше"
|
391 |
|
392 |
+
#: bws_functions.php:688
|
393 |
#, php-format
|
394 |
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
395 |
msgstr "Увага: Ви використовуєте тріал Pro версію плагіну %s."
|
396 |
|
397 |
+
#: bws_functions.php:690
|
398 |
msgid "Notice: You are using the Pro Trial license of plugin."
|
399 |
msgstr "Увага: Ви використовуєте тріал Pro версію плагіну."
|
400 |
|
401 |
+
#: bws_functions.php:693
|
402 |
msgid "The Pro Trial license will expire on"
|
403 |
msgstr "Тріал період Pro версії плагіну закінчується"
|
404 |
|
405 |
+
#: bws_functions.php:731
|
406 |
msgid "You license for"
|
407 |
msgstr "Ваша ліцензія для"
|
408 |
|
409 |
+
#: bws_functions.php:731
|
410 |
msgid "expires on"
|
411 |
msgstr "витікає"
|
412 |
|
413 |
+
#: bws_functions.php:731
|
414 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
415 |
msgstr ""
|
416 |
"та ви більше не будете отримувати першочергову технічну підтримку та "
|
417 |
"оновлення."
|
418 |
|
419 |
+
#: bws_functions.php:826
|
420 |
msgid "Thank you for choosing"
|
421 |
msgstr "Дякуємо, що обрали"
|
422 |
|
423 |
+
#: bws_functions.php:827
|
424 |
msgid ""
|
425 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
426 |
"we'd love to hear about it!"
|
429 |
"функціоналу плагіна, будь ласка, надсилайте їх нам! Ми завжди відкриті для "
|
430 |
"нових ідей!"
|
431 |
|
432 |
+
#: bws_functions.php:828
|
433 |
msgid "Suggest a Feature"
|
434 |
msgstr "Запропонувати функціонал"
|
435 |
|
436 |
+
#: bws_functions.php:844
|
437 |
msgid "Notice"
|
438 |
msgstr "Зауважте"
|
439 |
|
440 |
+
#: bws_functions.php:844
|
441 |
msgid "The plugin's settings have been changed."
|
442 |
msgstr "Налаштування плагіну змінено."
|
443 |
|
444 |
+
#: bws_functions.php:845 bws_functions.php:1412
|
445 |
msgid "Save Changes"
|
446 |
msgstr "Зберегти зміни"
|
447 |
|
448 |
+
#: bws_functions.php:859
|
449 |
msgid ""
|
450 |
"You can always look at premium options by clicking on the \"Show Pro features"
|
451 |
"\" in the \"Go PRO\" tab"
|
453 |
"Ви завжди можете подивитися на преміум опції, натиснувши на кнопку "
|
454 |
"\"Показати Pro особливост\" на вкладці \"Перейти на PRO\""
|
455 |
|
456 |
+
#: bws_functions.php:988
|
457 |
msgid "Add shortcode"
|
458 |
msgstr "Додати шорткод"
|
459 |
|
460 |
+
#: bws_functions.php:988
|
461 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
462 |
msgstr "Додайте шорткоди BestWebSoft плагінів за допомогою цієї кнопки."
|
463 |
|
464 |
+
#: bws_functions.php:1037
|
465 |
msgid "Close"
|
466 |
msgstr "Закрити"
|
467 |
|
468 |
+
#: bws_functions.php:1129
|
469 |
msgid "Restore all plugin settings to defaults"
|
470 |
msgstr "Скинути налаштування плагіну до стандартних"
|
471 |
|
472 |
+
#: bws_functions.php:1131
|
473 |
msgid "Restore settings"
|
474 |
msgstr "Скинути налаштування"
|
475 |
|
476 |
+
#: bws_functions.php:1142
|
477 |
msgid "Are you sure you want to restore all settings by default?"
|
478 |
msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
|
479 |
|
480 |
+
#: bws_functions.php:1145
|
481 |
msgid "Yes, restore all settings"
|
482 |
msgstr "Так, скинути налаштування"
|
483 |
|
484 |
+
#: bws_functions.php:1146
|
485 |
msgid "No, go back to the settings page"
|
486 |
msgstr "Ні, повернутись назад на сторінку налаштувань"
|
487 |
|
488 |
+
#: bws_functions.php:1192
|
489 |
msgid "Plugin"
|
490 |
msgstr "Плагін"
|
491 |
|
492 |
+
#: bws_functions.php:1201
|
493 |
msgid "Shortcode settings"
|
494 |
msgstr "Налаштування шорткоду"
|
495 |
|
496 |
+
#: bws_functions.php:1206
|
497 |
msgid "The shortcode will be inserted"
|
498 |
msgstr "Буде вставлено шорткод"
|
499 |
|
500 |
+
#: bws_functions.php:1211
|
501 |
msgid "Insert"
|
502 |
msgstr "Вставити"
|
503 |
|
504 |
+
#: bws_functions.php:1244
|
505 |
msgid "Visit Help Center"
|
506 |
msgstr "Перейти в Help Center"
|
507 |
|
508 |
+
#: bws_functions.php:1249
|
509 |
msgid "FAQ"
|
510 |
msgstr "FAQ"
|
511 |
|
512 |
+
#: bws_functions.php:1255
|
513 |
msgid "For more information:"
|
514 |
msgstr "Для отримання додаткової інформації:"
|
515 |
|
516 |
+
#: bws_functions.php:1256
|
517 |
msgid "Documentation"
|
518 |
msgstr "Документація"
|
519 |
|
520 |
+
#: bws_functions.php:1257
|
521 |
msgid "Video Instructions"
|
522 |
msgstr "Відео інструкції"
|
523 |
|
524 |
+
#: bws_functions.php:1258
|
525 |
msgid "Submit a Request"
|
526 |
msgstr "Надіслати запит"
|
527 |
|
528 |
+
#: bws_functions.php:1269
|
529 |
msgid "You do not have sufficient permissions to edit plugins for this site."
|
530 |
msgstr "У вас недостатньо повноважень для редагування плагінів цього сайту."
|
531 |
|
532 |
+
#: bws_functions.php:1320 bws_functions.php:1347
|
533 |
#, php-format
|
534 |
msgid "File %s edited successfully."
|
535 |
msgstr "Файл %s успішно відредаговано."
|
536 |
|
537 |
+
#: bws_functions.php:1322 bws_functions.php:1349
|
538 |
msgid "Not enough permissions to create or update the file"
|
539 |
msgstr "У Вас недостатньо дозволів для створення або поновлення файлу"
|
540 |
|
541 |
+
#: bws_functions.php:1352
|
542 |
msgid "Not enough permissions to create the file"
|
543 |
msgstr "У Вас недостатньо дозволів для створення файлу"
|
544 |
|
545 |
+
#: bws_functions.php:1390
|
546 |
msgid "These styles will be added to the header on all pages of your site."
|
547 |
msgstr "Ці стилі будуть додані в заголовок на всіх сторінках вашого сайту."
|
548 |
|
549 |
+
#: bws_functions.php:1392
|
550 |
#, php-format
|
551 |
msgid ""
|
552 |
+
"This PHP code will be hooked to the %s action and will be printed on front "
|
553 |
"end only."
|
554 |
msgstr ""
|
555 |
"Цей PHP код буде прикріплений до %s action і буде додано лише у фронтенді."
|
556 |
|
557 |
+
#: bws_functions.php:1396
|
558 |
msgid "Editing"
|
559 |
msgstr "Редагування"
|
560 |
|
561 |
+
#: bws_functions.php:1398
|
562 |
msgid "Browsing"
|
563 |
msgstr "Огляд"
|
564 |
|
565 |
+
#: bws_functions.php:1405
|
566 |
#, php-format
|
567 |
msgid "Learn more about %s"
|
568 |
msgstr "Дізнатись більше про %s"
|
569 |
|
570 |
+
#: bws_functions.php:1416
|
571 |
#, php-format
|
572 |
msgid ""
|
573 |
"You need to make this files writable before you can save your changes. See "
|
724 |
msgid "Sorry, email message could not be delivered."
|
725 |
msgstr "Вибачте, ваше емейл не може бути доставлено"
|
726 |
|
727 |
+
#: bws_menu.php:286 bws_menu.php:632
|
728 |
msgid "System status"
|
729 |
msgstr "Системна інформація"
|
730 |
|
745 |
msgid "Get Access to %s+ Premium Plugins"
|
746 |
msgstr "Отримати Доступ до %s+ Преміум Плагинам"
|
747 |
|
748 |
+
#: bws_menu.php:298
|
749 |
+
msgid "Subscribe to Pro Membership"
|
750 |
+
msgstr "Підписатися на Pro Membership"
|
|
|
|
|
|
|
|
|
|
|
|
|
751 |
|
752 |
#: bws_menu.php:309
|
753 |
msgid "Enter your license key"
|
754 |
msgstr "Ваш ліцензійний ключ"
|
755 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
756 |
#: bws_menu.php:331
|
757 |
msgid "Upload Plugin"
|
758 |
msgstr "Завантажити плагін"
|
810 |
msgid "Return to BestWebSoft Panel"
|
811 |
msgstr "Назад до BestWebSoft Panel"
|
812 |
|
813 |
+
#: bws_menu.php:419 bws_menu.php:434 bws_menu.php:563
|
814 |
msgid "All"
|
815 |
msgstr "Всі"
|
816 |
|
817 |
+
#: bws_menu.php:420 bws_menu.php:620
|
818 |
msgid "Installed"
|
819 |
msgstr "Встановлені"
|
820 |
|
826 |
msgid "Filter results"
|
827 |
msgstr "Фільтр результатів"
|
828 |
|
829 |
+
#: bws_menu.php:430 bws_menu.php:559
|
830 |
msgid "Category"
|
831 |
msgstr "Категорія"
|
832 |
|
833 |
+
#: bws_menu.php:494
|
834 |
+
msgid "Not installed"
|
835 |
+
msgstr "Не встановлен"
|
836 |
+
|
837 |
+
#: bws_menu.php:498
|
838 |
msgid "Renew to get updates"
|
839 |
msgstr "Продовжити для поновлення"
|
840 |
|
841 |
+
#: bws_menu.php:501
|
842 |
#, php-format
|
843 |
msgid "Update to v %s"
|
844 |
msgstr "Оновити до версії %s"
|
845 |
|
846 |
+
#: bws_menu.php:513 bws_menu.php:536 bws_menu.php:545
|
847 |
msgid "Install Now"
|
848 |
msgstr "Встановити"
|
849 |
|
850 |
+
#: bws_menu.php:519
|
851 |
msgid "Upgrade to Pro"
|
852 |
msgstr "Оновитися на Pro"
|
853 |
|
854 |
+
#: bws_menu.php:523
|
855 |
msgid "Donate"
|
856 |
msgstr "Пожертвувати"
|
857 |
|
858 |
+
#: bws_menu.php:533 bws_menu.php:542
|
859 |
msgid "Activate this plugin"
|
860 |
msgstr "Активувати плагін"
|
861 |
|
862 |
+
#: bws_menu.php:545
|
863 |
msgid "Install this plugin"
|
864 |
msgstr "Встановити плагін"
|
865 |
|
866 |
+
#: bws_menu.php:554
|
867 |
msgid "Nothing found. Try another criteria."
|
868 |
msgstr "Нічого не знайдено. Спробуйте інші критерії."
|
869 |
|
870 |
+
#: bws_menu.php:591 bws_menu.php:611
|
871 |
#, php-format
|
872 |
msgid "By %s"
|
873 |
msgstr "За %s"
|
874 |
|
875 |
+
#: bws_menu.php:618
|
876 |
msgid "Already Installed"
|
877 |
msgstr "Уже встановлено %s"
|
878 |
|
879 |
+
#: bws_menu.php:629
|
880 |
msgid "Browse Free WordPress Themes"
|
881 |
msgstr "Огляд безкоштовних WordPress тем"
|
882 |
|
883 |
+
#: bws_menu.php:638
|
884 |
msgid "Send to support"
|
885 |
msgstr "Відправити службі тех. підтримки"
|
886 |
|
887 |
+
#: bws_menu.php:645
|
888 |
msgid "Send to custom email »"
|
889 |
msgstr "Відправити на електронну адресу »"
|
890 |
|
891 |
+
#: bws_menu.php:652
|
892 |
msgid "Environment"
|
893 |
msgstr "Системне оточення"
|
894 |
|
895 |
+
#: bws_menu.php:663
|
896 |
msgid "Active Plugins"
|
897 |
msgstr "Активні плагіни"
|
898 |
|
899 |
+
#: bws_menu.php:676
|
900 |
msgid "Inactive Plugins"
|
901 |
msgstr "Не активні плагіни"
|
902 |
|
936 |
msgid "Other"
|
937 |
msgstr "Інше"
|
938 |
|
939 |
+
#~ msgid "Activate Membership"
|
940 |
+
#~ msgstr "Активувати Membership"
|
941 |
+
|
942 |
+
#~ msgid "Don’t have valid license key yet?"
|
943 |
+
#~ msgstr "Немає чинного ліцензійного ключа?"
|
944 |
+
|
945 |
+
#~ msgid ""
|
946 |
+
#~ "Join BestWebSoft Pro Membership today, cancel any time and use all "
|
947 |
+
#~ "plugins on a single website %s for only %s per month."
|
948 |
+
#~ msgstr ""
|
949 |
+
#~ "Приєднуйтесь до BestWebSoft Pro Membership сьогодні, скасовуйте підписку "
|
950 |
+
#~ "в будь-який час і використовуйте всі плагіни на одному сайті %s всього "
|
951 |
+
#~ "лише за %s в місяць."
|
952 |
+
|
953 |
#~ msgid "My Account"
|
954 |
#~ msgstr "Мій аккаунт"
|
955 |
|
bws_menu/product_list.php
CHANGED
@@ -474,20 +474,25 @@ $bws_plugins = array(
|
|
474 |
)
|
475 |
);
|
476 |
|
477 |
-
$themes = array(
|
|
|
|
|
|
|
|
|
|
|
478 |
(object) array(
|
479 |
'name' => 'Real Estate',
|
480 |
'slug' => 'realestate',
|
481 |
'href' => 'http://bestwebsoft.com/products/real-estate-creative-wordpress-theme/'
|
482 |
),
|
|
|
|
|
|
|
|
|
|
|
483 |
(object) array(
|
484 |
'name' => 'Unity',
|
485 |
'slug' => 'unity',
|
486 |
'href' => 'http://bestwebsoft.com/products/unity-multipurpose-wordpress-theme/'
|
487 |
-
),
|
488 |
-
(object) array(
|
489 |
-
'name' => 'Opening',
|
490 |
-
'slug' => 'opening',
|
491 |
-
'href' => 'http://bestwebsoft.com/products/opening-job-board-wordpress-theme/'
|
492 |
)
|
493 |
);
|
474 |
)
|
475 |
);
|
476 |
|
477 |
+
$themes = array(
|
478 |
+
(object) array(
|
479 |
+
'name' => 'Opening',
|
480 |
+
'slug' => 'opening',
|
481 |
+
'href' => 'http://bestwebsoft.com/products/opening-job-board-wordpress-theme/'
|
482 |
+
),
|
483 |
(object) array(
|
484 |
'name' => 'Real Estate',
|
485 |
'slug' => 'realestate',
|
486 |
'href' => 'http://bestwebsoft.com/products/real-estate-creative-wordpress-theme/'
|
487 |
),
|
488 |
+
(object) array(
|
489 |
+
'name' => 'Renty',
|
490 |
+
'slug' => 'renty',
|
491 |
+
'href' => 'http://bestwebsoft.com/products/renty-car-rental-booking-wordpress-theme/'
|
492 |
+
),
|
493 |
(object) array(
|
494 |
'name' => 'Unity',
|
495 |
'slug' => 'unity',
|
496 |
'href' => 'http://bestwebsoft.com/products/unity-multipurpose-wordpress-theme/'
|
|
|
|
|
|
|
|
|
|
|
497 |
)
|
498 |
);
|
facebook-button-plugin.php
CHANGED
@@ -6,7 +6,7 @@ Description: Add Facebook Like, Share and Profile buttons to WordPress posts, pa
|
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: facebook-button-plugin
|
8 |
Domain Path: /languages
|
9 |
-
Version: 2.
|
10 |
Author URI: http://bestwebsoft.com/
|
11 |
License: GPLv2 or later
|
12 |
*/
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: facebook-button-plugin
|
8 |
Domain Path: /languages
|
9 |
+
Version: 2.50
|
10 |
Author URI: http://bestwebsoft.com/
|
11 |
License: GPLv2 or later
|
12 |
*/
|
readme.txt
CHANGED
@@ -3,66 +3,103 @@ Contributors: bestwebsoft
|
|
3 |
Donate link: http://bestwebsoft.com/donate/
|
4 |
Tags: facebook buttons, share, like, add share button, social buttons, facebook, facebook button icon, follow, follow button, like button, share button, facebook plugin
|
5 |
Requires at least: 3.8
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
11 |
-
Add Facebook Like,
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
-
Facebook
|
16 |
|
17 |
-
|
18 |
-
|
19 |
-
<a href="http://www.youtube.com/watch?v=pAKsQPz3RZc" target="_blank">Facebook Button by BestWebSoft Video instruction on Installation</a>
|
20 |
-
|
21 |
-
<a href="http://wordpress.org/plugins/facebook-button-plugin/faq/" target="_blank">Facebook Button by BestWebSoft FAQ</a>
|
22 |
-
|
23 |
-
<a href="http://support.bestwebsoft.com" target="_blank">Facebook Button by BestWebSoft Support</a>
|
24 |
-
|
25 |
-
<a href="http://bestwebsoft.com/products/facebook-like-button/?k=4caab51af6593e97ad1e329fe0f53072" target="_blank">Upgrade to Facebook Button Pro by BestWebSoft</a>
|
26 |
-
|
27 |
-
= Features =
|
28 |
-
|
29 |
-
* Add Facebook buttons in the easiest way (Follow button, Like button and Share button).
|
30 |
-
* Show or hide faces.
|
31 |
-
* Choose button layout for "Like" and "Share".
|
32 |
-
* Choose color scheme for around text.
|
33 |
-
* Choose "Like" button action - "Like" or "Recommend".
|
34 |
-
* Select the button position: before the content, after, before and after, or using a shortcode.
|
35 |
-
* Use a standard image or replace it with some other image.
|
36 |
-
* Use the current site language for Facebook Buttons (Using <a href="http://bestwebsoft.com/products/multilanguage/" target="_blank">Multilanguage by BestWebSoft</a>)
|
37 |
-
|
38 |
-
If you have a feature, suggestion or idea you'd like to see in the plugin, we'd love to hear about it! <a href="http://support.bestwebsoft.com/hc/en-us/requests/new" target="_blank">Suggest a Feature</a>
|
39 |
|
40 |
-
=
|
41 |
-
|
42 |
-
The author of Facebook Button also recommends the following plugins:
|
43 |
|
44 |
-
|
45 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
|
47 |
= Translation =
|
48 |
|
49 |
-
* Finnish (fi_FI) (thanks to
|
50 |
-
* French (fr_FR) (thanks to
|
51 |
* Indonesian (id_ID) (thanks to Nasrulhaq, www.al-badar.net)
|
52 |
-
* Hungarian (hu_HU) (thanks to
|
53 |
* Russian (ru_RU)
|
54 |
-
* Turkish (tr_TR) (thanks to
|
55 |
* Ukrainian (uk)
|
56 |
|
57 |
-
Some of these translations are not complete. We are constantly adding new features which should be translated. If you create your own language pack or update the existing one, you can send
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
|
59 |
-
=
|
60 |
|
61 |
-
|
62 |
|
63 |
-
|
64 |
-
Moreover we can customize the plugin according to your requirements. It's a paid service (as a rule it costs $40, but the price can vary depending on the amount of the necessary changes and their complexity). Please note that we could also include this or that feature (developed for you) in the next release and share with the other users then.
|
65 |
-
We can fix some things for free for the users who provide translation of our plugin into their native language (this should be a new translation of a certain plugin, you can check available translations on the official plugin page).
|
66 |
|
67 |
== Installation ==
|
68 |
|
@@ -70,7 +107,7 @@ We can fix some things for free for the users who provide translation of our plu
|
|
70 |
2. Activate the plugin via the 'Plugins' menu in your WordPress admin panel.
|
71 |
3. You can adjust the necessary settings in your WordPress admin panel - "BWS Panel" > "Facebook Button".
|
72 |
|
73 |
-
|
74 |
|
75 |
http://www.youtube.com/watch?v=pAKsQPz3RZc
|
76 |
|
@@ -83,7 +120,7 @@ In WordPress admin panel, please go to "Plugins", find "Facebook Button by BestW
|
|
83 |
= After clicking Facebook Button icon I see the Facebook Home page instead of the necessary account page =
|
84 |
|
85 |
1. In WordPress admin panel, please go to "BWS Panel", find Facebook Button settings page and enter your Facebook ID or username. Then click "Save Changes".
|
86 |
-
2. If you do not have Facebook account yet, you should create it using this link: http://www.facebook.com
|
87 |
|
88 |
= How to adjust Facebook Button position on the page =
|
89 |
|
@@ -101,12 +138,12 @@ In WordPress admin panel, please go to "BWS Panel", find Facebook Button setting
|
|
101 |
|
102 |
= I have some problems with the plugin's work. What Information should I provide to receive proper support? =
|
103 |
|
104 |
-
Please make sure that the problem hasn't been discussed yet on our forum (<
|
105 |
|
106 |
1. the link to the page where the problem occurs
|
107 |
2. the name of the plugin and its version. If you are using a pro version - your order number.
|
108 |
3. the version of your WordPress installation
|
109 |
-
4. copy and paste into the message your system status report. Please read more here:
|
110 |
|
111 |
== Screenshots ==
|
112 |
|
@@ -116,6 +153,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
|
|
116 |
|
117 |
== Changelog ==
|
118 |
|
|
|
|
|
|
|
119 |
= V2.49 - 06.07.2016 =
|
120 |
* Update : Images size for meta property 'og:image' has been changed.
|
121 |
|
@@ -317,6 +357,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
|
|
317 |
|
318 |
== Upgrade Notice ==
|
319 |
|
|
|
|
|
|
|
320 |
= V2.49 =
|
321 |
Images size for meta property 'og:image' has been changed.
|
322 |
|
3 |
Donate link: http://bestwebsoft.com/donate/
|
4 |
Tags: facebook buttons, share, like, add share button, social buttons, facebook, facebook button icon, follow, follow button, like button, share button, facebook plugin
|
5 |
Requires at least: 3.8
|
6 |
+
Tested up to: 4.6
|
7 |
+
Stable tag: 2.50
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
11 |
+
Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and widgets.
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
+
Facebook plugin is a best social media solution which adds Follow, Like, and Share buttons to your Wordpress website posts, pages or widgets. This is a great way to receive positive feedback from your visitors, earn media exposure, and consumer validation for your brand.
|
16 |
|
17 |
+
Customize the appearance, configure settings, and enable other advanced options to get more social traffic to your website and keep your visitors involved!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
|
19 |
+
http://www.youtube.com/watch?v=hGNQs-rF8b8
|
|
|
|
|
20 |
|
21 |
+
= Free Features =
|
22 |
+
|
23 |
+
* Add Facebook buttons such as:
|
24 |
+
* Like
|
25 |
+
* Share
|
26 |
+
* Follow
|
27 |
+
* Change color scheme for Share button
|
28 |
+
* Select layout for Like and Share buttons:
|
29 |
+
* Standard
|
30 |
+
* Box count
|
31 |
+
* Button count
|
32 |
+
* Button
|
33 |
+
* Select the button position:
|
34 |
+
* Before the content
|
35 |
+
* After the content
|
36 |
+
* Before and after
|
37 |
+
* Custom position (using shortcode)
|
38 |
+
* Show/hide faces option
|
39 |
+
* Compatible with [Multilanguage](http://bestwebsoft.com/products/multilanguage/?k=ce7cc6ad47715a97a579a6d9b59ed8b3) (current website language detection)
|
40 |
+
* Choose Like button action – like or recommend
|
41 |
+
* Use a standard Follow button image or replace it with custom one
|
42 |
+
* Add custom code via plugin settings page
|
43 |
+
* Compatible with latest WordPress version
|
44 |
+
* Incredibly simple settings for fast setup without modifying code
|
45 |
+
* Detailed step-by-step documentation and videos
|
46 |
+
|
47 |
+
> **Pro Features**
|
48 |
+
>
|
49 |
+
> All features from Free version included plus:
|
50 |
+
>
|
51 |
+
> * Display Facebook buttons for certain pages and/or post types
|
52 |
+
> * Сhange meta tags:
|
53 |
+
> * Image
|
54 |
+
> * Description
|
55 |
+
> * Enable like option for:
|
56 |
+
> * Entire website
|
57 |
+
> * Single pages
|
58 |
+
> * Facebook button preview
|
59 |
+
> * Configure all subsites on the network
|
60 |
+
> * Get answer to your support question within one business day ([Support Policy](http://bestwebsoft.com/support-policy/))
|
61 |
+
>
|
62 |
+
> [Upgrade to Pro Now](http://bestwebsoft.com/products/facebook-like-button/?k=4caab51af6593e97ad1e329fe0f53072)
|
63 |
+
|
64 |
+
If you have a feature suggestion or idea you'd like to see in the plugin, we'd love to hear about it! [Suggest a Feature](http://support.bestwebsoft.com/hc/en-us/requests/new)
|
65 |
+
|
66 |
+
= Documentation & Videos =
|
67 |
+
|
68 |
+
* [[Doc] How to Use](https://docs.google.com/document/d/1gy5uDVoebmYRUvlKRwBmc97jdJFz7GvUCtXy3L7r_Yg/)
|
69 |
+
* [[Doc] Installation](https://docs.google.com/document/d/1LDmKKxLHq0GavaGcevj4g-8SjLcYPruSKg5Kos9plxM/)
|
70 |
+
* [[Doc] Purchase, Installation & Configuration](https://docs.google.com/document/d/1iYerN1G4RrM7EelBlbmQdcYv_tzWWBYwBtYmIkcnOVo/)
|
71 |
+
* [[Video] Installation Instruction](https://www.youtube.com/watch?v=pAKsQPz3RZc)
|
72 |
+
|
73 |
+
= Help & Support =
|
74 |
+
|
75 |
+
Visit our Help Center if you have any questions, our friendly Support Team is happy to help — <http://support.bestwebsoft.com/>
|
76 |
|
77 |
= Translation =
|
78 |
|
79 |
+
* Finnish (fi_FI) (thanks to [Juhani Honkanen](mailto:juhani.honkanen@dnainternet.net))
|
80 |
+
* French (fr_FR) (thanks to [Murat](mailto:wpthemefr@gmail.com))
|
81 |
* Indonesian (id_ID) (thanks to Nasrulhaq, www.al-badar.net)
|
82 |
+
* Hungarian (hu_HU) (thanks to [Peter Aprily](mailto:solarside09@gmail.com) www.aprily.com)
|
83 |
* Russian (ru_RU)
|
84 |
+
* Turkish (tr_TR) (thanks to [Can Atasever](mailto:webmaster@canatasever.com))
|
85 |
* Ukrainian (uk)
|
86 |
|
87 |
+
Some of these translations are not complete. We are constantly adding new features which should be translated. If you would like to create your own language pack or update the existing one, you can send [the text of PO and MO files](http://codex.wordpress.org/Translating_WordPress) to [BestWebSoft](http://support.bestwebsoft.com/hc/en-us/requests/new) and we'll add it to the plugin. You can download the latest version of the program for work with PO and MO [files Poedit](http://www.poedit.net/download.php).
|
88 |
+
|
89 |
+
= Recommended Plugins =
|
90 |
+
|
91 |
+
* [Updater](http://bestwebsoft.com/products/updater/?k=5019f1216fc048f1419fe4645da69381) - Automatically check and update WordPress core with all installed plugins to the latest versions. Manual mode, email notifications and backups of all your files and database before updating.
|
92 |
+
* [Google +1](http://bestwebsoft.com/products/google-plus-one/?k=1f911e6a8a57be8dec36aa4c617773d2) - Add Google +1 Share, Follow, Hangout buttons and profile badge to WordPress posts, pages and widgets.
|
93 |
+
* [LinkedIn](http://bestwebsoft.com/products/linkedin/?k=b51477f9bcefca82ad8a4a1901806171) - Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. 5 plugins included – profile, insider, etc.
|
94 |
+
* [Multilanguage](http://bestwebsoft.com/products/multilanguage/?k=ce7cc6ad47715a97a579a6d9b59ed8b3) - Translate WordPress website content to other languages manually. Create multilingual pages, posts, widgets, menus, etc.
|
95 |
+
* [Pinterest](http://bestwebsoft.com/products/pinterest/?k=6c0ee1d224732f70f3099746cfc82c92) - Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, Profile) to WordPress posts, pages and widgets.
|
96 |
+
* [Twitter](http://bestwebsoft.com/products/twitter/?k=f1d29ef28baa75cc05d52def8ca1021d) - Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts, pages and widgets.
|
97 |
|
98 |
+
= Donate =
|
99 |
|
100 |
+
Donations play an important role in supporting open-source projects. We greatly appreciate any donation you can make to help us continue further development of free products.
|
101 |
|
102 |
+
[Donate Now](http://bestwebsoft.com/donate/)
|
|
|
|
|
103 |
|
104 |
== Installation ==
|
105 |
|
107 |
2. Activate the plugin via the 'Plugins' menu in your WordPress admin panel.
|
108 |
3. You can adjust the necessary settings in your WordPress admin panel - "BWS Panel" > "Facebook Button".
|
109 |
|
110 |
+
[View a Step-by-step Instruction on Facebook Button by BestWebSoft Installation](https://docs.google.com/document/d/1LDmKKxLHq0GavaGcevj4g-8SjLcYPruSKg5Kos9plxM/)
|
111 |
|
112 |
http://www.youtube.com/watch?v=pAKsQPz3RZc
|
113 |
|
120 |
= After clicking Facebook Button icon I see the Facebook Home page instead of the necessary account page =
|
121 |
|
122 |
1. In WordPress admin panel, please go to "BWS Panel", find Facebook Button settings page and enter your Facebook ID or username. Then click "Save Changes".
|
123 |
+
2. If you do not have Facebook account yet, you should create it using this link: <http://www.facebook.com>. After the account is created please follow the instructions above.
|
124 |
|
125 |
= How to adjust Facebook Button position on the page =
|
126 |
|
138 |
|
139 |
= I have some problems with the plugin's work. What Information should I provide to receive proper support? =
|
140 |
|
141 |
+
Please make sure that the problem hasn't been discussed yet on our forum (<http://support.bestwebsoft.com>). If no, please provide the following data along with your problem's description:
|
142 |
|
143 |
1. the link to the page where the problem occurs
|
144 |
2. the name of the plugin and its version. If you are using a pro version - your order number.
|
145 |
3. the version of your WordPress installation
|
146 |
+
4. copy and paste into the message your system status report. Please read more here: [Instruction on System Status](https://docs.google.com/document/d/1Wi2X8RdRGXk9kMszQy1xItJrpN0ncXgioH935MaBKtc/edit)
|
147 |
|
148 |
== Screenshots ==
|
149 |
|
153 |
|
154 |
== Changelog ==
|
155 |
|
156 |
+
= V2.50 - 08.08.2016 =
|
157 |
+
* Update : All functionality for wordpress 4.6 was updated.
|
158 |
+
|
159 |
= V2.49 - 06.07.2016 =
|
160 |
* Update : Images size for meta property 'og:image' has been changed.
|
161 |
|
357 |
|
358 |
== Upgrade Notice ==
|
359 |
|
360 |
+
= V2.50 =
|
361 |
+
* The compatibility with new WordPress version updated.
|
362 |
+
|
363 |
= V2.49 =
|
364 |
Images size for meta property 'og:image' has been changed.
|
365 |
|
screenshot-3.png
CHANGED
Binary file
|