Version Description
- 17.08.2016 =
- Update : All functionality for WordPress 4.6 was updated.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Gallery by BestWebSoft |
Version | 4.4.3 |
Comparing to | |
See all releases |
Code changes from version 4.4.2 to 4.4.3
- bws_menu/bws_functions.php +68 -25
- bws_menu/bws_menu.php +30 -24
- bws_menu/css/general_style.css +7 -6
- bws_menu/css/style.css +48 -16
- 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 +113 -113
- bws_menu/languages/bestwebsoft-pl_PL.mo +0 -0
- bws_menu/languages/bestwebsoft-pl_PL.po +107 -110
- bws_menu/languages/bestwebsoft-ru_RU.mo +0 -0
- bws_menu/languages/bestwebsoft-ru_RU.po +112 -112
- bws_menu/languages/bestwebsoft-uk.mo +0 -0
- bws_menu/languages/bestwebsoft-uk.po +112 -112
- gallery-plugin.php +3 -3
- inc/demo-data/demo-data.php +1 -1
- readme.txt +128 -96
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 );
|
@@ -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>';
|
@@ -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 );
|
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>';
|
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' ) )
|
@@ -292,32 +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 |
-
<
|
|
|
|
|
297 |
<?php if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) &&
|
298 |
'5' < $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] &&
|
299 |
$bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - ( 24 * 60 * 60 ) ) ) { ?>
|
300 |
-
<div>
|
301 |
<input disabled="disabled" type="text" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
|
302 |
-
<
|
303 |
</div>
|
304 |
-
<
|
305 |
<?php } else { ?>
|
306 |
-
<div>
|
307 |
-
<input type="text" placeholder="<?php _e( 'Enter your license key', 'bestwebsoft' ); ?>" maxlength="100" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
|
308 |
-
<
|
309 |
-
<input type="hidden" name="bws_license_submit" value="submit" />
|
310 |
-
<?php if ( empty( $plugins_array ) ) { ?>
|
311 |
-
<input type="submit" class="bws-button" value="<?php _e( 'Activate Membership', 'bestwebsoft' ); ?>" />
|
312 |
-
<?php } else { ?>
|
313 |
-
<input type="submit" class="bws-button" value="<?php _e( 'Check license key', 'bestwebsoft' ); ?>" />
|
314 |
-
<?php } ?>
|
315 |
-
<?php wp_nonce_field( plugin_basename(__FILE__), 'bws_license_nonce_name' ); ?>
|
316 |
</div>
|
317 |
-
<
|
318 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
319 |
</form>
|
320 |
-
<div class="
|
321 |
</div>
|
322 |
</div>
|
323 |
<?php } ?>
|
@@ -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' ) )
|
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 } ?>
|
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
@@ -111,7 +111,6 @@ a.toplevel_page_bws_panel.wp-has-current-submenu:after {
|
|
111 |
overflow: hidden;
|
112 |
position: relative;
|
113 |
margin: 20px 20px 0 20px;
|
114 |
-
border-radius: 4px;
|
115 |
}
|
116 |
.bws-membership-backround {
|
117 |
background-color: #000;
|
@@ -123,19 +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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
}
|
134 |
.bws-membership input[type="text"] {
|
135 |
border-radius: 3px;
|
136 |
border: none;
|
137 |
-
font-size:
|
138 |
-
padding: 8px
|
139 |
text-align: left;
|
140 |
}
|
141 |
.bws-membership .bws-button {
|
@@ -144,35 +154,39 @@ a.toplevel_page_bws_panel.wp-has-current-submenu:after {
|
|
144 |
text-align: center;
|
145 |
display: inline-block;
|
146 |
text-decoration: none;
|
147 |
-
font-size:
|
148 |
-
|
149 |
-
padding: 8px 30px;
|
150 |
border-radius: 3px;
|
151 |
border: none;
|
152 |
cursor: pointer;
|
|
|
153 |
}
|
154 |
.bws-membership-link {
|
155 |
-
font-size:
|
156 |
color: #999;
|
157 |
-
|
158 |
-
|
159 |
}
|
160 |
.bws-membership-link a {
|
161 |
color: #fff;
|
162 |
text-decoration: none;
|
163 |
border-bottom: 1px solid #999;
|
|
|
164 |
}
|
165 |
.bws-membership-link a:hover {
|
166 |
border-bottom: none;
|
167 |
}
|
168 |
.bws_error {
|
169 |
color: #c5412b;
|
170 |
-
margin-top:
|
171 |
}
|
172 |
.bws_error a {
|
173 |
color: #fff;
|
174 |
text-decoration: none;
|
175 |
}
|
|
|
|
|
|
|
176 |
/*
|
177 |
* themes
|
178 |
*/
|
@@ -411,6 +425,14 @@ a.bws_donate {
|
|
411 |
.bws-products {
|
412 |
width: 370px;
|
413 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
414 |
}
|
415 |
@media screen and (max-width: 782px) {
|
416 |
.bws-header {
|
@@ -434,12 +456,22 @@ a.bws_donate {
|
|
434 |
width: 100%;
|
435 |
padding: 17px 20px 20px;
|
436 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
437 |
.bws-membership .bws-button,
|
|
|
438 |
.bws-membership input[type="text"] {
|
439 |
width: 100%;
|
|
|
440 |
}
|
441 |
-
.bws-membership
|
442 |
-
margin-
|
443 |
}
|
444 |
.bws-filter {
|
445 |
display: none;
|
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 |
*/
|
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/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"
|
@@ -17,11 +17,11 @@ msgstr ""
|
|
17 |
"X-Generator: Poedit 1.5.4\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: bws_functions.php:38 bws_menu.php:282 bws_menu.php:
|
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 |
|
@@ -189,19 +189,19 @@ msgstr ""
|
|
189 |
"peut-être installée qu'une seule fois."
|
190 |
|
191 |
#: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
|
192 |
-
#: bws_menu.php:
|
193 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
194 |
msgstr ""
|
195 |
"Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension "
|
196 |
"manuellement."
|
197 |
|
198 |
-
#: bws_functions.php:361 bws_menu.php:
|
199 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
200 |
msgstr ""
|
201 |
"Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
|
202 |
"manuellement."
|
203 |
|
204 |
-
#: bws_functions.php:367 bws_menu.php:
|
205 |
msgid ""
|
206 |
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
207 |
"plugin manually"
|
@@ -209,7 +209,7 @@ msgstr ""
|
|
209 |
"Votre serveur n'a pas le support du format des archives ZIP ou Phar. Merci "
|
210 |
"de télécharger l'extension manuellement."
|
211 |
|
212 |
-
#: bws_functions.php:374 bws_menu.php:
|
213 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
214 |
msgstr ""
|
215 |
"Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
|
@@ -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 |
|
@@ -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 |
|
@@ -768,28 +768,25 @@ msgstr "Gérer les licences et les adhésions"
|
|
768 |
msgid "Client Area"
|
769 |
msgstr "Espace client"
|
770 |
|
771 |
-
#: bws_menu.php:
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
#: bws_menu.php:311
|
776 |
-
msgid "Activate Membership"
|
777 |
-
msgstr "Activer l'adhésion"
|
778 |
-
|
779 |
-
#: bws_menu.php:320
|
780 |
-
msgid "Don’t have valid license key yet?"
|
781 |
-
msgstr "Vous n'avez pas encore de licence valide ?"
|
782 |
|
783 |
-
#: bws_menu.php:
|
784 |
#, fuzzy
|
785 |
-
msgid "Subscribe to Pro Membership
|
786 |
msgstr "Souscrire une adhésion PRO"
|
787 |
|
788 |
-
#: bws_menu.php:
|
|
|
|
|
|
|
|
|
789 |
msgid "Upload Plugin"
|
790 |
msgstr "Charger l'extension"
|
791 |
|
792 |
-
#: bws_menu.php:
|
793 |
#, php-format
|
794 |
msgid ""
|
795 |
"The plugin generated %d characters of <strong>unexpected output</strong> "
|
@@ -802,7 +799,7 @@ msgstr ""
|
|
802 |
"sent”, des problèmes avec les flux de syndication ou autres, essayez "
|
803 |
"de désactiver l'extension ou supprimer l'extension."
|
804 |
|
805 |
-
#: bws_menu.php:
|
806 |
msgid ""
|
807 |
"Plugin could not be activated because it triggered a <strong>fatal error</"
|
808 |
"strong>."
|
@@ -810,126 +807,126 @@ msgstr ""
|
|
810 |
"L'extension ne peut pas être activée car une <strong>erreur fatale</strong> "
|
811 |
"a été détectée."
|
812 |
|
813 |
-
#: bws_menu.php:
|
814 |
msgid "Plugin <strong>activated</strong>."
|
815 |
msgstr "Extension <strong>activée</strong>."
|
816 |
|
817 |
-
#: bws_menu.php:
|
818 |
msgid "Installing Plugin"
|
819 |
msgstr "Extensions installées"
|
820 |
|
821 |
-
#: bws_menu.php:
|
822 |
msgid "Downloading install package from"
|
823 |
msgstr "Télécharger le paquet d'installation depuis"
|
824 |
|
825 |
-
#: bws_menu.php:
|
826 |
msgid "Unpacking the package"
|
827 |
msgstr "Décompresser le paquet"
|
828 |
|
829 |
-
#: bws_menu.php:
|
830 |
msgid "Installing the plugin"
|
831 |
msgstr "Installer l'extension"
|
832 |
|
833 |
-
#: bws_menu.php:
|
834 |
msgid "Successfully installed the plugin"
|
835 |
msgstr "Extension installée avec succès"
|
836 |
|
837 |
-
#: bws_menu.php:
|
838 |
msgid "Activate Plugin"
|
839 |
msgstr "Activer l'extension"
|
840 |
|
841 |
-
#: bws_menu.php:
|
842 |
msgid "Return to BestWebSoft Panel"
|
843 |
msgstr "Retourner à l'administration BestWebSoft"
|
844 |
|
845 |
-
#: bws_menu.php:
|
846 |
msgid "All"
|
847 |
msgstr "Tous"
|
848 |
|
849 |
-
#: bws_menu.php:
|
850 |
msgid "Installed"
|
851 |
msgstr "Installé"
|
852 |
|
853 |
-
#: bws_menu.php:
|
854 |
msgid "Not Installed"
|
855 |
msgstr "Non installé"
|
856 |
|
857 |
-
#: bws_menu.php:
|
858 |
msgid "Filter results"
|
859 |
msgstr "Filtrer les résultats"
|
860 |
|
861 |
-
#: bws_menu.php:
|
862 |
msgid "Category"
|
863 |
msgstr "Catégorie"
|
864 |
|
865 |
-
#: bws_menu.php:
|
866 |
#, fuzzy
|
867 |
msgid "Not installed"
|
868 |
msgstr "Non installé"
|
869 |
|
870 |
-
#: bws_menu.php:
|
871 |
msgid "Renew to get updates"
|
872 |
msgstr "Se réabonner pour avoir les mises à jour"
|
873 |
|
874 |
-
#: bws_menu.php:
|
875 |
#, php-format
|
876 |
msgid "Update to v %s"
|
877 |
msgstr "Mettre à jour avec la version %s"
|
878 |
|
879 |
-
#: bws_menu.php:
|
880 |
msgid "Install Now"
|
881 |
msgstr "Installer maintenant"
|
882 |
|
883 |
-
#: bws_menu.php:
|
884 |
msgid "Upgrade to Pro"
|
885 |
msgstr "Passer à la version PRO"
|
886 |
|
887 |
-
#: bws_menu.php:
|
888 |
msgid "Donate"
|
889 |
msgstr "Don"
|
890 |
|
891 |
-
#: bws_menu.php:
|
892 |
msgid "Activate this plugin"
|
893 |
msgstr "Activer cette extension"
|
894 |
|
895 |
-
#: bws_menu.php:
|
896 |
msgid "Install this plugin"
|
897 |
msgstr "Installer cette extension"
|
898 |
|
899 |
-
#: bws_menu.php:
|
900 |
msgid "Nothing found. Try another criteria."
|
901 |
msgstr "Pas de réponse. essayer d'autres critères."
|
902 |
|
903 |
-
#: bws_menu.php:
|
904 |
#, php-format
|
905 |
msgid "By %s"
|
906 |
msgstr "Par %s"
|
907 |
|
908 |
-
#: bws_menu.php:
|
909 |
msgid "Already Installed"
|
910 |
msgstr "Déjà installé"
|
911 |
|
912 |
-
#: bws_menu.php:
|
913 |
msgid "Browse Free WordPress Themes"
|
914 |
msgstr "Parcourir les thèmes gratuits pour WordPress"
|
915 |
|
916 |
-
#: bws_menu.php:
|
917 |
msgid "Send to support"
|
918 |
msgstr "Envoyé au support"
|
919 |
|
920 |
-
#: bws_menu.php:
|
921 |
msgid "Send to custom email »"
|
922 |
msgstr "Envoyer un e-mail spécifique »"
|
923 |
|
924 |
-
#: bws_menu.php:
|
925 |
msgid "Environment"
|
926 |
msgstr "Environnent"
|
927 |
|
928 |
-
#: bws_menu.php:
|
929 |
msgid "Active Plugins"
|
930 |
msgstr "Extensions actives"
|
931 |
|
932 |
-
#: bws_menu.php:
|
933 |
msgid "Inactive Plugins"
|
934 |
msgstr "Extensions inactives"
|
935 |
|
@@ -969,8 +966,11 @@ msgstr "Utilitaires"
|
|
969 |
msgid "Other"
|
970 |
msgstr "Autre"
|
971 |
|
972 |
-
#~ msgid "
|
973 |
-
#~ msgstr "
|
|
|
|
|
|
|
974 |
|
975 |
#~ msgid ""
|
976 |
#~ "Join BestWebSoft Pro Membership today, cancel any time and use all "
|
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"
|
17 |
"X-Generator: Poedit 1.5.4\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: bws_functions.php:38 bws_menu.php:282 bws_menu.php:330
|
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 |
|
189 |
"peut-être installée qu'une seule fois."
|
190 |
|
191 |
#: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
|
192 |
+
#: bws_menu.php:370 bws_menu.php:401 bws_menu.php:412
|
193 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
194 |
msgstr ""
|
195 |
"Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension "
|
196 |
"manuellement."
|
197 |
|
198 |
+
#: bws_functions.php:361 bws_menu.php:387
|
199 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
200 |
msgstr ""
|
201 |
"Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
|
202 |
"manuellement."
|
203 |
|
204 |
+
#: bws_functions.php:367 bws_menu.php:394
|
205 |
msgid ""
|
206 |
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
207 |
"plugin manually"
|
209 |
"Votre serveur n'a pas le support du format des archives ZIP ou Phar. Merci "
|
210 |
"de télécharger l'extension manuellement."
|
211 |
|
212 |
+
#: bws_functions.php:374 bws_menu.php:404
|
213 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
214 |
msgstr ""
|
215 |
"Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
|
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 |
|
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 |
|
768 |
msgid "Client Area"
|
769 |
msgstr "Espace client"
|
770 |
|
771 |
+
#: bws_menu.php:296
|
772 |
+
#, php-format
|
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"
|
788 |
|
789 |
+
#: bws_menu.php:335
|
790 |
#, php-format
|
791 |
msgid ""
|
792 |
"The plugin generated %d characters of <strong>unexpected output</strong> "
|
799 |
"sent”, des problèmes avec les flux de syndication ou autres, essayez "
|
800 |
"de désactiver l'extension ou supprimer l'extension."
|
801 |
|
802 |
+
#: bws_menu.php:337
|
803 |
msgid ""
|
804 |
"Plugin could not be activated because it triggered a <strong>fatal error</"
|
805 |
"strong>."
|
807 |
"L'extension ne peut pas être activée car une <strong>erreur fatale</strong> "
|
808 |
"a été détectée."
|
809 |
|
810 |
+
#: bws_menu.php:340
|
811 |
msgid "Plugin <strong>activated</strong>."
|
812 |
msgstr "Extension <strong>activée</strong>."
|
813 |
|
814 |
+
#: bws_menu.php:347
|
815 |
msgid "Installing Plugin"
|
816 |
msgstr "Extensions installées"
|
817 |
|
818 |
+
#: bws_menu.php:353
|
819 |
msgid "Downloading install package from"
|
820 |
msgstr "Télécharger le paquet d'installation depuis"
|
821 |
|
822 |
+
#: bws_menu.php:378
|
823 |
msgid "Unpacking the package"
|
824 |
msgstr "Décompresser le paquet"
|
825 |
|
826 |
+
#: bws_menu.php:383 bws_menu.php:391
|
827 |
msgid "Installing the plugin"
|
828 |
msgstr "Installer l'extension"
|
829 |
|
830 |
+
#: bws_menu.php:397
|
831 |
msgid "Successfully installed the plugin"
|
832 |
msgstr "Extension installée avec succès"
|
833 |
|
834 |
+
#: bws_menu.php:409
|
835 |
msgid "Activate Plugin"
|
836 |
msgstr "Activer l'extension"
|
837 |
|
838 |
+
#: bws_menu.php:409 bws_menu.php:415
|
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 |
|
850 |
+
#: bws_menu.php:421
|
851 |
msgid "Not Installed"
|
852 |
msgstr "Non installé"
|
853 |
|
854 |
+
#: bws_menu.php:427
|
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 "
|
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"
|
@@ -18,11 +18,11 @@ msgstr ""
|
|
18 |
"|| n%100>=20) ? 1 : 2);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: bws_functions.php:38 bws_menu.php:282 bws_menu.php:
|
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 |
|
@@ -188,26 +188,26 @@ msgstr ""
|
|
188 |
"może być wykorzystana tylko raz."
|
189 |
|
190 |
#: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
|
191 |
-
#: bws_menu.php:
|
192 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
193 |
msgstr ""
|
194 |
"Pobieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
|
195 |
"manualnie"
|
196 |
|
197 |
-
#: bws_functions.php:361 bws_menu.php:
|
198 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
199 |
msgstr ""
|
200 |
"Otwieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
|
201 |
"manualnie"
|
202 |
|
203 |
-
#: bws_functions.php:367 bws_menu.php:
|
204 |
msgid ""
|
205 |
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
206 |
"plugin manually"
|
207 |
msgstr ""
|
208 |
"Twój serwer nie wspiera ZipAcrchive lub Phar. Proszę dodać wtyczkę manualnie"
|
209 |
|
210 |
-
#: bws_functions.php:374 bws_menu.php:
|
211 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
212 |
msgstr ""
|
213 |
"Folder uploadu jest chroniony przez zapisem. Proszę dodać wtyczkę manualnie"
|
@@ -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 |
|
@@ -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 |
|
@@ -753,30 +753,27 @@ msgstr ""
|
|
753 |
msgid "Client Area"
|
754 |
msgstr "Panel Klienta"
|
755 |
|
756 |
-
#: bws_menu.php:
|
757 |
-
#,
|
758 |
-
msgid "
|
759 |
-
msgstr "
|
760 |
|
761 |
-
#: bws_menu.php:
|
762 |
#, fuzzy
|
763 |
-
msgid "
|
764 |
msgstr "有効なテーマ"
|
765 |
|
766 |
-
#: bws_menu.php:
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
#: bws_menu.php:320
|
771 |
-
msgid "Subscribe to Pro Membership Now"
|
772 |
-
msgstr ""
|
773 |
|
774 |
-
#: bws_menu.php:
|
775 |
#, fuzzy
|
776 |
msgid "Upload Plugin"
|
777 |
msgstr "Wtyczka"
|
778 |
|
779 |
-
#: bws_menu.php:
|
780 |
#, php-format
|
781 |
msgid ""
|
782 |
"The plugin generated %d characters of <strong>unexpected output</strong> "
|
@@ -785,139 +782,139 @@ msgid ""
|
|
785 |
"or removing this plugin."
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: bws_menu.php:
|
789 |
msgid ""
|
790 |
"Plugin could not be activated because it triggered a <strong>fatal error</"
|
791 |
"strong>."
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: bws_menu.php:
|
795 |
msgid "Plugin <strong>activated</strong>."
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: bws_menu.php:
|
799 |
#, fuzzy
|
800 |
msgid "Installing Plugin"
|
801 |
msgstr "Zainstalowane"
|
802 |
|
803 |
-
#: bws_menu.php:
|
804 |
msgid "Downloading install package from"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: bws_menu.php:
|
808 |
msgid "Unpacking the package"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: bws_menu.php:
|
812 |
#, fuzzy
|
813 |
msgid "Installing the plugin"
|
814 |
msgstr "Zainstalowane"
|
815 |
|
816 |
-
#: bws_menu.php:
|
817 |
#, fuzzy
|
818 |
msgid "Successfully installed the plugin"
|
819 |
msgstr "Zainstalowane"
|
820 |
|
821 |
-
#: bws_menu.php:
|
822 |
#, fuzzy
|
823 |
msgid "Activate Plugin"
|
824 |
msgstr "Aktywne wtyczki"
|
825 |
|
826 |
-
#: bws_menu.php:
|
827 |
msgid "Return to BestWebSoft Panel"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: bws_menu.php:
|
831 |
msgid "All"
|
832 |
msgstr "Wszystko"
|
833 |
|
834 |
-
#: bws_menu.php:
|
835 |
msgid "Installed"
|
836 |
msgstr "Zainstalowane"
|
837 |
|
838 |
-
#: bws_menu.php:
|
839 |
#, fuzzy
|
840 |
msgid "Not Installed"
|
841 |
msgstr "Zainstalowane"
|
842 |
|
843 |
-
#: bws_menu.php:
|
844 |
msgid "Filter results"
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: bws_menu.php:
|
848 |
msgid "Category"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: bws_menu.php:
|
852 |
#, fuzzy
|
853 |
msgid "Not installed"
|
854 |
msgstr "Zainstalowane"
|
855 |
|
856 |
-
#: bws_menu.php:
|
857 |
#, fuzzy
|
858 |
msgid "Renew to get updates"
|
859 |
msgstr "ページに転送"
|
860 |
|
861 |
-
#: bws_menu.php:
|
862 |
#, fuzzy, php-format
|
863 |
msgid "Update to v %s"
|
864 |
msgstr "Aktualizuj do wersji %s"
|
865 |
|
866 |
-
#: bws_menu.php:
|
867 |
msgid "Install Now"
|
868 |
msgstr "Instaluj teraz"
|
869 |
|
870 |
-
#: bws_menu.php:
|
871 |
msgid "Upgrade to Pro"
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: bws_menu.php:
|
875 |
msgid "Donate"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: bws_menu.php:
|
879 |
msgid "Activate this plugin"
|
880 |
msgstr "Aktywuj wtyczkę"
|
881 |
|
882 |
-
#: bws_menu.php:
|
883 |
#, fuzzy
|
884 |
msgid "Install this plugin"
|
885 |
msgstr "Zainstalowane"
|
886 |
|
887 |
-
#: bws_menu.php:
|
888 |
msgid "Nothing found. Try another criteria."
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: bws_menu.php:
|
892 |
#, php-format
|
893 |
msgid "By %s"
|
894 |
msgstr "Od %s"
|
895 |
|
896 |
-
#: bws_menu.php:
|
897 |
msgid "Already Installed"
|
898 |
msgstr "Zainstalowane"
|
899 |
|
900 |
-
#: bws_menu.php:
|
901 |
msgid "Browse Free WordPress Themes"
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: bws_menu.php:
|
905 |
msgid "Send to support"
|
906 |
msgstr "Wyślij do supportu"
|
907 |
|
908 |
-
#: bws_menu.php:
|
909 |
msgid "Send to custom email »"
|
910 |
msgstr "Prześlij na własny adres »"
|
911 |
|
912 |
-
#: bws_menu.php:
|
913 |
msgid "Environment"
|
914 |
msgstr "Środowisko"
|
915 |
|
916 |
-
#: bws_menu.php:
|
917 |
msgid "Active Plugins"
|
918 |
msgstr "Aktywne wtyczki"
|
919 |
|
920 |
-
#: bws_menu.php:
|
921 |
msgid "Inactive Plugins"
|
922 |
msgstr "Nieaktywne wtyczki"
|
923 |
|
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"
|
18 |
"|| n%100>=20) ? 1 : 2);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: bws_functions.php:38 bws_menu.php:282 bws_menu.php:330
|
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 |
|
188 |
"może być wykorzystana tylko raz."
|
189 |
|
190 |
#: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
|
191 |
+
#: bws_menu.php:370 bws_menu.php:401 bws_menu.php:412
|
192 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
193 |
msgstr ""
|
194 |
"Pobieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
|
195 |
"manualnie"
|
196 |
|
197 |
+
#: bws_functions.php:361 bws_menu.php:387
|
198 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
199 |
msgstr ""
|
200 |
"Otwieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
|
201 |
"manualnie"
|
202 |
|
203 |
+
#: bws_functions.php:367 bws_menu.php:394
|
204 |
msgid ""
|
205 |
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
206 |
"plugin manually"
|
207 |
msgstr ""
|
208 |
"Twój serwer nie wspiera ZipAcrchive lub Phar. Proszę dodać wtyczkę manualnie"
|
209 |
|
210 |
+
#: bws_functions.php:374 bws_menu.php:404
|
211 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
212 |
msgstr ""
|
213 |
"Folder uploadu jest chroniony przez zapisem. Proszę dodać wtyczkę manualnie"
|
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 |
|
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 |
|
753 |
msgid "Client Area"
|
754 |
msgstr "Panel Klienta"
|
755 |
|
756 |
+
#: bws_menu.php:296
|
757 |
+
#, php-format
|
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"
|
774 |
msgstr "Wtyczka"
|
775 |
|
776 |
+
#: bws_menu.php:335
|
777 |
#, php-format
|
778 |
msgid ""
|
779 |
"The plugin generated %d characters of <strong>unexpected output</strong> "
|
782 |
"or removing this plugin."
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: bws_menu.php:337
|
786 |
msgid ""
|
787 |
"Plugin could not be activated because it triggered a <strong>fatal error</"
|
788 |
"strong>."
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: bws_menu.php:340
|
792 |
msgid "Plugin <strong>activated</strong>."
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: bws_menu.php:347
|
796 |
#, fuzzy
|
797 |
msgid "Installing Plugin"
|
798 |
msgstr "Zainstalowane"
|
799 |
|
800 |
+
#: bws_menu.php:353
|
801 |
msgid "Downloading install package from"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: bws_menu.php:378
|
805 |
msgid "Unpacking the package"
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: bws_menu.php:383 bws_menu.php:391
|
809 |
#, fuzzy
|
810 |
msgid "Installing the plugin"
|
811 |
msgstr "Zainstalowane"
|
812 |
|
813 |
+
#: bws_menu.php:397
|
814 |
#, fuzzy
|
815 |
msgid "Successfully installed the plugin"
|
816 |
msgstr "Zainstalowane"
|
817 |
|
818 |
+
#: bws_menu.php:409
|
819 |
#, fuzzy
|
820 |
msgid "Activate Plugin"
|
821 |
msgstr "Aktywne wtyczki"
|
822 |
|
823 |
+
#: bws_menu.php:409 bws_menu.php:415
|
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 |
|
835 |
+
#: bws_menu.php:421
|
836 |
#, fuzzy
|
837 |
msgid "Not Installed"
|
838 |
msgstr "Zainstalowane"
|
839 |
|
840 |
+
#: bws_menu.php:427
|
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"
|
@@ -16,11 +16,11 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: bws_functions.php:38 bws_menu.php:282 bws_menu.php:
|
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 |
|
@@ -184,16 +184,16 @@ msgstr ""
|
|
184 |
"лицензия может быть установлена только один раз."
|
185 |
|
186 |
#: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
|
187 |
-
#: bws_menu.php:
|
188 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
189 |
msgstr ""
|
190 |
"Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
|
191 |
|
192 |
-
#: bws_functions.php:361 bws_menu.php:
|
193 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
194 |
msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
|
195 |
|
196 |
-
#: bws_functions.php:367 bws_menu.php:
|
197 |
msgid ""
|
198 |
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
199 |
"plugin manually"
|
@@ -201,7 +201,7 @@ msgstr ""
|
|
201 |
"Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. "
|
202 |
"Пожалуйста, загрузите плагин вручную"
|
203 |
|
204 |
-
#: bws_functions.php:374 bws_menu.php:
|
205 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
206 |
msgstr ""
|
207 |
"Папка загрузки не доступна для записи. Пожалуйста, загрузите плагин вручную"
|
@@ -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 |
|
@@ -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 |
|
@@ -743,27 +743,24 @@ msgstr "Управление купленными лицензиями и под
|
|
743 |
msgid "Client Area"
|
744 |
msgstr "Client Area"
|
745 |
|
746 |
-
#: bws_menu.php:
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
#: bws_menu.php:311
|
751 |
-
msgid "Activate Membership"
|
752 |
-
msgstr "Активировать Membership"
|
753 |
|
754 |
-
#: bws_menu.php:
|
755 |
-
msgid "
|
756 |
-
msgstr "
|
757 |
|
758 |
-
#: bws_menu.php:
|
759 |
-
msgid "
|
760 |
-
msgstr "
|
761 |
|
762 |
-
#: bws_menu.php:
|
763 |
msgid "Upload Plugin"
|
764 |
msgstr "Добавить новый"
|
765 |
|
766 |
-
#: bws_menu.php:
|
767 |
#, php-format
|
768 |
msgid ""
|
769 |
"The plugin generated %d characters of <strong>unexpected output</strong> "
|
@@ -776,7 +773,7 @@ msgstr ""
|
|
776 |
"проблемы с RSS-лентами или другие неполадки, попробуйте деактивировать или "
|
777 |
"удалить этот плагин."
|
778 |
|
779 |
-
#: bws_menu.php:
|
780 |
msgid ""
|
781 |
"Plugin could not be activated because it triggered a <strong>fatal error</"
|
782 |
"strong>."
|
@@ -784,125 +781,125 @@ msgstr ""
|
|
784 |
"Плагин не может быть активирован, поскольку он вызвал <strong>фатальную "
|
785 |
"ошибку</strong>."
|
786 |
|
787 |
-
#: bws_menu.php:
|
788 |
msgid "Plugin <strong>activated</strong>."
|
789 |
msgstr "Плагин <strong>активировано</strong>."
|
790 |
|
791 |
-
#: bws_menu.php:
|
792 |
msgid "Installing Plugin"
|
793 |
msgstr "Установка плагина"
|
794 |
|
795 |
-
#: bws_menu.php:
|
796 |
msgid "Downloading install package from"
|
797 |
msgstr "Скачивание установочного пакета из"
|
798 |
|
799 |
-
#: bws_menu.php:
|
800 |
msgid "Unpacking the package"
|
801 |
msgstr "Распаковка пакета"
|
802 |
|
803 |
-
#: bws_menu.php:
|
804 |
msgid "Installing the plugin"
|
805 |
msgstr "Установка плагина"
|
806 |
|
807 |
-
#: bws_menu.php:
|
808 |
msgid "Successfully installed the plugin"
|
809 |
msgstr "Успешно установлен плагин"
|
810 |
|
811 |
-
#: bws_menu.php:
|
812 |
msgid "Activate Plugin"
|
813 |
msgstr "Активировать плагин"
|
814 |
|
815 |
-
#: bws_menu.php:
|
816 |
msgid "Return to BestWebSoft Panel"
|
817 |
msgstr "Возврат к BestWebSoft Panel"
|
818 |
|
819 |
-
#: bws_menu.php:
|
820 |
msgid "All"
|
821 |
msgstr "Все"
|
822 |
|
823 |
-
#: bws_menu.php:
|
824 |
msgid "Installed"
|
825 |
msgstr "Установленные"
|
826 |
|
827 |
-
#: bws_menu.php:
|
828 |
msgid "Not Installed"
|
829 |
msgstr "Не установленные"
|
830 |
|
831 |
-
#: bws_menu.php:
|
832 |
msgid "Filter results"
|
833 |
msgstr "Фильтр результатов"
|
834 |
|
835 |
-
#: bws_menu.php:
|
836 |
msgid "Category"
|
837 |
msgstr "Категория"
|
838 |
|
839 |
-
#: bws_menu.php:
|
840 |
msgid "Not installed"
|
841 |
msgstr "Не установлен"
|
842 |
|
843 |
-
#: bws_menu.php:
|
844 |
msgid "Renew to get updates"
|
845 |
msgstr "Продлить для обновления"
|
846 |
|
847 |
-
#: bws_menu.php:
|
848 |
#, php-format
|
849 |
msgid "Update to v %s"
|
850 |
msgstr "Обновить до версии %s"
|
851 |
|
852 |
-
#: bws_menu.php:
|
853 |
msgid "Install Now"
|
854 |
msgstr "Установить"
|
855 |
|
856 |
-
#: bws_menu.php:
|
857 |
msgid "Upgrade to Pro"
|
858 |
msgstr "Обновиться на Pro"
|
859 |
|
860 |
-
#: bws_menu.php:
|
861 |
msgid "Donate"
|
862 |
msgstr "Пожертвовать"
|
863 |
|
864 |
-
#: bws_menu.php:
|
865 |
msgid "Activate this plugin"
|
866 |
msgstr "Активировать плагин"
|
867 |
|
868 |
-
#: bws_menu.php:
|
869 |
msgid "Install this plugin"
|
870 |
msgstr "Установить этот плагин"
|
871 |
|
872 |
-
#: bws_menu.php:
|
873 |
msgid "Nothing found. Try another criteria."
|
874 |
msgstr "Ничего не найдено. Попробуйте другие критерии."
|
875 |
|
876 |
-
#: bws_menu.php:
|
877 |
#, php-format
|
878 |
msgid "By %s"
|
879 |
msgstr "%s"
|
880 |
|
881 |
-
#: bws_menu.php:
|
882 |
msgid "Already Installed"
|
883 |
msgstr "Уже установлена"
|
884 |
|
885 |
-
#: bws_menu.php:
|
886 |
msgid "Browse Free WordPress Themes"
|
887 |
msgstr "Обзор бесплатных WordPress тем"
|
888 |
|
889 |
-
#: bws_menu.php:
|
890 |
msgid "Send to support"
|
891 |
msgstr "Отправить в тех. поддержку"
|
892 |
|
893 |
-
#: bws_menu.php:
|
894 |
msgid "Send to custom email »"
|
895 |
msgstr "Отправить на емейл »"
|
896 |
|
897 |
-
#: bws_menu.php:
|
898 |
msgid "Environment"
|
899 |
msgstr "Системная среда"
|
900 |
|
901 |
-
#: bws_menu.php:
|
902 |
msgid "Active Plugins"
|
903 |
msgstr "Активированные плагины"
|
904 |
|
905 |
-
#: bws_menu.php:
|
906 |
msgid "Inactive Plugins"
|
907 |
msgstr "Неактивированные плагины"
|
908 |
|
@@ -942,8 +939,11 @@ msgstr "Утилиты"
|
|
942 |
msgid "Other"
|
943 |
msgstr "Другое"
|
944 |
|
945 |
-
#~ msgid "
|
946 |
-
#~ msgstr "
|
|
|
|
|
|
|
947 |
|
948 |
#~ msgid ""
|
949 |
#~ "Join BestWebSoft Pro Membership today, cancel any time and use all "
|
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"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: bws_functions.php:38 bws_menu.php:282 bws_menu.php:330
|
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 |
|
184 |
"лицензия может быть установлена только один раз."
|
185 |
|
186 |
#: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
|
187 |
+
#: bws_menu.php:370 bws_menu.php:401 bws_menu.php:412
|
188 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
189 |
msgstr ""
|
190 |
"Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
|
191 |
|
192 |
+
#: bws_functions.php:361 bws_menu.php:387
|
193 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
194 |
msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
|
195 |
|
196 |
+
#: bws_functions.php:367 bws_menu.php:394
|
197 |
msgid ""
|
198 |
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
199 |
"plugin manually"
|
201 |
"Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. "
|
202 |
"Пожалуйста, загрузите плагин вручную"
|
203 |
|
204 |
+
#: bws_functions.php:374 bws_menu.php:404
|
205 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
206 |
msgstr ""
|
207 |
"Папка загрузки не доступна для записи. Пожалуйста, загрузите плагин вручную"
|
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 |
|
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 |
|
743 |
msgid "Client Area"
|
744 |
msgstr "Client Area"
|
745 |
|
746 |
+
#: bws_menu.php:296
|
747 |
+
#, php-format
|
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 "Добавить новый"
|
762 |
|
763 |
+
#: bws_menu.php:335
|
764 |
#, php-format
|
765 |
msgid ""
|
766 |
"The plugin generated %d characters of <strong>unexpected output</strong> "
|
773 |
"проблемы с RSS-лентами или другие неполадки, попробуйте деактивировать или "
|
774 |
"удалить этот плагин."
|
775 |
|
776 |
+
#: bws_menu.php:337
|
777 |
msgid ""
|
778 |
"Plugin could not be activated because it triggered a <strong>fatal error</"
|
779 |
"strong>."
|
781 |
"Плагин не может быть активирован, поскольку он вызвал <strong>фатальную "
|
782 |
"ошибку</strong>."
|
783 |
|
784 |
+
#: bws_menu.php:340
|
785 |
msgid "Plugin <strong>activated</strong>."
|
786 |
msgstr "Плагин <strong>активировано</strong>."
|
787 |
|
788 |
+
#: bws_menu.php:347
|
789 |
msgid "Installing Plugin"
|
790 |
msgstr "Установка плагина"
|
791 |
|
792 |
+
#: bws_menu.php:353
|
793 |
msgid "Downloading install package from"
|
794 |
msgstr "Скачивание установочного пакета из"
|
795 |
|
796 |
+
#: bws_menu.php:378
|
797 |
msgid "Unpacking the package"
|
798 |
msgstr "Распаковка пакета"
|
799 |
|
800 |
+
#: bws_menu.php:383 bws_menu.php:391
|
801 |
msgid "Installing the plugin"
|
802 |
msgstr "Установка плагина"
|
803 |
|
804 |
+
#: bws_menu.php:397
|
805 |
msgid "Successfully installed the plugin"
|
806 |
msgstr "Успешно установлен плагин"
|
807 |
|
808 |
+
#: bws_menu.php:409
|
809 |
msgid "Activate Plugin"
|
810 |
msgstr "Активировать плагин"
|
811 |
|
812 |
+
#: bws_menu.php:409 bws_menu.php:415
|
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 |
|
824 |
+
#: bws_menu.php:421
|
825 |
msgid "Not Installed"
|
826 |
msgstr "Не установленные"
|
827 |
|
828 |
+
#: bws_menu.php:427
|
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 "
|
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"
|
@@ -16,11 +16,11 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: bws_functions.php:38 bws_menu.php:282 bws_menu.php:
|
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 |
|
@@ -183,16 +183,16 @@ msgstr ""
|
|
183 |
"версії плагіну можна використати лише один раз."
|
184 |
|
185 |
#: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
|
186 |
-
#: bws_menu.php:
|
187 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
188 |
msgstr ""
|
189 |
"Помилка при завантаженні zip-архіву. Будь ласка, завантажте плагін вручну"
|
190 |
|
191 |
-
#: bws_functions.php:361 bws_menu.php:
|
192 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
193 |
msgstr "Помилка при відкритті zip-архіву. Будь ласка, завантажте плагін вручну"
|
194 |
|
195 |
-
#: bws_functions.php:367 bws_menu.php:
|
196 |
msgid ""
|
197 |
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
198 |
"plugin manually"
|
@@ -200,7 +200,7 @@ msgstr ""
|
|
200 |
"Ваш сервер не підтримує формати Zip і Phar. Будь ласка, завантажте плагін "
|
201 |
"вручну"
|
202 |
|
203 |
-
#: bws_functions.php:374 bws_menu.php:
|
204 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
205 |
msgstr ""
|
206 |
"Немає доступу до теки завантажень WordPress. Будь ласка, завантажте плагін "
|
@@ -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 |
|
@@ -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 |
|
@@ -740,27 +740,24 @@ msgstr "Управління придбаними ліцензіями і під
|
|
740 |
msgid "Client Area"
|
741 |
msgstr "Client Area"
|
742 |
|
743 |
-
#: bws_menu.php:
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
#: bws_menu.php:311
|
748 |
-
msgid "Activate Membership"
|
749 |
-
msgstr "Активувати Membership"
|
750 |
|
751 |
-
#: bws_menu.php:
|
752 |
-
msgid "
|
753 |
-
msgstr "
|
754 |
|
755 |
-
#: bws_menu.php:
|
756 |
-
msgid "
|
757 |
-
msgstr "
|
758 |
|
759 |
-
#: bws_menu.php:
|
760 |
msgid "Upload Plugin"
|
761 |
msgstr "Завантажити плагін"
|
762 |
|
763 |
-
#: bws_menu.php:
|
764 |
#, php-format
|
765 |
msgid ""
|
766 |
"The plugin generated %d characters of <strong>unexpected output</strong> "
|
@@ -773,7 +770,7 @@ msgstr ""
|
|
773 |
"надіслані”, проблеми з каналами чи інші неполадки, спробуйте вимкнути "
|
774 |
"чи видалити цей плагін."
|
775 |
|
776 |
-
#: bws_menu.php:
|
777 |
msgid ""
|
778 |
"Plugin could not be activated because it triggered a <strong>fatal error</"
|
779 |
"strong>."
|
@@ -781,125 +778,125 @@ msgstr ""
|
|
781 |
"Плагін не вдалося активувати, бо він спричинив <strong>критичну помилку</"
|
782 |
"strong>."
|
783 |
|
784 |
-
#: bws_menu.php:
|
785 |
msgid "Plugin <strong>activated</strong>."
|
786 |
msgstr "Плагін <strong>активовано</strong>."
|
787 |
|
788 |
-
#: bws_menu.php:
|
789 |
msgid "Installing Plugin"
|
790 |
msgstr "Встановлення плагіну"
|
791 |
|
792 |
-
#: bws_menu.php:
|
793 |
msgid "Downloading install package from"
|
794 |
msgstr "Завантаження встановлюючого пакунку з"
|
795 |
|
796 |
-
#: bws_menu.php:
|
797 |
msgid "Unpacking the package"
|
798 |
msgstr "Розпакування пакета"
|
799 |
|
800 |
-
#: bws_menu.php:
|
801 |
msgid "Installing the plugin"
|
802 |
msgstr "Встановлення плагіну"
|
803 |
|
804 |
-
#: bws_menu.php:
|
805 |
msgid "Successfully installed the plugin"
|
806 |
msgstr "Успішно встановлено плагін"
|
807 |
|
808 |
-
#: bws_menu.php:
|
809 |
msgid "Activate Plugin"
|
810 |
msgstr "Активувати плагін"
|
811 |
|
812 |
-
#: bws_menu.php:
|
813 |
msgid "Return to BestWebSoft Panel"
|
814 |
msgstr "Назад до BestWebSoft Panel"
|
815 |
|
816 |
-
#: bws_menu.php:
|
817 |
msgid "All"
|
818 |
msgstr "Всі"
|
819 |
|
820 |
-
#: bws_menu.php:
|
821 |
msgid "Installed"
|
822 |
msgstr "Встановлені"
|
823 |
|
824 |
-
#: bws_menu.php:
|
825 |
msgid "Not Installed"
|
826 |
msgstr "Не встановлені"
|
827 |
|
828 |
-
#: bws_menu.php:
|
829 |
msgid "Filter results"
|
830 |
msgstr "Фільтр результатів"
|
831 |
|
832 |
-
#: bws_menu.php:
|
833 |
msgid "Category"
|
834 |
msgstr "Категорія"
|
835 |
|
836 |
-
#: bws_menu.php:
|
837 |
msgid "Not installed"
|
838 |
msgstr "Не встановлен"
|
839 |
|
840 |
-
#: bws_menu.php:
|
841 |
msgid "Renew to get updates"
|
842 |
msgstr "Продовжити для поновлення"
|
843 |
|
844 |
-
#: bws_menu.php:
|
845 |
#, php-format
|
846 |
msgid "Update to v %s"
|
847 |
msgstr "Оновити до версії %s"
|
848 |
|
849 |
-
#: bws_menu.php:
|
850 |
msgid "Install Now"
|
851 |
msgstr "Встановити"
|
852 |
|
853 |
-
#: bws_menu.php:
|
854 |
msgid "Upgrade to Pro"
|
855 |
msgstr "Оновитися на Pro"
|
856 |
|
857 |
-
#: bws_menu.php:
|
858 |
msgid "Donate"
|
859 |
msgstr "Пожертвувати"
|
860 |
|
861 |
-
#: bws_menu.php:
|
862 |
msgid "Activate this plugin"
|
863 |
msgstr "Активувати плагін"
|
864 |
|
865 |
-
#: bws_menu.php:
|
866 |
msgid "Install this plugin"
|
867 |
msgstr "Встановити плагін"
|
868 |
|
869 |
-
#: bws_menu.php:
|
870 |
msgid "Nothing found. Try another criteria."
|
871 |
msgstr "Нічого не знайдено. Спробуйте інші критерії."
|
872 |
|
873 |
-
#: bws_menu.php:
|
874 |
#, php-format
|
875 |
msgid "By %s"
|
876 |
msgstr "За %s"
|
877 |
|
878 |
-
#: bws_menu.php:
|
879 |
msgid "Already Installed"
|
880 |
msgstr "Уже встановлено %s"
|
881 |
|
882 |
-
#: bws_menu.php:
|
883 |
msgid "Browse Free WordPress Themes"
|
884 |
msgstr "Огляд безкоштовних WordPress тем"
|
885 |
|
886 |
-
#: bws_menu.php:
|
887 |
msgid "Send to support"
|
888 |
msgstr "Відправити службі тех. підтримки"
|
889 |
|
890 |
-
#: bws_menu.php:
|
891 |
msgid "Send to custom email »"
|
892 |
msgstr "Відправити на електронну адресу »"
|
893 |
|
894 |
-
#: bws_menu.php:
|
895 |
msgid "Environment"
|
896 |
msgstr "Системне оточення"
|
897 |
|
898 |
-
#: bws_menu.php:
|
899 |
msgid "Active Plugins"
|
900 |
msgstr "Активні плагіни"
|
901 |
|
902 |
-
#: bws_menu.php:
|
903 |
msgid "Inactive Plugins"
|
904 |
msgstr "Не активні плагіни"
|
905 |
|
@@ -939,8 +936,11 @@ msgstr "Утиліти"
|
|
939 |
msgid "Other"
|
940 |
msgstr "Інше"
|
941 |
|
942 |
-
#~ msgid "
|
943 |
-
#~ msgstr "
|
|
|
|
|
|
|
944 |
|
945 |
#~ msgid ""
|
946 |
#~ "Join BestWebSoft Pro Membership today, cancel any time and use all "
|
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"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: bws_functions.php:38 bws_menu.php:282 bws_menu.php:330
|
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 |
|
183 |
"версії плагіну можна використати лише один раз."
|
184 |
|
185 |
#: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
|
186 |
+
#: bws_menu.php:370 bws_menu.php:401 bws_menu.php:412
|
187 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
188 |
msgstr ""
|
189 |
"Помилка при завантаженні zip-архіву. Будь ласка, завантажте плагін вручну"
|
190 |
|
191 |
+
#: bws_functions.php:361 bws_menu.php:387
|
192 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
193 |
msgstr "Помилка при відкритті zip-архіву. Будь ласка, завантажте плагін вручну"
|
194 |
|
195 |
+
#: bws_functions.php:367 bws_menu.php:394
|
196 |
msgid ""
|
197 |
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
198 |
"plugin manually"
|
200 |
"Ваш сервер не підтримує формати Zip і Phar. Будь ласка, завантажте плагін "
|
201 |
"вручну"
|
202 |
|
203 |
+
#: bws_functions.php:374 bws_menu.php:404
|
204 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
205 |
msgstr ""
|
206 |
"Немає доступу до теки завантажень WordPress. Будь ласка, завантажте плагін "
|
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 |
|
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 |
|
740 |
msgid "Client Area"
|
741 |
msgstr "Client Area"
|
742 |
|
743 |
+
#: bws_menu.php:296
|
744 |
+
#, php-format
|
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 "Завантажити плагін"
|
759 |
|
760 |
+
#: bws_menu.php:335
|
761 |
#, php-format
|
762 |
msgid ""
|
763 |
"The plugin generated %d characters of <strong>unexpected output</strong> "
|
770 |
"надіслані”, проблеми з каналами чи інші неполадки, спробуйте вимкнути "
|
771 |
"чи видалити цей плагін."
|
772 |
|
773 |
+
#: bws_menu.php:337
|
774 |
msgid ""
|
775 |
"Plugin could not be activated because it triggered a <strong>fatal error</"
|
776 |
"strong>."
|
778 |
"Плагін не вдалося активувати, бо він спричинив <strong>критичну помилку</"
|
779 |
"strong>."
|
780 |
|
781 |
+
#: bws_menu.php:340
|
782 |
msgid "Plugin <strong>activated</strong>."
|
783 |
msgstr "Плагін <strong>активовано</strong>."
|
784 |
|
785 |
+
#: bws_menu.php:347
|
786 |
msgid "Installing Plugin"
|
787 |
msgstr "Встановлення плагіну"
|
788 |
|
789 |
+
#: bws_menu.php:353
|
790 |
msgid "Downloading install package from"
|
791 |
msgstr "Завантаження встановлюючого пакунку з"
|
792 |
|
793 |
+
#: bws_menu.php:378
|
794 |
msgid "Unpacking the package"
|
795 |
msgstr "Розпакування пакета"
|
796 |
|
797 |
+
#: bws_menu.php:383 bws_menu.php:391
|
798 |
msgid "Installing the plugin"
|
799 |
msgstr "Встановлення плагіну"
|
800 |
|
801 |
+
#: bws_menu.php:397
|
802 |
msgid "Successfully installed the plugin"
|
803 |
msgstr "Успішно встановлено плагін"
|
804 |
|
805 |
+
#: bws_menu.php:409
|
806 |
msgid "Activate Plugin"
|
807 |
msgstr "Активувати плагін"
|
808 |
|
809 |
+
#: bws_menu.php:409 bws_menu.php:415
|
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 |
|
821 |
+
#: bws_menu.php:421
|
822 |
msgid "Not Installed"
|
823 |
msgstr "Не встановлені"
|
824 |
|
825 |
+
#: bws_menu.php:427
|
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 "
|
gallery-plugin.php
CHANGED
@@ -6,7 +6,7 @@ Description: Add beautiful galleries, albums & images to your Wordpress website
|
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: gallery-plugin
|
8 |
Domain Path: /languages
|
9 |
-
Version: 4.4.
|
10 |
Author URI: http://bestwebsoft.com/
|
11 |
License: GPLv2 or later
|
12 |
*/
|
@@ -71,7 +71,7 @@ if ( ! function_exists ( 'gllr_init' ) ) {
|
|
71 |
$gllr_plugin_info = get_plugin_data( __FILE__ );
|
72 |
}
|
73 |
/* Function check if plugin is compatible with current WP version */
|
74 |
-
bws_wp_min_version_check( plugin_basename( __FILE__ ), $gllr_plugin_info, '3.8'
|
75 |
|
76 |
/* Add media button to the gallery post type */
|
77 |
if ( ( isset( $_GET['post'] ) && get_post_type( $_GET['post'] ) == 'gallery' ) || ( isset( $pagenow ) && $pagenow == 'post-new.php' && isset( $_GET['post_type'] ) && $_GET['post_type'] == 'gallery' ) ) {
|
@@ -93,7 +93,7 @@ if ( ! function_exists ( 'gllr_admin_init' ) ) {
|
|
93 |
function gllr_admin_init() {
|
94 |
global $bws_plugin_info, $gllr_plugin_info, $bws_shortcode_list;
|
95 |
/* Add variable for bws_menu */
|
96 |
-
if (
|
97 |
$bws_plugin_info = array( 'id' => '79', 'version' => $gllr_plugin_info["Version"] );
|
98 |
}
|
99 |
/* Call register settings function */
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: gallery-plugin
|
8 |
Domain Path: /languages
|
9 |
+
Version: 4.4.3
|
10 |
Author URI: http://bestwebsoft.com/
|
11 |
License: GPLv2 or later
|
12 |
*/
|
71 |
$gllr_plugin_info = get_plugin_data( __FILE__ );
|
72 |
}
|
73 |
/* Function check if plugin is compatible with current WP version */
|
74 |
+
bws_wp_min_version_check( plugin_basename( __FILE__ ), $gllr_plugin_info, '3.8' );
|
75 |
|
76 |
/* Add media button to the gallery post type */
|
77 |
if ( ( isset( $_GET['post'] ) && get_post_type( $_GET['post'] ) == 'gallery' ) || ( isset( $pagenow ) && $pagenow == 'post-new.php' && isset( $_GET['post_type'] ) && $_GET['post_type'] == 'gallery' ) ) {
|
93 |
function gllr_admin_init() {
|
94 |
global $bws_plugin_info, $gllr_plugin_info, $bws_shortcode_list;
|
95 |
/* Add variable for bws_menu */
|
96 |
+
if ( empty( $bws_plugin_info ) ) {
|
97 |
$bws_plugin_info = array( 'id' => '79', 'version' => $gllr_plugin_info["Version"] );
|
98 |
}
|
99 |
/* Call register settings function */
|
inc/demo-data/demo-data.php
CHANGED
@@ -85,7 +85,7 @@ if ( ! function_exists( 'bws_demo_data_array' ) ) {
|
|
85 |
'post_status' => 'publish',
|
86 |
'post_type' => 'post',
|
87 |
'post_title' => 'Gallery DEMO',
|
88 |
-
'post_content' => '<p>This is a demonstration of a Gallery plugin for Wordpress websites.</p><h2>Create amazing galleries in few clicks</h2><p>Gallery plugin helps you to collect images and display them on your website. Add unlimited galleries to your website - no programming knowledge required.</p><h2>Expand your possibilities with exclusive add-ons</h2><ul><li><a href="http://bestwebsoft.com/products/gallery-categories/" target="_blank">Gallery categories</a>: Create different categories of your galleries.</li><li><a href="http://bestwebsoft.com/products/re-attacher/" target="_blank">Re-attacher</a>: Re-attach previously uploaded images to other gallery without having to upload them again, as well as detach files from the gallery completely.</li></ul><h2><span id="result_box" class="short_text" lang="en"><span class="hps">Help & Support</span></span></h2><p>If you have any questions, our friendly Support Team is happy to help. <a href="http://support.bestwebsoft.com/" target="_blank">Visit our Help Center</a></
|
89 |
),
|
90 |
);
|
91 |
|
85 |
'post_status' => 'publish',
|
86 |
'post_type' => 'post',
|
87 |
'post_title' => 'Gallery DEMO',
|
88 |
+
'post_content' => '<p>This is a demonstration of a Gallery plugin for Wordpress websites.</p><h2>Create amazing galleries in few clicks</h2><p>Gallery plugin helps you to collect images and display them on your website. Add unlimited galleries to your website - no programming knowledge required.</p><h2>Expand your possibilities with exclusive add-ons</h2><ul><li><a href="http://bestwebsoft.com/products/gallery-categories/" target="_blank">Gallery categories</a>: Create different categories of your galleries.</li><li><a href="http://bestwebsoft.com/products/re-attacher/" target="_blank">Re-attacher</a>: Re-attach previously uploaded images to other gallery without having to upload them again, as well as detach files from the gallery completely.</li></ul><h2><span id="result_box" class="short_text" lang="en"><span class="hps">Help & Support</span></span></h2><p>If you have any questions, our friendly Support Team is happy to help. <a href="http://support.bestwebsoft.com/" target="_blank">Visit our Help Center</a></p><h2>Shortcodes</h2><p>Use <code><strong>[print_gllr id=<i>gallery_id</i> display=short]</strong></code> shortcode for displaying short description and link to the single gallery.</p><div>[print_gllr id={last_post_id} display=short]</div><div></div>Use <code><strong>[print_gllr id=<i>gallery_id</i>]</strong></code> shortcode for displaying all images in gallery.<div>[print_gllr id={last_post_id}]</div> <div>{template_page} | <a href="https://drive.google.com/drive/u/0/folders/0B5l8lO-CaKt9QkJNaERwVEJnSVE" target="_blank">Instructions</a></div>',
|
89 |
),
|
90 |
);
|
91 |
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: bestwebsoft
|
|
3 |
Donate link: http://bestwebsoft.com/donate/
|
4 |
Tags: add album, add galleries, add images, add pictures, add albums, gallery, gallery plugin, gallery slider, fancy gallery, slideshow, lightbox, fullscreen gallery
|
5 |
Requires at least: 3.8
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 4.4.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -12,73 +12,107 @@ Add beautiful galleries, albums & images to your Wordpress website in few clicks
|
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
-
|
16 |
-
There is also a premium version of the plugin with more useful features available.
|
17 |
|
18 |
-
http://
|
19 |
-
|
20 |
-
<a href="http://www.youtube.com/watch?v=3u-Ov-HxZ7U" target="_blank">Gallery by BestWebSoft Video instruction on Installation</a>
|
21 |
-
|
22 |
-
<a href="http://www.youtube.com/watch?v=-P9o6-APlv0" target="_blank">Gallery by BestWebSoft Video instruction "How to add a gallery"</a>
|
23 |
-
|
24 |
-
<a href="http://wordpress.org/plugins/gallery-plugin/faq/" target="_blank">Gallery by BestWebSoft FAQ</a>
|
25 |
-
|
26 |
-
<a href="http://support.bestwebsoft.com" target="_blank">Gallery by BestWebSoft Support</a>
|
27 |
-
|
28 |
-
<a href="http://bestwebsoft.com/products/gallery/?k=57ad5c0c7fe312e2a45ef9a76f47334c" target="_blank">Upgrade to Gallery Pro by BestWebSoft</a>, <a href="http://bestwebsoft.com/demo-for-gallery-pro/" target="_blank">View Demo of Gallery Pro by BestWebSoft</a>
|
29 |
-
|
30 |
-
= Features =
|
31 |
-
|
32 |
-
* Create any amount of albums in the gallery.
|
33 |
-
* Upload any number of photos to each album in the gallery.
|
34 |
-
* Add description to each album.
|
35 |
-
* Set a featured image as an album cover.
|
36 |
-
* Add a caption and alt tag to each photo in the album.
|
37 |
-
* Change the size of album cover thumbnails and photos in the album.
|
38 |
-
* View pictures as a slide show and in a full size.
|
39 |
-
* Add Single Gallery to your page or post using a shortcode.
|
40 |
-
* Choose a number of pictures to display in one row in the gallery album.
|
41 |
-
* Set sorting order for images.
|
42 |
-
* Add comments to a Gallery.
|
43 |
-
* Install (and delete) demo data.
|
44 |
-
* Add images from WordPress media library.
|
45 |
|
46 |
-
|
47 |
-
|
48 |
-
= Recommended Plugins =
|
49 |
-
|
50 |
-
The author of the Gallery also recommends the following plugins:
|
51 |
|
52 |
-
|
53 |
-
|
54 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
|
56 |
= Translation =
|
57 |
|
58 |
* Brazilian Portuguese (pt_BR) (thanks to DJIO, www.djio.com.br)
|
59 |
* Bulgarian (bg_BG) (thanks to Petya)
|
60 |
-
* Chinese (zh_CN) (thanks to
|
61 |
-
* Czech (cs_CZ) (thanks to
|
62 |
-
* Dutch (nl_NL) (thanks to
|
63 |
-
* French (fr_FR) (thanks to Didier,
|
64 |
-
* German (de_DE) (thanks to Thomas Bludau,
|
65 |
* Russian (ru_RU)
|
66 |
-
* Serbian (sr_RS) (thanks to
|
67 |
-
* Slovak (sk_SK) (thanks to
|
68 |
-
* Slovenian (sl_SI) (thanks to
|
69 |
-
* Spanish (es_ES) (thanks to
|
70 |
-
* Turkish (tr) (thanks to
|
71 |
* Ukrainian (uk)
|
72 |
|
73 |
-
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
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
|
75 |
-
=
|
76 |
|
77 |
-
|
78 |
|
79 |
-
|
80 |
-
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.
|
81 |
-
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).
|
82 |
|
83 |
== Installation ==
|
84 |
|
@@ -87,14 +121,6 @@ We can fix some things for free for the users who provide translation of our plu
|
|
87 |
3. Please check if you have the template file `gallery-template.php` as well as the template `gallery-single-template.php` in your theme folder. If you can't find these files, then just copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to your theme directory.
|
88 |
4. You can adjust the necessary settings using your WordPress admin panel in "BWS Panel" > "Gallery".
|
89 |
|
90 |
-
<a href="https://docs.google.com/document/d/1CSkuhf_NrjWlODijrXwyx2lZ_1q5uRw0exTZqz-5fCI/edit?pli=1" target="_blank">View a Step-by-step Instruction on Gallery by BestWebSoft Installation</a>.
|
91 |
-
|
92 |
-
http://www.youtube.com/watch?v=mivcWwfRVmI
|
93 |
-
|
94 |
-
<a href="https://docs.google.com/document/d/1l4zMhovBgO7rsPIzJk_15v0sdhiCpnjuacoDEfmzGEw/edit?pli=1" target="_blank">View a Step-by-step Instruction "How to add a Gallery"</a>.
|
95 |
-
|
96 |
-
http://www.youtube.com/watch?v=-P9o6-APlv0
|
97 |
-
|
98 |
== Frequently Asked Questions ==
|
99 |
|
100 |
= I cannot view my Gallery page =
|
@@ -108,7 +134,7 @@ http://www.youtube.com/watch?v=-P9o6-APlv0
|
|
108 |
2. Add or Upload pictures via 'Add Media' button.
|
109 |
3. Save the page.
|
110 |
|
111 |
-
|
112 |
|
113 |
= I'm getting the following error: "Fatal error: Call to undefined function get_post_thumbnail_id()". What should I do? =
|
114 |
|
@@ -143,12 +169,12 @@ and add (for the themes Twenty Eleven or Twenty Ten):
|
|
143 |
|
144 |
= I have some problems with the plugin's work. What Information should I provide to receive proper support? =
|
145 |
|
146 |
-
Please make sure that the problem hasn't been discussed yet on our forum (<
|
147 |
|
148 |
1. the link to the page where the problem occurs
|
149 |
2. the name of the plugin and its version. If you are using a pro version - your order number.
|
150 |
3. the version of your WordPress installation
|
151 |
-
4. copy and paste into the message your system status report. Please read more here:
|
152 |
|
153 |
== Screenshots ==
|
154 |
|
@@ -162,6 +188,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
|
|
162 |
|
163 |
== Changelog ==
|
164 |
|
|
|
|
|
|
|
165 |
= V4.4.2 - 15.07.2016 =
|
166 |
* Update : BWS panel section was updated.
|
167 |
* Update : The French language file is updated.
|
@@ -250,16 +279,16 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
|
|
250 |
|
251 |
= V4.2.3 - 19.09.2014 =
|
252 |
* Update : We updated all functionality for wordpress 4.0.
|
253 |
-
*
|
254 |
|
255 |
= V4.2.2 - 07.08.2014 =
|
256 |
-
*
|
257 |
* Update : The French language file is updated.
|
258 |
|
259 |
= V4.2.1 - 11.07.2014 =
|
260 |
-
*
|
261 |
-
*
|
262 |
-
*
|
263 |
|
264 |
= V4.2.0 - 15.05.2014 =
|
265 |
* Update : We updated all functionality for wordpress 3.9.1
|
@@ -274,11 +303,11 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
|
|
274 |
|
275 |
= V4.1.7 - 31.03.2014 =
|
276 |
* Update : Fancybox is updated.
|
277 |
-
*
|
278 |
|
279 |
= V4.1.6 - 05.03.2014 =
|
280 |
-
*
|
281 |
-
*
|
282 |
* Update : The French language file is updated.
|
283 |
* NEW : Spanish language file are added to the plugin.
|
284 |
|
@@ -305,8 +334,8 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
|
|
305 |
* NEW : Ability to update images after changing gallery image size.
|
306 |
|
307 |
= V4.1.0 - 6.12.2013 =
|
308 |
-
* NEW : A notice when changing settings on the plugin's settings page was added.
|
309 |
-
* NEW : Ability to use shortcode in a text-widget.
|
310 |
* Bugfix : We fixed the bug of adding gallery to the search.
|
311 |
|
312 |
= V4.0.9 - 29.11.2013 =
|
@@ -317,10 +346,10 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
|
|
317 |
* Update : BWS plugins section is updated.
|
318 |
|
319 |
= V4.0.7 - 15.11.2013 =
|
320 |
-
* Bugfix : We fixed the bug of image count for lightbox when added multiple galleries on the one page.
|
321 |
|
322 |
= V4.0.6 - 8.11.2013 =
|
323 |
-
* Update : The French language file is updated.
|
324 |
|
325 |
= V4.0.5 - 1.11.2013 =
|
326 |
* NEW : Add checking installed wordpress version.
|
@@ -341,17 +370,17 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
|
|
341 |
* Update : The Brazilian Portuguese language file is updated.
|
342 |
|
343 |
= V4.0.0 - 24.09.2013 =
|
344 |
-
* Update : The Ukrainian language file is updated.
|
345 |
|
346 |
= V3.9.9 - 13.09.2013 =
|
347 |
-
* Update : The French language file is updated.
|
348 |
* Update : We updated all functionality for wordpress 3.6.1.
|
349 |
|
350 |
= V3.9.8 - 04.09.2013 =
|
351 |
* Update : Function for displaying BWS plugins section placed in a separate file and has own language files.
|
352 |
|
353 |
= V3.9.7 - 26.08.2013 =
|
354 |
-
* Update : The French language file is updated.
|
355 |
* Bugfix : We added replacing spaces in the file name when uploading.
|
356 |
|
357 |
= V3.9.6 - 13.08.2013 =
|
@@ -375,12 +404,12 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
|
|
375 |
* Update : We updated all functionality for wordpress 3.5.2.
|
376 |
|
377 |
= V3.9.1 - 02.07.2013 =
|
378 |
-
* Update : The French language file is updated.
|
379 |
|
380 |
= V3.9 - 28.05.2013 =
|
381 |
-
* Update : BWS plugins section is updated.
|
382 |
-
* Update : The French language file is updated.
|
383 |
-
* Bugfix : We changed using the abspath to plugin_dir_path().
|
384 |
|
385 |
= V3.8.9 - 16.05.2013 =
|
386 |
* Bugfix : We fixed the bug of SQL queries.
|
@@ -397,7 +426,7 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
|
|
397 |
* NEW : The Chinese language file is added to the plugin.
|
398 |
|
399 |
= V3.8.5 - 14.02.2013 =
|
400 |
-
* Update : We updated
|
401 |
* Update : We updated all functionality for wordpress 3.5.1.
|
402 |
|
403 |
= V3.8.4 - 25.01.2013 =
|
@@ -431,7 +460,7 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
|
|
431 |
* NEW : Added a shortcode for displaying short gallery type (like [print_gllr id=211 display=short])
|
432 |
|
433 |
= V3.4 - 24.07.2012 =
|
434 |
-
* Bugfix : Cross Site Request Forgery bug was fixed.
|
435 |
|
436 |
= V3.3 - 12.07.2012 =
|
437 |
* NEW : Brazilian Portuguese and Hebrew language files are added to the plugin.
|
@@ -485,7 +514,7 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
|
|
485 |
* NEW : Polish language files are added to the plugin.
|
486 |
|
487 |
= V2.09 - 12.03.2012 =
|
488 |
-
* Changed : BWS plugins section.
|
489 |
|
490 |
= V2.08 - 24.02.2012 =
|
491 |
* Change : Code that is used to connect styles and scripts is added to the plugin for correct SSL verification.
|
@@ -519,14 +548,17 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
|
|
519 |
* Bugfix : Button 'Sluiten' is replaced with a 'Close' button.
|
520 |
|
521 |
= V1.02 - 13.10.2011 =
|
522 |
-
* noConflict for jQuery is added.
|
523 |
|
524 |
= V1.01 - 23.09.2011 =
|
525 |
-
* The file uploader is added to the Galleries page in admin section.
|
526 |
|
527 |
== Upgrade Notice ==
|
528 |
|
529 |
-
= V4.
|
|
|
|
|
|
|
530 |
Usability improved.
|
531 |
|
532 |
= V4.4.1 =
|
@@ -635,7 +667,7 @@ Ability to turn on/off using single lightbox for all galleries on the one page.
|
|
635 |
We fixed the bug of image count for lightbox when added multiple galleries on the one page.
|
636 |
|
637 |
= V4.0.6 =
|
638 |
-
The French language file is updated.
|
639 |
|
640 |
= V4.0.5 =
|
641 |
Add checking installed wordpress version. Activation of radio button or checkbox by clicking on its label. We updated all functionality for wordpress 3.7.1.
|
@@ -653,7 +685,7 @@ Added Alt tag field for each image in the gallery.
|
|
653 |
The Brazilian Portuguese language file is updated.
|
654 |
|
655 |
= V4.0.0 =
|
656 |
-
The Ukrainian language file is updated.
|
657 |
|
658 |
= V3.9.9 =
|
659 |
The French language file is updated. We updated all functionality for wordpress 3.6.1.
|
@@ -676,7 +708,7 @@ Added an ability to display comments on the gallery template pages. The Brazilia
|
|
676 |
= V3.9.3 =
|
677 |
Added an ability to view and send system information by mail.
|
678 |
|
679 |
-
= V3.9.2 =
|
680 |
The Chinese language file is updated. We updated all functionality for wordpress 3.5.2.
|
681 |
|
682 |
= V3.9.1 =
|
@@ -725,7 +757,7 @@ Added function to display 'Download High resolution image' link in lightbox on g
|
|
725 |
Lituanian language file is added to the plugin. Added drag and drop function to change the order of the output of images. Added a shortcode for displaying short gallery type (like [print_gllr id=211 display=short])
|
726 |
|
727 |
= V3.4 =
|
728 |
-
Cross Site Request Forgery bug was fixed.
|
729 |
|
730 |
= V3.3 =
|
731 |
Brazilian Portuguese and Hebrew language files are added to the plugin. We updated Italian language file. We updated all functionality for wordpress 3.4.1.
|
@@ -770,7 +802,7 @@ The bug related with the indication of the menu item on the single page of the g
|
|
770 |
Polish language files are added to the plugin.
|
771 |
|
772 |
= V2.09 - 07.03.2012 =
|
773 |
-
BWS plugins section has been changed.
|
774 |
|
775 |
= V2.08 =
|
776 |
Code that is used to connect styles and scripts is added to the plugin for correct SSL verification. The bug with a style for an image block on admin page was fixed.
|
3 |
Donate link: http://bestwebsoft.com/donate/
|
4 |
Tags: add album, add galleries, add images, add pictures, add albums, gallery, gallery plugin, gallery slider, fancy gallery, slideshow, lightbox, fullscreen gallery
|
5 |
Requires at least: 3.8
|
6 |
+
Tested up to: 4.6
|
7 |
+
Stable tag: 4.4.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
+
The best responsive gallery plugin for your Wordpress website. Create amazing galleries in few clicks. Add an unlimited number of images to your gallery, create albums, add comments, change appearance and much more.
|
|
|
16 |
|
17 |
+
[View Demo](http://bestwebsoft.com/demo-for-gallery-pro/)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
|
19 |
+
http://www.youtube.com/watch?v=aydaTdOpaRM
|
|
|
|
|
|
|
|
|
20 |
|
21 |
+
= Free Features =
|
22 |
+
|
23 |
+
* Fully Responsive
|
24 |
+
* Add unlimited:
|
25 |
+
* Albums to gallery
|
26 |
+
* Images to album
|
27 |
+
* Change image for album cover and its dimensions
|
28 |
+
* Change sorting order for images
|
29 |
+
* Install/delete demo data
|
30 |
+
* Slideshow and full-size image displaying
|
31 |
+
* Change border width and color
|
32 |
+
* Add:
|
33 |
+
* Any image file format
|
34 |
+
* Comments to galleries
|
35 |
+
* Images from WordPress media library
|
36 |
+
* Descriptions to each album
|
37 |
+
* Install [Gallery Categories](http://bestwebsoft.com/products/gallery-categories/) to organize your content
|
38 |
+
* Add custom code via plugin settings page
|
39 |
+
* Compatible with latest WordPress version
|
40 |
+
* Incredibly simple settings for fast setup without modifying code
|
41 |
+
* Detailed step-by-step documentation and videos
|
42 |
+
* Multilingual (10+ languages) and RTL ready
|
43 |
+
|
44 |
+
> **Pro Features**
|
45 |
+
>
|
46 |
+
> All features from Free version included plus:
|
47 |
+
>
|
48 |
+
> * Change gallery layout:
|
49 |
+
> * Grid
|
50 |
+
> * Masonry
|
51 |
+
> * Set:
|
52 |
+
> * Lightbox image size
|
53 |
+
> * Background color and the lightbox transparency
|
54 |
+
> * Gallery item slug
|
55 |
+
> * Image crop position
|
56 |
+
> * Horizontal
|
57 |
+
> * Vertical
|
58 |
+
> * Add lightbox helper (button or thumbnail)
|
59 |
+
> * Select ‘self’/‘blank’ for external URLs
|
60 |
+
> * Show:
|
61 |
+
> * Lightbox image description
|
62 |
+
> * Social sharing buttons (Facebook, Twitter, Google Plus One, Pinterest)
|
63 |
+
> * Add a button with URL to the lightbox
|
64 |
+
> * Single gallery pagination
|
65 |
+
> * Сonfigure all subsites on the network
|
66 |
+
> * Get answer to your support question within one business day ([Support Policy](http://bestwebsoft.com/support-policy/))
|
67 |
+
>
|
68 |
+
> [Upgrade to Pro Now](http://bestwebsoft.com/products/gallery/?k=57ad5c0c7fe312e2a45ef9a76f47334c)
|
69 |
+
|
70 |
+
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)
|
71 |
+
|
72 |
+
= Documentation & Videos =
|
73 |
+
|
74 |
+
* [[Doc] How to Add](https://docs.google.com/document/d/1l4zMhovBgO7rsPIzJk_15v0sdhiCpnjuacoDEfmzGEw/)
|
75 |
+
* [[Doc] Installation](https://docs.google.com/document/d/1CSkuhf_NrjWlODijrXwyx2lZ_1q5uRw0exTZqz-5fCI/)
|
76 |
+
* [[Doc] Trial License Installation](https://docs.google.com/document/d/1koBRu7k9OnOw2Ic3YqmBWjL_KtC3tI8WU1agMa3AYGo/)
|
77 |
+
* [[Doc] Purchase, Installation & Configuration](https://docs.google.com/document/d/1ygAuT1U0k-zM4e3uirlTdpKeJZSTLaSufnqkeOWJn3Q/)
|
78 |
+
* [[Video] Installation Instruction](https://www.youtube.com/watch?v=3u-Ov-HxZ7U)
|
79 |
+
* [[Video] Purchase, Installation, Configuration Tutorial](https://www.youtube.com/watch?v=KAbiac-iORw)
|
80 |
+
* [[Video] How to Add](http://www.youtube.com/watch?v=-P9o6-APlv0)
|
81 |
+
|
82 |
+
= Help & Support =
|
83 |
+
|
84 |
+
Visit our Help Center if you have any questions, our friendly Support Team is happy to help — <http://support.bestwebsoft.com/>
|
85 |
|
86 |
= Translation =
|
87 |
|
88 |
* Brazilian Portuguese (pt_BR) (thanks to DJIO, www.djio.com.br)
|
89 |
* Bulgarian (bg_BG) (thanks to Petya)
|
90 |
+
* Chinese (zh_CN) (thanks to [Xiaobo Chen](mailto:mibcxb@gmail.com))
|
91 |
+
* Czech (cs_CZ) (thanks to [Lagya](mailto:lagya@me.com))
|
92 |
+
* Dutch (nl_NL) (thanks to [J Goessens](mailto:j.goessens@gmail.com))
|
93 |
+
* French (fr_FR) (thanks to Didier, [L Capronnier](mailto:lcapronnier@yahoo.com))
|
94 |
+
* German (de_DE) (thanks to Thomas Bludau, [Jonas Seemann](mailto:info@ahoidesign.de))
|
95 |
* Russian (ru_RU)
|
96 |
+
* Serbian (sr_RS) (thanks to [Andrijana Nikolic](mailto:andrijanan@webhostinggeeks.com) www.webhostinggeeks.com )
|
97 |
+
* Slovak (sk_SK) (thanks to [Michal Kralik](mailto:ja@michalkralik.sk))
|
98 |
+
* Slovenian (sl_SI) (thanks to [Tilen](mailto:tilen@divided.si))
|
99 |
+
* Spanish (es_ES) (thanks to [Carlos Limia](mailto:climia@climia.es))
|
100 |
+
* Turkish (tr) (thanks to [Ismail Demirbilek](mailto:ce.demirbilek@gmail.com))
|
101 |
* Ukrainian (uk)
|
102 |
|
103 |
+
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).
|
104 |
+
|
105 |
+
= Recommended Plugins =
|
106 |
+
|
107 |
+
* [Gallery Categories](http://bestwebsoft.com/products/gallery-categories/) - Add unlimited gallery categories. Organize images to make the navigation through content easier.
|
108 |
+
* [Updater](http://bestwebsoft.com/products/updater/?k=6ed3f1f40908b8eb7248953196a4753a) - 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.
|
109 |
+
* [Re-attacher](http://bestwebsoft.com/products/re-attacher/) - Attach, unattach and re-attach media files quickly to WordPress posts and pages.
|
110 |
|
111 |
+
= Donate =
|
112 |
|
113 |
+
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.
|
114 |
|
115 |
+
[Donate Now](http://bestwebsoft.com/donate/)
|
|
|
|
|
116 |
|
117 |
== Installation ==
|
118 |
|
121 |
3. Please check if you have the template file `gallery-template.php` as well as the template `gallery-single-template.php` in your theme folder. If you can't find these files, then just copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to your theme directory.
|
122 |
4. You can adjust the necessary settings using your WordPress admin panel in "BWS Panel" > "Gallery".
|
123 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
== Frequently Asked Questions ==
|
125 |
|
126 |
= I cannot view my Gallery page =
|
134 |
2. Add or Upload pictures via 'Add Media' button.
|
135 |
3. Save the page.
|
136 |
|
137 |
+
[View a Step-by-step Instruction "How to add a Gallery"](https://docs.google.com/document/d/1l4zMhovBgO7rsPIzJk_15v0sdhiCpnjuacoDEfmzGEw/)
|
138 |
|
139 |
= I'm getting the following error: "Fatal error: Call to undefined function get_post_thumbnail_id()". What should I do? =
|
140 |
|
169 |
|
170 |
= I have some problems with the plugin's work. What Information should I provide to receive proper support? =
|
171 |
|
172 |
+
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:
|
173 |
|
174 |
1. the link to the page where the problem occurs
|
175 |
2. the name of the plugin and its version. If you are using a pro version - your order number.
|
176 |
3. the version of your WordPress installation
|
177 |
+
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)
|
178 |
|
179 |
== Screenshots ==
|
180 |
|
188 |
|
189 |
== Changelog ==
|
190 |
|
191 |
+
= V4.4.3 - 17.08.2016 =
|
192 |
+
* Update : All functionality for WordPress 4.6 was updated.
|
193 |
+
|
194 |
= V4.4.2 - 15.07.2016 =
|
195 |
* Update : BWS panel section was updated.
|
196 |
* Update : The French language file is updated.
|
279 |
|
280 |
= V4.2.3 - 19.09.2014 =
|
281 |
* Update : We updated all functionality for wordpress 4.0.
|
282 |
+
* Bugfix : Social buttons duplicating was fixed.
|
283 |
|
284 |
= V4.2.2 - 07.08.2014 =
|
285 |
+
* Bugfix : Security Exploit was fixed.
|
286 |
* Update : The French language file is updated.
|
287 |
|
288 |
= V4.2.1 - 11.07.2014 =
|
289 |
+
* Bugfix : We fixed the bug of htmlspecialchars in image metadata.
|
290 |
+
* Bugfix : We fixed the bug of displaying sidebar in Twenty Fourteen theme.
|
291 |
+
* Bugfix : The bug related to editing input fields of images in the admin panel on mobile devices was fixed.
|
292 |
|
293 |
= V4.2.0 - 15.05.2014 =
|
294 |
* Update : We updated all functionality for wordpress 3.9.1
|
303 |
|
304 |
= V4.1.7 - 31.03.2014 =
|
305 |
* Update : Fancybox is updated.
|
306 |
+
* Bugfix : We fixed the bug of navigation when Gallery Template is a static front page.
|
307 |
|
308 |
= V4.1.6 - 05.03.2014 =
|
309 |
+
* Bugfix : Plugin optimization is done.
|
310 |
+
* Bugfix : Gallery Template is updated.
|
311 |
* Update : The French language file is updated.
|
312 |
* NEW : Spanish language file are added to the plugin.
|
313 |
|
334 |
* NEW : Ability to update images after changing gallery image size.
|
335 |
|
336 |
= V4.1.0 - 6.12.2013 =
|
337 |
+
* NEW : A notice when changing settings on the plugin's settings page was added.
|
338 |
+
* NEW : Ability to use shortcode in a text-widget.
|
339 |
* Bugfix : We fixed the bug of adding gallery to the search.
|
340 |
|
341 |
= V4.0.9 - 29.11.2013 =
|
346 |
* Update : BWS plugins section is updated.
|
347 |
|
348 |
= V4.0.7 - 15.11.2013 =
|
349 |
+
* Bugfix : We fixed the bug of image count for lightbox when added multiple galleries on the one page.
|
350 |
|
351 |
= V4.0.6 - 8.11.2013 =
|
352 |
+
* Update : The French language file is updated.
|
353 |
|
354 |
= V4.0.5 - 1.11.2013 =
|
355 |
* NEW : Add checking installed wordpress version.
|
370 |
* Update : The Brazilian Portuguese language file is updated.
|
371 |
|
372 |
= V4.0.0 - 24.09.2013 =
|
373 |
+
* Update : The Ukrainian language file is updated.
|
374 |
|
375 |
= V3.9.9 - 13.09.2013 =
|
376 |
+
* Update : The French language file is updated.
|
377 |
* Update : We updated all functionality for wordpress 3.6.1.
|
378 |
|
379 |
= V3.9.8 - 04.09.2013 =
|
380 |
* Update : Function for displaying BWS plugins section placed in a separate file and has own language files.
|
381 |
|
382 |
= V3.9.7 - 26.08.2013 =
|
383 |
+
* Update : The French language file is updated.
|
384 |
* Bugfix : We added replacing spaces in the file name when uploading.
|
385 |
|
386 |
= V3.9.6 - 13.08.2013 =
|
404 |
* Update : We updated all functionality for wordpress 3.5.2.
|
405 |
|
406 |
= V3.9.1 - 02.07.2013 =
|
407 |
+
* Update : The French language file is updated.
|
408 |
|
409 |
= V3.9 - 28.05.2013 =
|
410 |
+
* Update : BWS plugins section is updated.
|
411 |
+
* Update : The French language file is updated.
|
412 |
+
* Bugfix : We changed using the abspath to plugin_dir_path().
|
413 |
|
414 |
= V3.8.9 - 16.05.2013 =
|
415 |
* Bugfix : We fixed the bug of SQL queries.
|
426 |
* NEW : The Chinese language file is added to the plugin.
|
427 |
|
428 |
= V3.8.5 - 14.02.2013 =
|
429 |
+
* Update : We updated the fancybox displaying for iPhone and iPad.
|
430 |
* Update : We updated all functionality for wordpress 3.5.1.
|
431 |
|
432 |
= V3.8.4 - 25.01.2013 =
|
460 |
* NEW : Added a shortcode for displaying short gallery type (like [print_gllr id=211 display=short])
|
461 |
|
462 |
= V3.4 - 24.07.2012 =
|
463 |
+
* Bugfix : Cross Site Request Forgery bug was fixed.
|
464 |
|
465 |
= V3.3 - 12.07.2012 =
|
466 |
* NEW : Brazilian Portuguese and Hebrew language files are added to the plugin.
|
514 |
* NEW : Polish language files are added to the plugin.
|
515 |
|
516 |
= V2.09 - 12.03.2012 =
|
517 |
+
* Changed : BWS plugins section.
|
518 |
|
519 |
= V2.08 - 24.02.2012 =
|
520 |
* Change : Code that is used to connect styles and scripts is added to the plugin for correct SSL verification.
|
548 |
* Bugfix : Button 'Sluiten' is replaced with a 'Close' button.
|
549 |
|
550 |
= V1.02 - 13.10.2011 =
|
551 |
+
* noConflict for jQuery is added.
|
552 |
|
553 |
= V1.01 - 23.09.2011 =
|
554 |
+
* The file uploader is added to the Galleries page in admin section.
|
555 |
|
556 |
== Upgrade Notice ==
|
557 |
|
558 |
+
= V4.4.3 =
|
559 |
+
* The compatibility with new WordPress version updated.
|
560 |
+
|
561 |
+
= V4.4.2 =
|
562 |
Usability improved.
|
563 |
|
564 |
= V4.4.1 =
|
667 |
We fixed the bug of image count for lightbox when added multiple galleries on the one page.
|
668 |
|
669 |
= V4.0.6 =
|
670 |
+
The French language file is updated.
|
671 |
|
672 |
= V4.0.5 =
|
673 |
Add checking installed wordpress version. Activation of radio button or checkbox by clicking on its label. We updated all functionality for wordpress 3.7.1.
|
685 |
The Brazilian Portuguese language file is updated.
|
686 |
|
687 |
= V4.0.0 =
|
688 |
+
The Ukrainian language file is updated.
|
689 |
|
690 |
= V3.9.9 =
|
691 |
The French language file is updated. We updated all functionality for wordpress 3.6.1.
|
708 |
= V3.9.3 =
|
709 |
Added an ability to view and send system information by mail.
|
710 |
|
711 |
+
= V3.9.2 =
|
712 |
The Chinese language file is updated. We updated all functionality for wordpress 3.5.2.
|
713 |
|
714 |
= V3.9.1 =
|
757 |
Lituanian language file is added to the plugin. Added drag and drop function to change the order of the output of images. Added a shortcode for displaying short gallery type (like [print_gllr id=211 display=short])
|
758 |
|
759 |
= V3.4 =
|
760 |
+
Cross Site Request Forgery bug was fixed.
|
761 |
|
762 |
= V3.3 =
|
763 |
Brazilian Portuguese and Hebrew language files are added to the plugin. We updated Italian language file. We updated all functionality for wordpress 3.4.1.
|
802 |
Polish language files are added to the plugin.
|
803 |
|
804 |
= V2.09 - 07.03.2012 =
|
805 |
+
BWS plugins section has been changed.
|
806 |
|
807 |
= V2.08 =
|
808 |
Code that is used to connect styles and scripts is added to the plugin for correct SSL verification. The bug with a style for an image block on admin page was fixed.
|