Version Description
- 22.08.2016 =
- Update : Compatibility with the bbPress plugin improved.
- Update : Performance optimized.
- Update : We updated all functionality for WordPress 4.6.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Google Sitemap by BestWebSoft |
Version | 3.0.6 |
Comparing to | |
See all releases |
Code changes from version 3.0.5 to 3.0.6
- 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
- google-sitemap-plugin.php +63 -45
- includes/pro_banners.php +1 -1
- languages/google-sitemap-plugin-ru_RU.mo +0 -0
- languages/google-sitemap-plugin-ru_RU.po +100 -104
- languages/google-sitemap-plugin-uk.mo +0 -0
- languages/google-sitemap-plugin-uk.po +103 -99
- readme.txt +66 -33
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 "
|
google-sitemap-plugin.php
CHANGED
@@ -6,7 +6,7 @@ Description: Generate and add XML sitemap to WordPress website. Help search engi
|
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: google-sitemap-plugin
|
8 |
Domain Path: /languages
|
9 |
-
Version: 3.0.
|
10 |
Author URI: http://bestwebsoft.com/
|
11 |
License: GPLv2 or later
|
12 |
*/
|
@@ -136,13 +136,6 @@ if ( ! function_exists( 'gglstmp_sitemapcreate' ) ) {
|
|
136 |
function gglstmp_sitemapcreate() {
|
137 |
global $wpdb, $gglstmp_settings;
|
138 |
|
139 |
-
$str_post_type = "";
|
140 |
-
foreach ( $gglstmp_settings['post_type'] as $val ) {
|
141 |
-
if ( $str_post_type != "" )
|
142 |
-
$str_post_type .= ", ";
|
143 |
-
$str_post_type .= "'" . $val . "'";
|
144 |
-
}
|
145 |
-
|
146 |
$taxonomies = array();
|
147 |
foreach ( $gglstmp_settings['taxonomy'] as $val ) {
|
148 |
$taxonomies[] = $val;
|
@@ -167,10 +160,29 @@ if ( ! function_exists( 'gglstmp_sitemapcreate' ) ) {
|
|
167 |
$changefreq->appendChild( $xml->createTextNode( 'monthly' ) );
|
168 |
$priority = $url->appendChild( $xml->createElement( 'priority' ) );
|
169 |
$priority->appendChild( $xml->createTextNode( 1.0 ) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
170 |
|
171 |
-
if ( ! empty( $
|
172 |
-
$
|
173 |
-
|
|
|
|
|
|
|
|
|
|
|
174 |
if ( ! empty( $loc ) ) {
|
175 |
foreach ( $loc as $val ) {
|
176 |
$gglstmp_url = $gglstmp_urlset->appendChild( $xml->createElement( 'url' ) );
|
@@ -357,7 +369,6 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
|
|
357 |
update_site_option( $gglstmp_htaccess_options_name, $gglstmp_htaccess_options );
|
358 |
}
|
359 |
}
|
360 |
-
|
361 |
}
|
362 |
}
|
363 |
|
@@ -553,7 +564,7 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
|
|
553 |
</tr>
|
554 |
<?php } ?>
|
555 |
<tr valign="top">
|
556 |
-
<th scope="row" colspan="2"><?php _e( '
|
557 |
</tr>
|
558 |
<tr valign="top">
|
559 |
<td colspan="2">
|
@@ -854,7 +865,7 @@ if ( ! function_exists( 'gglstmp_add_site' ) ) {
|
|
854 |
if ( isset( $gglstmp_wmt_error[0]['message'] ) ) {
|
855 |
printf( '<div>%s</div>', $gglstmp_wmt_error[0]['message'] );
|
856 |
} else {
|
857 |
-
printf( '<div>%s.</div>', __( '
|
858 |
}
|
859 |
printf( '<div>%s - <a target="_blank" href="%s">%s</a>.</div>', __( "The site couldn't be added. Please, add the site manually", 'google-sitemap-plugin' ), $gglstmp_instruction_url, __( 'View the Instruction', 'google-sitemap-plugin' ) );
|
860 |
echo '</div><!-- .gglstmp_wmt_content -->';
|
@@ -920,7 +931,7 @@ if ( ! function_exists( 'gglstmp_add_site' ) ) {
|
|
920 |
if ( isset( $gglstmp_wmt_error[0]['message'] ) ) {
|
921 |
printf( '<div>%s</div>', $gglstmp_wmt_error[0]['message'] );
|
922 |
} else {
|
923 |
-
printf( '<div>%s.</div>', __( '
|
924 |
}
|
925 |
printf( '<div>%s - <a target="_blank" href="%s">%s</a>.</div>', __( "The sitemap file couldn't be added. Please, add the sitemap file manually", 'google-sitemap-plugin' ), $gglstmp_instruction_url, __( 'View the Instruction', 'google-sitemap-plugin' ) );
|
926 |
}
|
@@ -976,7 +987,7 @@ if ( ! function_exists( 'gglstmp_update_sitemap' ) ) {
|
|
976 |
if ( ! function_exists( 'gglstmp_action_links' ) ) {
|
977 |
function gglstmp_action_links( $links, $file ) {
|
978 |
/* Static so we don't call plugin_basename on every plugin row. */
|
979 |
-
if ( ! is_network_admin() ) {
|
980 |
static $this_plugin;
|
981 |
if ( ! $this_plugin )
|
982 |
$this_plugin = plugin_basename( __FILE__ );
|
@@ -993,7 +1004,7 @@ if ( ! function_exists( 'gglstmp_links' ) ) {
|
|
993 |
function gglstmp_links( $links, $file ) {
|
994 |
$base = plugin_basename( __FILE__ );
|
995 |
if ( $file == $base ) {
|
996 |
-
if ( ! is_network_admin() )
|
997 |
$links[] = '<a href="admin.php?page=google-sitemap-plugin.php">' . __( 'Settings', 'google-sitemap-plugin' ) . '</a>';
|
998 |
$links[] = '<a href="http://wordpress.org/plugins/google-sitemap-plugin/faq/" target="_blank">' . __( 'FAQ', 'google-sitemap-plugin' ) . '</a>';
|
999 |
$links[] = '<a href="http://support.bestwebsoft.com">' . __( 'Support', 'google-sitemap-plugin' ) . '</a>';
|
@@ -1084,37 +1095,44 @@ if ( ! function_exists( 'gglstmp_delete_sitemap' ) ) {
|
|
1084 |
if ( ! function_exists( 'gglstmp_delete_settings' ) ) {
|
1085 |
function gglstmp_delete_settings() {
|
1086 |
global $wpdb;
|
1087 |
-
if (
|
1088 |
-
|
1089 |
-
|
1090 |
-
|
1091 |
-
|
1092 |
-
|
1093 |
-
|
1094 |
-
$
|
1095 |
-
|
1096 |
-
|
1097 |
-
|
1098 |
-
|
1099 |
-
|
1100 |
-
|
1101 |
-
|
1102 |
-
|
1103 |
-
|
1104 |
-
|
1105 |
-
|
1106 |
-
|
1107 |
-
|
1108 |
-
|
1109 |
-
|
1110 |
-
|
1111 |
-
|
1112 |
-
|
1113 |
-
|
1114 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1115 |
}
|
1116 |
}
|
1117 |
}
|
|
|
1118 |
require_once( dirname( __FILE__ ) . '/bws_menu/bws_include.php' );
|
1119 |
bws_include_init( plugin_basename( __FILE__ ) );
|
1120 |
bws_delete_plugin( plugin_basename( __FILE__ ) );
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: google-sitemap-plugin
|
8 |
Domain Path: /languages
|
9 |
+
Version: 3.0.6
|
10 |
Author URI: http://bestwebsoft.com/
|
11 |
License: GPLv2 or later
|
12 |
*/
|
136 |
function gglstmp_sitemapcreate() {
|
137 |
global $wpdb, $gglstmp_settings;
|
138 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
$taxonomies = array();
|
140 |
foreach ( $gglstmp_settings['taxonomy'] as $val ) {
|
141 |
$taxonomies[] = $val;
|
160 |
$changefreq->appendChild( $xml->createTextNode( 'monthly' ) );
|
161 |
$priority = $url->appendChild( $xml->createElement( 'priority' ) );
|
162 |
$priority->appendChild( $xml->createTextNode( 1.0 ) );
|
163 |
+
/* getting an array of the excluded post ids of 'forum', 'topic' and 'reply' post types (hidden and private bbPress forum posts) */
|
164 |
+
$excluded_posts_array = $wpdb->get_col( "SELECT `ID` FROM $wpdb->posts WHERE `post_status` IN ('hidden', 'private') AND `post_type` IN ('forum', 'topic', 'reply')" );
|
165 |
+
if ( ! empty( $excluded_posts_array ) ) {
|
166 |
+
$excluded_posts_string = implode( ', ', $excluded_posts_array );
|
167 |
+
while ( true ) {
|
168 |
+
$hidden_child_array = $wpdb->get_col( "SELECT `ID` FROM $wpdb->posts WHERE `post_status` NOT IN ('hidden','private') AND `post_type` IN ('forum', 'topic', 'reply') AND `post_parent` IN ($excluded_posts_string)" );
|
169 |
+
if ( ! empty( $hidden_child_array ) ) {
|
170 |
+
$excluded_posts_array = array_merge( $excluded_posts_array, $hidden_child_array );
|
171 |
+
$excluded_posts_string = implode( ', ', $hidden_child_array );
|
172 |
+
} else {
|
173 |
+
break 1;
|
174 |
+
}
|
175 |
+
}
|
176 |
+
}
|
177 |
|
178 |
+
if ( ! empty( $gglstmp_settings['post_type'] ) ) {
|
179 |
+
$args = array(
|
180 |
+
'posts_per_page' => -1,
|
181 |
+
'exclude' => $excluded_posts_array,
|
182 |
+
'post_type' => $gglstmp_settings['post_type'],
|
183 |
+
'post_status' => 'publish',
|
184 |
+
);
|
185 |
+
$loc = get_posts( $args );
|
186 |
if ( ! empty( $loc ) ) {
|
187 |
foreach ( $loc as $val ) {
|
188 |
$gglstmp_url = $gglstmp_urlset->appendChild( $xml->createElement( 'url' ) );
|
369 |
update_site_option( $gglstmp_htaccess_options_name, $gglstmp_htaccess_options );
|
370 |
}
|
371 |
}
|
|
|
372 |
}
|
373 |
}
|
374 |
|
564 |
</tr>
|
565 |
<?php } ?>
|
566 |
<tr valign="top">
|
567 |
+
<th scope="row" colspan="2"><?php _e( 'Add post types and taxonomies links to the sitemap', 'google-sitemap-plugin' ); ?>:</th>
|
568 |
</tr>
|
569 |
<tr valign="top">
|
570 |
<td colspan="2">
|
865 |
if ( isset( $gglstmp_wmt_error[0]['message'] ) ) {
|
866 |
printf( '<div>%s</div>', $gglstmp_wmt_error[0]['message'] );
|
867 |
} else {
|
868 |
+
printf( '<div>%s.</div>', __( 'An error occurred while adding the site in Google Webmaster Tools', 'google-sitemap-plugin' ) );
|
869 |
}
|
870 |
printf( '<div>%s - <a target="_blank" href="%s">%s</a>.</div>', __( "The site couldn't be added. Please, add the site manually", 'google-sitemap-plugin' ), $gglstmp_instruction_url, __( 'View the Instruction', 'google-sitemap-plugin' ) );
|
871 |
echo '</div><!-- .gglstmp_wmt_content -->';
|
931 |
if ( isset( $gglstmp_wmt_error[0]['message'] ) ) {
|
932 |
printf( '<div>%s</div>', $gglstmp_wmt_error[0]['message'] );
|
933 |
} else {
|
934 |
+
printf( '<div>%s.</div>', __( 'An error occurred while adding the sitemap file in Google Webmaster Tools', 'google-sitemap-plugin' ) );
|
935 |
}
|
936 |
printf( '<div>%s - <a target="_blank" href="%s">%s</a>.</div>', __( "The sitemap file couldn't be added. Please, add the sitemap file manually", 'google-sitemap-plugin' ), $gglstmp_instruction_url, __( 'View the Instruction', 'google-sitemap-plugin' ) );
|
937 |
}
|
987 |
if ( ! function_exists( 'gglstmp_action_links' ) ) {
|
988 |
function gglstmp_action_links( $links, $file ) {
|
989 |
/* Static so we don't call plugin_basename on every plugin row. */
|
990 |
+
if ( ! is_network_admin() && ! is_plugin_active( 'google-sitemap-pro/google-sitemap-pro.php' ) ) {
|
991 |
static $this_plugin;
|
992 |
if ( ! $this_plugin )
|
993 |
$this_plugin = plugin_basename( __FILE__ );
|
1004 |
function gglstmp_links( $links, $file ) {
|
1005 |
$base = plugin_basename( __FILE__ );
|
1006 |
if ( $file == $base ) {
|
1007 |
+
if ( ! is_network_admin() && ! is_plugin_active( 'google-sitemap-pro/google-sitemap-pro.php' ) )
|
1008 |
$links[] = '<a href="admin.php?page=google-sitemap-plugin.php">' . __( 'Settings', 'google-sitemap-plugin' ) . '</a>';
|
1009 |
$links[] = '<a href="http://wordpress.org/plugins/google-sitemap-plugin/faq/" target="_blank">' . __( 'FAQ', 'google-sitemap-plugin' ) . '</a>';
|
1010 |
$links[] = '<a href="http://support.bestwebsoft.com">' . __( 'Support', 'google-sitemap-plugin' ) . '</a>';
|
1095 |
if ( ! function_exists( 'gglstmp_delete_settings' ) ) {
|
1096 |
function gglstmp_delete_settings() {
|
1097 |
global $wpdb;
|
1098 |
+
if ( ! function_exists( 'get_plugins' ) )
|
1099 |
+
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
1100 |
+
$all_plugins = get_plugins();
|
1101 |
+
|
1102 |
+
if ( ! array_key_exists( 'google-sitemap-pro/google-sitemap-pro.php', $all_plugins ) ) {
|
1103 |
+
if ( is_multisite() ) {
|
1104 |
+
/* Get all blog ids */
|
1105 |
+
$blogids = $wpdb->get_col( "SELECT `blog_id` FROM $wpdb->blogs" );
|
1106 |
+
foreach ( $blogids as $blog_id ) {
|
1107 |
+
delete_blog_option( $blog_id, 'gglstmp_settings' );
|
1108 |
+
delete_blog_option( $blog_id, 'gglstmp_robots' );
|
1109 |
+
$site_url = preg_replace( "/[^a-zA-ZА-Яа-я0-9\s]/", '_', str_replace( 'http://', '', str_replace( 'https://', '', get_site_url( $blog_id ) ) ) );
|
1110 |
+
$file = ABSPATH . "sitemap_{$site_url}.xml";
|
1111 |
+
if ( file_exists( $file ) )
|
1112 |
+
unlink( $file );
|
1113 |
+
}
|
1114 |
+
} else {
|
1115 |
+
delete_option( 'gglstmp_settings' );
|
1116 |
+
delete_option( 'gglstmp_robots' );
|
1117 |
+
$sitemap_path = ABSPATH . "sitemap.xml";
|
1118 |
+
$sitemap_url = site_url( '/sitemap.xml' );
|
1119 |
+
$robots_path = ABSPATH . "robots.txt";
|
1120 |
+
|
1121 |
+
if ( file_exists( $sitemap_path ) )
|
1122 |
+
unlink( $sitemap_path );
|
1123 |
+
|
1124 |
+
if ( file_exists( $robots_path ) ) {
|
1125 |
+
if ( ! is_writable( $robots_path ) )
|
1126 |
+
@chmod( $robots_path, 0755 );
|
1127 |
+
if ( is_writable( $robots_path ) ) {
|
1128 |
+
$content = file_get_contents( $robots_path );
|
1129 |
+
$content = preg_replace( "|\nSitemap: {$sitemap_url}|", '', $content );
|
1130 |
+
file_put_contents( $robots_path, $content );
|
1131 |
+
}
|
1132 |
}
|
1133 |
}
|
1134 |
}
|
1135 |
+
|
1136 |
require_once( dirname( __FILE__ ) . '/bws_menu/bws_include.php' );
|
1137 |
bws_include_init( plugin_basename( __FILE__ ) );
|
1138 |
bws_delete_plugin( plugin_basename( __FILE__ ) );
|
includes/pro_banners.php
CHANGED
@@ -63,7 +63,7 @@ if ( ! function_exists( 'gglstmp_extra_block' ) ) {
|
|
63 |
<table class="form-table bws_pro_version">
|
64 |
<tr valign="top">
|
65 |
<td colspan="2">
|
66 |
-
<?php _e( '
|
67 |
</td>
|
68 |
</tr>
|
69 |
<tr valign="top">
|
63 |
<table class="form-table bws_pro_version">
|
64 |
<tr valign="top">
|
65 |
<td colspan="2">
|
66 |
+
<?php _e( 'Add post types and taxonomies links to the sitemap', 'google-sitemap-plugin' ); ?>:
|
67 |
</td>
|
68 |
</tr>
|
69 |
<tr valign="top">
|
languages/google-sitemap-plugin-ru_RU.mo
CHANGED
Binary file
|
languages/google-sitemap-plugin-ru_RU.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Sitemap\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 <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
@@ -16,52 +16,52 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: google-sitemap-plugin.php:35 google-sitemap-plugin.php:
|
20 |
msgid "Google Sitemap Settings"
|
21 |
msgstr "Настройки Google Sitemap"
|
22 |
|
23 |
-
#: google-sitemap-plugin.php:
|
24 |
msgid "Cannot edit \"robots.txt\". Check your permissions"
|
25 |
msgstr "Невозможно отредактировать файл \"robots.txt\". Проверьте свои права"
|
26 |
|
27 |
-
#: google-sitemap-plugin.php:
|
28 |
msgid "Settings saved"
|
29 |
msgstr "Настройки сохранены"
|
30 |
|
31 |
-
#: google-sitemap-plugin.php:
|
32 |
msgid "Your Sitemap file has been created in the site root directory"
|
33 |
msgstr "Файл Sitemap создан в корне основной директории"
|
34 |
|
35 |
-
#: google-sitemap-plugin.php:
|
36 |
msgid "Cannot edit \"robot.txt\". Check your permissions"
|
37 |
msgstr "Невозможно отредактировать файл \"robot.txt\". Проверьте свои права"
|
38 |
|
39 |
-
#: google-sitemap-plugin.php:
|
40 |
msgid "All plugin settings were restored."
|
41 |
msgstr "Настройки плагина были восстановлены."
|
42 |
|
43 |
-
#: google-sitemap-plugin.php:
|
44 |
-
#: google-sitemap-plugin.php:
|
45 |
msgid "Settings"
|
46 |
msgstr "Настройки"
|
47 |
|
48 |
-
#: google-sitemap-plugin.php:
|
49 |
-
msgid "Extra settings"
|
50 |
-
msgstr "Дополнительные настройки"
|
51 |
-
|
52 |
-
#: google-sitemap-plugin.php:475
|
53 |
msgid "Custom links"
|
54 |
msgstr "Дополнительные ссылки"
|
55 |
|
56 |
-
#: google-sitemap-plugin.php:
|
|
|
|
|
|
|
|
|
57 |
msgid "Go PRO"
|
58 |
msgstr "Перейти на PRO версию"
|
59 |
|
60 |
-
#: google-sitemap-plugin.php:
|
61 |
msgid "Warning:"
|
62 |
msgstr "Внимание:"
|
63 |
|
64 |
-
#: google-sitemap-plugin.php:
|
65 |
#, php-format
|
66 |
msgid ""
|
67 |
"To have an access to subsites XML files, please add the following rule %s to "
|
@@ -71,19 +71,19 @@ msgstr ""
|
|
71 |
"правило %s в ваш %s файл %s после строки %s или вы можете использовать опцию "
|
72 |
"%s"
|
73 |
|
74 |
-
#: google-sitemap-plugin.php:
|
75 |
msgid "Allow access to XML files"
|
76 |
msgstr "Разрешить доступ к XML файлам"
|
77 |
|
78 |
-
#: google-sitemap-plugin.php:
|
79 |
msgid "Сheck Access"
|
80 |
msgstr "Проверить Доступ"
|
81 |
|
82 |
-
#: google-sitemap-plugin.php:
|
83 |
msgid "The Sitemap file"
|
84 |
msgstr "Файл Sitemap"
|
85 |
|
86 |
-
#: google-sitemap-plugin.php:
|
87 |
msgid ""
|
88 |
"already exists. If you would like to replace it with a new one, please "
|
89 |
"choose the necessary box below"
|
@@ -91,23 +91,23 @@ msgstr ""
|
|
91 |
"уже существует. Если вы хотите изменить его на новый, выберите "
|
92 |
"соответствующее действие внизу"
|
93 |
|
94 |
-
#: google-sitemap-plugin.php:
|
95 |
msgid "Your Sitemap file"
|
96 |
msgstr "Ваш файл Sitemap"
|
97 |
|
98 |
-
#: google-sitemap-plugin.php:
|
99 |
msgid "has been created in the site root directory"
|
100 |
msgstr "создан в корне основной директории"
|
101 |
|
102 |
-
#: google-sitemap-plugin.php:
|
103 |
msgid "create a new sitemap file or update the existing one"
|
104 |
msgstr "создать новый файл sitemap или обновить существующий"
|
105 |
|
106 |
-
#: google-sitemap-plugin.php:
|
107 |
msgid "add sitemap file path in robots.txt"
|
108 |
msgstr "добавить путь файла sitemap в robots.txt"
|
109 |
|
110 |
-
#: google-sitemap-plugin.php:
|
111 |
msgid ""
|
112 |
"Since you are using multisiting, the plugin does not allow to add a sitemap "
|
113 |
"to robots.txt"
|
@@ -115,44 +115,40 @@ msgstr ""
|
|
115 |
"Т.к. вы используете мультисайтинг, плагин не имеет возможности добавить "
|
116 |
"sitemap в robots.txt"
|
117 |
|
118 |
-
#: google-sitemap-plugin.php:
|
119 |
msgid "add sitemap file path in"
|
120 |
msgstr "добавить путь файла sitemap в"
|
121 |
|
122 |
-
#: google-sitemap-plugin.php:
|
123 |
-
msgid ""
|
124 |
-
"
|
125 |
-
"to be added to the sitemap"
|
126 |
-
msgstr ""
|
127 |
-
"Пожалуйста, выберите необходимые типы постов и таксономии, ссылки на которые "
|
128 |
-
"будут добавлены в sitemap"
|
129 |
|
130 |
-
#: google-sitemap-plugin.php:
|
131 |
msgid "This option will be applied to all websites in the network"
|
132 |
msgstr "Эта опция будет применена ко всем сайтам сети"
|
133 |
|
134 |
-
#: google-sitemap-plugin.php:
|
135 |
#, php-format
|
136 |
msgid "You should %s to use this functionality"
|
137 |
msgstr "Чтобы использовать этот функционал %s"
|
138 |
|
139 |
-
#: google-sitemap-plugin.php:
|
140 |
msgid "activate"
|
141 |
msgstr "активируйте"
|
142 |
|
143 |
-
#: google-sitemap-plugin.php:
|
144 |
msgid "for network"
|
145 |
msgstr "для сети"
|
146 |
|
147 |
-
#: google-sitemap-plugin.php:
|
148 |
msgid "download"
|
149 |
msgstr "загрузитe"
|
150 |
|
151 |
-
#: google-sitemap-plugin.php:
|
152 |
msgid "The following string will be added to your .htaccess file"
|
153 |
msgstr "В ваш .htaccess файл будет добавлена следующая строка"
|
154 |
|
155 |
-
#: google-sitemap-plugin.php:
|
156 |
msgid ""
|
157 |
"This hosting does not support сURL, so you cannot add a sitemap file "
|
158 |
"automatically"
|
@@ -160,7 +156,7 @@ msgstr ""
|
|
160 |
"Ваш хостинг не поддерживает сURL, поэтому вы не можете добавить sitemap в "
|
161 |
"Google аккаунт автоматически"
|
162 |
|
163 |
-
#: google-sitemap-plugin.php:
|
164 |
msgid ""
|
165 |
"You can always add your sitemap to Google Webmaster Tools manually. For more "
|
166 |
"info see"
|
@@ -168,31 +164,31 @@ msgstr ""
|
|
168 |
"Вы всегда можете добавить Ваш sitemap файл в Google Webmaster Tools вручную. "
|
169 |
"Для получения более подрообной информации прочтите"
|
170 |
|
171 |
-
#: google-sitemap-plugin.php:
|
172 |
msgid "the instruction"
|
173 |
msgstr "инструкцию"
|
174 |
|
175 |
-
#: google-sitemap-plugin.php:
|
176 |
msgid "Remote work with Google Webmaster Tools"
|
177 |
msgstr "Удаленная работа с Google Webmaster Tools"
|
178 |
|
179 |
-
#: google-sitemap-plugin.php:
|
180 |
msgid "Log out from Google Webmaster Tools"
|
181 |
msgstr "Выйти из Google Webmaster Tools"
|
182 |
|
183 |
-
#: google-sitemap-plugin.php:
|
184 |
msgid "add this site to Google Webmaster Tools"
|
185 |
msgstr "добавить этот сайт в Google Webmaster Tools"
|
186 |
|
187 |
-
#: google-sitemap-plugin.php:
|
188 |
msgid "delete this site from Google Webmaster Tools"
|
189 |
msgstr "удалить этот сайт из Google Webmaster Tools"
|
190 |
|
191 |
-
#: google-sitemap-plugin.php:
|
192 |
msgid "get info about this site in Google Webmaster Tools"
|
193 |
msgstr "получить информацию об этом сайте из Google Webmaster Tools"
|
194 |
|
195 |
-
#: google-sitemap-plugin.php:
|
196 |
msgid ""
|
197 |
"Please authorize via your Google Account in order to add or delete a site "
|
198 |
"and a sitemap file automatically or get information about this site in "
|
@@ -202,70 +198,70 @@ msgstr ""
|
|
202 |
"возможность добавлять или удалять сайты и файл sitemap автоматически или "
|
203 |
"получать информацию из Google Webmaster Tools"
|
204 |
|
205 |
-
#: google-sitemap-plugin.php:
|
206 |
msgid "Get Authorization Code"
|
207 |
msgstr "Получить код авторизации"
|
208 |
|
209 |
-
#: google-sitemap-plugin.php:
|
210 |
msgid "Authorize"
|
211 |
msgstr "Авторизироваться"
|
212 |
|
213 |
-
#: google-sitemap-plugin.php:
|
214 |
msgid "Invalid authorization code. Please, try again"
|
215 |
msgstr "Неверный код авторизации. Пожалуйста, попробуйте еще раз"
|
216 |
|
217 |
-
#: google-sitemap-plugin.php:
|
218 |
msgid "Save Changes"
|
219 |
msgstr "Сохранить изменения"
|
220 |
|
221 |
-
#: google-sitemap-plugin.php:
|
222 |
-
#: google-sitemap-plugin.php:
|
223 |
#, php-format
|
224 |
msgid "Site info for %s"
|
225 |
msgstr "Информация о сайте %s"
|
226 |
|
227 |
-
#: google-sitemap-plugin.php:
|
228 |
-
#: google-sitemap-plugin.php:
|
229 |
msgid "This site has not been added to Google Webmaster Tools"
|
230 |
msgstr "Этот сайт не добавлен в Google Webmaster Tools"
|
231 |
|
232 |
-
#: google-sitemap-plugin.php:
|
233 |
msgid "Site URL"
|
234 |
msgstr "URL сайта"
|
235 |
|
236 |
-
#: google-sitemap-plugin.php:
|
237 |
msgid "Site verification"
|
238 |
msgstr "Верификация сайта"
|
239 |
|
240 |
-
#: google-sitemap-plugin.php:
|
241 |
msgid "verified"
|
242 |
msgstr "верифицрован"
|
243 |
|
244 |
-
#: google-sitemap-plugin.php:
|
245 |
msgid "not verified"
|
246 |
msgstr "не верифицирован"
|
247 |
|
248 |
-
#: google-sitemap-plugin.php:
|
249 |
msgid "Failed to verify the site in Google Webmaster Tools"
|
250 |
msgstr "Невозможно получить информацию об этом сайте из Google Webmaster Tools"
|
251 |
|
252 |
-
#: google-sitemap-plugin.php:
|
253 |
-
#: google-sitemap-plugin.php:
|
254 |
msgid "The site couldn't be verified. Please, verify the site manually"
|
255 |
msgstr ""
|
256 |
"Сайт не может быть верифицрован. Пожалуйста, верифицируйте сайт вручную"
|
257 |
|
258 |
-
#: google-sitemap-plugin.php:
|
259 |
-
#: google-sitemap-plugin.php:
|
260 |
-
#: google-sitemap-plugin.php:
|
261 |
msgid "View the Instruction"
|
262 |
msgstr "Просмотреть Инструкцию"
|
263 |
|
264 |
-
#: google-sitemap-plugin.php:
|
265 |
msgid "The sitemap file has not been added to Google Webmaster Tools"
|
266 |
msgstr "Этот файл sitemap не добавлен в Google Webmaster Tools"
|
267 |
|
268 |
-
#: google-sitemap-plugin.php:
|
269 |
msgid ""
|
270 |
"The sitemap file has been added to Google Webmaster Tools, but has some "
|
271 |
"errors or warnings"
|
@@ -273,92 +269,91 @@ msgstr ""
|
|
273 |
"Этот файл sitemap добавлен в Google Webmaster Tools, но при добавлении "
|
274 |
"возникли ошибки"
|
275 |
|
276 |
-
#: google-sitemap-plugin.php:
|
277 |
msgid "Please, see them in Google Webmaster Tools"
|
278 |
msgstr "Посмотреть ошибки в Google Webmaster Tools"
|
279 |
|
280 |
-
#: google-sitemap-plugin.php:
|
281 |
msgid "Sitemap URL"
|
282 |
msgstr "URL Sitemap"
|
283 |
|
284 |
-
#: google-sitemap-plugin.php:
|
285 |
msgid ""
|
286 |
"When checking the sitemap file an unexpected error occurred. Please, check "
|
287 |
"the sitemap file manually"
|
288 |
msgstr ""
|
289 |
-
"При проверке
|
290 |
"вручную"
|
291 |
|
292 |
-
#: google-sitemap-plugin.php:
|
293 |
msgid "This site has been successfully deleted from Google Webmaster Tools"
|
294 |
msgstr "Этот сайт был успешно удален из Google Webmaster Tools"
|
295 |
|
296 |
-
#: google-sitemap-plugin.php:
|
297 |
msgid "The site has been added to Google Webmaster Tools"
|
298 |
msgstr "Этот сайт добавлен в Google Webmaster Tools"
|
299 |
|
300 |
-
#: google-sitemap-plugin.php:
|
301 |
-
msgid "
|
302 |
msgstr "Ошибка при добавлении сайта в Google Webmaster Tools"
|
303 |
|
304 |
-
#: google-sitemap-plugin.php:
|
305 |
msgid "The site couldn't be added. Please, add the site manually"
|
306 |
msgstr "Сайт не может быть добавлен. Пожалуйста, добавьте сайт вручную"
|
307 |
|
308 |
-
#: google-sitemap-plugin.php:
|
309 |
msgid "Verification code has been successfully received and added to the site"
|
310 |
msgstr "Код верификации получен и добавлен на сайт"
|
311 |
|
312 |
-
#: google-sitemap-plugin.php:
|
313 |
msgid ""
|
314 |
"Verification code has been successfully received but has not been added to "
|
315 |
"the site"
|
316 |
msgstr "Код верификации получен, но не добавлен на сайт"
|
317 |
|
318 |
-
#: google-sitemap-plugin.php:
|
319 |
msgid ""
|
320 |
"An error has occurred when receiving the verification code site in Google "
|
321 |
"Webmaster"
|
322 |
msgstr "Ошибка Google Webmaster при получении кода верификации"
|
323 |
|
324 |
-
#: google-sitemap-plugin.php:
|
325 |
msgid "The site has been successfully verified in Google Webmaster Tools"
|
326 |
msgstr "Этот сайт был успешно верифицирован в Google Webmaster Tools"
|
327 |
|
328 |
-
#: google-sitemap-plugin.php:
|
329 |
msgid ""
|
330 |
"An unexpected error occurred when verifying site in Google Webmaster Tools"
|
331 |
msgstr "Ошибка при верификации сайта в Google Webmaster Tools"
|
332 |
|
333 |
-
#: google-sitemap-plugin.php:
|
334 |
msgid "The sitemap file has been successfully added to Google Webmaster Tools"
|
335 |
msgstr "Файл sitemap был успешно добавлен в Google Webmaster Tools"
|
336 |
|
337 |
-
#: google-sitemap-plugin.php:
|
338 |
msgid ""
|
339 |
-
"
|
340 |
-
"occurred"
|
341 |
msgstr "Ошибка при добавлении файла sitemap в Google Webmaster Tools"
|
342 |
|
343 |
-
#: google-sitemap-plugin.php:
|
344 |
msgid ""
|
345 |
"The sitemap file couldn't be added. Please, add the sitemap file manually"
|
346 |
msgstr "Файл sitemap не может быть добавлен. Пожалуйста, добавьте файл вручную"
|
347 |
|
348 |
-
#: google-sitemap-plugin.php:
|
349 |
#, php-format
|
350 |
msgid "Error 404. The sitemap file %s not found"
|
351 |
msgstr "Ошибка 404. Файл sitemap %s не найден"
|
352 |
|
353 |
-
#: google-sitemap-plugin.php:
|
354 |
msgid "The sitemap file not found"
|
355 |
msgstr "Файл sitemap не найден"
|
356 |
|
357 |
-
#: google-sitemap-plugin.php:
|
358 |
msgid "FAQ"
|
359 |
msgstr "FAQ"
|
360 |
|
361 |
-
#: google-sitemap-plugin.php:
|
362 |
msgid "Support"
|
363 |
msgstr "Тех.поддержка"
|
364 |
|
@@ -380,7 +375,7 @@ msgstr "Подробнее"
|
|
380 |
|
381 |
#: includes/pro_banners.php:44
|
382 |
msgid "XML Sitemap \"Change Frequency\" parameter"
|
383 |
-
msgstr "Параметр XML Sitemap \"
|
384 |
|
385 |
#: includes/pro_banners.php:47 includes/pro_banners.php:148
|
386 |
#: includes/pro_banners.php:156 includes/pro_banners.php:164
|
@@ -396,21 +391,13 @@ msgid ""
|
|
396 |
msgstr ""
|
397 |
"Это значение используется в файле sitemap и предоставляет общую информацию "
|
398 |
"для поисковых систем. Sitemap создается один раз и будет перезаписана вновь "
|
399 |
-
"при создании или обновлении какой-либо страницы или поста. Более
|
400 |
-
"
|
401 |
|
402 |
#: includes/pro_banners.php:49 includes/pro_banners.php:128
|
403 |
msgid "here"
|
404 |
msgstr "здесь"
|
405 |
|
406 |
-
#: includes/pro_banners.php:66
|
407 |
-
msgid ""
|
408 |
-
"Please choose the necessary post types and taxonomies the links to which are "
|
409 |
-
"to be added to the sitemap:"
|
410 |
-
msgstr ""
|
411 |
-
"Пожалуйста, выберите необходимые типы постов и таксономии, ссылки на которые "
|
412 |
-
"будут добавлены в sitemap:"
|
413 |
-
|
414 |
#: includes/pro_banners.php:73
|
415 |
msgid "Show URL for pages"
|
416 |
msgstr "Отображать URL для страниц"
|
@@ -464,6 +451,15 @@ msgstr "Всегда"
|
|
464 |
msgid "Save link"
|
465 |
msgstr "Сохранить ссылку"
|
466 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
467 |
#, fuzzy
|
468 |
#~ msgid "This site has not been added to Google Webmaster Tools."
|
469 |
#~ msgstr "Этот сайт не добавлен в Google Webmaster Tools."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Sitemap\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-08-18 19:26+0300\n"
|
6 |
+
"PO-Revision-Date: 2016-08-18 19:27+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: google-sitemap-plugin.php:35 google-sitemap-plugin.php:482
|
20 |
msgid "Google Sitemap Settings"
|
21 |
msgstr "Настройки Google Sitemap"
|
22 |
|
23 |
+
#: google-sitemap-plugin.php:413
|
24 |
msgid "Cannot edit \"robots.txt\". Check your permissions"
|
25 |
msgstr "Невозможно отредактировать файл \"robots.txt\". Проверьте свои права"
|
26 |
|
27 |
+
#: google-sitemap-plugin.php:424
|
28 |
msgid "Settings saved"
|
29 |
msgstr "Настройки сохранены"
|
30 |
|
31 |
+
#: google-sitemap-plugin.php:432
|
32 |
msgid "Your Sitemap file has been created in the site root directory"
|
33 |
msgstr "Файл Sitemap создан в корне основной директории"
|
34 |
|
35 |
+
#: google-sitemap-plugin.php:470
|
36 |
msgid "Cannot edit \"robot.txt\". Check your permissions"
|
37 |
msgstr "Невозможно отредактировать файл \"robot.txt\". Проверьте свои права"
|
38 |
|
39 |
+
#: google-sitemap-plugin.php:479
|
40 |
msgid "All plugin settings were restored."
|
41 |
msgstr "Настройки плагина были восстановлены."
|
42 |
|
43 |
+
#: google-sitemap-plugin.php:484 google-sitemap-plugin.php:995
|
44 |
+
#: google-sitemap-plugin.php:1008
|
45 |
msgid "Settings"
|
46 |
msgstr "Настройки"
|
47 |
|
48 |
+
#: google-sitemap-plugin.php:485
|
|
|
|
|
|
|
|
|
49 |
msgid "Custom links"
|
50 |
msgstr "Дополнительные ссылки"
|
51 |
|
52 |
+
#: google-sitemap-plugin.php:486
|
53 |
+
msgid "Extra settings"
|
54 |
+
msgstr "Дополнительные настройки"
|
55 |
+
|
56 |
+
#: google-sitemap-plugin.php:487
|
57 |
msgid "Go PRO"
|
58 |
msgstr "Перейти на PRO версию"
|
59 |
|
60 |
+
#: google-sitemap-plugin.php:493
|
61 |
msgid "Warning:"
|
62 |
msgstr "Внимание:"
|
63 |
|
64 |
+
#: google-sitemap-plugin.php:495
|
65 |
#, php-format
|
66 |
msgid ""
|
67 |
"To have an access to subsites XML files, please add the following rule %s to "
|
71 |
"правило %s в ваш %s файл %s после строки %s или вы можете использовать опцию "
|
72 |
"%s"
|
73 |
|
74 |
+
#: google-sitemap-plugin.php:500 google-sitemap-plugin.php:606
|
75 |
msgid "Allow access to XML files"
|
76 |
msgstr "Разрешить доступ к XML файлам"
|
77 |
|
78 |
+
#: google-sitemap-plugin.php:506
|
79 |
msgid "Сheck Access"
|
80 |
msgstr "Проверить Доступ"
|
81 |
|
82 |
+
#: google-sitemap-plugin.php:533 google-sitemap-plugin.php:535
|
83 |
msgid "The Sitemap file"
|
84 |
msgstr "Файл Sitemap"
|
85 |
|
86 |
+
#: google-sitemap-plugin.php:533 google-sitemap-plugin.php:535
|
87 |
msgid ""
|
88 |
"already exists. If you would like to replace it with a new one, please "
|
89 |
"choose the necessary box below"
|
91 |
"уже существует. Если вы хотите изменить его на новый, выберите "
|
92 |
"соответствующее действие внизу"
|
93 |
|
94 |
+
#: google-sitemap-plugin.php:540 google-sitemap-plugin.php:542
|
95 |
msgid "Your Sitemap file"
|
96 |
msgstr "Ваш файл Sitemap"
|
97 |
|
98 |
+
#: google-sitemap-plugin.php:540 google-sitemap-plugin.php:542
|
99 |
msgid "has been created in the site root directory"
|
100 |
msgstr "создан в корне основной директории"
|
101 |
|
102 |
+
#: google-sitemap-plugin.php:548
|
103 |
msgid "create a new sitemap file or update the existing one"
|
104 |
msgstr "создать новый файл sitemap или обновить существующий"
|
105 |
|
106 |
+
#: google-sitemap-plugin.php:554
|
107 |
msgid "add sitemap file path in robots.txt"
|
108 |
msgstr "добавить путь файла sitemap в robots.txt"
|
109 |
|
110 |
+
#: google-sitemap-plugin.php:555
|
111 |
msgid ""
|
112 |
"Since you are using multisiting, the plugin does not allow to add a sitemap "
|
113 |
"to robots.txt"
|
115 |
"Т.к. вы используете мультисайтинг, плагин не имеет возможности добавить "
|
116 |
"sitemap в robots.txt"
|
117 |
|
118 |
+
#: google-sitemap-plugin.php:562
|
119 |
msgid "add sitemap file path in"
|
120 |
msgstr "добавить путь файла sitemap в"
|
121 |
|
122 |
+
#: google-sitemap-plugin.php:567 includes/pro_banners.php:66
|
123 |
+
msgid "Add post types and taxonomies links to the sitemap"
|
124 |
+
msgstr "Добавить в sitemap ссылки на типы постов и таксономии"
|
|
|
|
|
|
|
|
|
125 |
|
126 |
+
#: google-sitemap-plugin.php:590
|
127 |
msgid "This option will be applied to all websites in the network"
|
128 |
msgstr "Эта опция будет применена ко всем сайтам сети"
|
129 |
|
130 |
+
#: google-sitemap-plugin.php:593 google-sitemap-plugin.php:598
|
131 |
#, php-format
|
132 |
msgid "You should %s to use this functionality"
|
133 |
msgstr "Чтобы использовать этот функционал %s"
|
134 |
|
135 |
+
#: google-sitemap-plugin.php:594
|
136 |
msgid "activate"
|
137 |
msgstr "активируйте"
|
138 |
|
139 |
+
#: google-sitemap-plugin.php:594
|
140 |
msgid "for network"
|
141 |
msgstr "для сети"
|
142 |
|
143 |
+
#: google-sitemap-plugin.php:599
|
144 |
msgid "download"
|
145 |
msgstr "загрузитe"
|
146 |
|
147 |
+
#: google-sitemap-plugin.php:611
|
148 |
msgid "The following string will be added to your .htaccess file"
|
149 |
msgstr "В ваш .htaccess файл будет добавлена следующая строка"
|
150 |
|
151 |
+
#: google-sitemap-plugin.php:623
|
152 |
msgid ""
|
153 |
"This hosting does not support сURL, so you cannot add a sitemap file "
|
154 |
"automatically"
|
156 |
"Ваш хостинг не поддерживает сURL, поэтому вы не можете добавить sitemap в "
|
157 |
"Google аккаунт автоматически"
|
158 |
|
159 |
+
#: google-sitemap-plugin.php:626 google-sitemap-plugin.php:701
|
160 |
msgid ""
|
161 |
"You can always add your sitemap to Google Webmaster Tools manually. For more "
|
162 |
"info see"
|
164 |
"Вы всегда можете добавить Ваш sitemap файл в Google Webmaster Tools вручную. "
|
165 |
"Для получения более подрообной информации прочтите"
|
166 |
|
167 |
+
#: google-sitemap-plugin.php:627 google-sitemap-plugin.php:702
|
168 |
msgid "the instruction"
|
169 |
msgstr "инструкцию"
|
170 |
|
171 |
+
#: google-sitemap-plugin.php:633
|
172 |
msgid "Remote work with Google Webmaster Tools"
|
173 |
msgstr "Удаленная работа с Google Webmaster Tools"
|
174 |
|
175 |
+
#: google-sitemap-plugin.php:657
|
176 |
msgid "Log out from Google Webmaster Tools"
|
177 |
msgstr "Выйти из Google Webmaster Tools"
|
178 |
|
179 |
+
#: google-sitemap-plugin.php:659
|
180 |
msgid "add this site to Google Webmaster Tools"
|
181 |
msgstr "добавить этот сайт в Google Webmaster Tools"
|
182 |
|
183 |
+
#: google-sitemap-plugin.php:660
|
184 |
msgid "delete this site from Google Webmaster Tools"
|
185 |
msgstr "удалить этот сайт из Google Webmaster Tools"
|
186 |
|
187 |
+
#: google-sitemap-plugin.php:661
|
188 |
msgid "get info about this site in Google Webmaster Tools"
|
189 |
msgstr "получить информацию об этом сайте из Google Webmaster Tools"
|
190 |
|
191 |
+
#: google-sitemap-plugin.php:689
|
192 |
msgid ""
|
193 |
"Please authorize via your Google Account in order to add or delete a site "
|
194 |
"and a sitemap file automatically or get information about this site in "
|
198 |
"возможность добавлять или удалять сайты и файл sitemap автоматически или "
|
199 |
"получать информацию из Google Webmaster Tools"
|
200 |
|
201 |
+
#: google-sitemap-plugin.php:690
|
202 |
msgid "Get Authorization Code"
|
203 |
msgstr "Получить код авторизации"
|
204 |
|
205 |
+
#: google-sitemap-plugin.php:693
|
206 |
msgid "Authorize"
|
207 |
msgstr "Авторизироваться"
|
208 |
|
209 |
+
#: google-sitemap-plugin.php:696
|
210 |
msgid "Invalid authorization code. Please, try again"
|
211 |
msgstr "Неверный код авторизации. Пожалуйста, попробуйте еще раз"
|
212 |
|
213 |
+
#: google-sitemap-plugin.php:710 includes/pro_banners.php:84
|
214 |
msgid "Save Changes"
|
215 |
msgstr "Сохранить изменения"
|
216 |
|
217 |
+
#: google-sitemap-plugin.php:763 google-sitemap-plugin.php:825
|
218 |
+
#: google-sitemap-plugin.php:858
|
219 |
#, php-format
|
220 |
msgid "Site info for %s"
|
221 |
msgstr "Информация о сайте %s"
|
222 |
|
223 |
+
#: google-sitemap-plugin.php:771 google-sitemap-plugin.php:775
|
224 |
+
#: google-sitemap-plugin.php:842
|
225 |
msgid "This site has not been added to Google Webmaster Tools"
|
226 |
msgstr "Этот сайт не добавлен в Google Webmaster Tools"
|
227 |
|
228 |
+
#: google-sitemap-plugin.php:776
|
229 |
msgid "Site URL"
|
230 |
msgstr "URL сайта"
|
231 |
|
232 |
+
#: google-sitemap-plugin.php:777
|
233 |
msgid "Site verification"
|
234 |
msgstr "Верификация сайта"
|
235 |
|
236 |
+
#: google-sitemap-plugin.php:777
|
237 |
msgid "verified"
|
238 |
msgstr "верифицрован"
|
239 |
|
240 |
+
#: google-sitemap-plugin.php:777
|
241 |
msgid "not verified"
|
242 |
msgstr "не верифицирован"
|
243 |
|
244 |
+
#: google-sitemap-plugin.php:786
|
245 |
msgid "Failed to verify the site in Google Webmaster Tools"
|
246 |
msgstr "Невозможно получить информацию об этом сайте из Google Webmaster Tools"
|
247 |
|
248 |
+
#: google-sitemap-plugin.php:788 google-sitemap-plugin.php:897
|
249 |
+
#: google-sitemap-plugin.php:917
|
250 |
msgid "The site couldn't be verified. Please, verify the site manually"
|
251 |
msgstr ""
|
252 |
"Сайт не может быть верифицрован. Пожалуйста, верифицируйте сайт вручную"
|
253 |
|
254 |
+
#: google-sitemap-plugin.php:788 google-sitemap-plugin.php:811
|
255 |
+
#: google-sitemap-plugin.php:870 google-sitemap-plugin.php:897
|
256 |
+
#: google-sitemap-plugin.php:917 google-sitemap-plugin.php:936
|
257 |
msgid "View the Instruction"
|
258 |
msgstr "Просмотреть Инструкцию"
|
259 |
|
260 |
+
#: google-sitemap-plugin.php:801 google-sitemap-plugin.php:804
|
261 |
msgid "The sitemap file has not been added to Google Webmaster Tools"
|
262 |
msgstr "Этот файл sitemap не добавлен в Google Webmaster Tools"
|
263 |
|
264 |
+
#: google-sitemap-plugin.php:806
|
265 |
msgid ""
|
266 |
"The sitemap file has been added to Google Webmaster Tools, but has some "
|
267 |
"errors or warnings"
|
269 |
"Этот файл sitemap добавлен в Google Webmaster Tools, но при добавлении "
|
270 |
"возникли ошибки"
|
271 |
|
272 |
+
#: google-sitemap-plugin.php:806
|
273 |
msgid "Please, see them in Google Webmaster Tools"
|
274 |
msgstr "Посмотреть ошибки в Google Webmaster Tools"
|
275 |
|
276 |
+
#: google-sitemap-plugin.php:809
|
277 |
msgid "Sitemap URL"
|
278 |
msgstr "URL Sitemap"
|
279 |
|
280 |
+
#: google-sitemap-plugin.php:811
|
281 |
msgid ""
|
282 |
"When checking the sitemap file an unexpected error occurred. Please, check "
|
283 |
"the sitemap file manually"
|
284 |
msgstr ""
|
285 |
+
"При проверке файла sitemap обнаружена ошибка. Пожалуйста, проверьте файл "
|
286 |
"вручную"
|
287 |
|
288 |
+
#: google-sitemap-plugin.php:837
|
289 |
msgid "This site has been successfully deleted from Google Webmaster Tools"
|
290 |
msgstr "Этот сайт был успешно удален из Google Webmaster Tools"
|
291 |
|
292 |
+
#: google-sitemap-plugin.php:862
|
293 |
msgid "The site has been added to Google Webmaster Tools"
|
294 |
msgstr "Этот сайт добавлен в Google Webmaster Tools"
|
295 |
|
296 |
+
#: google-sitemap-plugin.php:868
|
297 |
+
msgid "An error occurred while adding the site in Google Webmaster Tools"
|
298 |
msgstr "Ошибка при добавлении сайта в Google Webmaster Tools"
|
299 |
|
300 |
+
#: google-sitemap-plugin.php:870
|
301 |
msgid "The site couldn't be added. Please, add the site manually"
|
302 |
msgstr "Сайт не может быть добавлен. Пожалуйста, добавьте сайт вручную"
|
303 |
|
304 |
+
#: google-sitemap-plugin.php:886
|
305 |
msgid "Verification code has been successfully received and added to the site"
|
306 |
msgstr "Код верификации получен и добавлен на сайт"
|
307 |
|
308 |
+
#: google-sitemap-plugin.php:888
|
309 |
msgid ""
|
310 |
"Verification code has been successfully received but has not been added to "
|
311 |
"the site"
|
312 |
msgstr "Код верификации получен, но не добавлен на сайт"
|
313 |
|
314 |
+
#: google-sitemap-plugin.php:895
|
315 |
msgid ""
|
316 |
"An error has occurred when receiving the verification code site in Google "
|
317 |
"Webmaster"
|
318 |
msgstr "Ошибка Google Webmaster при получении кода верификации"
|
319 |
|
320 |
+
#: google-sitemap-plugin.php:909
|
321 |
msgid "The site has been successfully verified in Google Webmaster Tools"
|
322 |
msgstr "Этот сайт был успешно верифицирован в Google Webmaster Tools"
|
323 |
|
324 |
+
#: google-sitemap-plugin.php:915
|
325 |
msgid ""
|
326 |
"An unexpected error occurred when verifying site in Google Webmaster Tools"
|
327 |
msgstr "Ошибка при верификации сайта в Google Webmaster Tools"
|
328 |
|
329 |
+
#: google-sitemap-plugin.php:928
|
330 |
msgid "The sitemap file has been successfully added to Google Webmaster Tools"
|
331 |
msgstr "Файл sitemap был успешно добавлен в Google Webmaster Tools"
|
332 |
|
333 |
+
#: google-sitemap-plugin.php:934
|
334 |
msgid ""
|
335 |
+
"An error occurred while adding the sitemap file in Google Webmaster Tools"
|
|
|
336 |
msgstr "Ошибка при добавлении файла sitemap в Google Webmaster Tools"
|
337 |
|
338 |
+
#: google-sitemap-plugin.php:936
|
339 |
msgid ""
|
340 |
"The sitemap file couldn't be added. Please, add the sitemap file manually"
|
341 |
msgstr "Файл sitemap не может быть добавлен. Пожалуйста, добавьте файл вручную"
|
342 |
|
343 |
+
#: google-sitemap-plugin.php:939
|
344 |
#, php-format
|
345 |
msgid "Error 404. The sitemap file %s not found"
|
346 |
msgstr "Ошибка 404. Файл sitemap %s не найден"
|
347 |
|
348 |
+
#: google-sitemap-plugin.php:942
|
349 |
msgid "The sitemap file not found"
|
350 |
msgstr "Файл sitemap не найден"
|
351 |
|
352 |
+
#: google-sitemap-plugin.php:1009
|
353 |
msgid "FAQ"
|
354 |
msgstr "FAQ"
|
355 |
|
356 |
+
#: google-sitemap-plugin.php:1010
|
357 |
msgid "Support"
|
358 |
msgstr "Тех.поддержка"
|
359 |
|
375 |
|
376 |
#: includes/pro_banners.php:44
|
377 |
msgid "XML Sitemap \"Change Frequency\" parameter"
|
378 |
+
msgstr "Параметр XML Sitemap \"Частота обновления\""
|
379 |
|
380 |
#: includes/pro_banners.php:47 includes/pro_banners.php:148
|
381 |
#: includes/pro_banners.php:156 includes/pro_banners.php:164
|
391 |
msgstr ""
|
392 |
"Это значение используется в файле sitemap и предоставляет общую информацию "
|
393 |
"для поисковых систем. Sitemap создается один раз и будет перезаписана вновь "
|
394 |
+
"при создании или обновлении какой-либо страницы или поста. Более подробно Вы "
|
395 |
+
"можете прочитать"
|
396 |
|
397 |
#: includes/pro_banners.php:49 includes/pro_banners.php:128
|
398 |
msgid "here"
|
399 |
msgstr "здесь"
|
400 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
401 |
#: includes/pro_banners.php:73
|
402 |
msgid "Show URL for pages"
|
403 |
msgstr "Отображать URL для страниц"
|
451 |
msgid "Save link"
|
452 |
msgstr "Сохранить ссылку"
|
453 |
|
454 |
+
#~ msgid ""
|
455 |
+
#~ "When you add a site in Google Webmaster Tools unexpected error occurred"
|
456 |
+
#~ msgstr "Ошибка при добавлении сайта в Google Webmaster Tools"
|
457 |
+
|
458 |
+
#~ msgid ""
|
459 |
+
#~ "When you add a sitemap file in Google Webmaster Tools unexpected error "
|
460 |
+
#~ "occurred"
|
461 |
+
#~ msgstr "Ошибка при добавлении файла sitemap в Google Webmaster Tools"
|
462 |
+
|
463 |
#, fuzzy
|
464 |
#~ msgid "This site has not been added to Google Webmaster Tools."
|
465 |
#~ msgstr "Этот сайт не добавлен в Google Webmaster Tools."
|
languages/google-sitemap-plugin-uk.mo
CHANGED
Binary file
|
languages/google-sitemap-plugin-uk.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Sitemap\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 <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
@@ -18,52 +18,52 @@ msgstr ""
|
|
18 |
"((n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20)) ? 1 : 2);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: google-sitemap-plugin.php:35 google-sitemap-plugin.php:
|
22 |
msgid "Google Sitemap Settings"
|
23 |
msgstr "Налаштування Google Sitemap"
|
24 |
|
25 |
-
#: google-sitemap-plugin.php:
|
26 |
msgid "Cannot edit \"robots.txt\". Check your permissions"
|
27 |
msgstr "Неможливо відредагувати файл \"robots.txt\". Перевірте свої права"
|
28 |
|
29 |
-
#: google-sitemap-plugin.php:
|
30 |
msgid "Settings saved"
|
31 |
msgstr "Налаштування збережено"
|
32 |
|
33 |
-
#: google-sitemap-plugin.php:
|
34 |
msgid "Your Sitemap file has been created in the site root directory"
|
35 |
msgstr "Файл Sitemap створено у кореневій директорії сайту"
|
36 |
|
37 |
-
#: google-sitemap-plugin.php:
|
38 |
msgid "Cannot edit \"robot.txt\". Check your permissions"
|
39 |
msgstr "Неможливо відредагувати файл \"robot.txt\". Перевірте свої права"
|
40 |
|
41 |
-
#: google-sitemap-plugin.php:
|
42 |
msgid "All plugin settings were restored."
|
43 |
msgstr "Налаштування плагіну були відновлені."
|
44 |
|
45 |
-
#: google-sitemap-plugin.php:
|
46 |
-
#: google-sitemap-plugin.php:
|
47 |
msgid "Settings"
|
48 |
msgstr "Налаштування"
|
49 |
|
50 |
-
#: google-sitemap-plugin.php:
|
51 |
msgid "Custom links"
|
52 |
msgstr "Додаткові посилання"
|
53 |
|
54 |
-
#: google-sitemap-plugin.php:
|
55 |
msgid "Extra settings"
|
56 |
msgstr "Додаткові налаштування"
|
57 |
|
58 |
-
#: google-sitemap-plugin.php:
|
59 |
msgid "Go PRO"
|
60 |
msgstr "Перейти на PRO"
|
61 |
|
62 |
-
#: google-sitemap-plugin.php:
|
63 |
msgid "Warning:"
|
64 |
msgstr "Увага:"
|
65 |
|
66 |
-
#: google-sitemap-plugin.php:
|
67 |
#, php-format
|
68 |
msgid ""
|
69 |
"To have an access to subsites XML files, please add the following rule %s to "
|
@@ -72,42 +72,42 @@ msgstr ""
|
|
72 |
"Щоб мати доступ до XML файлів підсайту, будь ласка, додайте наступне правило "
|
73 |
"%s у ваш %s файл %s після строки %s або ви можете використовувати опцію %s"
|
74 |
|
75 |
-
#: google-sitemap-plugin.php:
|
76 |
msgid "Allow access to XML files"
|
77 |
msgstr "Дозволити доступ до XML файлів"
|
78 |
|
79 |
-
#: google-sitemap-plugin.php:
|
80 |
msgid "Сheck Access"
|
81 |
msgstr "Перевірити Доступ"
|
82 |
|
83 |
-
#: google-sitemap-plugin.php:
|
84 |
msgid "The Sitemap file"
|
85 |
msgstr "Файл Sitemap"
|
86 |
|
87 |
-
#: google-sitemap-plugin.php:
|
88 |
msgid ""
|
89 |
"already exists. If you would like to replace it with a new one, please "
|
90 |
"choose the necessary box below"
|
91 |
msgstr ""
|
92 |
"вже існує. Якщо ви хочете замінити його на новий, виберіть потрібну дію внизу"
|
93 |
|
94 |
-
#: google-sitemap-plugin.php:
|
95 |
msgid "Your Sitemap file"
|
96 |
msgstr "Ваш файл Sitemap"
|
97 |
|
98 |
-
#: google-sitemap-plugin.php:
|
99 |
msgid "has been created in the site root directory"
|
100 |
msgstr "створений у кореневій директорії сайту"
|
101 |
|
102 |
-
#: google-sitemap-plugin.php:
|
103 |
msgid "create a new sitemap file or update the existing one"
|
104 |
msgstr "створити новий файл sitemap або оновити існуючий"
|
105 |
|
106 |
-
#: google-sitemap-plugin.php:
|
107 |
msgid "add sitemap file path in robots.txt"
|
108 |
msgstr "додати шлях до файлу sitemap у robots.txt"
|
109 |
|
110 |
-
#: google-sitemap-plugin.php:
|
111 |
msgid ""
|
112 |
"Since you are using multisiting, the plugin does not allow to add a sitemap "
|
113 |
"to robots.txt"
|
@@ -115,44 +115,40 @@ msgstr ""
|
|
115 |
"Оскільки ви використовуєте мультисайтинг, плагін не може додати файл sitemap "
|
116 |
"до robots.txt"
|
117 |
|
118 |
-
#: google-sitemap-plugin.php:
|
119 |
msgid "add sitemap file path in"
|
120 |
msgstr "додати шлях файлу sitemap у"
|
121 |
|
122 |
-
#: google-sitemap-plugin.php:
|
123 |
-
msgid ""
|
124 |
-
"
|
125 |
-
"to be added to the sitemap"
|
126 |
-
msgstr ""
|
127 |
-
"Будь ласка виберіть необхідні типи постів і таксономії, посилання на які "
|
128 |
-
"мають бути додані до файлу sitemap"
|
129 |
|
130 |
-
#: google-sitemap-plugin.php:
|
131 |
msgid "This option will be applied to all websites in the network"
|
132 |
msgstr "Ця опція буде застосована до всіх сайтів мережі"
|
133 |
|
134 |
-
#: google-sitemap-plugin.php:
|
135 |
#, php-format
|
136 |
msgid "You should %s to use this functionality"
|
137 |
msgstr "Щоб використовувати цей функціонал %s"
|
138 |
|
139 |
-
#: google-sitemap-plugin.php:
|
140 |
msgid "activate"
|
141 |
msgstr "aктивуйте"
|
142 |
|
143 |
-
#: google-sitemap-plugin.php:
|
144 |
msgid "for network"
|
145 |
msgstr "для мережі"
|
146 |
|
147 |
-
#: google-sitemap-plugin.php:
|
148 |
msgid "download"
|
149 |
msgstr "завантажте"
|
150 |
|
151 |
-
#: google-sitemap-plugin.php:
|
152 |
msgid "The following string will be added to your .htaccess file"
|
153 |
msgstr "До вашого .htaccess файл буде додано наступну строку"
|
154 |
|
155 |
-
#: google-sitemap-plugin.php:
|
156 |
msgid ""
|
157 |
"This hosting does not support сURL, so you cannot add a sitemap file "
|
158 |
"automatically"
|
@@ -160,7 +156,7 @@ msgstr ""
|
|
160 |
"Цей хостинг не підтримує сURL, тому ви не можете автоматично додати файл "
|
161 |
"sitemap"
|
162 |
|
163 |
-
#: google-sitemap-plugin.php:
|
164 |
msgid ""
|
165 |
"You can always add your sitemap to Google Webmaster Tools manually. For more "
|
166 |
"info see"
|
@@ -168,31 +164,31 @@ msgstr ""
|
|
168 |
"Ви завждии маєте можливість додати Ваш sitemap файл до Google Webmaster "
|
169 |
"Tools вручну. Для отримання більш детальної інформації прочитайте"
|
170 |
|
171 |
-
#: google-sitemap-plugin.php:
|
172 |
msgid "the instruction"
|
173 |
msgstr "інструкцію"
|
174 |
|
175 |
-
#: google-sitemap-plugin.php:
|
176 |
msgid "Remote work with Google Webmaster Tools"
|
177 |
msgstr "Віддалена робота з Google Webmaster Tools"
|
178 |
|
179 |
-
#: google-sitemap-plugin.php:
|
180 |
msgid "Log out from Google Webmaster Tools"
|
181 |
msgstr "Вийти з Google Webmaster Tools"
|
182 |
|
183 |
-
#: google-sitemap-plugin.php:
|
184 |
msgid "add this site to Google Webmaster Tools"
|
185 |
msgstr "додати цей сайт до Google Webmaster Tools"
|
186 |
|
187 |
-
#: google-sitemap-plugin.php:
|
188 |
msgid "delete this site from Google Webmaster Tools"
|
189 |
msgstr "видалити цей сайт з Google Webmaster Tools"
|
190 |
|
191 |
-
#: google-sitemap-plugin.php:
|
192 |
msgid "get info about this site in Google Webmaster Tools"
|
193 |
msgstr "отримати інформацію про цей сайт з Google Webmaster Tools"
|
194 |
|
195 |
-
#: google-sitemap-plugin.php:
|
196 |
msgid ""
|
197 |
"Please authorize via your Google Account in order to add or delete a site "
|
198 |
"and a sitemap file automatically or get information about this site in "
|
@@ -202,69 +198,69 @@ msgstr ""
|
|
202 |
"можливість додавати або видаляти сайти та файл sitemap у вашому акаунті "
|
203 |
"автоматично або отримувати інформацію про цей сайт з Google Webmaster Tools"
|
204 |
|
205 |
-
#: google-sitemap-plugin.php:
|
206 |
msgid "Get Authorization Code"
|
207 |
msgstr "Отримати Код Авторизації"
|
208 |
|
209 |
-
#: google-sitemap-plugin.php:
|
210 |
msgid "Authorize"
|
211 |
msgstr "Авторизуватись"
|
212 |
|
213 |
-
#: google-sitemap-plugin.php:
|
214 |
msgid "Invalid authorization code. Please, try again"
|
215 |
msgstr "Невірний код авторизації. Будь ласка, спробуйте ще раз"
|
216 |
|
217 |
-
#: google-sitemap-plugin.php:
|
218 |
msgid "Save Changes"
|
219 |
msgstr "Зберегти зміни"
|
220 |
|
221 |
-
#: google-sitemap-plugin.php:
|
222 |
-
#: google-sitemap-plugin.php:
|
223 |
#, php-format
|
224 |
msgid "Site info for %s"
|
225 |
msgstr "Інформація про сайт %s"
|
226 |
|
227 |
-
#: google-sitemap-plugin.php:
|
228 |
-
#: google-sitemap-plugin.php:
|
229 |
msgid "This site has not been added to Google Webmaster Tools"
|
230 |
msgstr "Даний сайт не додано до Google Webmaster Tools"
|
231 |
|
232 |
-
#: google-sitemap-plugin.php:
|
233 |
msgid "Site URL"
|
234 |
msgstr "URL сайту"
|
235 |
|
236 |
-
#: google-sitemap-plugin.php:
|
237 |
msgid "Site verification"
|
238 |
msgstr "Верифікація сайту"
|
239 |
|
240 |
-
#: google-sitemap-plugin.php:
|
241 |
msgid "verified"
|
242 |
msgstr "верифіковано"
|
243 |
|
244 |
-
#: google-sitemap-plugin.php:
|
245 |
msgid "not verified"
|
246 |
msgstr "не верифіковано"
|
247 |
|
248 |
-
#: google-sitemap-plugin.php:
|
249 |
msgid "Failed to verify the site in Google Webmaster Tools"
|
250 |
msgstr "Неможливо отримати інформацію про цей сайт з Google Webmaster Tools"
|
251 |
|
252 |
-
#: google-sitemap-plugin.php:
|
253 |
-
#: google-sitemap-plugin.php:
|
254 |
msgid "The site couldn't be verified. Please, verify the site manually"
|
255 |
msgstr "Сайт неможна перевірити. Будь ласка, перевірте його вручну"
|
256 |
|
257 |
-
#: google-sitemap-plugin.php:
|
258 |
-
#: google-sitemap-plugin.php:
|
259 |
-
#: google-sitemap-plugin.php:
|
260 |
msgid "View the Instruction"
|
261 |
msgstr "Переглянути інструкцію"
|
262 |
|
263 |
-
#: google-sitemap-plugin.php:
|
264 |
msgid "The sitemap file has not been added to Google Webmaster Tools"
|
265 |
msgstr "Файл sitemap не додано до Google Webmaster Tools"
|
266 |
|
267 |
-
#: google-sitemap-plugin.php:
|
268 |
msgid ""
|
269 |
"The sitemap file has been added to Google Webmaster Tools, but has some "
|
270 |
"errors or warnings"
|
@@ -272,90 +268,90 @@ msgstr ""
|
|
272 |
"Файл sitemap додано до акаунту Google Webmaster Tools, але під час додавання "
|
273 |
"виникли помилки"
|
274 |
|
275 |
-
#: google-sitemap-plugin.php:
|
276 |
msgid "Please, see them in Google Webmaster Tools"
|
277 |
msgstr "Перегляньте їх в Google Webmaster Tools"
|
278 |
|
279 |
-
#: google-sitemap-plugin.php:
|
280 |
msgid "Sitemap URL"
|
281 |
msgstr "URL Sitemap"
|
282 |
|
283 |
-
#: google-sitemap-plugin.php:
|
284 |
msgid ""
|
285 |
"When checking the sitemap file an unexpected error occurred. Please, check "
|
286 |
"the sitemap file manually"
|
287 |
msgstr "Помилка при перевірці файлу sitemap. Будь ласка, перевірте файл вручну"
|
288 |
|
289 |
-
#: google-sitemap-plugin.php:
|
290 |
msgid "This site has been successfully deleted from Google Webmaster Tools"
|
291 |
msgstr "Даний сайт було видалено з Google Webmaster Tools"
|
292 |
|
293 |
-
#: google-sitemap-plugin.php:
|
294 |
msgid "The site has been added to Google Webmaster Tools"
|
295 |
msgstr "Сайт додано до Google Webmaster Tools"
|
296 |
|
297 |
-
#: google-sitemap-plugin.php:
|
298 |
-
msgid "
|
299 |
-
msgstr "
|
300 |
|
301 |
-
#: google-sitemap-plugin.php:
|
302 |
msgid "The site couldn't be added. Please, add the site manually"
|
303 |
msgstr "Неможна додати сайт. Будь ласка, додайте його вручну"
|
304 |
|
305 |
-
#: google-sitemap-plugin.php:
|
306 |
msgid "Verification code has been successfully received and added to the site"
|
307 |
msgstr "Код верифікації успішно отримано та додано на сайт"
|
308 |
|
309 |
-
#: google-sitemap-plugin.php:
|
310 |
msgid ""
|
311 |
"Verification code has been successfully received but has not been added to "
|
312 |
"the site"
|
313 |
msgstr "Код верифікації успішно отримано, але не додано на сайт"
|
314 |
|
315 |
-
#: google-sitemap-plugin.php:
|
316 |
msgid ""
|
317 |
"An error has occurred when receiving the verification code site in Google "
|
318 |
"Webmaster"
|
319 |
msgstr "Помилка при отриманні верифікаційного коду Google Webmaster"
|
320 |
|
321 |
-
#: google-sitemap-plugin.php:
|
322 |
msgid "The site has been successfully verified in Google Webmaster Tools"
|
323 |
msgstr "Сайт успішно перевірено в Google Webmaster Tools"
|
324 |
|
325 |
-
#: google-sitemap-plugin.php:
|
326 |
msgid ""
|
327 |
"An unexpected error occurred when verifying site in Google Webmaster Tools"
|
328 |
msgstr "Помилка при перевірці сайту в Google Webmaster Tools"
|
329 |
|
330 |
-
#: google-sitemap-plugin.php:
|
331 |
msgid "The sitemap file has been successfully added to Google Webmaster Tools"
|
332 |
msgstr "Файл sitemap успішно додано до Google Webmaster Tools"
|
333 |
|
334 |
-
#: google-sitemap-plugin.php:
|
335 |
msgid ""
|
336 |
-
"
|
337 |
-
"
|
338 |
-
|
339 |
|
340 |
-
#: google-sitemap-plugin.php:
|
341 |
msgid ""
|
342 |
"The sitemap file couldn't be added. Please, add the sitemap file manually"
|
343 |
msgstr "Файл sitemap не може бути доданий. Будь ласка, додайте його вручну"
|
344 |
|
345 |
-
#: google-sitemap-plugin.php:
|
346 |
#, php-format
|
347 |
msgid "Error 404. The sitemap file %s not found"
|
348 |
msgstr "Помилка 404. Файл sitemap %s не знайдено"
|
349 |
|
350 |
-
#: google-sitemap-plugin.php:
|
351 |
msgid "The sitemap file not found"
|
352 |
msgstr "Файл sitemap не знайдено"
|
353 |
|
354 |
-
#: google-sitemap-plugin.php:
|
355 |
msgid "FAQ"
|
356 |
msgstr "FAQ"
|
357 |
|
358 |
-
#: google-sitemap-plugin.php:
|
359 |
msgid "Support"
|
360 |
msgstr "Підтримка"
|
361 |
|
@@ -400,14 +396,6 @@ msgstr ""
|
|
400 |
msgid "here"
|
401 |
msgstr "тут"
|
402 |
|
403 |
-
#: includes/pro_banners.php:66
|
404 |
-
msgid ""
|
405 |
-
"Please choose the necessary post types and taxonomies the links to which are "
|
406 |
-
"to be added to the sitemap:"
|
407 |
-
msgstr ""
|
408 |
-
"Будь ласка виберіть необхідні типи постів і таксономії, посилання на які "
|
409 |
-
"мають бути додані до файлу sitemap:"
|
410 |
-
|
411 |
#: includes/pro_banners.php:73
|
412 |
msgid "Show URL for pages"
|
413 |
msgstr "Показати посилання для сторінок"
|
@@ -461,6 +449,22 @@ msgstr "завжди"
|
|
461 |
msgid "Save link"
|
462 |
msgstr "Зберегти посилання"
|
463 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
464 |
#~ msgid "This site is added to the Google Webmaster Tools."
|
465 |
#~ msgstr "Цей сайт додано до Google Webmaster Tools."
|
466 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Sitemap\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-08-18 19:27+0300\n"
|
6 |
+
"PO-Revision-Date: 2016-08-18 19:29+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
18 |
"((n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20)) ? 1 : 2);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: google-sitemap-plugin.php:35 google-sitemap-plugin.php:482
|
22 |
msgid "Google Sitemap Settings"
|
23 |
msgstr "Налаштування Google Sitemap"
|
24 |
|
25 |
+
#: google-sitemap-plugin.php:413
|
26 |
msgid "Cannot edit \"robots.txt\". Check your permissions"
|
27 |
msgstr "Неможливо відредагувати файл \"robots.txt\". Перевірте свої права"
|
28 |
|
29 |
+
#: google-sitemap-plugin.php:424
|
30 |
msgid "Settings saved"
|
31 |
msgstr "Налаштування збережено"
|
32 |
|
33 |
+
#: google-sitemap-plugin.php:432
|
34 |
msgid "Your Sitemap file has been created in the site root directory"
|
35 |
msgstr "Файл Sitemap створено у кореневій директорії сайту"
|
36 |
|
37 |
+
#: google-sitemap-plugin.php:470
|
38 |
msgid "Cannot edit \"robot.txt\". Check your permissions"
|
39 |
msgstr "Неможливо відредагувати файл \"robot.txt\". Перевірте свої права"
|
40 |
|
41 |
+
#: google-sitemap-plugin.php:479
|
42 |
msgid "All plugin settings were restored."
|
43 |
msgstr "Налаштування плагіну були відновлені."
|
44 |
|
45 |
+
#: google-sitemap-plugin.php:484 google-sitemap-plugin.php:995
|
46 |
+
#: google-sitemap-plugin.php:1008
|
47 |
msgid "Settings"
|
48 |
msgstr "Налаштування"
|
49 |
|
50 |
+
#: google-sitemap-plugin.php:485
|
51 |
msgid "Custom links"
|
52 |
msgstr "Додаткові посилання"
|
53 |
|
54 |
+
#: google-sitemap-plugin.php:486
|
55 |
msgid "Extra settings"
|
56 |
msgstr "Додаткові налаштування"
|
57 |
|
58 |
+
#: google-sitemap-plugin.php:487
|
59 |
msgid "Go PRO"
|
60 |
msgstr "Перейти на PRO"
|
61 |
|
62 |
+
#: google-sitemap-plugin.php:493
|
63 |
msgid "Warning:"
|
64 |
msgstr "Увага:"
|
65 |
|
66 |
+
#: google-sitemap-plugin.php:495
|
67 |
#, php-format
|
68 |
msgid ""
|
69 |
"To have an access to subsites XML files, please add the following rule %s to "
|
72 |
"Щоб мати доступ до XML файлів підсайту, будь ласка, додайте наступне правило "
|
73 |
"%s у ваш %s файл %s після строки %s або ви можете використовувати опцію %s"
|
74 |
|
75 |
+
#: google-sitemap-plugin.php:500 google-sitemap-plugin.php:606
|
76 |
msgid "Allow access to XML files"
|
77 |
msgstr "Дозволити доступ до XML файлів"
|
78 |
|
79 |
+
#: google-sitemap-plugin.php:506
|
80 |
msgid "Сheck Access"
|
81 |
msgstr "Перевірити Доступ"
|
82 |
|
83 |
+
#: google-sitemap-plugin.php:533 google-sitemap-plugin.php:535
|
84 |
msgid "The Sitemap file"
|
85 |
msgstr "Файл Sitemap"
|
86 |
|
87 |
+
#: google-sitemap-plugin.php:533 google-sitemap-plugin.php:535
|
88 |
msgid ""
|
89 |
"already exists. If you would like to replace it with a new one, please "
|
90 |
"choose the necessary box below"
|
91 |
msgstr ""
|
92 |
"вже існує. Якщо ви хочете замінити його на новий, виберіть потрібну дію внизу"
|
93 |
|
94 |
+
#: google-sitemap-plugin.php:540 google-sitemap-plugin.php:542
|
95 |
msgid "Your Sitemap file"
|
96 |
msgstr "Ваш файл Sitemap"
|
97 |
|
98 |
+
#: google-sitemap-plugin.php:540 google-sitemap-plugin.php:542
|
99 |
msgid "has been created in the site root directory"
|
100 |
msgstr "створений у кореневій директорії сайту"
|
101 |
|
102 |
+
#: google-sitemap-plugin.php:548
|
103 |
msgid "create a new sitemap file or update the existing one"
|
104 |
msgstr "створити новий файл sitemap або оновити існуючий"
|
105 |
|
106 |
+
#: google-sitemap-plugin.php:554
|
107 |
msgid "add sitemap file path in robots.txt"
|
108 |
msgstr "додати шлях до файлу sitemap у robots.txt"
|
109 |
|
110 |
+
#: google-sitemap-plugin.php:555
|
111 |
msgid ""
|
112 |
"Since you are using multisiting, the plugin does not allow to add a sitemap "
|
113 |
"to robots.txt"
|
115 |
"Оскільки ви використовуєте мультисайтинг, плагін не може додати файл sitemap "
|
116 |
"до robots.txt"
|
117 |
|
118 |
+
#: google-sitemap-plugin.php:562
|
119 |
msgid "add sitemap file path in"
|
120 |
msgstr "додати шлях файлу sitemap у"
|
121 |
|
122 |
+
#: google-sitemap-plugin.php:567 includes/pro_banners.php:66
|
123 |
+
msgid "Add post types and taxonomies links to the sitemap"
|
124 |
+
msgstr "Додати до sitemap посилання на типи постів і таксономії"
|
|
|
|
|
|
|
|
|
125 |
|
126 |
+
#: google-sitemap-plugin.php:590
|
127 |
msgid "This option will be applied to all websites in the network"
|
128 |
msgstr "Ця опція буде застосована до всіх сайтів мережі"
|
129 |
|
130 |
+
#: google-sitemap-plugin.php:593 google-sitemap-plugin.php:598
|
131 |
#, php-format
|
132 |
msgid "You should %s to use this functionality"
|
133 |
msgstr "Щоб використовувати цей функціонал %s"
|
134 |
|
135 |
+
#: google-sitemap-plugin.php:594
|
136 |
msgid "activate"
|
137 |
msgstr "aктивуйте"
|
138 |
|
139 |
+
#: google-sitemap-plugin.php:594
|
140 |
msgid "for network"
|
141 |
msgstr "для мережі"
|
142 |
|
143 |
+
#: google-sitemap-plugin.php:599
|
144 |
msgid "download"
|
145 |
msgstr "завантажте"
|
146 |
|
147 |
+
#: google-sitemap-plugin.php:611
|
148 |
msgid "The following string will be added to your .htaccess file"
|
149 |
msgstr "До вашого .htaccess файл буде додано наступну строку"
|
150 |
|
151 |
+
#: google-sitemap-plugin.php:623
|
152 |
msgid ""
|
153 |
"This hosting does not support сURL, so you cannot add a sitemap file "
|
154 |
"automatically"
|
156 |
"Цей хостинг не підтримує сURL, тому ви не можете автоматично додати файл "
|
157 |
"sitemap"
|
158 |
|
159 |
+
#: google-sitemap-plugin.php:626 google-sitemap-plugin.php:701
|
160 |
msgid ""
|
161 |
"You can always add your sitemap to Google Webmaster Tools manually. For more "
|
162 |
"info see"
|
164 |
"Ви завждии маєте можливість додати Ваш sitemap файл до Google Webmaster "
|
165 |
"Tools вручну. Для отримання більш детальної інформації прочитайте"
|
166 |
|
167 |
+
#: google-sitemap-plugin.php:627 google-sitemap-plugin.php:702
|
168 |
msgid "the instruction"
|
169 |
msgstr "інструкцію"
|
170 |
|
171 |
+
#: google-sitemap-plugin.php:633
|
172 |
msgid "Remote work with Google Webmaster Tools"
|
173 |
msgstr "Віддалена робота з Google Webmaster Tools"
|
174 |
|
175 |
+
#: google-sitemap-plugin.php:657
|
176 |
msgid "Log out from Google Webmaster Tools"
|
177 |
msgstr "Вийти з Google Webmaster Tools"
|
178 |
|
179 |
+
#: google-sitemap-plugin.php:659
|
180 |
msgid "add this site to Google Webmaster Tools"
|
181 |
msgstr "додати цей сайт до Google Webmaster Tools"
|
182 |
|
183 |
+
#: google-sitemap-plugin.php:660
|
184 |
msgid "delete this site from Google Webmaster Tools"
|
185 |
msgstr "видалити цей сайт з Google Webmaster Tools"
|
186 |
|
187 |
+
#: google-sitemap-plugin.php:661
|
188 |
msgid "get info about this site in Google Webmaster Tools"
|
189 |
msgstr "отримати інформацію про цей сайт з Google Webmaster Tools"
|
190 |
|
191 |
+
#: google-sitemap-plugin.php:689
|
192 |
msgid ""
|
193 |
"Please authorize via your Google Account in order to add or delete a site "
|
194 |
"and a sitemap file automatically or get information about this site in "
|
198 |
"можливість додавати або видаляти сайти та файл sitemap у вашому акаунті "
|
199 |
"автоматично або отримувати інформацію про цей сайт з Google Webmaster Tools"
|
200 |
|
201 |
+
#: google-sitemap-plugin.php:690
|
202 |
msgid "Get Authorization Code"
|
203 |
msgstr "Отримати Код Авторизації"
|
204 |
|
205 |
+
#: google-sitemap-plugin.php:693
|
206 |
msgid "Authorize"
|
207 |
msgstr "Авторизуватись"
|
208 |
|
209 |
+
#: google-sitemap-plugin.php:696
|
210 |
msgid "Invalid authorization code. Please, try again"
|
211 |
msgstr "Невірний код авторизації. Будь ласка, спробуйте ще раз"
|
212 |
|
213 |
+
#: google-sitemap-plugin.php:710 includes/pro_banners.php:84
|
214 |
msgid "Save Changes"
|
215 |
msgstr "Зберегти зміни"
|
216 |
|
217 |
+
#: google-sitemap-plugin.php:763 google-sitemap-plugin.php:825
|
218 |
+
#: google-sitemap-plugin.php:858
|
219 |
#, php-format
|
220 |
msgid "Site info for %s"
|
221 |
msgstr "Інформація про сайт %s"
|
222 |
|
223 |
+
#: google-sitemap-plugin.php:771 google-sitemap-plugin.php:775
|
224 |
+
#: google-sitemap-plugin.php:842
|
225 |
msgid "This site has not been added to Google Webmaster Tools"
|
226 |
msgstr "Даний сайт не додано до Google Webmaster Tools"
|
227 |
|
228 |
+
#: google-sitemap-plugin.php:776
|
229 |
msgid "Site URL"
|
230 |
msgstr "URL сайту"
|
231 |
|
232 |
+
#: google-sitemap-plugin.php:777
|
233 |
msgid "Site verification"
|
234 |
msgstr "Верифікація сайту"
|
235 |
|
236 |
+
#: google-sitemap-plugin.php:777
|
237 |
msgid "verified"
|
238 |
msgstr "верифіковано"
|
239 |
|
240 |
+
#: google-sitemap-plugin.php:777
|
241 |
msgid "not verified"
|
242 |
msgstr "не верифіковано"
|
243 |
|
244 |
+
#: google-sitemap-plugin.php:786
|
245 |
msgid "Failed to verify the site in Google Webmaster Tools"
|
246 |
msgstr "Неможливо отримати інформацію про цей сайт з Google Webmaster Tools"
|
247 |
|
248 |
+
#: google-sitemap-plugin.php:788 google-sitemap-plugin.php:897
|
249 |
+
#: google-sitemap-plugin.php:917
|
250 |
msgid "The site couldn't be verified. Please, verify the site manually"
|
251 |
msgstr "Сайт неможна перевірити. Будь ласка, перевірте його вручну"
|
252 |
|
253 |
+
#: google-sitemap-plugin.php:788 google-sitemap-plugin.php:811
|
254 |
+
#: google-sitemap-plugin.php:870 google-sitemap-plugin.php:897
|
255 |
+
#: google-sitemap-plugin.php:917 google-sitemap-plugin.php:936
|
256 |
msgid "View the Instruction"
|
257 |
msgstr "Переглянути інструкцію"
|
258 |
|
259 |
+
#: google-sitemap-plugin.php:801 google-sitemap-plugin.php:804
|
260 |
msgid "The sitemap file has not been added to Google Webmaster Tools"
|
261 |
msgstr "Файл sitemap не додано до Google Webmaster Tools"
|
262 |
|
263 |
+
#: google-sitemap-plugin.php:806
|
264 |
msgid ""
|
265 |
"The sitemap file has been added to Google Webmaster Tools, but has some "
|
266 |
"errors or warnings"
|
268 |
"Файл sitemap додано до акаунту Google Webmaster Tools, але під час додавання "
|
269 |
"виникли помилки"
|
270 |
|
271 |
+
#: google-sitemap-plugin.php:806
|
272 |
msgid "Please, see them in Google Webmaster Tools"
|
273 |
msgstr "Перегляньте їх в Google Webmaster Tools"
|
274 |
|
275 |
+
#: google-sitemap-plugin.php:809
|
276 |
msgid "Sitemap URL"
|
277 |
msgstr "URL Sitemap"
|
278 |
|
279 |
+
#: google-sitemap-plugin.php:811
|
280 |
msgid ""
|
281 |
"When checking the sitemap file an unexpected error occurred. Please, check "
|
282 |
"the sitemap file manually"
|
283 |
msgstr "Помилка при перевірці файлу sitemap. Будь ласка, перевірте файл вручну"
|
284 |
|
285 |
+
#: google-sitemap-plugin.php:837
|
286 |
msgid "This site has been successfully deleted from Google Webmaster Tools"
|
287 |
msgstr "Даний сайт було видалено з Google Webmaster Tools"
|
288 |
|
289 |
+
#: google-sitemap-plugin.php:862
|
290 |
msgid "The site has been added to Google Webmaster Tools"
|
291 |
msgstr "Сайт додано до Google Webmaster Tools"
|
292 |
|
293 |
+
#: google-sitemap-plugin.php:868
|
294 |
+
msgid "An error occurred while adding the site in Google Webmaster Tools"
|
295 |
+
msgstr "Під час додавання сайту в Google Webmaster Tools виникла помилка"
|
296 |
|
297 |
+
#: google-sitemap-plugin.php:870
|
298 |
msgid "The site couldn't be added. Please, add the site manually"
|
299 |
msgstr "Неможна додати сайт. Будь ласка, додайте його вручну"
|
300 |
|
301 |
+
#: google-sitemap-plugin.php:886
|
302 |
msgid "Verification code has been successfully received and added to the site"
|
303 |
msgstr "Код верифікації успішно отримано та додано на сайт"
|
304 |
|
305 |
+
#: google-sitemap-plugin.php:888
|
306 |
msgid ""
|
307 |
"Verification code has been successfully received but has not been added to "
|
308 |
"the site"
|
309 |
msgstr "Код верифікації успішно отримано, але не додано на сайт"
|
310 |
|
311 |
+
#: google-sitemap-plugin.php:895
|
312 |
msgid ""
|
313 |
"An error has occurred when receiving the verification code site in Google "
|
314 |
"Webmaster"
|
315 |
msgstr "Помилка при отриманні верифікаційного коду Google Webmaster"
|
316 |
|
317 |
+
#: google-sitemap-plugin.php:909
|
318 |
msgid "The site has been successfully verified in Google Webmaster Tools"
|
319 |
msgstr "Сайт успішно перевірено в Google Webmaster Tools"
|
320 |
|
321 |
+
#: google-sitemap-plugin.php:915
|
322 |
msgid ""
|
323 |
"An unexpected error occurred when verifying site in Google Webmaster Tools"
|
324 |
msgstr "Помилка при перевірці сайту в Google Webmaster Tools"
|
325 |
|
326 |
+
#: google-sitemap-plugin.php:928
|
327 |
msgid "The sitemap file has been successfully added to Google Webmaster Tools"
|
328 |
msgstr "Файл sitemap успішно додано до Google Webmaster Tools"
|
329 |
|
330 |
+
#: google-sitemap-plugin.php:934
|
331 |
msgid ""
|
332 |
+
"An error occurred while adding the sitemap file in Google Webmaster Tools"
|
333 |
+
msgstr ""
|
334 |
+
"Під час додавання фалу sitemap в Google Webmaster Tools виникла помилка"
|
335 |
|
336 |
+
#: google-sitemap-plugin.php:936
|
337 |
msgid ""
|
338 |
"The sitemap file couldn't be added. Please, add the sitemap file manually"
|
339 |
msgstr "Файл sitemap не може бути доданий. Будь ласка, додайте його вручну"
|
340 |
|
341 |
+
#: google-sitemap-plugin.php:939
|
342 |
#, php-format
|
343 |
msgid "Error 404. The sitemap file %s not found"
|
344 |
msgstr "Помилка 404. Файл sitemap %s не знайдено"
|
345 |
|
346 |
+
#: google-sitemap-plugin.php:942
|
347 |
msgid "The sitemap file not found"
|
348 |
msgstr "Файл sitemap не знайдено"
|
349 |
|
350 |
+
#: google-sitemap-plugin.php:1009
|
351 |
msgid "FAQ"
|
352 |
msgstr "FAQ"
|
353 |
|
354 |
+
#: google-sitemap-plugin.php:1010
|
355 |
msgid "Support"
|
356 |
msgstr "Підтримка"
|
357 |
|
396 |
msgid "here"
|
397 |
msgstr "тут"
|
398 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
399 |
#: includes/pro_banners.php:73
|
400 |
msgid "Show URL for pages"
|
401 |
msgstr "Показати посилання для сторінок"
|
449 |
msgid "Save link"
|
450 |
msgstr "Зберегти посилання"
|
451 |
|
452 |
+
#~ msgid ""
|
453 |
+
#~ "When you add a site in Google Webmaster Tools unexpected error occurred"
|
454 |
+
#~ msgstr "Помилка при додаванні сайту до Google Webmaster Tools"
|
455 |
+
|
456 |
+
#~ msgid ""
|
457 |
+
#~ "When you add a sitemap file in Google Webmaster Tools unexpected error "
|
458 |
+
#~ "occurred"
|
459 |
+
#~ msgstr "Помилка при додаванні файлу sitemap до Google Webmaster Tools"
|
460 |
+
|
461 |
+
#~ msgid ""
|
462 |
+
#~ "Please choose the necessary post types and taxonomies the links to which "
|
463 |
+
#~ "are to be added to the sitemap:"
|
464 |
+
#~ msgstr ""
|
465 |
+
#~ "Будь ласка виберіть необхідні типи постів і таксономії, посилання на які "
|
466 |
+
#~ "мають бути додані до файлу sitemap:"
|
467 |
+
|
468 |
#~ msgid "This site is added to the Google Webmaster Tools."
|
469 |
#~ msgstr "Цей сайт додано до Google Webmaster Tools."
|
470 |
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: bestwebsoft
|
|
3 |
Donate link: http://bestwebsoft.com/donate/
|
4 |
Tags: add pages to sitemap, add posts to sitemap, add sitemap, google, google sitemap, google sitemap plugin, sitemap file path, update sitemap, google webmaster tools, site map, sitemaps, webmaster tools
|
5 |
Requires at least: 3.8
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 3.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -12,46 +12,71 @@ Generate and add XML sitemap to WordPress website. Help search engines index you
|
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
-
|
16 |
|
17 |
-
|
18 |
-
|
19 |
-
<a href="http://www.youtube.com/watch?v=NKlAnFTzNrQ" target="_blank">Google Sitemap by BestWebSoft Video instruction on Installation</a>
|
20 |
-
|
21 |
-
<a href="http://wordpress.org/plugins/google-sitemap-plugin/faq/" target="_blank">Google Sitemap by BestWebSoft FAQ</a>
|
22 |
-
|
23 |
-
<a href="http://support.bestwebsoft.com" target="_blank">Google Sitemap by BestWebSoft Support</a>
|
24 |
-
|
25 |
-
<a href="http://bestwebsoft.com/products/google-sitemap/?k=8b735c0f7ca51187b5062d5e4f40058b" target="_blank">Upgrade to Google Sitemap Pro by BestWebSoft</a>
|
26 |
-
|
27 |
-
= Features =
|
28 |
-
|
29 |
-
* Create and add a Sitemap file to Google Webmaster Tools.
|
30 |
-
* Add a path to your sitemap file in robots.txt.
|
31 |
-
|
32 |
-
If you have a feature, suggestion or idea you'd like to see in the plugin, we'd love to hear about it! <a href="http://support.bestwebsoft.com/hc/en-us/requests/new" target="_blank">Suggest a Feature</a>
|
33 |
|
34 |
-
=
|
35 |
-
|
36 |
-
The author of the Google Sitemap also recommends the following plugins:
|
37 |
|
38 |
-
|
39 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
|
41 |
= Translation =
|
42 |
|
43 |
* Russian (ru_RU)
|
44 |
* Ukrainian (uk)
|
45 |
|
46 |
-
If you create your own language pack or update the existing one, you can send
|
|
|
|
|
|
|
|
|
47 |
|
48 |
-
=
|
49 |
|
50 |
-
|
51 |
|
52 |
-
|
53 |
-
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.
|
54 |
-
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).
|
55 |
|
56 |
== Installation ==
|
57 |
|
@@ -59,7 +84,7 @@ We can fix some things for free for the users who provide translation of our plu
|
|
59 |
2. Activate the plugin via the 'Plugins' menu in WordPress.
|
60 |
3. The site settings are available in "BWS Panel"->"Google Sitemap".
|
61 |
|
62 |
-
|
63 |
|
64 |
http://www.youtube.com/watch?v=NKlAnFTzNrQ
|
65 |
|
@@ -93,12 +118,12 @@ Select "I want to get info about this site in Google Webmaster Tools" and click
|
|
93 |
|
94 |
= I have some problems with the plugin's work. What Information should I provide to receive proper support? =
|
95 |
|
96 |
-
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:
|
97 |
|
98 |
1. the link to the page where the problem occurs
|
99 |
2. the name of the plugin and its version. If you are using a pro version - your order number.
|
100 |
3. the version of your WordPress installation
|
101 |
-
4. copy and paste into the message your system status report. Please read more here:
|
102 |
|
103 |
== Screenshots ==
|
104 |
|
@@ -107,6 +132,11 @@ Please make sure that the problem hasn't been discussed yet on our forum (http:/
|
|
107 |
|
108 |
== Changelog ==
|
109 |
|
|
|
|
|
|
|
|
|
|
|
110 |
= V3.0.5 - 15.07.2016 =
|
111 |
* Update : BWS panel section was updated.
|
112 |
|
@@ -268,6 +298,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (http:/
|
|
268 |
|
269 |
== Upgrade Notice ==
|
270 |
|
|
|
|
|
|
|
271 |
= V3.0.5 =
|
272 |
Usability improved.
|
273 |
|
3 |
Donate link: http://bestwebsoft.com/donate/
|
4 |
Tags: add pages to sitemap, add posts to sitemap, add sitemap, google, google sitemap, google sitemap plugin, sitemap file path, update sitemap, google webmaster tools, site map, sitemaps, webmaster tools
|
5 |
Requires at least: 3.8
|
6 |
+
Tested up to: 4.6
|
7 |
+
Stable tag: 3.0.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
+
Google Sitemap plugin automatically generates XML sitemap for your WordPress website and helps search engines index your blog. Such sitemap file helps crawlers to extract the structure of your website more effectively.
|
16 |
|
17 |
+
The plugin supports default WordPress pages as well as custom URLs. It can be also added to your Google Webmaster Tools account. Improve your website SEO today!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
|
19 |
+
http://www.youtube.com/watch?v=CgYXKRXpj_0
|
|
|
|
|
20 |
|
21 |
+
= Free Features =
|
22 |
+
|
23 |
+
* Add the following URLs to the sitemap:
|
24 |
+
* Page
|
25 |
+
* Post
|
26 |
+
* Post category
|
27 |
+
* Post tag
|
28 |
+
* Custom post types
|
29 |
+
* Custom taxonomies
|
30 |
+
* Add a path to your sitemap file in robots.txt automatically
|
31 |
+
* Connect your Google Webmaster Tools account to:
|
32 |
+
* Add website
|
33 |
+
* Add sitemap
|
34 |
+
* Delete website
|
35 |
+
* Get website info
|
36 |
+
* Compatible with latest WordPress version
|
37 |
+
* Incredibly simple settings for fast setup without modifying code
|
38 |
+
* Detailed step-by-step documentation and videos
|
39 |
+
|
40 |
+
> **Pro Features**
|
41 |
+
>
|
42 |
+
> All features from Free version included plus:
|
43 |
+
>
|
44 |
+
> * Exclude certain pages or post types from your sitemap file
|
45 |
+
> * Set the frequency of your website content changes for all pages
|
46 |
+
> * Configure all subsites on the network
|
47 |
+
> * Add custom URLs to the sitemap file
|
48 |
+
> * Get answer to your support question within one business day ([Support Policy](http://bestwebsoft.com/support-policy/))
|
49 |
+
>
|
50 |
+
> [Upgrade to Pro Now](http://bestwebsoft.com/products/google-sitemap/?k=8b735c0f7ca51187b5062d5e4f40058b)
|
51 |
+
|
52 |
+
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)
|
53 |
+
|
54 |
+
= Documentation & Videos =
|
55 |
+
|
56 |
+
* [[Doc] Installation](https://docs.google.com/document/d/1jceJFwgGYcrKQBm_FZSuLnH_weK4_ffCn7f68F_vgW8/)
|
57 |
+
* [[Doc] How to Add your site to Google Webmaster resource](https://docs.google.com/document/d/1VOJx_OaasVskCqi9fsAbUmxfsckoagPU5Py97yjha9w/)
|
58 |
+
* [[Video] Installation Instruction](http://www.youtube.com/watch?v=NKlAnFTzNrQ)
|
59 |
+
|
60 |
+
= Help & Support =
|
61 |
+
|
62 |
+
Visit our Help Center if you have any questions, our friendly Support Team is happy to help — <http://support.bestwebsoft.com/>
|
63 |
|
64 |
= Translation =
|
65 |
|
66 |
* Russian (ru_RU)
|
67 |
* Ukrainian (uk)
|
68 |
|
69 |
+
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).
|
70 |
+
|
71 |
+
= Recommended Plugins =
|
72 |
+
|
73 |
+
* [Updater](http://bestwebsoft.com/products/updater/?k=4b7b8eac2b35e12eaa2d51359f49cfb2) - 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.
|
74 |
|
75 |
+
= Donate =
|
76 |
|
77 |
+
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.
|
78 |
|
79 |
+
[Donate Now](http://bestwebsoft.com/donate/)
|
|
|
|
|
80 |
|
81 |
== Installation ==
|
82 |
|
84 |
2. Activate the plugin via the 'Plugins' menu in WordPress.
|
85 |
3. The site settings are available in "BWS Panel"->"Google Sitemap".
|
86 |
|
87 |
+
[View a Step-by-step Instruction on Google Sitemap Installation](https://docs.google.com/document/d/1jceJFwgGYcrKQBm_FZSuLnH_weK4_ffCn7f68F_vgW8/)
|
88 |
|
89 |
http://www.youtube.com/watch?v=NKlAnFTzNrQ
|
90 |
|
118 |
|
119 |
= I have some problems with the plugin's work. What Information should I provide to receive proper support? =
|
120 |
|
121 |
+
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:
|
122 |
|
123 |
1. the link to the page where the problem occurs
|
124 |
2. the name of the plugin and its version. If you are using a pro version - your order number.
|
125 |
3. the version of your WordPress installation
|
126 |
+
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)
|
127 |
|
128 |
== Screenshots ==
|
129 |
|
132 |
|
133 |
== Changelog ==
|
134 |
|
135 |
+
= V3.0.6 - 22.08.2016 =
|
136 |
+
* Update : Compatibility with the bbPress plugin improved.
|
137 |
+
* Update : Performance optimized.
|
138 |
+
* Update : We updated all functionality for WordPress 4.6.
|
139 |
+
|
140 |
= V3.0.5 - 15.07.2016 =
|
141 |
* Update : BWS panel section was updated.
|
142 |
|
298 |
|
299 |
== Upgrade Notice ==
|
300 |
|
301 |
+
= V3.0.6 =
|
302 |
+
Performance optimized. Functionality improved. The compatibility with new WordPress version updated.
|
303 |
+
|
304 |
= V3.0.5 =
|
305 |
Usability improved.
|
306 |
|