Version Description
- 16.08.2017 =
- Update : Plugin performance has been optimized.
- NEW : Sitemap file splitting functionality for a large amount of posts has been added.
- Pro : Ability to add link to the external sitemap has been added.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Google Sitemap by BestWebSoft |
Version | 3.1.0 |
Comparing to | |
See all releases |
Code changes from version 3.0.9 to 3.1.0
- bws_menu/bws_functions.php +16 -38
- bws_menu/bws_menu.php +35 -55
- bws_menu/class-bws-settings.php +27 -13
- bws_menu/css/general_style.css +22 -16
- bws_menu/fonts/bwsicons.eot +0 -0
- bws_menu/fonts/bwsicons.svg +3 -5
- bws_menu/fonts/bwsicons.ttf +0 -0
- bws_menu/fonts/bwsicons.woff +0 -0
- bws_menu/icons/plugins/captcha.png +0 -0
- bws_menu/icons/plugins/db-manager.png +0 -0
- bws_menu/js/general_script.js +6 -0
- bws_menu/languages/bestwebsoft-cs_CZ.mo +0 -0
- bws_menu/languages/bestwebsoft-cs_CZ.po +465 -187
- bws_menu/languages/bestwebsoft-fr_FR.mo +0 -0
- bws_menu/languages/bestwebsoft-fr_FR.po +366 -48
- bws_menu/languages/bestwebsoft-id_ID.mo +0 -0
- bws_menu/languages/bestwebsoft-id_ID.po +2069 -0
- bws_menu/languages/bestwebsoft-nl_NL.mo +0 -0
- bws_menu/languages/bestwebsoft-nl_NL.po +1478 -0
- bws_menu/languages/bestwebsoft-pl_PL.mo +0 -0
- bws_menu/languages/bestwebsoft-pl_PL.po +342 -42
- bws_menu/languages/bestwebsoft-ru_RU.mo +0 -0
- bws_menu/languages/bestwebsoft-ru_RU.po +518 -51
- bws_menu/languages/bestwebsoft-uk.mo +0 -0
- bws_menu/languages/bestwebsoft-uk.po +511 -52
- bws_menu/product_list.php +124 -155
- css/style.css +34 -0
- google-sitemap-plugin.php +656 -186
- includes/class-gglstmp-settings.php +116 -135
- includes/deprecated.php +25 -5
- includes/pro_banners.php +61 -24
- languages/google-sitemap-plugin-cs_CZ.mo +0 -0
- languages/google-sitemap-plugin-cs_CZ.po +296 -190
- languages/google-sitemap-plugin-es_ES.mo +0 -0
- languages/google-sitemap-plugin-es_ES.po +280 -194
- languages/google-sitemap-plugin-ru_RU.mo +0 -0
- languages/google-sitemap-plugin-ru_RU.po +313 -205
- languages/google-sitemap-plugin-uk.mo +0 -0
- languages/google-sitemap-plugin-uk.po +314 -209
- readme.txt +38 -5
- screenshot-1.png +0 -0
- screenshot-2.png +0 -0
- sitemap-index.xsl +136 -0
bws_menu/bws_functions.php
CHANGED
@@ -388,7 +388,7 @@ if ( ! function_exists ( 'bws_plugin_banner_timeout' ) ) {
|
|
388 |
|
389 |
if ( ! function_exists( 'bws_plugin_banner_to_settings' ) ) {
|
390 |
function bws_plugin_banner_to_settings( $plugin_info, $plugin_options_name, $banner_url_or_slug, $settings_url, $post_type_url = false ) {
|
391 |
-
global $
|
392 |
|
393 |
$is_network_admin = is_network_admin();
|
394 |
|
@@ -422,8 +422,6 @@ if ( ! function_exists( 'bws_plugin_banner_to_settings' ) ) {
|
|
422 |
|
423 |
if ( ! function_exists( 'bws_plugin_suggest_feature_banner' ) ) {
|
424 |
function bws_plugin_suggest_feature_banner( $plugin_info, $plugin_options_name, $banner_url_or_slug ) {
|
425 |
-
global $wp_version;
|
426 |
-
|
427 |
$is_network_admin = is_network_admin();
|
428 |
|
429 |
$plugin_options = $is_network_admin ? get_site_option( $plugin_options_name ) : get_option( $plugin_options_name );
|
@@ -546,7 +544,20 @@ if ( ! function_exists ( 'bws_plugins_admin_init' ) ) {
|
|
546 |
unset( $recent[ $plugin ] );
|
547 |
update_site_option( 'recently_activated', $recent );
|
548 |
}
|
549 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
550 |
exit();
|
551 |
}
|
552 |
|
@@ -654,8 +665,6 @@ if ( ! function_exists ( 'bws_plugins_admin_head' ) ) {
|
|
654 |
),
|
655 |
'set_timeout' => 2000
|
656 |
);
|
657 |
-
if ( $wp_version < '3.9' )
|
658 |
-
$tooltip_args['css_selector'] = '.mce_add_bws_shortcode';
|
659 |
bws_add_tooltip_in_admin( $tooltip_args );
|
660 |
}
|
661 |
}
|
@@ -683,9 +692,6 @@ if ( ! class_exists( 'BWS_admin_tooltip' ) ) {
|
|
683 |
private $tooltip_args;
|
684 |
|
685 |
public function __construct( $tooltip_args ) {
|
686 |
-
global $wp_version;
|
687 |
-
if ( 3.3 > $wp_version )
|
688 |
-
return;
|
689 |
/* Default arguments */
|
690 |
$tooltip_args_default = array(
|
691 |
'tooltip_id' => false,
|
@@ -804,9 +810,7 @@ if ( ! function_exists ( 'bws_form_restore_default_confirm' ) ) {
|
|
804 |
/* shortcode */
|
805 |
if ( ! function_exists( 'bws_add_editor_buttons' ) ) {
|
806 |
function bws_add_editor_buttons() {
|
807 |
-
global $bws_shortcode_list
|
808 |
-
if ( $wp_version < '3.3' )
|
809 |
-
return;
|
810 |
if ( ! empty( $bws_shortcode_list ) && current_user_can( 'edit_posts' ) && current_user_can( 'edit_pages' ) ) {
|
811 |
add_filter( 'mce_external_plugins', 'bws_add_buttons' );
|
812 |
add_filter( 'mce_buttons', 'bws_register_buttons' );
|
@@ -832,8 +836,6 @@ if ( ! function_exists( 'bws_register_buttons' ) ) {
|
|
832 |
if ( ! function_exists( 'bws_shortcode_media_button_popup' ) ) {
|
833 |
function bws_shortcode_media_button_popup() {
|
834 |
global $bws_shortcode_list, $wp_version;
|
835 |
-
if ( $wp_version < '3.3' )
|
836 |
-
return;
|
837 |
|
838 |
if ( ! empty( $bws_shortcode_list ) ) { ?>
|
839 |
<div id="bws_shortcode_popup" style="display:none;">
|
@@ -856,33 +858,9 @@ if ( ! function_exists( 'bws_shortcode_media_button_popup' ) ) {
|
|
856 |
<p><?php _e( 'The shortcode will be inserted', 'bestwebsoft' ); ?></p>
|
857 |
<div id="bws_shortcode_block"><div id="bws_shortcode_display"></div></div>
|
858 |
</div>
|
859 |
-
<?php if ( $wp_version < '3.9' ) { ?>
|
860 |
-
<p>
|
861 |
-
<button class="button-primary primary bws_shortcode_insert"><?php _e( 'Insert', 'bestwebsoft' ); ?></button>
|
862 |
-
</p>
|
863 |
-
<?php } ?>
|
864 |
</div>
|
865 |
</div>
|
866 |
<?php }
|
867 |
-
if ( $wp_version < '3.9' ) { ?>
|
868 |
-
<script type="text/javascript">
|
869 |
-
(function($){
|
870 |
-
$( '.bws_shortcode_insert' ).on( 'click',function() {
|
871 |
-
var shortcode = $( '#TB_ajaxContent #bws_shortcode_display' ).text();
|
872 |
-
if ( '' != shortcode ) {
|
873 |
-
/* insert shortcode to tinymce */
|
874 |
-
if ( !tinyMCE.activeEditor || tinyMCE.activeEditor.isHidden() ) {
|
875 |
-
$( 'textarea#content' ).val( shortcode );
|
876 |
-
} else {
|
877 |
-
tinyMCE.execCommand( 'mceInsertContent', false, shortcode );
|
878 |
-
}
|
879 |
-
}
|
880 |
-
/* close the thickbox after adding shortcode to editor */
|
881 |
-
self.parent.tb_remove();
|
882 |
-
});
|
883 |
-
})(jQuery);
|
884 |
-
</script>
|
885 |
-
<?php }
|
886 |
}
|
887 |
}
|
888 |
|
388 |
|
389 |
if ( ! function_exists( 'bws_plugin_banner_to_settings' ) ) {
|
390 |
function bws_plugin_banner_to_settings( $plugin_info, $plugin_options_name, $banner_url_or_slug, $settings_url, $post_type_url = false ) {
|
391 |
+
global $bws_plugin_banner_to_settings;
|
392 |
|
393 |
$is_network_admin = is_network_admin();
|
394 |
|
422 |
|
423 |
if ( ! function_exists( 'bws_plugin_suggest_feature_banner' ) ) {
|
424 |
function bws_plugin_suggest_feature_banner( $plugin_info, $plugin_options_name, $banner_url_or_slug ) {
|
|
|
|
|
425 |
$is_network_admin = is_network_admin();
|
426 |
|
427 |
$plugin_options = $is_network_admin ? get_site_option( $plugin_options_name ) : get_option( $plugin_options_name );
|
544 |
unset( $recent[ $plugin ] );
|
545 |
update_site_option( 'recently_activated', $recent );
|
546 |
}
|
547 |
+
/**
|
548 |
+
* @deprecated 1.9.8 (15.12.2016)
|
549 |
+
*/
|
550 |
+
$is_main_page = in_array( $_GET['page'], array( 'bws_panel', 'bws_themes', 'bws_system_status' ) );
|
551 |
+
$page = esc_attr( $_GET['page'] );
|
552 |
+
$tab = isset( $_GET['tab'] ) ? esc_attr( $_GET['tab'] ) : '';
|
553 |
+
|
554 |
+
if ( $is_main_page )
|
555 |
+
$current_page = 'admin.php?page=' . $page;
|
556 |
+
else
|
557 |
+
$current_page = isset( $_GET['tab'] ) ? 'admin.php?page=' . $page . '&tab=' . $tab : 'admin.php?page=' . $page;
|
558 |
+
/*end deprecated */
|
559 |
+
|
560 |
+
wp_redirect( self_admin_url( $current_page . '&activate=true' ) );
|
561 |
exit();
|
562 |
}
|
563 |
|
665 |
),
|
666 |
'set_timeout' => 2000
|
667 |
);
|
|
|
|
|
668 |
bws_add_tooltip_in_admin( $tooltip_args );
|
669 |
}
|
670 |
}
|
692 |
private $tooltip_args;
|
693 |
|
694 |
public function __construct( $tooltip_args ) {
|
|
|
|
|
|
|
695 |
/* Default arguments */
|
696 |
$tooltip_args_default = array(
|
697 |
'tooltip_id' => false,
|
810 |
/* shortcode */
|
811 |
if ( ! function_exists( 'bws_add_editor_buttons' ) ) {
|
812 |
function bws_add_editor_buttons() {
|
813 |
+
global $bws_shortcode_list;
|
|
|
|
|
814 |
if ( ! empty( $bws_shortcode_list ) && current_user_can( 'edit_posts' ) && current_user_can( 'edit_pages' ) ) {
|
815 |
add_filter( 'mce_external_plugins', 'bws_add_buttons' );
|
816 |
add_filter( 'mce_buttons', 'bws_register_buttons' );
|
836 |
if ( ! function_exists( 'bws_shortcode_media_button_popup' ) ) {
|
837 |
function bws_shortcode_media_button_popup() {
|
838 |
global $bws_shortcode_list, $wp_version;
|
|
|
|
|
839 |
|
840 |
if ( ! empty( $bws_shortcode_list ) ) { ?>
|
841 |
<div id="bws_shortcode_popup" style="display:none;">
|
858 |
<p><?php _e( 'The shortcode will be inserted', 'bestwebsoft' ); ?></p>
|
859 |
<div id="bws_shortcode_block"><div id="bws_shortcode_display"></div></div>
|
860 |
</div>
|
|
|
|
|
|
|
|
|
|
|
861 |
</div>
|
862 |
</div>
|
863 |
<?php }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
864 |
}
|
865 |
}
|
866 |
|
bws_menu/bws_menu.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
* Function for displaying BestWebSoft menu
|
4 |
-
* Version: 2.
|
5 |
*/
|
6 |
|
7 |
if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
|
@@ -178,7 +178,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
178 |
$post_max_size = ( ini_get( 'post_max_size' ) ) ? ini_get( 'post_max_size' ) : __( 'N/A', 'bestwebsoft' );
|
179 |
$max_execution_time = ( ini_get( 'max_execution_time' ) ) ? ini_get( 'max_execution_time' ) : __( 'N/A', 'bestwebsoft' );
|
180 |
$memory_limit = ( ini_get( 'memory_limit' ) ) ? ini_get( 'memory_limit' ) : __( 'N/A', 'bestwebsoft' );
|
181 |
-
$wp_memory_limit = ( defined( 'WP_MEMORY_LIMIT' ) ) ? WP_MEMORY_LIMIT : __( 'N/A', 'bestwebsoft' );
|
182 |
$memory_usage = ( function_exists( 'memory_get_usage' ) ) ? round( memory_get_usage() / 1024 / 1024, 2 ) . __( ' Mb', 'bestwebsoft' ) : __( 'N/A', 'bestwebsoft' );
|
183 |
$exif_read_data = ( is_callable( 'exif_read_data' ) ) ? __( 'Yes', 'bestwebsoft' ) . " ( V" . substr( phpversion( 'exif' ), 0,4 ) . ")" : __( 'No', 'bestwebsoft' );
|
184 |
$iptcparse = ( is_callable( 'iptcparse' ) ) ? __( 'Yes', 'bestwebsoft' ) : __( 'No', 'bestwebsoft' );
|
@@ -199,7 +199,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
199 |
__( 'Website URL', 'bestwebsoft' ) => get_option( 'siteurl' ),
|
200 |
__( 'WP Version', 'bestwebsoft' ) => $wp_version,
|
201 |
__( 'WP Multisite', 'bestwebsoft' ) => $multisite,
|
202 |
-
__( 'WP Memory Limit', 'bestwebsoft' ) => $wp_memory_limit,
|
203 |
__( 'Active Theme', 'bestwebsoft' ) => $theme['Name'] . ' ' . $theme['Version'] . ' (' . sprintf( __( 'by %s', 'bestwebsoft' ), $theme['Author'] ) . ')'
|
204 |
),
|
205 |
),
|
@@ -217,7 +217,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
217 |
__( 'PHP Max Script Execute Time', 'bestwebsoft' ) => $max_execution_time,
|
218 |
__( 'PHP Exif support', 'bestwebsoft' ) => $exif_read_data,
|
219 |
__( 'PHP IPTC support', 'bestwebsoft' ) => $iptcparse,
|
220 |
-
__( 'PHP XML support', 'bestwebsoft' ) => $xml_parser_create,
|
221 |
'$_SERVER[HTTP_HOST]' => $_SERVER['HTTP_HOST'],
|
222 |
'$_SERVER[SERVER_NAME]' => $_SERVER['SERVER_NAME'],
|
223 |
),
|
@@ -273,8 +273,8 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
273 |
$headers .= 'Content-type: text/html; charset=utf-8' . "\n";
|
274 |
$headers .= 'From: ' . get_option( 'admin_email' );
|
275 |
$message_text = '<html><head><title>System Info From ' . home_url() . '</title></head><body>';
|
276 |
-
foreach ( $system_info as $info ) {
|
277 |
-
if ( ! empty( $info['data'] ) ) {
|
278 |
$message_text .= '<h4>' . $info['name'];
|
279 |
if ( isset( $info['count'] ) )
|
280 |
$message_text .= ' (' . $info['count'] . ')';
|
@@ -301,7 +301,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
301 |
<span>panel</span>
|
302 |
</a>
|
303 |
</div>
|
304 |
-
<div class="bws-menu-item-icon">•••</div>
|
305 |
<div class="bws-nav-tab-wrapper">
|
306 |
<?php if ( $is_main_page ) { ?>
|
307 |
<a class="bws-nav-tab<?php if ( 'bws_panel' == $page ) echo ' bws-nav-tab-active'; ?>" href="<?php echo self_admin_url( 'admin.php?page=bws_panel' ); ?>"><?php _e( 'Plugins', 'bestwebsoft' ); ?></a>
|
@@ -532,12 +532,12 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
532 |
} ?>
|
533 |
</div>
|
534 |
<div class="bws_product_description">
|
535 |
-
<?php echo ( strlen( $value_plugin['description'] ) > 100 ) ?
|
536 |
</div>
|
537 |
<div class="bws_product_links">
|
538 |
<?php if ( $is_active || $is_pro_active ) {
|
539 |
-
if ( $is_pro_isset ) {
|
540 |
-
if (
|
541 |
if ( ! empty( $plugins_array ) && array_key_exists( $value_plugin['pro_version'], $plugins_array ) ) { ?>
|
542 |
<form method="post" action="">
|
543 |
<input type="submit" class="button button-secondary" value="<?php _e( 'Install Now', 'bestwebsoft' ); ?>" />
|
@@ -610,52 +610,31 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
610 |
require( dirname( __FILE__ ) . '/product_list.php' ); ?>
|
611 |
<h1><?php _e( 'Themes', 'bestwebsoft' ); ?></h1>
|
612 |
<div id="availablethemes" class="bws-availablethemes">
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
$installed_theme = wp_get_theme( $theme->slug ); ?>
|
617 |
-
<
|
618 |
-
<
|
619 |
-
|
620 |
-
<h3><?php echo $theme->name; ?></h3>
|
621 |
-
<div class="theme-author"><?php printf( __( 'By %s', 'bestwebsoft' ), 'BestWebSoft' ); ?></div>
|
622 |
-
<div class="action-links">
|
623 |
-
<ul>
|
624 |
-
<?php if ( $installed_theme->exists() ) { ?>
|
625 |
-
<li><span class="install-now" title="'<?php esc_attr__( 'This theme is already installed and is up to date' ); ?>"><?php echo _x( 'Installed', 'theme', 'bestwebsoft' ); ?></span></li>
|
626 |
-
<?php } ?>
|
627 |
-
<li><a class="theme-detail" href="<?php echo esc_url( $theme->href ); ?>" target="_blank"><?php _e( 'Learn More', 'bestwebsoft' ); ?></a></li>
|
628 |
-
</ul>
|
629 |
-
</div>
|
630 |
-
</div>
|
631 |
-
<?php }
|
632 |
-
} else { ?>
|
633 |
-
<div class="theme-browser content-filterable rendered">
|
634 |
-
<div class="themes wp-clearfix">
|
635 |
-
<?php foreach ( $themes as $key => $theme ) {
|
636 |
-
$installed_theme = wp_get_theme( $theme->slug ); ?>
|
637 |
-
<div class="theme" tabindex="0">
|
638 |
-
<div class="theme-screenshot">
|
639 |
-
<img src="<?php echo bws_menu_url( "icons/themes/" ) . $theme->slug . '.png'; ?>" alt="" />
|
640 |
-
</div>
|
641 |
-
<div class="theme-author"><?php printf( __( 'By %s', 'bestwebsoft' ), 'BestWebSoft' ); ?></div>
|
642 |
-
<h3 class="theme-name"><?php echo $theme->name; ?></h3>
|
643 |
-
<div class="theme-actions">
|
644 |
-
<a class="button button-secondary preview install-theme-preview" href="<?php echo $theme->href; ?>" target="_blank"><?php esc_html_e( 'Learn More', 'bestwebsoft' ); ?></a>
|
645 |
-
</div>
|
646 |
-
<?php if ( $installed_theme->exists() ) {
|
647 |
-
if ( $wp_version < '4.6' ) { ?>
|
648 |
-
<div class="theme-installed"><?php _e( 'Already Installed', 'bestwebsoft' ); ?></div>
|
649 |
-
<?php } else { ?>
|
650 |
-
<div class="notice notice-success notice-alt inline"><p><?php _e( 'Installed', 'bestwebsoft' ); ?></p></div>
|
651 |
-
<?php }
|
652 |
-
} ?>
|
653 |
</div>
|
654 |
-
|
655 |
-
|
656 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
657 |
</div>
|
658 |
-
|
659 |
<p><a class="bws_browse_link" href="http://bestweblayout.com/categories/themes/" target="_blank"><?php _e( 'Browse Free WordPress Themes', 'bestwebsoft' ); ?> <span class="dashicons dashicons-arrow-right-alt2"></span></a></p>
|
660 |
</div>
|
661 |
<?php } elseif ( 'bws_system_status' == $page || 'system-status' == $tab ) { ?>
|
@@ -685,7 +664,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
685 |
<strong>
|
686 |
<?php echo $info['name'];
|
687 |
if ( isset( $info['count'] ) )
|
688 |
-
echo ' (' . $info['count'] . ')'; ?>
|
689 |
</strong>
|
690 |
</th>
|
691 |
</tr>
|
@@ -699,7 +678,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
699 |
<?php } ?>
|
700 |
</tbody>
|
701 |
</table>
|
702 |
-
<?php }
|
703 |
} ?>
|
704 |
</div>
|
705 |
</div>
|
@@ -710,6 +689,7 @@ if ( ! function_exists( 'bws_get_banner_array' ) ) {
|
|
710 |
function bws_get_banner_array() {
|
711 |
global $bstwbsftwppdtplgns_banner_array;
|
712 |
$bstwbsftwppdtplgns_banner_array = array(
|
|
|
713 |
array( 'sclbttns_hide_banner_on_plugin_page', 'social-buttons-pack/social-buttons-pack.php', '1.1.0' ),
|
714 |
array( 'tmsht_hide_banner_on_plugin_page', 'timesheet/timesheet.php', '0.1.3' ),
|
715 |
array( 'pgntn_hide_banner_on_plugin_page', 'pagination/pagination.php', '1.0.6' ),
|
1 |
<?php
|
2 |
/*
|
3 |
* Function for displaying BestWebSoft menu
|
4 |
+
* Version: 2.1.2
|
5 |
*/
|
6 |
|
7 |
if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
|
178 |
$post_max_size = ( ini_get( 'post_max_size' ) ) ? ini_get( 'post_max_size' ) : __( 'N/A', 'bestwebsoft' );
|
179 |
$max_execution_time = ( ini_get( 'max_execution_time' ) ) ? ini_get( 'max_execution_time' ) : __( 'N/A', 'bestwebsoft' );
|
180 |
$memory_limit = ( ini_get( 'memory_limit' ) ) ? ini_get( 'memory_limit' ) : __( 'N/A', 'bestwebsoft' );
|
181 |
+
$wp_memory_limit = ( defined( 'WP_MEMORY_LIMIT' ) ) ? WP_MEMORY_LIMIT : __( 'N/A', 'bestwebsoft' );
|
182 |
$memory_usage = ( function_exists( 'memory_get_usage' ) ) ? round( memory_get_usage() / 1024 / 1024, 2 ) . __( ' Mb', 'bestwebsoft' ) : __( 'N/A', 'bestwebsoft' );
|
183 |
$exif_read_data = ( is_callable( 'exif_read_data' ) ) ? __( 'Yes', 'bestwebsoft' ) . " ( V" . substr( phpversion( 'exif' ), 0,4 ) . ")" : __( 'No', 'bestwebsoft' );
|
184 |
$iptcparse = ( is_callable( 'iptcparse' ) ) ? __( 'Yes', 'bestwebsoft' ) : __( 'No', 'bestwebsoft' );
|
199 |
__( 'Website URL', 'bestwebsoft' ) => get_option( 'siteurl' ),
|
200 |
__( 'WP Version', 'bestwebsoft' ) => $wp_version,
|
201 |
__( 'WP Multisite', 'bestwebsoft' ) => $multisite,
|
202 |
+
__( 'WP Memory Limit', 'bestwebsoft' ) => $wp_memory_limit,
|
203 |
__( 'Active Theme', 'bestwebsoft' ) => $theme['Name'] . ' ' . $theme['Version'] . ' (' . sprintf( __( 'by %s', 'bestwebsoft' ), $theme['Author'] ) . ')'
|
204 |
),
|
205 |
),
|
217 |
__( 'PHP Max Script Execute Time', 'bestwebsoft' ) => $max_execution_time,
|
218 |
__( 'PHP Exif support', 'bestwebsoft' ) => $exif_read_data,
|
219 |
__( 'PHP IPTC support', 'bestwebsoft' ) => $iptcparse,
|
220 |
+
__( 'PHP XML support', 'bestwebsoft' ) => $xml_parser_create,
|
221 |
'$_SERVER[HTTP_HOST]' => $_SERVER['HTTP_HOST'],
|
222 |
'$_SERVER[SERVER_NAME]' => $_SERVER['SERVER_NAME'],
|
223 |
),
|
273 |
$headers .= 'Content-type: text/html; charset=utf-8' . "\n";
|
274 |
$headers .= 'From: ' . get_option( 'admin_email' );
|
275 |
$message_text = '<html><head><title>System Info From ' . home_url() . '</title></head><body>';
|
276 |
+
foreach ( $system_info as $info ) {
|
277 |
+
if ( ! empty( $info['data'] ) ) {
|
278 |
$message_text .= '<h4>' . $info['name'];
|
279 |
if ( isset( $info['count'] ) )
|
280 |
$message_text .= ' (' . $info['count'] . ')';
|
301 |
<span>panel</span>
|
302 |
</a>
|
303 |
</div>
|
304 |
+
<div class="bws-menu-item-icon">•••</div>
|
305 |
<div class="bws-nav-tab-wrapper">
|
306 |
<?php if ( $is_main_page ) { ?>
|
307 |
<a class="bws-nav-tab<?php if ( 'bws_panel' == $page ) echo ' bws-nav-tab-active'; ?>" href="<?php echo self_admin_url( 'admin.php?page=bws_panel' ); ?>"><?php _e( 'Plugins', 'bestwebsoft' ); ?></a>
|
532 |
} ?>
|
533 |
</div>
|
534 |
<div class="bws_product_description">
|
535 |
+
<?php echo ( strlen( $value_plugin['description'] ) > 100 ) ? mb_substr( $value_plugin['description'], 0, 100 ) . '...' : $value_plugin['description']; ?>
|
536 |
</div>
|
537 |
<div class="bws_product_links">
|
538 |
<?php if ( $is_active || $is_pro_active ) {
|
539 |
+
if ( $is_pro_isset ) {
|
540 |
+
if ( ! $is_pro_installed ) {
|
541 |
if ( ! empty( $plugins_array ) && array_key_exists( $value_plugin['pro_version'], $plugins_array ) ) { ?>
|
542 |
<form method="post" action="">
|
543 |
<input type="submit" class="button button-secondary" value="<?php _e( 'Install Now', 'bestwebsoft' ); ?>" />
|
610 |
require( dirname( __FILE__ ) . '/product_list.php' ); ?>
|
611 |
<h1><?php _e( 'Themes', 'bestwebsoft' ); ?></h1>
|
612 |
<div id="availablethemes" class="bws-availablethemes">
|
613 |
+
<div class="theme-browser content-filterable rendered">
|
614 |
+
<div class="themes wp-clearfix">
|
615 |
+
<?php foreach ( $themes as $key => $theme ) {
|
616 |
$installed_theme = wp_get_theme( $theme->slug ); ?>
|
617 |
+
<div class="theme" tabindex="0">
|
618 |
+
<div class="theme-screenshot">
|
619 |
+
<img src="<?php echo bws_menu_url( "icons/themes/" ) . $theme->slug . '.png'; ?>" alt="" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
620 |
</div>
|
621 |
+
<div class="theme-author"><?php printf( __( 'By %s', 'bestwebsoft' ), 'BestWebSoft' ); ?></div>
|
622 |
+
<h3 class="theme-name"><?php echo $theme->name; ?></h3>
|
623 |
+
<div class="theme-actions">
|
624 |
+
<a class="button button-secondary preview install-theme-preview" href="<?php echo $theme->href; ?>" target="_blank"><?php esc_html_e( 'Learn More', 'bestwebsoft' ); ?></a>
|
625 |
+
</div>
|
626 |
+
<?php if ( $installed_theme->exists() ) {
|
627 |
+
if ( $wp_version < '4.6' ) { ?>
|
628 |
+
<div class="theme-installed"><?php _e( 'Already Installed', 'bestwebsoft' ); ?></div>
|
629 |
+
<?php } else { ?>
|
630 |
+
<div class="notice notice-success notice-alt inline"><p><?php _e( 'Installed', 'bestwebsoft' ); ?></p></div>
|
631 |
+
<?php }
|
632 |
+
} ?>
|
633 |
+
</div>
|
634 |
+
<?php } ?>
|
635 |
+
<br class="clear" />
|
636 |
</div>
|
637 |
+
</div>
|
638 |
<p><a class="bws_browse_link" href="http://bestweblayout.com/categories/themes/" target="_blank"><?php _e( 'Browse Free WordPress Themes', 'bestwebsoft' ); ?> <span class="dashicons dashicons-arrow-right-alt2"></span></a></p>
|
639 |
</div>
|
640 |
<?php } elseif ( 'bws_system_status' == $page || 'system-status' == $tab ) { ?>
|
664 |
<strong>
|
665 |
<?php echo $info['name'];
|
666 |
if ( isset( $info['count'] ) )
|
667 |
+
echo ' (' . $info['count'] . ')'; ?>
|
668 |
</strong>
|
669 |
</th>
|
670 |
</tr>
|
678 |
<?php } ?>
|
679 |
</tbody>
|
680 |
</table>
|
681 |
+
<?php }
|
682 |
} ?>
|
683 |
</div>
|
684 |
</div>
|
689 |
function bws_get_banner_array() {
|
690 |
global $bstwbsftwppdtplgns_banner_array;
|
691 |
$bstwbsftwppdtplgns_banner_array = array(
|
692 |
+
array( 'gglstpvrfctn_hide_banner_on_plugin_page', 'bws-google-2-step-verification/bws-google-2-step-verification.php', '1.0.0' ),
|
693 |
array( 'sclbttns_hide_banner_on_plugin_page', 'social-buttons-pack/social-buttons-pack.php', '1.1.0' ),
|
694 |
array( 'tmsht_hide_banner_on_plugin_page', 'timesheet/timesheet.php', '0.1.3' ),
|
695 |
array( 'pgntn_hide_banner_on_plugin_page', 'pagination/pagination.php', '1.0.6' ),
|
bws_menu/class-bws-settings.php
CHANGED
@@ -8,11 +8,12 @@
|
|
8 |
if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
|
9 |
class Bws_Settings_Tabs {
|
10 |
private $tabs;
|
11 |
-
private $plugin_basename;
|
12 |
-
private $prefix;
|
13 |
private $pro_plugin_is_activated = false;
|
14 |
private $custom_code_args = array();
|
15 |
-
|
|
|
|
|
|
|
16 |
|
17 |
public $options;
|
18 |
public $default_options;
|
@@ -261,8 +262,10 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
|
|
261 |
if ( ! empty( $data['is_pro'] ) && $this->hide_pro_tabs )
|
262 |
continue; ?>
|
263 |
<div class="bws_tab ui-tabs-panel ui-widget-content ui-corner-bottom" id="<?php echo $this->prefix . '_' . $tab_slug; ?>_tab" aria-labelledby="ui-id-2" role="tabpanel" aria-hidden="false" style="display: block;">
|
264 |
-
<?php
|
265 |
-
|
|
|
|
|
266 |
} ?>
|
267 |
</div>
|
268 |
<?php }
|
@@ -453,8 +456,10 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
|
|
453 |
echo '(' . __( 'Browsing', 'bestwebsoft' ) . ')'; ?>
|
454 |
</big></p>
|
455 |
<p class="bws_info">
|
456 |
-
<
|
457 |
-
|
|
|
|
|
458 |
</p>
|
459 |
<textarea cols="70" rows="25" name="bws_newcontent_<?php echo $extension; ?>" id="bws_newcontent_<?php echo $extension; ?>"><?php if ( isset( $this->custom_code_args["content_{$extension}"] ) ) echo $this->custom_code_args["content_{$extension}"]; ?></textarea>
|
460 |
<p class="bws_info">
|
@@ -544,16 +549,20 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
|
|
544 |
<tr>
|
545 |
<th scope="row"><?php _e( 'Pro Options', 'bestwebsoft' ); ?></th>
|
546 |
<td>
|
547 |
-
<
|
548 |
-
|
|
|
|
|
549 |
</td>
|
550 |
</tr>
|
551 |
<?php } ?>
|
552 |
<tr>
|
553 |
<th scope="row"><?php _e( 'Track Usage', 'bestwebsoft' ); ?></th>
|
554 |
<td>
|
555 |
-
<
|
556 |
-
|
|
|
|
|
557 |
</td>
|
558 |
</tr>
|
559 |
<tr>
|
@@ -791,7 +800,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
|
|
791 |
}
|
792 |
$current = get_site_transient( 'update_plugins' );
|
793 |
|
794 |
-
if ( ! empty( $this->all_plugins ) && isset( $current ) && is_array( $current->response ) ) {
|
795 |
$to_send = array();
|
796 |
$to_send["plugins"][ $this->plugin_basename ] = $this->all_plugins[ $this->plugin_basename ];
|
797 |
$to_send["plugins"][ $this->plugin_basename ]["bws_license_key"] = $bws_license_key;
|
@@ -895,7 +904,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
|
|
895 |
|
896 |
if ( ! array_key_exists( $bws_license_plugin, $this->all_plugins ) ) {
|
897 |
$current = get_site_transient( 'update_plugins' );
|
898 |
-
if ( ! empty( $current ) && is_array( $current->response ) ) {
|
899 |
$to_send = array();
|
900 |
$to_send["plugins"][ $bws_license_plugin ] = array();
|
901 |
$to_send["plugins"][ $bws_license_plugin ]["bws_license_key"] = $bws_license_key;
|
@@ -1071,6 +1080,11 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
|
|
1071 |
* @return void
|
1072 |
*/
|
1073 |
public function restore_options() {
|
|
|
|
|
|
|
|
|
|
|
1074 |
/**
|
1075 |
* filter - Change default_options array OR process custom functions
|
1076 |
*/
|
8 |
if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
|
9 |
class Bws_Settings_Tabs {
|
10 |
private $tabs;
|
|
|
|
|
11 |
private $pro_plugin_is_activated = false;
|
12 |
private $custom_code_args = array();
|
13 |
+
|
14 |
+
public $plugin_basename;
|
15 |
+
public $prefix;
|
16 |
+
public $wp_slug;
|
17 |
|
18 |
public $options;
|
19 |
public $default_options;
|
262 |
if ( ! empty( $data['is_pro'] ) && $this->hide_pro_tabs )
|
263 |
continue; ?>
|
264 |
<div class="bws_tab ui-tabs-panel ui-widget-content ui-corner-bottom" id="<?php echo $this->prefix . '_' . $tab_slug; ?>_tab" aria-labelledby="ui-id-2" role="tabpanel" aria-hidden="false" style="display: block;">
|
265 |
+
<?php $tab_slug = str_replace( '-', '_', $tab_slug );
|
266 |
+
if ( method_exists( $this, 'tab_' . $tab_slug ) ) {
|
267 |
+
call_user_func( array( $this, 'tab_' . $tab_slug ) );
|
268 |
+
do_action_ref_array( __CLASS__ . '_after_tab_' . $tab_slug, array( &$this ) );
|
269 |
} ?>
|
270 |
</div>
|
271 |
<?php }
|
456 |
echo '(' . __( 'Browsing', 'bestwebsoft' ) . ')'; ?>
|
457 |
</big></p>
|
458 |
<p class="bws_info">
|
459 |
+
<label>
|
460 |
+
<input type="checkbox" name="bws_custom_<?php echo $extension; ?>_active" value="1" <?php if ( $this->custom_code_args["is_{$extension}_active"] ) echo "checked"; ?> />
|
461 |
+
<?php printf( __( 'Activate custom %s code.', 'bestwebsoft' ), $name ); ?>
|
462 |
+
</label>
|
463 |
</p>
|
464 |
<textarea cols="70" rows="25" name="bws_newcontent_<?php echo $extension; ?>" id="bws_newcontent_<?php echo $extension; ?>"><?php if ( isset( $this->custom_code_args["content_{$extension}"] ) ) echo $this->custom_code_args["content_{$extension}"]; ?></textarea>
|
465 |
<p class="bws_info">
|
549 |
<tr>
|
550 |
<th scope="row"><?php _e( 'Pro Options', 'bestwebsoft' ); ?></th>
|
551 |
<td>
|
552 |
+
<label>
|
553 |
+
<input <?php echo $this->change_permission_attr; ?> name="bws_hide_premium_options_submit" type="checkbox" value="1" <?php if ( ! $this->hide_pro_tabs ) echo 'checked="checked "'; ?> />
|
554 |
+
<span class="bws_info"><?php _e( 'Enable to display plugin Pro options.', 'bestwebsoft' ); ?></span>
|
555 |
+
</label>
|
556 |
</td>
|
557 |
</tr>
|
558 |
<?php } ?>
|
559 |
<tr>
|
560 |
<th scope="row"><?php _e( 'Track Usage', 'bestwebsoft' ); ?></th>
|
561 |
<td>
|
562 |
+
<label>
|
563 |
+
<input <?php echo $this->change_permission_attr; ?> name="bws_track_usage" type="checkbox" value="1" <?php if ( ! empty( $bstwbsftwppdtplgns_options['track_usage']['products'][ $this->plugin_basename ] ) ) echo 'checked="checked "'; ?>/>
|
564 |
+
<span class="bws_info"><?php _e( 'Enable to allow tracking plugin usage anonymously in order to make it better.', 'bestwebsoft' ); ?></span>
|
565 |
+
</label>
|
566 |
</td>
|
567 |
</tr>
|
568 |
<tr>
|
800 |
}
|
801 |
$current = get_site_transient( 'update_plugins' );
|
802 |
|
803 |
+
if ( ! empty( $this->all_plugins ) && ! empty( $current ) && isset( $current->response ) && is_array( $current->response ) ) {
|
804 |
$to_send = array();
|
805 |
$to_send["plugins"][ $this->plugin_basename ] = $this->all_plugins[ $this->plugin_basename ];
|
806 |
$to_send["plugins"][ $this->plugin_basename ]["bws_license_key"] = $bws_license_key;
|
904 |
|
905 |
if ( ! array_key_exists( $bws_license_plugin, $this->all_plugins ) ) {
|
906 |
$current = get_site_transient( 'update_plugins' );
|
907 |
+
if ( ! empty( $current ) && isset( $current->response ) && is_array( $current->response ) ) {
|
908 |
$to_send = array();
|
909 |
$to_send["plugins"][ $bws_license_plugin ] = array();
|
910 |
$to_send["plugins"][ $bws_license_plugin ]["bws_license_key"] = $bws_license_key;
|
1080 |
* @return void
|
1081 |
*/
|
1082 |
public function restore_options() {
|
1083 |
+
unset(
|
1084 |
+
$this->default_options['first_install'],
|
1085 |
+
$this->default_options['suggest_feature_banner'],
|
1086 |
+
$this->default_options['display_settings_notice']
|
1087 |
+
);
|
1088 |
/**
|
1089 |
* filter - Change default_options array OR process custom functions
|
1090 |
*/
|
bws_menu/css/general_style.css
CHANGED
@@ -39,7 +39,7 @@
|
|
39 |
#adminmenu #toplevel_page_bws_panel .wp-menu-image {
|
40 |
font-family: 'bwsicons' !important;
|
41 |
}
|
42 |
-
#adminmenu #toplevel_page_bws_panel
|
43 |
content: "\e93c";
|
44 |
font-family: 'bwsicons' !important;
|
45 |
}
|
@@ -56,6 +56,7 @@
|
|
56 |
}
|
57 |
div.bws_info {
|
58 |
margin-top: 7px;
|
|
|
59 |
}
|
60 |
.bws_info_small {
|
61 |
font-size: 11px !important;
|
@@ -87,22 +88,24 @@ div.updated.bws-notice {
|
|
87 |
.bws-plugin-reviews-rate,
|
88 |
.bws-plugin-reviews-support,
|
89 |
.bws-plugin-reviews-donate {
|
90 |
-
display: inline-block;
|
91 |
padding: 10px;
|
92 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
}
|
94 |
@media screen and (max-width: 1600px) {
|
95 |
.bws-plugin-reviews-rate,
|
96 |
.bws-plugin-reviews-support {
|
97 |
border-bottom: 1px solid #70A8C2;
|
98 |
border-right: none;
|
99 |
-
}
|
100 |
-
.bws-plugin-reviews-rate,
|
101 |
-
.bws-plugin-reviews-support,
|
102 |
-
.bws-plugin-reviews-donate {
|
103 |
-
width: initial;
|
104 |
-
display: block;
|
105 |
-
}
|
106 |
}
|
107 |
/*
|
108 |
* styles for Go PRO tab
|
@@ -240,7 +243,8 @@ a.bws_plugin_pro_version {
|
|
240 |
.bws_pro_version_tooltip .bws_info a {
|
241 |
display: block;
|
242 |
}
|
243 |
-
.bws_pro_version_tooltip .bws_button
|
|
|
244 |
margin: 10px 10px 5px;
|
245 |
float: none;
|
246 |
}
|
@@ -465,9 +469,7 @@ span.bws_code {
|
|
465 |
text-shadow: 0 0 2px #000;
|
466 |
padding: 4px 8px;
|
467 |
border: 1px solid rgba(255,255,255,0.25);
|
468 |
-
background
|
469 |
-
background-color: rgba(25,25,25,0.92);
|
470 |
-
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(transparent), to(#000));
|
471 |
border-radius: 3px;
|
472 |
-webkit-border-radius: 3px;
|
473 |
-moz-border-radius: 3px;
|
@@ -606,7 +608,7 @@ span.bws_code {
|
|
606 |
width: 161px;
|
607 |
margin: -1px 0 0 0;
|
608 |
border-top: 1px solid #ddd;
|
609 |
-
padding: 20px
|
610 |
color: #000 !important;
|
611 |
background: #fff !important;
|
612 |
}
|
@@ -646,7 +648,8 @@ span.bws_code {
|
|
646 |
#bws_settings_tabs li.bws-tab-import-export a:before {
|
647 |
content: "\f317";
|
648 |
}
|
649 |
-
#bws_settings_tabs li.bws-tab-errors a:before
|
|
|
650 |
font-family: 'bwsicons';
|
651 |
content: "\e93d";
|
652 |
font-size: 18px;
|
@@ -735,6 +738,9 @@ span.bws_code {
|
|
735 |
margin-right: 160px;
|
736 |
margin-left: 0;
|
737 |
}
|
|
|
|
|
|
|
738 |
@media only screen and (max-width: 1100px) {
|
739 |
#bws_settings_tabs {
|
740 |
width: 59px;
|
39 |
#adminmenu #toplevel_page_bws_panel .wp-menu-image {
|
40 |
font-family: 'bwsicons' !important;
|
41 |
}
|
42 |
+
#adminmenu #toplevel_page_bws_panel .wp-menu-image:before {
|
43 |
content: "\e93c";
|
44 |
font-family: 'bwsicons' !important;
|
45 |
}
|
56 |
}
|
57 |
div.bws_info {
|
58 |
margin-top: 7px;
|
59 |
+
word-break: break-all;
|
60 |
}
|
61 |
.bws_info_small {
|
62 |
font-size: 11px !important;
|
88 |
.bws-plugin-reviews-rate,
|
89 |
.bws-plugin-reviews-support,
|
90 |
.bws-plugin-reviews-donate {
|
|
|
91 |
padding: 10px;
|
92 |
+
display: block;
|
93 |
+
}
|
94 |
+
|
95 |
+
@media screen and (min-width: 1600px) {
|
96 |
+
.bws-plugin-reviews-rate,
|
97 |
+
.bws-plugin-reviews-support,
|
98 |
+
.bws-plugin-reviews-donate {
|
99 |
+
display: inline-block;
|
100 |
+
width: 30%;
|
101 |
+
}
|
102 |
}
|
103 |
@media screen and (max-width: 1600px) {
|
104 |
.bws-plugin-reviews-rate,
|
105 |
.bws-plugin-reviews-support {
|
106 |
border-bottom: 1px solid #70A8C2;
|
107 |
border-right: none;
|
108 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
}
|
110 |
/*
|
111 |
* styles for Go PRO tab
|
243 |
.bws_pro_version_tooltip .bws_info a {
|
244 |
display: block;
|
245 |
}
|
246 |
+
.bws_pro_version_tooltip .bws_button,
|
247 |
+
.bws_pro_version_tooltip .bws_button:hover {
|
248 |
margin: 10px 10px 5px;
|
249 |
float: none;
|
250 |
}
|
469 |
text-shadow: 0 0 2px #000;
|
470 |
padding: 4px 8px;
|
471 |
border: 1px solid rgba(255,255,255,0.25);
|
472 |
+
background: rgba(25,25,25,0.92);
|
|
|
|
|
473 |
border-radius: 3px;
|
474 |
-webkit-border-radius: 3px;
|
475 |
-moz-border-radius: 3px;
|
608 |
width: 161px;
|
609 |
margin: -1px 0 0 0;
|
610 |
border-top: 1px solid #ddd;
|
611 |
+
padding: 20px 21px 20px 45px;
|
612 |
color: #000 !important;
|
613 |
background: #fff !important;
|
614 |
}
|
648 |
#bws_settings_tabs li.bws-tab-import-export a:before {
|
649 |
content: "\f317";
|
650 |
}
|
651 |
+
#bws_settings_tabs li.bws-tab-errors a:before,
|
652 |
+
#bws_settings_tabs li.bws-tab-messages a:before {
|
653 |
font-family: 'bwsicons';
|
654 |
content: "\e93d";
|
655 |
font-size: 18px;
|
738 |
margin-right: 160px;
|
739 |
margin-left: 0;
|
740 |
}
|
741 |
+
.bws_margined_box {
|
742 |
+
margin: 1em 0;
|
743 |
+
}
|
744 |
@media only screen and (max-width: 1100px) {
|
745 |
#bws_settings_tabs {
|
746 |
width: 59px;
|
bws_menu/fonts/bwsicons.eot
CHANGED
Binary file
|
bws_menu/fonts/bwsicons.svg
CHANGED
@@ -16,13 +16,10 @@
|
|
16 |
<glyph unicode="" glyph-name="custom-admin-page" d="M1023.488 120.512c-0.128-6.592-2.56 14.080-8.768 22.656-13.632 18.752-35.2 32.448-68.608 45.12-57.408 21.696-71.040 29.312-71.040 29.312l-0.576 49.984c0 0 21.504 15.040 28.224 62.144 0 0 11.264 6.336 18.688 25.856 3.968 10.368 7.808 45.568-8.576 42.432 0 0 9.536 41.472-3.584 82.176-6.72 20.928-21.76 35.136-44.288 35.136-9.28 9.28-29.12 18.24-55.296 19.52h-0.192c-52.352-2.496-80-14.208-97.088-54.656-21.76-51.264-6.080-82.176-6.080-82.176-16.448 3.136-12.544-32.064-8.576-42.432 7.424-19.52 18.688-25.856 18.688-25.856 6.656-47.104 28.16-62.144 28.16-62.144l-0.576-49.984c0 0-13.632-7.552-71.040-29.312-33.344-12.672-54.912-26.304-68.608-45.12-6.208-8.64-8.896-16.128-8.768-22.656 1.216-3.264-3.84-54.656 18.176-55.616h398.912c14.848 0 10.816 19.712 10.816 55.616zM64 640h704v-64c37.632 14.656 37.568 11.52 64 0v194.624c0 32.32-28.992 61.376-61.376 61.376h-704.448c-32.384 0-66.176-31.68-66.176-64v-640c0-32.32 33.792-64 66.176-64h490.944c0 0-15.936 24.512 0 64h-493.12v512zM320 768h64v-64h-64v64zM192 768h64v-64h-64v64zM64 768h64v-64h-64v64zM552.32 156.928c0.256 0.576-0.32 0.832 0 0v0z" />
|
17 |
<glyph unicode="" glyph-name="custom-fields-search" d="M1018.56 78.592l-242.24 242.112c39.424 63.872 62.208 139.264 62.208 220.16 0 231.296-187.776 419.136-419.2 419.136-231.872 0-419.328-187.84-419.328-419.136 0-231.808 187.456-419.648 419.328-419.648 84.992 0 163.776 25.28 229.696 68.416l240.512-240.448c12.416-12.416 43.52-1.664 69.312 24l36.032 36.16c25.728 25.664 36.544 56.768 23.68 69.248zM419.264 260.544c-154.688 0-280.32 125.632-280.32 280.256 0 154.688 125.632 279.872 280.32 279.872s279.936-125.248 279.936-279.872c0-154.624-125.248-280.256-279.936-280.256zM461.888 384h-155.776c-9.984 0-18.112 8.128-18.112 18.112v27.776c0 9.984 8.128 18.112 18.112 18.112h155.712c10.048 0 18.176-8.128 18.176-18.112v-27.712c0-10.048-8.128-18.176-18.112-18.176zM525.888 576h-219.776c-9.984 0-18.112-8.128-18.112-18.112v-27.712c0-10.048 8.128-18.176 18.112-18.176h219.712c10.048 0 18.176 8.128 18.176 18.112v27.776c0 9.984-8.128 18.112-18.112 18.112zM525.888 704h-219.776c-9.984 0-18.112-8.128-18.112-18.112v-27.712c0-10.048 8.128-18.176 18.112-18.176h219.712c10.048 0 18.176 8.128 18.176 18.112v27.776c0 9.984-8.128 18.112-18.112 18.112z" />
|
18 |
<glyph unicode="" glyph-name="custom-search" d="M1018.56 65.728l-242.24 242.112c39.424 63.872 62.208 139.264 62.208 220.16 0 231.36-187.84 419.136-419.264 419.136-231.808 0-419.264-187.84-419.264-419.136 0-231.808 187.456-419.648 419.328-419.648 84.992 0 163.776 25.28 229.696 68.416l240.512-240.448c12.416-12.416 43.52-1.664 69.312 24l36.032 36.16c25.728 25.664 36.544 56.768 23.68 69.248zM419.264 247.744c-154.688 0-280.32 125.632-280.32 280.256 0 154.688 125.632 279.872 280.32 279.872s279.936-125.248 279.936-279.872c0-154.688-125.248-280.256-279.936-280.256z" />
|
19 |
-
<glyph unicode="" glyph-name="db-manager" d="M388.672 232.064c-0.96-0.064-1.92-0.064-2.88-0.064-7.872-0.192-15.744-0.32-23.744-0.32-0.256 0-0.576 0-0.896 0-7.424 0-14.784 0.128-22.144 0.32-1.344 0-2.752 0.064-4.16 0.064-7.488 0.192-14.848 0.576-22.208 0.96-0.96 0.064-1.984 0.064-3.008 0.192-15.616 0.832-30.912 2.112-45.76 3.712-118.272 12.736-222.080 48.064-255.552 92.864-3.392 4.544-6.208 6.272-8.32 6.464v-140.928c27.2-70.912 182.912-125.056 358.848-125.696h6.336c0.704 0 1.344 0 2.048 0l3.904 0.064v0.064c36.544 0.384 71.616 3.2 104.576 7.808-37.376 43.456-62.848 96.704-72.384 155.136-4.864-0.256-9.728-0.576-14.656-0.64zM1024 221.568v68.992l-61.248 21.632c-4.224 14.72-10.048 28.672-17.28 41.792l27.904 58.688-48.768 48.768-58.688-27.968c-13.056 7.232-27.072 13.056-41.664 17.344l-21.76 61.184h-68.928l-21.824-61.12c-14.656-4.288-28.608-10.112-41.728-17.344l-58.688 27.904-48.768-48.768 27.968-58.688c-7.232-13.12-13.12-27.072-17.344-41.792l-61.184-21.632v-68.992l61.184-21.76c4.224-14.592 10.048-28.544 17.344-41.728l-27.968-58.688 48.768-48.768 58.688 27.968c13.12-7.296 27.072-13.12 41.728-17.28l21.824-61.312h68.928l21.76 61.248c14.592 4.224 28.608 9.984 41.664 17.28l58.688-27.968 48.768 48.768-27.904 58.688c7.232 13.056 13.056 27.136 17.28 41.728l61.248 21.824zM768 162.048c-51.84 0-93.952 42.112-93.952 93.888 0 51.904 42.048 93.888 93.952 93.888 51.84 0 93.888-42.048 93.888-93.888 0-51.776-42.048-93.888-93.888-93.888zM361.984 582.4v0c188.992 0 354.304 54.144 366.4 122.432v75.776c-12.096 64.448-177.408 115.392-366.4 115.392v0c-177.344 0-334.656-44.928-361.984-103.744v-99.776c27.328-62.336 184.64-110.080 361.984-110.080zM413.824 493.248c-0.704 0-1.408-0.064-2.24-0.128-7.488-0.32-15.168-0.64-22.912-0.896-1.024-0.064-1.984-0.064-2.944-0.064-7.872-0.192-15.744-0.384-23.744-0.384-0.256 0-0.576 0-0.896 0-7.424 0-14.784 0.128-22.144 0.384-1.344 0-2.752 0.064-4.16 0.128-7.424 0.192-14.784 0.512-22.144 0.896-0.96 0-1.984 0.064-2.944 0.192-15.616 0.832-30.912 2.112-45.824 3.648-118.272 12.736-222.080 48.064-255.552 92.8-3.392 4.672-6.208 6.4-8.32 6.592v-140.928c27.2-70.912 182.912-125.056 358.848-125.696h6.336c0.704 0 1.344 0 2.048 0l3.904 0.064v0.064c10.688 0.128 21.248 0.512 31.744 0.96 9.984 64.96 39.936 123.456 83.712 169.536-8.384-1.216-16.96-2.304-25.664-3.264-15.296-1.664-30.976-2.944-47.104-3.904z" />
|
20 |
<glyph unicode="" glyph-name="donate-button" d="M0 256h320v-320h384v320h320v384h-320v320h-384v-320h-320v-384z" />
|
21 |
-
<glyph unicode="" glyph-name="email-queue" d="M964.288 37.312c0-20.572-17.049-37.248-38.080-37.248s-38.080 16.676-38.080 37.248c0 20.572 17.049 37.248 38.080 37.248s38.080-16.676 38.080-37.248zM708.288 37.312c0-20.572-17.049-37.248-38.080-37.248s-38.080 16.676-38.080 37.248c0 20.572 17.049 37.248 38.080 37.248s38.080-16.676 38.080-37.248zM836.288 37.312c0-20.572-17.049-37.248-38.080-37.248s-38.080 16.676-38.080 37.248c0 20.572 17.049 37.248 38.080 37.248s38.080-16.676 38.080-37.248zM903.68 849.024c-85.632 73.984-203.2 110.976-352.64 110.976-172.608 0-310.080-52.224-412.544-156.672-92.352-93.696-138.496-207.552-138.496-341.568 0-112.64 38.016-211.904 113.984-297.856 94.912-107.264 222.528-160.96 398.016-160.96 90.304 0 86.080 71.616 16.384 71.616-149.056 0-256.32 41.216-336.96 123.904-68.864 69.888-103.296 156.224-103.296 259.008 0 117.568 36.096 215.168 108.352 292.864 84.352 91.264 206.336 136.896 365.888 136.896 115.008 0 206.528-27.264 274.56-81.728 68.096-54.464 102.080-129.408 102.080-224.768 0-78.912-19.008-142.848-57.024-191.744-37.952-48.96-80.96-73.344-128.768-73.344-14.72 0-27.84 4.224-39.36 12.608-11.584 8.384-17.28 21.888-17.28 40.384 0 9.92 1.472 21.184 4.416 33.92 2.88 12.736 7.552 29.568 13.824 50.56l83.776 270.080h-92.608l-31.488-103.616c-1.728 34.112-16.512 63.296-44.48 87.552-27.84 24.256-63.232 36.416-106.048 36.416-62.976 0-121.92-31.232-176.64-93.696-54.784-62.528-82.176-134.656-82.176-216.512 0-57.536 16.064-104.576 48.192-141.184s73.984-54.912 125.632-54.912c36.096 0 71.168 9.856 105.152 29.312 33.984 19.584 62.144 52.928 84.416 100.288-1.28-5.376-2.368-10.496-3.2-15.488-0.832-4.928-1.28-9.6-1.28-14.144 0-27.52 9.856-51.072 29.632-70.656 19.712-19.456 50.368-29.312 91.968-29.312 70.976 0 135.104 33.216 192.384 99.584 57.28 66.432 85.952 146.496 85.952 240.192 0 111.424-40.128 202.112-120.32 272zM596.992 404.672c-31.616-64.768-75.776-97.088-132.352-97.088-27.328 0-49.984 10.56-67.904 31.744-18.048 21.12-27.072 51.904-27.072 92.16 0 54.656 17.536 109.632 52.48 164.992 35.072 55.296 76.544 82.88 124.288 82.88 30.656 0 54.592-10.176 72-30.464 17.408-20.416 26.176-43.328 26.176-68.8-0.064-52.096-15.872-110.656-47.616-175.424z" />
|
22 |
<glyph unicode="" glyph-name="error-log-viewer" d="M576 960v-320h320zM448 352v-128c0-17.664 14.336-32 32-32s32 14.336 32 32v128c0 17.664-14.336 32-32 32s-32-14.336-32-32zM512 960h-384v-1024h768v640h-384v384zM352 128h-160v320h64v-256h96v-64zM640 352c0 52.992 43.008 96 96 96s96-43.008 96-96h-64c0 17.664-14.336 32-32 32s-32-14.336-32-32v-128c0-17.664 14.336-32 32-32s32 14.336 32 32v32h-32v64h96v-96c0-52.992-43.008-96-96-96s-96 43.008-96 96v128zM576 352v-128c0-52.992-43.008-96-96-96s-96 43.008-96 96v128c0 52.992 43.008 96 96 96s96-43.008 96-96z" />
|
23 |
<glyph unicode="" glyph-name="facebook-button" d="M748.864 771.584l-23.552 1.472-23.552 3.008-55.936 7.296h-3.008c-5.824 0-11.776-1.472-14.656-2.944l-11.84-5.824c-5.824-3.008-10.304-8.896-14.656-13.312-7.36-11.776-10.24-25.024-10.24-41.28 0-72.064 1.536-104.704 1.536-106.176l150.016-1.536-22.144-159.808-129.408-4.48v-512h-201.408v514.88h-120.832v162.112h116.352c1.472 0 4.48 45.312 4.48 143.872 0 7.36 0 11.84 0 19.2s0 14.72 0 22.016c1.472 7.36 1.472 13.248 2.944 20.672 1.472 7.296 4.48 14.656 7.36 20.544 8.832 27.968 21.76 50.048 42.304 69.184h-1.472l35.328 27.968c16.192 8.832 36.864 16.192 58.88 19.136l19.136 4.416c11.84 0 20.672 0 26.496 0l187.008-14.784-19.136-173.632z" />
|
24 |
<glyph unicode="" glyph-name="featured-posts" d="M128 576h256v-64h-256v64zM128 448h128v-64h-128v64zM128 320h128v-64h-128v64zM128 704h512v-64h-512v64zM128 832h512v-64h-512v64zM768 626.432v234.496c0 54.592-43.136 99.072-96.128 99.072h-575.744c-52.992 0-96.128-44.48-96.128-99.072v-697.792c0-54.656 43.136-99.136 96.128-99.136h304.384c64.576-78.080 162.176-127.872 271.424-127.872 194.432 0 352 157.568 352 351.936 0.064 161.024-108.288 296.512-255.936 338.368zM320 288.064c0-57.728 14.144-112 38.784-160.064h-262.656c-16.96 0-32.128 15.104-32.128 33.728v699.2c0 18.624 15.168 35.072 32.128 35.072h575.68c17.024 0 32.192-16.448 32.192-35.072v-222.528c-10.56 0.96-21.184 1.6-32 1.6-194.432 0-352-157.568-352-351.936zM917.76 317.504l-109.376-97.408 36.48-148.224c8.128-25.408-20.288-50.752-44.544-33.856l-125.632 80.448-125.568-80.448c-20.224-16.96-52.672 4.224-44.544 33.856l32.448 148.224-109.44 97.408c-20.224 16.96-12.16 55.040 12.16 55.040l145.856 12.736 56.704 139.712c12.16 25.472 44.608 25.472 56.768 0l56.704-139.712 145.856-12.736c24.256 0 36.416-38.080 16.128-55.040z" />
|
25 |
-
<glyph unicode="" glyph-name="gallery-categories" d="M932.992 832h-351.936c-77.696-0.832-101.888-2.304-123.072 21.888l-7.552 12.928c-40.704 59.776-54.912 53.376-131.968 53.376h-227.52c-50.112 0-90.944-40.768-90.944-90.944v-802.304c0-50.176 40.832-90.944 90.944-90.944h842.048c50.24 0 91.008 40.832 91.008 90.944v707.712c0 50.112-40.768 97.344-91.008 97.344zM384 128h-128v128h128v-128zM384 320h-128v128h128v-128zM384 512h-128v128h128v-128zM448 640h128v-128h-128v128zM576 128h-128v128h128v-128zM576 320h-128v128h128v-128zM768 128h-128v128h128v-128zM768 320h-128v128h128v-128zM768 512h-128v128h128v-128z" />
|
26 |
<glyph unicode="" glyph-name="gallery" d="M256-64h-256v256h256v-256zM256 320h-256v256h256v-256zM256 704h-256v256h256v-256zM640-64h-256v256h256v-256zM640 320h-256v256h256v-256zM640 704h-256v256h256v-256zM1024-64h-256v256h256v-256zM1024 320h-256v256h256v-256zM1024 704h-256v256h256v-256z" />
|
27 |
<glyph unicode="" glyph-name="google-analytics" d="M1024 489.728l-180.224 110.4c4.608 12.48 7.488 25.792 7.488 39.936 0 64-51.84 115.84-115.84 115.84s-115.84-51.904-115.84-115.84c0-30.4 11.968-57.792 31.040-78.464l-138.24-209.024c-11.904 4.16-24.512 6.848-37.824 6.848-32.192 0-61.248-13.12-82.24-34.304l-65.28 37.44c2.496 9.472 4.288 19.264 4.288 29.504 0 64-51.84 115.84-115.84 115.84s-115.84-51.904-115.84-115.84c0-22.016 6.464-42.368 17.088-59.84l-112.128-112.064c-0.32-0.448 39.616-39.616 40-40.064l112.448 112.448c17.216-10.112 36.992-16.32 58.432-16.32 33.344 0 63.168 14.272 84.288 36.8l64.192-36.8c-3.072-10.432-5.248-21.184-5.248-32.64 0-64 51.84-115.84 115.84-115.84s115.84 51.904 115.84 115.84c0 30.144-11.776 57.408-30.72 78.016l138.432 209.28c11.776-4.032 24.128-6.656 37.248-6.656 29.376 0 55.872 11.264 76.288 29.312l183.616-112.448 28.736 48.64z" />
|
28 |
<glyph unicode="" glyph-name="google-captcha" d="M960 640v255.232l-82.56-82.88c-93.056 91.264-220.864 147.648-361.984 147.648-284.672 0-515.456-229.184-515.456-512 0-282.752 230.784-512 515.456-512 141.44 0 269.504 56.576 362.624 148.224l-89.984 89.408c-70.080-68.736-166.4-111.168-272.64-111.168-214.336 0-388.16 172.608-388.16 385.6 0 212.928 173.76 385.536 388.16 385.536 106.176 0 202.432-42.368 272.512-111.040l-83.008-82.56h255.040zM512 480c0 52.992-43.008 96-96 96h-96v-320h64v128h21.248l42.752-128h64l-47.296 141.696c28.16 16.704 47.296 47.168 47.296 82.304zM384 511.232h32c17.664 0 32-14.336 32-32s-14.336-32-32-32h-32v64zM768 512v64h-192v-320h192v64h-128v64h64v64h-64v64z" />
|
@@ -34,7 +31,7 @@
|
|
34 |
<glyph unicode="" glyph-name="job-board" d="M640 356.16c0.064-28.608-12.864-36.16-41.408-36.16h-171.52c-28.608 0-43.072 7.552-43.072 36.16v18.432c-134.208 9.024-257.984 39.936-384 73.472v-355.712c0-51.008 33.472-92.352 84.416-92.352h847.296c50.944 0 92.288 41.344 92.288 92.352v355.648c-125.952-33.472-249.728-64.384-384-73.408v-18.432zM462.848 384h98.24c8.256 0 14.912 6.656 14.912 14.848v98.304c0 8.192-6.656 14.848-14.848 14.848h-98.304c-8.192 0-14.848-6.656-14.848-14.848v-98.24c0-8.256 6.656-14.912 14.848-14.912zM931.648 832h-227.648v20.864c0 60.352-29.504 107.136-89.856 107.136h-203.776c-60.352 0-90.368-46.784-90.368-107.136v-20.864h-235.328c-51.008 0-84.48-41.344-84.48-92.352v-144.256c125.952-33.472 249.6-73.664 383.808-82.688v12.864c0 28.608 22.464 51.712 51.008 51.712h154.112c28.544 0 50.88-23.104 50.88-51.712v-13.568c134.208 9.024 258.048 49.92 384 83.392v144.256c0 51.008-41.344 92.352-92.352 92.352zM640 832h-256v27.84c0 21.376 20.48 36.16 41.856 36.16h172.288c21.312 0 41.856-19.648 41.856-40.96v-23.040z" />
|
35 |
<glyph unicode="" glyph-name="latest-posts" d="M128.016 576.080h256.032v-64.008h-256.032v64.008zM128.016 448.064h128.016v-64.008h-128.016v64.008zM128.016 320.048h128.016v-64.008h-128.016v64.008zM128.016 704.096h512.064v-64.008h-512.064v64.008zM128.016 832.112h512.064v-64.008h-512.064v64.008zM768.096 626.518v234.525c0 54.663-43.141 99.084-96.14 99.084h-575.816c-52.999 0-96.14-44.486-96.14-99.084v-697.943c0-54.663 43.141-99.084 96.14-99.084h304.422c64.584-78.090 162.196-127.888 271.458-127.888 194.456 0 352.044 157.588 352.044 351.98 0.064 161.044-108.302 296.549-255.968 338.41zM96.14 128.024c-16.962 0-32.132 15.106-32.132 33.732v699.287c0 18.626 15.17 35.076 32.132 35.076h575.752c17.026 0 32.196-16.45 32.196-35.076v-222.556c-10.561 0.96-21.187 1.6-32.004 1.6-194.456 0-352.044-157.588-352.044-351.98 0-57.735 14.146-112.014 38.789-160.084h-262.689zM768.096 255.976h-128.016v256.032h64.008v-192.024h64.008v-64.008z" />
|
36 |
<glyph unicode="" glyph-name="limit-attempts" d="M990.208 314.24v55.104c0 50.88-42.432 78.656-94.144 78.656-51.776 0-93.696-27.776-93.696-78.656v-56.192c-17.28-0.96-34.368-9.728-34.368-26.944v-125.888c0-17.856 14.72-32.32 32.896-32.32h190.784c18.176 0 32.32 14.464 32.32 32.32v125.888c0 17.216-16.576 27.072-33.792 28.032zM926.016 182.016c-0.96-1.408-2.56-2.304-4.352-2.304h-51.392c-1.728 0-3.328 0.832-4.352 2.304-0.96 1.408-1.152 3.264-0.448 4.8l12.416 31.168c-6.592 5.312-10.496 13.248-10.496 21.696 0 15.488 12.8 28.032 28.544 28.032 15.68 0 28.544-12.608 28.544-28.032 0-8.448-3.904-16.384-10.496-21.696l12.416-31.168c0.768-1.6 0.576-3.392-0.384-4.8zM955.328 312.832h-119.168v56.512c0 25.6 34.304 44.864 60.416 44.864 26.048 0 58.752-19.2 58.752-44.864v-56.512zM315.008 460.8c-4.928-2.944-19.648-8.896-33.472-12.8 13.76-3.904 28.544-9.856 33.408-12.8 9.856-4.928 12.8-16.704 6.912-26.56s-16.704-12.8-26.56-6.912c-4.928 2.944-17.728 12.8-27.52 23.616 3.968-13.696 5.952-30.464 5.952-36.352 0-10.816-8.832-19.648-18.688-19.648s-18.688 8.832-18.688 19.648c0 5.888 1.984 22.592 5.888 36.352-9.856-10.816-22.592-20.672-27.52-23.616-7.872-5.824-19.712-2.88-24.576 6.912s-2.944 21.632 6.848 26.56c4.928 2.944 19.648 8.896 33.472 12.8-13.824 3.904-28.544 9.856-33.472 12.8-9.856 4.928-12.8 16.704-6.912 26.56 4.928 9.856 16.704 12.8 25.536 6.912 4.928-2.944 17.728-12.8 27.52-23.616-3.84 13.696-5.824 30.464-5.824 36.352 0 10.816 8.832 19.648 18.688 19.648s18.688-8.832 18.688-19.648c0-5.888-1.984-22.592-5.888-36.352 9.856 10.816 22.592 20.672 27.52 23.616 8.832 5.888 20.672 2.944 25.536-6.912 5.952-9.856 2.944-21.632-6.848-26.56zM507.008 460.8c-4.928-2.944-19.648-8.896-33.472-12.8 13.76-3.904 28.544-9.856 33.408-12.8 9.856-4.928 12.8-16.704 6.912-26.56s-16.704-12.8-26.56-6.912c-4.928 2.944-17.728 12.8-27.52 23.616 3.968-13.696 5.952-30.464 5.952-36.352 0-10.816-8.832-19.648-18.688-19.648s-18.688 8.832-18.688 19.648c0 5.888 1.984 22.592 5.888 36.352-9.856-10.816-22.592-20.672-27.52-23.616-7.872-5.824-19.712-2.88-24.576 6.912s-2.944 21.632 6.848 26.56c4.928 2.944 19.648 8.896 33.472 12.8-13.824 3.904-28.544 9.856-33.472 12.8-9.856 4.928-12.8 16.704-6.912 26.56 4.928 9.856 16.704 12.8 25.536 6.912 4.928-2.944 17.728-12.8 27.52-23.616-3.84 13.696-5.824 30.464-5.824 36.352 0 10.816 8.832 19.648 18.688 19.648s18.688-8.832 18.688-19.648c0-5.888-1.984-22.592-5.888-36.352 9.856 10.816 22.592 20.672 27.52 23.616 8.832 5.888 20.672 2.944 25.536-6.912 5.952-9.856 2.944-21.632-6.848-26.56zM699.008 460.8c-4.928-2.944-19.648-8.832-33.408-12.8 13.76-3.904 28.544-9.856 33.408-12.8 9.856-4.928 12.8-16.704 6.912-26.56s-16.704-12.8-26.56-6.912c-4.928 2.944-17.728 12.8-27.52 23.616 3.904-13.76 5.888-30.464 5.888-36.352 0-10.816-8.832-19.648-18.688-19.648s-18.688 8.832-18.688 19.648c0 5.888 1.984 22.592 5.888 36.352-9.856-10.816-22.592-20.672-27.52-23.616-7.872-5.824-19.712-2.88-24.576 6.912s-2.944 21.632 6.848 26.56c4.928 2.944 19.648 8.896 33.472 12.8-13.824 3.904-28.544 9.856-33.472 12.8-9.856 4.928-12.8 16.704-6.912 26.56 4.928 9.856 16.704 12.8 25.536 6.912 4.928-2.944 17.728-12.8 27.52-23.616-3.84 13.696-5.824 30.464-5.824 36.352 0 10.816 8.832 19.648 18.688 19.648s18.688-8.832 18.688-19.648c0-5.888-1.984-22.592-5.888-36.352 9.856 10.816 22.592 20.672 27.52 23.616 8.832 5.888 20.672 2.944 25.536-6.912 5.952-9.856 2.944-21.632-6.848-26.56zM704 320h-640v256h768v-64h64v48.448c0 43.904-36.736 79.552-81.92 79.552h-732.16c-5.632 0-11.136-0.576-16.448-1.6-2.688-0.576-5.312-1.216-7.872-1.984-33.344-10.112-57.6-40.32-57.6-75.968v0-224.96c0-32.896 20.672-61.184 50.112-73.28 4.928-1.984 10.048-3.584 15.36-4.672 5.312-0.96 10.816-1.536 16.448-1.536h622.080v64z" />
|
37 |
-
<glyph unicode="" glyph-name="linkedin" d="
|
38 |
<glyph unicode="" glyph-name="multilanguage" d="M152.64 228.224c0.128 0 17.28 0.32 23.616 4.032 16.128 10.048 37.888 34.752 56.96 57.152l5.952 6.912c24.192 27.712 48.704 59.776 73.024 95.552 4.48-3.328 10.368-7.872 15.168-11.584 9.408-7.168 18.816-14.4 22.912-17.024 9.088-5.952 43.904-24.96 52.224-28.672 1.472-0.576 3.84-1.536 6.592-2.688 17.152-7.168 26.368-10.624 32.192-10.624 6.336 0 9.728 3.968 10.816 7.68 1.216 4.736-3.136 38.784-14.72 42.56-3.776 1.408-71.232 28.992-81.216 33.6-5.76 2.816-17.472 7.68-27.136 11.712l-0.256 0.128c25.216 39.168 39.040 65.664 39.296 66.112 1.472 3.136 6.272 12.416 11.648 22.976 19.904 38.848 21.056 41.344 21.568 43.968 0.576 3.264 1.472 17.28 0.512 21.952l-2.752 8.128h-7.68c-3.584 0-7.232-1.472-13.312-3.84-3.584-1.472-7.936-3.136-12.8-4.736-7.168-2.368-16.64-7.296-25.728-12.16-8.512-4.48-19.136-10.048-23.808-10.816-7.424-1.728-24.832-7.808-41.664-13.696-6.848-2.432-13.312-4.672-18.368-6.4-16.192-5.44-46.976-14.4-60.288-17.92-6.336-1.728-12.352-2.688-17.536-3.456-5.632-0.896-10.56-1.728-14.208-2.944l-6.848-2.24 0.384-6.976c0.64-10.944 3.328-15.936 4.224-17.216 2.624-4.224 11.392-13.632 21.696-16 13.568-3.84 26.496-1.792 31.488-0.192 4.16 0.768 20.864 5.952 24.704 13.376 1.472 2.88 1.472 5.888 1.472 8.576 4.992 1.472 13.696 3.648 20.032 5.248 7.872 1.984 15.68 3.968 20.544 5.376l4.224 1.408c17.472 5.76 31.040 10.048 40.448 12.864-11.264-23.104-32.768-64.896-42.56-82.24-11.2-20.8-79.488-113.984-93.824-130.24-2.88-3.264-6.72-7.68-10.944-12.672-11.52-13.376-28.992-33.664-35.072-38.144l-12.16-8.896 13.568-6.656c1.92-0.896 4.16-1.28 7.616-1.28zM257.088 553.152l1.024-0.064c13.184 0 29.056 3.904 38.272 7.488 7.616 2.944 26.048 11.392 34.112 26.368 1.664 3.008 5.056 9.28 2.816 21.568-2.496 10.624-10.24 16.704-22.080 16.704h-0.128c-6.976-0.704-25.088-5.504-33.536-8.256l-4.544-1.28c-8.896-2.496-22.336-6.272-28.608-7.68-0.448-0.128-1.856-0.32-4.736-0.32-5.76 0-11.904 1.024-14.208 1.664l-1.984 1.92-10.24-0.192-2.432-5.44c-3.264-7.296 5.504-27.904 12.288-35.136 14.080-13.76 26.112-16.448 33.984-17.344zM706.496 35.776c-3.2-1.792-6.4-3.584-9.6-5.376-11.84-6.72-22.976-13.12-35.072-18.496-63.36-26.624-111.552-36.032-184.064-36.032-60.416 0-134.464 25.728-179.776 47.872-2.432 1.088-6.912 3.584-12.096 6.4-19.776 10.88-26.752 14.272-31.808 14.272-11.072 0-19.776-8.768-19.776-19.904 0-6.72 2.368-11.52 8.512-16.512 50.176-35.712 164.992-72 227.456-72h48.64c17.728 0 37.568 3.52 54.272 6.912 51.968 8.576 108.032 29.376 155.328 57.536l28.736-46.272 41.536 120.384-121.536 9.792 29.248-48.576zM684.672 446.912l80.512-23.744-36.48 128.512zM868.928 711.36v236.736c0 7.424-5.184 11.904-11.584 11.904-5.248 0-365.696-121.728-369.728-122.88l-323.328 112.128v-217.472c-49.28-16.448-84.608-27.776-86.4-28.288-3.456-1.152-8.128-2.304-11.584-6.272-1.152-1.152-1.728-3.904-2.304-5.632v-610.496c0-0.576 0.576-1.152 0.576-1.728 1.728-4.544 5.824-7.36 10.432-7.36 5.76 0 421.312 137.024 430.592 141.056 0 0 0.576 0 448.576-139.328v611.008l-85.248 26.624zM488.768 248.32l-383.424-123.328v539.2l383.424 131.968v-547.84zM827.584 902.656v-183.872l-294.592 85.824 294.592 98.048zM805.76 278.144l-21.44 76.48-122.304 36.8-26.048-62.272-59.072 17.536 125.184 303.552 57.984-17.536 104.896-372.096-59.2 17.536z" />
|
39 |
<glyph unicode="" glyph-name="pagination" d="M746.688 640v0h-234.688v-448h234.688c117.824 0 213.312 95.232 213.312 220.864 0 125.696-95.488 227.136-213.312 227.136zM814.464 384.448l-112.64-92.48c-6.656-5.568-14.848-8.512-23.552-8.512-12.416 0-24.064 6.4-31.232 17.024-11.84 17.728-8.448 41.984 7.744 55.168l74.176 60.928-71.936 60.032c-16 13.44-19.264 37.696-7.296 55.168 6.144 9.024 15.68 14.976 26.112 16.448 10.432 1.344 20.544-1.6 28.736-8.384l110.144-91.84c9.28-7.808 14.592-19.392 14.464-31.808 0.064-12.288-5.504-24.192-14.72-31.744zM0 412.864c0-125.632 95.488-220.864 213.312-220.864v0h234.688v448h-234.688c-117.824 0-213.312-101.44-213.312-227.136zM130.752 416.128c-0.064 12.416 5.184 24.064 14.528 31.872l110.144 91.904c8.192 6.784 18.304 9.664 28.736 8.32 10.432-1.472 19.904-7.424 26.112-16.448 11.904-17.536 8.704-41.728-7.296-55.168l-71.936-60.032 74.176-60.928c16.192-13.184 19.584-37.44 7.744-55.168-7.168-10.624-18.816-17.024-31.232-17.024-8.704 0-16.832 3.008-23.552 8.512l-112.64 92.48c-9.216 7.552-14.784 19.456-14.784 31.68z" />
|
40 |
<glyph unicode="" glyph-name="pdf-print" d="M960 704h-128v198.208c0 32.384-26.24 57.792-58.688 57.792h-522.624c-32.448 0-58.688-25.408-58.688-57.792v-198.208h-128c-35.328 0-64-28.672-64-64v-448c0-35.328 28.672-64 64-64h128v-134.784c0-31.616 25.6-57.216 57.216-57.216h525.568c31.616 0 57.216 25.6 57.216 57.216v134.784h128c35.328 0 64 28.672 64 64v448c0 35.328-28.672 64-64 64zM256 896h512v-192h-512v192zM768 128v-128h-512v192h512v-64zM768 512h-64v64h64v-64zM896 512h-64v64h64v-64z" />
|
@@ -46,7 +43,6 @@
|
|
46 |
<glyph unicode="" glyph-name="promobar" d="M972.8 832h-921.6c-20.288 0-51.2-30.72-51.2-51.2v-665.6c0-20.416 30.912-51.2 51.2-51.2h921.6c20.416 0 51.2 30.784 51.2 51.2v665.6c0 20.224-30.784 51.2-51.2 51.2zM320 768h64v-64h-64v64zM192 768h64v-64h-64v64zM64 768h64v-64h-64v64zM960 128h-896v512h896v-512zM128 576h768v-128h-768v128z" />
|
47 |
<glyph unicode="" glyph-name="quotes-and-tips" d="M448 64h-448v319.168l192 448.832h192l-127.936-384h191.936v-384zM1024 64h-448v319.168l192 448.832h192l-128-384h192v-384z" />
|
48 |
<glyph unicode="" glyph-name="rating" d="M1003.072 507.008l-218.752-194.752 72.96-296.512c16.192-50.752-40.512-101.568-89.152-67.648l-251.264 160.896-251.2-160.896c-40.512-33.92-105.344 8.384-89.152 67.648l64.832 296.512-218.88 194.752c-40.512 33.92-24.32 110.080 24.32 110.080l291.776 25.408 113.408 279.36c24.384 50.88 89.152 50.88 113.472 0l113.408-279.36 291.776-25.408c48.704-0.064 73.024-76.16 32.448-110.080z" />
|
49 |
-
<glyph unicode="" glyph-name="re-attacher" d="M700.8 495.936v-0.064c26.24-0.064 47.424-25.472 47.424-52.224 0-26.688-21.184-43.456-47.424-43.52h-377.856c-26.24 0-47.488 16.832-47.488 43.52 0 26.752 21.248 52.224 47.488 52.224h0.064v0.064h377.792zM300.032 256h-131.008c-93.312 0-169.024 91.136-169.024 196.416 0 105.152 75.712 187.584 169.024 187.584h131.008c64.768 0 121.024-35.584 149.376-95.936l-260.096-0.064c-49.92 0.064-90.368-42.048-90.432-90.752 0-48.64 40.448-101.248 90.432-101.248h260.992c-28.032-61.376-84.8-96-150.272-96zM852.096 256h-125.824c-65.472 0-122.24 34.624-150.272 96h260.48c49.92 0 90.432 52.608 90.368 101.248 0 48.704-40.448 90.816-90.432 90.816h-259.584c28.352 60.352 84.608 95.936 149.44 95.936h125.888c93.312 0 168.96-82.432 169.024-187.648-0.064-105.216-75.712-196.352-169.088-196.352z" />
|
50 |
<glyph unicode="" glyph-name="realty" d="M512 896l-256-256v192h-128v-320l-128-128h64v-384h512v320h192v-320h192v384h64z" />
|
51 |
<glyph unicode="" glyph-name="related-posts" d="M128 576h256v-64h-256v64zM128 448h128v-64h-128v64zM128 320h128v-64h-128v64zM128 704h512v-64h-512v64zM128 832h512v-64h-512v64zM768 626.432v234.496c0 54.592-43.136 99.072-96.128 99.072h-575.744c-52.992 0-96.128-44.48-96.128-99.072v-697.792c0-54.656 43.136-99.136 96.128-99.136h304.384c64.576-78.080 162.176-127.872 271.424-127.872 194.432 0 352 157.568 352 351.936 0.064 161.024-108.288 296.512-255.936 338.368zM358.784 128h-262.656c-16.96 0-32.128 15.104-32.128 33.728v699.2c0 18.624 15.168 35.072 32.128 35.072h575.68c17.024 0 32.192-16.448 32.192-35.072v-222.528c-10.56 0.96-21.184 1.6-32 1.6-194.432 0-352-157.568-352-351.936 0-57.728 14.144-112 38.784-160.064zM649.152 144.576c-3.52-0.384-7.040-0.576-10.624-0.576-0.064 0-0.128 0-0.256 0v0h-98.112c-68.544 0-124.16 58.368-124.16 132.928 0 2.304 0.256 4.544 0.384 6.784h-0.384c0.32 70.272 50.048 125.952 113.344 131.712 3.456 0.384 6.976 0.576 10.56 0.576 0.064 0 0.128 0 0.256 0v0h60.864c-20.736-18.048-36.928-41.536-47.040-68.48h-2.304c-2.816 0-5.632-0.256-8.384-0.576-32.704-5.056-58.048-38.848-58.048-70.656 0-34.496 29.696-63.808 66.432-63.808h75.136c2.816 0 5.632 0.256 8.32 0.576 32.704 5.056 58.048 38.912 58.048 70.656 0 3.328-0.384 6.592-0.896 9.792 4.352 8.64 14.080 14.912 24.832 14.912h43.008c1.472-8.192 2.24-16.64 2.24-25.344 0-2.304-0.256-4.544-0.384-6.784h0.384c-0.256-70.272-49.984-125.952-113.216-131.712zM814.656 144.96c-3.52-0.32-7.040-0.576-10.624-0.576-0.064 0-0.128 0-0.256 0v0h-60.864c20.736 18.048 36.928 41.536 47.040 68.48h2.368c2.816 0 5.632 0.256 8.384 0.576 32.704 5.056 58.048 38.848 58.048 70.656 0 34.496-29.696 63.808-66.432 63.808h-75.136c-2.816 0-5.632-0.256-8.384-0.576-32.704-5.056-58.048-38.912-58.048-70.656 0-3.328 0.384-6.592 0.896-9.792-4.352-8.64-14.080-14.912-24.832-14.912h-43.008c-1.408 8.192-2.24 16.64-2.24 25.344 0 2.304 0.256 4.544 0.384 6.784h-0.384c0.32 70.272 50.048 125.952 113.344 131.712 3.52 0.384 7.040 0.576 10.624 0.576 0.064 0 0.128 0 0.256 0v0h98.112c68.544 0 124.16-58.368 124.16-132.928 0-2.304-0.256-4.544-0.384-6.784h0.32c-0.32-70.272-50.048-125.952-113.344-131.712z" />
|
52 |
<glyph unicode="" glyph-name="sender" d="M704 320v-384h-384v384h-320l512 640 512-640h-320z" />
|
@@ -69,4 +65,6 @@
|
|
69 |
<glyph unicode="" glyph-name="shortcode" d="M0 896v-896h384v192h-192v512h192v192h-192zM832 896h-192v-192h192v-512h-192v-192h384v896z" />
|
70 |
<glyph unicode="" glyph-name="bws-logo" d="M953.913 325.746c-21.447-38.855-46.592-77.198-75.435-114.233-68.551-100.466-192.91-193.365-254.919-225.052-38.457-19.684-89.088-34.702-126.805-44.316 204.459-39.538 403.285 114.46 466.034 352.37 6.997 26.852 12.004 53.134 15.417 78.734-7.566-15.872-15.588-31.744-24.292-47.502zM327.964 88.519c-70.087 61.952-114.176 154.169-114.176 264.533 0 207.076 154.852 374.898 345.884 374.898 117.931 0 222.151-64.114 284.501-161.906 1.479 4.494 3.129 9.045 4.437 13.54 17.010 57.799 23.438 113.38 18.887 162.816-35.442 34.93-77.995 62.976-126.862 82.716-207.588 83.854-477.753-63.431-543.346-312.946-40.789-154.51-9.899-309.931 70.485-420.58 19.058-3.527 39.14-4.494 60.188-3.072zM934.059 893.611c-119.694 109.682-325.632 79.019-507.79-59.392 44.658 22.357 92.16 36.807 139.89 42.098 103.31 41.529 200.932 38.343 264.704-19.342 70.656-63.886 83.797-180.167 46.364-307.314-25.145-85.618-73.159-176.185-141.995-258.958-154.567-185.742-454.428-341.902-620.203-137.671 13.596-54.67 39.481-102.059 78.62-137.842 96.313-88.178 248.377-85.618 398.962-9.33 85.504 43.349 170.61 110.364 244.565 198.201 38.286 45.397 70.884 93.127 97.564 141.54 116.224 210.603 121.97 435.655-0.683 548.011zM791.211 595.854c-4.38 5.86-23.666 26.226-28.956 30.436-56.092 45.056-124.985 71.68-199.68 71.68-46.99 0-91.648-10.468-132.38-29.468 15.246-6.656 30.322-14.165 45.284-22.756 155.989-89.088 240.64-247.808 205.824-372.224 2.788 3.3 5.518 6.599 8.021 9.785 54.784 71.054 114.859 157.298 144.953 243.712-12.174 23.78-26.453 46.82-43.065 68.836zM24.007 593.977c-71.794-176.469 23.154-384.683 207.303-496.299-24.86 33.451-41.7 72.42-56.149 121.344-137.444 102.741-194.446 258.162-134.087 372.907 39.708 75.662 123.79 115.029 221.355 114.404 33.166 41.017 72.704 74.524 115.996 99.214-158.549 1.877-299.065-75.264-354.418-211.57zM263.794 453.632c0.569 10.524 1.593 20.935 3.015 31.118-12.857-32.768-20.821-68.608-22.642-106.268-5.86-116.224 46.99-220.615 130.219-278.983 38.059 4.38 74.638 16.213 108.601 34.418-132.096 32.939-226.93 166.059-219.193 319.716z" />
|
71 |
<glyph unicode="" glyph-name="warning" d="M508.992-64c-287.040 3.136-512.64 235.584-508.928 524.352 3.52 274.112 239.040 502.592 514.944 499.648 287.040-3.136 512.64-235.584 508.928-524.352-3.52-274.112-239.040-502.592-514.944-499.648zM424.128 768c-0.576-5.44 11.84-247.744 17.92-365.76 0.704-14.208 5.952-18.24 5.952-18.24h128c0 0 5.568 6.784 6.4 25.472 3.584 82.752 16.64 321.152 18.304 358.528-60.16 0-117.12 0-176.576 0zM507.136 319.872c-68.288-2.688-108.352-41.088-105.408-101.056 2.816-57.472 46.592-92.544 113.152-90.752 69.952 1.92 107.264 39.168 104.384 104.256-2.496 55.808-46.4 90.112-112.128 87.552z" />
|
|
|
|
|
72 |
</font></defs></svg>
|
16 |
<glyph unicode="" glyph-name="custom-admin-page" d="M1023.488 120.512c-0.128-6.592-2.56 14.080-8.768 22.656-13.632 18.752-35.2 32.448-68.608 45.12-57.408 21.696-71.040 29.312-71.040 29.312l-0.576 49.984c0 0 21.504 15.040 28.224 62.144 0 0 11.264 6.336 18.688 25.856 3.968 10.368 7.808 45.568-8.576 42.432 0 0 9.536 41.472-3.584 82.176-6.72 20.928-21.76 35.136-44.288 35.136-9.28 9.28-29.12 18.24-55.296 19.52h-0.192c-52.352-2.496-80-14.208-97.088-54.656-21.76-51.264-6.080-82.176-6.080-82.176-16.448 3.136-12.544-32.064-8.576-42.432 7.424-19.52 18.688-25.856 18.688-25.856 6.656-47.104 28.16-62.144 28.16-62.144l-0.576-49.984c0 0-13.632-7.552-71.040-29.312-33.344-12.672-54.912-26.304-68.608-45.12-6.208-8.64-8.896-16.128-8.768-22.656 1.216-3.264-3.84-54.656 18.176-55.616h398.912c14.848 0 10.816 19.712 10.816 55.616zM64 640h704v-64c37.632 14.656 37.568 11.52 64 0v194.624c0 32.32-28.992 61.376-61.376 61.376h-704.448c-32.384 0-66.176-31.68-66.176-64v-640c0-32.32 33.792-64 66.176-64h490.944c0 0-15.936 24.512 0 64h-493.12v512zM320 768h64v-64h-64v64zM192 768h64v-64h-64v64zM64 768h64v-64h-64v64zM552.32 156.928c0.256 0.576-0.32 0.832 0 0v0z" />
|
17 |
<glyph unicode="" glyph-name="custom-fields-search" d="M1018.56 78.592l-242.24 242.112c39.424 63.872 62.208 139.264 62.208 220.16 0 231.296-187.776 419.136-419.2 419.136-231.872 0-419.328-187.84-419.328-419.136 0-231.808 187.456-419.648 419.328-419.648 84.992 0 163.776 25.28 229.696 68.416l240.512-240.448c12.416-12.416 43.52-1.664 69.312 24l36.032 36.16c25.728 25.664 36.544 56.768 23.68 69.248zM419.264 260.544c-154.688 0-280.32 125.632-280.32 280.256 0 154.688 125.632 279.872 280.32 279.872s279.936-125.248 279.936-279.872c0-154.624-125.248-280.256-279.936-280.256zM461.888 384h-155.776c-9.984 0-18.112 8.128-18.112 18.112v27.776c0 9.984 8.128 18.112 18.112 18.112h155.712c10.048 0 18.176-8.128 18.176-18.112v-27.712c0-10.048-8.128-18.176-18.112-18.176zM525.888 576h-219.776c-9.984 0-18.112-8.128-18.112-18.112v-27.712c0-10.048 8.128-18.176 18.112-18.176h219.712c10.048 0 18.176 8.128 18.176 18.112v27.776c0 9.984-8.128 18.112-18.112 18.112zM525.888 704h-219.776c-9.984 0-18.112-8.128-18.112-18.112v-27.712c0-10.048 8.128-18.176 18.112-18.176h219.712c10.048 0 18.176 8.128 18.176 18.112v27.776c0 9.984-8.128 18.112-18.112 18.112z" />
|
18 |
<glyph unicode="" glyph-name="custom-search" d="M1018.56 65.728l-242.24 242.112c39.424 63.872 62.208 139.264 62.208 220.16 0 231.36-187.84 419.136-419.264 419.136-231.808 0-419.264-187.84-419.264-419.136 0-231.808 187.456-419.648 419.328-419.648 84.992 0 163.776 25.28 229.696 68.416l240.512-240.448c12.416-12.416 43.52-1.664 69.312 24l36.032 36.16c25.728 25.664 36.544 56.768 23.68 69.248zM419.264 247.744c-154.688 0-280.32 125.632-280.32 280.256 0 154.688 125.632 279.872 280.32 279.872s279.936-125.248 279.936-279.872c0-154.688-125.248-280.256-279.936-280.256z" />
|
|
|
19 |
<glyph unicode="" glyph-name="donate-button" d="M0 256h320v-320h384v320h320v384h-320v320h-384v-320h-320v-384z" />
|
|
|
20 |
<glyph unicode="" glyph-name="error-log-viewer" d="M576 960v-320h320zM448 352v-128c0-17.664 14.336-32 32-32s32 14.336 32 32v128c0 17.664-14.336 32-32 32s-32-14.336-32-32zM512 960h-384v-1024h768v640h-384v384zM352 128h-160v320h64v-256h96v-64zM640 352c0 52.992 43.008 96 96 96s96-43.008 96-96h-64c0 17.664-14.336 32-32 32s-32-14.336-32-32v-128c0-17.664 14.336-32 32-32s32 14.336 32 32v32h-32v64h96v-96c0-52.992-43.008-96-96-96s-96 43.008-96 96v128zM576 352v-128c0-52.992-43.008-96-96-96s-96 43.008-96 96v128c0 52.992 43.008 96 96 96s96-43.008 96-96z" />
|
21 |
<glyph unicode="" glyph-name="facebook-button" d="M748.864 771.584l-23.552 1.472-23.552 3.008-55.936 7.296h-3.008c-5.824 0-11.776-1.472-14.656-2.944l-11.84-5.824c-5.824-3.008-10.304-8.896-14.656-13.312-7.36-11.776-10.24-25.024-10.24-41.28 0-72.064 1.536-104.704 1.536-106.176l150.016-1.536-22.144-159.808-129.408-4.48v-512h-201.408v514.88h-120.832v162.112h116.352c1.472 0 4.48 45.312 4.48 143.872 0 7.36 0 11.84 0 19.2s0 14.72 0 22.016c1.472 7.36 1.472 13.248 2.944 20.672 1.472 7.296 4.48 14.656 7.36 20.544 8.832 27.968 21.76 50.048 42.304 69.184h-1.472l35.328 27.968c16.192 8.832 36.864 16.192 58.88 19.136l19.136 4.416c11.84 0 20.672 0 26.496 0l187.008-14.784-19.136-173.632z" />
|
22 |
<glyph unicode="" glyph-name="featured-posts" d="M128 576h256v-64h-256v64zM128 448h128v-64h-128v64zM128 320h128v-64h-128v64zM128 704h512v-64h-512v64zM128 832h512v-64h-512v64zM768 626.432v234.496c0 54.592-43.136 99.072-96.128 99.072h-575.744c-52.992 0-96.128-44.48-96.128-99.072v-697.792c0-54.656 43.136-99.136 96.128-99.136h304.384c64.576-78.080 162.176-127.872 271.424-127.872 194.432 0 352 157.568 352 351.936 0.064 161.024-108.288 296.512-255.936 338.368zM320 288.064c0-57.728 14.144-112 38.784-160.064h-262.656c-16.96 0-32.128 15.104-32.128 33.728v699.2c0 18.624 15.168 35.072 32.128 35.072h575.68c17.024 0 32.192-16.448 32.192-35.072v-222.528c-10.56 0.96-21.184 1.6-32 1.6-194.432 0-352-157.568-352-351.936zM917.76 317.504l-109.376-97.408 36.48-148.224c8.128-25.408-20.288-50.752-44.544-33.856l-125.632 80.448-125.568-80.448c-20.224-16.96-52.672 4.224-44.544 33.856l32.448 148.224-109.44 97.408c-20.224 16.96-12.16 55.040 12.16 55.040l145.856 12.736 56.704 139.712c12.16 25.472 44.608 25.472 56.768 0l56.704-139.712 145.856-12.736c24.256 0 36.416-38.080 16.128-55.040z" />
|
|
|
23 |
<glyph unicode="" glyph-name="gallery" d="M256-64h-256v256h256v-256zM256 320h-256v256h256v-256zM256 704h-256v256h256v-256zM640-64h-256v256h256v-256zM640 320h-256v256h256v-256zM640 704h-256v256h256v-256zM1024-64h-256v256h256v-256zM1024 320h-256v256h256v-256zM1024 704h-256v256h256v-256z" />
|
24 |
<glyph unicode="" glyph-name="google-analytics" d="M1024 489.728l-180.224 110.4c4.608 12.48 7.488 25.792 7.488 39.936 0 64-51.84 115.84-115.84 115.84s-115.84-51.904-115.84-115.84c0-30.4 11.968-57.792 31.040-78.464l-138.24-209.024c-11.904 4.16-24.512 6.848-37.824 6.848-32.192 0-61.248-13.12-82.24-34.304l-65.28 37.44c2.496 9.472 4.288 19.264 4.288 29.504 0 64-51.84 115.84-115.84 115.84s-115.84-51.904-115.84-115.84c0-22.016 6.464-42.368 17.088-59.84l-112.128-112.064c-0.32-0.448 39.616-39.616 40-40.064l112.448 112.448c17.216-10.112 36.992-16.32 58.432-16.32 33.344 0 63.168 14.272 84.288 36.8l64.192-36.8c-3.072-10.432-5.248-21.184-5.248-32.64 0-64 51.84-115.84 115.84-115.84s115.84 51.904 115.84 115.84c0 30.144-11.776 57.408-30.72 78.016l138.432 209.28c11.776-4.032 24.128-6.656 37.248-6.656 29.376 0 55.872 11.264 76.288 29.312l183.616-112.448 28.736 48.64z" />
|
25 |
<glyph unicode="" glyph-name="google-captcha" d="M960 640v255.232l-82.56-82.88c-93.056 91.264-220.864 147.648-361.984 147.648-284.672 0-515.456-229.184-515.456-512 0-282.752 230.784-512 515.456-512 141.44 0 269.504 56.576 362.624 148.224l-89.984 89.408c-70.080-68.736-166.4-111.168-272.64-111.168-214.336 0-388.16 172.608-388.16 385.6 0 212.928 173.76 385.536 388.16 385.536 106.176 0 202.432-42.368 272.512-111.040l-83.008-82.56h255.040zM512 480c0 52.992-43.008 96-96 96h-96v-320h64v128h21.248l42.752-128h64l-47.296 141.696c28.16 16.704 47.296 47.168 47.296 82.304zM384 511.232h32c17.664 0 32-14.336 32-32s-14.336-32-32-32h-32v64zM768 512v64h-192v-320h192v64h-128v64h64v64h-64v64z" />
|
31 |
<glyph unicode="" glyph-name="job-board" d="M640 356.16c0.064-28.608-12.864-36.16-41.408-36.16h-171.52c-28.608 0-43.072 7.552-43.072 36.16v18.432c-134.208 9.024-257.984 39.936-384 73.472v-355.712c0-51.008 33.472-92.352 84.416-92.352h847.296c50.944 0 92.288 41.344 92.288 92.352v355.648c-125.952-33.472-249.728-64.384-384-73.408v-18.432zM462.848 384h98.24c8.256 0 14.912 6.656 14.912 14.848v98.304c0 8.192-6.656 14.848-14.848 14.848h-98.304c-8.192 0-14.848-6.656-14.848-14.848v-98.24c0-8.256 6.656-14.912 14.848-14.912zM931.648 832h-227.648v20.864c0 60.352-29.504 107.136-89.856 107.136h-203.776c-60.352 0-90.368-46.784-90.368-107.136v-20.864h-235.328c-51.008 0-84.48-41.344-84.48-92.352v-144.256c125.952-33.472 249.6-73.664 383.808-82.688v12.864c0 28.608 22.464 51.712 51.008 51.712h154.112c28.544 0 50.88-23.104 50.88-51.712v-13.568c134.208 9.024 258.048 49.92 384 83.392v144.256c0 51.008-41.344 92.352-92.352 92.352zM640 832h-256v27.84c0 21.376 20.48 36.16 41.856 36.16h172.288c21.312 0 41.856-19.648 41.856-40.96v-23.040z" />
|
32 |
<glyph unicode="" glyph-name="latest-posts" d="M128.016 576.080h256.032v-64.008h-256.032v64.008zM128.016 448.064h128.016v-64.008h-128.016v64.008zM128.016 320.048h128.016v-64.008h-128.016v64.008zM128.016 704.096h512.064v-64.008h-512.064v64.008zM128.016 832.112h512.064v-64.008h-512.064v64.008zM768.096 626.518v234.525c0 54.663-43.141 99.084-96.14 99.084h-575.816c-52.999 0-96.14-44.486-96.14-99.084v-697.943c0-54.663 43.141-99.084 96.14-99.084h304.422c64.584-78.090 162.196-127.888 271.458-127.888 194.456 0 352.044 157.588 352.044 351.98 0.064 161.044-108.302 296.549-255.968 338.41zM96.14 128.024c-16.962 0-32.132 15.106-32.132 33.732v699.287c0 18.626 15.17 35.076 32.132 35.076h575.752c17.026 0 32.196-16.45 32.196-35.076v-222.556c-10.561 0.96-21.187 1.6-32.004 1.6-194.456 0-352.044-157.588-352.044-351.98 0-57.735 14.146-112.014 38.789-160.084h-262.689zM768.096 255.976h-128.016v256.032h64.008v-192.024h64.008v-64.008z" />
|
33 |
<glyph unicode="" glyph-name="limit-attempts" d="M990.208 314.24v55.104c0 50.88-42.432 78.656-94.144 78.656-51.776 0-93.696-27.776-93.696-78.656v-56.192c-17.28-0.96-34.368-9.728-34.368-26.944v-125.888c0-17.856 14.72-32.32 32.896-32.32h190.784c18.176 0 32.32 14.464 32.32 32.32v125.888c0 17.216-16.576 27.072-33.792 28.032zM926.016 182.016c-0.96-1.408-2.56-2.304-4.352-2.304h-51.392c-1.728 0-3.328 0.832-4.352 2.304-0.96 1.408-1.152 3.264-0.448 4.8l12.416 31.168c-6.592 5.312-10.496 13.248-10.496 21.696 0 15.488 12.8 28.032 28.544 28.032 15.68 0 28.544-12.608 28.544-28.032 0-8.448-3.904-16.384-10.496-21.696l12.416-31.168c0.768-1.6 0.576-3.392-0.384-4.8zM955.328 312.832h-119.168v56.512c0 25.6 34.304 44.864 60.416 44.864 26.048 0 58.752-19.2 58.752-44.864v-56.512zM315.008 460.8c-4.928-2.944-19.648-8.896-33.472-12.8 13.76-3.904 28.544-9.856 33.408-12.8 9.856-4.928 12.8-16.704 6.912-26.56s-16.704-12.8-26.56-6.912c-4.928 2.944-17.728 12.8-27.52 23.616 3.968-13.696 5.952-30.464 5.952-36.352 0-10.816-8.832-19.648-18.688-19.648s-18.688 8.832-18.688 19.648c0 5.888 1.984 22.592 5.888 36.352-9.856-10.816-22.592-20.672-27.52-23.616-7.872-5.824-19.712-2.88-24.576 6.912s-2.944 21.632 6.848 26.56c4.928 2.944 19.648 8.896 33.472 12.8-13.824 3.904-28.544 9.856-33.472 12.8-9.856 4.928-12.8 16.704-6.912 26.56 4.928 9.856 16.704 12.8 25.536 6.912 4.928-2.944 17.728-12.8 27.52-23.616-3.84 13.696-5.824 30.464-5.824 36.352 0 10.816 8.832 19.648 18.688 19.648s18.688-8.832 18.688-19.648c0-5.888-1.984-22.592-5.888-36.352 9.856 10.816 22.592 20.672 27.52 23.616 8.832 5.888 20.672 2.944 25.536-6.912 5.952-9.856 2.944-21.632-6.848-26.56zM507.008 460.8c-4.928-2.944-19.648-8.896-33.472-12.8 13.76-3.904 28.544-9.856 33.408-12.8 9.856-4.928 12.8-16.704 6.912-26.56s-16.704-12.8-26.56-6.912c-4.928 2.944-17.728 12.8-27.52 23.616 3.968-13.696 5.952-30.464 5.952-36.352 0-10.816-8.832-19.648-18.688-19.648s-18.688 8.832-18.688 19.648c0 5.888 1.984 22.592 5.888 36.352-9.856-10.816-22.592-20.672-27.52-23.616-7.872-5.824-19.712-2.88-24.576 6.912s-2.944 21.632 6.848 26.56c4.928 2.944 19.648 8.896 33.472 12.8-13.824 3.904-28.544 9.856-33.472 12.8-9.856 4.928-12.8 16.704-6.912 26.56 4.928 9.856 16.704 12.8 25.536 6.912 4.928-2.944 17.728-12.8 27.52-23.616-3.84 13.696-5.824 30.464-5.824 36.352 0 10.816 8.832 19.648 18.688 19.648s18.688-8.832 18.688-19.648c0-5.888-1.984-22.592-5.888-36.352 9.856 10.816 22.592 20.672 27.52 23.616 8.832 5.888 20.672 2.944 25.536-6.912 5.952-9.856 2.944-21.632-6.848-26.56zM699.008 460.8c-4.928-2.944-19.648-8.832-33.408-12.8 13.76-3.904 28.544-9.856 33.408-12.8 9.856-4.928 12.8-16.704 6.912-26.56s-16.704-12.8-26.56-6.912c-4.928 2.944-17.728 12.8-27.52 23.616 3.904-13.76 5.888-30.464 5.888-36.352 0-10.816-8.832-19.648-18.688-19.648s-18.688 8.832-18.688 19.648c0 5.888 1.984 22.592 5.888 36.352-9.856-10.816-22.592-20.672-27.52-23.616-7.872-5.824-19.712-2.88-24.576 6.912s-2.944 21.632 6.848 26.56c4.928 2.944 19.648 8.896 33.472 12.8-13.824 3.904-28.544 9.856-33.472 12.8-9.856 4.928-12.8 16.704-6.912 26.56 4.928 9.856 16.704 12.8 25.536 6.912 4.928-2.944 17.728-12.8 27.52-23.616-3.84 13.696-5.824 30.464-5.824 36.352 0 10.816 8.832 19.648 18.688 19.648s18.688-8.832 18.688-19.648c0-5.888-1.984-22.592-5.888-36.352 9.856 10.816 22.592 20.672 27.52 23.616 8.832 5.888 20.672 2.944 25.536-6.912 5.952-9.856 2.944-21.632-6.848-26.56zM704 320h-640v256h768v-64h64v48.448c0 43.904-36.736 79.552-81.92 79.552h-732.16c-5.632 0-11.136-0.576-16.448-1.6-2.688-0.576-5.312-1.216-7.872-1.984-33.344-10.112-57.6-40.32-57.6-75.968v0-224.96c0-32.896 20.672-61.184 50.112-73.28 4.928-1.984 10.048-3.584 15.36-4.672 5.312-0.96 10.816-1.536 16.448-1.536h622.080v64z" />
|
34 |
+
<glyph unicode="" glyph-name="linkedin" d="M269.24 106.785h-191.248v574.196h191.195v-574.196zM252.106 787.621c-19.861-18.972-46.059-28.369-78.492-28.369h-1.168c-31.651 0-57.186 9.455-76.491 28.369s-28.981 42.5-28.981 70.648c0 28.594 9.959 52.237 29.815 70.982 19.914 18.746 45.894 28.091 77.991 28.091 32.042 0 57.741-9.402 77.046-28.091 19.303-18.746 29.151-42.389 29.536-70.982 0.391-28.148-9.346-51.733-29.259-70.648zM957.026 106.785h-190.637v307.123c0 40.555-7.844 72.318-23.476 95.292-15.688 22.973-40.051 34.434-73.317 34.434-24.368 0-44.728-6.677-61.136-19.969s-28.647-29.815-36.769-49.511c-4.285-11.568-6.4-27.202-6.4-46.949v-320.418h-190.637c0.778 154.145 1.168 279.142 1.168 374.934s-0.167 152.977-0.612 171.446l-0.556 27.814h190.637v-81.774c7.342 11.682 14.851 21.974 22.587 30.761 8.122 9.29 19.024 19.303 32.767 30.149 13.74 10.792 30.54 19.192 50.401 25.2 19.914 6.008 42.057 9.012 66.364 9.012 66.085 0 119.155-21.918 159.376-65.751 40.164-43.836 60.246-108.086 60.246-192.642v-329.152z" />
|
35 |
<glyph unicode="" glyph-name="multilanguage" d="M152.64 228.224c0.128 0 17.28 0.32 23.616 4.032 16.128 10.048 37.888 34.752 56.96 57.152l5.952 6.912c24.192 27.712 48.704 59.776 73.024 95.552 4.48-3.328 10.368-7.872 15.168-11.584 9.408-7.168 18.816-14.4 22.912-17.024 9.088-5.952 43.904-24.96 52.224-28.672 1.472-0.576 3.84-1.536 6.592-2.688 17.152-7.168 26.368-10.624 32.192-10.624 6.336 0 9.728 3.968 10.816 7.68 1.216 4.736-3.136 38.784-14.72 42.56-3.776 1.408-71.232 28.992-81.216 33.6-5.76 2.816-17.472 7.68-27.136 11.712l-0.256 0.128c25.216 39.168 39.040 65.664 39.296 66.112 1.472 3.136 6.272 12.416 11.648 22.976 19.904 38.848 21.056 41.344 21.568 43.968 0.576 3.264 1.472 17.28 0.512 21.952l-2.752 8.128h-7.68c-3.584 0-7.232-1.472-13.312-3.84-3.584-1.472-7.936-3.136-12.8-4.736-7.168-2.368-16.64-7.296-25.728-12.16-8.512-4.48-19.136-10.048-23.808-10.816-7.424-1.728-24.832-7.808-41.664-13.696-6.848-2.432-13.312-4.672-18.368-6.4-16.192-5.44-46.976-14.4-60.288-17.92-6.336-1.728-12.352-2.688-17.536-3.456-5.632-0.896-10.56-1.728-14.208-2.944l-6.848-2.24 0.384-6.976c0.64-10.944 3.328-15.936 4.224-17.216 2.624-4.224 11.392-13.632 21.696-16 13.568-3.84 26.496-1.792 31.488-0.192 4.16 0.768 20.864 5.952 24.704 13.376 1.472 2.88 1.472 5.888 1.472 8.576 4.992 1.472 13.696 3.648 20.032 5.248 7.872 1.984 15.68 3.968 20.544 5.376l4.224 1.408c17.472 5.76 31.040 10.048 40.448 12.864-11.264-23.104-32.768-64.896-42.56-82.24-11.2-20.8-79.488-113.984-93.824-130.24-2.88-3.264-6.72-7.68-10.944-12.672-11.52-13.376-28.992-33.664-35.072-38.144l-12.16-8.896 13.568-6.656c1.92-0.896 4.16-1.28 7.616-1.28zM257.088 553.152l1.024-0.064c13.184 0 29.056 3.904 38.272 7.488 7.616 2.944 26.048 11.392 34.112 26.368 1.664 3.008 5.056 9.28 2.816 21.568-2.496 10.624-10.24 16.704-22.080 16.704h-0.128c-6.976-0.704-25.088-5.504-33.536-8.256l-4.544-1.28c-8.896-2.496-22.336-6.272-28.608-7.68-0.448-0.128-1.856-0.32-4.736-0.32-5.76 0-11.904 1.024-14.208 1.664l-1.984 1.92-10.24-0.192-2.432-5.44c-3.264-7.296 5.504-27.904 12.288-35.136 14.080-13.76 26.112-16.448 33.984-17.344zM706.496 35.776c-3.2-1.792-6.4-3.584-9.6-5.376-11.84-6.72-22.976-13.12-35.072-18.496-63.36-26.624-111.552-36.032-184.064-36.032-60.416 0-134.464 25.728-179.776 47.872-2.432 1.088-6.912 3.584-12.096 6.4-19.776 10.88-26.752 14.272-31.808 14.272-11.072 0-19.776-8.768-19.776-19.904 0-6.72 2.368-11.52 8.512-16.512 50.176-35.712 164.992-72 227.456-72h48.64c17.728 0 37.568 3.52 54.272 6.912 51.968 8.576 108.032 29.376 155.328 57.536l28.736-46.272 41.536 120.384-121.536 9.792 29.248-48.576zM684.672 446.912l80.512-23.744-36.48 128.512zM868.928 711.36v236.736c0 7.424-5.184 11.904-11.584 11.904-5.248 0-365.696-121.728-369.728-122.88l-323.328 112.128v-217.472c-49.28-16.448-84.608-27.776-86.4-28.288-3.456-1.152-8.128-2.304-11.584-6.272-1.152-1.152-1.728-3.904-2.304-5.632v-610.496c0-0.576 0.576-1.152 0.576-1.728 1.728-4.544 5.824-7.36 10.432-7.36 5.76 0 421.312 137.024 430.592 141.056 0 0 0.576 0 448.576-139.328v611.008l-85.248 26.624zM488.768 248.32l-383.424-123.328v539.2l383.424 131.968v-547.84zM827.584 902.656v-183.872l-294.592 85.824 294.592 98.048zM805.76 278.144l-21.44 76.48-122.304 36.8-26.048-62.272-59.072 17.536 125.184 303.552 57.984-17.536 104.896-372.096-59.2 17.536z" />
|
36 |
<glyph unicode="" glyph-name="pagination" d="M746.688 640v0h-234.688v-448h234.688c117.824 0 213.312 95.232 213.312 220.864 0 125.696-95.488 227.136-213.312 227.136zM814.464 384.448l-112.64-92.48c-6.656-5.568-14.848-8.512-23.552-8.512-12.416 0-24.064 6.4-31.232 17.024-11.84 17.728-8.448 41.984 7.744 55.168l74.176 60.928-71.936 60.032c-16 13.44-19.264 37.696-7.296 55.168 6.144 9.024 15.68 14.976 26.112 16.448 10.432 1.344 20.544-1.6 28.736-8.384l110.144-91.84c9.28-7.808 14.592-19.392 14.464-31.808 0.064-12.288-5.504-24.192-14.72-31.744zM0 412.864c0-125.632 95.488-220.864 213.312-220.864v0h234.688v448h-234.688c-117.824 0-213.312-101.44-213.312-227.136zM130.752 416.128c-0.064 12.416 5.184 24.064 14.528 31.872l110.144 91.904c8.192 6.784 18.304 9.664 28.736 8.32 10.432-1.472 19.904-7.424 26.112-16.448 11.904-17.536 8.704-41.728-7.296-55.168l-71.936-60.032 74.176-60.928c16.192-13.184 19.584-37.44 7.744-55.168-7.168-10.624-18.816-17.024-31.232-17.024-8.704 0-16.832 3.008-23.552 8.512l-112.64 92.48c-9.216 7.552-14.784 19.456-14.784 31.68z" />
|
37 |
<glyph unicode="" glyph-name="pdf-print" d="M960 704h-128v198.208c0 32.384-26.24 57.792-58.688 57.792h-522.624c-32.448 0-58.688-25.408-58.688-57.792v-198.208h-128c-35.328 0-64-28.672-64-64v-448c0-35.328 28.672-64 64-64h128v-134.784c0-31.616 25.6-57.216 57.216-57.216h525.568c31.616 0 57.216 25.6 57.216 57.216v134.784h128c35.328 0 64 28.672 64 64v448c0 35.328-28.672 64-64 64zM256 896h512v-192h-512v192zM768 128v-128h-512v192h512v-64zM768 512h-64v64h64v-64zM896 512h-64v64h64v-64z" />
|
43 |
<glyph unicode="" glyph-name="promobar" d="M972.8 832h-921.6c-20.288 0-51.2-30.72-51.2-51.2v-665.6c0-20.416 30.912-51.2 51.2-51.2h921.6c20.416 0 51.2 30.784 51.2 51.2v665.6c0 20.224-30.784 51.2-51.2 51.2zM320 768h64v-64h-64v64zM192 768h64v-64h-64v64zM64 768h64v-64h-64v64zM960 128h-896v512h896v-512zM128 576h768v-128h-768v128z" />
|
44 |
<glyph unicode="" glyph-name="quotes-and-tips" d="M448 64h-448v319.168l192 448.832h192l-127.936-384h191.936v-384zM1024 64h-448v319.168l192 448.832h192l-128-384h192v-384z" />
|
45 |
<glyph unicode="" glyph-name="rating" d="M1003.072 507.008l-218.752-194.752 72.96-296.512c16.192-50.752-40.512-101.568-89.152-67.648l-251.264 160.896-251.2-160.896c-40.512-33.92-105.344 8.384-89.152 67.648l64.832 296.512-218.88 194.752c-40.512 33.92-24.32 110.080 24.32 110.080l291.776 25.408 113.408 279.36c24.384 50.88 89.152 50.88 113.472 0l113.408-279.36 291.776-25.408c48.704-0.064 73.024-76.16 32.448-110.080z" />
|
|
|
46 |
<glyph unicode="" glyph-name="realty" d="M512 896l-256-256v192h-128v-320l-128-128h64v-384h512v320h192v-320h192v384h64z" />
|
47 |
<glyph unicode="" glyph-name="related-posts" d="M128 576h256v-64h-256v64zM128 448h128v-64h-128v64zM128 320h128v-64h-128v64zM128 704h512v-64h-512v64zM128 832h512v-64h-512v64zM768 626.432v234.496c0 54.592-43.136 99.072-96.128 99.072h-575.744c-52.992 0-96.128-44.48-96.128-99.072v-697.792c0-54.656 43.136-99.136 96.128-99.136h304.384c64.576-78.080 162.176-127.872 271.424-127.872 194.432 0 352 157.568 352 351.936 0.064 161.024-108.288 296.512-255.936 338.368zM358.784 128h-262.656c-16.96 0-32.128 15.104-32.128 33.728v699.2c0 18.624 15.168 35.072 32.128 35.072h575.68c17.024 0 32.192-16.448 32.192-35.072v-222.528c-10.56 0.96-21.184 1.6-32 1.6-194.432 0-352-157.568-352-351.936 0-57.728 14.144-112 38.784-160.064zM649.152 144.576c-3.52-0.384-7.040-0.576-10.624-0.576-0.064 0-0.128 0-0.256 0v0h-98.112c-68.544 0-124.16 58.368-124.16 132.928 0 2.304 0.256 4.544 0.384 6.784h-0.384c0.32 70.272 50.048 125.952 113.344 131.712 3.456 0.384 6.976 0.576 10.56 0.576 0.064 0 0.128 0 0.256 0v0h60.864c-20.736-18.048-36.928-41.536-47.040-68.48h-2.304c-2.816 0-5.632-0.256-8.384-0.576-32.704-5.056-58.048-38.848-58.048-70.656 0-34.496 29.696-63.808 66.432-63.808h75.136c2.816 0 5.632 0.256 8.32 0.576 32.704 5.056 58.048 38.912 58.048 70.656 0 3.328-0.384 6.592-0.896 9.792 4.352 8.64 14.080 14.912 24.832 14.912h43.008c1.472-8.192 2.24-16.64 2.24-25.344 0-2.304-0.256-4.544-0.384-6.784h0.384c-0.256-70.272-49.984-125.952-113.216-131.712zM814.656 144.96c-3.52-0.32-7.040-0.576-10.624-0.576-0.064 0-0.128 0-0.256 0v0h-60.864c20.736 18.048 36.928 41.536 47.040 68.48h2.368c2.816 0 5.632 0.256 8.384 0.576 32.704 5.056 58.048 38.848 58.048 70.656 0 34.496-29.696 63.808-66.432 63.808h-75.136c-2.816 0-5.632-0.256-8.384-0.576-32.704-5.056-58.048-38.912-58.048-70.656 0-3.328 0.384-6.592 0.896-9.792-4.352-8.64-14.080-14.912-24.832-14.912h-43.008c-1.408 8.192-2.24 16.64-2.24 25.344 0 2.304 0.256 4.544 0.384 6.784h-0.384c0.32 70.272 50.048 125.952 113.344 131.712 3.52 0.384 7.040 0.576 10.624 0.576 0.064 0 0.128 0 0.256 0v0h98.112c68.544 0 124.16-58.368 124.16-132.928 0-2.304-0.256-4.544-0.384-6.784h0.32c-0.32-70.272-50.048-125.952-113.344-131.712z" />
|
48 |
<glyph unicode="" glyph-name="sender" d="M704 320v-384h-384v384h-320l512 640 512-640h-320z" />
|
65 |
<glyph unicode="" glyph-name="shortcode" d="M0 896v-896h384v192h-192v512h192v192h-192zM832 896h-192v-192h192v-512h-192v-192h384v896z" />
|
66 |
<glyph unicode="" glyph-name="bws-logo" d="M953.913 325.746c-21.447-38.855-46.592-77.198-75.435-114.233-68.551-100.466-192.91-193.365-254.919-225.052-38.457-19.684-89.088-34.702-126.805-44.316 204.459-39.538 403.285 114.46 466.034 352.37 6.997 26.852 12.004 53.134 15.417 78.734-7.566-15.872-15.588-31.744-24.292-47.502zM327.964 88.519c-70.087 61.952-114.176 154.169-114.176 264.533 0 207.076 154.852 374.898 345.884 374.898 117.931 0 222.151-64.114 284.501-161.906 1.479 4.494 3.129 9.045 4.437 13.54 17.010 57.799 23.438 113.38 18.887 162.816-35.442 34.93-77.995 62.976-126.862 82.716-207.588 83.854-477.753-63.431-543.346-312.946-40.789-154.51-9.899-309.931 70.485-420.58 19.058-3.527 39.14-4.494 60.188-3.072zM934.059 893.611c-119.694 109.682-325.632 79.019-507.79-59.392 44.658 22.357 92.16 36.807 139.89 42.098 103.31 41.529 200.932 38.343 264.704-19.342 70.656-63.886 83.797-180.167 46.364-307.314-25.145-85.618-73.159-176.185-141.995-258.958-154.567-185.742-454.428-341.902-620.203-137.671 13.596-54.67 39.481-102.059 78.62-137.842 96.313-88.178 248.377-85.618 398.962-9.33 85.504 43.349 170.61 110.364 244.565 198.201 38.286 45.397 70.884 93.127 97.564 141.54 116.224 210.603 121.97 435.655-0.683 548.011zM791.211 595.854c-4.38 5.86-23.666 26.226-28.956 30.436-56.092 45.056-124.985 71.68-199.68 71.68-46.99 0-91.648-10.468-132.38-29.468 15.246-6.656 30.322-14.165 45.284-22.756 155.989-89.088 240.64-247.808 205.824-372.224 2.788 3.3 5.518 6.599 8.021 9.785 54.784 71.054 114.859 157.298 144.953 243.712-12.174 23.78-26.453 46.82-43.065 68.836zM24.007 593.977c-71.794-176.469 23.154-384.683 207.303-496.299-24.86 33.451-41.7 72.42-56.149 121.344-137.444 102.741-194.446 258.162-134.087 372.907 39.708 75.662 123.79 115.029 221.355 114.404 33.166 41.017 72.704 74.524 115.996 99.214-158.549 1.877-299.065-75.264-354.418-211.57zM263.794 453.632c0.569 10.524 1.593 20.935 3.015 31.118-12.857-32.768-20.821-68.608-22.642-106.268-5.86-116.224 46.99-220.615 130.219-278.983 38.059 4.38 74.638 16.213 108.601 34.418-132.096 32.939-226.93 166.059-219.193 319.716z" />
|
67 |
<glyph unicode="" glyph-name="warning" d="M508.992-64c-287.040 3.136-512.64 235.584-508.928 524.352 3.52 274.112 239.040 502.592 514.944 499.648 287.040-3.136 512.64-235.584 508.928-524.352-3.52-274.112-239.040-502.592-514.944-499.648zM424.128 768c-0.576-5.44 11.84-247.744 17.92-365.76 0.704-14.208 5.952-18.24 5.952-18.24h128c0 0 5.568 6.784 6.4 25.472 3.584 82.752 16.64 321.152 18.304 358.528-60.16 0-117.12 0-176.576 0zM507.136 319.872c-68.288-2.688-108.352-41.088-105.408-101.056 2.816-57.472 46.592-92.544 113.152-90.752 69.952 1.92 107.264 39.168 104.384 104.256-2.496 55.808-46.4 90.112-112.128 87.552z" />
|
68 |
+
<glyph unicode="" glyph-name="google-2-step-verification" d="M640 440.128c0 19.136-1.728 37.376-5.184 55.616h-308.032v-114.688h184.704c-13.632-92.224-98.752-143.424-184.704-143.424-113.152 0-203.328 95.552-203.328 210.304 0 114.688 90.176 210.304 203.328 210.304 47.616 0 95.36-16.576 130.24-51.328l88.448 87.808c-60.416 57.472-136.128 86.976-218.688 86.976-181.248 0-326.784-149.44-326.784-333.696s145.536-333.696 326.784-333.696c188.032 0 313.216 135.552 313.216 325.824zM970.688 522.304v52.352c0 66.24-43.584 115.648-106.688 115.648s-106.688-49.408-106.688-115.648v-53.696c-20.992-1.28-53.312-12.736-53.312-35.136v-201.408c0-23.232 25.792-42.112 47.872-42.112h232.704c22.144 0 39.424 18.816 39.424 42.112v201.408c0 22.4-32.32 35.2-53.312 36.48zM916.608 310.656c1.28-2.752 0.896-5.888-0.768-8.384s-4.416-3.968-7.488-3.968h-88.704c-3.008 0-5.76 1.472-7.488 3.968-1.6 2.432-1.92 5.632-0.768 8.384l21.44 69.376c-11.328 9.216-22.144 23.104-22.144 37.76 0 26.88 26.112 48.832 53.312 48.832 27.136 0 53.312-21.952 53.312-48.832 0-14.656-10.816-28.544-22.144-37.76l21.44-69.376zM917.312 522.304h-106.688v52.352c0 33.344 21.504 58.432 53.312 58.432 31.744 0 53.312-25.024 53.312-58.432v-52.352z" />
|
69 |
+
<glyph unicode="" glyph-name="slider" d="M768 704h-512c-26.432 0-64-37.568-64-64v-448c0-26.432 37.568-64 64-64h512c26.432 0 64 37.568 64 64v448c0 26.432-37.568 64-64 64zM640 330.24c0-5.632-3.2-10.24-7.040-10.24h-241.92c-3.84 0-7.040 4.608-7.040 10.24v43.52c0 5.632 3.2 10.24 7.040 10.24h241.92c3.84 0 7.040-4.608 7.040-10.24v-43.52zM707.008 458.688c0-5.888-4.8-10.688-10.56-10.688h-365.888c-5.824 0-10.56 4.8-10.56 10.688v42.624c0 5.888 4.736 10.688 10.56 10.688h365.824c5.824 0 10.56-4.8 10.56-10.688v-42.624zM1020.352 424.704l-85.312 83.904c-4.608 4.48-11.776 4.48-16.32 0l-19.072-18.752c-2.368-2.304-3.648-5.44-3.648-8.704 0-3.328 1.28-6.4 3.648-8.704l57.344-56.448-57.344-56.384c-2.368-2.304-3.648-5.44-3.648-8.768s1.28-6.4 3.648-8.704l19.072-18.752c2.304-2.24 5.248-3.392 8.192-3.392s5.888 1.152 8.192 3.392l85.312 83.904c2.304 2.304 3.584 5.376 3.584 8.704s-1.28 6.4-3.648 8.704zM128 481.152c0 3.328-1.28 6.4-3.648 8.704l-19.072 18.752c-4.608 4.48-11.776 4.544-16.32 0l-85.312-83.904c-2.368-2.304-3.648-5.376-3.648-8.704s1.28-6.4 3.648-8.704l85.312-83.904c2.24-2.24 5.184-3.392 8.128-3.392s5.888 1.152 8.192 3.392l19.072 18.752c2.368 2.304 3.648 5.44 3.648 8.704s-1.28 6.4-3.648 8.704l-57.344 56.448 57.344 56.384c2.368 2.304 3.648 5.44 3.648 8.768z" />
|
70 |
</font></defs></svg>
|
bws_menu/fonts/bwsicons.ttf
CHANGED
Binary file
|
bws_menu/fonts/bwsicons.woff
CHANGED
Binary file
|
bws_menu/icons/plugins/captcha.png
ADDED
Binary file
|
bws_menu/icons/plugins/db-manager.png
DELETED
Binary file
|
bws_menu/js/general_script.js
CHANGED
@@ -69,6 +69,11 @@ function bws_show_settings_notice() {
|
|
69 |
|
70 |
/* help tooltips */
|
71 |
if ( $( '.bws_help_box' ).length > 0 ) {
|
|
|
|
|
|
|
|
|
|
|
72 |
$( document ).tooltip( {
|
73 |
items: $( '.bws_help_box' ),
|
74 |
content: function() {
|
@@ -76,6 +81,7 @@ function bws_show_settings_notice() {
|
|
76 |
},
|
77 |
show: null, /* show immediately */
|
78 |
tooltipClass: "bws-tooltip-content",
|
|
|
79 |
open: function( event, ui ) {
|
80 |
if ( typeof( event.originalEvent ) === 'undefined' ) {
|
81 |
return false;
|
69 |
|
70 |
/* help tooltips */
|
71 |
if ( $( '.bws_help_box' ).length > 0 ) {
|
72 |
+
if ( $( 'body' ).hasClass( 'rtl' ) ) {
|
73 |
+
var current_position = { my: "right top+15", at: "right bottom" };
|
74 |
+
} else {
|
75 |
+
var current_position = { my: "left top+15", at: "left bottom" };
|
76 |
+
}
|
77 |
$( document ).tooltip( {
|
78 |
items: $( '.bws_help_box' ),
|
79 |
content: function() {
|
81 |
},
|
82 |
show: null, /* show immediately */
|
83 |
tooltipClass: "bws-tooltip-content",
|
84 |
+
position: current_position,
|
85 |
open: function( event, ui ) {
|
86 |
if ( typeof( event.originalEvent ) === 'undefined' ) {
|
87 |
return false;
|
bws_menu/languages/bestwebsoft-cs_CZ.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-cs_CZ.po
CHANGED
@@ -2,15 +2,15 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-03
|
6 |
-
"PO-Revision-Date: 2017-03
|
7 |
"Last-Translator: Mik013\n"
|
8 |
"Language-Team: Mik013\n"
|
9 |
"Language: cs_CZ\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Generator: Poedit 1.8.7.1\n"
|
@@ -48,9 +48,9 @@ msgstr "Ohodnoťte jej"
|
|
48 |
msgid "Need help?"
|
49 |
msgstr "Potřebujete pomoc?"
|
50 |
|
51 |
-
#: bws_functions.php:103 bws_functions.php:
|
52 |
msgid "Visit Help Center"
|
53 |
-
msgstr "
|
54 |
|
55 |
#: bws_functions.php:106
|
56 |
msgid "Want to support the plugin?"
|
@@ -58,7 +58,7 @@ msgstr "Chcete podpořit plugin?"
|
|
58 |
|
59 |
#: bws_functions.php:107 bws_menu.php:553
|
60 |
msgid "Donate"
|
61 |
-
msgstr "
|
62 |
|
63 |
#: bws_functions.php:127
|
64 |
msgid "WARNING: Illegal use notification"
|
@@ -125,7 +125,7 @@ msgstr ""
|
|
125 |
#: bws_functions.php:207
|
126 |
#, php-format
|
127 |
msgid "Thank you for installing %s plugin!"
|
128 |
-
msgstr ""
|
129 |
|
130 |
#: bws_functions.php:208
|
131 |
msgid "Let's get started"
|
@@ -146,7 +146,7 @@ msgid "Add New"
|
|
146 |
msgstr "Přidat nový"
|
147 |
|
148 |
#: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
|
149 |
-
#: bws_functions.php:378 bws_functions.php:
|
150 |
msgid "Close notice"
|
151 |
msgstr "Zavřít poznámku"
|
152 |
|
@@ -197,12 +197,12 @@ msgstr ""
|
|
197 |
"Váš licenční klíč pro %s vyprší dne %s a nebudou vám poskytovány TOP-"
|
198 |
"PRIOROTNÍ PODPORA a AKTUALIZACE."
|
199 |
|
200 |
-
#: bws_functions.php:
|
201 |
#, php-format
|
202 |
msgid "Thank you for choosing %s plugin!"
|
203 |
-
msgstr ""
|
204 |
|
205 |
-
#: bws_functions.php:
|
206 |
msgid ""
|
207 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
208 |
"we'd love to hear about it!"
|
@@ -210,90 +210,98 @@ msgstr ""
|
|
210 |
"Máte-li nápad, nebo doporučení na novou vlastnost, kterou by jste v pluginu "
|
211 |
"chtěli vidět, rádi o něm uslyšíme!"
|
212 |
|
213 |
-
#: bws_functions.php:
|
214 |
msgid "Suggest a Feature"
|
215 |
msgstr "Navrhnout vlastnost"
|
216 |
|
217 |
-
#: bws_functions.php:
|
218 |
#: class-bws-settings.php:584 class-bws-settings.php:587
|
219 |
msgid "Notice"
|
220 |
msgstr "Poznámka"
|
221 |
|
222 |
-
#: bws_functions.php:
|
223 |
msgid "The plugin's settings have been changed."
|
224 |
msgstr "Nastavení pluginu bylo změněno."
|
225 |
|
226 |
-
#: bws_functions.php:
|
227 |
#: deprecated.php:640
|
228 |
msgid "Save Changes"
|
229 |
msgstr "Uložit změny"
|
230 |
|
231 |
-
#: bws_functions.php:
|
232 |
msgid ""
|
233 |
"You can always look at premium options by checking the \"Pro Options\" in "
|
234 |
"the \"Misc\" tab."
|
235 |
msgstr ""
|
236 |
"Vždy se můžete podívat na možnosti prémiové verze, kliknutím na \"PRO "
|
237 |
-
"nastavení\" na \"Go PRO\" záložce"
|
|
|
|
|
|
|
|
|
238 |
|
239 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
240 |
msgid "Add shortcode"
|
241 |
msgstr "Přidat krátký kód"
|
242 |
|
243 |
-
#: bws_functions.php:
|
244 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
245 |
msgstr ""
|
246 |
"Pomocí tohoto tlačítka můžete přidávat krátké kódy BestWebSoft pluginu."
|
247 |
|
248 |
-
#: bws_functions.php:
|
249 |
msgid "Close"
|
250 |
msgstr "Zavřít"
|
251 |
|
252 |
-
#: bws_functions.php:
|
253 |
msgid "Are you sure you want to restore default settings?"
|
254 |
msgstr "Jste si jisti, že chcete obnovit výchozí nastavení?"
|
255 |
|
256 |
-
#: bws_functions.php:
|
257 |
msgid "Yes, restore all settings"
|
258 |
msgstr "Ano, obnovit veškerá nastavení"
|
259 |
|
260 |
-
#: bws_functions.php:
|
261 |
msgid "No, go back to the settings page"
|
262 |
msgstr "Ne, vrátit se zpět na stránku nastavení"
|
263 |
|
264 |
-
#: bws_functions.php:
|
265 |
msgid "Plugin"
|
266 |
msgstr "Plugin"
|
267 |
|
268 |
-
#: bws_functions.php:
|
269 |
msgid "Shortcode settings"
|
270 |
msgstr "Nastavení krátkých kódů"
|
271 |
|
272 |
-
#: bws_functions.php:
|
273 |
msgid "The shortcode will be inserted"
|
274 |
msgstr "Bude vložen krátký kód"
|
275 |
|
276 |
-
#: bws_functions.php:
|
277 |
msgid "Insert"
|
278 |
msgstr "Vložit"
|
279 |
|
280 |
-
#: bws_functions.php:
|
281 |
msgid "FAQ"
|
282 |
msgstr "Často kladené otázky (FAQ)"
|
283 |
|
284 |
-
#: bws_functions.php:
|
285 |
msgid "For more information:"
|
286 |
msgstr "Pro více informací:"
|
287 |
|
288 |
-
#: bws_functions.php:
|
289 |
msgid "Documentation"
|
290 |
msgstr "Dokumentace"
|
291 |
|
292 |
-
#: bws_functions.php:
|
293 |
msgid "Video Instructions"
|
294 |
msgstr "Video instrukce"
|
295 |
|
296 |
-
#: bws_functions.php:
|
297 |
msgid "Submit a Request"
|
298 |
msgstr "Odeslat požadavek"
|
299 |
|
@@ -320,7 +328,7 @@ msgstr "Omlouváme se za nepříjemnosti."
|
|
320 |
#: bws_menu.php:128 class-bws-settings.php:813 class-bws-settings.php:916
|
321 |
#: deprecated.php:139 deprecated.php:358
|
322 |
msgid "Wrong license key."
|
323 |
-
msgstr "Neplatný licenční
|
324 |
|
325 |
#: bws_menu.php:130
|
326 |
msgid ""
|
@@ -357,7 +365,7 @@ msgstr ""
|
|
357 |
|
358 |
#: bws_menu.php:142 class-bws-settings.php:828 deprecated.php:153
|
359 |
msgid "The license key is valid."
|
360 |
-
msgstr "Licenční klíč je
|
361 |
|
362 |
#: bws_menu.php:144 class-bws-settings.php:831 deprecated.php:156
|
363 |
msgid "Your license will expire on"
|
@@ -623,7 +631,7 @@ msgstr "Stahování instalačního balíčku z"
|
|
623 |
#: class-bws-settings.php:992 deprecated.php:387 deprecated.php:409
|
624 |
#: deprecated.php:431
|
625 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
626 |
-
msgstr "Stažení zip archivu selhalo. Prosíme, nahrajte plugin
|
627 |
|
628 |
#: bws_menu.php:408
|
629 |
msgid "Unpacking the package"
|
@@ -635,7 +643,7 @@ msgstr "Instalace pluginu"
|
|
635 |
|
636 |
#: bws_menu.php:417 class-bws-settings.php:960 deprecated.php:399
|
637 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
638 |
-
msgstr "Otevření zip archivu selhalo. Prosíme, nahrajte plugin
|
639 |
|
640 |
#: bws_menu.php:424 class-bws-settings.php:966 deprecated.php:405
|
641 |
msgid ""
|
@@ -781,7 +789,7 @@ msgstr "Verze"
|
|
781 |
|
782 |
#: class-bws-settings.php:282
|
783 |
msgid "All plugin settings were restored."
|
784 |
-
msgstr "Všechna nastavení pluginu byla obnovena"
|
785 |
|
786 |
#: class-bws-settings.php:420
|
787 |
msgid "Custom Code"
|
@@ -893,7 +901,7 @@ msgstr "Gratulujeme! PRO licence byla úspěšně aktivována."
|
|
893 |
#: class-bws-settings.php:715
|
894 |
#, php-format
|
895 |
msgid "You will be automatically redirected to the %s in %s seconds."
|
896 |
-
msgstr ""
|
897 |
|
898 |
#: class-bws-settings.php:715
|
899 |
msgid "Settings page"
|
@@ -970,7 +978,7 @@ msgstr ""
|
|
970 |
|
971 |
#: class-bws-settings.php:826 deprecated.php:151
|
972 |
msgid "The Pro Trial license key is valid."
|
973 |
-
msgstr "Licenční klíč zkušební Pro verze je
|
974 |
|
975 |
#: class-bws-settings.php:834 deprecated.php:159 deprecated.php:246
|
976 |
#, php-format
|
@@ -1005,7 +1013,7 @@ msgstr "Stav systému"
|
|
1005 |
|
1006 |
#: deprecated.php:204
|
1007 |
msgid "Please, enter your license key"
|
1008 |
-
msgstr "Prosím, vložte váš licenční
|
1009 |
|
1010 |
#: deprecated.php:223
|
1011 |
msgid ""
|
@@ -1060,7 +1068,7 @@ msgstr "Zkontrolujte prémiové možnosti na stránce nastavení pluginů!"
|
|
1060 |
|
1061 |
#: deprecated.php:478
|
1062 |
msgid "Restore all plugin settings to defaults"
|
1063 |
-
msgstr "Obnovit veškerá nastavení pluginu na výchozí hodnoty
|
1064 |
|
1065 |
#: deprecated.php:480
|
1066 |
msgid "Restore settings"
|
@@ -1102,173 +1110,443 @@ msgid "version of the plugin."
|
|
1102 |
msgstr "verze pluginu."
|
1103 |
|
1104 |
#: product_list.php:7
|
1105 |
-
msgid "
|
1106 |
-
msgstr "
|
1107 |
|
1108 |
#: product_list.php:8
|
1109 |
-
msgid "Content
|
1110 |
-
msgstr "Obsah
|
1111 |
|
1112 |
#: product_list.php:9
|
1113 |
-
msgid "
|
1114 |
-
msgstr "
|
1115 |
|
1116 |
#: product_list.php:10
|
1117 |
-
msgid "
|
1118 |
-
msgstr "
|
1119 |
|
1120 |
#: product_list.php:11
|
1121 |
-
msgid "
|
1122 |
-
msgstr "
|
1123 |
|
1124 |
#: product_list.php:12
|
1125 |
-
msgid "
|
1126 |
-
msgstr "
|
1127 |
|
1128 |
#: product_list.php:13
|
1129 |
-
msgid "
|
1130 |
-
msgstr "
|
1131 |
|
1132 |
#: product_list.php:14
|
1133 |
-
msgid "
|
1134 |
-
msgstr "
|
1135 |
|
1136 |
#: product_list.php:15
|
1137 |
-
msgid "
|
1138 |
-
msgstr "
|
1139 |
|
1140 |
-
|
1141 |
-
|
|
|
|
|
|
|
1142 |
|
1143 |
-
|
1144 |
-
|
|
|
1145 |
|
1146 |
-
|
1147 |
-
|
1148 |
-
|
1149 |
-
|
1150 |
-
|
1151 |
-
|
1152 |
-
|
1153 |
-
#~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
1154 |
-
#~ msgstr ""
|
1155 |
-
#~ "Pokud se Vám náš plugin líbí, dejte mu prosím 5 hvězdiček na WordPressu"
|
1156 |
-
|
1157 |
-
#~ msgid "Rate the plugin"
|
1158 |
-
#~ msgstr "Hodnotit plugin"
|
1159 |
-
|
1160 |
-
#~ msgid "If there is something wrong about it, please contact us"
|
1161 |
-
#~ msgstr "Pokud cokoli není v pořádku, obraťte se na nás"
|
1162 |
-
|
1163 |
-
#~ msgid "Donations play an important role in supporting great projects"
|
1164 |
-
#~ msgstr "Dary hrají důležitou roli v podpoře velkých projektů"
|
1165 |
-
|
1166 |
-
#~ msgid "This license key is bind to another site"
|
1167 |
-
#~ msgstr "Tento licenční klíč se váže k jinému webu"
|
1168 |
-
|
1169 |
-
#~ msgid ""
|
1170 |
-
#~ "Unfortunately, Your license has expired. To continue getting top-priority "
|
1171 |
-
#~ "support and plugin updates you should extend it in your"
|
1172 |
-
#~ msgstr ""
|
1173 |
-
#~ "Bohužel, Vaše licence vypršela. Chcete-li pokračovat v získávání top-"
|
1174 |
-
#~ "prioritní podpory a aktualizace pluginu měli byste ji prodloužit ve vašem"
|
1175 |
-
|
1176 |
-
#~ msgid ""
|
1177 |
-
#~ "Congratulations! Pro version of the plugin is successfully installed and "
|
1178 |
-
#~ "activated."
|
1179 |
-
#~ msgstr ""
|
1180 |
-
#~ "Gratulujeme! PRO verze pluginu byla úspěšně instalována a aktivována."
|
1181 |
-
|
1182 |
-
#~ msgid "After that you can activate it by entering your license key."
|
1183 |
-
#~ msgstr "Poté, co jej aktivujete vložením vašeho licenčního klíče."
|
1184 |
-
|
1185 |
-
#~ msgid ""
|
1186 |
-
#~ "Congratulations! The Pro license of the plugin is successfully activated."
|
1187 |
-
#~ msgstr "Gratulujeme! PRO licence pluginu je úspěšně aktivována."
|
1188 |
-
|
1189 |
-
#~ msgid "This license key is bind to another site."
|
1190 |
-
#~ msgstr "Tento licenční klíč je přidružen k jiným webovým stránkám."
|
1191 |
-
|
1192 |
-
#~ msgid ""
|
1193 |
-
#~ "If needed you can check if the license key is correct or reenter it in "
|
1194 |
-
#~ "the field below. You can find your license key on your personal page - "
|
1195 |
-
#~ "Client area - on our website"
|
1196 |
-
#~ msgstr ""
|
1197 |
-
#~ "V případě potřeby zkontrolujte, je-li licenční klíč správně zadán, "
|
1198 |
-
#~ "případně jej do pole níže vložte znova. Váš licenční klíč najdete na vaší "
|
1199 |
-
#~ "osobní stránce - Client area - na našem webu"
|
1200 |
-
|
1201 |
-
#~ msgid ""
|
1202 |
-
#~ "Notice: Your Pro Trial license has expired. To continue using the plugin "
|
1203 |
-
#~ "you should buy a Pro license"
|
1204 |
-
#~ msgstr ""
|
1205 |
-
#~ "Poznámka: Vaše zkušební Pro verze pluginu vypršela. Pro další využíváni "
|
1206 |
-
#~ "pluginu bude nutné zakoupit Pro licenci"
|
1207 |
-
|
1208 |
-
#~ msgid ""
|
1209 |
-
#~ "Your license has expired. To continue getting top-priority support and "
|
1210 |
-
#~ "plugin updates you should extend it."
|
1211 |
-
#~ msgstr ""
|
1212 |
-
#~ "Vaše licence vypršela. Pro přístup k top-prioritní podpoře a aktualizacím "
|
1213 |
-
#~ "pluginu ji budete muset prodloužit."
|
1214 |
-
|
1215 |
-
#~ msgid "You license for"
|
1216 |
-
#~ msgstr "Vaše licence pro"
|
1217 |
-
|
1218 |
-
#~ msgid "expires on"
|
1219 |
-
#~ msgstr "vyprší"
|
1220 |
-
|
1221 |
-
#~ msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
1222 |
-
#~ msgstr "a nebudete mít přístup k TOP-PRIORITNÍ PODPOŘE nebo AKTUALIZACÍM."
|
1223 |
-
|
1224 |
-
#~ msgid ""
|
1225 |
-
#~ "You can always look at premium options by clicking on the \"Show Pro "
|
1226 |
-
#~ "features\" in the \"Go PRO\" tab"
|
1227 |
-
#~ msgstr ""
|
1228 |
-
#~ "Vždy se můžete podívat na možnosti prémiové verze, kliknutím na "
|
1229 |
-
#~ "\"Zobrazit Pro vlastnosti\" na \"Go PRO\" záložce"
|
1230 |
-
|
1231 |
-
#~ msgid "Are you sure you want to restore all settings by default?"
|
1232 |
-
#~ msgstr ""
|
1233 |
-
#~ "Jste si jisti, že chcete obnovit veškerá nastavení na výchozí hodnoty?"
|
1234 |
-
|
1235 |
-
#~ msgid ""
|
1236 |
-
#~ "This license key is bind to another website. Change it via personal "
|
1237 |
-
#~ "Client Area."
|
1238 |
-
#~ msgstr ""
|
1239 |
-
#~ "Tento licenční klíč je přidružen k jiným webovým stránkám. Změňte jej "
|
1240 |
-
#~ "prostřednictvím osobní Klientské zóny."
|
1241 |
-
|
1242 |
-
#~ msgid "Congratulations! Pro Membership license is successfully activated."
|
1243 |
-
#~ msgstr "Gratulujeme! Členská PRO licence byla úspěšně aktivována."
|
1244 |
-
|
1245 |
-
#~ msgid "Memory usage"
|
1246 |
-
#~ msgstr "Využití paměti"
|
1247 |
-
|
1248 |
-
#~ msgid "MYSQL Version"
|
1249 |
-
#~ msgstr "Verze MYSQL"
|
1250 |
-
|
1251 |
-
#~ msgid "Site URL"
|
1252 |
-
#~ msgstr "URL webových stránek"
|
1253 |
-
|
1254 |
-
#~ msgid "WordPress Version"
|
1255 |
-
#~ msgstr "Verze WordPress"
|
1256 |
-
|
1257 |
-
#~ msgid "WordPress DB Version"
|
1258 |
-
#~ msgstr "WordPress verze DB"
|
1259 |
|
1260 |
-
|
1261 |
-
|
1262 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1263 |
|
1264 |
-
#~ msgid "
|
1265 |
-
#~ msgstr "
|
1266 |
|
1267 |
-
#~ msgid "
|
1268 |
-
#~ msgstr "
|
1269 |
|
1270 |
-
#~ msgid "
|
1271 |
-
#~ msgstr "
|
1272 |
|
1273 |
-
#~ msgid "
|
1274 |
-
#~ msgstr "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-07-03 13:18+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-07-03 13:18+0300\n"
|
7 |
"Last-Translator: Mik013\n"
|
8 |
"Language-Team: Mik013\n"
|
9 |
"Language: cs_CZ\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Generator: Poedit 1.8.7.1\n"
|
48 |
msgid "Need help?"
|
49 |
msgstr "Potřebujete pomoc?"
|
50 |
|
51 |
+
#: bws_functions.php:103 bws_functions.php:920 class-bws-settings.php:1047
|
52 |
msgid "Visit Help Center"
|
53 |
+
msgstr "Navštivte Centrum pomoci"
|
54 |
|
55 |
#: bws_functions.php:106
|
56 |
msgid "Want to support the plugin?"
|
58 |
|
59 |
#: bws_functions.php:107 bws_menu.php:553
|
60 |
msgid "Donate"
|
61 |
+
msgstr "Darujte"
|
62 |
|
63 |
#: bws_functions.php:127
|
64 |
msgid "WARNING: Illegal use notification"
|
125 |
#: bws_functions.php:207
|
126 |
#, php-format
|
127 |
msgid "Thank you for installing %s plugin!"
|
128 |
+
msgstr "Děkujeme vám za instalaci %s pluginu!"
|
129 |
|
130 |
#: bws_functions.php:208
|
131 |
msgid "Let's get started"
|
146 |
msgstr "Přidat nový"
|
147 |
|
148 |
#: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
|
149 |
+
#: bws_functions.php:378 bws_functions.php:480
|
150 |
msgid "Close notice"
|
151 |
msgstr "Zavřít poznámku"
|
152 |
|
197 |
"Váš licenční klíč pro %s vyprší dne %s a nebudou vám poskytovány TOP-"
|
198 |
"PRIOROTNÍ PODPORA a AKTUALIZACE."
|
199 |
|
200 |
+
#: bws_functions.php:475
|
201 |
#, php-format
|
202 |
msgid "Thank you for choosing %s plugin!"
|
203 |
+
msgstr "Děkujeme, že jste si vybrali %s plugin!"
|
204 |
|
205 |
+
#: bws_functions.php:476
|
206 |
msgid ""
|
207 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
208 |
"we'd love to hear about it!"
|
210 |
"Máte-li nápad, nebo doporučení na novou vlastnost, kterou by jste v pluginu "
|
211 |
"chtěli vidět, rádi o něm uslyšíme!"
|
212 |
|
213 |
+
#: bws_functions.php:477
|
214 |
msgid "Suggest a Feature"
|
215 |
msgstr "Navrhnout vlastnost"
|
216 |
|
217 |
+
#: bws_functions.php:493 class-bws-settings.php:533 class-bws-settings.php:536
|
218 |
#: class-bws-settings.php:584 class-bws-settings.php:587
|
219 |
msgid "Notice"
|
220 |
msgstr "Poznámka"
|
221 |
|
222 |
+
#: bws_functions.php:493
|
223 |
msgid "The plugin's settings have been changed."
|
224 |
msgstr "Nastavení pluginu bylo změněno."
|
225 |
|
226 |
+
#: bws_functions.php:494 class-bws-settings.php:182 class-bws-settings.php:202
|
227 |
#: deprecated.php:640
|
228 |
msgid "Save Changes"
|
229 |
msgstr "Uložit změny"
|
230 |
|
231 |
+
#: bws_functions.php:508
|
232 |
msgid ""
|
233 |
"You can always look at premium options by checking the \"Pro Options\" in "
|
234 |
"the \"Misc\" tab."
|
235 |
msgstr ""
|
236 |
"Vždy se můžete podívat na možnosti prémiové verze, kliknutím na \"PRO "
|
237 |
+
"nastavení\" na \"Go PRO\" záložce."
|
238 |
+
|
239 |
+
#: bws_functions.php:642
|
240 |
+
msgid "Add BWS Shortcode"
|
241 |
+
msgstr "Přidávejte zkrácený kód BWS"
|
242 |
|
243 |
+
#: bws_functions.php:643
|
244 |
+
msgid "Add BWS Plugins Shortcode"
|
245 |
+
msgstr "Přidávejte zkrácený kód BWS pluginů"
|
246 |
+
|
247 |
+
#: bws_functions.php:662
|
248 |
msgid "Add shortcode"
|
249 |
msgstr "Přidat krátký kód"
|
250 |
|
251 |
+
#: bws_functions.php:662
|
252 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
253 |
msgstr ""
|
254 |
"Pomocí tohoto tlačítka můžete přidávat krátké kódy BestWebSoft pluginu."
|
255 |
|
256 |
+
#: bws_functions.php:708
|
257 |
msgid "Close"
|
258 |
msgstr "Zavřít"
|
259 |
|
260 |
+
#: bws_functions.php:800
|
261 |
msgid "Are you sure you want to restore default settings?"
|
262 |
msgstr "Jste si jisti, že chcete obnovit výchozí nastavení?"
|
263 |
|
264 |
+
#: bws_functions.php:803
|
265 |
msgid "Yes, restore all settings"
|
266 |
msgstr "Ano, obnovit veškerá nastavení"
|
267 |
|
268 |
+
#: bws_functions.php:804
|
269 |
msgid "No, go back to the settings page"
|
270 |
msgstr "Ne, vrátit se zpět na stránku nastavení"
|
271 |
|
272 |
+
#: bws_functions.php:846
|
273 |
msgid "Plugin"
|
274 |
msgstr "Plugin"
|
275 |
|
276 |
+
#: bws_functions.php:855
|
277 |
msgid "Shortcode settings"
|
278 |
msgstr "Nastavení krátkých kódů"
|
279 |
|
280 |
+
#: bws_functions.php:860
|
281 |
msgid "The shortcode will be inserted"
|
282 |
msgstr "Bude vložen krátký kód"
|
283 |
|
284 |
+
#: bws_functions.php:865
|
285 |
msgid "Insert"
|
286 |
msgstr "Vložit"
|
287 |
|
288 |
+
#: bws_functions.php:925
|
289 |
msgid "FAQ"
|
290 |
msgstr "Často kladené otázky (FAQ)"
|
291 |
|
292 |
+
#: bws_functions.php:931
|
293 |
msgid "For more information:"
|
294 |
msgstr "Pro více informací:"
|
295 |
|
296 |
+
#: bws_functions.php:932
|
297 |
msgid "Documentation"
|
298 |
msgstr "Dokumentace"
|
299 |
|
300 |
+
#: bws_functions.php:933
|
301 |
msgid "Video Instructions"
|
302 |
msgstr "Video instrukce"
|
303 |
|
304 |
+
#: bws_functions.php:934
|
305 |
msgid "Submit a Request"
|
306 |
msgstr "Odeslat požadavek"
|
307 |
|
328 |
#: bws_menu.php:128 class-bws-settings.php:813 class-bws-settings.php:916
|
329 |
#: deprecated.php:139 deprecated.php:358
|
330 |
msgid "Wrong license key."
|
331 |
+
msgstr "Neplatný licenční klíč."
|
332 |
|
333 |
#: bws_menu.php:130
|
334 |
msgid ""
|
365 |
|
366 |
#: bws_menu.php:142 class-bws-settings.php:828 deprecated.php:153
|
367 |
msgid "The license key is valid."
|
368 |
+
msgstr "Licenční klíč je platný."
|
369 |
|
370 |
#: bws_menu.php:144 class-bws-settings.php:831 deprecated.php:156
|
371 |
msgid "Your license will expire on"
|
631 |
#: class-bws-settings.php:992 deprecated.php:387 deprecated.php:409
|
632 |
#: deprecated.php:431
|
633 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
634 |
+
msgstr "Stažení zip archivu selhalo. Prosíme, nahrajte plugin ručně"
|
635 |
|
636 |
#: bws_menu.php:408
|
637 |
msgid "Unpacking the package"
|
643 |
|
644 |
#: bws_menu.php:417 class-bws-settings.php:960 deprecated.php:399
|
645 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
646 |
+
msgstr "Otevření zip archivu selhalo. Prosíme, nahrajte plugin ručně"
|
647 |
|
648 |
#: bws_menu.php:424 class-bws-settings.php:966 deprecated.php:405
|
649 |
msgid ""
|
789 |
|
790 |
#: class-bws-settings.php:282
|
791 |
msgid "All plugin settings were restored."
|
792 |
+
msgstr "Všechna nastavení pluginu byla obnovena."
|
793 |
|
794 |
#: class-bws-settings.php:420
|
795 |
msgid "Custom Code"
|
901 |
#: class-bws-settings.php:715
|
902 |
#, php-format
|
903 |
msgid "You will be automatically redirected to the %s in %s seconds."
|
904 |
+
msgstr "Za %s sekund budete automaticky přesměrováni na %s."
|
905 |
|
906 |
#: class-bws-settings.php:715
|
907 |
msgid "Settings page"
|
978 |
|
979 |
#: class-bws-settings.php:826 deprecated.php:151
|
980 |
msgid "The Pro Trial license key is valid."
|
981 |
+
msgstr "Licenční klíč zkušební Pro verze je platný."
|
982 |
|
983 |
#: class-bws-settings.php:834 deprecated.php:159 deprecated.php:246
|
984 |
#, php-format
|
1013 |
|
1014 |
#: deprecated.php:204
|
1015 |
msgid "Please, enter your license key"
|
1016 |
+
msgstr "Prosím, vložte váš licenční klíč"
|
1017 |
|
1018 |
#: deprecated.php:223
|
1019 |
msgid ""
|
1068 |
|
1069 |
#: deprecated.php:478
|
1070 |
msgid "Restore all plugin settings to defaults"
|
1071 |
+
msgstr "Obnovit veškerá nastavení pluginu na výchozí hodnoty"
|
1072 |
|
1073 |
#: deprecated.php:480
|
1074 |
msgid "Restore settings"
|
1110 |
msgstr "verze pluginu."
|
1111 |
|
1112 |
#: product_list.php:7
|
1113 |
+
msgid "Admin Tools"
|
1114 |
+
msgstr "Administrační nástroje"
|
1115 |
|
1116 |
#: product_list.php:8
|
1117 |
+
msgid "Content"
|
1118 |
+
msgstr "Obsah"
|
1119 |
|
1120 |
#: product_list.php:9
|
1121 |
+
msgid "eCommerce"
|
1122 |
+
msgstr "eCommerce"
|
1123 |
|
1124 |
#: product_list.php:10
|
1125 |
+
msgid "Marketing"
|
1126 |
+
msgstr "Marketing"
|
1127 |
|
1128 |
#: product_list.php:11
|
1129 |
+
msgid "Navigation"
|
1130 |
+
msgstr "Navigace"
|
1131 |
|
1132 |
#: product_list.php:12
|
1133 |
+
msgid "Recommended"
|
1134 |
+
msgstr "Doporučeno"
|
1135 |
|
1136 |
#: product_list.php:13
|
1137 |
+
msgid "Security"
|
1138 |
+
msgstr "Bezpečnost"
|
1139 |
|
1140 |
#: product_list.php:14
|
1141 |
+
msgid "SEO"
|
1142 |
+
msgstr "SEO"
|
1143 |
|
1144 |
#: product_list.php:15
|
1145 |
+
msgid "SMM"
|
1146 |
+
msgstr "SMM"
|
1147 |
|
1148 |
+
#: product_list.php:22
|
1149 |
+
msgid ""
|
1150 |
+
"Protect WordPress website forms from spam entries by means of math logic."
|
1151 |
+
msgstr ""
|
1152 |
+
"Chraňte WordPress webové formuláře před spamem pomocí matematické logiky."
|
1153 |
|
1154 |
+
#: product_list.php:32
|
1155 |
+
msgid "Create your personal car rental/booking and reservation website."
|
1156 |
+
msgstr "Vytvořte si osobní rezervační web - auta/hotely."
|
1157 |
|
1158 |
+
#: product_list.php:42
|
1159 |
+
msgid ""
|
1160 |
+
"Allow customers to reach you using secure contact form plugin any website "
|
1161 |
+
"must have."
|
1162 |
+
msgstr ""
|
1163 |
+
"Umožněte zákazníkům kontaktovat vás pomocí pluginu zabezpečeného kontaktního "
|
1164 |
+
"formuláře, tohle musí mít každý web."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1165 |
|
1166 |
+
#: product_list.php:52
|
1167 |
+
msgid "Add unlimited number of contact forms to WordPress website."
|
1168 |
+
msgstr "Přidávejte neomezený počet kontaktních formulářů na WordPress web."
|
1169 |
+
|
1170 |
+
#: product_list.php:62
|
1171 |
+
msgid "Save and manage Contact Form messages. Never lose important data."
|
1172 |
+
msgstr ""
|
1173 |
+
"Ukládejte a spravujte zprávy z kontaktního formuláře. Už nikdy neztraťte "
|
1174 |
+
"důležitá data."
|
1175 |
+
|
1176 |
+
#: product_list.php:72
|
1177 |
+
msgid "Add unlimited custom pages to WordPress admin dashboard."
|
1178 |
+
msgstr ""
|
1179 |
+
"Přidávejte neomezený počet vlastních stránek do WordPress admin nástěnky."
|
1180 |
+
|
1181 |
+
#: product_list.php:79
|
1182 |
+
msgid "Add custom fields to WordPress website search results."
|
1183 |
+
msgstr "Přidávejte vlastní pole do výsledků vyhledání na webu WordPress."
|
1184 |
+
|
1185 |
+
#: product_list.php:86
|
1186 |
+
msgid ""
|
1187 |
+
"Add custom post types and taxonomies to WordPress website search results."
|
1188 |
+
msgstr ""
|
1189 |
+
"Přidávejte vlastní typy příspěvků a taxonomie do výsledků vyhledání na webu "
|
1190 |
+
"WordPress."
|
1191 |
+
|
1192 |
+
#: product_list.php:96
|
1193 |
+
msgid "Add PayPal and 2CO donate buttons to receive charity payments."
|
1194 |
+
msgstr "Přidávejte darovací tlačítka PayPal a 2CO pro příjem příspěvků."
|
1195 |
+
|
1196 |
+
#: product_list.php:103
|
1197 |
+
msgid ""
|
1198 |
+
"Automatically add outgoing email messages to queue instead of sending them "
|
1199 |
+
"immediately."
|
1200 |
+
msgstr ""
|
1201 |
+
"Automaticky přidávejte odchozí e-mailové zprávy do fronty namísto jejich "
|
1202 |
+
"okamžitého odesílání."
|
1203 |
+
|
1204 |
+
#: product_list.php:110
|
1205 |
+
msgid ""
|
1206 |
+
"Get latest error log messages to diagnose website problems. Define and fix "
|
1207 |
+
"issues faster."
|
1208 |
+
msgstr ""
|
1209 |
+
"Získejte nejnovější zprávy z error logu při diagnostice problémů s webem. "
|
1210 |
+
"Definujte a opravte problémy rychleji."
|
1211 |
+
|
1212 |
+
#: product_list.php:117
|
1213 |
+
msgid ""
|
1214 |
+
"Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
|
1215 |
+
"widgets."
|
1216 |
+
msgstr ""
|
1217 |
+
"Přidávejte Facebooková tlačítka sledovat, to se mi líbí a sdílet do "
|
1218 |
+
"WordPress příspěvků, stránek a widgetů."
|
1219 |
+
|
1220 |
+
#: product_list.php:127
|
1221 |
+
msgid ""
|
1222 |
+
"Add beautiful galleries, albums & images to your WordPress website in a few "
|
1223 |
+
"clicks."
|
1224 |
+
msgstr ""
|
1225 |
+
"Přidávejte na váš WordPress web krásné galerie, alba a obrázky během "
|
1226 |
+
"několika kliknutí."
|
1227 |
+
|
1228 |
+
#: product_list.php:137
|
1229 |
+
msgid ""
|
1230 |
+
"Add unlimited gallery categories. Organize images to make the navigation "
|
1231 |
+
"through content easier."
|
1232 |
+
msgstr ""
|
1233 |
+
"Přidávejte neomezený počet kategorií galerie. Organizujte obrázky pro "
|
1234 |
+
"jednodušší orientaci v obsahu."
|
1235 |
+
|
1236 |
+
#: product_list.php:144
|
1237 |
+
msgid ""
|
1238 |
+
"Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
|
1239 |
+
"posts, pages and widgets."
|
1240 |
+
msgstr ""
|
1241 |
+
"Přidávejte Google +1 tlačítka sdílet, sledovat, Hangout a profile badge do "
|
1242 |
+
"WordPress příspěvků, stránek a widgetů."
|
1243 |
+
|
1244 |
+
#: product_list.php:154
|
1245 |
+
msgid ""
|
1246 |
+
"Stronger security solution which protects your WordPress website from hacks "
|
1247 |
+
"and unauthorized login attempts."
|
1248 |
+
msgstr ""
|
1249 |
+
|
1250 |
+
#: product_list.php:164
|
1251 |
+
msgid ""
|
1252 |
+
"Add Adsense ads to WordPress website pages, posts, custom posts, search "
|
1253 |
+
"results, categories, tags, and widgets."
|
1254 |
+
msgstr ""
|
1255 |
+
"Přidávejte reklamy Adsense do webu WordPress, příspěvky, vlastní příspěvky, "
|
1256 |
+
"výsledky vyhledávání, rubriky, štítky a widgety."
|
1257 |
+
|
1258 |
+
#: product_list.php:174
|
1259 |
+
msgid "Add Google Analytics code to WordPress website and track basic stats."
|
1260 |
+
msgstr ""
|
1261 |
+
"Přidávejte Google Analytics kód do WordPress webu a sledujte základní "
|
1262 |
+
"statistiky."
|
1263 |
+
|
1264 |
+
#: product_list.php:184
|
1265 |
+
msgid ""
|
1266 |
+
"Protect WordPress website forms from spam entries with Google Captcha "
|
1267 |
+
"(reCaptcha)."
|
1268 |
+
msgstr ""
|
1269 |
+
"Chraňte WordPress webové formuláře před spamem s Google Captcha (\"reCAPTCHA"
|
1270 |
+
"\")."
|
1271 |
+
|
1272 |
+
#: product_list.php:194
|
1273 |
+
msgid "Add customized Google maps to WordPress posts, pages and widgets."
|
1274 |
+
msgstr ""
|
1275 |
+
"Přidávejte vlastní mapy Google do WordPress příspěvků, stránek a widgetů."
|
1276 |
+
|
1277 |
+
#: product_list.php:204
|
1278 |
+
msgid ""
|
1279 |
+
"Generate and add XML sitemap to WordPress website. Help search engines index "
|
1280 |
+
"your blog."
|
1281 |
+
msgstr ""
|
1282 |
+
"Generujte a přidávejte sitemap.xml na vaše WordPress weby. Pomožte "
|
1283 |
+
"vyhledávačům indexovat váš blog."
|
1284 |
+
|
1285 |
+
#: product_list.php:214
|
1286 |
+
msgid ""
|
1287 |
+
"Replace external WordPress website links with Google shortlinks and track "
|
1288 |
+
"click stats."
|
1289 |
+
msgstr ""
|
1290 |
+
"Nahradit externí odkazy WordPress webu pomocí Google shortlinks a sledujte "
|
1291 |
+
"statistiky kliknutí."
|
1292 |
+
|
1293 |
+
#: product_list.php:221
|
1294 |
+
msgid ""
|
1295 |
+
"Protect WordPress website – allow and deny access for certain IP addresses, "
|
1296 |
+
"hostnames, etc."
|
1297 |
+
msgstr ""
|
1298 |
+
"Chráňte WordPress web– povolte či odepřete přístup pro určité IP adresy, "
|
1299 |
+
"hostnames, atd."
|
1300 |
+
|
1301 |
+
#: product_list.php:231
|
1302 |
+
msgid ""
|
1303 |
+
"Create your personal job board and listing WordPress website. Search jobs, "
|
1304 |
+
"submit CV/resumes, choose candidates."
|
1305 |
+
msgstr ""
|
1306 |
+
"Vytvořte si osobní nástěnku pracovních míst na WordPress webu. Hledání "
|
1307 |
+
"zaměstnání, odeslání CV/životopisu, výběr kandidátů."
|
1308 |
+
|
1309 |
+
#: product_list.php:238
|
1310 |
+
msgid ""
|
1311 |
+
"Protect WordPress website against brute force attacks. Limit rate of login "
|
1312 |
+
"attempts."
|
1313 |
+
msgstr ""
|
1314 |
+
"Chraňte WordPress web proti útokům hrubou silou. Omezte počet pokusů o "
|
1315 |
+
"přihlášení."
|
1316 |
+
|
1317 |
+
#: product_list.php:248
|
1318 |
+
msgid ""
|
1319 |
+
"Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
|
1320 |
+
"5 plugins included – profile, insider, etc."
|
1321 |
+
msgstr ""
|
1322 |
+
"Přidávejte LinkedIn tlačítka sdílet a sledovat do WordPress příspěvků, "
|
1323 |
+
"stránek a widgetů. 5 pluginů zahrnuje - profil, insider, atd."
|
1324 |
+
|
1325 |
+
#: product_list.php:258
|
1326 |
+
msgid ""
|
1327 |
+
"Translate WordPress website content to other languages manually. Create "
|
1328 |
+
"multilingual pages, posts, widgets, menus, etc."
|
1329 |
+
msgstr ""
|
1330 |
+
"Přeložte manuálně obsah webu WordPress do jiných jazyků. Vytvořte "
|
1331 |
+
"vícejazyčné stránky, příspěvky, widgety, menu, atd."
|
1332 |
+
|
1333 |
+
#: product_list.php:268
|
1334 |
+
msgid ""
|
1335 |
+
"Add customizable pagination to WordPress website. Split long content to "
|
1336 |
+
"multiple pages for better navigation."
|
1337 |
+
msgstr ""
|
1338 |
+
"Přidávejte nastavitelné stránkování na web WordPress. Pro lepší navigaci "
|
1339 |
+
"rozdělte dlouhý obsah na více stránek."
|
1340 |
+
|
1341 |
+
#: product_list.php:278
|
1342 |
+
msgid ""
|
1343 |
+
"Generate PDF files and print WordPress posts/pages. Customize document "
|
1344 |
+
"header/footer styles and appearance."
|
1345 |
+
msgstr ""
|
1346 |
+
"Generujte PDF soubory a tiskněte WordPress příspěvky/stránky. Vlastní "
|
1347 |
+
"záhlaví/zápatí dokumentu, styly a vzhled."
|
1348 |
+
|
1349 |
+
#: product_list.php:288
|
1350 |
+
msgid ""
|
1351 |
+
"Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
|
1352 |
+
"Profile) to WordPress posts, pages and widgets."
|
1353 |
+
msgstr ""
|
1354 |
+
"Přidávejte Pinterest tlačítka sledovat a připnout a profilový widget (Pin, "
|
1355 |
+
"Board, Profile) do WordPress příspěvků, stránek a widgetů."
|
1356 |
+
|
1357 |
+
#: product_list.php:298
|
1358 |
+
msgid ""
|
1359 |
+
"Create your personal portfolio WordPress website. Manage and showcase past "
|
1360 |
+
"projects to get more clients."
|
1361 |
+
msgstr ""
|
1362 |
+
"Vytvořte si osobní portfolio WordPress webů. Spravujte a představte své "
|
1363 |
+
"nedávné projekty a získejte více klientů."
|
1364 |
+
|
1365 |
+
#: product_list.php:308
|
1366 |
+
msgid "Export WordPress posts to CSV file format easily. Configure data order."
|
1367 |
+
msgstr ""
|
1368 |
+
"Exportujte snadno vaše WordPress příspěvky do souboru formátu CSV. "
|
1369 |
+
"Konfigurujte pořadí dat."
|
1370 |
+
|
1371 |
+
#: product_list.php:315
|
1372 |
+
msgid ""
|
1373 |
+
"Add extra fields to default WordPress user profile. The easiest way to "
|
1374 |
+
"create and manage additional custom values."
|
1375 |
+
msgstr ""
|
1376 |
+
"Přidávejte další pole do výchozího profilu uživatele WordPress. "
|
1377 |
+
"Nejjednodušší způsob, jak vytvořit a spravovat vlastní hodnoty."
|
1378 |
+
|
1379 |
+
#: product_list.php:322
|
1380 |
+
msgid ""
|
1381 |
+
"Add and display HTML advertisement banner on WordPress website. Customize "
|
1382 |
+
"bar styles and appearance."
|
1383 |
+
msgstr ""
|
1384 |
+
"Přidávejte a zobrazujte HTML reklamní banner na webu WordPress. Úpravte styl "
|
1385 |
+
"a vzhled lišt."
|
1386 |
+
|
1387 |
+
#: product_list.php:332
|
1388 |
+
msgid ""
|
1389 |
+
"Add customizable quotes and tips blocks to WordPress posts, pages and "
|
1390 |
+
"widgets."
|
1391 |
+
msgstr ""
|
1392 |
+
"Přidávejte přizpůsobitelné nabídky a bloky s tipy do WordPress příspěvků, "
|
1393 |
+
"stránek a widgetů."
|
1394 |
+
|
1395 |
+
#: product_list.php:339
|
1396 |
+
msgid ""
|
1397 |
+
"Add rating plugin to your WordPress website to receive feedback from your "
|
1398 |
+
"customers."
|
1399 |
+
msgstr ""
|
1400 |
+
"Přidávejte do vašeho WordPress webu plugin hodnocení k získání zpětné vazby "
|
1401 |
+
"od vašich zákazníků."
|
1402 |
+
|
1403 |
+
#: product_list.php:346
|
1404 |
+
msgid ""
|
1405 |
+
"Create your personal real estate WordPress website. Sell, rent and buy "
|
1406 |
+
"properties. Add, search and browse listings easily."
|
1407 |
+
msgstr ""
|
1408 |
+
"Vytvořte si osobní realitní stránky na WordPress webu. Prodávejte, "
|
1409 |
+
"pronajímejte a kupujte nemovitosti. Snadno přidejte hledání a procházení "
|
1410 |
+
"seznamy."
|
1411 |
+
|
1412 |
+
#: product_list.php:356
|
1413 |
+
msgid ""
|
1414 |
+
"Attach, un-attach and re-attach media files quickly to WordPress posts and "
|
1415 |
+
"pages."
|
1416 |
+
msgstr ""
|
1417 |
+
"Připojujte, odpojujte a znovu připojujte mediální soubory do WordPress "
|
1418 |
+
"příspěvků a stránek."
|
1419 |
+
|
1420 |
+
#: product_list.php:363
|
1421 |
+
msgid ""
|
1422 |
+
"Add related, featured, latest, and popular posts to your WordPress website. "
|
1423 |
+
"Connect your blog readers with a relevant content."
|
1424 |
+
msgstr ""
|
1425 |
+
"Přidávejte související, nejlepší, nejnovější a populární příspěvky do vašeho "
|
1426 |
+
"WordPress webu. Propojte čtenáře vašeho blogu s příslušným obsahem."
|
1427 |
+
|
1428 |
+
#: product_list.php:370
|
1429 |
+
msgid ""
|
1430 |
+
"Send bulk email messages to WordPress users. Custom templates, advanced "
|
1431 |
+
"settings and detailed reports."
|
1432 |
+
msgstr ""
|
1433 |
+
"Odesílejte hromadné e-maily WordPress uživatelům. Vlastní šablony, rozšířené "
|
1434 |
+
"nastavení a podrobné reporty."
|
1435 |
+
|
1436 |
+
#: product_list.php:380
|
1437 |
+
msgid ""
|
1438 |
+
"The best responsive slider plugin for your WordPress website. Create "
|
1439 |
+
"beautifully animated slides just in a few clicks."
|
1440 |
+
msgstr ""
|
1441 |
+
"Nejlepší responzivní slider plugin pro váše WordPress web. Vytvořte krásné "
|
1442 |
+
"animované snímky během pár kliknutí."
|
1443 |
+
|
1444 |
+
#: product_list.php:387
|
1445 |
+
msgid ""
|
1446 |
+
"Configure SMTP server to receive email messages from WordPress to Gmail, "
|
1447 |
+
"Yahoo, Hotmail and other services."
|
1448 |
+
msgstr ""
|
1449 |
+
"Konfigurujte SMTP server pro příjem e-mailových zpráv z WordPress na Gmail, "
|
1450 |
+
"Yahoo, Hotmail a dalších službách."
|
1451 |
+
|
1452 |
+
#: product_list.php:394
|
1453 |
+
msgid ""
|
1454 |
+
"Add social media buttons and widgets to WordPress posts, pages and widgets. "
|
1455 |
+
"FB, Twitter, G+1, Pinterest, LinkedIn."
|
1456 |
+
msgstr ""
|
1457 |
+
"Přidávejte tlačítka sociálních sítí a widgety do WordPress příspěvků, "
|
1458 |
+
"stránek a widgetů. Facebook, Twitter, G+1, Pinterest, LinkedIn."
|
1459 |
+
|
1460 |
+
#: product_list.php:404
|
1461 |
+
msgid ""
|
1462 |
+
"Add social media login, registration, and commenting to your WordPress "
|
1463 |
+
"website."
|
1464 |
+
msgstr ""
|
1465 |
+
"Přidávejte na váš WordPress web login, registraci či komentáře "
|
1466 |
+
"prostřednictvím sociálních sítí."
|
1467 |
+
|
1468 |
+
#: product_list.php:411
|
1469 |
+
msgid ""
|
1470 |
+
"Add email newsletter sign up form to WordPress posts, pages and widgets. "
|
1471 |
+
"Collect data and subscribe your users."
|
1472 |
+
msgstr ""
|
1473 |
+
"Přidávejte registrační formulář e-mailového zpravodaje do WordPress "
|
1474 |
+
"příspěvků, stránek a widgetů. Shromažďujte data a přihlaste k odběru vaše "
|
1475 |
+
"uživatele."
|
1476 |
+
|
1477 |
+
#: product_list.php:421
|
1478 |
+
msgid ""
|
1479 |
+
"Add testimonials and feedbacks from your customers to WordPress website "
|
1480 |
+
"posts, pages, and widgets."
|
1481 |
+
msgstr ""
|
1482 |
+
"Přidávejte potvrzení a zpětnou vazbu od vašich zákazníků do WordPress "
|
1483 |
+
"příspěvků, stránek a widgetů."
|
1484 |
+
|
1485 |
+
#: product_list.php:428
|
1486 |
+
msgid ""
|
1487 |
+
"Best timesheet plugin for WordPress. Track employee time, streamline "
|
1488 |
+
"attendance and generate reports."
|
1489 |
+
msgstr ""
|
1490 |
+
"Nejlepší timesheet plugin pro WordPress. Sledujte časy zaměstnanců, "
|
1491 |
+
"kontrolujte jejich přítomnost a generujte sestavy."
|
1492 |
+
|
1493 |
+
#: product_list.php:438
|
1494 |
+
msgid ""
|
1495 |
+
"Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
|
1496 |
+
"and pages."
|
1497 |
+
msgstr ""
|
1498 |
+
"Přidávejte Twitter tlačítka sledovat, twítnout a zmínit do WordPress "
|
1499 |
+
"příspěvků a stránek."
|
1500 |
+
|
1501 |
+
#: product_list.php:448
|
1502 |
+
msgid ""
|
1503 |
+
"Automatically check and update WordPress website core with all installed "
|
1504 |
+
"plugins and themes to the latest versions."
|
1505 |
+
msgstr ""
|
1506 |
+
"Automaticky kontrolujte a aktualizujte na nejnovější verzi WordPress jádro i "
|
1507 |
+
"všechny nainstalované pluginy a šablony."
|
1508 |
+
|
1509 |
+
#: product_list.php:458
|
1510 |
+
msgid ""
|
1511 |
+
"Powerful user role management plugin for WordPress website. Create, edit, "
|
1512 |
+
"copy, and delete user roles."
|
1513 |
+
msgstr ""
|
1514 |
+
"Plugin robustní správy užiatelů pro WordPress web. Vytvářejte, upravujte, "
|
1515 |
+
"kopírujte a odstraňujte uživatelské role."
|
1516 |
+
|
1517 |
+
#: product_list.php:468
|
1518 |
+
msgid ""
|
1519 |
+
"Display live count of online visitors who are currently browsing your "
|
1520 |
+
"WordPress website."
|
1521 |
+
msgstr ""
|
1522 |
+
"Zobrazujte počet aktivních online návštěvníků, kteří dané chvíli procházejí "
|
1523 |
+
"váš WordPress web."
|
1524 |
+
|
1525 |
+
#: product_list.php:478
|
1526 |
+
msgid ""
|
1527 |
+
"Backup and export Zendesk Help Center content automatically to your "
|
1528 |
+
"WordPress website database."
|
1529 |
+
msgstr ""
|
1530 |
+
"Automaticky zálohujte a exportujte obsah centra nápovědy Zendesk do databáze "
|
1531 |
+
"vašeho WordPress webu."
|
1532 |
+
|
1533 |
+
#~ msgid "Advertisement"
|
1534 |
+
#~ msgstr "Reklama"
|
1535 |
+
|
1536 |
+
#~ msgid "Content & Media"
|
1537 |
+
#~ msgstr "Obsah & Média"
|
1538 |
+
|
1539 |
+
#~ msgid "Management"
|
1540 |
+
#~ msgstr "Správa"
|
1541 |
|
1542 |
+
#~ msgid "Site Stats"
|
1543 |
+
#~ msgstr "Statistiky webu"
|
1544 |
|
1545 |
+
#~ msgid "Social"
|
1546 |
+
#~ msgstr "Sociální"
|
1547 |
|
1548 |
+
#~ msgid "Utilities"
|
1549 |
+
#~ msgstr "Utility"
|
1550 |
|
1551 |
+
#~ msgid "Other"
|
1552 |
+
#~ msgstr "Ostatní"
|
bws_menu/languages/bestwebsoft-fr_FR.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-fr_FR.po
CHANGED
@@ -2,15 +2,15 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
"Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
|
8 |
"Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
|
9 |
"Language: fr_FR\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"Plural-Forms: nplurals=2;plural=n>2;\n"
|
@@ -49,7 +49,7 @@ msgstr "Notez là"
|
|
49 |
msgid "Need help?"
|
50 |
msgstr "Besoin d'aide ?"
|
51 |
|
52 |
-
#: bws_functions.php:103 bws_functions.php:
|
53 |
msgid "Visit Help Center"
|
54 |
msgstr "Visiter le site du support"
|
55 |
|
@@ -149,7 +149,7 @@ msgid "Add New"
|
|
149 |
msgstr "Ajouter"
|
150 |
|
151 |
#: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
|
152 |
-
#: bws_functions.php:378 bws_functions.php:
|
153 |
msgid "Close notice"
|
154 |
msgstr "Effacer l'avertissement"
|
155 |
|
@@ -203,12 +203,12 @@ msgstr ""
|
|
203 |
"Votre clé de licence pour %s est terminée le %s et vous ne disposerez plus "
|
204 |
"du support rapide et des mises à jour."
|
205 |
|
206 |
-
#: bws_functions.php:
|
207 |
#, php-format
|
208 |
msgid "Thank you for choosing %s plugin!"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: bws_functions.php:
|
212 |
msgid ""
|
213 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
214 |
"we'd love to hear about it!"
|
@@ -216,25 +216,25 @@ msgstr ""
|
|
216 |
"Si vous avez une fonctionnalité, une suggestion ou une idée que vous "
|
217 |
"souhaitez pour cette extension, nous serons ravis d'en parler avec vous !"
|
218 |
|
219 |
-
#: bws_functions.php:
|
220 |
msgid "Suggest a Feature"
|
221 |
msgstr "Proposer une fonctionnalité"
|
222 |
|
223 |
-
#: bws_functions.php:
|
224 |
#: class-bws-settings.php:584 class-bws-settings.php:587
|
225 |
msgid "Notice"
|
226 |
msgstr "Avertissement"
|
227 |
|
228 |
-
#: bws_functions.php:
|
229 |
msgid "The plugin's settings have been changed."
|
230 |
msgstr "Les paramètres de l'extension ont été modifiés."
|
231 |
|
232 |
-
#: bws_functions.php:
|
233 |
#: deprecated.php:640
|
234 |
msgid "Save Changes"
|
235 |
msgstr "Enregistrer les modifications"
|
236 |
|
237 |
-
#: bws_functions.php:
|
238 |
msgid ""
|
239 |
"You can always look at premium options by checking the \"Pro Options\" in "
|
240 |
"the \"Misc\" tab."
|
@@ -242,63 +242,71 @@ msgstr ""
|
|
242 |
"Vous pouvez toujours consulter les options premium en cliquant sur le lien "
|
243 |
"\"Voir les fonctionnalités de la version PRO\" dans l'onglet divers."
|
244 |
|
245 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
246 |
msgid "Add shortcode"
|
247 |
msgstr "Ajouter le code court"
|
248 |
|
249 |
-
#: bws_functions.php:
|
250 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
251 |
msgstr "Ajouter le code court des extensions BestWebSoft avec ce bouton."
|
252 |
|
253 |
-
#: bws_functions.php:
|
254 |
msgid "Close"
|
255 |
msgstr "Fermer"
|
256 |
|
257 |
-
#: bws_functions.php:
|
258 |
msgid "Are you sure you want to restore default settings?"
|
259 |
msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
|
260 |
|
261 |
-
#: bws_functions.php:
|
262 |
msgid "Yes, restore all settings"
|
263 |
msgstr "Oui, remettre les valeurs par défaut"
|
264 |
|
265 |
-
#: bws_functions.php:
|
266 |
msgid "No, go back to the settings page"
|
267 |
msgstr "Non, retourner à la page des paramètres"
|
268 |
|
269 |
-
#: bws_functions.php:
|
270 |
msgid "Plugin"
|
271 |
msgstr "Extension"
|
272 |
|
273 |
-
#: bws_functions.php:
|
274 |
msgid "Shortcode settings"
|
275 |
msgstr "Paramètres du code court"
|
276 |
|
277 |
-
#: bws_functions.php:
|
278 |
msgid "The shortcode will be inserted"
|
279 |
msgstr "Le code court sera inséré"
|
280 |
|
281 |
-
#: bws_functions.php:
|
282 |
msgid "Insert"
|
283 |
msgstr "Insérer"
|
284 |
|
285 |
-
#: bws_functions.php:
|
286 |
msgid "FAQ"
|
287 |
msgstr "FAQ"
|
288 |
|
289 |
-
#: bws_functions.php:
|
290 |
msgid "For more information:"
|
291 |
msgstr "Pour plus d'informations :"
|
292 |
|
293 |
-
#: bws_functions.php:
|
294 |
msgid "Documentation"
|
295 |
msgstr "Documentation"
|
296 |
|
297 |
-
#: bws_functions.php:
|
298 |
msgid "Video Instructions"
|
299 |
msgstr "Vidéo explicative"
|
300 |
|
301 |
-
#: bws_functions.php:
|
302 |
msgid "Submit a Request"
|
303 |
msgstr "Soumettre une requête"
|
304 |
|
@@ -1135,40 +1143,353 @@ msgid "version of the plugin."
|
|
1135 |
msgstr "version de l'extension."
|
1136 |
|
1137 |
#: product_list.php:7
|
1138 |
-
msgid "
|
1139 |
-
msgstr "
|
1140 |
|
1141 |
#: product_list.php:8
|
1142 |
-
msgid "Content
|
1143 |
-
msgstr "
|
1144 |
|
1145 |
#: product_list.php:9
|
1146 |
-
msgid "
|
1147 |
-
msgstr "
|
1148 |
|
1149 |
#: product_list.php:10
|
1150 |
-
msgid "
|
1151 |
-
msgstr "
|
1152 |
|
1153 |
#: product_list.php:11
|
1154 |
-
msgid "
|
1155 |
-
msgstr "
|
1156 |
|
1157 |
#: product_list.php:12
|
1158 |
-
msgid "
|
1159 |
-
msgstr "
|
1160 |
|
1161 |
#: product_list.php:13
|
1162 |
-
msgid "
|
1163 |
-
msgstr "
|
1164 |
|
1165 |
#: product_list.php:14
|
1166 |
-
msgid "
|
1167 |
-
msgstr "
|
1168 |
|
1169 |
#: product_list.php:15
|
1170 |
-
msgid "
|
1171 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1172 |
|
1173 |
#~ msgid "Thank you for installing"
|
1174 |
#~ msgstr "Merci d'avoir installé"
|
@@ -1268,9 +1589,6 @@ msgstr "Autre"
|
|
1268 |
#~ "Vous pouvez trouver votre clé de licence sur votre page personnelle dans "
|
1269 |
#~ "la zone cliente en cliquant sur le lien"
|
1270 |
|
1271 |
-
#~ msgid "Add BWS Plugins Shortcode"
|
1272 |
-
#~ msgstr "Ajouter le code court de l'extension BWS"
|
1273 |
-
|
1274 |
#~ msgid ""
|
1275 |
#~ "(your username is the email you specify when purchasing the product), "
|
1276 |
#~ "where you can make the necessary changes."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-06-08 15:43+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-06-08 15:43+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"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"Plural-Forms: nplurals=2;plural=n>2;\n"
|
49 |
msgid "Need help?"
|
50 |
msgstr "Besoin d'aide ?"
|
51 |
|
52 |
+
#: bws_functions.php:103 bws_functions.php:907 class-bws-settings.php:1047
|
53 |
msgid "Visit Help Center"
|
54 |
msgstr "Visiter le site du support"
|
55 |
|
149 |
msgstr "Ajouter"
|
150 |
|
151 |
#: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
|
152 |
+
#: bws_functions.php:378 bws_functions.php:480
|
153 |
msgid "Close notice"
|
154 |
msgstr "Effacer l'avertissement"
|
155 |
|
203 |
"Votre clé de licence pour %s est terminée le %s et vous ne disposerez plus "
|
204 |
"du support rapide et des mises à jour."
|
205 |
|
206 |
+
#: bws_functions.php:475
|
207 |
#, php-format
|
208 |
msgid "Thank you for choosing %s plugin!"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: bws_functions.php:476
|
212 |
msgid ""
|
213 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
214 |
"we'd love to hear about it!"
|
216 |
"Si vous avez une fonctionnalité, une suggestion ou une idée que vous "
|
217 |
"souhaitez pour cette extension, nous serons ravis d'en parler avec vous !"
|
218 |
|
219 |
+
#: bws_functions.php:477
|
220 |
msgid "Suggest a Feature"
|
221 |
msgstr "Proposer une fonctionnalité"
|
222 |
|
223 |
+
#: bws_functions.php:493 class-bws-settings.php:533 class-bws-settings.php:536
|
224 |
#: class-bws-settings.php:584 class-bws-settings.php:587
|
225 |
msgid "Notice"
|
226 |
msgstr "Avertissement"
|
227 |
|
228 |
+
#: bws_functions.php:493
|
229 |
msgid "The plugin's settings have been changed."
|
230 |
msgstr "Les paramètres de l'extension ont été modifiés."
|
231 |
|
232 |
+
#: bws_functions.php:494 class-bws-settings.php:182 class-bws-settings.php:202
|
233 |
#: deprecated.php:640
|
234 |
msgid "Save Changes"
|
235 |
msgstr "Enregistrer les modifications"
|
236 |
|
237 |
+
#: bws_functions.php:508
|
238 |
msgid ""
|
239 |
"You can always look at premium options by checking the \"Pro Options\" in "
|
240 |
"the \"Misc\" tab."
|
242 |
"Vous pouvez toujours consulter les options premium en cliquant sur le lien "
|
243 |
"\"Voir les fonctionnalités de la version PRO\" dans l'onglet divers."
|
244 |
|
245 |
+
#: bws_functions.php:629
|
246 |
+
msgid "Add BWS Shortcode"
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: bws_functions.php:630
|
250 |
+
msgid "Add BWS Plugins Shortcode"
|
251 |
+
msgstr "Ajouter le code court de l'extension BWS"
|
252 |
+
|
253 |
+
#: bws_functions.php:649
|
254 |
msgid "Add shortcode"
|
255 |
msgstr "Ajouter le code court"
|
256 |
|
257 |
+
#: bws_functions.php:649
|
258 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
259 |
msgstr "Ajouter le code court des extensions BestWebSoft avec ce bouton."
|
260 |
|
261 |
+
#: bws_functions.php:695
|
262 |
msgid "Close"
|
263 |
msgstr "Fermer"
|
264 |
|
265 |
+
#: bws_functions.php:787
|
266 |
msgid "Are you sure you want to restore default settings?"
|
267 |
msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
|
268 |
|
269 |
+
#: bws_functions.php:790
|
270 |
msgid "Yes, restore all settings"
|
271 |
msgstr "Oui, remettre les valeurs par défaut"
|
272 |
|
273 |
+
#: bws_functions.php:791
|
274 |
msgid "No, go back to the settings page"
|
275 |
msgstr "Non, retourner à la page des paramètres"
|
276 |
|
277 |
+
#: bws_functions.php:833
|
278 |
msgid "Plugin"
|
279 |
msgstr "Extension"
|
280 |
|
281 |
+
#: bws_functions.php:842
|
282 |
msgid "Shortcode settings"
|
283 |
msgstr "Paramètres du code court"
|
284 |
|
285 |
+
#: bws_functions.php:847
|
286 |
msgid "The shortcode will be inserted"
|
287 |
msgstr "Le code court sera inséré"
|
288 |
|
289 |
+
#: bws_functions.php:852
|
290 |
msgid "Insert"
|
291 |
msgstr "Insérer"
|
292 |
|
293 |
+
#: bws_functions.php:912
|
294 |
msgid "FAQ"
|
295 |
msgstr "FAQ"
|
296 |
|
297 |
+
#: bws_functions.php:918
|
298 |
msgid "For more information:"
|
299 |
msgstr "Pour plus d'informations :"
|
300 |
|
301 |
+
#: bws_functions.php:919
|
302 |
msgid "Documentation"
|
303 |
msgstr "Documentation"
|
304 |
|
305 |
+
#: bws_functions.php:920
|
306 |
msgid "Video Instructions"
|
307 |
msgstr "Vidéo explicative"
|
308 |
|
309 |
+
#: bws_functions.php:921
|
310 |
msgid "Submit a Request"
|
311 |
msgstr "Soumettre une requête"
|
312 |
|
1143 |
msgstr "version de l'extension."
|
1144 |
|
1145 |
#: product_list.php:7
|
1146 |
+
msgid "Admin Tools"
|
1147 |
+
msgstr ""
|
1148 |
|
1149 |
#: product_list.php:8
|
1150 |
+
msgid "Content"
|
1151 |
+
msgstr ""
|
1152 |
|
1153 |
#: product_list.php:9
|
1154 |
+
msgid "eCommerce"
|
1155 |
+
msgstr ""
|
1156 |
|
1157 |
#: product_list.php:10
|
1158 |
+
msgid "Marketing"
|
1159 |
+
msgstr ""
|
1160 |
|
1161 |
#: product_list.php:11
|
1162 |
+
msgid "Navigation"
|
1163 |
+
msgstr ""
|
1164 |
|
1165 |
#: product_list.php:12
|
1166 |
+
msgid "Recommended"
|
1167 |
+
msgstr "Recommandé"
|
1168 |
|
1169 |
#: product_list.php:13
|
1170 |
+
msgid "Security"
|
1171 |
+
msgstr "Sécurité"
|
1172 |
|
1173 |
#: product_list.php:14
|
1174 |
+
msgid "SEO"
|
1175 |
+
msgstr ""
|
1176 |
|
1177 |
#: product_list.php:15
|
1178 |
+
msgid "SMM"
|
1179 |
+
msgstr ""
|
1180 |
+
|
1181 |
+
#: product_list.php:22
|
1182 |
+
msgid ""
|
1183 |
+
"Protect WordPress website forms from spam entries by means of math logic."
|
1184 |
+
msgstr ""
|
1185 |
+
|
1186 |
+
#: product_list.php:32
|
1187 |
+
msgid "Create your personal car rental/booking and reservation website."
|
1188 |
+
msgstr ""
|
1189 |
+
|
1190 |
+
#: product_list.php:42
|
1191 |
+
msgid ""
|
1192 |
+
"Allow customers to reach you using secure contact form plugin any website "
|
1193 |
+
"must have."
|
1194 |
+
msgstr ""
|
1195 |
+
|
1196 |
+
#: product_list.php:52
|
1197 |
+
msgid "Add unlimited number of contact forms to WordPress website."
|
1198 |
+
msgstr ""
|
1199 |
+
|
1200 |
+
#: product_list.php:62
|
1201 |
+
msgid "Save and manage Contact Form messages. Never lose important data."
|
1202 |
+
msgstr ""
|
1203 |
+
|
1204 |
+
#: product_list.php:72
|
1205 |
+
msgid "Add unlimited custom pages to WordPress admin dashboard."
|
1206 |
+
msgstr ""
|
1207 |
+
|
1208 |
+
#: product_list.php:79
|
1209 |
+
msgid "Add custom fields to WordPress website search results."
|
1210 |
+
msgstr ""
|
1211 |
+
|
1212 |
+
#: product_list.php:86
|
1213 |
+
msgid ""
|
1214 |
+
"Add custom post types and taxonomies to WordPress website search results."
|
1215 |
+
msgstr ""
|
1216 |
+
|
1217 |
+
#: product_list.php:96
|
1218 |
+
msgid "Add PayPal and 2CO donate buttons to receive charity payments."
|
1219 |
+
msgstr ""
|
1220 |
+
|
1221 |
+
#: product_list.php:103
|
1222 |
+
msgid ""
|
1223 |
+
"Automatically add outgoing email messages to queue instead of sending them "
|
1224 |
+
"immediately."
|
1225 |
+
msgstr ""
|
1226 |
+
|
1227 |
+
#: product_list.php:110
|
1228 |
+
msgid ""
|
1229 |
+
"Get latest error log messages to diagnose website problems. Define and fix "
|
1230 |
+
"issues faster."
|
1231 |
+
msgstr ""
|
1232 |
+
|
1233 |
+
#: product_list.php:117
|
1234 |
+
msgid ""
|
1235 |
+
"Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
|
1236 |
+
"widgets."
|
1237 |
+
msgstr ""
|
1238 |
+
|
1239 |
+
#: product_list.php:127
|
1240 |
+
msgid ""
|
1241 |
+
"Add beautiful galleries, albums & images to your WordPress website in a few "
|
1242 |
+
"clicks."
|
1243 |
+
msgstr ""
|
1244 |
+
|
1245 |
+
#: product_list.php:137
|
1246 |
+
msgid ""
|
1247 |
+
"Add unlimited gallery categories. Organize images to make the navigation "
|
1248 |
+
"through content easier."
|
1249 |
+
msgstr ""
|
1250 |
+
|
1251 |
+
#: product_list.php:144
|
1252 |
+
msgid ""
|
1253 |
+
"Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
|
1254 |
+
"posts, pages and widgets."
|
1255 |
+
msgstr ""
|
1256 |
+
|
1257 |
+
#: product_list.php:154
|
1258 |
+
msgid ""
|
1259 |
+
"Stronger security solution which protects your WordPress website from hacks "
|
1260 |
+
"and unauthorized login attempts."
|
1261 |
+
msgstr ""
|
1262 |
+
|
1263 |
+
#: product_list.php:164
|
1264 |
+
msgid ""
|
1265 |
+
"Add Adsense ads to WordPress website pages, posts, custom posts, search "
|
1266 |
+
"results, categories, tags, and widgets."
|
1267 |
+
msgstr ""
|
1268 |
+
|
1269 |
+
#: product_list.php:174
|
1270 |
+
msgid "Add Google Analytics code to WordPress website and track basic stats."
|
1271 |
+
msgstr ""
|
1272 |
+
|
1273 |
+
#: product_list.php:184
|
1274 |
+
msgid ""
|
1275 |
+
"Protect WordPress website forms from spam entries with Google Captcha "
|
1276 |
+
"(reCaptcha)."
|
1277 |
+
msgstr ""
|
1278 |
+
|
1279 |
+
#: product_list.php:194
|
1280 |
+
msgid "Add customized Google maps to WordPress posts, pages and widgets."
|
1281 |
+
msgstr ""
|
1282 |
+
|
1283 |
+
#: product_list.php:204
|
1284 |
+
msgid ""
|
1285 |
+
"Generate and add XML sitemap to WordPress website. Help search engines index "
|
1286 |
+
"your blog."
|
1287 |
+
msgstr ""
|
1288 |
+
|
1289 |
+
#: product_list.php:214
|
1290 |
+
msgid ""
|
1291 |
+
"Replace external WordPress website links with Google shortlinks and track "
|
1292 |
+
"click stats."
|
1293 |
+
msgstr ""
|
1294 |
+
|
1295 |
+
#: product_list.php:221
|
1296 |
+
msgid ""
|
1297 |
+
"Protect WordPress website – allow and deny access for certain IP addresses, "
|
1298 |
+
"hostnames, etc."
|
1299 |
+
msgstr ""
|
1300 |
+
|
1301 |
+
#: product_list.php:231
|
1302 |
+
msgid ""
|
1303 |
+
"Create your personal job board and listing WordPress website. Search jobs, "
|
1304 |
+
"submit CV/resumes, choose candidates."
|
1305 |
+
msgstr ""
|
1306 |
+
|
1307 |
+
#: product_list.php:238
|
1308 |
+
msgid ""
|
1309 |
+
"Protect WordPress website against brute force attacks. Limit rate of login "
|
1310 |
+
"attempts."
|
1311 |
+
msgstr ""
|
1312 |
+
|
1313 |
+
#: product_list.php:248
|
1314 |
+
msgid ""
|
1315 |
+
"Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
|
1316 |
+
"5 plugins included – profile, insider, etc."
|
1317 |
+
msgstr ""
|
1318 |
+
|
1319 |
+
#: product_list.php:258
|
1320 |
+
msgid ""
|
1321 |
+
"Translate WordPress website content to other languages manually. Create "
|
1322 |
+
"multilingual pages, posts, widgets, menus, etc."
|
1323 |
+
msgstr ""
|
1324 |
+
|
1325 |
+
#: product_list.php:268
|
1326 |
+
msgid ""
|
1327 |
+
"Add customizable pagination to WordPress website. Split long content to "
|
1328 |
+
"multiple pages for better navigation."
|
1329 |
+
msgstr ""
|
1330 |
+
|
1331 |
+
#: product_list.php:278
|
1332 |
+
msgid ""
|
1333 |
+
"Generate PDF files and print WordPress posts/pages. Customize document "
|
1334 |
+
"header/footer styles and appearance."
|
1335 |
+
msgstr ""
|
1336 |
+
|
1337 |
+
#: product_list.php:288
|
1338 |
+
msgid ""
|
1339 |
+
"Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
|
1340 |
+
"Profile) to WordPress posts, pages and widgets."
|
1341 |
+
msgstr ""
|
1342 |
+
|
1343 |
+
#: product_list.php:298
|
1344 |
+
msgid ""
|
1345 |
+
"Create your personal portfolio WordPress website. Manage and showcase past "
|
1346 |
+
"projects to get more clients."
|
1347 |
+
msgstr ""
|
1348 |
+
|
1349 |
+
#: product_list.php:308
|
1350 |
+
msgid "Export WordPress posts to CSV file format easily. Configure data order."
|
1351 |
+
msgstr ""
|
1352 |
+
|
1353 |
+
#: product_list.php:315
|
1354 |
+
msgid ""
|
1355 |
+
"Add extra fields to default WordPress user profile. The easiest way to "
|
1356 |
+
"create and manage additional custom values."
|
1357 |
+
msgstr ""
|
1358 |
+
|
1359 |
+
#: product_list.php:322
|
1360 |
+
msgid ""
|
1361 |
+
"Add and display HTML advertisement banner on WordPress website. Customize "
|
1362 |
+
"bar styles and appearance."
|
1363 |
+
msgstr ""
|
1364 |
+
|
1365 |
+
#: product_list.php:332
|
1366 |
+
msgid ""
|
1367 |
+
"Add customizable quotes and tips blocks to WordPress posts, pages and "
|
1368 |
+
"widgets."
|
1369 |
+
msgstr ""
|
1370 |
+
|
1371 |
+
#: product_list.php:339
|
1372 |
+
msgid ""
|
1373 |
+
"Add rating plugin to your WordPress website to receive feedback from your "
|
1374 |
+
"customers."
|
1375 |
+
msgstr ""
|
1376 |
+
|
1377 |
+
#: product_list.php:346
|
1378 |
+
msgid ""
|
1379 |
+
"Create your personal real estate WordPress website. Sell, rent and buy "
|
1380 |
+
"properties. Add, search and browse listings easily."
|
1381 |
+
msgstr ""
|
1382 |
+
|
1383 |
+
#: product_list.php:356
|
1384 |
+
msgid ""
|
1385 |
+
"Attach, un-attach and re-attach media files quickly to WordPress posts and "
|
1386 |
+
"pages."
|
1387 |
+
msgstr ""
|
1388 |
+
|
1389 |
+
#: product_list.php:363
|
1390 |
+
msgid ""
|
1391 |
+
"Add related, featured, latest, and popular posts to your WordPress website. "
|
1392 |
+
"Connect your blog readers with a relevant content."
|
1393 |
+
msgstr ""
|
1394 |
+
|
1395 |
+
#: product_list.php:370
|
1396 |
+
msgid ""
|
1397 |
+
"Send bulk email messages to WordPress users. Custom templates, advanced "
|
1398 |
+
"settings and detailed reports."
|
1399 |
+
msgstr ""
|
1400 |
+
|
1401 |
+
#: product_list.php:380
|
1402 |
+
msgid ""
|
1403 |
+
"The best responsive slider plugin for your WordPress website. Create "
|
1404 |
+
"beautifully animated slides just in a few clicks."
|
1405 |
+
msgstr ""
|
1406 |
+
|
1407 |
+
#: product_list.php:387
|
1408 |
+
msgid ""
|
1409 |
+
"Configure SMTP server to receive email messages from WordPress to Gmail, "
|
1410 |
+
"Yahoo, Hotmail and other services."
|
1411 |
+
msgstr ""
|
1412 |
+
|
1413 |
+
#: product_list.php:394
|
1414 |
+
msgid ""
|
1415 |
+
"Add social media buttons and widgets to WordPress posts, pages and widgets. "
|
1416 |
+
"FB, Twitter, G+1, Pinterest, LinkedIn."
|
1417 |
+
msgstr ""
|
1418 |
+
|
1419 |
+
#: product_list.php:404
|
1420 |
+
msgid ""
|
1421 |
+
"Add social media login, registration, and commenting to your WordPress "
|
1422 |
+
"website."
|
1423 |
+
msgstr ""
|
1424 |
+
|
1425 |
+
#: product_list.php:411
|
1426 |
+
msgid ""
|
1427 |
+
"Add email newsletter sign up form to WordPress posts, pages and widgets. "
|
1428 |
+
"Collect data and subscribe your users."
|
1429 |
+
msgstr ""
|
1430 |
+
|
1431 |
+
#: product_list.php:421
|
1432 |
+
msgid ""
|
1433 |
+
"Add testimonials and feedbacks from your customers to WordPress website "
|
1434 |
+
"posts, pages, and widgets."
|
1435 |
+
msgstr ""
|
1436 |
+
|
1437 |
+
#: product_list.php:428
|
1438 |
+
msgid ""
|
1439 |
+
"Best timesheet plugin for WordPress. Track employee time, streamline "
|
1440 |
+
"attendance and generate reports."
|
1441 |
+
msgstr ""
|
1442 |
+
|
1443 |
+
#: product_list.php:438
|
1444 |
+
msgid ""
|
1445 |
+
"Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
|
1446 |
+
"and pages."
|
1447 |
+
msgstr ""
|
1448 |
+
|
1449 |
+
#: product_list.php:448
|
1450 |
+
msgid ""
|
1451 |
+
"Automatically check and update WordPress website core with all installed "
|
1452 |
+
"plugins and themes to the latest versions."
|
1453 |
+
msgstr ""
|
1454 |
+
|
1455 |
+
#: product_list.php:458
|
1456 |
+
msgid ""
|
1457 |
+
"Powerful user role management plugin for WordPress website. Create, edit, "
|
1458 |
+
"copy, and delete user roles."
|
1459 |
+
msgstr ""
|
1460 |
+
|
1461 |
+
#: product_list.php:468
|
1462 |
+
msgid ""
|
1463 |
+
"Display live count of online visitors who are currently browsing your "
|
1464 |
+
"WordPress website."
|
1465 |
+
msgstr ""
|
1466 |
+
|
1467 |
+
#: product_list.php:478
|
1468 |
+
msgid ""
|
1469 |
+
"Backup and export Zendesk Help Center content automatically to your "
|
1470 |
+
"WordPress website database."
|
1471 |
+
msgstr ""
|
1472 |
+
|
1473 |
+
#~ msgid "Advertisement"
|
1474 |
+
#~ msgstr "Publicité"
|
1475 |
+
|
1476 |
+
#~ msgid "Content & Media"
|
1477 |
+
#~ msgstr "Contenu & média"
|
1478 |
+
|
1479 |
+
#~ msgid "Management"
|
1480 |
+
#~ msgstr "Administration"
|
1481 |
+
|
1482 |
+
#~ msgid "Site Stats"
|
1483 |
+
#~ msgstr "Statistiques"
|
1484 |
+
|
1485 |
+
#~ msgid "Social"
|
1486 |
+
#~ msgstr "Social"
|
1487 |
+
|
1488 |
+
#~ msgid "Utilities"
|
1489 |
+
#~ msgstr "Utilitaires"
|
1490 |
+
|
1491 |
+
#~ msgid "Other"
|
1492 |
+
#~ msgstr "Autre"
|
1493 |
|
1494 |
#~ msgid "Thank you for installing"
|
1495 |
#~ msgstr "Merci d'avoir installé"
|
1589 |
#~ "Vous pouvez trouver votre clé de licence sur votre page personnelle dans "
|
1590 |
#~ "la zone cliente en cliquant sur le lien"
|
1591 |
|
|
|
|
|
|
|
1592 |
#~ msgid ""
|
1593 |
#~ "(your username is the email you specify when purchasing the product), "
|
1594 |
#~ "where you can make the necessary changes."
|
bws_menu/languages/bestwebsoft-id_ID.mo
ADDED
Binary file
|
bws_menu/languages/bestwebsoft-id_ID.po
ADDED
@@ -0,0 +1,2069 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: bestwebsoft\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-06-08 15:43+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-06-08 15:43+0300\n"
|
7 |
+
"Last-Translator: Jordan Silaen <jordan.silaen@chameleonjohn.com>\n"
|
8 |
+
"Language-Team: chameleonjohn.com <jordan.silaen@chameleonjohn.com>\n"
|
9 |
+
"Language: id\n"
|
10 |
+
"MIME-Version: 1.0\n"
|
11 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
+
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
|
14 |
+
"X-Poedit-Basepath: ..\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
17 |
+
"X-Generator: Poedit 1.8.7.1\n"
|
18 |
+
"X-Poedit-SearchPath-0: .\n"
|
19 |
+
|
20 |
+
#: bws_functions.php:72 bws_functions.php:190
|
21 |
+
msgid "requires"
|
22 |
+
msgstr "membutuhkan"
|
23 |
+
|
24 |
+
#: bws_functions.php:74
|
25 |
+
msgid ""
|
26 |
+
"or higher, that is why it has been deactivated! Please upgrade WordPress and "
|
27 |
+
"try again."
|
28 |
+
msgstr ""
|
29 |
+
"atau lebih tinggi, itu sebabnya telah dinonaktifkan! Silakan upgrade "
|
30 |
+
"WordPress dan coba lagi."
|
31 |
+
|
32 |
+
#: bws_functions.php:75
|
33 |
+
msgid "Back to the WordPress"
|
34 |
+
msgstr "Kembali ke WordPress"
|
35 |
+
|
36 |
+
#: bws_functions.php:77
|
37 |
+
msgid "Plugins page"
|
38 |
+
msgstr "halaman plugin"
|
39 |
+
|
40 |
+
#: bws_functions.php:91
|
41 |
+
msgid "Like the plugin?"
|
42 |
+
msgstr "Seperti plugin?"
|
43 |
+
|
44 |
+
#: bws_functions.php:93
|
45 |
+
msgid "Rate it"
|
46 |
+
msgstr "Menilai itu"
|
47 |
+
|
48 |
+
#: bws_functions.php:102
|
49 |
+
msgid "Need help?"
|
50 |
+
msgstr "Butuh bantuan?"
|
51 |
+
|
52 |
+
#: bws_functions.php:103 bws_functions.php:907 class-bws-settings.php:1047
|
53 |
+
msgid "Visit Help Center"
|
54 |
+
msgstr "Kunjungi Pusat Bantuan"
|
55 |
+
|
56 |
+
#: bws_functions.php:106
|
57 |
+
msgid "Want to support the plugin?"
|
58 |
+
msgstr "Ingin mendukung plugin?"
|
59 |
+
|
60 |
+
#: bws_functions.php:107 bws_menu.php:553
|
61 |
+
msgid "Donate"
|
62 |
+
msgstr "Menyumbangkan"
|
63 |
+
|
64 |
+
#: bws_functions.php:127
|
65 |
+
msgid "WARNING: Illegal use notification"
|
66 |
+
msgstr "PERINGATAN: Illegal penggunaan notifikasi"
|
67 |
+
|
68 |
+
#: bws_functions.php:127
|
69 |
+
msgid ""
|
70 |
+
"You can use one license of the Pro plugin for one domain only. Please check "
|
71 |
+
"and edit your license or domain if necessary using you personal Client Area. "
|
72 |
+
"We strongly recommend you to solve the problem within 24 hours, otherwise "
|
73 |
+
"the Pro plugin will be deactivated."
|
74 |
+
msgstr ""
|
75 |
+
"Anda dapat menggunakan satu lisensi dari plugin Pro untuk satu domain saja. "
|
76 |
+
"Silakan periksa dan mengedit lisensi atau domain jika perlu menggunakan Anda "
|
77 |
+
"pribadi Area Klien. Kami sangat menyarankan Anda untuk memecahkan masalah "
|
78 |
+
"dalam waktu 24 jam, dinyatakan plugin Pro akan dinonaktifkan."
|
79 |
+
|
80 |
+
#: bws_functions.php:127 bws_functions.php:339 bws_menu.php:627
|
81 |
+
#: class-bws-settings.php:143
|
82 |
+
msgid "Learn More"
|
83 |
+
msgstr "Belajarlah lagi"
|
84 |
+
|
85 |
+
#: bws_functions.php:144
|
86 |
+
msgid ""
|
87 |
+
"Notice: Your Pro Trial license has expired. To continue using the plugin, "
|
88 |
+
"you should buy a Pro license"
|
89 |
+
msgstr ""
|
90 |
+
"Perhatikan: lisensi Percobaan Pro Anda telah kedaluwarsa. Untuk terus "
|
91 |
+
"menggunakan plugin, Anda harus membeli lisensi Pro"
|
92 |
+
|
93 |
+
#: bws_functions.php:146
|
94 |
+
msgid ""
|
95 |
+
"Your license has expired. To continue getting top-priority support and "
|
96 |
+
"plugin updates, you should extend it."
|
97 |
+
msgstr ""
|
98 |
+
"lisensi Anda telah berakhir. Untuk terus mendapatkan dukungan top-prioritas "
|
99 |
+
"dan update Plugin, Anda harus memperpanjang."
|
100 |
+
|
101 |
+
#: bws_functions.php:146 bws_functions.php:382 deprecated.php:584
|
102 |
+
msgid "Learn more"
|
103 |
+
msgstr "Belajarlah lagi"
|
104 |
+
|
105 |
+
#: bws_functions.php:164
|
106 |
+
#, php-format
|
107 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
108 |
+
msgstr "Perhatikan: Anda menggunakan lisensi Percobaan Pro dari %s Plugin."
|
109 |
+
|
110 |
+
#: bws_functions.php:166
|
111 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
112 |
+
msgstr "Perhatikan: Anda menggunakan lisensi Percobaan Pro plugin."
|
113 |
+
|
114 |
+
#: bws_functions.php:169
|
115 |
+
msgid "The Pro Trial license will expire on"
|
116 |
+
msgstr "Lisensi Percobaan Pro akan berakhir pada"
|
117 |
+
|
118 |
+
#: bws_functions.php:192
|
119 |
+
msgid ""
|
120 |
+
"or higher! We do not guarantee that our plugin will work correctly. Please "
|
121 |
+
"upgrade to WordPress latest version."
|
122 |
+
msgstr ""
|
123 |
+
"atau lebih tinggi! Kami tidak menjamin bahwa plugin kami akan bekerja dengan "
|
124 |
+
"benar. Silakan upgrade ke WordPress versi terbaru."
|
125 |
+
|
126 |
+
#: bws_functions.php:207
|
127 |
+
#, php-format
|
128 |
+
msgid "Thank you for installing %s plugin!"
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: bws_functions.php:208
|
132 |
+
msgid "Let's get started"
|
133 |
+
msgstr "Mari kita mulai"
|
134 |
+
|
135 |
+
#: bws_functions.php:209 bws_functions.php:242 bws_menu.php:557
|
136 |
+
#: bws_menu.php:559
|
137 |
+
msgid "Settings"
|
138 |
+
msgstr "pengaturan"
|
139 |
+
|
140 |
+
#: bws_functions.php:211 bws_menu.php:328 class-bws-settings.php:736
|
141 |
+
#: class-bws-settings.php:1049 class-bws-settings.php:1059 deprecated.php:694
|
142 |
+
msgid "or"
|
143 |
+
msgstr "atau"
|
144 |
+
|
145 |
+
#: bws_functions.php:212 bws_functions.php:244
|
146 |
+
msgid "Add New"
|
147 |
+
msgstr "Tambah baru"
|
148 |
+
|
149 |
+
#: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
|
150 |
+
#: bws_functions.php:378 bws_functions.php:480
|
151 |
+
msgid "Close notice"
|
152 |
+
msgstr "Tutup pemberitahuan"
|
153 |
+
|
154 |
+
#: bws_functions.php:231
|
155 |
+
msgid "Thank you for installing plugins by BestWebSoft!"
|
156 |
+
msgstr "Terima kasih untuk menginstal plugin dengan BestWebSoft!"
|
157 |
+
|
158 |
+
#: bws_functions.php:233
|
159 |
+
msgid "More Details"
|
160 |
+
msgstr "Keterangan lebih lanjut"
|
161 |
+
|
162 |
+
#: bws_functions.php:234
|
163 |
+
msgid "Less Details"
|
164 |
+
msgstr "Kurang Detail"
|
165 |
+
|
166 |
+
#: bws_functions.php:262
|
167 |
+
msgid "Deprecated function(-s) is used on the site here:"
|
168 |
+
msgstr "Fungsi usang (-s) digunakan di situs di sini:"
|
169 |
+
|
170 |
+
#: bws_functions.php:276
|
171 |
+
msgid ""
|
172 |
+
"This function(-s) will be removed over time. Please update the product(-s)."
|
173 |
+
msgstr ""
|
174 |
+
"Fungsi ini (-s) akan dihapus dari waktu ke waktu. Perbarui produk (-s)."
|
175 |
+
|
176 |
+
#: bws_functions.php:335
|
177 |
+
msgid "It’s time to upgrade your"
|
178 |
+
msgstr "Saatnya untuk meng-upgrade Anda"
|
179 |
+
|
180 |
+
#: bws_functions.php:335
|
181 |
+
msgid "to"
|
182 |
+
msgstr "untuk"
|
183 |
+
|
184 |
+
#: bws_functions.php:335
|
185 |
+
msgid "version!"
|
186 |
+
msgstr "versi!"
|
187 |
+
|
188 |
+
#: bws_functions.php:336
|
189 |
+
msgid "Extend standard plugin functionality with new great options."
|
190 |
+
msgstr "Memperluas fungsi Plugin standar dengan pilihan besar baru."
|
191 |
+
|
192 |
+
#: bws_functions.php:382
|
193 |
+
#, php-format
|
194 |
+
msgid ""
|
195 |
+
"Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
|
196 |
+
"SUPPORT or UPDATES."
|
197 |
+
msgstr ""
|
198 |
+
"Kunci lisensi untuk %s berakhir pada %s dan Anda tidak akan diberikan TOP-"
|
199 |
+
"PRIORITAS DUKUNGAN atau PEMBARUAN."
|
200 |
+
|
201 |
+
#: bws_functions.php:475
|
202 |
+
#, php-format
|
203 |
+
msgid "Thank you for choosing %s plugin!"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: bws_functions.php:476
|
207 |
+
msgid ""
|
208 |
+
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
209 |
+
"we'd love to hear about it!"
|
210 |
+
msgstr ""
|
211 |
+
"Jika Anda memiliki fitur, saran atau ide yang ingin Anda lihat di plugin, "
|
212 |
+
"kami akan senang mendengar tentang hal itu!"
|
213 |
+
|
214 |
+
#: bws_functions.php:477
|
215 |
+
msgid "Suggest a Feature"
|
216 |
+
msgstr "Sarankan Fitur sebuah"
|
217 |
+
|
218 |
+
#: bws_functions.php:493 class-bws-settings.php:533 class-bws-settings.php:536
|
219 |
+
#: class-bws-settings.php:584 class-bws-settings.php:587
|
220 |
+
msgid "Notice"
|
221 |
+
msgstr "Melihat"
|
222 |
+
|
223 |
+
#: bws_functions.php:493
|
224 |
+
msgid "The plugin's settings have been changed."
|
225 |
+
msgstr "pengaturan plugin ini telah berubah."
|
226 |
+
|
227 |
+
#: bws_functions.php:494 class-bws-settings.php:182 class-bws-settings.php:202
|
228 |
+
#: deprecated.php:640
|
229 |
+
msgid "Save Changes"
|
230 |
+
msgstr "Simpan perubahan"
|
231 |
+
|
232 |
+
#: bws_functions.php:508
|
233 |
+
msgid ""
|
234 |
+
"You can always look at premium options by checking the \"Pro Options\" in "
|
235 |
+
"the \"Misc\" tab."
|
236 |
+
msgstr ""
|
237 |
+
"Anda selalu dapat melihat pilihan premium dengan memeriksa \\ \"Pro Options "
|
238 |
+
"\" di \\ tab \"Misc \"."
|
239 |
+
|
240 |
+
#: bws_functions.php:629
|
241 |
+
msgid "Add BWS Shortcode"
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: bws_functions.php:630
|
245 |
+
msgid "Add BWS Plugins Shortcode"
|
246 |
+
msgstr "Tambahkan BWS Plugin pendek"
|
247 |
+
|
248 |
+
#: bws_functions.php:649
|
249 |
+
msgid "Add shortcode"
|
250 |
+
msgstr "Tambahkan shortcode"
|
251 |
+
|
252 |
+
#: bws_functions.php:649
|
253 |
+
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
254 |
+
msgstr "Tambahkan shortcode BestWebSoft plugin 'menggunakan tombol ini."
|
255 |
+
|
256 |
+
#: bws_functions.php:695
|
257 |
+
msgid "Close"
|
258 |
+
msgstr "Dekat"
|
259 |
+
|
260 |
+
#: bws_functions.php:787
|
261 |
+
msgid "Are you sure you want to restore default settings?"
|
262 |
+
msgstr "Apakah Anda yakin ingin mengembalikan pengaturan default?"
|
263 |
+
|
264 |
+
#: bws_functions.php:790
|
265 |
+
msgid "Yes, restore all settings"
|
266 |
+
msgstr "Ya, mengembalikan semua pengaturan"
|
267 |
+
|
268 |
+
#: bws_functions.php:791
|
269 |
+
msgid "No, go back to the settings page"
|
270 |
+
msgstr "Tidak, kembali ke halaman pengaturan"
|
271 |
+
|
272 |
+
#: bws_functions.php:833
|
273 |
+
msgid "Plugin"
|
274 |
+
msgstr "Plugin"
|
275 |
+
|
276 |
+
#: bws_functions.php:842
|
277 |
+
msgid "Shortcode settings"
|
278 |
+
msgstr "pengaturan shortcode"
|
279 |
+
|
280 |
+
#: bws_functions.php:847
|
281 |
+
msgid "The shortcode will be inserted"
|
282 |
+
msgstr "shortcode akan dimasukkan"
|
283 |
+
|
284 |
+
#: bws_functions.php:852
|
285 |
+
msgid "Insert"
|
286 |
+
msgstr "Memasukkan"
|
287 |
+
|
288 |
+
#: bws_functions.php:912
|
289 |
+
msgid "FAQ"
|
290 |
+
msgstr "FAQ"
|
291 |
+
|
292 |
+
#: bws_functions.php:918
|
293 |
+
msgid "For more information:"
|
294 |
+
msgstr "Untuk informasi lebih lanjut:"
|
295 |
+
|
296 |
+
#: bws_functions.php:919
|
297 |
+
msgid "Documentation"
|
298 |
+
msgstr "Dokumentasi"
|
299 |
+
|
300 |
+
#: bws_functions.php:920
|
301 |
+
msgid "Video Instructions"
|
302 |
+
msgstr "Petunjuk Video"
|
303 |
+
|
304 |
+
#: bws_functions.php:921
|
305 |
+
msgid "Submit a Request"
|
306 |
+
msgstr "Mengajukan permohonan"
|
307 |
+
|
308 |
+
#: bws_menu.php:101 class-bws-settings.php:781 deprecated.php:322
|
309 |
+
msgid "Wrong license key"
|
310 |
+
msgstr "kunci lisensi yang salah"
|
311 |
+
|
312 |
+
#: bws_menu.php:122 class-bws-settings.php:807 class-bws-settings.php:874
|
313 |
+
#: class-bws-settings.php:910 deprecated.php:133 deprecated.php:199
|
314 |
+
#: deprecated.php:352
|
315 |
+
msgid ""
|
316 |
+
"Something went wrong. Please try again later. If the error appears again, "
|
317 |
+
"please contact us"
|
318 |
+
msgstr ""
|
319 |
+
"Ada yang salah. Silakan coba lagi nanti. Jika kesalahan muncul lagi, "
|
320 |
+
"silahkan hubungi kami"
|
321 |
+
|
322 |
+
#: bws_menu.php:122 class-bws-settings.php:807 class-bws-settings.php:874
|
323 |
+
#: class-bws-settings.php:910 deprecated.php:133 deprecated.php:199
|
324 |
+
#: deprecated.php:352
|
325 |
+
msgid "We are sorry for inconvenience."
|
326 |
+
msgstr "Kami mohon maaf atas ketidaknyamanan."
|
327 |
+
|
328 |
+
#: bws_menu.php:128 class-bws-settings.php:813 class-bws-settings.php:916
|
329 |
+
#: deprecated.php:139 deprecated.php:358
|
330 |
+
msgid "Wrong license key."
|
331 |
+
msgstr "kunci lisensi yang salah."
|
332 |
+
|
333 |
+
#: bws_menu.php:130
|
334 |
+
msgid ""
|
335 |
+
"This license key is bound to another site. Change it via personal Client "
|
336 |
+
"Area."
|
337 |
+
msgstr ""
|
338 |
+
"kunci lisensi ini terikat ke situs lain. Mengubahnya melalui personal Area "
|
339 |
+
"Klien."
|
340 |
+
|
341 |
+
#: bws_menu.php:130
|
342 |
+
msgid "Log in"
|
343 |
+
msgstr "Masuk"
|
344 |
+
|
345 |
+
#: bws_menu.php:132 bws_menu.php:334 deprecated.php:261
|
346 |
+
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
347 |
+
msgstr "Sayangnya, Anda telah melebihi jumlah mencoba tersedia per hari."
|
348 |
+
|
349 |
+
#: bws_menu.php:134 class-bws-settings.php:922 deprecated.php:364
|
350 |
+
#, php-format
|
351 |
+
msgid ""
|
352 |
+
"Unfortunately, Your license has expired. To continue getting top-priority "
|
353 |
+
"support and plugin updates, you should extend it in your %s"
|
354 |
+
msgstr ""
|
355 |
+
"Sayangnya, lisensi Anda telah kedaluwarsa. Untuk terus mendapatkan dukungan "
|
356 |
+
"top-prioritas dan Plugin update, Anda harus memperpanjang di Anda %s"
|
357 |
+
|
358 |
+
#: bws_menu.php:136 class-bws-settings.php:924 deprecated.php:366
|
359 |
+
msgid ""
|
360 |
+
"Unfortunately, the Pro licence was already installed to this domain. The Pro "
|
361 |
+
"Trial license can be installed only once."
|
362 |
+
msgstr ""
|
363 |
+
"Sayangnya, lisensi Pro sudah dipasang untuk domain ini. Lisensi Percobaan "
|
364 |
+
"Pro dapat diinstal hanya sekali."
|
365 |
+
|
366 |
+
#: bws_menu.php:142 class-bws-settings.php:828 deprecated.php:153
|
367 |
+
msgid "The license key is valid."
|
368 |
+
msgstr "Kunci lisensi berlaku."
|
369 |
+
|
370 |
+
#: bws_menu.php:144 class-bws-settings.php:831 deprecated.php:156
|
371 |
+
msgid "Your license will expire on"
|
372 |
+
msgstr "lisensi Anda akan berakhir pada"
|
373 |
+
|
374 |
+
#: bws_menu.php:146
|
375 |
+
msgid "Congratulations! Pro Membership license is activated successfully."
|
376 |
+
msgstr "Selamat! lisensi Keanggotaan Pro berhasil diaktifkan."
|
377 |
+
|
378 |
+
#: bws_menu.php:153 class-bws-settings.php:996 deprecated.php:435
|
379 |
+
msgid ""
|
380 |
+
"Something went wrong. Try again later or upload the plugin manually. We are "
|
381 |
+
"sorry for inconvenience."
|
382 |
+
msgstr ""
|
383 |
+
"Ada yang salah. Coba lagi nanti atau meng-upload plugin secara manual. Kami "
|
384 |
+
"mohon maaf atas ketidaknyamanan."
|
385 |
+
|
386 |
+
#: bws_menu.php:163
|
387 |
+
msgid "Please enter your license key."
|
388 |
+
msgstr "Masukkan kunci lisensi Anda."
|
389 |
+
|
390 |
+
#: bws_menu.php:174
|
391 |
+
msgid "Not set"
|
392 |
+
msgstr "Tidak diatur"
|
393 |
+
|
394 |
+
#: bws_menu.php:176
|
395 |
+
msgid "On"
|
396 |
+
msgstr "Di"
|
397 |
+
|
398 |
+
#: bws_menu.php:176
|
399 |
+
msgid "Off"
|
400 |
+
msgstr "Mati"
|
401 |
+
|
402 |
+
#: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
|
403 |
+
#: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
|
404 |
+
msgid "N/A"
|
405 |
+
msgstr "N / A"
|
406 |
+
|
407 |
+
#: bws_menu.php:182
|
408 |
+
msgid " Mb"
|
409 |
+
msgstr " Mb"
|
410 |
+
|
411 |
+
#: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
|
412 |
+
msgid "Yes"
|
413 |
+
msgstr "iya nih"
|
414 |
+
|
415 |
+
#: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
|
416 |
+
msgid "No"
|
417 |
+
msgstr "Tidak"
|
418 |
+
|
419 |
+
#: bws_menu.php:196
|
420 |
+
msgid "WordPress Environment"
|
421 |
+
msgstr "WordPress Lingkungan"
|
422 |
+
|
423 |
+
#: bws_menu.php:198
|
424 |
+
msgid "Home URL"
|
425 |
+
msgstr "URL rumah"
|
426 |
+
|
427 |
+
#: bws_menu.php:199
|
428 |
+
msgid "Website URL"
|
429 |
+
msgstr "alamat situs web"
|
430 |
+
|
431 |
+
#: bws_menu.php:200
|
432 |
+
msgid "WP Version"
|
433 |
+
msgstr "WP Versi"
|
434 |
+
|
435 |
+
#: bws_menu.php:201
|
436 |
+
msgid "WP Multisite"
|
437 |
+
msgstr "WP Multisite"
|
438 |
+
|
439 |
+
#: bws_menu.php:202
|
440 |
+
msgid "WP Memory Limit"
|
441 |
+
msgstr "WP Memory Limit"
|
442 |
+
|
443 |
+
#: bws_menu.php:203
|
444 |
+
msgid "Active Theme"
|
445 |
+
msgstr "Tema aktif"
|
446 |
+
|
447 |
+
#: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
|
448 |
+
#, php-format
|
449 |
+
msgid "by %s"
|
450 |
+
msgstr "oleh %s"
|
451 |
+
|
452 |
+
#: bws_menu.php:207
|
453 |
+
msgid "Server Environment"
|
454 |
+
msgstr "Server Lingkungan"
|
455 |
+
|
456 |
+
#: bws_menu.php:209
|
457 |
+
msgid "Operating System"
|
458 |
+
msgstr "Sistem operasi"
|
459 |
+
|
460 |
+
#: bws_menu.php:210
|
461 |
+
msgid "Server"
|
462 |
+
msgstr "Server"
|
463 |
+
|
464 |
+
#: bws_menu.php:211
|
465 |
+
msgid "PHP Version"
|
466 |
+
msgstr "PHP Versi"
|
467 |
+
|
468 |
+
#: bws_menu.php:212
|
469 |
+
msgid "PHP Allow URL fopen"
|
470 |
+
msgstr "PHP Izinkan URL fopen"
|
471 |
+
|
472 |
+
#: bws_menu.php:213
|
473 |
+
msgid "PHP Memory Limit"
|
474 |
+
msgstr "PHP Memory Limit"
|
475 |
+
|
476 |
+
#: bws_menu.php:214
|
477 |
+
msgid "Memory Usage"
|
478 |
+
msgstr "memory Usage"
|
479 |
+
|
480 |
+
#: bws_menu.php:215
|
481 |
+
msgid "PHP Max Upload Size"
|
482 |
+
msgstr "Ukuran PHP Max Upload"
|
483 |
+
|
484 |
+
#: bws_menu.php:216
|
485 |
+
msgid "PHP Max Post Size"
|
486 |
+
msgstr "PHP Max Pos Ukuran"
|
487 |
+
|
488 |
+
#: bws_menu.php:217
|
489 |
+
msgid "PHP Max Script Execute Time"
|
490 |
+
msgstr "PHP Max Script Jalankan Waktu"
|
491 |
+
|
492 |
+
#: bws_menu.php:218
|
493 |
+
msgid "PHP Exif support"
|
494 |
+
msgstr "dukungan PHP Exif"
|
495 |
+
|
496 |
+
#: bws_menu.php:219
|
497 |
+
msgid "PHP IPTC support"
|
498 |
+
msgstr "dukungan PHP IPTC"
|
499 |
+
|
500 |
+
#: bws_menu.php:220
|
501 |
+
msgid "PHP XML support"
|
502 |
+
msgstr "dukungan XML PHP"
|
503 |
+
|
504 |
+
#: bws_menu.php:226
|
505 |
+
msgid "Database"
|
506 |
+
msgstr "database"
|
507 |
+
|
508 |
+
#: bws_menu.php:228
|
509 |
+
msgid "WP DB version"
|
510 |
+
msgstr "Versi WP DB"
|
511 |
+
|
512 |
+
#: bws_menu.php:229
|
513 |
+
msgid "MySQL version"
|
514 |
+
msgstr "versi MySQL"
|
515 |
+
|
516 |
+
#: bws_menu.php:230
|
517 |
+
msgid "SQL Mode"
|
518 |
+
msgstr "SQL Modus"
|
519 |
+
|
520 |
+
#: bws_menu.php:234
|
521 |
+
msgid "Active Plugins"
|
522 |
+
msgstr "Plugin aktif"
|
523 |
+
|
524 |
+
#: bws_menu.php:239
|
525 |
+
msgid "Inactive Plugins"
|
526 |
+
msgstr "Plugin tidak aktif"
|
527 |
+
|
528 |
+
#: bws_menu.php:260
|
529 |
+
msgid "Please enter a valid email address."
|
530 |
+
msgstr "Silakan isi alamat email."
|
531 |
+
|
532 |
+
#: bws_menu.php:264
|
533 |
+
msgid "Email with system info is sent to"
|
534 |
+
msgstr "Email dengan info sistem dikirim ke"
|
535 |
+
|
536 |
+
#: bws_menu.php:268
|
537 |
+
msgid "Thank you for contacting us."
|
538 |
+
msgstr "Terima kasih sudah menghubungi kami."
|
539 |
+
|
540 |
+
#: bws_menu.php:291
|
541 |
+
msgid "Sorry, email message could not be delivered."
|
542 |
+
msgstr "Maaf, pesan email tidak dapat disampaikan."
|
543 |
+
|
544 |
+
#: bws_menu.php:307 bws_menu.php:311 bws_menu.php:360 deprecated.php:91
|
545 |
+
msgid "Plugins"
|
546 |
+
msgstr "plugin"
|
547 |
+
|
548 |
+
#: bws_menu.php:308 bws_menu.php:312 bws_menu.php:611 deprecated.php:92
|
549 |
+
msgid "Themes"
|
550 |
+
msgstr "tema"
|
551 |
+
|
552 |
+
#: bws_menu.php:309 bws_menu.php:313 bws_menu.php:662
|
553 |
+
msgid "System status"
|
554 |
+
msgstr "Status sistem"
|
555 |
+
|
556 |
+
#: bws_menu.php:317
|
557 |
+
msgid "Support"
|
558 |
+
msgstr "Mendukung"
|
559 |
+
|
560 |
+
#: bws_menu.php:318
|
561 |
+
msgid "Manage purchased licenses & subscriptions"
|
562 |
+
msgstr "Mengelola membeli lisensi & langganan"
|
563 |
+
|
564 |
+
#: bws_menu.php:326
|
565 |
+
#, php-format
|
566 |
+
msgid "Get Access to %s+ Premium Plugins"
|
567 |
+
msgstr "Dapatkan Akses ke %s + Premium Plugin"
|
568 |
+
|
569 |
+
#: bws_menu.php:328
|
570 |
+
msgid "Subscribe to Pro Membership"
|
571 |
+
msgstr "Berlangganan Pro Keanggotaan"
|
572 |
+
|
573 |
+
#: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:749
|
574 |
+
#: deprecated.php:227
|
575 |
+
msgid "Check license key"
|
576 |
+
msgstr "Periksa kunci lisensi"
|
577 |
+
|
578 |
+
#: bws_menu.php:339
|
579 |
+
msgid "Enter your license key"
|
580 |
+
msgstr "Masukkan kunci lisensi Anda"
|
581 |
+
|
582 |
+
#: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
|
583 |
+
#: class-bws-settings.php:728 deprecated.php:259 deprecated.php:267
|
584 |
+
#: deprecated.php:629 deprecated.php:700 deprecated.php:709
|
585 |
+
msgid "Activate"
|
586 |
+
msgstr "Mengaktifkan"
|
587 |
+
|
588 |
+
#: bws_menu.php:361
|
589 |
+
msgid "Upload Plugin"
|
590 |
+
msgstr "Upload Plugin"
|
591 |
+
|
592 |
+
#: bws_menu.php:365
|
593 |
+
#, php-format
|
594 |
+
msgid ""
|
595 |
+
"The plugin generated %d characters of <strong>unexpected output</strong> "
|
596 |
+
"during activation. If you notice “headers already sent” "
|
597 |
+
"messages, problems with syndication feeds or other issues, try deactivating "
|
598 |
+
"or removing this plugin."
|
599 |
+
msgstr ""
|
600 |
+
"Plugin yang dihasilkan %d karakter dari <strong> tak terduga keluaran </ "
|
601 |
+
"strong> selama aktivasi. Jika Anda melihat & # 8220; header sudah dikirim & "
|
602 |
+
"# 8221; pesan, masalah dengan feed sindikasi atau masalah lain, coba "
|
603 |
+
"menonaktifkan atau menghapus plugin ini."
|
604 |
+
|
605 |
+
#: bws_menu.php:367
|
606 |
+
msgid ""
|
607 |
+
"Plugin could not be activated because it triggered a <strong>fatal error</"
|
608 |
+
"strong>."
|
609 |
+
msgstr ""
|
610 |
+
"Plugin tidak dapat diaktifkan karena memicu <strong> kesalahan fatal </ "
|
611 |
+
"strong>."
|
612 |
+
|
613 |
+
#: bws_menu.php:370
|
614 |
+
msgid "Plugin <strong>activated</strong>."
|
615 |
+
msgstr "Plugin <strong> diaktifkan </ strong>."
|
616 |
+
|
617 |
+
#: bws_menu.php:377
|
618 |
+
msgid "Installing Plugin"
|
619 |
+
msgstr "Instalasi Plugin"
|
620 |
+
|
621 |
+
#: bws_menu.php:383
|
622 |
+
msgid "Downloading install package from"
|
623 |
+
msgstr "Men-download menginstal paket dari"
|
624 |
+
|
625 |
+
#: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
|
626 |
+
#: class-bws-settings.php:948 class-bws-settings.php:970
|
627 |
+
#: class-bws-settings.php:992 deprecated.php:387 deprecated.php:409
|
628 |
+
#: deprecated.php:431
|
629 |
+
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
630 |
+
msgstr "Gagal mengunduh arsip zip. Silakan, upload plugin secara manual"
|
631 |
+
|
632 |
+
#: bws_menu.php:408
|
633 |
+
msgid "Unpacking the package"
|
634 |
+
msgstr "Membuka paket"
|
635 |
+
|
636 |
+
#: bws_menu.php:413 bws_menu.php:421
|
637 |
+
msgid "Installing the plugin"
|
638 |
+
msgstr "Instalasi plugin"
|
639 |
+
|
640 |
+
#: bws_menu.php:417 class-bws-settings.php:960 deprecated.php:399
|
641 |
+
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
642 |
+
msgstr "Gagal membuka arsip zip. Silakan, upload plugin secara manual"
|
643 |
+
|
644 |
+
#: bws_menu.php:424 class-bws-settings.php:966 deprecated.php:405
|
645 |
+
msgid ""
|
646 |
+
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
647 |
+
"plugin manually"
|
648 |
+
msgstr ""
|
649 |
+
"server Anda tidak mendukung baik ZipArchive atau Phar. Silakan, upload "
|
650 |
+
"plugin secara manual"
|
651 |
+
|
652 |
+
#: bws_menu.php:427
|
653 |
+
#, php-format
|
654 |
+
msgid "The plugin %s is successfully installed."
|
655 |
+
msgstr "Plugin %s berhasil diinstal."
|
656 |
+
|
657 |
+
#: bws_menu.php:434 class-bws-settings.php:973 deprecated.php:412
|
658 |
+
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
659 |
+
msgstr "UploadDir tidak dapat ditulis. Silakan, upload plugin secara manual"
|
660 |
+
|
661 |
+
#: bws_menu.php:439
|
662 |
+
msgid "Activate Plugin"
|
663 |
+
msgstr "Aktifkan Plugin"
|
664 |
+
|
665 |
+
#: bws_menu.php:439 bws_menu.php:445
|
666 |
+
msgid "Return to BestWebSoft Panel"
|
667 |
+
msgstr "Kembali ke BestWebSoft Panel"
|
668 |
+
|
669 |
+
#: bws_menu.php:449 bws_menu.php:464 bws_menu.php:593
|
670 |
+
msgid "All"
|
671 |
+
msgstr "Semua"
|
672 |
+
|
673 |
+
#: bws_menu.php:450 bws_menu.php:650
|
674 |
+
msgid "Installed"
|
675 |
+
msgstr "dipasang"
|
676 |
+
|
677 |
+
#: bws_menu.php:451
|
678 |
+
msgid "Not Installed"
|
679 |
+
msgstr "Tidak terpasang"
|
680 |
+
|
681 |
+
#: bws_menu.php:457
|
682 |
+
msgid "Filter results"
|
683 |
+
msgstr "Filter hasil"
|
684 |
+
|
685 |
+
#: bws_menu.php:460 bws_menu.php:589
|
686 |
+
msgid "Category"
|
687 |
+
msgstr "Kategori"
|
688 |
+
|
689 |
+
#: bws_menu.php:524
|
690 |
+
msgid "Not installed"
|
691 |
+
msgstr "Tidak terpasang"
|
692 |
+
|
693 |
+
#: bws_menu.php:528
|
694 |
+
msgid "Renew to get updates"
|
695 |
+
msgstr "Renew untuk mendapatkan update"
|
696 |
+
|
697 |
+
#: bws_menu.php:531
|
698 |
+
#, php-format
|
699 |
+
msgid "Update to v %s"
|
700 |
+
msgstr "Update untuk v %s"
|
701 |
+
|
702 |
+
#: bws_menu.php:543 bws_menu.php:566 bws_menu.php:575
|
703 |
+
msgid "Install Now"
|
704 |
+
msgstr "Pasang sekarang"
|
705 |
+
|
706 |
+
#: bws_menu.php:549 class-bws-settings.php:156 class-bws-settings.php:1056
|
707 |
+
msgid "Upgrade to Pro"
|
708 |
+
msgstr "Upgrade ke yang lebih baik"
|
709 |
+
|
710 |
+
#: bws_menu.php:563 bws_menu.php:572
|
711 |
+
msgid "Activate this plugin"
|
712 |
+
msgstr "Aktifkan plugin ini"
|
713 |
+
|
714 |
+
#: bws_menu.php:575
|
715 |
+
msgid "Install this plugin"
|
716 |
+
msgstr "Menginstal plugin ini"
|
717 |
+
|
718 |
+
#: bws_menu.php:584
|
719 |
+
msgid "Nothing found. Try another criteria."
|
720 |
+
msgstr "Tidak ada yang ditemukan. Coba kriteria lain."
|
721 |
+
|
722 |
+
#: bws_menu.php:621 bws_menu.php:641
|
723 |
+
#, php-format
|
724 |
+
msgid "By %s"
|
725 |
+
msgstr "Oleh %s"
|
726 |
+
|
727 |
+
#: bws_menu.php:648
|
728 |
+
msgid "Already Installed"
|
729 |
+
msgstr "sudah Dipasang"
|
730 |
+
|
731 |
+
#: bws_menu.php:659
|
732 |
+
msgid "Browse Free WordPress Themes"
|
733 |
+
msgstr "Isi Gratis WordPress Themes"
|
734 |
+
|
735 |
+
#: bws_menu.php:668
|
736 |
+
msgid "Send to support"
|
737 |
+
msgstr "Kirim untuk mendukung"
|
738 |
+
|
739 |
+
#: bws_menu.php:675
|
740 |
+
msgid "Send to custom email »"
|
741 |
+
msgstr "Kirim ke email khusus & # 187;"
|
742 |
+
|
743 |
+
#: class-bws-settings.php:135
|
744 |
+
msgid "Information"
|
745 |
+
msgstr "Informasi"
|
746 |
+
|
747 |
+
#: class-bws-settings.php:143
|
748 |
+
msgid "Inactive"
|
749 |
+
msgstr "non-aktif"
|
750 |
+
|
751 |
+
#: class-bws-settings.php:151
|
752 |
+
msgid "Expired"
|
753 |
+
msgstr "kedaluwarsa"
|
754 |
+
|
755 |
+
#: class-bws-settings.php:154
|
756 |
+
#, php-format
|
757 |
+
msgid "%s day(-s) left"
|
758 |
+
msgstr "%s hari (-s) kiri"
|
759 |
+
|
760 |
+
#: class-bws-settings.php:160
|
761 |
+
#, php-format
|
762 |
+
msgid "Expired on %s"
|
763 |
+
msgstr "Berakhir pada %s"
|
764 |
+
|
765 |
+
#: class-bws-settings.php:160
|
766 |
+
msgid "Renew Now"
|
767 |
+
msgstr "Perbarui sekarang"
|
768 |
+
|
769 |
+
#: class-bws-settings.php:162
|
770 |
+
msgid "Active"
|
771 |
+
msgstr "Aktif"
|
772 |
+
|
773 |
+
#: class-bws-settings.php:167
|
774 |
+
msgid "License"
|
775 |
+
msgstr "Lisensi"
|
776 |
+
|
777 |
+
#: class-bws-settings.php:170
|
778 |
+
msgid "Status"
|
779 |
+
msgstr "Status"
|
780 |
+
|
781 |
+
#: class-bws-settings.php:174
|
782 |
+
msgid "Version"
|
783 |
+
msgstr "Versi"
|
784 |
+
|
785 |
+
#: class-bws-settings.php:282
|
786 |
+
msgid "All plugin settings were restored."
|
787 |
+
msgstr "Semua pengaturan Plugin dipulihkan."
|
788 |
+
|
789 |
+
#: class-bws-settings.php:420
|
790 |
+
msgid "Custom Code"
|
791 |
+
msgstr "Kode kustom"
|
792 |
+
|
793 |
+
#: class-bws-settings.php:424 deprecated.php:497
|
794 |
+
msgid "You do not have sufficient permissions to edit plugins for this site."
|
795 |
+
msgstr ""
|
796 |
+
"Anda tidak memiliki cukup izin untuk menyunting plugin untuk situs ini."
|
797 |
+
|
798 |
+
#: class-bws-settings.php:429 deprecated.php:618
|
799 |
+
msgid "These styles will be added to the header on all pages of your site."
|
800 |
+
msgstr "Gaya ini akan ditambahkan ke header pada semua halaman situs Anda."
|
801 |
+
|
802 |
+
#: class-bws-settings.php:432 deprecated.php:620
|
803 |
+
#, php-format
|
804 |
+
msgid ""
|
805 |
+
"This PHP code will be hooked to the %s action and will be printed on front "
|
806 |
+
"end only."
|
807 |
+
msgstr ""
|
808 |
+
"Kode PHP ini akan ketagihan untuk %s tindakan dan akan dicetak pada ujung "
|
809 |
+
"depan saja."
|
810 |
+
|
811 |
+
#: class-bws-settings.php:435
|
812 |
+
msgid "These code will be added to the header on all pages of your site."
|
813 |
+
msgstr "Kode ini akan ditambahkan ke header pada semua halaman situs Anda."
|
814 |
+
|
815 |
+
#: class-bws-settings.php:443 deprecated.php:644
|
816 |
+
#, php-format
|
817 |
+
msgid ""
|
818 |
+
"You need to make this files writable before you can save your changes. See "
|
819 |
+
"%s the Codex %s for more information."
|
820 |
+
msgstr ""
|
821 |
+
"Anda perlu membuat file ini ditulis sebelum Anda dapat menyimpan perubahan. "
|
822 |
+
"Lihat %s Codex %s untuk informasi lebih lanjut."
|
823 |
+
|
824 |
+
#: class-bws-settings.php:453 deprecated.php:626
|
825 |
+
msgid "Browsing"
|
826 |
+
msgstr "Browsing"
|
827 |
+
|
828 |
+
#: class-bws-settings.php:457
|
829 |
+
#, php-format
|
830 |
+
msgid "Activate custom %s code."
|
831 |
+
msgstr "Aktifkan kustom %s kode."
|
832 |
+
|
833 |
+
#: class-bws-settings.php:464 deprecated.php:633
|
834 |
+
#, php-format
|
835 |
+
msgid "Learn more about %s"
|
836 |
+
msgstr "Pelajari lebih lanjut tentang %s"
|
837 |
+
|
838 |
+
#: class-bws-settings.php:524
|
839 |
+
msgid "Miscellaneous Settings"
|
840 |
+
msgstr "Pengaturan Miscellaneous"
|
841 |
+
|
842 |
+
#: class-bws-settings.php:533 class-bws-settings.php:584
|
843 |
+
#, php-format
|
844 |
+
msgid ""
|
845 |
+
"It is prohibited to change %s settings on this site in the %s network "
|
846 |
+
"settings."
|
847 |
+
msgstr ""
|
848 |
+
"Dilarang mengubah %s pengaturan di situs ini di %s pengaturan jaringan."
|
849 |
+
|
850 |
+
#: class-bws-settings.php:536 class-bws-settings.php:587
|
851 |
+
#, php-format
|
852 |
+
msgid ""
|
853 |
+
"It is prohibited to view %s settings on this site in the %s network settings."
|
854 |
+
msgstr "Dilarang melihat %s pengaturan di situs ini di %s pengaturan jaringan."
|
855 |
+
|
856 |
+
#: class-bws-settings.php:545
|
857 |
+
msgid "Pro Options"
|
858 |
+
msgstr "Pro Pilihan"
|
859 |
+
|
860 |
+
#: class-bws-settings.php:548
|
861 |
+
msgid "Enable to display plugin Pro options."
|
862 |
+
msgstr "Memungkinkan untuk menampilkan opsi Pro Plugin."
|
863 |
+
|
864 |
+
#: class-bws-settings.php:553
|
865 |
+
msgid "Track Usage"
|
866 |
+
msgstr "track Penggunaan"
|
867 |
+
|
868 |
+
#: class-bws-settings.php:556
|
869 |
+
msgid ""
|
870 |
+
"Enable to allow tracking plugin usage anonymously in order to make it better."
|
871 |
+
msgstr ""
|
872 |
+
"Aktifkan untuk memungkinkan pelacakan penggunaan Plugin anonim untuk "
|
873 |
+
"membuatnya lebih baik."
|
874 |
+
|
875 |
+
#: class-bws-settings.php:560
|
876 |
+
msgid "Default Settings"
|
877 |
+
msgstr "Pengaturan default"
|
878 |
+
|
879 |
+
#: class-bws-settings.php:562
|
880 |
+
msgid "Restore Settings"
|
881 |
+
msgstr "Kembalikan Pengaturan"
|
882 |
+
|
883 |
+
#: class-bws-settings.php:563
|
884 |
+
msgid "This will restore plugin settings to defaults."
|
885 |
+
msgstr "Ini akan mengembalikan pengaturan plugin untuk default."
|
886 |
+
|
887 |
+
#: class-bws-settings.php:575
|
888 |
+
msgid "Import / Export"
|
889 |
+
msgstr "Ekspor Impor"
|
890 |
+
|
891 |
+
#: class-bws-settings.php:691 class-bws-settings.php:724
|
892 |
+
#: class-bws-settings.php:746
|
893 |
+
msgid "License Key"
|
894 |
+
msgstr "Kunci lisensi"
|
895 |
+
|
896 |
+
#: class-bws-settings.php:714
|
897 |
+
msgid "Congratulations! Pro license is activated successfully."
|
898 |
+
msgstr "Selamat! lisensi Pro berhasil diaktifkan."
|
899 |
+
|
900 |
+
#: class-bws-settings.php:715
|
901 |
+
#, php-format
|
902 |
+
msgid "You will be automatically redirected to the %s in %s seconds."
|
903 |
+
msgstr ""
|
904 |
+
|
905 |
+
#: class-bws-settings.php:715
|
906 |
+
msgid "Settings page"
|
907 |
+
msgstr "halaman pengaturan"
|
908 |
+
|
909 |
+
#: class-bws-settings.php:730
|
910 |
+
#, php-format
|
911 |
+
msgid "Enter your license key to activate %s and get premium plugin features."
|
912 |
+
msgstr ""
|
913 |
+
"Masukkan kunci lisensi Anda untuk mengaktifkan %s dan mendapatkan fitur "
|
914 |
+
"Plugin premium."
|
915 |
+
|
916 |
+
#: class-bws-settings.php:733 class-bws-settings.php:920 deprecated.php:362
|
917 |
+
#: deprecated.php:703
|
918 |
+
msgid ""
|
919 |
+
"Unfortunately, you have exceeded the number of available tries per day. "
|
920 |
+
"Please, upload the plugin manually."
|
921 |
+
msgstr ""
|
922 |
+
"Sayangnya, Anda telah melebihi jumlah mencoba tersedia per hari. Silakan, "
|
923 |
+
"upload plugin secara manual."
|
924 |
+
|
925 |
+
#: class-bws-settings.php:736 deprecated.php:694
|
926 |
+
#, php-format
|
927 |
+
msgid "Start Your Free %s-Day Trial Now"
|
928 |
+
msgstr "Mulai Anda gratis %s -Day Percobaan Sekarang"
|
929 |
+
|
930 |
+
#: class-bws-settings.php:751
|
931 |
+
msgid ""
|
932 |
+
"If necessary, you can check if the license key is correct or reenter it in "
|
933 |
+
"the field below."
|
934 |
+
msgstr ""
|
935 |
+
"Jika perlu, Anda dapat memeriksa apakah kunci lisensi benar atau masuk "
|
936 |
+
"kembali ke dalam bidang di bawah."
|
937 |
+
|
938 |
+
#: class-bws-settings.php:756
|
939 |
+
msgid "Manage License Settings"
|
940 |
+
msgstr "Kelola Setelan License"
|
941 |
+
|
942 |
+
#: class-bws-settings.php:758
|
943 |
+
msgid "Login to Client Area"
|
944 |
+
msgstr "Login ke Area Klien"
|
945 |
+
|
946 |
+
#: class-bws-settings.php:760
|
947 |
+
msgid ""
|
948 |
+
"Manage active licenses, download BWS products, and view your payment history "
|
949 |
+
"using BestWebSoft Client Area."
|
950 |
+
msgstr ""
|
951 |
+
"Mengelola lisensi aktif, men-download produk BWS, dan melihat riwayat "
|
952 |
+
"pembayaran Anda menggunakan BestWebSoft Client Area."
|
953 |
+
|
954 |
+
#: class-bws-settings.php:815 class-bws-settings.php:918 deprecated.php:141
|
955 |
+
#: deprecated.php:360
|
956 |
+
msgid "This license key is bound to another site."
|
957 |
+
msgstr "kunci lisensi ini terikat ke situs lain."
|
958 |
+
|
959 |
+
#: class-bws-settings.php:817 deprecated.php:143
|
960 |
+
msgid ""
|
961 |
+
"This license key is valid, but Your license has expired. If you want to "
|
962 |
+
"update our plugin in future, you should extend the license."
|
963 |
+
msgstr ""
|
964 |
+
"kunci lisensi ini berlaku, tetapi lisensi Anda telah kedaluwarsa. Jika Anda "
|
965 |
+
"ingin memperbarui plugin kami di masa depan, Anda harus memperpanjang "
|
966 |
+
"lisensi."
|
967 |
+
|
968 |
+
#: class-bws-settings.php:819 deprecated.php:145
|
969 |
+
msgid "Unfortunately, you have exceeded the number of available tries."
|
970 |
+
msgstr "Sayangnya, Anda telah melebihi jumlah mencoba tersedia."
|
971 |
+
|
972 |
+
#: class-bws-settings.php:821 deprecated.php:147
|
973 |
+
msgid ""
|
974 |
+
"Unfortunately, the Pro Trial licence was already installed to this domain. "
|
975 |
+
"The Pro Trial license can be installed only once."
|
976 |
+
msgstr ""
|
977 |
+
"Sayangnya, lisensi Percobaan Pro sudah dipasang untuk domain ini. Lisensi "
|
978 |
+
"Percobaan Pro dapat diinstal hanya sekali."
|
979 |
+
|
980 |
+
#: class-bws-settings.php:826 deprecated.php:151
|
981 |
+
msgid "The Pro Trial license key is valid."
|
982 |
+
msgstr "Kunci lisensi Percobaan Pro berlaku."
|
983 |
+
|
984 |
+
#: class-bws-settings.php:834 deprecated.php:159 deprecated.php:246
|
985 |
+
#, php-format
|
986 |
+
msgid ""
|
987 |
+
"In order to continue using the plugin it is necessary to buy a %s license."
|
988 |
+
msgstr ""
|
989 |
+
"Dalam rangka untuk terus menggunakan plugin perlu untuk membeli %s lisensi."
|
990 |
+
|
991 |
+
#: class-bws-settings.php:1031 deprecated.php:463
|
992 |
+
msgid "Please, enter Your license key"
|
993 |
+
msgstr "Silakan, masukkan kunci lisensi Anda"
|
994 |
+
|
995 |
+
#: class-bws-settings.php:1043
|
996 |
+
msgid "Need Help?"
|
997 |
+
msgstr "Butuh bantuan?"
|
998 |
+
|
999 |
+
#: class-bws-settings.php:1045
|
1000 |
+
msgid "Read the Instruction"
|
1001 |
+
msgstr "Baca Instruksi"
|
1002 |
+
|
1003 |
+
#: class-bws-settings.php:1049
|
1004 |
+
msgid "Watch the Video"
|
1005 |
+
msgstr "Saksikan Video"
|
1006 |
+
|
1007 |
+
#: class-bws-settings.php:1060
|
1008 |
+
msgid "Start Your Free Trial"
|
1009 |
+
msgstr "Mulai Uji Coba Gratis"
|
1010 |
+
|
1011 |
+
#: deprecated.php:93
|
1012 |
+
msgid "System Status"
|
1013 |
+
msgstr "Status sistem"
|
1014 |
+
|
1015 |
+
#: deprecated.php:204
|
1016 |
+
msgid "Please, enter your license key"
|
1017 |
+
msgstr "Silakan, masukkan kunci lisensi Anda"
|
1018 |
+
|
1019 |
+
#: deprecated.php:223
|
1020 |
+
msgid ""
|
1021 |
+
"If necessary, you can check if the license key is correct or reenter it in "
|
1022 |
+
"the field below. You can find your license key on your personal page - "
|
1023 |
+
"Client Area - on our website"
|
1024 |
+
msgstr ""
|
1025 |
+
"Jika perlu, Anda dapat memeriksa apakah kunci lisensi benar atau masuk "
|
1026 |
+
"kembali ke dalam bidang di bawah. Anda dapat menemukan kunci lisensi Anda "
|
1027 |
+
"pada halaman pribadi Anda - Area Klien - di website kami"
|
1028 |
+
|
1029 |
+
#: deprecated.php:223
|
1030 |
+
msgid ""
|
1031 |
+
"(your username is the email address specified during the purchase). If "
|
1032 |
+
"necessary, please submit \"Lost your password?\" request."
|
1033 |
+
msgstr ""
|
1034 |
+
"(Nama pengguna adalah alamat email yang ditentukan selama pembelian). Jika "
|
1035 |
+
"perlu, silahkan pilih \\ \"Kehilangan kata sandi Anda? \" Permintaan."
|
1036 |
+
|
1037 |
+
#: deprecated.php:247
|
1038 |
+
msgid "After that, you can activate it by entering your license key."
|
1039 |
+
msgstr ""
|
1040 |
+
"Setelah itu, Anda dapat mengaktifkannya dengan memasukkan kunci lisensi Anda."
|
1041 |
+
|
1042 |
+
#: deprecated.php:249 deprecated.php:688
|
1043 |
+
msgid "License key can be found in the"
|
1044 |
+
msgstr "kunci lisensi dapat ditemukan di"
|
1045 |
+
|
1046 |
+
#: deprecated.php:251 deprecated.php:690
|
1047 |
+
msgid "(your username is the email address specified during the purchase)."
|
1048 |
+
msgstr "(Nama pengguna adalah alamat email yang ditentukan selama pembelian)."
|
1049 |
+
|
1050 |
+
#: deprecated.php:278
|
1051 |
+
msgid ""
|
1052 |
+
"Congratulations! The Pro license of the plugin is activated successfully."
|
1053 |
+
msgstr "Selamat! Lisensi Pro plugin tersebut berhasil diaktifkan."
|
1054 |
+
|
1055 |
+
#: deprecated.php:280 deprecated.php:669
|
1056 |
+
msgid "Please, go to"
|
1057 |
+
msgstr "Tolong, pergi ke"
|
1058 |
+
|
1059 |
+
#: deprecated.php:280 deprecated.php:669
|
1060 |
+
msgid "the setting page"
|
1061 |
+
msgstr "halaman pengaturan"
|
1062 |
+
|
1063 |
+
#: deprecated.php:281 deprecated.php:670
|
1064 |
+
msgid "You will be redirected automatically in 5 seconds."
|
1065 |
+
msgstr "Anda akan diarahkan secara otomatis dalam 5 detik."
|
1066 |
+
|
1067 |
+
#: deprecated.php:315
|
1068 |
+
msgid "Check premium options on the plugin settings page!"
|
1069 |
+
msgstr "Periksa pilihan premium di halaman pengaturan plugin!"
|
1070 |
+
|
1071 |
+
#: deprecated.php:478
|
1072 |
+
msgid "Restore all plugin settings to defaults"
|
1073 |
+
msgstr "Mengembalikan semua pengaturan plugin untuk default"
|
1074 |
+
|
1075 |
+
#: deprecated.php:480
|
1076 |
+
msgid "Restore settings"
|
1077 |
+
msgstr "mengembalikan pengaturan"
|
1078 |
+
|
1079 |
+
#: deprecated.php:548 deprecated.php:575
|
1080 |
+
#, php-format
|
1081 |
+
msgid "File %s edited successfully."
|
1082 |
+
msgstr "File %s berhasil diedit."
|
1083 |
+
|
1084 |
+
#: deprecated.php:550 deprecated.php:577
|
1085 |
+
msgid "Not enough permissions to create or update the file"
|
1086 |
+
msgstr "Tidak cukup izin untuk membuat atau memperbarui file"
|
1087 |
+
|
1088 |
+
#: deprecated.php:580
|
1089 |
+
msgid "Not enough permissions to create the file"
|
1090 |
+
msgstr "Tidak cukup izin untuk membuat file"
|
1091 |
+
|
1092 |
+
#: deprecated.php:624
|
1093 |
+
msgid "Editing"
|
1094 |
+
msgstr "editing"
|
1095 |
+
|
1096 |
+
#: deprecated.php:667
|
1097 |
+
msgid ""
|
1098 |
+
"Congratulations! Pro version of the plugin is installed and activated "
|
1099 |
+
"successfully."
|
1100 |
+
msgstr "Selamat! Versi Pro plugin diinstal dan diaktifkan berhasil."
|
1101 |
+
|
1102 |
+
#: deprecated.php:677
|
1103 |
+
msgid "Show Pro features"
|
1104 |
+
msgstr "Tampilkan fitur Pro"
|
1105 |
+
|
1106 |
+
#: deprecated.php:684
|
1107 |
+
msgid "Enter your license key to install and activate"
|
1108 |
+
msgstr "Masukkan kunci lisensi Anda untuk menginstal dan mengaktifkan"
|
1109 |
+
|
1110 |
+
#: deprecated.php:686
|
1111 |
+
msgid "version of the plugin."
|
1112 |
+
msgstr "versi plugin."
|
1113 |
+
|
1114 |
+
#: product_list.php:7
|
1115 |
+
msgid "Admin Tools"
|
1116 |
+
msgstr ""
|
1117 |
+
|
1118 |
+
#: product_list.php:8
|
1119 |
+
msgid "Content"
|
1120 |
+
msgstr ""
|
1121 |
+
|
1122 |
+
#: product_list.php:9
|
1123 |
+
msgid "eCommerce"
|
1124 |
+
msgstr ""
|
1125 |
+
|
1126 |
+
#: product_list.php:10
|
1127 |
+
msgid "Marketing"
|
1128 |
+
msgstr ""
|
1129 |
+
|
1130 |
+
#: product_list.php:11
|
1131 |
+
msgid "Navigation"
|
1132 |
+
msgstr ""
|
1133 |
+
|
1134 |
+
#: product_list.php:12
|
1135 |
+
msgid "Recommended"
|
1136 |
+
msgstr "Direkomendasikan"
|
1137 |
+
|
1138 |
+
#: product_list.php:13
|
1139 |
+
msgid "Security"
|
1140 |
+
msgstr "Keamanan"
|
1141 |
+
|
1142 |
+
#: product_list.php:14
|
1143 |
+
msgid "SEO"
|
1144 |
+
msgstr ""
|
1145 |
+
|
1146 |
+
#: product_list.php:15
|
1147 |
+
msgid "SMM"
|
1148 |
+
msgstr ""
|
1149 |
+
|
1150 |
+
#: product_list.php:22
|
1151 |
+
msgid ""
|
1152 |
+
"Protect WordPress website forms from spam entries by means of math logic."
|
1153 |
+
msgstr ""
|
1154 |
+
|
1155 |
+
#: product_list.php:32
|
1156 |
+
msgid "Create your personal car rental/booking and reservation website."
|
1157 |
+
msgstr ""
|
1158 |
+
|
1159 |
+
#: product_list.php:42
|
1160 |
+
msgid ""
|
1161 |
+
"Allow customers to reach you using secure contact form plugin any website "
|
1162 |
+
"must have."
|
1163 |
+
msgstr ""
|
1164 |
+
|
1165 |
+
#: product_list.php:52
|
1166 |
+
msgid "Add unlimited number of contact forms to WordPress website."
|
1167 |
+
msgstr ""
|
1168 |
+
|
1169 |
+
#: product_list.php:62
|
1170 |
+
msgid "Save and manage Contact Form messages. Never lose important data."
|
1171 |
+
msgstr ""
|
1172 |
+
|
1173 |
+
#: product_list.php:72
|
1174 |
+
msgid "Add unlimited custom pages to WordPress admin dashboard."
|
1175 |
+
msgstr ""
|
1176 |
+
|
1177 |
+
#: product_list.php:79
|
1178 |
+
msgid "Add custom fields to WordPress website search results."
|
1179 |
+
msgstr ""
|
1180 |
+
|
1181 |
+
#: product_list.php:86
|
1182 |
+
msgid ""
|
1183 |
+
"Add custom post types and taxonomies to WordPress website search results."
|
1184 |
+
msgstr ""
|
1185 |
+
|
1186 |
+
#: product_list.php:96
|
1187 |
+
msgid "Add PayPal and 2CO donate buttons to receive charity payments."
|
1188 |
+
msgstr ""
|
1189 |
+
|
1190 |
+
#: product_list.php:103
|
1191 |
+
msgid ""
|
1192 |
+
"Automatically add outgoing email messages to queue instead of sending them "
|
1193 |
+
"immediately."
|
1194 |
+
msgstr ""
|
1195 |
+
|
1196 |
+
#: product_list.php:110
|
1197 |
+
msgid ""
|
1198 |
+
"Get latest error log messages to diagnose website problems. Define and fix "
|
1199 |
+
"issues faster."
|
1200 |
+
msgstr ""
|
1201 |
+
|
1202 |
+
#: product_list.php:117
|
1203 |
+
msgid ""
|
1204 |
+
"Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
|
1205 |
+
"widgets."
|
1206 |
+
msgstr ""
|
1207 |
+
|
1208 |
+
#: product_list.php:127
|
1209 |
+
msgid ""
|
1210 |
+
"Add beautiful galleries, albums & images to your WordPress website in a few "
|
1211 |
+
"clicks."
|
1212 |
+
msgstr ""
|
1213 |
+
|
1214 |
+
#: product_list.php:137
|
1215 |
+
msgid ""
|
1216 |
+
"Add unlimited gallery categories. Organize images to make the navigation "
|
1217 |
+
"through content easier."
|
1218 |
+
msgstr ""
|
1219 |
+
|
1220 |
+
#: product_list.php:144
|
1221 |
+
msgid ""
|
1222 |
+
"Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
|
1223 |
+
"posts, pages and widgets."
|
1224 |
+
msgstr ""
|
1225 |
+
|
1226 |
+
#: product_list.php:154
|
1227 |
+
msgid ""
|
1228 |
+
"Stronger security solution which protects your WordPress website from hacks "
|
1229 |
+
"and unauthorized login attempts."
|
1230 |
+
msgstr ""
|
1231 |
+
|
1232 |
+
#: product_list.php:164
|
1233 |
+
msgid ""
|
1234 |
+
"Add Adsense ads to WordPress website pages, posts, custom posts, search "
|
1235 |
+
"results, categories, tags, and widgets."
|
1236 |
+
msgstr ""
|
1237 |
+
|
1238 |
+
#: product_list.php:174
|
1239 |
+
msgid "Add Google Analytics code to WordPress website and track basic stats."
|
1240 |
+
msgstr ""
|
1241 |
+
|
1242 |
+
#: product_list.php:184
|
1243 |
+
msgid ""
|
1244 |
+
"Protect WordPress website forms from spam entries with Google Captcha "
|
1245 |
+
"(reCaptcha)."
|
1246 |
+
msgstr ""
|
1247 |
+
|
1248 |
+
#: product_list.php:194
|
1249 |
+
msgid "Add customized Google maps to WordPress posts, pages and widgets."
|
1250 |
+
msgstr ""
|
1251 |
+
|
1252 |
+
#: product_list.php:204
|
1253 |
+
msgid ""
|
1254 |
+
"Generate and add XML sitemap to WordPress website. Help search engines index "
|
1255 |
+
"your blog."
|
1256 |
+
msgstr ""
|
1257 |
+
|
1258 |
+
#: product_list.php:214
|
1259 |
+
msgid ""
|
1260 |
+
"Replace external WordPress website links with Google shortlinks and track "
|
1261 |
+
"click stats."
|
1262 |
+
msgstr ""
|
1263 |
+
|
1264 |
+
#: product_list.php:221
|
1265 |
+
msgid ""
|
1266 |
+
"Protect WordPress website – allow and deny access for certain IP addresses, "
|
1267 |
+
"hostnames, etc."
|
1268 |
+
msgstr ""
|
1269 |
+
|
1270 |
+
#: product_list.php:231
|
1271 |
+
msgid ""
|
1272 |
+
"Create your personal job board and listing WordPress website. Search jobs, "
|
1273 |
+
"submit CV/resumes, choose candidates."
|
1274 |
+
msgstr ""
|
1275 |
+
|
1276 |
+
#: product_list.php:238
|
1277 |
+
msgid ""
|
1278 |
+
"Protect WordPress website against brute force attacks. Limit rate of login "
|
1279 |
+
"attempts."
|
1280 |
+
msgstr ""
|
1281 |
+
|
1282 |
+
#: product_list.php:248
|
1283 |
+
msgid ""
|
1284 |
+
"Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
|
1285 |
+
"5 plugins included – profile, insider, etc."
|
1286 |
+
msgstr ""
|
1287 |
+
|
1288 |
+
#: product_list.php:258
|
1289 |
+
msgid ""
|
1290 |
+
"Translate WordPress website content to other languages manually. Create "
|
1291 |
+
"multilingual pages, posts, widgets, menus, etc."
|
1292 |
+
msgstr ""
|
1293 |
+
|
1294 |
+
#: product_list.php:268
|
1295 |
+
msgid ""
|
1296 |
+
"Add customizable pagination to WordPress website. Split long content to "
|
1297 |
+
"multiple pages for better navigation."
|
1298 |
+
msgstr ""
|
1299 |
+
|
1300 |
+
#: product_list.php:278
|
1301 |
+
msgid ""
|
1302 |
+
"Generate PDF files and print WordPress posts/pages. Customize document "
|
1303 |
+
"header/footer styles and appearance."
|
1304 |
+
msgstr ""
|
1305 |
+
|
1306 |
+
#: product_list.php:288
|
1307 |
+
msgid ""
|
1308 |
+
"Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
|
1309 |
+
"Profile) to WordPress posts, pages and widgets."
|
1310 |
+
msgstr ""
|
1311 |
+
|
1312 |
+
#: product_list.php:298
|
1313 |
+
msgid ""
|
1314 |
+
"Create your personal portfolio WordPress website. Manage and showcase past "
|
1315 |
+
"projects to get more clients."
|
1316 |
+
msgstr ""
|
1317 |
+
|
1318 |
+
#: product_list.php:308
|
1319 |
+
msgid "Export WordPress posts to CSV file format easily. Configure data order."
|
1320 |
+
msgstr ""
|
1321 |
+
|
1322 |
+
#: product_list.php:315
|
1323 |
+
msgid ""
|
1324 |
+
"Add extra fields to default WordPress user profile. The easiest way to "
|
1325 |
+
"create and manage additional custom values."
|
1326 |
+
msgstr ""
|
1327 |
+
|
1328 |
+
#: product_list.php:322
|
1329 |
+
msgid ""
|
1330 |
+
"Add and display HTML advertisement banner on WordPress website. Customize "
|
1331 |
+
"bar styles and appearance."
|
1332 |
+
msgstr ""
|
1333 |
+
|
1334 |
+
#: product_list.php:332
|
1335 |
+
msgid ""
|
1336 |
+
"Add customizable quotes and tips blocks to WordPress posts, pages and "
|
1337 |
+
"widgets."
|
1338 |
+
msgstr ""
|
1339 |
+
|
1340 |
+
#: product_list.php:339
|
1341 |
+
msgid ""
|
1342 |
+
"Add rating plugin to your WordPress website to receive feedback from your "
|
1343 |
+
"customers."
|
1344 |
+
msgstr ""
|
1345 |
+
|
1346 |
+
#: product_list.php:346
|
1347 |
+
msgid ""
|
1348 |
+
"Create your personal real estate WordPress website. Sell, rent and buy "
|
1349 |
+
"properties. Add, search and browse listings easily."
|
1350 |
+
msgstr ""
|
1351 |
+
|
1352 |
+
#: product_list.php:356
|
1353 |
+
msgid ""
|
1354 |
+
"Attach, un-attach and re-attach media files quickly to WordPress posts and "
|
1355 |
+
"pages."
|
1356 |
+
msgstr ""
|
1357 |
+
|
1358 |
+
#: product_list.php:363
|
1359 |
+
msgid ""
|
1360 |
+
"Add related, featured, latest, and popular posts to your WordPress website. "
|
1361 |
+
"Connect your blog readers with a relevant content."
|
1362 |
+
msgstr ""
|
1363 |
+
|
1364 |
+
#: product_list.php:370
|
1365 |
+
msgid ""
|
1366 |
+
"Send bulk email messages to WordPress users. Custom templates, advanced "
|
1367 |
+
"settings and detailed reports."
|
1368 |
+
msgstr ""
|
1369 |
+
|
1370 |
+
#: product_list.php:380
|
1371 |
+
msgid ""
|
1372 |
+
"The best responsive slider plugin for your WordPress website. Create "
|
1373 |
+
"beautifully animated slides just in a few clicks."
|
1374 |
+
msgstr ""
|
1375 |
+
|
1376 |
+
#: product_list.php:387
|
1377 |
+
msgid ""
|
1378 |
+
"Configure SMTP server to receive email messages from WordPress to Gmail, "
|
1379 |
+
"Yahoo, Hotmail and other services."
|
1380 |
+
msgstr ""
|
1381 |
+
|
1382 |
+
#: product_list.php:394
|
1383 |
+
msgid ""
|
1384 |
+
"Add social media buttons and widgets to WordPress posts, pages and widgets. "
|
1385 |
+
"FB, Twitter, G+1, Pinterest, LinkedIn."
|
1386 |
+
msgstr ""
|
1387 |
+
|
1388 |
+
#: product_list.php:404
|
1389 |
+
msgid ""
|
1390 |
+
"Add social media login, registration, and commenting to your WordPress "
|
1391 |
+
"website."
|
1392 |
+
msgstr ""
|
1393 |
+
|
1394 |
+
#: product_list.php:411
|
1395 |
+
msgid ""
|
1396 |
+
"Add email newsletter sign up form to WordPress posts, pages and widgets. "
|
1397 |
+
"Collect data and subscribe your users."
|
1398 |
+
msgstr ""
|
1399 |
+
|
1400 |
+
#: product_list.php:421
|
1401 |
+
msgid ""
|
1402 |
+
"Add testimonials and feedbacks from your customers to WordPress website "
|
1403 |
+
"posts, pages, and widgets."
|
1404 |
+
msgstr ""
|
1405 |
+
|
1406 |
+
#: product_list.php:428
|
1407 |
+
msgid ""
|
1408 |
+
"Best timesheet plugin for WordPress. Track employee time, streamline "
|
1409 |
+
"attendance and generate reports."
|
1410 |
+
msgstr ""
|
1411 |
+
|
1412 |
+
#: product_list.php:438
|
1413 |
+
msgid ""
|
1414 |
+
"Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
|
1415 |
+
"and pages."
|
1416 |
+
msgstr ""
|
1417 |
+
|
1418 |
+
#: product_list.php:448
|
1419 |
+
msgid ""
|
1420 |
+
"Automatically check and update WordPress website core with all installed "
|
1421 |
+
"plugins and themes to the latest versions."
|
1422 |
+
msgstr ""
|
1423 |
+
|
1424 |
+
#: product_list.php:458
|
1425 |
+
msgid ""
|
1426 |
+
"Powerful user role management plugin for WordPress website. Create, edit, "
|
1427 |
+
"copy, and delete user roles."
|
1428 |
+
msgstr ""
|
1429 |
+
|
1430 |
+
#: product_list.php:468
|
1431 |
+
msgid ""
|
1432 |
+
"Display live count of online visitors who are currently browsing your "
|
1433 |
+
"WordPress website."
|
1434 |
+
msgstr ""
|
1435 |
+
|
1436 |
+
#: product_list.php:478
|
1437 |
+
msgid ""
|
1438 |
+
"Backup and export Zendesk Help Center content automatically to your "
|
1439 |
+
"WordPress website database."
|
1440 |
+
msgstr ""
|
1441 |
+
|
1442 |
+
#~ msgid "Advertisement"
|
1443 |
+
#~ msgstr "Iklan"
|
1444 |
+
|
1445 |
+
#~ msgid "Content & Media"
|
1446 |
+
#~ msgstr "Content & Media"
|
1447 |
+
|
1448 |
+
#~ msgid "Management"
|
1449 |
+
#~ msgstr "Pengelolaan"
|
1450 |
+
|
1451 |
+
#~ msgid "Site Stats"
|
1452 |
+
#~ msgstr "Statistik situs"
|
1453 |
+
|
1454 |
+
#~ msgid "Social"
|
1455 |
+
#~ msgstr "Sosial"
|
1456 |
+
|
1457 |
+
#~ msgid "Utilities"
|
1458 |
+
#~ msgstr "keperluan"
|
1459 |
+
|
1460 |
+
#~ msgid "Other"
|
1461 |
+
#~ msgstr "Lain"
|
1462 |
+
|
1463 |
+
#~ msgid "Thank you for installing"
|
1464 |
+
#~ msgstr "Terima kasih untuk menginstal"
|
1465 |
+
|
1466 |
+
#~ msgid "Thank you for choosing"
|
1467 |
+
#~ msgstr "Terima kasih telah memilih"
|
1468 |
+
|
1469 |
+
#~ msgid "PHP Safe Mode"
|
1470 |
+
#~ msgstr "PHP Safe Mode"
|
1471 |
+
|
1472 |
+
#~ msgid "You will be automatically redirected to the %s in 7 seconds."
|
1473 |
+
#~ msgstr "Anda akan secara otomatis diarahkan ke %s dalam 7 detik."
|
1474 |
+
|
1475 |
+
#~ msgid "You license for"
|
1476 |
+
#~ msgstr "Anda lisensi untuk"
|
1477 |
+
|
1478 |
+
#~ msgid "expires on"
|
1479 |
+
#~ msgstr "Kadaluarsa pada"
|
1480 |
+
|
1481 |
+
#~ msgid "This license key is bind to another site"
|
1482 |
+
#~ msgstr "kunci lisensi ini mengikat ke situs lain"
|
1483 |
+
|
1484 |
+
#~ msgid "Successfully installed the plugin"
|
1485 |
+
#~ msgstr "Berhasil menginstal plugin"
|
1486 |
+
|
1487 |
+
#~ msgid "Please, go to %s"
|
1488 |
+
#~ msgstr "Silakan, pergi ke %s"
|
1489 |
+
|
1490 |
+
#~ msgid "Client Area"
|
1491 |
+
#~ msgstr "area klien"
|
1492 |
+
|
1493 |
+
#~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
1494 |
+
#~ msgstr ""
|
1495 |
+
#~ "Jika Anda menikmati plugin kami, silakan memberikan 5 bintang pada "
|
1496 |
+
#~ "WordPress"
|
1497 |
+
|
1498 |
+
#~ msgid "If there is something wrong about it, please contact us"
|
1499 |
+
#~ msgstr "Jika ada sesuatu yang salah tentang hal itu, silahkan hubungi kami"
|
1500 |
+
|
1501 |
+
#~ msgid "Donations play an important role in supporting great projects"
|
1502 |
+
#~ msgstr ""
|
1503 |
+
#~ "Sumbangan memainkan peran penting dalam mendukung proyek-proyek besar"
|
1504 |
+
|
1505 |
+
#~ msgid "WordPress Version"
|
1506 |
+
#~ msgstr "WordPress Versi"
|
1507 |
+
|
1508 |
+
#~ msgid "Activate Membership"
|
1509 |
+
#~ msgstr "Aktifkan Keanggotaan"
|
1510 |
+
|
1511 |
+
#~ msgid "Don’t have valid license key yet?"
|
1512 |
+
#~ msgstr "Tidak memiliki kunci lisensi yang valid belum?"
|
1513 |
+
|
1514 |
+
#~ msgid ""
|
1515 |
+
#~ "Join BestWebSoft Pro Membership today, cancel any time and use all "
|
1516 |
+
#~ "plugins on a single website %s for only %s per month."
|
1517 |
+
#~ msgstr ""
|
1518 |
+
#~ "Bergabung BestWebSoft Pro Keanggotaan hari ini, membatalkan setiap saat "
|
1519 |
+
#~ "dan menggunakan semua plugin pada situs Web %s hanya %s per bulan."
|
1520 |
+
|
1521 |
+
#~ msgid "My Account"
|
1522 |
+
#~ msgstr "Akun saya"
|
1523 |
+
|
1524 |
+
#~ msgid "Go"
|
1525 |
+
#~ msgstr "Pergi"
|
1526 |
+
|
1527 |
+
#~ msgid "DONATE"
|
1528 |
+
#~ msgstr "MENYUMBANGKAN"
|
1529 |
+
|
1530 |
+
#~ msgid "Recommended plugins"
|
1531 |
+
#~ msgstr "plugin direkomendasikan"
|
1532 |
+
|
1533 |
+
#~ msgid "Install now"
|
1534 |
+
#~ msgstr "Pasang sekarang"
|
1535 |
+
|
1536 |
+
#~ msgid "Configure Settings"
|
1537 |
+
#~ msgstr "Konfigurasi Pengaturan"
|
1538 |
+
|
1539 |
+
#~ msgid "Try again"
|
1540 |
+
#~ msgstr "Coba lagi"
|
1541 |
+
|
1542 |
+
#~ msgid "Preview “%s”"
|
1543 |
+
#~ msgstr "Preview & # 8220; %s & # 8221;"
|
1544 |
+
|
1545 |
+
#~ msgid "Install %s"
|
1546 |
+
#~ msgstr "Menginstal %s"
|
1547 |
+
|
1548 |
+
#~ msgid "Update"
|
1549 |
+
#~ msgstr "Memperbarui"
|
1550 |
+
|
1551 |
+
#~ msgid "Preview %s"
|
1552 |
+
#~ msgstr "Preview %s"
|
1553 |
+
|
1554 |
+
#~ msgid "Preview"
|
1555 |
+
#~ msgstr "Preview"
|
1556 |
+
|
1557 |
+
#~ msgid "You can download and activate"
|
1558 |
+
#~ msgstr "Anda dapat men-download dan mengaktifkan"
|
1559 |
+
|
1560 |
+
#~ msgid "version of this plugin by entering Your license key."
|
1561 |
+
#~ msgstr "versi plugin ini dengan memasukkan kunci lisensi Anda."
|
1562 |
+
|
1563 |
+
#~ msgid ""
|
1564 |
+
#~ "You can find your license key on your personal page Client area, by "
|
1565 |
+
#~ "clicking on the link"
|
1566 |
+
#~ msgstr ""
|
1567 |
+
#~ "Anda dapat menemukan kunci lisensi di daerah Klien halaman pribadi Anda, "
|
1568 |
+
#~ "dengan mengklik pada link"
|
1569 |
+
|
1570 |
+
#~ msgid ""
|
1571 |
+
#~ "(your username is the email you specify when purchasing the product), "
|
1572 |
+
#~ "where you can make the necessary changes."
|
1573 |
+
#~ msgstr ""
|
1574 |
+
#~ "(Username Anda adalah email yang Anda tentukan ketika membeli produk), di "
|
1575 |
+
#~ "mana Anda dapat membuat perubahan yang diperlukan."
|
1576 |
+
|
1577 |
+
#~ msgid "Switch to new interface"
|
1578 |
+
#~ msgstr "Beralih ke antarmuka baru"
|
1579 |
+
|
1580 |
+
#~ msgid "Activated plugins"
|
1581 |
+
#~ msgstr "plugin diaktifkan"
|
1582 |
+
|
1583 |
+
#~ msgid "Read more"
|
1584 |
+
#~ msgstr "Baca lebih banyak"
|
1585 |
+
|
1586 |
+
#~ msgid "Purchase"
|
1587 |
+
#~ msgstr "Membeli"
|
1588 |
+
|
1589 |
+
#~ msgid "Free plugins"
|
1590 |
+
#~ msgstr "plugin gratis"
|
1591 |
+
|
1592 |
+
#~ msgid "Download"
|
1593 |
+
#~ msgstr "Download"
|
1594 |
+
|
1595 |
+
#~ msgid "Install now from wordpress.org"
|
1596 |
+
#~ msgstr "Instal sekarang dari wordpress.org"
|
1597 |
+
|
1598 |
+
#~ msgid "Free themes"
|
1599 |
+
#~ msgstr "Free tema"
|
1600 |
+
|
1601 |
+
#~ msgid "Customize “%s”"
|
1602 |
+
#~ msgstr "Sesuaikan & # 8220; %s & # 8221;"
|
1603 |
+
|
1604 |
+
#~ msgid "Installed themes"
|
1605 |
+
#~ msgstr "tema diinstal"
|
1606 |
+
|
1607 |
+
#~ msgid "Recommended themes"
|
1608 |
+
#~ msgstr "tema direkomendasikan"
|
1609 |
+
|
1610 |
+
#~ msgid "Switch to old interface"
|
1611 |
+
#~ msgstr "Beralih ke antarmuka lama"
|
1612 |
+
|
1613 |
+
#~ msgid "installed"
|
1614 |
+
#~ msgstr "diinstal"
|
1615 |
+
|
1616 |
+
#~ msgid "Contact Form"
|
1617 |
+
#~ msgstr "formulir kontak"
|
1618 |
+
|
1619 |
+
#~ msgid "Contact Form Pro Extra Settings"
|
1620 |
+
#~ msgstr "Hubungi Form Extra Settings Pro"
|
1621 |
+
|
1622 |
+
#~ msgid "Contact Form Pro"
|
1623 |
+
#~ msgstr "Kontak Form Pro"
|
1624 |
+
|
1625 |
+
#~ msgid "Name:"
|
1626 |
+
#~ msgstr "Nama:"
|
1627 |
+
|
1628 |
+
#~ msgid "Address:"
|
1629 |
+
#~ msgstr "Alamat:"
|
1630 |
+
|
1631 |
+
#~ msgid "Email Address:"
|
1632 |
+
#~ msgstr "Alamat email:"
|
1633 |
+
|
1634 |
+
#~ msgid "Phone number:"
|
1635 |
+
#~ msgstr "Nomor telepon:"
|
1636 |
+
|
1637 |
+
#~ msgid "Subject:"
|
1638 |
+
#~ msgstr "Subyek:"
|
1639 |
+
|
1640 |
+
#~ msgid "Message:"
|
1641 |
+
#~ msgstr "Pesan:"
|
1642 |
+
|
1643 |
+
#~ msgid "Attachment:"
|
1644 |
+
#~ msgstr "Lampiran:"
|
1645 |
+
|
1646 |
+
#~ msgid "Send me a copy"
|
1647 |
+
#~ msgstr "Kirimkan saya salinan"
|
1648 |
+
|
1649 |
+
#~ msgid "Submit"
|
1650 |
+
#~ msgstr "Menyerahkan"
|
1651 |
+
|
1652 |
+
#~ msgid "Your name is required."
|
1653 |
+
#~ msgstr "Nama Anda diperlukan."
|
1654 |
+
|
1655 |
+
#~ msgid "Address is required."
|
1656 |
+
#~ msgstr "Alamat diperlukan."
|
1657 |
+
|
1658 |
+
#~ msgid "A valid email address is required."
|
1659 |
+
#~ msgstr "Sebuah alamat email yang valid diperlukan."
|
1660 |
+
|
1661 |
+
#~ msgid "Phone number is required."
|
1662 |
+
#~ msgstr "Nomor telepon diperlukan."
|
1663 |
+
|
1664 |
+
#~ msgid "Subject is required."
|
1665 |
+
#~ msgstr "Subjek diperlukan."
|
1666 |
+
|
1667 |
+
#~ msgid "Message text is required."
|
1668 |
+
#~ msgstr "Pesan teks diperlukan."
|
1669 |
+
|
1670 |
+
#~ msgid "File format is not valid."
|
1671 |
+
#~ msgstr "Format file tidak valid."
|
1672 |
+
|
1673 |
+
#~ msgid "File upload error."
|
1674 |
+
#~ msgstr "Berkas kesalahan upload."
|
1675 |
+
|
1676 |
+
#~ msgid "The file could not be uploaded."
|
1677 |
+
#~ msgstr "file tidak bisa di-upload."
|
1678 |
+
|
1679 |
+
#~ msgid "This file is too large."
|
1680 |
+
#~ msgstr "File ini terlalu besar."
|
1681 |
+
|
1682 |
+
#~ msgid "Please fill out the CAPTCHA."
|
1683 |
+
#~ msgstr "Silahkan mengisi CAPTCHA."
|
1684 |
+
|
1685 |
+
#~ msgid "Please make corrections below and try again."
|
1686 |
+
#~ msgstr "Silakan melakukan koreksi di bawah ini dan coba lagi."
|
1687 |
+
|
1688 |
+
#~ msgid ""
|
1689 |
+
#~ "If the 'Redirect to page' option is selected then the URL field should be "
|
1690 |
+
#~ "in the following format"
|
1691 |
+
#~ msgstr ""
|
1692 |
+
#~ "Si l'ioption 'Rediriger vers la page' est positionnée, alors le champ Url "
|
1693 |
+
#~ "doit être rempli avec le format suivant"
|
1694 |
+
|
1695 |
+
#~ msgid "Such user does not exist. Settings are not saved."
|
1696 |
+
#~ msgstr "pengguna tersebut tidak ada. Setelan tidak disimpan."
|
1697 |
+
|
1698 |
+
#~ msgid ""
|
1699 |
+
#~ "Please enter a valid email address in the 'FROM' field. Settings are not "
|
1700 |
+
#~ "saved."
|
1701 |
+
#~ msgstr ""
|
1702 |
+
#~ "Silakan masukkan alamat email yang valid di bidang 'DARI'. Setelan tidak "
|
1703 |
+
#~ "disimpan."
|
1704 |
+
|
1705 |
+
#~ msgid ""
|
1706 |
+
#~ "If you would like to add the Contact Form to your website, just copy and "
|
1707 |
+
#~ "paste this shortcode to your post or page or widget:"
|
1708 |
+
#~ msgstr ""
|
1709 |
+
#~ "Jika Anda ingin menambahkan Form Kontak ke website Anda, hanya copy dan "
|
1710 |
+
#~ "paste shortcode ini untuk posting atau halaman atau widget:"
|
1711 |
+
|
1712 |
+
#~ msgid ""
|
1713 |
+
#~ "If you leave the fields empty, the messages will be sent to the email "
|
1714 |
+
#~ "address specified during registration."
|
1715 |
+
#~ msgstr ""
|
1716 |
+
#~ "Jika Anda meninggalkan bidang kosong, pesan akan dikirim ke alamat email "
|
1717 |
+
#~ "yang ditentukan saat pendaftaran."
|
1718 |
+
|
1719 |
+
#~ msgid "The user's email address:"
|
1720 |
+
#~ msgstr "alamat email pengguna:"
|
1721 |
+
|
1722 |
+
#~ msgid "Create a username"
|
1723 |
+
#~ msgstr "Membuat username"
|
1724 |
+
|
1725 |
+
#~ msgid ""
|
1726 |
+
#~ "Enter a username of the person who should get the messages from the "
|
1727 |
+
#~ "contact form."
|
1728 |
+
#~ msgstr ""
|
1729 |
+
#~ "Masukkan username dari orang yang harus mendapatkan pesan dari formulir "
|
1730 |
+
#~ "kontak."
|
1731 |
+
|
1732 |
+
#~ msgid "Use this email address:"
|
1733 |
+
#~ msgstr "Gunakan alamat email ini:"
|
1734 |
+
|
1735 |
+
#~ msgid "Enter the email address you want the messages forwarded to."
|
1736 |
+
#~ msgstr "Masukkan alamat email Anda ingin pesan diteruskan ke."
|
1737 |
+
|
1738 |
+
#~ msgid "Additional options"
|
1739 |
+
#~ msgstr "Opsi tambahan"
|
1740 |
+
|
1741 |
+
#~ msgid "What to use?"
|
1742 |
+
#~ msgstr "Apa yang harus digunakan?"
|
1743 |
+
|
1744 |
+
#~ msgid "Wp-mail"
|
1745 |
+
#~ msgstr "Wp-mail"
|
1746 |
+
|
1747 |
+
#~ msgid "You can use the wp_mail function for mailing"
|
1748 |
+
#~ msgstr "Anda dapat menggunakan fungsi wp_mail untuk mailing"
|
1749 |
+
|
1750 |
+
#~ msgid "Mail"
|
1751 |
+
#~ msgstr "Surat"
|
1752 |
+
|
1753 |
+
#~ msgid "To send mail you can use the php mail function"
|
1754 |
+
#~ msgstr "Untuk mengirim email Anda dapat menggunakan fungsi php mail"
|
1755 |
+
|
1756 |
+
#~ msgid "Change text of the 'FROM' field"
|
1757 |
+
#~ msgstr "Perubahan teks dari bidang 'DARI'"
|
1758 |
+
|
1759 |
+
#~ msgid "Enter the email address in the 'From' field"
|
1760 |
+
#~ msgstr "Masukkan alamat email di bidang 'Dari'"
|
1761 |
+
|
1762 |
+
#~ msgid "User email"
|
1763 |
+
#~ msgstr "email pengguna"
|
1764 |
+
|
1765 |
+
#~ msgid ""
|
1766 |
+
#~ "The email address of the user who fills the form will be used in the "
|
1767 |
+
#~ "field 'From'."
|
1768 |
+
#~ msgstr ""
|
1769 |
+
#~ "Alamat email pengguna yang mengisi form akan digunakan dalam bidang "
|
1770 |
+
#~ "'Dari'."
|
1771 |
+
|
1772 |
+
#~ msgid "This email address will be used in the 'From' field."
|
1773 |
+
#~ msgstr "Alamat email ini akan digunakan dalam bidang 'Dari'."
|
1774 |
+
|
1775 |
+
#~ msgid "Display fields"
|
1776 |
+
#~ msgstr "bidang tampilan"
|
1777 |
+
|
1778 |
+
#~ msgid "Address"
|
1779 |
+
#~ msgstr "Alamat"
|
1780 |
+
|
1781 |
+
#~ msgid "Phone"
|
1782 |
+
#~ msgstr "Telepon"
|
1783 |
+
|
1784 |
+
#~ msgid "Attachment block"
|
1785 |
+
#~ msgstr "blok lampiran"
|
1786 |
+
|
1787 |
+
#~ msgid "Users can attach the following file formats"
|
1788 |
+
#~ msgstr "Pengguna dapat melampirkan format file berikut"
|
1789 |
+
|
1790 |
+
#~ msgid "Captcha"
|
1791 |
+
#~ msgstr "captcha"
|
1792 |
+
|
1793 |
+
#~ msgid "(powered by bestwebsoft.com)"
|
1794 |
+
#~ msgstr "(Didukung oleh bestwebsoft.com)"
|
1795 |
+
|
1796 |
+
#~ msgid "Download captcha"
|
1797 |
+
#~ msgstr "Download captcha"
|
1798 |
+
|
1799 |
+
#~ msgid "Display tips below the Attachment block"
|
1800 |
+
#~ msgstr "kiat tampilan di bawah blok Lampiran"
|
1801 |
+
|
1802 |
+
#~ msgid "Display 'Send me a copy' block"
|
1803 |
+
#~ msgstr "Menampilkan 'Kirimkan saya salinan' block"
|
1804 |
+
|
1805 |
+
#~ msgid "Name"
|
1806 |
+
#~ msgstr "Nama"
|
1807 |
+
|
1808 |
+
#~ msgid "Email Address"
|
1809 |
+
#~ msgstr "Alamat email"
|
1810 |
+
|
1811 |
+
#~ msgid "Subject"
|
1812 |
+
#~ msgstr "Subyek"
|
1813 |
+
|
1814 |
+
#~ msgid "Message"
|
1815 |
+
#~ msgstr "Pesan"
|
1816 |
+
|
1817 |
+
#~ msgid "Display additional info in the email"
|
1818 |
+
#~ msgstr "Menampilkan info tambahan dalam email"
|
1819 |
+
|
1820 |
+
#~ msgid "Sent from (ip address)"
|
1821 |
+
#~ msgstr "Dikirim dari (alamat ip)"
|
1822 |
+
|
1823 |
+
#~ msgid "Example: Sent from (IP address):\t127.0.0.1"
|
1824 |
+
#~ msgstr "Contoh: Dikirim dari (alamat IP): \\ t127.0.0.1"
|
1825 |
+
|
1826 |
+
#~ msgid "Date/Time"
|
1827 |
+
#~ msgstr "Tanggal Waktu"
|
1828 |
+
|
1829 |
+
#~ msgid "Sent from (referer)"
|
1830 |
+
#~ msgstr "Dikirim dari (referer)"
|
1831 |
+
|
1832 |
+
#~ msgid "Using (user agent)"
|
1833 |
+
#~ msgstr "Menggunakan (agen pengguna)"
|
1834 |
+
|
1835 |
+
#~ msgid "Language settings for the field names in the form"
|
1836 |
+
#~ msgstr "Pengaturan bahasa untuk nama field dalam bentuk"
|
1837 |
+
|
1838 |
+
#~ msgid "Add a language"
|
1839 |
+
#~ msgstr "Menambahkan bahasa"
|
1840 |
+
|
1841 |
+
#~ msgid "Change the names of the contact form fields and error messages"
|
1842 |
+
#~ msgstr "Mengubah nama-nama kolom formulir kontak dan pesan kesalahan"
|
1843 |
+
|
1844 |
+
#~ msgid "English"
|
1845 |
+
#~ msgstr "Inggris"
|
1846 |
+
|
1847 |
+
#~ msgid "Error message for the Name field"
|
1848 |
+
#~ msgstr "pesan kesalahan untuk bidang Nama"
|
1849 |
+
|
1850 |
+
#~ msgid "Error message for the Address field"
|
1851 |
+
#~ msgstr "pesan kesalahan untuk bidang Alamat"
|
1852 |
+
|
1853 |
+
#~ msgid "Error message for the Email field"
|
1854 |
+
#~ msgstr "pesan kesalahan untuk bidang Email"
|
1855 |
+
|
1856 |
+
#~ msgid "Error message for the Phone field"
|
1857 |
+
#~ msgstr "pesan kesalahan untuk bidang Telepon"
|
1858 |
+
|
1859 |
+
#~ msgid "Error message for the Subject field"
|
1860 |
+
#~ msgstr "pesan kesalahan untuk kolom Subyek"
|
1861 |
+
|
1862 |
+
#~ msgid "Error message for the Message field"
|
1863 |
+
#~ msgstr "pesan kesalahan untuk bidang Pesan"
|
1864 |
+
|
1865 |
+
#~ msgid "Error message about the file type for the Attachment field"
|
1866 |
+
#~ msgstr "pesan kesalahan tentang jenis file untuk bidang Lampiran"
|
1867 |
+
|
1868 |
+
#~ msgid ""
|
1869 |
+
#~ "Error message while uploading a file for the Attachment field to the "
|
1870 |
+
#~ "server"
|
1871 |
+
#~ msgstr ""
|
1872 |
+
#~ "pesan kesalahan saat mengunggah file untuk bidang Lampiran ke server"
|
1873 |
+
|
1874 |
+
#~ msgid "Error message while moving the file for the Attachment field"
|
1875 |
+
#~ msgstr "pesan kesalahan saat memindahkan file untuk bidang Lampiran"
|
1876 |
+
|
1877 |
+
#~ msgid ""
|
1878 |
+
#~ "Error message when file size limit for the Attachment field is exceeded"
|
1879 |
+
#~ msgstr "Pesan galat saat batas ukuran file untuk bidang Lampiran terlampaui"
|
1880 |
+
|
1881 |
+
#~ msgid "Error message for the Captcha field"
|
1882 |
+
#~ msgstr "pesan kesalahan untuk bidang Captcha"
|
1883 |
+
|
1884 |
+
#~ msgid "Error message for the whole form"
|
1885 |
+
#~ msgstr "pesan kesalahan untuk seluruh bentuk"
|
1886 |
+
|
1887 |
+
#~ msgid "for this language"
|
1888 |
+
#~ msgstr "untuk bahasa ini"
|
1889 |
+
|
1890 |
+
#~ msgid "Action after email is sent"
|
1891 |
+
#~ msgstr "Tindakan setelah email dikirim"
|
1892 |
+
|
1893 |
+
#~ msgid "Display text"
|
1894 |
+
#~ msgstr "menampilkan teks"
|
1895 |
+
|
1896 |
+
#~ msgid "Text"
|
1897 |
+
#~ msgstr "Teks"
|
1898 |
+
|
1899 |
+
#~ msgid "Url"
|
1900 |
+
#~ msgstr "url"
|
1901 |
+
|
1902 |
+
#~ msgid "Contact Form Pro | Extra Settings"
|
1903 |
+
#~ msgstr "Hubungi Formulir Pro | Pengaturan tambahan"
|
1904 |
+
|
1905 |
+
#~ msgid ""
|
1906 |
+
#~ "This functionality is available in the Pro version of the plugin. For "
|
1907 |
+
#~ "more details, please follow the link"
|
1908 |
+
#~ msgstr ""
|
1909 |
+
#~ "Fungsi ini tersedia dalam versi Pro plugin. Untuk lebih jelasnya, "
|
1910 |
+
#~ "silahkan ikuti link"
|
1911 |
+
|
1912 |
+
#~ msgid "Errors output"
|
1913 |
+
#~ msgstr "kesalahan keluaran"
|
1914 |
+
|
1915 |
+
#~ msgid "Display error messages"
|
1916 |
+
#~ msgstr "pesan kesalahan tampilan"
|
1917 |
+
|
1918 |
+
#~ msgid "Color of the input field errors."
|
1919 |
+
#~ msgstr "Warna kesalahan field input."
|
1920 |
+
|
1921 |
+
#~ msgid "Display error messages & color of the input field errors"
|
1922 |
+
#~ msgstr "pesan kesalahan display & warna kesalahan field input"
|
1923 |
+
|
1924 |
+
#~ msgid "Add placeholder to the input blocks"
|
1925 |
+
#~ msgstr "Menambahkan placeholder ke blok masukan"
|
1926 |
+
|
1927 |
+
#~ msgid "Add tooltips"
|
1928 |
+
#~ msgstr "Tambahkan tooltips"
|
1929 |
+
|
1930 |
+
#~ msgid "Email address"
|
1931 |
+
#~ msgstr "Alamat email"
|
1932 |
+
|
1933 |
+
#~ msgid "Phone Number"
|
1934 |
+
#~ msgstr "Nomor telepon"
|
1935 |
+
|
1936 |
+
#~ msgid "Attachment"
|
1937 |
+
#~ msgstr "Lampiran"
|
1938 |
+
|
1939 |
+
#~ msgid "Style options"
|
1940 |
+
#~ msgstr "Pilihan gaya"
|
1941 |
+
|
1942 |
+
#~ msgid "Text color"
|
1943 |
+
#~ msgstr "Warna teks"
|
1944 |
+
|
1945 |
+
#~ msgid "Default"
|
1946 |
+
#~ msgstr "kegagalan"
|
1947 |
+
|
1948 |
+
#~ msgid "Label text color"
|
1949 |
+
#~ msgstr "Warna teks Label"
|
1950 |
+
|
1951 |
+
#~ msgid "Placeholder color"
|
1952 |
+
#~ msgstr "warna placeholder"
|
1953 |
+
|
1954 |
+
#~ msgid "Errors color"
|
1955 |
+
#~ msgstr "warna kesalahan"
|
1956 |
+
|
1957 |
+
#~ msgid "Error text color"
|
1958 |
+
#~ msgstr "Warna teks kesalahan"
|
1959 |
+
|
1960 |
+
#~ msgid "Background color of the input field errors"
|
1961 |
+
#~ msgstr "warna latar belakang kesalahan field input"
|
1962 |
+
|
1963 |
+
#~ msgid "Border color of the input field errors"
|
1964 |
+
#~ msgstr "warna perbatasan kesalahan field input"
|
1965 |
+
|
1966 |
+
#~ msgid "Placeholder color of the input field errors"
|
1967 |
+
#~ msgstr "warna placeholder dari kesalahan field input"
|
1968 |
+
|
1969 |
+
#~ msgid "Input fields"
|
1970 |
+
#~ msgstr "field input"
|
1971 |
+
|
1972 |
+
#~ msgid "Input fields background color"
|
1973 |
+
#~ msgstr "Input field warna latar belakang"
|
1974 |
+
|
1975 |
+
#~ msgid "Text fields color"
|
1976 |
+
#~ msgstr "Teks ladang warna"
|
1977 |
+
|
1978 |
+
#~ msgid "Border width in px, numbers only"
|
1979 |
+
#~ msgstr "lebar perbatasan di px, angka saja"
|
1980 |
+
|
1981 |
+
#~ msgid "Border color"
|
1982 |
+
#~ msgstr "warna perbatasan"
|
1983 |
+
|
1984 |
+
#~ msgid "Width in px, numbers only"
|
1985 |
+
#~ msgstr "Lebar di px, angka saja"
|
1986 |
+
|
1987 |
+
#~ msgid "Button color"
|
1988 |
+
#~ msgstr "warna tombol"
|
1989 |
+
|
1990 |
+
#~ msgid "Button text color"
|
1991 |
+
#~ msgstr "Warna teks tombol"
|
1992 |
+
|
1993 |
+
#~ msgid "Contact Form Pro | Preview"
|
1994 |
+
#~ msgstr "Hubungi Formulir Pro | Preview"
|
1995 |
+
|
1996 |
+
#~ msgid "Show with errors"
|
1997 |
+
#~ msgstr "Tampilkan dengan kesalahan"
|
1998 |
+
|
1999 |
+
#~ msgid "Please enter your full name..."
|
2000 |
+
#~ msgstr "Masukkan nama lengkap Anda ..."
|
2001 |
+
|
2002 |
+
#~ msgid "Please enter your address..."
|
2003 |
+
#~ msgstr "Masukkan alamat Anda ..."
|
2004 |
+
|
2005 |
+
#~ msgid "Please enter your email address..."
|
2006 |
+
#~ msgstr "Masukkan alamat email Anda ..."
|
2007 |
+
|
2008 |
+
#~ msgid "Please enter your phone number..."
|
2009 |
+
#~ msgstr "Masukkan nomor telepon anda..."
|
2010 |
+
|
2011 |
+
#~ msgid "Please enter subject..."
|
2012 |
+
#~ msgstr "Masukkan subjek ..."
|
2013 |
+
|
2014 |
+
#~ msgid ""
|
2015 |
+
#~ "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
|
2016 |
+
#~ "EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file "
|
2017 |
+
#~ "size: 2MB"
|
2018 |
+
#~ msgstr ""
|
2019 |
+
#~ "Jenis file yang didukung: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
|
2020 |
+
#~ "AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Ukuran "
|
2021 |
+
#~ "file Max: 2MB"
|
2022 |
+
|
2023 |
+
#~ msgid "You can attach the following file formats"
|
2024 |
+
#~ msgstr "Anda dapat melampirkan format file berikut"
|
2025 |
+
|
2026 |
+
#~ msgid "Contact from"
|
2027 |
+
#~ msgstr "kontak dari"
|
2028 |
+
|
2029 |
+
#~ msgid "Email"
|
2030 |
+
#~ msgstr "E-mail"
|
2031 |
+
|
2032 |
+
#~ msgid "Site"
|
2033 |
+
#~ msgstr "situs"
|
2034 |
+
|
2035 |
+
#~ msgid ""
|
2036 |
+
#~ "If you can see this MIME, it means that the MIME type is not supported by "
|
2037 |
+
#~ "your email client!"
|
2038 |
+
#~ msgstr ""
|
2039 |
+
#~ "Jika Anda dapat melihat MIME ini, itu berarti bahwa tipe MIME tidak "
|
2040 |
+
#~ "didukung oleh klien email Anda!"
|
2041 |
+
|
2042 |
+
#~ msgid "Display Attachment tips"
|
2043 |
+
#~ msgstr "Tips tampilan Lampiran"
|
2044 |
+
|
2045 |
+
#~ msgid "Display a phone number field"
|
2046 |
+
#~ msgstr "Menampilkan field nomor telepon"
|
2047 |
+
|
2048 |
+
#~ msgid "Please enter a valid email address. Settings are not saved."
|
2049 |
+
#~ msgstr "Silakan isi alamat email. Setelan tidak disimpan."
|
2050 |
+
|
2051 |
+
#~ msgid "E-Mail Address"
|
2052 |
+
#~ msgstr "Alamat email"
|
2053 |
+
|
2054 |
+
#~ msgid ""
|
2055 |
+
#~ "If you would like to add a Contact Form to your website, just copy and "
|
2056 |
+
#~ "put this shortcode onto your post or page:"
|
2057 |
+
#~ msgstr ""
|
2058 |
+
#~ "Jika Anda ingin menambahkan formulir kontak ke website Anda, hanya copy "
|
2059 |
+
#~ "dan menempatkan shortcode ini ke pos atau halaman:"
|
2060 |
+
|
2061 |
+
#~ msgid "Thank you for contact."
|
2062 |
+
#~ msgstr "Terima kasih untuk kontak."
|
2063 |
+
|
2064 |
+
#~ msgid "Set a name of user wo will get messages from a contact form."
|
2065 |
+
#~ msgstr ""
|
2066 |
+
#~ "Menetapkan nama pengguna wo akan mendapatkan pesan dari formulir kontak."
|
2067 |
+
|
2068 |
+
#~ msgid "E-Mail Addresse:"
|
2069 |
+
#~ msgstr "E-Mail alamat:"
|
bws_menu/languages/bestwebsoft-nl_NL.mo
ADDED
Binary file
|
bws_menu/languages/bestwebsoft-nl_NL.po
ADDED
@@ -0,0 +1,1478 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: bestwebsoft\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-06-08 15:43+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-06-08 15:43+0300\n"
|
7 |
+
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
+
"Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
|
9 |
+
"Language: nl_NL\n"
|
10 |
+
"MIME-Version: 1.0\n"
|
11 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
+
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
|
14 |
+
"X-Poedit-Basepath: ..\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 1.8.7.1\n"
|
17 |
+
"X-Poedit-SearchPath-0: .\n"
|
18 |
+
|
19 |
+
#: bws_functions.php:72 bws_functions.php:190
|
20 |
+
msgid "requires"
|
21 |
+
msgstr "benodigd"
|
22 |
+
|
23 |
+
#: bws_functions.php:74
|
24 |
+
msgid ""
|
25 |
+
"or higher, that is why it has been deactivated! Please upgrade WordPress and "
|
26 |
+
"try again."
|
27 |
+
msgstr ""
|
28 |
+
"of hoger, daarom is deze gedeactiveerd! Upgrade WordPress en probeer het "
|
29 |
+
"opnieuw."
|
30 |
+
|
31 |
+
#: bws_functions.php:75
|
32 |
+
msgid "Back to the WordPress"
|
33 |
+
msgstr "Terug naar WordPress"
|
34 |
+
|
35 |
+
#: bws_functions.php:77
|
36 |
+
msgid "Plugins page"
|
37 |
+
msgstr "Plugins pagina"
|
38 |
+
|
39 |
+
#: bws_functions.php:91
|
40 |
+
msgid "Like the plugin?"
|
41 |
+
msgstr "Like de plugin?"
|
42 |
+
|
43 |
+
#: bws_functions.php:93
|
44 |
+
msgid "Rate it"
|
45 |
+
msgstr "Rate it"
|
46 |
+
|
47 |
+
#: bws_functions.php:102
|
48 |
+
msgid "Need help?"
|
49 |
+
msgstr "Hulp nodig?"
|
50 |
+
|
51 |
+
#: bws_functions.php:103 bws_functions.php:907 class-bws-settings.php:1047
|
52 |
+
msgid "Visit Help Center"
|
53 |
+
msgstr "Bezoek het Helpcentrum"
|
54 |
+
|
55 |
+
#: bws_functions.php:106
|
56 |
+
msgid "Want to support the plugin?"
|
57 |
+
msgstr "Geef ondersteuning aan de plug-in?"
|
58 |
+
|
59 |
+
#: bws_functions.php:107 bws_menu.php:553
|
60 |
+
msgid "Donate"
|
61 |
+
msgstr "Doneer"
|
62 |
+
|
63 |
+
#: bws_functions.php:127
|
64 |
+
msgid "WARNING: Illegal use notification"
|
65 |
+
msgstr "LET OP!: Onwettige gebruiksmelding"
|
66 |
+
|
67 |
+
#: bws_functions.php:127
|
68 |
+
msgid ""
|
69 |
+
"You can use one license of the Pro plugin for one domain only. Please check "
|
70 |
+
"and edit your license or domain if necessary using you personal Client Area. "
|
71 |
+
"We strongly recommend you to solve the problem within 24 hours, otherwise "
|
72 |
+
"the Pro plugin will be deactivated."
|
73 |
+
msgstr ""
|
74 |
+
"U kunt één licentie van de Pro-plugin gebruiken voor één domein. Controleer "
|
75 |
+
"en bewerk uw licentie of domein indien nodig op uw persoonlijke "
|
76 |
+
"klantenomgeving. We raden u aan om het probleem binnen 24 uur op te lossen, "
|
77 |
+
"anders wordt de Pro-plugin gedeactiveerd."
|
78 |
+
|
79 |
+
#: bws_functions.php:127 bws_functions.php:339 bws_menu.php:627
|
80 |
+
#: class-bws-settings.php:143
|
81 |
+
msgid "Learn More"
|
82 |
+
msgstr "Leer meer"
|
83 |
+
|
84 |
+
#: bws_functions.php:144
|
85 |
+
msgid ""
|
86 |
+
"Notice: Your Pro Trial license has expired. To continue using the plugin, "
|
87 |
+
"you should buy a Pro license"
|
88 |
+
msgstr ""
|
89 |
+
"Opmerking: Uw Pro Trial licentie is verlopen. Om de plugin verder te "
|
90 |
+
"gebruiken, moet u een Pro-licentie kopen"
|
91 |
+
|
92 |
+
#: bws_functions.php:146
|
93 |
+
msgid ""
|
94 |
+
"Your license has expired. To continue getting top-priority support and "
|
95 |
+
"plugin updates, you should extend it."
|
96 |
+
msgstr ""
|
97 |
+
"Uw licentie is verlopen. Om voort te gaan met ondersteuning voor top-"
|
98 |
+
"prioriteit en plugin-updates, moet u het uitbreiden."
|
99 |
+
|
100 |
+
#: bws_functions.php:146 bws_functions.php:382 deprecated.php:584
|
101 |
+
msgid "Learn more"
|
102 |
+
msgstr "Leer meer"
|
103 |
+
|
104 |
+
#: bws_functions.php:164
|
105 |
+
#, php-format
|
106 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
107 |
+
msgstr "Opmerking: U maakt gebruikt van de Pro Trial licentie van %s plugin."
|
108 |
+
|
109 |
+
#: bws_functions.php:166
|
110 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
111 |
+
msgstr "Opmerking: U gebruikt de Pro Trial licentie van de plugin."
|
112 |
+
|
113 |
+
#: bws_functions.php:169
|
114 |
+
msgid "The Pro Trial license will expire on"
|
115 |
+
msgstr "De Pro Trial licentie vervalt op"
|
116 |
+
|
117 |
+
#: bws_functions.php:192
|
118 |
+
msgid ""
|
119 |
+
"or higher! We do not guarantee that our plugin will work correctly. Please "
|
120 |
+
"upgrade to WordPress latest version."
|
121 |
+
msgstr ""
|
122 |
+
"of hoger! Wij garanderen niet dat onze plugin correct blijft werken. Upgrade "
|
123 |
+
"nu naar de nieuwste versie van WordPress."
|
124 |
+
|
125 |
+
#: bws_functions.php:207
|
126 |
+
#, php-format
|
127 |
+
msgid "Thank you for installing %s plugin!"
|
128 |
+
msgstr "Dank u voor het installeren van %s plugin!"
|
129 |
+
|
130 |
+
#: bws_functions.php:208
|
131 |
+
msgid "Let's get started"
|
132 |
+
msgstr "Laten we aan de slag gaan"
|
133 |
+
|
134 |
+
#: bws_functions.php:209 bws_functions.php:242 bws_menu.php:557
|
135 |
+
#: bws_menu.php:559
|
136 |
+
msgid "Settings"
|
137 |
+
msgstr "Settings"
|
138 |
+
|
139 |
+
#: bws_functions.php:211 bws_menu.php:328 class-bws-settings.php:736
|
140 |
+
#: class-bws-settings.php:1049 class-bws-settings.php:1059 deprecated.php:694
|
141 |
+
msgid "or"
|
142 |
+
msgstr "of"
|
143 |
+
|
144 |
+
#: bws_functions.php:212 bws_functions.php:244
|
145 |
+
msgid "Add New"
|
146 |
+
msgstr "Nieuwe toevoegen"
|
147 |
+
|
148 |
+
#: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
|
149 |
+
#: bws_functions.php:378 bws_functions.php:480
|
150 |
+
msgid "Close notice"
|
151 |
+
msgstr "Opmerking sluiten"
|
152 |
+
|
153 |
+
#: bws_functions.php:231
|
154 |
+
msgid "Thank you for installing plugins by BestWebSoft!"
|
155 |
+
msgstr "Dank u voor het installeren van een plugin van BestWebSoft!"
|
156 |
+
|
157 |
+
#: bws_functions.php:233
|
158 |
+
msgid "More Details"
|
159 |
+
msgstr "Meer details"
|
160 |
+
|
161 |
+
#: bws_functions.php:234
|
162 |
+
msgid "Less Details"
|
163 |
+
msgstr "Minder details"
|
164 |
+
|
165 |
+
#: bws_functions.php:262
|
166 |
+
msgid "Deprecated function(-s) is used on the site here:"
|
167 |
+
msgstr "Deprecated functie(-s) word hier op de site gebruikt:"
|
168 |
+
|
169 |
+
#: bws_functions.php:276
|
170 |
+
msgid ""
|
171 |
+
"This function(-s) will be removed over time. Please update the product(-s)."
|
172 |
+
msgstr ""
|
173 |
+
"Deze function(-s) zal mettertijd worden verwijderd. Update het product of "
|
174 |
+
"producten."
|
175 |
+
|
176 |
+
#: bws_functions.php:335
|
177 |
+
msgid "It’s time to upgrade your"
|
178 |
+
msgstr "Het is tijd om te upgraden, "
|
179 |
+
|
180 |
+
#: bws_functions.php:335
|
181 |
+
msgid "to"
|
182 |
+
msgstr "aan"
|
183 |
+
|
184 |
+
#: bws_functions.php:335
|
185 |
+
msgid "version!"
|
186 |
+
msgstr "versie!"
|
187 |
+
|
188 |
+
#: bws_functions.php:336
|
189 |
+
msgid "Extend standard plugin functionality with new great options."
|
190 |
+
msgstr ""
|
191 |
+
"Verleng de standaard plugin functionaliteit met nieuwe geweldige opties."
|
192 |
+
|
193 |
+
#: bws_functions.php:382
|
194 |
+
#, php-format
|
195 |
+
msgid ""
|
196 |
+
"Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
|
197 |
+
"SUPPORT or UPDATES."
|
198 |
+
msgstr ""
|
199 |
+
"Uw licentiesleutel voor %s verloopt uit op %s en u krijgt geen TOP-"
|
200 |
+
"PRIORITEIT SUPPORT of UPDATES."
|
201 |
+
|
202 |
+
#: bws_functions.php:475
|
203 |
+
#, php-format
|
204 |
+
msgid "Thank you for choosing %s plugin!"
|
205 |
+
msgstr "Bedankt voor het kiezen van %s plugin!"
|
206 |
+
|
207 |
+
#: bws_functions.php:476
|
208 |
+
msgid ""
|
209 |
+
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
210 |
+
"we'd love to hear about it!"
|
211 |
+
msgstr ""
|
212 |
+
"Als u een feature, suggestie of idee hebt dat u graag wilt zien in de "
|
213 |
+
"plugin, zouden we het graag willen horen!"
|
214 |
+
|
215 |
+
#: bws_functions.php:477
|
216 |
+
msgid "Suggest a Feature"
|
217 |
+
msgstr "Deel een idee"
|
218 |
+
|
219 |
+
#: bws_functions.php:493 class-bws-settings.php:533 class-bws-settings.php:536
|
220 |
+
#: class-bws-settings.php:584 class-bws-settings.php:587
|
221 |
+
msgid "Notice"
|
222 |
+
msgstr "Opmerking"
|
223 |
+
|
224 |
+
#: bws_functions.php:493
|
225 |
+
msgid "The plugin's settings have been changed."
|
226 |
+
msgstr "De instellingen van de plugin zijn gewijzigd."
|
227 |
+
|
228 |
+
#: bws_functions.php:494 class-bws-settings.php:182 class-bws-settings.php:202
|
229 |
+
#: deprecated.php:640
|
230 |
+
msgid "Save Changes"
|
231 |
+
msgstr "Bewerkingen opslaan"
|
232 |
+
|
233 |
+
#: bws_functions.php:508
|
234 |
+
msgid ""
|
235 |
+
"You can always look at premium options by checking the \"Pro Options\" in "
|
236 |
+
"the \"Misc\" tab."
|
237 |
+
msgstr ""
|
238 |
+
"U kunt altijd premium opties bekijken door de \"Pro Options\" in het tabblad "
|
239 |
+
"\"Misc\" te controleren."
|
240 |
+
|
241 |
+
#: bws_functions.php:629
|
242 |
+
msgid "Add BWS Shortcode"
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: bws_functions.php:630
|
246 |
+
msgid "Add BWS Plugins Shortcode"
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: bws_functions.php:649
|
250 |
+
msgid "Add shortcode"
|
251 |
+
msgstr "Shortcode toevoegen"
|
252 |
+
|
253 |
+
#: bws_functions.php:649
|
254 |
+
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
255 |
+
msgstr "Voeg BestWebSoft plugins shortcodes toe aan deze knop."
|
256 |
+
|
257 |
+
#: bws_functions.php:695
|
258 |
+
msgid "Close"
|
259 |
+
msgstr "Sluiten"
|
260 |
+
|
261 |
+
#: bws_functions.php:787
|
262 |
+
msgid "Are you sure you want to restore default settings?"
|
263 |
+
msgstr "Weet u zeker dat u de standaardinstellingen wilt herstellen?"
|
264 |
+
|
265 |
+
#: bws_functions.php:790
|
266 |
+
msgid "Yes, restore all settings"
|
267 |
+
msgstr "Ja, herstel alle instellingen"
|
268 |
+
|
269 |
+
#: bws_functions.php:791
|
270 |
+
msgid "No, go back to the settings page"
|
271 |
+
msgstr "Nee, ga terug naar de instellingen"
|
272 |
+
|
273 |
+
#: bws_functions.php:833
|
274 |
+
msgid "Plugin"
|
275 |
+
msgstr "Plugin"
|
276 |
+
|
277 |
+
#: bws_functions.php:842
|
278 |
+
msgid "Shortcode settings"
|
279 |
+
msgstr "Shortcode instellingen"
|
280 |
+
|
281 |
+
#: bws_functions.php:847
|
282 |
+
msgid "The shortcode will be inserted"
|
283 |
+
msgstr "De shortcode wordt ingevoegd"
|
284 |
+
|
285 |
+
#: bws_functions.php:852
|
286 |
+
msgid "Insert"
|
287 |
+
msgstr "Invoegen"
|
288 |
+
|
289 |
+
#: bws_functions.php:912
|
290 |
+
msgid "FAQ"
|
291 |
+
msgstr "FAQ"
|
292 |
+
|
293 |
+
#: bws_functions.php:918
|
294 |
+
msgid "For more information:"
|
295 |
+
msgstr "Voor meer informatie:"
|
296 |
+
|
297 |
+
#: bws_functions.php:919
|
298 |
+
msgid "Documentation"
|
299 |
+
msgstr "Documentatie"
|
300 |
+
|
301 |
+
#: bws_functions.php:920
|
302 |
+
msgid "Video Instructions"
|
303 |
+
msgstr "Video Instructies"
|
304 |
+
|
305 |
+
#: bws_functions.php:921
|
306 |
+
msgid "Submit a Request"
|
307 |
+
msgstr "Verzend een verzoek"
|
308 |
+
|
309 |
+
#: bws_menu.php:101 class-bws-settings.php:781 deprecated.php:322
|
310 |
+
msgid "Wrong license key"
|
311 |
+
msgstr "Incorrecte licentiesleutel"
|
312 |
+
|
313 |
+
#: bws_menu.php:122 class-bws-settings.php:807 class-bws-settings.php:874
|
314 |
+
#: class-bws-settings.php:910 deprecated.php:133 deprecated.php:199
|
315 |
+
#: deprecated.php:352
|
316 |
+
msgid ""
|
317 |
+
"Something went wrong. Please try again later. If the error appears again, "
|
318 |
+
"please contact us"
|
319 |
+
msgstr ""
|
320 |
+
"Er is iets fout gegaan. Probeer het later nogmaals. Als de fout zich blijft "
|
321 |
+
"voordoen, neem dan contact met ons op"
|
322 |
+
|
323 |
+
#: bws_menu.php:122 class-bws-settings.php:807 class-bws-settings.php:874
|
324 |
+
#: class-bws-settings.php:910 deprecated.php:133 deprecated.php:199
|
325 |
+
#: deprecated.php:352
|
326 |
+
msgid "We are sorry for inconvenience."
|
327 |
+
msgstr "Het spijt ons voor het ongemak."
|
328 |
+
|
329 |
+
#: bws_menu.php:128 class-bws-settings.php:813 class-bws-settings.php:916
|
330 |
+
#: deprecated.php:139 deprecated.php:358
|
331 |
+
msgid "Wrong license key."
|
332 |
+
msgstr "Verkeerde licentiesleutel."
|
333 |
+
|
334 |
+
#: bws_menu.php:130
|
335 |
+
msgid ""
|
336 |
+
"This license key is bound to another site. Change it via personal Client "
|
337 |
+
"Area."
|
338 |
+
msgstr ""
|
339 |
+
"Deze licentiesleutel is gebonden aan een andere website. Verander het via je "
|
340 |
+
"persoonlijke beheeromgeving."
|
341 |
+
|
342 |
+
#: bws_menu.php:130
|
343 |
+
msgid "Log in"
|
344 |
+
msgstr "Log in"
|
345 |
+
|
346 |
+
#: bws_menu.php:132 bws_menu.php:334 deprecated.php:261
|
347 |
+
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
348 |
+
msgstr "Helaas heb je het aantal beschikbare pogingen per dag overschreden."
|
349 |
+
|
350 |
+
#: bws_menu.php:134 class-bws-settings.php:922 deprecated.php:364
|
351 |
+
#, php-format
|
352 |
+
msgid ""
|
353 |
+
"Unfortunately, Your license has expired. To continue getting top-priority "
|
354 |
+
"support and plugin updates, you should extend it in your %s"
|
355 |
+
msgstr ""
|
356 |
+
"Helaas is uw licentie verlopen. Om voort te gaan met ondersteuning voor top-"
|
357 |
+
"prioriteit en plugin-updates, moet u deze uitbreiden in uw %s"
|
358 |
+
|
359 |
+
#: bws_menu.php:136 class-bws-settings.php:924 deprecated.php:366
|
360 |
+
msgid ""
|
361 |
+
"Unfortunately, the Pro licence was already installed to this domain. The Pro "
|
362 |
+
"Trial license can be installed only once."
|
363 |
+
msgstr ""
|
364 |
+
"Helaas is de Pro licentie al geïnstalleerd op dit domein. De Pro Trial "
|
365 |
+
"licentie kan slechts één keer geïnstalleerd worden."
|
366 |
+
|
367 |
+
#: bws_menu.php:142 class-bws-settings.php:828 deprecated.php:153
|
368 |
+
msgid "The license key is valid."
|
369 |
+
msgstr "De licentiesleutel is geldig."
|
370 |
+
|
371 |
+
#: bws_menu.php:144 class-bws-settings.php:831 deprecated.php:156
|
372 |
+
msgid "Your license will expire on"
|
373 |
+
msgstr "Uw licentie vervalt op"
|
374 |
+
|
375 |
+
#: bws_menu.php:146
|
376 |
+
msgid "Congratulations! Pro Membership license is activated successfully."
|
377 |
+
msgstr ""
|
378 |
+
"Hartelijk gefeliciteerd! Uw Pro Membership licentie is succesvol geactiveerd."
|
379 |
+
|
380 |
+
#: bws_menu.php:153 class-bws-settings.php:996 deprecated.php:435
|
381 |
+
msgid ""
|
382 |
+
"Something went wrong. Try again later or upload the plugin manually. We are "
|
383 |
+
"sorry for inconvenience."
|
384 |
+
msgstr ""
|
385 |
+
"Er is iets fout gegaan. Probeer het later opnieuw of upload de plugin "
|
386 |
+
"handmatig. Het spijt ons voor ongemak."
|
387 |
+
|
388 |
+
#: bws_menu.php:163
|
389 |
+
msgid "Please enter your license key."
|
390 |
+
msgstr "Vul alstublieft uw licentiesleutel in."
|
391 |
+
|
392 |
+
#: bws_menu.php:174
|
393 |
+
msgid "Not set"
|
394 |
+
msgstr "Niet ingesteld"
|
395 |
+
|
396 |
+
#: bws_menu.php:176
|
397 |
+
msgid "On"
|
398 |
+
msgstr "Aan"
|
399 |
+
|
400 |
+
#: bws_menu.php:176
|
401 |
+
msgid "Off"
|
402 |
+
msgstr "Uit"
|
403 |
+
|
404 |
+
#: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
|
405 |
+
#: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
|
406 |
+
msgid "N/A"
|
407 |
+
msgstr "N/A"
|
408 |
+
|
409 |
+
#: bws_menu.php:182
|
410 |
+
msgid " Mb"
|
411 |
+
msgstr "Mb"
|
412 |
+
|
413 |
+
#: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
|
414 |
+
msgid "Yes"
|
415 |
+
msgstr "Ja"
|
416 |
+
|
417 |
+
#: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
|
418 |
+
msgid "No"
|
419 |
+
msgstr "Nee"
|
420 |
+
|
421 |
+
#: bws_menu.php:196
|
422 |
+
msgid "WordPress Environment"
|
423 |
+
msgstr "WordPress Omgeving"
|
424 |
+
|
425 |
+
#: bws_menu.php:198
|
426 |
+
msgid "Home URL"
|
427 |
+
msgstr "Home URL"
|
428 |
+
|
429 |
+
#: bws_menu.php:199
|
430 |
+
msgid "Website URL"
|
431 |
+
msgstr "Website URL"
|
432 |
+
|
433 |
+
#: bws_menu.php:200
|
434 |
+
msgid "WP Version"
|
435 |
+
msgstr "WP Versiie"
|
436 |
+
|
437 |
+
#: bws_menu.php:201
|
438 |
+
msgid "WP Multisite"
|
439 |
+
msgstr "WP Multisite"
|
440 |
+
|
441 |
+
#: bws_menu.php:202
|
442 |
+
msgid "WP Memory Limit"
|
443 |
+
msgstr "WP Memory Limit"
|
444 |
+
|
445 |
+
#: bws_menu.php:203
|
446 |
+
msgid "Active Theme"
|
447 |
+
msgstr "Activeer Thema"
|
448 |
+
|
449 |
+
#: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
|
450 |
+
#, php-format
|
451 |
+
msgid "by %s"
|
452 |
+
msgstr "by %s"
|
453 |
+
|
454 |
+
#: bws_menu.php:207
|
455 |
+
msgid "Server Environment"
|
456 |
+
msgstr "Server Omgeving"
|
457 |
+
|
458 |
+
#: bws_menu.php:209
|
459 |
+
msgid "Operating System"
|
460 |
+
msgstr "Besturingssysteem"
|
461 |
+
|
462 |
+
#: bws_menu.php:210
|
463 |
+
msgid "Server"
|
464 |
+
msgstr "Server"
|
465 |
+
|
466 |
+
#: bws_menu.php:211
|
467 |
+
msgid "PHP Version"
|
468 |
+
msgstr "PHP Versiie"
|
469 |
+
|
470 |
+
#: bws_menu.php:212
|
471 |
+
msgid "PHP Allow URL fopen"
|
472 |
+
msgstr "PHP Allow URL fopen"
|
473 |
+
|
474 |
+
#: bws_menu.php:213
|
475 |
+
msgid "PHP Memory Limit"
|
476 |
+
msgstr "PHP Memory Limit"
|
477 |
+
|
478 |
+
#: bws_menu.php:214
|
479 |
+
msgid "Memory Usage"
|
480 |
+
msgstr "Memory Usage"
|
481 |
+
|
482 |
+
#: bws_menu.php:215
|
483 |
+
msgid "PHP Max Upload Size"
|
484 |
+
msgstr "PHP Max Upload Size"
|
485 |
+
|
486 |
+
#: bws_menu.php:216
|
487 |
+
msgid "PHP Max Post Size"
|
488 |
+
msgstr "PHP Max Post Size"
|
489 |
+
|
490 |
+
#: bws_menu.php:217
|
491 |
+
msgid "PHP Max Script Execute Time"
|
492 |
+
msgstr "PHP Max Script Execute Time"
|
493 |
+
|
494 |
+
#: bws_menu.php:218
|
495 |
+
msgid "PHP Exif support"
|
496 |
+
msgstr "PHP Exif support"
|
497 |
+
|
498 |
+
#: bws_menu.php:219
|
499 |
+
msgid "PHP IPTC support"
|
500 |
+
msgstr "PHP IPTC support"
|
501 |
+
|
502 |
+
#: bws_menu.php:220
|
503 |
+
msgid "PHP XML support"
|
504 |
+
msgstr "PHP XML support"
|
505 |
+
|
506 |
+
#: bws_menu.php:226
|
507 |
+
msgid "Database"
|
508 |
+
msgstr "Database"
|
509 |
+
|
510 |
+
#: bws_menu.php:228
|
511 |
+
msgid "WP DB version"
|
512 |
+
msgstr "WP DB version"
|
513 |
+
|
514 |
+
#: bws_menu.php:229
|
515 |
+
msgid "MySQL version"
|
516 |
+
msgstr "MySQL version"
|
517 |
+
|
518 |
+
#: bws_menu.php:230
|
519 |
+
msgid "SQL Mode"
|
520 |
+
msgstr "SQL Mode"
|
521 |
+
|
522 |
+
#: bws_menu.php:234
|
523 |
+
msgid "Active Plugins"
|
524 |
+
msgstr "Active Plugins"
|
525 |
+
|
526 |
+
#: bws_menu.php:239
|
527 |
+
msgid "Inactive Plugins"
|
528 |
+
msgstr "Inactive Plugins"
|
529 |
+
|
530 |
+
#: bws_menu.php:260
|
531 |
+
msgid "Please enter a valid email address."
|
532 |
+
msgstr "Gelieve een geldig e-mailadres in te geven."
|
533 |
+
|
534 |
+
#: bws_menu.php:264
|
535 |
+
msgid "Email with system info is sent to"
|
536 |
+
msgstr "E-mail met systeeminformatie wordt verzonden naar"
|
537 |
+
|
538 |
+
#: bws_menu.php:268
|
539 |
+
msgid "Thank you for contacting us."
|
540 |
+
msgstr "Bedankt voor het contact met ons opnemen."
|
541 |
+
|
542 |
+
#: bws_menu.php:291
|
543 |
+
msgid "Sorry, email message could not be delivered."
|
544 |
+
msgstr "Sorry, e-mailbericht kon niet worden geleverd."
|
545 |
+
|
546 |
+
#: bws_menu.php:307 bws_menu.php:311 bws_menu.php:360 deprecated.php:91
|
547 |
+
msgid "Plugins"
|
548 |
+
msgstr "Plugins"
|
549 |
+
|
550 |
+
#: bws_menu.php:308 bws_menu.php:312 bws_menu.php:611 deprecated.php:92
|
551 |
+
msgid "Themes"
|
552 |
+
msgstr "Thema's"
|
553 |
+
|
554 |
+
#: bws_menu.php:309 bws_menu.php:313 bws_menu.php:662
|
555 |
+
msgid "System status"
|
556 |
+
msgstr "Systeem status"
|
557 |
+
|
558 |
+
#: bws_menu.php:317
|
559 |
+
msgid "Support"
|
560 |
+
msgstr "Support"
|
561 |
+
|
562 |
+
#: bws_menu.php:318
|
563 |
+
msgid "Manage purchased licenses & subscriptions"
|
564 |
+
msgstr "Beheerde licenties en abonnementen beheren"
|
565 |
+
|
566 |
+
#: bws_menu.php:326
|
567 |
+
#, php-format
|
568 |
+
msgid "Get Access to %s+ Premium Plugins"
|
569 |
+
msgstr "Krijg toegang tot %s+ Premium plugins"
|
570 |
+
|
571 |
+
#: bws_menu.php:328
|
572 |
+
msgid "Subscribe to Pro Membership"
|
573 |
+
msgstr "Abonneer je op de Pro Membership"
|
574 |
+
|
575 |
+
#: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:749
|
576 |
+
#: deprecated.php:227
|
577 |
+
msgid "Check license key"
|
578 |
+
msgstr "Controleer de licentiesleutel"
|
579 |
+
|
580 |
+
#: bws_menu.php:339
|
581 |
+
msgid "Enter your license key"
|
582 |
+
msgstr "Vul uw licentiesleutel in"
|
583 |
+
|
584 |
+
#: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
|
585 |
+
#: class-bws-settings.php:728 deprecated.php:259 deprecated.php:267
|
586 |
+
#: deprecated.php:629 deprecated.php:700 deprecated.php:709
|
587 |
+
msgid "Activate"
|
588 |
+
msgstr "Activateer"
|
589 |
+
|
590 |
+
#: bws_menu.php:361
|
591 |
+
msgid "Upload Plugin"
|
592 |
+
msgstr "Upload Plugin"
|
593 |
+
|
594 |
+
#: bws_menu.php:365
|
595 |
+
#, php-format
|
596 |
+
msgid ""
|
597 |
+
"The plugin generated %d characters of <strong>unexpected output</strong> "
|
598 |
+
"during activation. If you notice “headers already sent” "
|
599 |
+
"messages, problems with syndication feeds or other issues, try deactivating "
|
600 |
+
"or removing this plugin."
|
601 |
+
msgstr ""
|
602 |
+
"De plugin genereerde %d tekens van <strong>onverwachte uitvoer</strong> "
|
603 |
+
"tijdens de activering. Als merkt dat er headers al verstuurd zijn, problemen "
|
604 |
+
"met syndicationfeeds of andere problemen zijn; probeer deze plugin uit te "
|
605 |
+
"schakelen of te verwijderen."
|
606 |
+
|
607 |
+
#: bws_menu.php:367
|
608 |
+
msgid ""
|
609 |
+
"Plugin could not be activated because it triggered a <strong>fatal error</"
|
610 |
+
"strong>."
|
611 |
+
msgstr ""
|
612 |
+
"Plugin kan niet geactiveerd worden omdat het er <strong>fatal error</strong> "
|
613 |
+
"zich voordoet."
|
614 |
+
|
615 |
+
#: bws_menu.php:370
|
616 |
+
msgid "Plugin <strong>activated</strong>."
|
617 |
+
msgstr "Plugin <strong>geactiveerd</strong>."
|
618 |
+
|
619 |
+
#: bws_menu.php:377
|
620 |
+
msgid "Installing Plugin"
|
621 |
+
msgstr "Installatie Plugin bezig"
|
622 |
+
|
623 |
+
#: bws_menu.php:383
|
624 |
+
msgid "Downloading install package from"
|
625 |
+
msgstr "Installatiepakket downloaden vanaf"
|
626 |
+
|
627 |
+
#: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
|
628 |
+
#: class-bws-settings.php:948 class-bws-settings.php:970
|
629 |
+
#: class-bws-settings.php:992 deprecated.php:387 deprecated.php:409
|
630 |
+
#: deprecated.php:431
|
631 |
+
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
632 |
+
msgstr ""
|
633 |
+
"Het ziparchief kon niet worden geladen. Gelieve de plugin handmatig te "
|
634 |
+
"uploaden"
|
635 |
+
|
636 |
+
#: bws_menu.php:408
|
637 |
+
msgid "Unpacking the package"
|
638 |
+
msgstr "Uitpakken van het pakket"
|
639 |
+
|
640 |
+
#: bws_menu.php:413 bws_menu.php:421
|
641 |
+
msgid "Installing the plugin"
|
642 |
+
msgstr "De plugin installeren"
|
643 |
+
|
644 |
+
#: bws_menu.php:417 class-bws-settings.php:960 deprecated.php:399
|
645 |
+
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
646 |
+
msgstr ""
|
647 |
+
"Kan het zip-bestand niet openen. Gelieve de plugin handmatig te uploaden"
|
648 |
+
|
649 |
+
#: bws_menu.php:424 class-bws-settings.php:966 deprecated.php:405
|
650 |
+
msgid ""
|
651 |
+
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
652 |
+
"plugin manually"
|
653 |
+
msgstr ""
|
654 |
+
"Uw server ondersteunt geen ZipArchive of Phar. Gelieve de plugin handmatig "
|
655 |
+
"te uploaden"
|
656 |
+
|
657 |
+
#: bws_menu.php:427
|
658 |
+
#, php-format
|
659 |
+
msgid "The plugin %s is successfully installed."
|
660 |
+
msgstr "De plugin %s is succesvol geïnstalleerd."
|
661 |
+
|
662 |
+
#: bws_menu.php:434 class-bws-settings.php:973 deprecated.php:412
|
663 |
+
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
664 |
+
msgstr ""
|
665 |
+
"UploadDir is kan niet worden weggeschreven. Gelieve de plugin handmatig te "
|
666 |
+
"uploaden"
|
667 |
+
|
668 |
+
#: bws_menu.php:439
|
669 |
+
msgid "Activate Plugin"
|
670 |
+
msgstr "Activateer Plugin"
|
671 |
+
|
672 |
+
#: bws_menu.php:439 bws_menu.php:445
|
673 |
+
msgid "Return to BestWebSoft Panel"
|
674 |
+
msgstr "Terug naar het BestWebSoft Paneel"
|
675 |
+
|
676 |
+
#: bws_menu.php:449 bws_menu.php:464 bws_menu.php:593
|
677 |
+
msgid "All"
|
678 |
+
msgstr "Alle"
|
679 |
+
|
680 |
+
#: bws_menu.php:450 bws_menu.php:650
|
681 |
+
msgid "Installed"
|
682 |
+
msgstr "Geinstalleerd"
|
683 |
+
|
684 |
+
#: bws_menu.php:451
|
685 |
+
msgid "Not Installed"
|
686 |
+
msgstr "Niet geinstalleerd"
|
687 |
+
|
688 |
+
#: bws_menu.php:457
|
689 |
+
msgid "Filter results"
|
690 |
+
msgstr "Filter resultaten"
|
691 |
+
|
692 |
+
#: bws_menu.php:460 bws_menu.php:589
|
693 |
+
msgid "Category"
|
694 |
+
msgstr "Categorieen"
|
695 |
+
|
696 |
+
#: bws_menu.php:524
|
697 |
+
msgid "Not installed"
|
698 |
+
msgstr "Niet geinstalleerd"
|
699 |
+
|
700 |
+
#: bws_menu.php:528
|
701 |
+
msgid "Renew to get updates"
|
702 |
+
msgstr "Vernieuw om updates te verkrijgen"
|
703 |
+
|
704 |
+
#: bws_menu.php:531
|
705 |
+
#, php-format
|
706 |
+
msgid "Update to v %s"
|
707 |
+
msgstr "Update naar v %s"
|
708 |
+
|
709 |
+
#: bws_menu.php:543 bws_menu.php:566 bws_menu.php:575
|
710 |
+
msgid "Install Now"
|
711 |
+
msgstr "Installeer nu"
|
712 |
+
|
713 |
+
#: bws_menu.php:549 class-bws-settings.php:156 class-bws-settings.php:1056
|
714 |
+
msgid "Upgrade to Pro"
|
715 |
+
msgstr "Upgrade naar Pro"
|
716 |
+
|
717 |
+
#: bws_menu.php:563 bws_menu.php:572
|
718 |
+
msgid "Activate this plugin"
|
719 |
+
msgstr "Activateer deze plugin"
|
720 |
+
|
721 |
+
#: bws_menu.php:575
|
722 |
+
msgid "Install this plugin"
|
723 |
+
msgstr "Installeer deze plugin"
|
724 |
+
|
725 |
+
#: bws_menu.php:584
|
726 |
+
msgid "Nothing found. Try another criteria."
|
727 |
+
msgstr "Niks gevonden. Probeer een ander criteria."
|
728 |
+
|
729 |
+
#: bws_menu.php:621 bws_menu.php:641
|
730 |
+
#, php-format
|
731 |
+
msgid "By %s"
|
732 |
+
msgstr "By %s"
|
733 |
+
|
734 |
+
#: bws_menu.php:648
|
735 |
+
msgid "Already Installed"
|
736 |
+
msgstr "Reeds geinstalleerd"
|
737 |
+
|
738 |
+
#: bws_menu.php:659
|
739 |
+
msgid "Browse Free WordPress Themes"
|
740 |
+
msgstr "Browse Gratis WordPress Themas"
|
741 |
+
|
742 |
+
#: bws_menu.php:668
|
743 |
+
msgid "Send to support"
|
744 |
+
msgstr "Stuur uw vraag"
|
745 |
+
|
746 |
+
#: bws_menu.php:675
|
747 |
+
msgid "Send to custom email »"
|
748 |
+
msgstr "Verzend naar aangepaste e-mail »"
|
749 |
+
|
750 |
+
#: class-bws-settings.php:135
|
751 |
+
msgid "Information"
|
752 |
+
msgstr "Informatie"
|
753 |
+
|
754 |
+
#: class-bws-settings.php:143
|
755 |
+
msgid "Inactive"
|
756 |
+
msgstr "Inactief"
|
757 |
+
|
758 |
+
#: class-bws-settings.php:151
|
759 |
+
msgid "Expired"
|
760 |
+
msgstr "Verlopen"
|
761 |
+
|
762 |
+
#: class-bws-settings.php:154
|
763 |
+
#, php-format
|
764 |
+
msgid "%s day(-s) left"
|
765 |
+
msgstr "%s dag(-en) over"
|
766 |
+
|
767 |
+
#: class-bws-settings.php:160
|
768 |
+
#, php-format
|
769 |
+
msgid "Expired on %s"
|
770 |
+
msgstr "Verlopen op %s"
|
771 |
+
|
772 |
+
#: class-bws-settings.php:160
|
773 |
+
msgid "Renew Now"
|
774 |
+
msgstr "Vernieuw nu"
|
775 |
+
|
776 |
+
#: class-bws-settings.php:162
|
777 |
+
msgid "Active"
|
778 |
+
msgstr "Actief"
|
779 |
+
|
780 |
+
#: class-bws-settings.php:167
|
781 |
+
msgid "License"
|
782 |
+
msgstr "Licentie"
|
783 |
+
|
784 |
+
#: class-bws-settings.php:170
|
785 |
+
msgid "Status"
|
786 |
+
msgstr "Status"
|
787 |
+
|
788 |
+
#: class-bws-settings.php:174
|
789 |
+
msgid "Version"
|
790 |
+
msgstr "Versiie"
|
791 |
+
|
792 |
+
#: class-bws-settings.php:282
|
793 |
+
msgid "All plugin settings were restored."
|
794 |
+
msgstr "Alle plugin-instellingen zijn hersteld."
|
795 |
+
|
796 |
+
#: class-bws-settings.php:420
|
797 |
+
msgid "Custom Code"
|
798 |
+
msgstr "Maatwerk Code"
|
799 |
+
|
800 |
+
#: class-bws-settings.php:424 deprecated.php:497
|
801 |
+
msgid "You do not have sufficient permissions to edit plugins for this site."
|
802 |
+
msgstr ""
|
803 |
+
"U heeft niet voldoende permissies om plugins voor deze website te bewerken."
|
804 |
+
|
805 |
+
#: class-bws-settings.php:429 deprecated.php:618
|
806 |
+
msgid "These styles will be added to the header on all pages of your site."
|
807 |
+
msgstr ""
|
808 |
+
"Deze stijlen worden toegevoegd aan de koptekst op alle pagina's van uw "
|
809 |
+
"website."
|
810 |
+
|
811 |
+
#: class-bws-settings.php:432 deprecated.php:620
|
812 |
+
#, php-format
|
813 |
+
msgid ""
|
814 |
+
"This PHP code will be hooked to the %s action and will be printed on front "
|
815 |
+
"end only."
|
816 |
+
msgstr ""
|
817 |
+
"Deze PHP-code wordt aangesloten op de %s actie en zal alleen op de website "
|
818 |
+
"worden getoond."
|
819 |
+
|
820 |
+
#: class-bws-settings.php:435
|
821 |
+
msgid "These code will be added to the header on all pages of your site."
|
822 |
+
msgstr ""
|
823 |
+
"Deze code wordt toegevoegd aan de koptekst op alle pagina's van uw website."
|
824 |
+
|
825 |
+
#: class-bws-settings.php:443 deprecated.php:644
|
826 |
+
#, php-format
|
827 |
+
msgid ""
|
828 |
+
"You need to make this files writable before you can save your changes. See "
|
829 |
+
"%s the Codex %s for more information."
|
830 |
+
msgstr ""
|
831 |
+
"U moet deze bestanden schrijfrechten geven voordat u de wijzigingen kunt "
|
832 |
+
"opslaan. Zie %s de Codex %s voor meer informatie."
|
833 |
+
|
834 |
+
#: class-bws-settings.php:453 deprecated.php:626
|
835 |
+
msgid "Browsing"
|
836 |
+
msgstr "Browsing"
|
837 |
+
|
838 |
+
#: class-bws-settings.php:457
|
839 |
+
#, php-format
|
840 |
+
msgid "Activate custom %s code."
|
841 |
+
msgstr "Activateer maatwerk %s code."
|
842 |
+
|
843 |
+
#: class-bws-settings.php:464 deprecated.php:633
|
844 |
+
#, php-format
|
845 |
+
msgid "Learn more about %s"
|
846 |
+
msgstr "Leer meer over %s"
|
847 |
+
|
848 |
+
#: class-bws-settings.php:524
|
849 |
+
msgid "Miscellaneous Settings"
|
850 |
+
msgstr "Diversen instellingen"
|
851 |
+
|
852 |
+
#: class-bws-settings.php:533 class-bws-settings.php:584
|
853 |
+
#, php-format
|
854 |
+
msgid ""
|
855 |
+
"It is prohibited to change %s settings on this site in the %s network "
|
856 |
+
"settings."
|
857 |
+
msgstr ""
|
858 |
+
"Het is verboden om %s instellingen op deze website te wijzigen in de %s "
|
859 |
+
"netwerkinstellingen."
|
860 |
+
|
861 |
+
#: class-bws-settings.php:536 class-bws-settings.php:587
|
862 |
+
#, php-format
|
863 |
+
msgid ""
|
864 |
+
"It is prohibited to view %s settings on this site in the %s network settings."
|
865 |
+
msgstr ""
|
866 |
+
"Het is verboden om %s instellingen op deze website te bekijken in de %s "
|
867 |
+
"netwerkinstellingen."
|
868 |
+
|
869 |
+
#: class-bws-settings.php:545
|
870 |
+
msgid "Pro Options"
|
871 |
+
msgstr "Pro Opties"
|
872 |
+
|
873 |
+
#: class-bws-settings.php:548
|
874 |
+
msgid "Enable to display plugin Pro options."
|
875 |
+
msgstr "Schakel in om plugin Pro opties te zien."
|
876 |
+
|
877 |
+
#: class-bws-settings.php:553
|
878 |
+
msgid "Track Usage"
|
879 |
+
msgstr "Track gebruik"
|
880 |
+
|
881 |
+
#: class-bws-settings.php:556
|
882 |
+
msgid ""
|
883 |
+
"Enable to allow tracking plugin usage anonymously in order to make it better."
|
884 |
+
msgstr ""
|
885 |
+
"Activeer het gebruik van anonieme tracking van de bijbehorende plug-in, om "
|
886 |
+
"het product beter te maken."
|
887 |
+
|
888 |
+
#: class-bws-settings.php:560
|
889 |
+
msgid "Default Settings"
|
890 |
+
msgstr "Standaard instellingen"
|
891 |
+
|
892 |
+
#: class-bws-settings.php:562
|
893 |
+
msgid "Restore Settings"
|
894 |
+
msgstr "Instellingen herstellen"
|
895 |
+
|
896 |
+
#: class-bws-settings.php:563
|
897 |
+
msgid "This will restore plugin settings to defaults."
|
898 |
+
msgstr ""
|
899 |
+
"Dit zal de plugininstellingen herstellen naar de standaardinstellingen."
|
900 |
+
|
901 |
+
#: class-bws-settings.php:575
|
902 |
+
msgid "Import / Export"
|
903 |
+
msgstr "Import / Export"
|
904 |
+
|
905 |
+
#: class-bws-settings.php:691 class-bws-settings.php:724
|
906 |
+
#: class-bws-settings.php:746
|
907 |
+
msgid "License Key"
|
908 |
+
msgstr "Licentiesleutel"
|
909 |
+
|
910 |
+
#: class-bws-settings.php:714
|
911 |
+
msgid "Congratulations! Pro license is activated successfully."
|
912 |
+
msgstr "Hartelijk gefeliciteerd! De Pro licentie is succesvol geactiveerd."
|
913 |
+
|
914 |
+
#: class-bws-settings.php:715
|
915 |
+
#, php-format
|
916 |
+
msgid "You will be automatically redirected to the %s in %s seconds."
|
917 |
+
msgstr "U wordt automatisch doorgestuurd naar %s in %s seconden."
|
918 |
+
|
919 |
+
#: class-bws-settings.php:715
|
920 |
+
msgid "Settings page"
|
921 |
+
msgstr "Instellingen"
|
922 |
+
|
923 |
+
#: class-bws-settings.php:730
|
924 |
+
#, php-format
|
925 |
+
msgid "Enter your license key to activate %s and get premium plugin features."
|
926 |
+
msgstr ""
|
927 |
+
"Voer uw licentiesleutel in om %s te activeren en premium-pluginfuncties te "
|
928 |
+
"krijgen."
|
929 |
+
|
930 |
+
#: class-bws-settings.php:733 class-bws-settings.php:920 deprecated.php:362
|
931 |
+
#: deprecated.php:703
|
932 |
+
msgid ""
|
933 |
+
"Unfortunately, you have exceeded the number of available tries per day. "
|
934 |
+
"Please, upload the plugin manually."
|
935 |
+
msgstr ""
|
936 |
+
"Helaas heeft u het aantal beschikbare pogingen per dag overschreden. Gelieve "
|
937 |
+
"de plugin handmatig te uploaden."
|
938 |
+
|
939 |
+
#: class-bws-settings.php:736 deprecated.php:694
|
940 |
+
#, php-format
|
941 |
+
msgid "Start Your Free %s-Day Trial Now"
|
942 |
+
msgstr "Start nu uw gratis %s dag trial"
|
943 |
+
|
944 |
+
#: class-bws-settings.php:751
|
945 |
+
msgid ""
|
946 |
+
"If necessary, you can check if the license key is correct or reenter it in "
|
947 |
+
"the field below."
|
948 |
+
msgstr ""
|
949 |
+
"Indien nodig kunt u controleren of de licentiesleutel juist is of u voert "
|
950 |
+
"het opnieuw in het onderstaande veld."
|
951 |
+
|
952 |
+
#: class-bws-settings.php:756
|
953 |
+
msgid "Manage License Settings"
|
954 |
+
msgstr "Beheer licentie instellingen"
|
955 |
+
|
956 |
+
#: class-bws-settings.php:758
|
957 |
+
msgid "Login to Client Area"
|
958 |
+
msgstr "Inloggen op client gebied"
|
959 |
+
|
960 |
+
#: class-bws-settings.php:760
|
961 |
+
msgid ""
|
962 |
+
"Manage active licenses, download BWS products, and view your payment history "
|
963 |
+
"using BestWebSoft Client Area."
|
964 |
+
msgstr ""
|
965 |
+
"Beheer actieve licenties, download BWS-producten en bekijk uw de "
|
966 |
+
"betalingsgeschiedenis met behulp van de BestWebSoft Klanten Omgeving."
|
967 |
+
|
968 |
+
#: class-bws-settings.php:815 class-bws-settings.php:918 deprecated.php:141
|
969 |
+
#: deprecated.php:360
|
970 |
+
msgid "This license key is bound to another site."
|
971 |
+
msgstr "Deze licentiesleutel is gebonden aan een andere website."
|
972 |
+
|
973 |
+
#: class-bws-settings.php:817 deprecated.php:143
|
974 |
+
msgid ""
|
975 |
+
"This license key is valid, but Your license has expired. If you want to "
|
976 |
+
"update our plugin in future, you should extend the license."
|
977 |
+
msgstr ""
|
978 |
+
"Deze licentiesleutel is geldig, maar uw licentie is verlopen. Als u onze "
|
979 |
+
"plugin in de toekomst wilt bijwerken, moet u de licentie verlengen."
|
980 |
+
|
981 |
+
#: class-bws-settings.php:819 deprecated.php:145
|
982 |
+
msgid "Unfortunately, you have exceeded the number of available tries."
|
983 |
+
msgstr "Helaas heeft u het aantal beschikbare pogingen overschreden."
|
984 |
+
|
985 |
+
#: class-bws-settings.php:821 deprecated.php:147
|
986 |
+
msgid ""
|
987 |
+
"Unfortunately, the Pro Trial licence was already installed to this domain. "
|
988 |
+
"The Pro Trial license can be installed only once."
|
989 |
+
msgstr ""
|
990 |
+
"Helaas, de Pro Trial licentie was al geïnstalleerd op dit domein. De Pro "
|
991 |
+
"Trial License kan helaas maar eenmalig gebruikt worden."
|
992 |
+
|
993 |
+
#: class-bws-settings.php:826 deprecated.php:151
|
994 |
+
msgid "The Pro Trial license key is valid."
|
995 |
+
msgstr "De Pro Trial licentiesleutel is geldig."
|
996 |
+
|
997 |
+
#: class-bws-settings.php:834 deprecated.php:159 deprecated.php:246
|
998 |
+
#, php-format
|
999 |
+
msgid ""
|
1000 |
+
"In order to continue using the plugin it is necessary to buy a %s license."
|
1001 |
+
msgstr ""
|
1002 |
+
"Om door te gaan met de plugin is het nodig om een %s licentie te kopen."
|
1003 |
+
|
1004 |
+
#: class-bws-settings.php:1031 deprecated.php:463
|
1005 |
+
msgid "Please, enter Your license key"
|
1006 |
+
msgstr "Vul alstublieft uw licentiesleutel in"
|
1007 |
+
|
1008 |
+
#: class-bws-settings.php:1043
|
1009 |
+
msgid "Need Help?"
|
1010 |
+
msgstr "Hulp nodig?"
|
1011 |
+
|
1012 |
+
#: class-bws-settings.php:1045
|
1013 |
+
msgid "Read the Instruction"
|
1014 |
+
msgstr "Lees de instructie"
|
1015 |
+
|
1016 |
+
#: class-bws-settings.php:1049
|
1017 |
+
msgid "Watch the Video"
|
1018 |
+
msgstr "Bekijk de Video"
|
1019 |
+
|
1020 |
+
#: class-bws-settings.php:1060
|
1021 |
+
msgid "Start Your Free Trial"
|
1022 |
+
msgstr "Begin uw gratis proefperiode"
|
1023 |
+
|
1024 |
+
#: deprecated.php:93
|
1025 |
+
msgid "System Status"
|
1026 |
+
msgstr "Systeem status"
|
1027 |
+
|
1028 |
+
#: deprecated.php:204
|
1029 |
+
msgid "Please, enter your license key"
|
1030 |
+
msgstr "Vul alstublieft uw licentiesleutel in"
|
1031 |
+
|
1032 |
+
#: deprecated.php:223
|
1033 |
+
msgid ""
|
1034 |
+
"If necessary, you can check if the license key is correct or reenter it in "
|
1035 |
+
"the field below. You can find your license key on your personal page - "
|
1036 |
+
"Client Area - on our website"
|
1037 |
+
msgstr ""
|
1038 |
+
"Indien nodig kunt u controleren of de licentiesleutel juist is of u voert "
|
1039 |
+
"het opnieuw in het onderstaande veld. U vindt uw licentiesleutel op uw "
|
1040 |
+
"persoonlijke omgeving - Klanten Omgeving - via onze website"
|
1041 |
+
|
1042 |
+
#: deprecated.php:223
|
1043 |
+
msgid ""
|
1044 |
+
"(your username is the email address specified during the purchase). If "
|
1045 |
+
"necessary, please submit \"Lost your password?\" request."
|
1046 |
+
msgstr ""
|
1047 |
+
"(Uw gebruikersnaam is het e-mailadres dat is opgegeven tijdens de aankoop). "
|
1048 |
+
"Indien nodig, verstuur alstublieft \"Verstuur uw wachtwoord?\" Verzoek."
|
1049 |
+
|
1050 |
+
#: deprecated.php:247
|
1051 |
+
msgid "After that, you can activate it by entering your license key."
|
1052 |
+
msgstr "Daarna kunt u activeren door uw licentiesleutel in te voeren."
|
1053 |
+
|
1054 |
+
#: deprecated.php:249 deprecated.php:688
|
1055 |
+
msgid "License key can be found in the"
|
1056 |
+
msgstr "Licentiesleutel is te vinden in de"
|
1057 |
+
|
1058 |
+
#: deprecated.php:251 deprecated.php:690
|
1059 |
+
msgid "(your username is the email address specified during the purchase)."
|
1060 |
+
msgstr ""
|
1061 |
+
"(Uw gebruikersnaam is het e-mailadres dat is opgegeven tijdens de aankoop)."
|
1062 |
+
|
1063 |
+
#: deprecated.php:278
|
1064 |
+
msgid ""
|
1065 |
+
"Congratulations! The Pro license of the plugin is activated successfully."
|
1066 |
+
msgstr ""
|
1067 |
+
"Hartelijk gefeliciteerd! De Pro-licentie van de plugin is succesvol "
|
1068 |
+
"geactiveerd."
|
1069 |
+
|
1070 |
+
#: deprecated.php:280 deprecated.php:669
|
1071 |
+
msgid "Please, go to"
|
1072 |
+
msgstr "Ga aub naar"
|
1073 |
+
|
1074 |
+
#: deprecated.php:280 deprecated.php:669
|
1075 |
+
msgid "the setting page"
|
1076 |
+
msgstr "de instellingen"
|
1077 |
+
|
1078 |
+
#: deprecated.php:281 deprecated.php:670
|
1079 |
+
msgid "You will be redirected automatically in 5 seconds."
|
1080 |
+
msgstr "U wordt na 5 seconden automatisch doorverwezen."
|
1081 |
+
|
1082 |
+
#: deprecated.php:315
|
1083 |
+
msgid "Check premium options on the plugin settings page!"
|
1084 |
+
msgstr "Controleer de premiumopties op de pagina met Plugin-instellingen!"
|
1085 |
+
|
1086 |
+
#: deprecated.php:478
|
1087 |
+
msgid "Restore all plugin settings to defaults"
|
1088 |
+
msgstr "Herstel alle plugin-instellingen naar de standaardinstellingen"
|
1089 |
+
|
1090 |
+
#: deprecated.php:480
|
1091 |
+
msgid "Restore settings"
|
1092 |
+
msgstr "Herstel instellingen"
|
1093 |
+
|
1094 |
+
#: deprecated.php:548 deprecated.php:575
|
1095 |
+
#, php-format
|
1096 |
+
msgid "File %s edited successfully."
|
1097 |
+
msgstr "Bestand %s is succesvol bewerkt"
|
1098 |
+
|
1099 |
+
#: deprecated.php:550 deprecated.php:577
|
1100 |
+
msgid "Not enough permissions to create or update the file"
|
1101 |
+
msgstr "Niet genoeg rechten om het bestand te maken of aan te passen"
|
1102 |
+
|
1103 |
+
#: deprecated.php:580
|
1104 |
+
msgid "Not enough permissions to create the file"
|
1105 |
+
msgstr "Niet genoeg rechten om het bestand te maken"
|
1106 |
+
|
1107 |
+
#: deprecated.php:624
|
1108 |
+
msgid "Editing"
|
1109 |
+
msgstr "Bewerken"
|
1110 |
+
|
1111 |
+
#: deprecated.php:667
|
1112 |
+
msgid ""
|
1113 |
+
"Congratulations! Pro version of the plugin is installed and activated "
|
1114 |
+
"successfully."
|
1115 |
+
msgstr ""
|
1116 |
+
"Hartelijk gefeliciteerd! De Pro-versie van de plugin is succesvol "
|
1117 |
+
"geïnstalleerd en geactiveerd."
|
1118 |
+
|
1119 |
+
#: deprecated.php:677
|
1120 |
+
msgid "Show Pro features"
|
1121 |
+
msgstr "Toon de Pro functies"
|
1122 |
+
|
1123 |
+
#: deprecated.php:684
|
1124 |
+
msgid "Enter your license key to install and activate"
|
1125 |
+
msgstr "Voer uw licentiesleutel in om te installeren en te activeren"
|
1126 |
+
|
1127 |
+
#: deprecated.php:686
|
1128 |
+
msgid "version of the plugin."
|
1129 |
+
msgstr "versie van de plugin."
|
1130 |
+
|
1131 |
+
#: product_list.php:7
|
1132 |
+
msgid "Admin Tools"
|
1133 |
+
msgstr ""
|
1134 |
+
|
1135 |
+
#: product_list.php:8
|
1136 |
+
msgid "Content"
|
1137 |
+
msgstr ""
|
1138 |
+
|
1139 |
+
#: product_list.php:9
|
1140 |
+
msgid "eCommerce"
|
1141 |
+
msgstr ""
|
1142 |
+
|
1143 |
+
#: product_list.php:10
|
1144 |
+
msgid "Marketing"
|
1145 |
+
msgstr ""
|
1146 |
+
|
1147 |
+
#: product_list.php:11
|
1148 |
+
msgid "Navigation"
|
1149 |
+
msgstr ""
|
1150 |
+
|
1151 |
+
#: product_list.php:12
|
1152 |
+
msgid "Recommended"
|
1153 |
+
msgstr "Aanbevolen"
|
1154 |
+
|
1155 |
+
#: product_list.php:13
|
1156 |
+
msgid "Security"
|
1157 |
+
msgstr "Veiligheid"
|
1158 |
+
|
1159 |
+
#: product_list.php:14
|
1160 |
+
msgid "SEO"
|
1161 |
+
msgstr ""
|
1162 |
+
|
1163 |
+
#: product_list.php:15
|
1164 |
+
msgid "SMM"
|
1165 |
+
msgstr ""
|
1166 |
+
|
1167 |
+
#: product_list.php:22
|
1168 |
+
msgid ""
|
1169 |
+
"Protect WordPress website forms from spam entries by means of math logic."
|
1170 |
+
msgstr ""
|
1171 |
+
|
1172 |
+
#: product_list.php:32
|
1173 |
+
msgid "Create your personal car rental/booking and reservation website."
|
1174 |
+
msgstr ""
|
1175 |
+
|
1176 |
+
#: product_list.php:42
|
1177 |
+
msgid ""
|
1178 |
+
"Allow customers to reach you using secure contact form plugin any website "
|
1179 |
+
"must have."
|
1180 |
+
msgstr ""
|
1181 |
+
|
1182 |
+
#: product_list.php:52
|
1183 |
+
msgid "Add unlimited number of contact forms to WordPress website."
|
1184 |
+
msgstr ""
|
1185 |
+
|
1186 |
+
#: product_list.php:62
|
1187 |
+
msgid "Save and manage Contact Form messages. Never lose important data."
|
1188 |
+
msgstr ""
|
1189 |
+
|
1190 |
+
#: product_list.php:72
|
1191 |
+
msgid "Add unlimited custom pages to WordPress admin dashboard."
|
1192 |
+
msgstr ""
|
1193 |
+
|
1194 |
+
#: product_list.php:79
|
1195 |
+
msgid "Add custom fields to WordPress website search results."
|
1196 |
+
msgstr ""
|
1197 |
+
|
1198 |
+
#: product_list.php:86
|
1199 |
+
msgid ""
|
1200 |
+
"Add custom post types and taxonomies to WordPress website search results."
|
1201 |
+
msgstr ""
|
1202 |
+
|
1203 |
+
#: product_list.php:96
|
1204 |
+
msgid "Add PayPal and 2CO donate buttons to receive charity payments."
|
1205 |
+
msgstr ""
|
1206 |
+
|
1207 |
+
#: product_list.php:103
|
1208 |
+
msgid ""
|
1209 |
+
"Automatically add outgoing email messages to queue instead of sending them "
|
1210 |
+
"immediately."
|
1211 |
+
msgstr ""
|
1212 |
+
|
1213 |
+
#: product_list.php:110
|
1214 |
+
msgid ""
|
1215 |
+
"Get latest error log messages to diagnose website problems. Define and fix "
|
1216 |
+
"issues faster."
|
1217 |
+
msgstr ""
|
1218 |
+
|
1219 |
+
#: product_list.php:117
|
1220 |
+
msgid ""
|
1221 |
+
"Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
|
1222 |
+
"widgets."
|
1223 |
+
msgstr ""
|
1224 |
+
|
1225 |
+
#: product_list.php:127
|
1226 |
+
msgid ""
|
1227 |
+
"Add beautiful galleries, albums & images to your WordPress website in a few "
|
1228 |
+
"clicks."
|
1229 |
+
msgstr ""
|
1230 |
+
|
1231 |
+
#: product_list.php:137
|
1232 |
+
msgid ""
|
1233 |
+
"Add unlimited gallery categories. Organize images to make the navigation "
|
1234 |
+
"through content easier."
|
1235 |
+
msgstr ""
|
1236 |
+
|
1237 |
+
#: product_list.php:144
|
1238 |
+
msgid ""
|
1239 |
+
"Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
|
1240 |
+
"posts, pages and widgets."
|
1241 |
+
msgstr ""
|
1242 |
+
|
1243 |
+
#: product_list.php:154
|
1244 |
+
msgid ""
|
1245 |
+
"Stronger security solution which protects your WordPress website from hacks "
|
1246 |
+
"and unauthorized login attempts."
|
1247 |
+
msgstr ""
|
1248 |
+
|
1249 |
+
#: product_list.php:164
|
1250 |
+
msgid ""
|
1251 |
+
"Add Adsense ads to WordPress website pages, posts, custom posts, search "
|
1252 |
+
"results, categories, tags, and widgets."
|
1253 |
+
msgstr ""
|
1254 |
+
|
1255 |
+
#: product_list.php:174
|
1256 |
+
msgid "Add Google Analytics code to WordPress website and track basic stats."
|
1257 |
+
msgstr ""
|
1258 |
+
|
1259 |
+
#: product_list.php:184
|
1260 |
+
msgid ""
|
1261 |
+
"Protect WordPress website forms from spam entries with Google Captcha "
|
1262 |
+
"(reCaptcha)."
|
1263 |
+
msgstr ""
|
1264 |
+
|
1265 |
+
#: product_list.php:194
|
1266 |
+
msgid "Add customized Google maps to WordPress posts, pages and widgets."
|
1267 |
+
msgstr ""
|
1268 |
+
|
1269 |
+
#: product_list.php:204
|
1270 |
+
msgid ""
|
1271 |
+
"Generate and add XML sitemap to WordPress website. Help search engines index "
|
1272 |
+
"your blog."
|
1273 |
+
msgstr ""
|
1274 |
+
|
1275 |
+
#: product_list.php:214
|
1276 |
+
msgid ""
|
1277 |
+
"Replace external WordPress website links with Google shortlinks and track "
|
1278 |
+
"click stats."
|
1279 |
+
msgstr ""
|
1280 |
+
|
1281 |
+
#: product_list.php:221
|
1282 |
+
msgid ""
|
1283 |
+
"Protect WordPress website – allow and deny access for certain IP addresses, "
|
1284 |
+
"hostnames, etc."
|
1285 |
+
msgstr ""
|
1286 |
+
|
1287 |
+
#: product_list.php:231
|
1288 |
+
msgid ""
|
1289 |
+
"Create your personal job board and listing WordPress website. Search jobs, "
|
1290 |
+
"submit CV/resumes, choose candidates."
|
1291 |
+
msgstr ""
|
1292 |
+
|
1293 |
+
#: product_list.php:238
|
1294 |
+
msgid ""
|
1295 |
+
"Protect WordPress website against brute force attacks. Limit rate of login "
|
1296 |
+
"attempts."
|
1297 |
+
msgstr ""
|
1298 |
+
|
1299 |
+
#: product_list.php:248
|
1300 |
+
msgid ""
|
1301 |
+
"Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
|
1302 |
+
"5 plugins included – profile, insider, etc."
|
1303 |
+
msgstr ""
|
1304 |
+
|
1305 |
+
#: product_list.php:258
|
1306 |
+
msgid ""
|
1307 |
+
"Translate WordPress website content to other languages manually. Create "
|
1308 |
+
"multilingual pages, posts, widgets, menus, etc."
|
1309 |
+
msgstr ""
|
1310 |
+
|
1311 |
+
#: product_list.php:268
|
1312 |
+
msgid ""
|
1313 |
+
"Add customizable pagination to WordPress website. Split long content to "
|
1314 |
+
"multiple pages for better navigation."
|
1315 |
+
msgstr ""
|
1316 |
+
|
1317 |
+
#: product_list.php:278
|
1318 |
+
msgid ""
|
1319 |
+
"Generate PDF files and print WordPress posts/pages. Customize document "
|
1320 |
+
"header/footer styles and appearance."
|
1321 |
+
msgstr ""
|
1322 |
+
|
1323 |
+
#: product_list.php:288
|
1324 |
+
msgid ""
|
1325 |
+
"Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
|
1326 |
+
"Profile) to WordPress posts, pages and widgets."
|
1327 |
+
msgstr ""
|
1328 |
+
|
1329 |
+
#: product_list.php:298
|
1330 |
+
msgid ""
|
1331 |
+
"Create your personal portfolio WordPress website. Manage and showcase past "
|
1332 |
+
"projects to get more clients."
|
1333 |
+
msgstr ""
|
1334 |
+
|
1335 |
+
#: product_list.php:308
|
1336 |
+
msgid "Export WordPress posts to CSV file format easily. Configure data order."
|
1337 |
+
msgstr ""
|
1338 |
+
|
1339 |
+
#: product_list.php:315
|
1340 |
+
msgid ""
|
1341 |
+
"Add extra fields to default WordPress user profile. The easiest way to "
|
1342 |
+
"create and manage additional custom values."
|
1343 |
+
msgstr ""
|
1344 |
+
|
1345 |
+
#: product_list.php:322
|
1346 |
+
msgid ""
|
1347 |
+
"Add and display HTML advertisement banner on WordPress website. Customize "
|
1348 |
+
"bar styles and appearance."
|
1349 |
+
msgstr ""
|
1350 |
+
|
1351 |
+
#: product_list.php:332
|
1352 |
+
msgid ""
|
1353 |
+
"Add customizable quotes and tips blocks to WordPress posts, pages and "
|
1354 |
+
"widgets."
|
1355 |
+
msgstr ""
|
1356 |
+
|
1357 |
+
#: product_list.php:339
|
1358 |
+
msgid ""
|
1359 |
+
"Add rating plugin to your WordPress website to receive feedback from your "
|
1360 |
+
"customers."
|
1361 |
+
msgstr ""
|
1362 |
+
|
1363 |
+
#: product_list.php:346
|
1364 |
+
msgid ""
|
1365 |
+
"Create your personal real estate WordPress website. Sell, rent and buy "
|
1366 |
+
"properties. Add, search and browse listings easily."
|
1367 |
+
msgstr ""
|
1368 |
+
|
1369 |
+
#: product_list.php:356
|
1370 |
+
msgid ""
|
1371 |
+
"Attach, un-attach and re-attach media files quickly to WordPress posts and "
|
1372 |
+
"pages."
|
1373 |
+
msgstr ""
|
1374 |
+
|
1375 |
+
#: product_list.php:363
|
1376 |
+
msgid ""
|
1377 |
+
"Add related, featured, latest, and popular posts to your WordPress website. "
|
1378 |
+
"Connect your blog readers with a relevant content."
|
1379 |
+
msgstr ""
|
1380 |
+
|
1381 |
+
#: product_list.php:370
|
1382 |
+
msgid ""
|
1383 |
+
"Send bulk email messages to WordPress users. Custom templates, advanced "
|
1384 |
+
"settings and detailed reports."
|
1385 |
+
msgstr ""
|
1386 |
+
|
1387 |
+
#: product_list.php:380
|
1388 |
+
msgid ""
|
1389 |
+
"The best responsive slider plugin for your WordPress website. Create "
|
1390 |
+
"beautifully animated slides just in a few clicks."
|
1391 |
+
msgstr ""
|
1392 |
+
|
1393 |
+
#: product_list.php:387
|
1394 |
+
msgid ""
|
1395 |
+
"Configure SMTP server to receive email messages from WordPress to Gmail, "
|
1396 |
+
"Yahoo, Hotmail and other services."
|
1397 |
+
msgstr ""
|
1398 |
+
|
1399 |
+
#: product_list.php:394
|
1400 |
+
msgid ""
|
1401 |
+
"Add social media buttons and widgets to WordPress posts, pages and widgets. "
|
1402 |
+
"FB, Twitter, G+1, Pinterest, LinkedIn."
|
1403 |
+
msgstr ""
|
1404 |
+
|
1405 |
+
#: product_list.php:404
|
1406 |
+
msgid ""
|
1407 |
+
"Add social media login, registration, and commenting to your WordPress "
|
1408 |
+
"website."
|
1409 |
+
msgstr ""
|
1410 |
+
|
1411 |
+
#: product_list.php:411
|
1412 |
+
msgid ""
|
1413 |
+
"Add email newsletter sign up form to WordPress posts, pages and widgets. "
|
1414 |
+
"Collect data and subscribe your users."
|
1415 |
+
msgstr ""
|
1416 |
+
|
1417 |
+
#: product_list.php:421
|
1418 |
+
msgid ""
|
1419 |
+
"Add testimonials and feedbacks from your customers to WordPress website "
|
1420 |
+
"posts, pages, and widgets."
|
1421 |
+
msgstr ""
|
1422 |
+
|
1423 |
+
#: product_list.php:428
|
1424 |
+
msgid ""
|
1425 |
+
"Best timesheet plugin for WordPress. Track employee time, streamline "
|
1426 |
+
"attendance and generate reports."
|
1427 |
+
msgstr ""
|
1428 |
+
|
1429 |
+
#: product_list.php:438
|
1430 |
+
msgid ""
|
1431 |
+
"Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
|
1432 |
+
"and pages."
|
1433 |
+
msgstr ""
|
1434 |
+
|
1435 |
+
#: product_list.php:448
|
1436 |
+
msgid ""
|
1437 |
+
"Automatically check and update WordPress website core with all installed "
|
1438 |
+
"plugins and themes to the latest versions."
|
1439 |
+
msgstr ""
|
1440 |
+
|
1441 |
+
#: product_list.php:458
|
1442 |
+
msgid ""
|
1443 |
+
"Powerful user role management plugin for WordPress website. Create, edit, "
|
1444 |
+
"copy, and delete user roles."
|
1445 |
+
msgstr ""
|
1446 |
+
|
1447 |
+
#: product_list.php:468
|
1448 |
+
msgid ""
|
1449 |
+
"Display live count of online visitors who are currently browsing your "
|
1450 |
+
"WordPress website."
|
1451 |
+
msgstr ""
|
1452 |
+
|
1453 |
+
#: product_list.php:478
|
1454 |
+
msgid ""
|
1455 |
+
"Backup and export Zendesk Help Center content automatically to your "
|
1456 |
+
"WordPress website database."
|
1457 |
+
msgstr ""
|
1458 |
+
|
1459 |
+
#~ msgid "Advertisement"
|
1460 |
+
#~ msgstr "Advertentie"
|
1461 |
+
|
1462 |
+
#~ msgid "Content & Media"
|
1463 |
+
#~ msgstr "Inhoud & Media"
|
1464 |
+
|
1465 |
+
#~ msgid "Management"
|
1466 |
+
#~ msgstr "Beheer"
|
1467 |
+
|
1468 |
+
#~ msgid "Site Stats"
|
1469 |
+
#~ msgstr "Website statistieken"
|
1470 |
+
|
1471 |
+
#~ msgid "Social"
|
1472 |
+
#~ msgstr "Sociaal"
|
1473 |
+
|
1474 |
+
#~ msgid "Utilities"
|
1475 |
+
#~ msgstr "Voorzieningen"
|
1476 |
+
|
1477 |
+
#~ msgid "Other"
|
1478 |
+
#~ msgstr "Anders"
|
bws_menu/languages/bestwebsoft-pl_PL.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-pl_PL.po
CHANGED
@@ -2,15 +2,15 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Damian Dąbrowski <contact@codester.pl>\n"
|
9 |
"Language: pl_PL\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Generator: Poedit 1.8.7.1\n"
|
@@ -51,7 +51,7 @@ msgstr ""
|
|
51 |
msgid "Need help?"
|
52 |
msgstr "Potrzebujesz pomocy?"
|
53 |
|
54 |
-
#: bws_functions.php:103 bws_functions.php:
|
55 |
msgid "Visit Help Center"
|
56 |
msgstr ""
|
57 |
|
@@ -152,7 +152,7 @@ msgid "Add New"
|
|
152 |
msgstr "Dodaj nowy"
|
153 |
|
154 |
#: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
|
155 |
-
#: bws_functions.php:378 bws_functions.php:
|
156 |
msgid "Close notice"
|
157 |
msgstr "Zamknij powiadomienie"
|
158 |
|
@@ -205,36 +205,36 @@ msgstr ""
|
|
205 |
"zostaniesz wówczas pozbawiony SZYBKIEGO DOSTĘDO DO SUPPORTU oraz "
|
206 |
"AKTUALIZACJI."
|
207 |
|
208 |
-
#: bws_functions.php:
|
209 |
#, php-format
|
210 |
msgid "Thank you for choosing %s plugin!"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: bws_functions.php:
|
214 |
msgid ""
|
215 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
216 |
"we'd love to hear about it!"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: bws_functions.php:
|
220 |
msgid "Suggest a Feature"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: bws_functions.php:
|
224 |
#: class-bws-settings.php:584 class-bws-settings.php:587
|
225 |
msgid "Notice"
|
226 |
msgstr "Uwaga"
|
227 |
|
228 |
-
#: bws_functions.php:
|
229 |
msgid "The plugin's settings have been changed."
|
230 |
msgstr "Ustawienia wtyczki zostały zmienione."
|
231 |
|
232 |
-
#: bws_functions.php:
|
233 |
#: deprecated.php:640
|
234 |
msgid "Save Changes"
|
235 |
msgstr "Zapisz zmiany"
|
236 |
|
237 |
-
#: bws_functions.php:
|
238 |
#, fuzzy
|
239 |
msgid ""
|
240 |
"You can always look at premium options by checking the \"Pro Options\" in "
|
@@ -243,67 +243,75 @@ msgstr ""
|
|
243 |
"Zawsze możesz sprawdzić funkcje premium poprzez kliknięcie \"Pokaż funkcje "
|
244 |
"PRO\" w zakładce \"Go PRO\""
|
245 |
|
246 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
247 |
#, fuzzy
|
248 |
msgid "Add shortcode"
|
249 |
msgstr "Dodaj BWS Shortcode"
|
250 |
|
251 |
-
#: bws_functions.php:
|
252 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: bws_functions.php:
|
256 |
msgid "Close"
|
257 |
msgstr "Zamknij"
|
258 |
|
259 |
-
#: bws_functions.php:
|
260 |
#, fuzzy
|
261 |
msgid "Are you sure you want to restore default settings?"
|
262 |
msgstr ""
|
263 |
"Czy jesteś pewien, że chcesz przywrócić wszystkie ustawienia do wartości "
|
264 |
"domyślnych?"
|
265 |
|
266 |
-
#: bws_functions.php:
|
267 |
msgid "Yes, restore all settings"
|
268 |
msgstr "Tak, przywróć wszystkie ustawienia"
|
269 |
|
270 |
-
#: bws_functions.php:
|
271 |
msgid "No, go back to the settings page"
|
272 |
msgstr "Nie, wróć do ustawień"
|
273 |
|
274 |
-
#: bws_functions.php:
|
275 |
msgid "Plugin"
|
276 |
msgstr "Wtyczka"
|
277 |
|
278 |
-
#: bws_functions.php:
|
279 |
msgid "Shortcode settings"
|
280 |
msgstr "Ustawienia shortcode"
|
281 |
|
282 |
-
#: bws_functions.php:
|
283 |
msgid "The shortcode will be inserted"
|
284 |
msgstr "Shortcode zostanie umieszczony"
|
285 |
|
286 |
-
#: bws_functions.php:
|
287 |
msgid "Insert"
|
288 |
msgstr "Umieść"
|
289 |
|
290 |
-
#: bws_functions.php:
|
291 |
msgid "FAQ"
|
292 |
msgstr "FAQ"
|
293 |
|
294 |
-
#: bws_functions.php:
|
295 |
msgid "For more information:"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: bws_functions.php:
|
299 |
msgid "Documentation"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: bws_functions.php:
|
303 |
msgid "Video Instructions"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: bws_functions.php:
|
307 |
#, fuzzy
|
308 |
msgid "Submit a Request"
|
309 |
msgstr "送信ボタン"
|
@@ -1148,42 +1156,337 @@ msgid "version of the plugin."
|
|
1148 |
msgstr "Oceń wtyczkę"
|
1149 |
|
1150 |
#: product_list.php:7
|
1151 |
-
msgid "
|
1152 |
msgstr ""
|
1153 |
|
1154 |
#: product_list.php:8
|
1155 |
-
msgid "Content
|
1156 |
msgstr ""
|
1157 |
|
1158 |
#: product_list.php:9
|
1159 |
-
msgid "
|
1160 |
msgstr ""
|
1161 |
|
1162 |
#: product_list.php:10
|
1163 |
-
msgid "
|
1164 |
-
msgstr "
|
1165 |
|
1166 |
#: product_list.php:11
|
1167 |
-
msgid "
|
1168 |
msgstr ""
|
1169 |
|
1170 |
#: product_list.php:12
|
1171 |
-
|
1172 |
-
|
1173 |
-
msgstr "Status systemu"
|
1174 |
|
1175 |
#: product_list.php:13
|
1176 |
-
msgid "
|
1177 |
msgstr ""
|
1178 |
|
1179 |
#: product_list.php:14
|
1180 |
-
msgid "
|
1181 |
msgstr ""
|
1182 |
|
1183 |
#: product_list.php:15
|
1184 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1185 |
msgstr ""
|
1186 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1187 |
#~ msgid "Thank you for installing"
|
1188 |
#~ msgstr "Dziękujemy za instalację"
|
1189 |
|
@@ -1274,9 +1577,6 @@ msgstr ""
|
|
1274 |
#~ msgid "Preview"
|
1275 |
#~ msgstr "Podgląd"
|
1276 |
|
1277 |
-
#~ msgid "Add BWS Plugins Shortcode"
|
1278 |
-
#~ msgstr "Dodaj BWS Shortcode"
|
1279 |
-
|
1280 |
#~ msgid "Activated plugins"
|
1281 |
#~ msgstr "有効なプラグイン"
|
1282 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-06-08 15:43+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-06-08 15:43+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"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Generator: Poedit 1.8.7.1\n"
|
51 |
msgid "Need help?"
|
52 |
msgstr "Potrzebujesz pomocy?"
|
53 |
|
54 |
+
#: bws_functions.php:103 bws_functions.php:907 class-bws-settings.php:1047
|
55 |
msgid "Visit Help Center"
|
56 |
msgstr ""
|
57 |
|
152 |
msgstr "Dodaj nowy"
|
153 |
|
154 |
#: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
|
155 |
+
#: bws_functions.php:378 bws_functions.php:480
|
156 |
msgid "Close notice"
|
157 |
msgstr "Zamknij powiadomienie"
|
158 |
|
205 |
"zostaniesz wówczas pozbawiony SZYBKIEGO DOSTĘDO DO SUPPORTU oraz "
|
206 |
"AKTUALIZACJI."
|
207 |
|
208 |
+
#: bws_functions.php:475
|
209 |
#, php-format
|
210 |
msgid "Thank you for choosing %s plugin!"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: bws_functions.php:476
|
214 |
msgid ""
|
215 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
216 |
"we'd love to hear about it!"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: bws_functions.php:477
|
220 |
msgid "Suggest a Feature"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: bws_functions.php:493 class-bws-settings.php:533 class-bws-settings.php:536
|
224 |
#: class-bws-settings.php:584 class-bws-settings.php:587
|
225 |
msgid "Notice"
|
226 |
msgstr "Uwaga"
|
227 |
|
228 |
+
#: bws_functions.php:493
|
229 |
msgid "The plugin's settings have been changed."
|
230 |
msgstr "Ustawienia wtyczki zostały zmienione."
|
231 |
|
232 |
+
#: bws_functions.php:494 class-bws-settings.php:182 class-bws-settings.php:202
|
233 |
#: deprecated.php:640
|
234 |
msgid "Save Changes"
|
235 |
msgstr "Zapisz zmiany"
|
236 |
|
237 |
+
#: bws_functions.php:508
|
238 |
#, fuzzy
|
239 |
msgid ""
|
240 |
"You can always look at premium options by checking the \"Pro Options\" in "
|
243 |
"Zawsze możesz sprawdzić funkcje premium poprzez kliknięcie \"Pokaż funkcje "
|
244 |
"PRO\" w zakładce \"Go PRO\""
|
245 |
|
246 |
+
#: bws_functions.php:629
|
247 |
+
msgid "Add BWS Shortcode"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: bws_functions.php:630
|
251 |
+
msgid "Add BWS Plugins Shortcode"
|
252 |
+
msgstr "Dodaj BWS Shortcode"
|
253 |
+
|
254 |
+
#: bws_functions.php:649
|
255 |
#, fuzzy
|
256 |
msgid "Add shortcode"
|
257 |
msgstr "Dodaj BWS Shortcode"
|
258 |
|
259 |
+
#: bws_functions.php:649
|
260 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: bws_functions.php:695
|
264 |
msgid "Close"
|
265 |
msgstr "Zamknij"
|
266 |
|
267 |
+
#: bws_functions.php:787
|
268 |
#, fuzzy
|
269 |
msgid "Are you sure you want to restore default settings?"
|
270 |
msgstr ""
|
271 |
"Czy jesteś pewien, że chcesz przywrócić wszystkie ustawienia do wartości "
|
272 |
"domyślnych?"
|
273 |
|
274 |
+
#: bws_functions.php:790
|
275 |
msgid "Yes, restore all settings"
|
276 |
msgstr "Tak, przywróć wszystkie ustawienia"
|
277 |
|
278 |
+
#: bws_functions.php:791
|
279 |
msgid "No, go back to the settings page"
|
280 |
msgstr "Nie, wróć do ustawień"
|
281 |
|
282 |
+
#: bws_functions.php:833
|
283 |
msgid "Plugin"
|
284 |
msgstr "Wtyczka"
|
285 |
|
286 |
+
#: bws_functions.php:842
|
287 |
msgid "Shortcode settings"
|
288 |
msgstr "Ustawienia shortcode"
|
289 |
|
290 |
+
#: bws_functions.php:847
|
291 |
msgid "The shortcode will be inserted"
|
292 |
msgstr "Shortcode zostanie umieszczony"
|
293 |
|
294 |
+
#: bws_functions.php:852
|
295 |
msgid "Insert"
|
296 |
msgstr "Umieść"
|
297 |
|
298 |
+
#: bws_functions.php:912
|
299 |
msgid "FAQ"
|
300 |
msgstr "FAQ"
|
301 |
|
302 |
+
#: bws_functions.php:918
|
303 |
msgid "For more information:"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: bws_functions.php:919
|
307 |
msgid "Documentation"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: bws_functions.php:920
|
311 |
msgid "Video Instructions"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: bws_functions.php:921
|
315 |
#, fuzzy
|
316 |
msgid "Submit a Request"
|
317 |
msgstr "送信ボタン"
|
1156 |
msgstr "Oceń wtyczkę"
|
1157 |
|
1158 |
#: product_list.php:7
|
1159 |
+
msgid "Admin Tools"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
#: product_list.php:8
|
1163 |
+
msgid "Content"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
#: product_list.php:9
|
1167 |
+
msgid "eCommerce"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
#: product_list.php:10
|
1171 |
+
msgid "Marketing"
|
1172 |
+
msgstr ""
|
1173 |
|
1174 |
#: product_list.php:11
|
1175 |
+
msgid "Navigation"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
#: product_list.php:12
|
1179 |
+
msgid "Recommended"
|
1180 |
+
msgstr "Polecane"
|
|
|
1181 |
|
1182 |
#: product_list.php:13
|
1183 |
+
msgid "Security"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
#: product_list.php:14
|
1187 |
+
msgid "SEO"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
#: product_list.php:15
|
1191 |
+
msgid "SMM"
|
1192 |
+
msgstr ""
|
1193 |
+
|
1194 |
+
#: product_list.php:22
|
1195 |
+
msgid ""
|
1196 |
+
"Protect WordPress website forms from spam entries by means of math logic."
|
1197 |
+
msgstr ""
|
1198 |
+
|
1199 |
+
#: product_list.php:32
|
1200 |
+
msgid "Create your personal car rental/booking and reservation website."
|
1201 |
+
msgstr ""
|
1202 |
+
|
1203 |
+
#: product_list.php:42
|
1204 |
+
msgid ""
|
1205 |
+
"Allow customers to reach you using secure contact form plugin any website "
|
1206 |
+
"must have."
|
1207 |
+
msgstr ""
|
1208 |
+
|
1209 |
+
#: product_list.php:52
|
1210 |
+
msgid "Add unlimited number of contact forms to WordPress website."
|
1211 |
+
msgstr ""
|
1212 |
+
|
1213 |
+
#: product_list.php:62
|
1214 |
+
msgid "Save and manage Contact Form messages. Never lose important data."
|
1215 |
+
msgstr ""
|
1216 |
+
|
1217 |
+
#: product_list.php:72
|
1218 |
+
msgid "Add unlimited custom pages to WordPress admin dashboard."
|
1219 |
+
msgstr ""
|
1220 |
+
|
1221 |
+
#: product_list.php:79
|
1222 |
+
msgid "Add custom fields to WordPress website search results."
|
1223 |
+
msgstr ""
|
1224 |
+
|
1225 |
+
#: product_list.php:86
|
1226 |
+
msgid ""
|
1227 |
+
"Add custom post types and taxonomies to WordPress website search results."
|
1228 |
+
msgstr ""
|
1229 |
+
|
1230 |
+
#: product_list.php:96
|
1231 |
+
msgid "Add PayPal and 2CO donate buttons to receive charity payments."
|
1232 |
+
msgstr ""
|
1233 |
+
|
1234 |
+
#: product_list.php:103
|
1235 |
+
msgid ""
|
1236 |
+
"Automatically add outgoing email messages to queue instead of sending them "
|
1237 |
+
"immediately."
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: product_list.php:110
|
1241 |
+
msgid ""
|
1242 |
+
"Get latest error log messages to diagnose website problems. Define and fix "
|
1243 |
+
"issues faster."
|
1244 |
+
msgstr ""
|
1245 |
+
|
1246 |
+
#: product_list.php:117
|
1247 |
+
msgid ""
|
1248 |
+
"Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
|
1249 |
+
"widgets."
|
1250 |
+
msgstr ""
|
1251 |
+
|
1252 |
+
#: product_list.php:127
|
1253 |
+
msgid ""
|
1254 |
+
"Add beautiful galleries, albums & images to your WordPress website in a few "
|
1255 |
+
"clicks."
|
1256 |
+
msgstr ""
|
1257 |
+
|
1258 |
+
#: product_list.php:137
|
1259 |
+
msgid ""
|
1260 |
+
"Add unlimited gallery categories. Organize images to make the navigation "
|
1261 |
+
"through content easier."
|
1262 |
+
msgstr ""
|
1263 |
+
|
1264 |
+
#: product_list.php:144
|
1265 |
+
msgid ""
|
1266 |
+
"Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
|
1267 |
+
"posts, pages and widgets."
|
1268 |
+
msgstr ""
|
1269 |
+
|
1270 |
+
#: product_list.php:154
|
1271 |
+
msgid ""
|
1272 |
+
"Stronger security solution which protects your WordPress website from hacks "
|
1273 |
+
"and unauthorized login attempts."
|
1274 |
+
msgstr ""
|
1275 |
+
|
1276 |
+
#: product_list.php:164
|
1277 |
+
msgid ""
|
1278 |
+
"Add Adsense ads to WordPress website pages, posts, custom posts, search "
|
1279 |
+
"results, categories, tags, and widgets."
|
1280 |
+
msgstr ""
|
1281 |
+
|
1282 |
+
#: product_list.php:174
|
1283 |
+
msgid "Add Google Analytics code to WordPress website and track basic stats."
|
1284 |
+
msgstr ""
|
1285 |
+
|
1286 |
+
#: product_list.php:184
|
1287 |
+
msgid ""
|
1288 |
+
"Protect WordPress website forms from spam entries with Google Captcha "
|
1289 |
+
"(reCaptcha)."
|
1290 |
+
msgstr ""
|
1291 |
+
|
1292 |
+
#: product_list.php:194
|
1293 |
+
msgid "Add customized Google maps to WordPress posts, pages and widgets."
|
1294 |
+
msgstr ""
|
1295 |
+
|
1296 |
+
#: product_list.php:204
|
1297 |
+
msgid ""
|
1298 |
+
"Generate and add XML sitemap to WordPress website. Help search engines index "
|
1299 |
+
"your blog."
|
1300 |
+
msgstr ""
|
1301 |
+
|
1302 |
+
#: product_list.php:214
|
1303 |
+
msgid ""
|
1304 |
+
"Replace external WordPress website links with Google shortlinks and track "
|
1305 |
+
"click stats."
|
1306 |
+
msgstr ""
|
1307 |
+
|
1308 |
+
#: product_list.php:221
|
1309 |
+
msgid ""
|
1310 |
+
"Protect WordPress website – allow and deny access for certain IP addresses, "
|
1311 |
+
"hostnames, etc."
|
1312 |
+
msgstr ""
|
1313 |
+
|
1314 |
+
#: product_list.php:231
|
1315 |
+
msgid ""
|
1316 |
+
"Create your personal job board and listing WordPress website. Search jobs, "
|
1317 |
+
"submit CV/resumes, choose candidates."
|
1318 |
+
msgstr ""
|
1319 |
+
|
1320 |
+
#: product_list.php:238
|
1321 |
+
msgid ""
|
1322 |
+
"Protect WordPress website against brute force attacks. Limit rate of login "
|
1323 |
+
"attempts."
|
1324 |
+
msgstr ""
|
1325 |
+
|
1326 |
+
#: product_list.php:248
|
1327 |
+
msgid ""
|
1328 |
+
"Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
|
1329 |
+
"5 plugins included – profile, insider, etc."
|
1330 |
+
msgstr ""
|
1331 |
+
|
1332 |
+
#: product_list.php:258
|
1333 |
+
msgid ""
|
1334 |
+
"Translate WordPress website content to other languages manually. Create "
|
1335 |
+
"multilingual pages, posts, widgets, menus, etc."
|
1336 |
+
msgstr ""
|
1337 |
+
|
1338 |
+
#: product_list.php:268
|
1339 |
+
msgid ""
|
1340 |
+
"Add customizable pagination to WordPress website. Split long content to "
|
1341 |
+
"multiple pages for better navigation."
|
1342 |
+
msgstr ""
|
1343 |
+
|
1344 |
+
#: product_list.php:278
|
1345 |
+
msgid ""
|
1346 |
+
"Generate PDF files and print WordPress posts/pages. Customize document "
|
1347 |
+
"header/footer styles and appearance."
|
1348 |
+
msgstr ""
|
1349 |
+
|
1350 |
+
#: product_list.php:288
|
1351 |
+
msgid ""
|
1352 |
+
"Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
|
1353 |
+
"Profile) to WordPress posts, pages and widgets."
|
1354 |
+
msgstr ""
|
1355 |
+
|
1356 |
+
#: product_list.php:298
|
1357 |
+
msgid ""
|
1358 |
+
"Create your personal portfolio WordPress website. Manage and showcase past "
|
1359 |
+
"projects to get more clients."
|
1360 |
+
msgstr ""
|
1361 |
+
|
1362 |
+
#: product_list.php:308
|
1363 |
+
msgid "Export WordPress posts to CSV file format easily. Configure data order."
|
1364 |
+
msgstr ""
|
1365 |
+
|
1366 |
+
#: product_list.php:315
|
1367 |
+
msgid ""
|
1368 |
+
"Add extra fields to default WordPress user profile. The easiest way to "
|
1369 |
+
"create and manage additional custom values."
|
1370 |
+
msgstr ""
|
1371 |
+
|
1372 |
+
#: product_list.php:322
|
1373 |
+
msgid ""
|
1374 |
+
"Add and display HTML advertisement banner on WordPress website. Customize "
|
1375 |
+
"bar styles and appearance."
|
1376 |
+
msgstr ""
|
1377 |
+
|
1378 |
+
#: product_list.php:332
|
1379 |
+
msgid ""
|
1380 |
+
"Add customizable quotes and tips blocks to WordPress posts, pages and "
|
1381 |
+
"widgets."
|
1382 |
+
msgstr ""
|
1383 |
+
|
1384 |
+
#: product_list.php:339
|
1385 |
+
msgid ""
|
1386 |
+
"Add rating plugin to your WordPress website to receive feedback from your "
|
1387 |
+
"customers."
|
1388 |
+
msgstr ""
|
1389 |
+
|
1390 |
+
#: product_list.php:346
|
1391 |
+
msgid ""
|
1392 |
+
"Create your personal real estate WordPress website. Sell, rent and buy "
|
1393 |
+
"properties. Add, search and browse listings easily."
|
1394 |
+
msgstr ""
|
1395 |
+
|
1396 |
+
#: product_list.php:356
|
1397 |
+
msgid ""
|
1398 |
+
"Attach, un-attach and re-attach media files quickly to WordPress posts and "
|
1399 |
+
"pages."
|
1400 |
+
msgstr ""
|
1401 |
+
|
1402 |
+
#: product_list.php:363
|
1403 |
+
msgid ""
|
1404 |
+
"Add related, featured, latest, and popular posts to your WordPress website. "
|
1405 |
+
"Connect your blog readers with a relevant content."
|
1406 |
+
msgstr ""
|
1407 |
+
|
1408 |
+
#: product_list.php:370
|
1409 |
+
msgid ""
|
1410 |
+
"Send bulk email messages to WordPress users. Custom templates, advanced "
|
1411 |
+
"settings and detailed reports."
|
1412 |
+
msgstr ""
|
1413 |
+
|
1414 |
+
#: product_list.php:380
|
1415 |
+
msgid ""
|
1416 |
+
"The best responsive slider plugin for your WordPress website. Create "
|
1417 |
+
"beautifully animated slides just in a few clicks."
|
1418 |
+
msgstr ""
|
1419 |
+
|
1420 |
+
#: product_list.php:387
|
1421 |
+
msgid ""
|
1422 |
+
"Configure SMTP server to receive email messages from WordPress to Gmail, "
|
1423 |
+
"Yahoo, Hotmail and other services."
|
1424 |
+
msgstr ""
|
1425 |
+
|
1426 |
+
#: product_list.php:394
|
1427 |
+
msgid ""
|
1428 |
+
"Add social media buttons and widgets to WordPress posts, pages and widgets. "
|
1429 |
+
"FB, Twitter, G+1, Pinterest, LinkedIn."
|
1430 |
+
msgstr ""
|
1431 |
+
|
1432 |
+
#: product_list.php:404
|
1433 |
+
msgid ""
|
1434 |
+
"Add social media login, registration, and commenting to your WordPress "
|
1435 |
+
"website."
|
1436 |
+
msgstr ""
|
1437 |
+
|
1438 |
+
#: product_list.php:411
|
1439 |
+
msgid ""
|
1440 |
+
"Add email newsletter sign up form to WordPress posts, pages and widgets. "
|
1441 |
+
"Collect data and subscribe your users."
|
1442 |
+
msgstr ""
|
1443 |
+
|
1444 |
+
#: product_list.php:421
|
1445 |
+
msgid ""
|
1446 |
+
"Add testimonials and feedbacks from your customers to WordPress website "
|
1447 |
+
"posts, pages, and widgets."
|
1448 |
+
msgstr ""
|
1449 |
+
|
1450 |
+
#: product_list.php:428
|
1451 |
+
msgid ""
|
1452 |
+
"Best timesheet plugin for WordPress. Track employee time, streamline "
|
1453 |
+
"attendance and generate reports."
|
1454 |
+
msgstr ""
|
1455 |
+
|
1456 |
+
#: product_list.php:438
|
1457 |
+
msgid ""
|
1458 |
+
"Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
|
1459 |
+
"and pages."
|
1460 |
+
msgstr ""
|
1461 |
+
|
1462 |
+
#: product_list.php:448
|
1463 |
+
msgid ""
|
1464 |
+
"Automatically check and update WordPress website core with all installed "
|
1465 |
+
"plugins and themes to the latest versions."
|
1466 |
+
msgstr ""
|
1467 |
+
|
1468 |
+
#: product_list.php:458
|
1469 |
+
msgid ""
|
1470 |
+
"Powerful user role management plugin for WordPress website. Create, edit, "
|
1471 |
+
"copy, and delete user roles."
|
1472 |
+
msgstr ""
|
1473 |
+
|
1474 |
+
#: product_list.php:468
|
1475 |
+
msgid ""
|
1476 |
+
"Display live count of online visitors who are currently browsing your "
|
1477 |
+
"WordPress website."
|
1478 |
+
msgstr ""
|
1479 |
+
|
1480 |
+
#: product_list.php:478
|
1481 |
+
msgid ""
|
1482 |
+
"Backup and export Zendesk Help Center content automatically to your "
|
1483 |
+
"WordPress website database."
|
1484 |
+
msgstr ""
|
1485 |
+
|
1486 |
+
#, fuzzy
|
1487 |
+
#~ msgid "Site Stats"
|
1488 |
+
#~ msgstr "Status systemu"
|
1489 |
+
|
1490 |
#~ msgid "Thank you for installing"
|
1491 |
#~ msgstr "Dziękujemy za instalację"
|
1492 |
|
1577 |
#~ msgid "Preview"
|
1578 |
#~ msgstr "Podgląd"
|
1579 |
|
|
|
|
|
|
|
1580 |
#~ msgid "Activated plugins"
|
1581 |
#~ msgstr "有効なプラグイン"
|
1582 |
|
bws_menu/languages/bestwebsoft-ru_RU.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-ru_RU.po
CHANGED
@@ -2,17 +2,17 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-03
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
-
"X-Poedit-SourceCharset:
|
16 |
"X-Generator: Poedit 1.8.7.1\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
@@ -48,7 +48,7 @@ msgstr "Оценить"
|
|
48 |
msgid "Need help?"
|
49 |
msgstr "Нужна помощь?"
|
50 |
|
51 |
-
#: bws_functions.php:103 bws_functions.php:
|
52 |
msgid "Visit Help Center"
|
53 |
msgstr "Перейти в Help Center"
|
54 |
|
@@ -147,7 +147,7 @@ msgid "Add New"
|
|
147 |
msgstr "Добавить"
|
148 |
|
149 |
#: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
|
150 |
-
#: bws_functions.php:378 bws_functions.php:
|
151 |
msgid "Close notice"
|
152 |
msgstr "Закрыть"
|
153 |
|
@@ -199,12 +199,12 @@ msgstr ""
|
|
199 |
"Ваш лицензионный ключ для %s истекает %s и вы не будете получать "
|
200 |
"приоритетную тех.поддержку или обновления."
|
201 |
|
202 |
-
#: bws_functions.php:
|
203 |
#, php-format
|
204 |
msgid "Thank you for choosing %s plugin!"
|
205 |
msgstr "Спасибо за выбор плагина %s!"
|
206 |
|
207 |
-
#: bws_functions.php:
|
208 |
msgid ""
|
209 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
210 |
"we'd love to hear about it!"
|
@@ -213,25 +213,25 @@ msgstr ""
|
|
213 |
"функционала плагина, пожалуйста, присылайте их нам! Мы вседа открыты для "
|
214 |
"новых идей!"
|
215 |
|
216 |
-
#: bws_functions.php:
|
217 |
msgid "Suggest a Feature"
|
218 |
msgstr "Предложить функционал"
|
219 |
|
220 |
-
#: bws_functions.php:
|
221 |
#: class-bws-settings.php:584 class-bws-settings.php:587
|
222 |
msgid "Notice"
|
223 |
msgstr "Внимание"
|
224 |
|
225 |
-
#: bws_functions.php:
|
226 |
msgid "The plugin's settings have been changed."
|
227 |
msgstr "Настройки плагина были изменены"
|
228 |
|
229 |
-
#: bws_functions.php:
|
230 |
#: deprecated.php:640
|
231 |
msgid "Save Changes"
|
232 |
msgstr "Сохранить изменения"
|
233 |
|
234 |
-
#: bws_functions.php:
|
235 |
msgid ""
|
236 |
"You can always look at premium options by checking the \"Pro Options\" in "
|
237 |
"the \"Misc\" tab."
|
@@ -239,65 +239,73 @@ msgstr ""
|
|
239 |
"Вы всегда можете просмотреть премиум опции нажав на кнопку \"Pro опции\" на "
|
240 |
"вкладке \"Разное\"."
|
241 |
|
242 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
243 |
msgid "Add shortcode"
|
244 |
msgstr "Добавить шорткод"
|
245 |
|
246 |
-
#: bws_functions.php:
|
247 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
248 |
msgstr "Добавьте шорткоды BestWebSoft плагинов с помощью этой кнопки."
|
249 |
|
250 |
-
#: bws_functions.php:
|
251 |
msgid "Close"
|
252 |
msgstr "Закрыть"
|
253 |
|
254 |
-
#: bws_functions.php:
|
255 |
msgid "Are you sure you want to restore default settings?"
|
256 |
msgstr ""
|
257 |
"Вы уверены что хотите восстановить все настройки плагина к настройкам по "
|
258 |
"умолчанию?"
|
259 |
|
260 |
-
#: bws_functions.php:
|
261 |
msgid "Yes, restore all settings"
|
262 |
msgstr "Да, восстановить все настройки"
|
263 |
|
264 |
-
#: bws_functions.php:
|
265 |
msgid "No, go back to the settings page"
|
266 |
msgstr "Нет, вернуться на страницу настроек"
|
267 |
|
268 |
-
#: bws_functions.php:
|
269 |
msgid "Plugin"
|
270 |
msgstr "Плагин"
|
271 |
|
272 |
-
#: bws_functions.php:
|
273 |
msgid "Shortcode settings"
|
274 |
msgstr "Настройки шорткода"
|
275 |
|
276 |
-
#: bws_functions.php:
|
277 |
msgid "The shortcode will be inserted"
|
278 |
msgstr "Будет вставлен шорткод"
|
279 |
|
280 |
-
#: bws_functions.php:
|
281 |
msgid "Insert"
|
282 |
msgstr "Вставить"
|
283 |
|
284 |
-
#: bws_functions.php:
|
285 |
msgid "FAQ"
|
286 |
msgstr "FAQ"
|
287 |
|
288 |
-
#: bws_functions.php:
|
289 |
msgid "For more information:"
|
290 |
msgstr "Для дополнительной информации:"
|
291 |
|
292 |
-
#: bws_functions.php:
|
293 |
msgid "Documentation"
|
294 |
msgstr "Документация"
|
295 |
|
296 |
-
#: bws_functions.php:
|
297 |
msgid "Video Instructions"
|
298 |
msgstr "Видео инструкции"
|
299 |
|
300 |
-
#: bws_functions.php:
|
301 |
msgid "Submit a Request"
|
302 |
msgstr "Отправить запрос"
|
303 |
|
@@ -560,7 +568,7 @@ msgstr "Управление купленными лицензиями и под
|
|
560 |
#: bws_menu.php:326
|
561 |
#, php-format
|
562 |
msgid "Get Access to %s+ Premium Plugins"
|
563 |
-
msgstr "Получить
|
564 |
|
565 |
#: bws_menu.php:328
|
566 |
msgid "Subscribe to Pro Membership"
|
@@ -703,7 +711,7 @@ msgstr "Установить"
|
|
703 |
|
704 |
#: bws_menu.php:549 class-bws-settings.php:156 class-bws-settings.php:1056
|
705 |
msgid "Upgrade to Pro"
|
706 |
-
msgstr "
|
707 |
|
708 |
#: bws_menu.php:563 bws_menu.php:572
|
709 |
msgid "Activate this plugin"
|
@@ -1109,40 +1117,502 @@ msgid "version of the plugin."
|
|
1109 |
msgstr "версия плагина."
|
1110 |
|
1111 |
#: product_list.php:7
|
1112 |
-
msgid "
|
1113 |
-
msgstr "
|
1114 |
|
1115 |
#: product_list.php:8
|
1116 |
-
msgid "Content
|
1117 |
-
msgstr "
|
1118 |
|
1119 |
#: product_list.php:9
|
1120 |
-
msgid "
|
1121 |
-
msgstr "
|
1122 |
|
1123 |
#: product_list.php:10
|
1124 |
-
msgid "
|
1125 |
-
msgstr "
|
1126 |
|
1127 |
#: product_list.php:11
|
1128 |
-
msgid "
|
1129 |
-
msgstr "
|
1130 |
|
1131 |
#: product_list.php:12
|
1132 |
-
msgid "
|
1133 |
-
msgstr "
|
1134 |
|
1135 |
#: product_list.php:13
|
1136 |
-
msgid "
|
1137 |
-
msgstr "
|
1138 |
|
1139 |
#: product_list.php:14
|
1140 |
-
msgid "
|
1141 |
-
msgstr "
|
1142 |
|
1143 |
#: product_list.php:15
|
1144 |
-
msgid "
|
1145 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1146 |
|
1147 |
#~ msgid "Thank you for installing"
|
1148 |
#~ msgstr "Спасибо за установку"
|
@@ -1259,9 +1729,6 @@ msgstr "Другое"
|
|
1259 |
#~ msgid "Preview"
|
1260 |
#~ msgstr "Просмотр"
|
1261 |
|
1262 |
-
#~ msgid "Add BWS Plugins Shortcode"
|
1263 |
-
#~ msgstr "Добавить шорткод BWS Плагина"
|
1264 |
-
|
1265 |
#~ msgid "Select Plugin"
|
1266 |
#~ msgstr "Выберите плагин"
|
1267 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-06-08 15:43+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-07-03 13:22+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Generator: Poedit 1.8.7.1\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
48 |
msgid "Need help?"
|
49 |
msgstr "Нужна помощь?"
|
50 |
|
51 |
+
#: bws_functions.php:103 bws_functions.php:907 class-bws-settings.php:1047
|
52 |
msgid "Visit Help Center"
|
53 |
msgstr "Перейти в Help Center"
|
54 |
|
147 |
msgstr "Добавить"
|
148 |
|
149 |
#: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
|
150 |
+
#: bws_functions.php:378 bws_functions.php:480
|
151 |
msgid "Close notice"
|
152 |
msgstr "Закрыть"
|
153 |
|
199 |
"Ваш лицензионный ключ для %s истекает %s и вы не будете получать "
|
200 |
"приоритетную тех.поддержку или обновления."
|
201 |
|
202 |
+
#: bws_functions.php:475
|
203 |
#, php-format
|
204 |
msgid "Thank you for choosing %s plugin!"
|
205 |
msgstr "Спасибо за выбор плагина %s!"
|
206 |
|
207 |
+
#: bws_functions.php:476
|
208 |
msgid ""
|
209 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
210 |
"we'd love to hear about it!"
|
213 |
"функционала плагина, пожалуйста, присылайте их нам! Мы вседа открыты для "
|
214 |
"новых идей!"
|
215 |
|
216 |
+
#: bws_functions.php:477
|
217 |
msgid "Suggest a Feature"
|
218 |
msgstr "Предложить функционал"
|
219 |
|
220 |
+
#: bws_functions.php:493 class-bws-settings.php:533 class-bws-settings.php:536
|
221 |
#: class-bws-settings.php:584 class-bws-settings.php:587
|
222 |
msgid "Notice"
|
223 |
msgstr "Внимание"
|
224 |
|
225 |
+
#: bws_functions.php:493
|
226 |
msgid "The plugin's settings have been changed."
|
227 |
msgstr "Настройки плагина были изменены"
|
228 |
|
229 |
+
#: bws_functions.php:494 class-bws-settings.php:182 class-bws-settings.php:202
|
230 |
#: deprecated.php:640
|
231 |
msgid "Save Changes"
|
232 |
msgstr "Сохранить изменения"
|
233 |
|
234 |
+
#: bws_functions.php:508
|
235 |
msgid ""
|
236 |
"You can always look at premium options by checking the \"Pro Options\" in "
|
237 |
"the \"Misc\" tab."
|
239 |
"Вы всегда можете просмотреть премиум опции нажав на кнопку \"Pro опции\" на "
|
240 |
"вкладке \"Разное\"."
|
241 |
|
242 |
+
#: bws_functions.php:629
|
243 |
+
msgid "Add BWS Shortcode"
|
244 |
+
msgstr "Добавить BWS шорткод"
|
245 |
+
|
246 |
+
#: bws_functions.php:630
|
247 |
+
msgid "Add BWS Plugins Shortcode"
|
248 |
+
msgstr "Добавить шорткод BWS Плагина"
|
249 |
+
|
250 |
+
#: bws_functions.php:649
|
251 |
msgid "Add shortcode"
|
252 |
msgstr "Добавить шорткод"
|
253 |
|
254 |
+
#: bws_functions.php:649
|
255 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
256 |
msgstr "Добавьте шорткоды BestWebSoft плагинов с помощью этой кнопки."
|
257 |
|
258 |
+
#: bws_functions.php:695
|
259 |
msgid "Close"
|
260 |
msgstr "Закрыть"
|
261 |
|
262 |
+
#: bws_functions.php:787
|
263 |
msgid "Are you sure you want to restore default settings?"
|
264 |
msgstr ""
|
265 |
"Вы уверены что хотите восстановить все настройки плагина к настройкам по "
|
266 |
"умолчанию?"
|
267 |
|
268 |
+
#: bws_functions.php:790
|
269 |
msgid "Yes, restore all settings"
|
270 |
msgstr "Да, восстановить все настройки"
|
271 |
|
272 |
+
#: bws_functions.php:791
|
273 |
msgid "No, go back to the settings page"
|
274 |
msgstr "Нет, вернуться на страницу настроек"
|
275 |
|
276 |
+
#: bws_functions.php:833
|
277 |
msgid "Plugin"
|
278 |
msgstr "Плагин"
|
279 |
|
280 |
+
#: bws_functions.php:842
|
281 |
msgid "Shortcode settings"
|
282 |
msgstr "Настройки шорткода"
|
283 |
|
284 |
+
#: bws_functions.php:847
|
285 |
msgid "The shortcode will be inserted"
|
286 |
msgstr "Будет вставлен шорткод"
|
287 |
|
288 |
+
#: bws_functions.php:852
|
289 |
msgid "Insert"
|
290 |
msgstr "Вставить"
|
291 |
|
292 |
+
#: bws_functions.php:912
|
293 |
msgid "FAQ"
|
294 |
msgstr "FAQ"
|
295 |
|
296 |
+
#: bws_functions.php:918
|
297 |
msgid "For more information:"
|
298 |
msgstr "Для дополнительной информации:"
|
299 |
|
300 |
+
#: bws_functions.php:919
|
301 |
msgid "Documentation"
|
302 |
msgstr "Документация"
|
303 |
|
304 |
+
#: bws_functions.php:920
|
305 |
msgid "Video Instructions"
|
306 |
msgstr "Видео инструкции"
|
307 |
|
308 |
+
#: bws_functions.php:921
|
309 |
msgid "Submit a Request"
|
310 |
msgstr "Отправить запрос"
|
311 |
|
568 |
#: bws_menu.php:326
|
569 |
#, php-format
|
570 |
msgid "Get Access to %s+ Premium Plugins"
|
571 |
+
msgstr "Получить доступ к %s+ премиум плагинам"
|
572 |
|
573 |
#: bws_menu.php:328
|
574 |
msgid "Subscribe to Pro Membership"
|
711 |
|
712 |
#: bws_menu.php:549 class-bws-settings.php:156 class-bws-settings.php:1056
|
713 |
msgid "Upgrade to Pro"
|
714 |
+
msgstr "Обновить до Pro"
|
715 |
|
716 |
#: bws_menu.php:563 bws_menu.php:572
|
717 |
msgid "Activate this plugin"
|
1117 |
msgstr "версия плагина."
|
1118 |
|
1119 |
#: product_list.php:7
|
1120 |
+
msgid "Admin Tools"
|
1121 |
+
msgstr "Инструменты"
|
1122 |
|
1123 |
#: product_list.php:8
|
1124 |
+
msgid "Content"
|
1125 |
+
msgstr "Контент"
|
1126 |
|
1127 |
#: product_list.php:9
|
1128 |
+
msgid "eCommerce"
|
1129 |
+
msgstr "Коммерция"
|
1130 |
|
1131 |
#: product_list.php:10
|
1132 |
+
msgid "Marketing"
|
1133 |
+
msgstr "Маркетинг"
|
1134 |
|
1135 |
#: product_list.php:11
|
1136 |
+
msgid "Navigation"
|
1137 |
+
msgstr "Навигация"
|
1138 |
|
1139 |
#: product_list.php:12
|
1140 |
+
msgid "Recommended"
|
1141 |
+
msgstr "Рекомендованные"
|
1142 |
|
1143 |
#: product_list.php:13
|
1144 |
+
msgid "Security"
|
1145 |
+
msgstr "Безопасность"
|
1146 |
|
1147 |
#: product_list.php:14
|
1148 |
+
msgid "SEO"
|
1149 |
+
msgstr "Поисковая оптимизация"
|
1150 |
|
1151 |
#: product_list.php:15
|
1152 |
+
msgid "SMM"
|
1153 |
+
msgstr "СММ"
|
1154 |
+
|
1155 |
+
#: product_list.php:22
|
1156 |
+
msgid ""
|
1157 |
+
"Protect WordPress website forms from spam entries by means of math logic."
|
1158 |
+
msgstr ""
|
1159 |
+
"Защищайте формы вашего сайта WordPress от взлома путем математической логики."
|
1160 |
+
|
1161 |
+
#: product_list.php:32
|
1162 |
+
msgid "Create your personal car rental/booking and reservation website."
|
1163 |
+
msgstr "Создайте свой собственный сайт проката и резервирования автомобилей."
|
1164 |
+
|
1165 |
+
#: product_list.php:42
|
1166 |
+
msgid ""
|
1167 |
+
"Allow customers to reach you using secure contact form plugin any website "
|
1168 |
+
"must have."
|
1169 |
+
msgstr ""
|
1170 |
+
"Предоставьте возможность клиентам осуществлять связь с вами через безопасный "
|
1171 |
+
"плагин контактной формы, который должен иметь любой сайт."
|
1172 |
+
|
1173 |
+
#: product_list.php:52
|
1174 |
+
msgid "Add unlimited number of contact forms to WordPress website."
|
1175 |
+
msgstr ""
|
1176 |
+
"Добавляйте неограниченное количество контактных форм на ваш сайт WordPress."
|
1177 |
+
|
1178 |
+
#: product_list.php:62
|
1179 |
+
msgid "Save and manage Contact Form messages. Never lose important data."
|
1180 |
+
msgstr ""
|
1181 |
+
"Сохраняйте и управляйте сообщениями плагина Contact Form. Никогда не теряйте "
|
1182 |
+
"важные данные."
|
1183 |
+
|
1184 |
+
#: product_list.php:72
|
1185 |
+
msgid "Add unlimited custom pages to WordPress admin dashboard."
|
1186 |
+
msgstr ""
|
1187 |
+
"Добавляйте неограниченное количество пользовательских страниц в панели "
|
1188 |
+
"администратора WordPress."
|
1189 |
+
|
1190 |
+
#: product_list.php:79
|
1191 |
+
msgid "Add custom fields to WordPress website search results."
|
1192 |
+
msgstr ""
|
1193 |
+
"Добавляйте пользовательские поля в результаты поиска вашего сайта WordPress."
|
1194 |
+
|
1195 |
+
#: product_list.php:86
|
1196 |
+
msgid ""
|
1197 |
+
"Add custom post types and taxonomies to WordPress website search results."
|
1198 |
+
msgstr ""
|
1199 |
+
"Добавляйте пользовательские типы постов и таксономии в результаты поиска на "
|
1200 |
+
"вашем сайте WordPress."
|
1201 |
+
|
1202 |
+
#: product_list.php:96
|
1203 |
+
msgid "Add PayPal and 2CO donate buttons to receive charity payments."
|
1204 |
+
msgstr ""
|
1205 |
+
"Добавляйте кнопки PayPal и 2CO, чтобы получать пожертвования и "
|
1206 |
+
"благотворительные взносы."
|
1207 |
+
|
1208 |
+
#: product_list.php:103
|
1209 |
+
msgid ""
|
1210 |
+
"Automatically add outgoing email messages to queue instead of sending them "
|
1211 |
+
"immediately."
|
1212 |
+
msgstr ""
|
1213 |
+
"Автоматически формируйте очередь отправки исходящих электронных сообщений. "
|
1214 |
+
"Задавайте время и приоритет рассылки."
|
1215 |
+
|
1216 |
+
#: product_list.php:110
|
1217 |
+
msgid ""
|
1218 |
+
"Get latest error log messages to diagnose website problems. Define and fix "
|
1219 |
+
"issues faster."
|
1220 |
+
msgstr ""
|
1221 |
+
"Получайте последние сообщения из журнала ошибок для диагностики проблем "
|
1222 |
+
"сайта. Быстрее выявляйте и устраняйте проблемы."
|
1223 |
+
|
1224 |
+
#: product_list.php:117
|
1225 |
+
msgid ""
|
1226 |
+
"Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
|
1227 |
+
"widgets."
|
1228 |
+
msgstr ""
|
1229 |
+
"Добавляйте кнопки Facebook \"Подписаться\", \"Нравится\" и \"Поделиться\" в "
|
1230 |
+
"посты, страницы и виджеты сайта WordPress."
|
1231 |
+
|
1232 |
+
#: product_list.php:127
|
1233 |
+
msgid ""
|
1234 |
+
"Add beautiful galleries, albums & images to your WordPress website in a few "
|
1235 |
+
"clicks."
|
1236 |
+
msgstr ""
|
1237 |
+
"Добавляйте живописные галереи, альбомы и изображения на ваш сайт WordPress "
|
1238 |
+
"всего в несколько кликов."
|
1239 |
+
|
1240 |
+
#: product_list.php:137
|
1241 |
+
msgid ""
|
1242 |
+
"Add unlimited gallery categories. Organize images to make the navigation "
|
1243 |
+
"through content easier."
|
1244 |
+
msgstr ""
|
1245 |
+
"Добавляйте неограниченное количество категорий галерей. Группируйте "
|
1246 |
+
"изображения, чтобы упростить навигацию по контенту."
|
1247 |
+
|
1248 |
+
#: product_list.php:144
|
1249 |
+
msgid ""
|
1250 |
+
"Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
|
1251 |
+
"posts, pages and widgets."
|
1252 |
+
msgstr ""
|
1253 |
+
"Добавляйте кнопки Google \"+1\", \"Поделиться\", \"Подписаться\", \"Hangout"
|
1254 |
+
"\" и значок профиля к постам, страницам и виджетам WordPress."
|
1255 |
+
|
1256 |
+
#: product_list.php:154
|
1257 |
+
msgid ""
|
1258 |
+
"Stronger security solution which protects your WordPress website from hacks "
|
1259 |
+
"and unauthorized login attempts."
|
1260 |
+
msgstr ""
|
1261 |
+
"Мощнейшее решение для безопасности, которое защищает ваш сайт WordPress от "
|
1262 |
+
"взломов и неавторизованных попыток входа в систему."
|
1263 |
+
|
1264 |
+
#: product_list.php:164
|
1265 |
+
msgid ""
|
1266 |
+
"Add Adsense ads to WordPress website pages, posts, custom posts, search "
|
1267 |
+
"results, categories, tags, and widgets."
|
1268 |
+
msgstr ""
|
1269 |
+
"Добавляйте рекламу сервиса Adsense на страницы, посты, пользовательские "
|
1270 |
+
"посты, результаты поиска, категории, теги и виджеты сайта WordPress."
|
1271 |
+
|
1272 |
+
#: product_list.php:174
|
1273 |
+
msgid "Add Google Analytics code to WordPress website and track basic stats."
|
1274 |
+
msgstr ""
|
1275 |
+
"Добавляйте код Google Analytics на ваш сайт WordPress и отслеживайте базовую "
|
1276 |
+
"статистику сайта."
|
1277 |
+
|
1278 |
+
#: product_list.php:184
|
1279 |
+
msgid ""
|
1280 |
+
"Protect WordPress website forms from spam entries with Google Captcha "
|
1281 |
+
"(reCaptcha)."
|
1282 |
+
msgstr ""
|
1283 |
+
"Защищайте формы вашего сайта WordPress от спама с помощью Google Captcha "
|
1284 |
+
"(reCaptcha)."
|
1285 |
+
|
1286 |
+
#: product_list.php:194
|
1287 |
+
msgid "Add customized Google maps to WordPress posts, pages and widgets."
|
1288 |
+
msgstr ""
|
1289 |
+
"Добавляйте пользовательские карты Google в посты, страницы и виджеты "
|
1290 |
+
"WordPress."
|
1291 |
+
|
1292 |
+
#: product_list.php:204
|
1293 |
+
msgid ""
|
1294 |
+
"Generate and add XML sitemap to WordPress website. Help search engines index "
|
1295 |
+
"your blog."
|
1296 |
+
msgstr ""
|
1297 |
+
"Создавайте и добавляйте файлы XML sitemap на ваш сайт WordPress. Помогите "
|
1298 |
+
"поисковым системам проиндексировать ваш блог."
|
1299 |
+
|
1300 |
+
#: product_list.php:214
|
1301 |
+
msgid ""
|
1302 |
+
"Replace external WordPress website links with Google shortlinks and track "
|
1303 |
+
"click stats."
|
1304 |
+
msgstr ""
|
1305 |
+
"Замените внешние ссылки сайта WordPress на короткие ссылки Google и "
|
1306 |
+
"отслеживайте статистику кликов."
|
1307 |
+
|
1308 |
+
#: product_list.php:221
|
1309 |
+
msgid ""
|
1310 |
+
"Protect WordPress website – allow and deny access for certain IP addresses, "
|
1311 |
+
"hostnames, etc."
|
1312 |
+
msgstr ""
|
1313 |
+
"Защитите свой сайт WordPress - предоставляйте и запрещайте доступ с "
|
1314 |
+
"определенных IP-адресов, имен хостов и т.д."
|
1315 |
+
|
1316 |
+
#: product_list.php:231
|
1317 |
+
msgid ""
|
1318 |
+
"Create your personal job board and listing WordPress website. Search jobs, "
|
1319 |
+
"submit CV/resumes, choose candidates."
|
1320 |
+
msgstr ""
|
1321 |
+
"Создавайте свою собственную доску объявлений с перечнем вакансий на базе "
|
1322 |
+
"WordPress. Осуществляйте поиск вакансий, подачу резюме/CV кандидата, выбор "
|
1323 |
+
"кандидатов."
|
1324 |
+
|
1325 |
+
#: product_list.php:238
|
1326 |
+
msgid ""
|
1327 |
+
"Protect WordPress website against brute force attacks. Limit rate of login "
|
1328 |
+
"attempts."
|
1329 |
+
msgstr ""
|
1330 |
+
"Защищайте свой сайт WordPress от брутфорс-атак. Ограничивайте количество "
|
1331 |
+
"попыток ввода логина."
|
1332 |
+
|
1333 |
+
#: product_list.php:248
|
1334 |
+
msgid ""
|
1335 |
+
"Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
|
1336 |
+
"5 plugins included – profile, insider, etc."
|
1337 |
+
msgstr ""
|
1338 |
+
"Добавляйте кнопки LinkedIn \"Поделиться\" и \"Отслеживать\" к постам, "
|
1339 |
+
"страницам и виджетам WordPress. 5 плагинов включено - Профиль, Инсайдер и т."
|
1340 |
+
"д."
|
1341 |
+
|
1342 |
+
#: product_list.php:258
|
1343 |
+
msgid ""
|
1344 |
+
"Translate WordPress website content to other languages manually. Create "
|
1345 |
+
"multilingual pages, posts, widgets, menus, etc."
|
1346 |
+
msgstr ""
|
1347 |
+
"Переводите содержимое сайта WordPress на другие языки вручную. Создавайте "
|
1348 |
+
"многоязычные страницы, посты, виджеты, меню и т.д."
|
1349 |
+
|
1350 |
+
#: product_list.php:268
|
1351 |
+
msgid ""
|
1352 |
+
"Add customizable pagination to WordPress website. Split long content to "
|
1353 |
+
"multiple pages for better navigation."
|
1354 |
+
msgstr ""
|
1355 |
+
"Добавляйте настраиваемую пагинацию на ваш сайт WordPress. Разбивайте "
|
1356 |
+
"объемный контент на несколько страниц для лучшей навигации."
|
1357 |
+
|
1358 |
+
#: product_list.php:278
|
1359 |
+
msgid ""
|
1360 |
+
"Generate PDF files and print WordPress posts/pages. Customize document "
|
1361 |
+
"header/footer styles and appearance."
|
1362 |
+
msgstr ""
|
1363 |
+
"Создавайте PDF-файлы и печатайте посты/страницы сайта WordPress. "
|
1364 |
+
"Настраивайте стили хедера/футера документа и его внешний вид."
|
1365 |
+
|
1366 |
+
#: product_list.php:288
|
1367 |
+
msgid ""
|
1368 |
+
"Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
|
1369 |
+
"Profile) to WordPress posts, pages and widgets."
|
1370 |
+
msgstr ""
|
1371 |
+
"Добавляйте кнопки Pinterest \"Подписаться\", \"Сохранить\" и виджеты профиля "
|
1372 |
+
"(Пин, Доска, Профиль) к постам, страницам и виджетам WordPress."
|
1373 |
+
|
1374 |
+
#: product_list.php:298
|
1375 |
+
msgid ""
|
1376 |
+
"Create your personal portfolio WordPress website. Manage and showcase past "
|
1377 |
+
"projects to get more clients."
|
1378 |
+
msgstr ""
|
1379 |
+
"Создавайте и добавляйте портфолио на свой сайт WordPress. Управляйте и "
|
1380 |
+
"демонстрируйте прошлые проекты, чтобы привлечь больше клиентов."
|
1381 |
+
|
1382 |
+
#: product_list.php:308
|
1383 |
+
msgid "Export WordPress posts to CSV file format easily. Configure data order."
|
1384 |
+
msgstr ""
|
1385 |
+
"С легкостью экспортируйте посты WordPress в файлы формата CSV. Настраивайте "
|
1386 |
+
"порядок отображения данных."
|
1387 |
+
|
1388 |
+
#: product_list.php:315
|
1389 |
+
msgid ""
|
1390 |
+
"Add extra fields to default WordPress user profile. The easiest way to "
|
1391 |
+
"create and manage additional custom values."
|
1392 |
+
msgstr ""
|
1393 |
+
"Добавляйте пользовательские поля в стандартный профиль WordPress. Самый "
|
1394 |
+
"простой способ создания и управления дополнительными полями."
|
1395 |
+
|
1396 |
+
#: product_list.php:322
|
1397 |
+
msgid ""
|
1398 |
+
"Add and display HTML advertisement banner on WordPress website. Customize "
|
1399 |
+
"bar styles and appearance."
|
1400 |
+
msgstr ""
|
1401 |
+
"Добавляйте и отображайте баннерную HTML рекламу на сайте WordPress. "
|
1402 |
+
"Настраивайте стили и внешний вид баннера."
|
1403 |
+
|
1404 |
+
#: product_list.php:332
|
1405 |
+
msgid ""
|
1406 |
+
"Add customizable quotes and tips blocks to WordPress posts, pages and "
|
1407 |
+
"widgets."
|
1408 |
+
msgstr ""
|
1409 |
+
"Добавляйте настраиваемые цитаты и подсказки к постам, страницам и виджетам "
|
1410 |
+
"WordPress."
|
1411 |
+
|
1412 |
+
#: product_list.php:339
|
1413 |
+
msgid ""
|
1414 |
+
"Add rating plugin to your WordPress website to receive feedback from your "
|
1415 |
+
"customers."
|
1416 |
+
msgstr ""
|
1417 |
+
"Добавляйте систему оценивания и рейтинга на ваш сайт WordPress и получайте "
|
1418 |
+
"отзывы от ваших клиентов."
|
1419 |
+
|
1420 |
+
#: product_list.php:346
|
1421 |
+
msgid ""
|
1422 |
+
"Create your personal real estate WordPress website. Sell, rent and buy "
|
1423 |
+
"properties. Add, search and browse listings easily."
|
1424 |
+
msgstr ""
|
1425 |
+
"Создайте свой личный сайт агентства недвижимости на базе WordPress. "
|
1426 |
+
"Продавайте, арендуйте и покупайте недвижимость. Легко добавляйте, находите и "
|
1427 |
+
"просматривайте листинги."
|
1428 |
+
|
1429 |
+
#: product_list.php:356
|
1430 |
+
msgid ""
|
1431 |
+
"Attach, un-attach and re-attach media files quickly to WordPress posts and "
|
1432 |
+
"pages."
|
1433 |
+
msgstr ""
|
1434 |
+
"Прикрепляйте, открепляйте и повторно прикрепляйте медиа файлы к постам и "
|
1435 |
+
"страницам WordPress."
|
1436 |
+
|
1437 |
+
#: product_list.php:363
|
1438 |
+
msgid ""
|
1439 |
+
"Add related, featured, latest, and popular posts to your WordPress website. "
|
1440 |
+
"Connect your blog readers with a relevant content."
|
1441 |
+
msgstr ""
|
1442 |
+
"Добавляйте похожие, избранные, последние и популярные посты на ваш сайт "
|
1443 |
+
"WordPress. Предоставляйте своим читателям контент схожей тематики."
|
1444 |
+
|
1445 |
+
#: product_list.php:370
|
1446 |
+
msgid ""
|
1447 |
+
"Send bulk email messages to WordPress users. Custom templates, advanced "
|
1448 |
+
"settings and detailed reports."
|
1449 |
+
msgstr ""
|
1450 |
+
"Осуществляйте массовую рассылку писем пользователям WordPress. "
|
1451 |
+
"Пользовательские шаблоны, дополнительные настройки и подробные отчеты."
|
1452 |
+
|
1453 |
+
#: product_list.php:380
|
1454 |
+
msgid ""
|
1455 |
+
"The best responsive slider plugin for your WordPress website. Create "
|
1456 |
+
"beautifully animated slides just in a few clicks."
|
1457 |
+
msgstr ""
|
1458 |
+
"Самый лучший адаптивный слайдер для вашего сайта WordPress. Создавайте "
|
1459 |
+
"красиво анимированные слайды всего в несколько кликов."
|
1460 |
+
|
1461 |
+
#: product_list.php:387
|
1462 |
+
msgid ""
|
1463 |
+
"Configure SMTP server to receive email messages from WordPress to Gmail, "
|
1464 |
+
"Yahoo, Hotmail and other services."
|
1465 |
+
msgstr ""
|
1466 |
+
"Настраивайте SMTP-сервер, чтобы получать электронные сообщения с сайта "
|
1467 |
+
"WordPress на такие почтовые службы как Gmail, Yahoo, Hotmail и многие другие."
|
1468 |
+
|
1469 |
+
#: product_list.php:394
|
1470 |
+
msgid ""
|
1471 |
+
"Add social media buttons and widgets to WordPress posts, pages and widgets. "
|
1472 |
+
"FB, Twitter, G+1, Pinterest, LinkedIn."
|
1473 |
+
msgstr ""
|
1474 |
+
"Добавляйте кнопки и виджеты социальных сетей к постам, страницам и виджетам "
|
1475 |
+
"WordPress. FB, Twitter, G+1, Pinterest, LinkedIn."
|
1476 |
+
|
1477 |
+
#: product_list.php:404
|
1478 |
+
msgid ""
|
1479 |
+
"Add social media login, registration, and commenting to your WordPress "
|
1480 |
+
"website."
|
1481 |
+
msgstr ""
|
1482 |
+
"Добавляйте на свой сайт WordPress возможность входа, регистрации и "
|
1483 |
+
"комментирования с использованием существующих аккаунтов социальных сетей."
|
1484 |
+
|
1485 |
+
#: product_list.php:411
|
1486 |
+
msgid ""
|
1487 |
+
"Add email newsletter sign up form to WordPress posts, pages and widgets. "
|
1488 |
+
"Collect data and subscribe your users."
|
1489 |
+
msgstr ""
|
1490 |
+
"Добавляйте форму подписки на новостную рассылку в посты, страницы и виджеты "
|
1491 |
+
"WordPress. Собирайте данные и осуществляйте подписку пользователей."
|
1492 |
+
|
1493 |
+
#: product_list.php:421
|
1494 |
+
msgid ""
|
1495 |
+
"Add testimonials and feedbacks from your customers to WordPress website "
|
1496 |
+
"posts, pages, and widgets."
|
1497 |
+
msgstr ""
|
1498 |
+
"Добавляйте рекомендации и отзывы ваших клиентов в посты, страницы и виджеты "
|
1499 |
+
"сайта WordPress."
|
1500 |
+
|
1501 |
+
#: product_list.php:428
|
1502 |
+
msgid ""
|
1503 |
+
"Best timesheet plugin for WordPress. Track employee time, streamline "
|
1504 |
+
"attendance and generate reports."
|
1505 |
+
msgstr ""
|
1506 |
+
"Лучший плагин учёта рабочего времени на сайте WordPress. Отслеживайте время "
|
1507 |
+
"работы сотрудников, оптимизируйте график работы в офисе и создавайте отчеты."
|
1508 |
+
|
1509 |
+
#: product_list.php:438
|
1510 |
+
msgid ""
|
1511 |
+
"Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
|
1512 |
+
"and pages."
|
1513 |
+
msgstr ""
|
1514 |
+
"Добавляйте кнопки Твиттера \"Читать\", \"Твитнуть\", \"Метка\" и \"Упомянуть"
|
1515 |
+
"\" к постам и страницам WordPress. "
|
1516 |
+
|
1517 |
+
#: product_list.php:448
|
1518 |
+
msgid ""
|
1519 |
+
"Automatically check and update WordPress website core with all installed "
|
1520 |
+
"plugins and themes to the latest versions."
|
1521 |
+
msgstr ""
|
1522 |
+
"Выполняйте автоматическую проверку и обновление ядра WordPress до последних "
|
1523 |
+
"версий со всеми установленными плагинами и темами."
|
1524 |
+
|
1525 |
+
#: product_list.php:458
|
1526 |
+
msgid ""
|
1527 |
+
"Powerful user role management plugin for WordPress website. Create, edit, "
|
1528 |
+
"copy, and delete user roles."
|
1529 |
+
msgstr ""
|
1530 |
+
"Эффективный плагин управления ролями пользователей для сайта WordPress. "
|
1531 |
+
"Создавайте, редактируйте, копируйте и удаляйте роли пользователей."
|
1532 |
+
|
1533 |
+
#: product_list.php:468
|
1534 |
+
msgid ""
|
1535 |
+
"Display live count of online visitors who are currently browsing your "
|
1536 |
+
"WordPress website."
|
1537 |
+
msgstr ""
|
1538 |
+
"Ведите подсчет количества посетителей, которые в настоящее время "
|
1539 |
+
"просматривают ваш сайт WordPress."
|
1540 |
+
|
1541 |
+
#: product_list.php:478
|
1542 |
+
msgid ""
|
1543 |
+
"Backup and export Zendesk Help Center content automatically to your "
|
1544 |
+
"WordPress website database."
|
1545 |
+
msgstr ""
|
1546 |
+
"Делайте автоматическое резервное копирование и экспорт содержимого Zendesk "
|
1547 |
+
"Help Center в базу данных вашего сайта WordPress."
|
1548 |
+
|
1549 |
+
#~ msgid ""
|
1550 |
+
#~ "Add related posts to WordPress website posts or widgets. Link your "
|
1551 |
+
#~ "readers to relevant content."
|
1552 |
+
#~ msgstr ""
|
1553 |
+
#~ "Добавляйте связанные публикации в посты или виджеты сайта WordPress. "
|
1554 |
+
#~ "Предоставляйте своим читателям контент схожей тематики."
|
1555 |
+
|
1556 |
+
#~ msgid "Advertisement"
|
1557 |
+
#~ msgstr "Реклама"
|
1558 |
+
|
1559 |
+
#~ msgid "Content & Media"
|
1560 |
+
#~ msgstr "Содержание и мультимедийные элементы"
|
1561 |
+
|
1562 |
+
#~ msgid "Management"
|
1563 |
+
#~ msgstr "Управление"
|
1564 |
+
|
1565 |
+
#~ msgid "Site Stats"
|
1566 |
+
#~ msgstr "Статистика сайта"
|
1567 |
+
|
1568 |
+
#~ msgid "Social"
|
1569 |
+
#~ msgstr "Социальные сервисы"
|
1570 |
+
|
1571 |
+
#~ msgid "Utilities"
|
1572 |
+
#~ msgstr "Утилиты"
|
1573 |
+
|
1574 |
+
#~ msgid "Other"
|
1575 |
+
#~ msgstr "Другое"
|
1576 |
+
|
1577 |
+
#~ msgid ""
|
1578 |
+
#~ "Manage database and file system right from your WordPress admin dashboard."
|
1579 |
+
#~ msgstr ""
|
1580 |
+
#~ "Управляйте базой данных и файловой системой прямо из панели "
|
1581 |
+
#~ "администратора WordPress."
|
1582 |
+
|
1583 |
+
#~ msgid ""
|
1584 |
+
#~ "Add featured posts to WordPress website posts and widgets. Highlight "
|
1585 |
+
#~ "important information."
|
1586 |
+
#~ msgstr ""
|
1587 |
+
#~ "Добавляйте избранные публикации к постам и виджетам сайта WordPress. "
|
1588 |
+
#~ "Выделяйте важную информацию."
|
1589 |
+
|
1590 |
+
#~ msgid ""
|
1591 |
+
#~ "Add widgets Latest Posts or Latest Posts for Selected Categories to your "
|
1592 |
+
#~ "WordPress website."
|
1593 |
+
#~ msgstr ""
|
1594 |
+
#~ "Добавляйте виджет новейших постов или виджет новейших постов для "
|
1595 |
+
#~ "выбранной категории на сайт WordPress."
|
1596 |
+
|
1597 |
+
#~ msgid ""
|
1598 |
+
#~ "Track views, comments and add the most popular posts to Wordpress widgets."
|
1599 |
+
#~ msgstr ""
|
1600 |
+
#~ "Отслеживайте просмотры и комментарии, добавляйте самые популярные посты в "
|
1601 |
+
#~ "виджеты сайта Wordpress."
|
1602 |
+
|
1603 |
+
#~ msgid ""
|
1604 |
+
#~ "Add latest posts or latest posts for selected categories widgets to "
|
1605 |
+
#~ "WordPress website."
|
1606 |
+
#~ msgstr ""
|
1607 |
+
#~ "Добавляйте виджет новейших постов или виджет новейших постов для "
|
1608 |
+
#~ "выбранной категории на сайт WordPress."
|
1609 |
+
|
1610 |
+
#~ msgid ""
|
1611 |
+
#~ "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress "
|
1612 |
+
#~ "posts, pages and widgets."
|
1613 |
+
#~ msgstr ""
|
1614 |
+
#~ "Добавляйте кнопки Твиттера \"Читать\", \"Твитнуть\", \"Метка\" и "
|
1615 |
+
#~ "\"Упомянуть\" к постам и страницам WordPress. "
|
1616 |
|
1617 |
#~ msgid "Thank you for installing"
|
1618 |
#~ msgstr "Спасибо за установку"
|
1729 |
#~ msgid "Preview"
|
1730 |
#~ msgstr "Просмотр"
|
1731 |
|
|
|
|
|
|
|
1732 |
#~ msgid "Select Plugin"
|
1733 |
#~ msgstr "Выберите плагин"
|
1734 |
|
bws_menu/languages/bestwebsoft-uk.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-uk.po
CHANGED
@@ -2,18 +2,20 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-03
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
|
9 |
-
"Language:
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Generator: Poedit 1.8.7.1\n"
|
|
|
|
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: bws_functions.php:72 bws_functions.php:190
|
@@ -48,7 +50,7 @@ msgstr "Оцінити"
|
|
48 |
msgid "Need help?"
|
49 |
msgstr "Потрібна допомога?"
|
50 |
|
51 |
-
#: bws_functions.php:103 bws_functions.php:
|
52 |
msgid "Visit Help Center"
|
53 |
msgstr "Перейти до Help Center"
|
54 |
|
@@ -146,7 +148,7 @@ msgid "Add New"
|
|
146 |
msgstr "Додати"
|
147 |
|
148 |
#: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
|
149 |
-
#: bws_functions.php:378 bws_functions.php:
|
150 |
msgid "Close notice"
|
151 |
msgstr "Закрити"
|
152 |
|
@@ -197,12 +199,12 @@ msgstr ""
|
|
197 |
"Ваш ліцензійний ключ для %s витікає %s та ви більше не будете отримувати "
|
198 |
"першочергову технічну підтримку та оновлення."
|
199 |
|
200 |
-
#: bws_functions.php:
|
201 |
#, php-format
|
202 |
msgid "Thank you for choosing %s plugin!"
|
203 |
msgstr "Дякую за вибір плагіна %s!"
|
204 |
|
205 |
-
#: bws_functions.php:
|
206 |
msgid ""
|
207 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
208 |
"we'd love to hear about it!"
|
@@ -211,25 +213,25 @@ msgstr ""
|
|
211 |
"функціоналу плагіна, будь ласка, надсилайте їх нам! Ми завжди відкриті для "
|
212 |
"нових ідей!"
|
213 |
|
214 |
-
#: bws_functions.php:
|
215 |
msgid "Suggest a Feature"
|
216 |
msgstr "Запропонувати функціонал"
|
217 |
|
218 |
-
#: bws_functions.php:
|
219 |
#: class-bws-settings.php:584 class-bws-settings.php:587
|
220 |
msgid "Notice"
|
221 |
msgstr "Зауважте"
|
222 |
|
223 |
-
#: bws_functions.php:
|
224 |
msgid "The plugin's settings have been changed."
|
225 |
msgstr "Налаштування плагіну змінено."
|
226 |
|
227 |
-
#: bws_functions.php:
|
228 |
#: deprecated.php:640
|
229 |
msgid "Save Changes"
|
230 |
msgstr "Зберегти зміни"
|
231 |
|
232 |
-
#: bws_functions.php:
|
233 |
msgid ""
|
234 |
"You can always look at premium options by checking the \"Pro Options\" in "
|
235 |
"the \"Misc\" tab."
|
@@ -237,63 +239,71 @@ msgstr ""
|
|
237 |
"Ви завжди можете подивитися на преміум опції, натиснувши на кнопку \"Pro "
|
238 |
"опції\" на вкладці \"Різне\"."
|
239 |
|
240 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
241 |
msgid "Add shortcode"
|
242 |
msgstr "Додати шорткод"
|
243 |
|
244 |
-
#: bws_functions.php:
|
245 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
246 |
msgstr "Додайте шорткоди BestWebSoft плагінів за допомогою цієї кнопки."
|
247 |
|
248 |
-
#: bws_functions.php:
|
249 |
msgid "Close"
|
250 |
msgstr "Закрити"
|
251 |
|
252 |
-
#: bws_functions.php:
|
253 |
msgid "Are you sure you want to restore default settings?"
|
254 |
msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
|
255 |
|
256 |
-
#: bws_functions.php:
|
257 |
msgid "Yes, restore all settings"
|
258 |
msgstr "Так, скинути налаштування"
|
259 |
|
260 |
-
#: bws_functions.php:
|
261 |
msgid "No, go back to the settings page"
|
262 |
msgstr "Ні, повернутись назад на сторінку налаштувань"
|
263 |
|
264 |
-
#: bws_functions.php:
|
265 |
msgid "Plugin"
|
266 |
msgstr "Плагін"
|
267 |
|
268 |
-
#: bws_functions.php:
|
269 |
msgid "Shortcode settings"
|
270 |
msgstr "Налаштування шорткоду"
|
271 |
|
272 |
-
#: bws_functions.php:
|
273 |
msgid "The shortcode will be inserted"
|
274 |
msgstr "Буде вставлено шорткод"
|
275 |
|
276 |
-
#: bws_functions.php:
|
277 |
msgid "Insert"
|
278 |
msgstr "Вставити"
|
279 |
|
280 |
-
#: bws_functions.php:
|
281 |
msgid "FAQ"
|
282 |
msgstr "FAQ"
|
283 |
|
284 |
-
#: bws_functions.php:
|
285 |
msgid "For more information:"
|
286 |
msgstr "Для отримання додаткової інформації:"
|
287 |
|
288 |
-
#: bws_functions.php:
|
289 |
msgid "Documentation"
|
290 |
msgstr "Документація"
|
291 |
|
292 |
-
#: bws_functions.php:
|
293 |
msgid "Video Instructions"
|
294 |
msgstr "Відео інструкції"
|
295 |
|
296 |
-
#: bws_functions.php:
|
297 |
msgid "Submit a Request"
|
298 |
msgstr "Надіслати запит"
|
299 |
|
@@ -555,7 +565,7 @@ msgstr "Управління придбаними ліцензіями і під
|
|
555 |
#: bws_menu.php:326
|
556 |
#, php-format
|
557 |
msgid "Get Access to %s+ Premium Plugins"
|
558 |
-
msgstr "Отримати
|
559 |
|
560 |
#: bws_menu.php:328
|
561 |
msgid "Subscribe to Pro Membership"
|
@@ -699,7 +709,7 @@ msgstr "Встановити"
|
|
699 |
|
700 |
#: bws_menu.php:549 class-bws-settings.php:156 class-bws-settings.php:1056
|
701 |
msgid "Upgrade to Pro"
|
702 |
-
msgstr "
|
703 |
|
704 |
#: bws_menu.php:563 bws_menu.php:572
|
705 |
msgid "Activate this plugin"
|
@@ -820,7 +830,7 @@ msgstr "Огляд"
|
|
820 |
#: class-bws-settings.php:457
|
821 |
#, php-format
|
822 |
msgid "Activate custom %s code."
|
823 |
-
msgstr "
|
824 |
|
825 |
#: class-bws-settings.php:464 deprecated.php:633
|
826 |
#, php-format
|
@@ -1105,40 +1115,492 @@ msgid "version of the plugin."
|
|
1105 |
msgstr "версія плагіна."
|
1106 |
|
1107 |
#: product_list.php:7
|
1108 |
-
msgid "
|
1109 |
-
msgstr "
|
1110 |
|
1111 |
#: product_list.php:8
|
1112 |
-
msgid "Content
|
1113 |
-
msgstr "
|
1114 |
|
1115 |
#: product_list.php:9
|
1116 |
-
msgid "
|
1117 |
-
msgstr "
|
1118 |
|
1119 |
#: product_list.php:10
|
1120 |
-
msgid "
|
1121 |
-
msgstr "
|
1122 |
|
1123 |
#: product_list.php:11
|
1124 |
-
msgid "
|
1125 |
-
msgstr "
|
1126 |
|
1127 |
#: product_list.php:12
|
1128 |
-
msgid "
|
1129 |
-
msgstr "
|
1130 |
|
1131 |
#: product_list.php:13
|
1132 |
-
msgid "
|
1133 |
-
msgstr "
|
1134 |
|
1135 |
#: product_list.php:14
|
1136 |
-
msgid "
|
1137 |
-
msgstr "
|
1138 |
|
1139 |
#: product_list.php:15
|
1140 |
-
msgid "
|
1141 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1142 |
|
1143 |
#~ msgid "Thank you for installing"
|
1144 |
#~ msgstr "Дякуємо, що встановили"
|
@@ -1256,9 +1718,6 @@ msgstr "Інше"
|
|
1256 |
#~ msgid "Preview"
|
1257 |
#~ msgstr "Попередній перегляд"
|
1258 |
|
1259 |
-
#~ msgid "Add BWS Plugins Shortcode"
|
1260 |
-
#~ msgstr "Додати BWS шорткод"
|
1261 |
-
|
1262 |
#~ msgid ""
|
1263 |
#~ "(your username is the email you specify when purchasing the product), "
|
1264 |
#~ "where you can make the necessary changes."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-06-08 15:43+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-07-03 13:22+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
|
9 |
+
"Language: uk_UA\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Generator: Poedit 1.8.7.1\n"
|
17 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
18 |
+
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
#: bws_functions.php:72 bws_functions.php:190
|
50 |
msgid "Need help?"
|
51 |
msgstr "Потрібна допомога?"
|
52 |
|
53 |
+
#: bws_functions.php:103 bws_functions.php:907 class-bws-settings.php:1047
|
54 |
msgid "Visit Help Center"
|
55 |
msgstr "Перейти до Help Center"
|
56 |
|
148 |
msgstr "Додати"
|
149 |
|
150 |
#: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
|
151 |
+
#: bws_functions.php:378 bws_functions.php:480
|
152 |
msgid "Close notice"
|
153 |
msgstr "Закрити"
|
154 |
|
199 |
"Ваш ліцензійний ключ для %s витікає %s та ви більше не будете отримувати "
|
200 |
"першочергову технічну підтримку та оновлення."
|
201 |
|
202 |
+
#: bws_functions.php:475
|
203 |
#, php-format
|
204 |
msgid "Thank you for choosing %s plugin!"
|
205 |
msgstr "Дякую за вибір плагіна %s!"
|
206 |
|
207 |
+
#: bws_functions.php:476
|
208 |
msgid ""
|
209 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
210 |
"we'd love to hear about it!"
|
213 |
"функціоналу плагіна, будь ласка, надсилайте їх нам! Ми завжди відкриті для "
|
214 |
"нових ідей!"
|
215 |
|
216 |
+
#: bws_functions.php:477
|
217 |
msgid "Suggest a Feature"
|
218 |
msgstr "Запропонувати функціонал"
|
219 |
|
220 |
+
#: bws_functions.php:493 class-bws-settings.php:533 class-bws-settings.php:536
|
221 |
#: class-bws-settings.php:584 class-bws-settings.php:587
|
222 |
msgid "Notice"
|
223 |
msgstr "Зауважте"
|
224 |
|
225 |
+
#: bws_functions.php:493
|
226 |
msgid "The plugin's settings have been changed."
|
227 |
msgstr "Налаштування плагіну змінено."
|
228 |
|
229 |
+
#: bws_functions.php:494 class-bws-settings.php:182 class-bws-settings.php:202
|
230 |
#: deprecated.php:640
|
231 |
msgid "Save Changes"
|
232 |
msgstr "Зберегти зміни"
|
233 |
|
234 |
+
#: bws_functions.php:508
|
235 |
msgid ""
|
236 |
"You can always look at premium options by checking the \"Pro Options\" in "
|
237 |
"the \"Misc\" tab."
|
239 |
"Ви завжди можете подивитися на преміум опції, натиснувши на кнопку \"Pro "
|
240 |
"опції\" на вкладці \"Різне\"."
|
241 |
|
242 |
+
#: bws_functions.php:629
|
243 |
+
msgid "Add BWS Shortcode"
|
244 |
+
msgstr "Додати BWS шорткод"
|
245 |
+
|
246 |
+
#: bws_functions.php:630
|
247 |
+
msgid "Add BWS Plugins Shortcode"
|
248 |
+
msgstr "Додати шорткод BWS плагіну"
|
249 |
+
|
250 |
+
#: bws_functions.php:649
|
251 |
msgid "Add shortcode"
|
252 |
msgstr "Додати шорткод"
|
253 |
|
254 |
+
#: bws_functions.php:649
|
255 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
256 |
msgstr "Додайте шорткоди BestWebSoft плагінів за допомогою цієї кнопки."
|
257 |
|
258 |
+
#: bws_functions.php:695
|
259 |
msgid "Close"
|
260 |
msgstr "Закрити"
|
261 |
|
262 |
+
#: bws_functions.php:787
|
263 |
msgid "Are you sure you want to restore default settings?"
|
264 |
msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
|
265 |
|
266 |
+
#: bws_functions.php:790
|
267 |
msgid "Yes, restore all settings"
|
268 |
msgstr "Так, скинути налаштування"
|
269 |
|
270 |
+
#: bws_functions.php:791
|
271 |
msgid "No, go back to the settings page"
|
272 |
msgstr "Ні, повернутись назад на сторінку налаштувань"
|
273 |
|
274 |
+
#: bws_functions.php:833
|
275 |
msgid "Plugin"
|
276 |
msgstr "Плагін"
|
277 |
|
278 |
+
#: bws_functions.php:842
|
279 |
msgid "Shortcode settings"
|
280 |
msgstr "Налаштування шорткоду"
|
281 |
|
282 |
+
#: bws_functions.php:847
|
283 |
msgid "The shortcode will be inserted"
|
284 |
msgstr "Буде вставлено шорткод"
|
285 |
|
286 |
+
#: bws_functions.php:852
|
287 |
msgid "Insert"
|
288 |
msgstr "Вставити"
|
289 |
|
290 |
+
#: bws_functions.php:912
|
291 |
msgid "FAQ"
|
292 |
msgstr "FAQ"
|
293 |
|
294 |
+
#: bws_functions.php:918
|
295 |
msgid "For more information:"
|
296 |
msgstr "Для отримання додаткової інформації:"
|
297 |
|
298 |
+
#: bws_functions.php:919
|
299 |
msgid "Documentation"
|
300 |
msgstr "Документація"
|
301 |
|
302 |
+
#: bws_functions.php:920
|
303 |
msgid "Video Instructions"
|
304 |
msgstr "Відео інструкції"
|
305 |
|
306 |
+
#: bws_functions.php:921
|
307 |
msgid "Submit a Request"
|
308 |
msgstr "Надіслати запит"
|
309 |
|
565 |
#: bws_menu.php:326
|
566 |
#, php-format
|
567 |
msgid "Get Access to %s+ Premium Plugins"
|
568 |
+
msgstr "Отримати доступ до %s+ преміум плагинам"
|
569 |
|
570 |
#: bws_menu.php:328
|
571 |
msgid "Subscribe to Pro Membership"
|
709 |
|
710 |
#: bws_menu.php:549 class-bws-settings.php:156 class-bws-settings.php:1056
|
711 |
msgid "Upgrade to Pro"
|
712 |
+
msgstr "Оновити до Pro"
|
713 |
|
714 |
#: bws_menu.php:563 bws_menu.php:572
|
715 |
msgid "Activate this plugin"
|
830 |
#: class-bws-settings.php:457
|
831 |
#, php-format
|
832 |
msgid "Activate custom %s code."
|
833 |
+
msgstr "Активувати користувацький %s код."
|
834 |
|
835 |
#: class-bws-settings.php:464 deprecated.php:633
|
836 |
#, php-format
|
1115 |
msgstr "версія плагіна."
|
1116 |
|
1117 |
#: product_list.php:7
|
1118 |
+
msgid "Admin Tools"
|
1119 |
+
msgstr "Інструменти"
|
1120 |
|
1121 |
#: product_list.php:8
|
1122 |
+
msgid "Content"
|
1123 |
+
msgstr "Контент"
|
1124 |
|
1125 |
#: product_list.php:9
|
1126 |
+
msgid "eCommerce"
|
1127 |
+
msgstr "Комерція"
|
1128 |
|
1129 |
#: product_list.php:10
|
1130 |
+
msgid "Marketing"
|
1131 |
+
msgstr "Маркетинг"
|
1132 |
|
1133 |
#: product_list.php:11
|
1134 |
+
msgid "Navigation"
|
1135 |
+
msgstr "Навігація"
|
1136 |
|
1137 |
#: product_list.php:12
|
1138 |
+
msgid "Recommended"
|
1139 |
+
msgstr "Рекомендовані "
|
1140 |
|
1141 |
#: product_list.php:13
|
1142 |
+
msgid "Security"
|
1143 |
+
msgstr "Безпека"
|
1144 |
|
1145 |
#: product_list.php:14
|
1146 |
+
msgid "SEO"
|
1147 |
+
msgstr "Пошукова оптимізація"
|
1148 |
|
1149 |
#: product_list.php:15
|
1150 |
+
msgid "SMM"
|
1151 |
+
msgstr "СММ"
|
1152 |
+
|
1153 |
+
#: product_list.php:22
|
1154 |
+
msgid ""
|
1155 |
+
"Protect WordPress website forms from spam entries by means of math logic."
|
1156 |
+
msgstr ""
|
1157 |
+
"Захищайте форми вашого сайту WordPress від зламування шляхом математичної "
|
1158 |
+
"логіки."
|
1159 |
+
|
1160 |
+
#: product_list.php:32
|
1161 |
+
msgid "Create your personal car rental/booking and reservation website."
|
1162 |
+
msgstr "Створіть свій власний сайт прокату і резервування автомобілів."
|
1163 |
+
|
1164 |
+
#: product_list.php:42
|
1165 |
+
msgid ""
|
1166 |
+
"Allow customers to reach you using secure contact form plugin any website "
|
1167 |
+
"must have."
|
1168 |
+
msgstr ""
|
1169 |
+
"Надайте можливість клієнтам здійснювати зв'язок з вами через безпечний "
|
1170 |
+
"плагін контактної форми, який повинен мати будь-який сайт."
|
1171 |
+
|
1172 |
+
#: product_list.php:52
|
1173 |
+
msgid "Add unlimited number of contact forms to WordPress website."
|
1174 |
+
msgstr "Додавайте необмежену кількість контактних форм на ваш сайт WordPress."
|
1175 |
+
|
1176 |
+
#: product_list.php:62
|
1177 |
+
msgid "Save and manage Contact Form messages. Never lose important data."
|
1178 |
+
msgstr ""
|
1179 |
+
"Зберігайте і керуйте повідомленнями плагіну Contact Form. Ніколи не "
|
1180 |
+
"втрачайте важливі дані."
|
1181 |
+
|
1182 |
+
#: product_list.php:72
|
1183 |
+
msgid "Add unlimited custom pages to WordPress admin dashboard."
|
1184 |
+
msgstr ""
|
1185 |
+
"Додавайте необмежену кількість користувацьких сторінок у панелі "
|
1186 |
+
"адміністратора WordPress."
|
1187 |
+
|
1188 |
+
#: product_list.php:79
|
1189 |
+
msgid "Add custom fields to WordPress website search results."
|
1190 |
+
msgstr ""
|
1191 |
+
"Додавайте користувацькі поля у результати пошуку вашого сайту WordPress."
|
1192 |
+
|
1193 |
+
#: product_list.php:86
|
1194 |
+
msgid ""
|
1195 |
+
"Add custom post types and taxonomies to WordPress website search results."
|
1196 |
+
msgstr ""
|
1197 |
+
"Додавайте користувацькі типи постів і таксономії у результати пошуку на "
|
1198 |
+
"вашому сайті WordPress."
|
1199 |
+
|
1200 |
+
#: product_list.php:96
|
1201 |
+
msgid "Add PayPal and 2CO donate buttons to receive charity payments."
|
1202 |
+
msgstr ""
|
1203 |
+
"Додавайте кнопки PayPal і 2CO, щоб отримувати пожертви та благодійні внески."
|
1204 |
+
|
1205 |
+
#: product_list.php:103
|
1206 |
+
msgid ""
|
1207 |
+
"Automatically add outgoing email messages to queue instead of sending them "
|
1208 |
+
"immediately."
|
1209 |
+
msgstr ""
|
1210 |
+
"Автоматично формуйте чергу відправки вихідних електронних повідомлень. "
|
1211 |
+
"Задавайте час і пріоритет розсилки."
|
1212 |
+
|
1213 |
+
#: product_list.php:110
|
1214 |
+
msgid ""
|
1215 |
+
"Get latest error log messages to diagnose website problems. Define and fix "
|
1216 |
+
"issues faster."
|
1217 |
+
msgstr ""
|
1218 |
+
"Отримуйте останні повідомлення з журналу помилок для діагностики проблем "
|
1219 |
+
"сайту. Швидше виявляйте і усувайте проблеми."
|
1220 |
+
|
1221 |
+
#: product_list.php:117
|
1222 |
+
msgid ""
|
1223 |
+
"Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
|
1224 |
+
"widgets."
|
1225 |
+
msgstr ""
|
1226 |
+
"Додавайте кнопки Facebook \"Підписатися\", \"Подобається\" та \"Поділитися\" "
|
1227 |
+
"у пости, сторінки і віджети сайту WordPress."
|
1228 |
+
|
1229 |
+
#: product_list.php:127
|
1230 |
+
msgid ""
|
1231 |
+
"Add beautiful galleries, albums & images to your WordPress website in a few "
|
1232 |
+
"clicks."
|
1233 |
+
msgstr ""
|
1234 |
+
"Додавайте мальовничі галереї, альбоми і зображення на ваш сайт WordPress "
|
1235 |
+
"всього в декілька кліків."
|
1236 |
+
|
1237 |
+
#: product_list.php:137
|
1238 |
+
msgid ""
|
1239 |
+
"Add unlimited gallery categories. Organize images to make the navigation "
|
1240 |
+
"through content easier."
|
1241 |
+
msgstr ""
|
1242 |
+
"Додавайте необмежену кількість категорій галерей. Групуйте зображення, щоб "
|
1243 |
+
"спростити навігацію контентом."
|
1244 |
+
|
1245 |
+
#: product_list.php:144
|
1246 |
+
msgid ""
|
1247 |
+
"Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
|
1248 |
+
"posts, pages and widgets."
|
1249 |
+
msgstr ""
|
1250 |
+
"Додавайте кнопки Google \"+1\", \"Поділитися\", \"Підписатися\", \"Hangout\" "
|
1251 |
+
"і значок профілю до постів, сторінок та віджетів WordPress."
|
1252 |
+
|
1253 |
+
#: product_list.php:154
|
1254 |
+
msgid ""
|
1255 |
+
"Stronger security solution which protects your WordPress website from hacks "
|
1256 |
+
"and unauthorized login attempts."
|
1257 |
+
msgstr ""
|
1258 |
+
"Найпотужніше рішення безпеки, яке захищає ваш сайт WordPress від зломів та "
|
1259 |
+
"неавторизованих спроб входу в систему."
|
1260 |
+
|
1261 |
+
#: product_list.php:164
|
1262 |
+
msgid ""
|
1263 |
+
"Add Adsense ads to WordPress website pages, posts, custom posts, search "
|
1264 |
+
"results, categories, tags, and widgets."
|
1265 |
+
msgstr ""
|
1266 |
+
"Додавайте рекламу сервісу Adsense на сторінки, пости, користувацькі пости, "
|
1267 |
+
"результати пошуку, категорії, теги і віджети сайту WordPress."
|
1268 |
+
|
1269 |
+
#: product_list.php:174
|
1270 |
+
msgid "Add Google Analytics code to WordPress website and track basic stats."
|
1271 |
+
msgstr ""
|
1272 |
+
"Додавайте код Google Analytics на ваш сайт WordPress та відстежуйте базову "
|
1273 |
+
"статистику сайту."
|
1274 |
+
|
1275 |
+
#: product_list.php:184
|
1276 |
+
msgid ""
|
1277 |
+
"Protect WordPress website forms from spam entries with Google Captcha "
|
1278 |
+
"(reCaptcha)."
|
1279 |
+
msgstr ""
|
1280 |
+
"Захищайте форми вашого сайту WordPress від спаму за допомогою Google Captcha "
|
1281 |
+
"(reCaptcha)."
|
1282 |
+
|
1283 |
+
#: product_list.php:194
|
1284 |
+
msgid "Add customized Google maps to WordPress posts, pages and widgets."
|
1285 |
+
msgstr ""
|
1286 |
+
"Додавайте користувацькі карти Google у пости, сторінки та віджети WordPress."
|
1287 |
+
|
1288 |
+
#: product_list.php:204
|
1289 |
+
msgid ""
|
1290 |
+
"Generate and add XML sitemap to WordPress website. Help search engines index "
|
1291 |
+
"your blog."
|
1292 |
+
msgstr ""
|
1293 |
+
"Створюйте та додавайте файли XML sitemap на ваш сайт WordPress. Допоможіть "
|
1294 |
+
"пошуковим системам проіндексувати ваш блог."
|
1295 |
+
|
1296 |
+
#: product_list.php:214
|
1297 |
+
msgid ""
|
1298 |
+
"Replace external WordPress website links with Google shortlinks and track "
|
1299 |
+
"click stats."
|
1300 |
+
msgstr ""
|
1301 |
+
"Замініть зовнішні посилання сайту WordPress на короткі посилання Google і "
|
1302 |
+
"відстежуйте статистику кліків."
|
1303 |
+
|
1304 |
+
#: product_list.php:221
|
1305 |
+
msgid ""
|
1306 |
+
"Protect WordPress website – allow and deny access for certain IP addresses, "
|
1307 |
+
"hostnames, etc."
|
1308 |
+
msgstr ""
|
1309 |
+
"Захистіть свій сайт WordPress - надавайте та забороняйте доступ з певних IP-"
|
1310 |
+
"адрес, імен хостів і т.д."
|
1311 |
+
|
1312 |
+
#: product_list.php:231
|
1313 |
+
msgid ""
|
1314 |
+
"Create your personal job board and listing WordPress website. Search jobs, "
|
1315 |
+
"submit CV/resumes, choose candidates."
|
1316 |
+
msgstr ""
|
1317 |
+
"Створюйте свою власну дошку оголошень з переліком вакансій на базі "
|
1318 |
+
"WordPress. Здійснюйте пошук вакансій, подачу резюме/CV кандидата, вибір "
|
1319 |
+
"кандидатів."
|
1320 |
+
|
1321 |
+
#: product_list.php:238
|
1322 |
+
msgid ""
|
1323 |
+
"Protect WordPress website against brute force attacks. Limit rate of login "
|
1324 |
+
"attempts."
|
1325 |
+
msgstr ""
|
1326 |
+
"Захищайте свій сайт WordPress від брутфорс-атак. Обмежуйте кількість спроб "
|
1327 |
+
"введення логіна."
|
1328 |
+
|
1329 |
+
#: product_list.php:248
|
1330 |
+
msgid ""
|
1331 |
+
"Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
|
1332 |
+
"5 plugins included – profile, insider, etc."
|
1333 |
+
msgstr ""
|
1334 |
+
"Додавайте кнопки LinkedIn \"Поділитися\" та \"Відстежувати\" до постів, "
|
1335 |
+
"сторінок і віджетів WordPress. 5 плагінів включено - Профіль, Інсайдер і т.д."
|
1336 |
+
|
1337 |
+
#: product_list.php:258
|
1338 |
+
msgid ""
|
1339 |
+
"Translate WordPress website content to other languages manually. Create "
|
1340 |
+
"multilingual pages, posts, widgets, menus, etc."
|
1341 |
+
msgstr ""
|
1342 |
+
"Перекладайте вміст сайту WordPress іншими мовами вручну. Створюйте "
|
1343 |
+
"багатомовні сторінки, пости, віджети, меню і т.д."
|
1344 |
+
|
1345 |
+
#: product_list.php:268
|
1346 |
+
msgid ""
|
1347 |
+
"Add customizable pagination to WordPress website. Split long content to "
|
1348 |
+
"multiple pages for better navigation."
|
1349 |
+
msgstr ""
|
1350 |
+
"Додавайте пагінацію з можливістю налаштування на ваш сайт WordPress. "
|
1351 |
+
"Розбивайте об'ємний контент на декілька сторінок для кращої навігації."
|
1352 |
+
|
1353 |
+
#: product_list.php:278
|
1354 |
+
msgid ""
|
1355 |
+
"Generate PDF files and print WordPress posts/pages. Customize document "
|
1356 |
+
"header/footer styles and appearance."
|
1357 |
+
msgstr ""
|
1358 |
+
"Створюйте PDF-файли і друкуйте пости/сторінки сайту WordPress. Налаштовуйте "
|
1359 |
+
"стилі хедера/футера документа і його зовнішній вигляд."
|
1360 |
+
|
1361 |
+
#: product_list.php:288
|
1362 |
+
msgid ""
|
1363 |
+
"Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
|
1364 |
+
"Profile) to WordPress posts, pages and widgets."
|
1365 |
+
msgstr ""
|
1366 |
+
"Додавайте кнопки Pinterest \"Підписатися\", \"Зберегти\" і віджети профілю "
|
1367 |
+
"(Пін, Дошка, Профіль) до постів, сторінок і віджетів WordPress."
|
1368 |
+
|
1369 |
+
#: product_list.php:298
|
1370 |
+
msgid ""
|
1371 |
+
"Create your personal portfolio WordPress website. Manage and showcase past "
|
1372 |
+
"projects to get more clients."
|
1373 |
+
msgstr ""
|
1374 |
+
"Створюйте і додавайте портфоліо на свій сайт WordPress. Керуйте і "
|
1375 |
+
"демонструйте минулі проекти, щоб залучити більше клієнтів."
|
1376 |
+
|
1377 |
+
#: product_list.php:308
|
1378 |
+
msgid "Export WordPress posts to CSV file format easily. Configure data order."
|
1379 |
+
msgstr ""
|
1380 |
+
"З легкістю експортуйте пости WordPress в файли формату CSV. Налаштуйте "
|
1381 |
+
"порядок відображення даних."
|
1382 |
+
|
1383 |
+
#: product_list.php:315
|
1384 |
+
msgid ""
|
1385 |
+
"Add extra fields to default WordPress user profile. The easiest way to "
|
1386 |
+
"create and manage additional custom values."
|
1387 |
+
msgstr ""
|
1388 |
+
"Додавайте користувацькі поля у стандартний профіль WordPress. Найпростіший "
|
1389 |
+
"спосіб створення і управління додатковими полями."
|
1390 |
+
|
1391 |
+
#: product_list.php:322
|
1392 |
+
msgid ""
|
1393 |
+
"Add and display HTML advertisement banner on WordPress website. Customize "
|
1394 |
+
"bar styles and appearance."
|
1395 |
+
msgstr ""
|
1396 |
+
"Додавайте відображення банерної HTML реклами на сайті WordPress. Налаштуйте "
|
1397 |
+
"стилі і зовнішній вигляд банеру."
|
1398 |
+
|
1399 |
+
#: product_list.php:332
|
1400 |
+
msgid ""
|
1401 |
+
"Add customizable quotes and tips blocks to WordPress posts, pages and "
|
1402 |
+
"widgets."
|
1403 |
+
msgstr ""
|
1404 |
+
"Додавайте редаговані цитати та підказки до постів, сторінок і віджетів "
|
1405 |
+
"WordPress."
|
1406 |
+
|
1407 |
+
#: product_list.php:339
|
1408 |
+
msgid ""
|
1409 |
+
"Add rating plugin to your WordPress website to receive feedback from your "
|
1410 |
+
"customers."
|
1411 |
+
msgstr ""
|
1412 |
+
"Додавайте систему оцінювання і рейтингу на ваш сайт WordPress і отримуйте "
|
1413 |
+
"відгуки від ваших клієнтів."
|
1414 |
+
|
1415 |
+
#: product_list.php:346
|
1416 |
+
msgid ""
|
1417 |
+
"Create your personal real estate WordPress website. Sell, rent and buy "
|
1418 |
+
"properties. Add, search and browse listings easily."
|
1419 |
+
msgstr ""
|
1420 |
+
"Створіть свій особистий сайт агентства нерухомості на базі WordPress. "
|
1421 |
+
"Продавайте, орендуйте і купуйте нерухомість. Легко додавайте, знаходьте і "
|
1422 |
+
"переглядайте лістинги."
|
1423 |
+
|
1424 |
+
#: product_list.php:356
|
1425 |
+
msgid ""
|
1426 |
+
"Attach, un-attach and re-attach media files quickly to WordPress posts and "
|
1427 |
+
"pages."
|
1428 |
+
msgstr ""
|
1429 |
+
"Прикріплюйте, відкріплюйте і повторно прикріплюйте медіа файли до постів і "
|
1430 |
+
"сторінок WordPress."
|
1431 |
+
|
1432 |
+
#: product_list.php:363
|
1433 |
+
msgid ""
|
1434 |
+
"Add related, featured, latest, and popular posts to your WordPress website. "
|
1435 |
+
"Connect your blog readers with a relevant content."
|
1436 |
+
msgstr ""
|
1437 |
+
"Додавайте схожі, обрані, останні та популярні пости на ваш сайт WordPress. "
|
1438 |
+
"Надавайте своїм читачам контент схожої тематики."
|
1439 |
+
|
1440 |
+
#: product_list.php:370
|
1441 |
+
msgid ""
|
1442 |
+
"Send bulk email messages to WordPress users. Custom templates, advanced "
|
1443 |
+
"settings and detailed reports."
|
1444 |
+
msgstr ""
|
1445 |
+
"Здійснюйте масову розсилку листів користувачам WordPress. Користувацькі "
|
1446 |
+
"шаблони, додаткові налаштування і детальні звіти."
|
1447 |
+
|
1448 |
+
#: product_list.php:380
|
1449 |
+
msgid ""
|
1450 |
+
"The best responsive slider plugin for your WordPress website. Create "
|
1451 |
+
"beautifully animated slides just in a few clicks."
|
1452 |
+
msgstr ""
|
1453 |
+
"Найкращий адаптивний слайдер для вашого сайту WordPress. Створюйте красиво "
|
1454 |
+
"анімовані слайди всього в декілька кліків."
|
1455 |
+
|
1456 |
+
#: product_list.php:387
|
1457 |
+
msgid ""
|
1458 |
+
"Configure SMTP server to receive email messages from WordPress to Gmail, "
|
1459 |
+
"Yahoo, Hotmail and other services."
|
1460 |
+
msgstr ""
|
1461 |
+
"Налаштовуйте SMTP-сервер, щоб отримувати електронні повідомлення з сайту "
|
1462 |
+
"WordPress на такі поштові служби як Gmail, Yahoo, Hotmail і багато інших."
|
1463 |
+
|
1464 |
+
#: product_list.php:394
|
1465 |
+
msgid ""
|
1466 |
+
"Add social media buttons and widgets to WordPress posts, pages and widgets. "
|
1467 |
+
"FB, Twitter, G+1, Pinterest, LinkedIn."
|
1468 |
+
msgstr ""
|
1469 |
+
"Додавайте кнопки і віджети соціальних мереж до постів, сторінок і віджетів "
|
1470 |
+
"WordPress. FB, Twitter, G+1, Pinterest, LinkedIn."
|
1471 |
+
|
1472 |
+
#: product_list.php:404
|
1473 |
+
msgid ""
|
1474 |
+
"Add social media login, registration, and commenting to your WordPress "
|
1475 |
+
"website."
|
1476 |
+
msgstr ""
|
1477 |
+
"Додавайте на свій сайт WordPress можливість входу, реєстрації та "
|
1478 |
+
"коментування з використанням існуючих акаунтів соціальних мереж."
|
1479 |
+
|
1480 |
+
#: product_list.php:411
|
1481 |
+
msgid ""
|
1482 |
+
"Add email newsletter sign up form to WordPress posts, pages and widgets. "
|
1483 |
+
"Collect data and subscribe your users."
|
1484 |
+
msgstr ""
|
1485 |
+
"Додавайте форму підписки на розсилку новин у пости, сторінки і віджети "
|
1486 |
+
"WordPress. Збирайте дані і здійснюйте підписку користувачів."
|
1487 |
+
|
1488 |
+
#: product_list.php:421
|
1489 |
+
msgid ""
|
1490 |
+
"Add testimonials and feedbacks from your customers to WordPress website "
|
1491 |
+
"posts, pages, and widgets."
|
1492 |
+
msgstr ""
|
1493 |
+
"Додавайте рекомендації та відгуки ваших клієнтів в пости, сторінки і віджети "
|
1494 |
+
"сайту WordPress."
|
1495 |
+
|
1496 |
+
#: product_list.php:428
|
1497 |
+
msgid ""
|
1498 |
+
"Best timesheet plugin for WordPress. Track employee time, streamline "
|
1499 |
+
"attendance and generate reports."
|
1500 |
+
msgstr ""
|
1501 |
+
"Кращий плагін обліку робочого часу на сайті WordPress. Відстежуйте час "
|
1502 |
+
"роботи співробітників, оптимізуйте графік роботи в офісі і створюйте звіти."
|
1503 |
+
|
1504 |
+
#: product_list.php:438
|
1505 |
+
msgid ""
|
1506 |
+
"Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
|
1507 |
+
"and pages."
|
1508 |
+
msgstr ""
|
1509 |
+
"Додавайте кнопки Твіттера \"Читати\", \"Твітнути\", \"Хештеґ\" і \"Згадати\" "
|
1510 |
+
"до постів і сторінок WordPress."
|
1511 |
+
|
1512 |
+
#: product_list.php:448
|
1513 |
+
msgid ""
|
1514 |
+
"Automatically check and update WordPress website core with all installed "
|
1515 |
+
"plugins and themes to the latest versions."
|
1516 |
+
msgstr ""
|
1517 |
+
"Виконуйте автоматичну перевірку і оновлення ядра WordPress до останніх "
|
1518 |
+
"версій з усіма встановленими плагінами та темами."
|
1519 |
+
|
1520 |
+
#: product_list.php:458
|
1521 |
+
msgid ""
|
1522 |
+
"Powerful user role management plugin for WordPress website. Create, edit, "
|
1523 |
+
"copy, and delete user roles."
|
1524 |
+
msgstr ""
|
1525 |
+
"Ефективний плагін управління ролями користувачів для сайту WordPress. "
|
1526 |
+
"Створюйте, редагуйте, копіюйте і видаляйте ролі користувачів."
|
1527 |
+
|
1528 |
+
#: product_list.php:468
|
1529 |
+
msgid ""
|
1530 |
+
"Display live count of online visitors who are currently browsing your "
|
1531 |
+
"WordPress website."
|
1532 |
+
msgstr ""
|
1533 |
+
"Ведіть підрахунок кількості відвідувачів, які в даний час переглядають ваш "
|
1534 |
+
"сайт WordPress."
|
1535 |
+
|
1536 |
+
#: product_list.php:478
|
1537 |
+
msgid ""
|
1538 |
+
"Backup and export Zendesk Help Center content automatically to your "
|
1539 |
+
"WordPress website database."
|
1540 |
+
msgstr ""
|
1541 |
+
"Робіть автоматичне резервне копіювання і експорт вмісту Zendesk Help Center "
|
1542 |
+
"в базу даних вашого сайту WordPress."
|
1543 |
+
|
1544 |
+
#~ msgid ""
|
1545 |
+
#~ "Add related posts to WordPress website posts or widgets. Link your "
|
1546 |
+
#~ "readers to relevant content."
|
1547 |
+
#~ msgstr ""
|
1548 |
+
#~ "Додавайте пов'язані публікації у пости або віджети сайту WordPress. "
|
1549 |
+
#~ "Надавайте своїм читачам контент схожої тематики."
|
1550 |
+
|
1551 |
+
#~ msgid "Advertisement"
|
1552 |
+
#~ msgstr "Реклама"
|
1553 |
+
|
1554 |
+
#~ msgid "Content & Media"
|
1555 |
+
#~ msgstr "Зміст та мультимедійні елементи"
|
1556 |
+
|
1557 |
+
#~ msgid "Management"
|
1558 |
+
#~ msgstr "Управління"
|
1559 |
+
|
1560 |
+
#~ msgid "Site Stats"
|
1561 |
+
#~ msgstr "Статистика сайту"
|
1562 |
+
|
1563 |
+
#~ msgid "Social"
|
1564 |
+
#~ msgstr "Соціальні сервіси"
|
1565 |
+
|
1566 |
+
#~ msgid "Utilities"
|
1567 |
+
#~ msgstr "Утиліти"
|
1568 |
+
|
1569 |
+
#~ msgid "Other"
|
1570 |
+
#~ msgstr "Інше"
|
1571 |
+
|
1572 |
+
#~ msgid ""
|
1573 |
+
#~ "Manage database and file system right from your WordPress admin dashboard."
|
1574 |
+
#~ msgstr ""
|
1575 |
+
#~ "Керуйте базою даних і файловою системою прямо з панелі адміністратора "
|
1576 |
+
#~ "WordPress."
|
1577 |
+
|
1578 |
+
#~ msgid ""
|
1579 |
+
#~ "Add featured posts to WordPress website posts and widgets. Highlight "
|
1580 |
+
#~ "important information."
|
1581 |
+
#~ msgstr ""
|
1582 |
+
#~ "Додавайте обрані публікації до постів і віджетів сайту WordPress. "
|
1583 |
+
#~ "Підкреслюйте важливу інформацію."
|
1584 |
+
|
1585 |
+
#~ msgid ""
|
1586 |
+
#~ "Add widgets Latest Posts or Latest Posts for Selected Categories to your "
|
1587 |
+
#~ "WordPress website."
|
1588 |
+
#~ msgstr ""
|
1589 |
+
#~ "Додавайте віджет найновішіх постів або найновішіх постів для обраних "
|
1590 |
+
#~ "категорій на сайт WordPress."
|
1591 |
+
|
1592 |
+
#~ msgid ""
|
1593 |
+
#~ "Track views, comments and add the most popular posts to Wordpress widgets."
|
1594 |
+
#~ msgstr ""
|
1595 |
+
#~ "Відстежуйте перегляди, коментарі та додавайте найпопулярніші пости у "
|
1596 |
+
#~ "віджети сайту Wordpress."
|
1597 |
+
|
1598 |
+
#~ msgid ""
|
1599 |
+
#~ "Add latest posts or latest posts for selected categories widgets to "
|
1600 |
+
#~ "WordPress website."
|
1601 |
+
#~ msgstr ""
|
1602 |
+
#~ "Додавайте віджет найновішіх постів або найновішіх постів для обраних "
|
1603 |
+
#~ "категорій на сайт WordPress."
|
1604 |
|
1605 |
#~ msgid "Thank you for installing"
|
1606 |
#~ msgstr "Дякуємо, що встановили"
|
1718 |
#~ msgid "Preview"
|
1719 |
#~ msgstr "Попередній перегляд"
|
1720 |
|
|
|
|
|
|
|
1721 |
#~ msgid ""
|
1722 |
#~ "(your username is the email you specify when purchasing the product), "
|
1723 |
#~ "where you can make the necessary changes."
|
bws_menu/product_list.php
CHANGED
@@ -4,32 +4,35 @@
|
|
4 |
*/
|
5 |
|
6 |
$bws_plugins_category = array(
|
7 |
-
'
|
8 |
-
'content
|
9 |
-
'
|
10 |
-
'
|
11 |
-
'
|
12 |
-
'
|
13 |
-
'
|
14 |
-
'
|
15 |
-
'
|
16 |
);
|
17 |
|
18 |
$bws_plugins = array(
|
19 |
-
|
|
|
20 |
'category' => array( 'security', 'recommended' ),
|
21 |
'name' => 'Captcha',
|
22 |
-
'description' => 'Protect WordPress website forms from spam entries by means of math logic.',
|
23 |
-
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/captcha/?k=d678516c0990e781edfb6a6c874f0b8a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
24 |
-
'settings' => 'admin.php?page=
|
|
|
25 |
'pro_version' => 'captcha-pro/captcha_pro.php',
|
26 |
'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/captcha/buy/?k=ff7d65e55e5e7f98f219be9ed711094e&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
27 |
-
'pro_settings' => 'admin.php?page=captcha_pro.php'
|
|
|
28 |
),
|
29 |
'car-rental/car-rental.php' => array(
|
30 |
-
'category' => array( '
|
31 |
'name' => 'Car Rental',
|
32 |
-
'description' => 'Create your personal car rental/booking and reservation website.',
|
33 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/car-rental/?k=444cac6df9a0d3a9763ab4753d24941b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
34 |
'settings' => 'admin.php?page=car-rental-settings',
|
35 |
'pro_version' => 'car-rental-pro/car-rental-pro.php',
|
@@ -37,9 +40,9 @@ $bws_plugins = array(
|
|
37 |
'pro_settings' => 'admin.php?page=car-rental-pro-settings'
|
38 |
),
|
39 |
'contact-form-plugin/contact_form.php' => array(
|
40 |
-
'category' => array( '
|
41 |
'name' => 'Contact Form',
|
42 |
-
'description' => 'Allow customers to reach you using secure contact form plugin any website must have.',
|
43 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/contact-form/?k=012327ef413e5b527883e031d43b088b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
44 |
'settings' => 'admin.php?page=contact_form.php',
|
45 |
'pro_version' => 'contact-form-pro/contact_form_pro.php',
|
@@ -47,9 +50,9 @@ $bws_plugins = array(
|
|
47 |
'pro_settings' => 'admin.php?page=contact_form_pro.php'
|
48 |
),
|
49 |
'contact-form-multi/contact-form-multi.php' => array(
|
50 |
-
'category' => array( '
|
51 |
'name' => 'Contact Form Multi',
|
52 |
-
'description' => 'Add unlimited number of contact forms to WordPress website.',
|
53 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/contact-form-multi/?k=83cdd9e72a9f4061122ad28a67293c72&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
54 |
'settings' => '',
|
55 |
'pro_version' => 'contact-form-multi-pro/contact-form-multi-pro.php',
|
@@ -57,9 +60,9 @@ $bws_plugins = array(
|
|
57 |
'pro_settings' => ''
|
58 |
),
|
59 |
'contact-form-to-db/contact_form_to_db.php' => array(
|
60 |
-
'category' => array( '
|
61 |
'name' => 'Contact Form to DB',
|
62 |
-
'description' => 'Save and manage
|
63 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/contact-form-to-db/?k=ba3747d317c2692e4136ca096a8989d6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
64 |
'settings' => 'admin.php?page=cntctfrmtdb_settings',
|
65 |
'pro_version' => 'contact-form-to-db-pro/contact_form_to_db_pro.php',
|
@@ -67,107 +70,87 @@ $bws_plugins = array(
|
|
67 |
'pro_settings' => 'admin.php?page=cntctfrmtdbpr_settings'
|
68 |
),
|
69 |
'custom-admin-page/custom-admin-page.php' => array(
|
70 |
-
'category' => array( '
|
71 |
'name' => 'Custom Admin Page',
|
72 |
-
'description' => 'Add unlimited custom pages to WordPress admin dashboard.',
|
73 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/custom-admin-page/?k=9ac03f16c25e845e8e055a221c3e1467&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
74 |
'settings' => 'admin.php?page=custom-admin-page.php'
|
75 |
),
|
76 |
'custom-fields-search/custom-fields-search.php' => array(
|
77 |
-
'category' => array( '
|
78 |
'name' => 'Custom Fields Search',
|
79 |
-
'description' => 'Add custom fields to WordPress website search results.',
|
80 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/custom-fields-search/?k=f3f8285bb069250c42c6ffac95ed3284&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
81 |
'settings' => 'admin.php?page=custom_fields_search.php'
|
82 |
),
|
83 |
'custom-search-plugin/custom-search-plugin.php' => array(
|
84 |
-
'category' => array( '
|
85 |
'name' => 'Custom Search',
|
86 |
-
'description' => 'Add custom post types to WordPress website search results.',
|
87 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/custom-search/?k=933be8f3a8b8719d95d1079d15443e29&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
88 |
'settings' => 'admin.php?page=custom_search.php',
|
89 |
'pro_version' => 'custom-search-pro/custom-search-pro.php',
|
90 |
'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/custom-search/buy/?k=062b652ac6ac8ba863c9f30fc21d62c6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
91 |
'pro_settings' => 'admin.php?page=custom_search_pro.php'
|
92 |
),
|
93 |
-
'db-manager/db-manager.php' => array(
|
94 |
-
'category' => array( 'utilities' ),
|
95 |
-
'name' => 'DB Manager',
|
96 |
-
'description' => 'Manage database and file system right from your WordPress admin dashboard.',
|
97 |
-
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/db-manager/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
98 |
-
'install_url' => 'https://bestwebsoft.com/products/wordpress/plugins/db-manager/download/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
99 |
-
'settings' => 'admin.php?page=db-manager.php',
|
100 |
-
'icon' => bws_menu_url( 'icons/plugins/' ) . 'db-manager.png'
|
101 |
-
),
|
102 |
'donate-button/donate.php' => array(
|
103 |
-
'category' => array( '
|
104 |
'name' => 'Donate',
|
105 |
-
'description' => 'Add PayPal and 2CO donate buttons to receive charity payments.',
|
106 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/donate/?k=a8b2e2a56914fb1765dd20297c26401b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
107 |
'settings' => 'admin.php?page=donate.php'
|
108 |
),
|
109 |
-
'email-queue/email-queue.php' => array(
|
110 |
-
'category' => array( 'other' ),
|
111 |
-
'name' => 'Email Queue',
|
112 |
-
'description' => 'Automatically add outgoing email messages to queue instead of sending them immediately.',
|
113 |
-
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/email-queue/?k=e345e1b6623f0dca119bc2d9433b130b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
114 |
-
'settings' => 'admin.php?page=mlq_settings'
|
115 |
-
),
|
116 |
'error-log-viewer/error-log-viewer.php' => array(
|
117 |
-
'category' => array( '
|
118 |
'name' => 'Error Log Viewer',
|
119 |
-
'description' => 'Get latest error log messages to diagnose website problems. Define and fix issues faster.',
|
120 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/error-log-viewer/?k=da0de8bd2c7a0b2fea5df64d55a368b3&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
121 |
'settings' => 'admin.php?page=rrrlgvwr.php&tab=settings'
|
122 |
),
|
123 |
'facebook-button-plugin/facebook-button-plugin.php' => array(
|
124 |
-
'category' => array( '
|
125 |
'name' => 'Facebook Button',
|
126 |
-
'description' => 'Add Facebook Like,
|
127 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/facebook-like-button/?k=05ec4f12327f55848335802581467d55&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
128 |
'settings' => 'admin.php?page=facebook-button-plugin.php',
|
129 |
'pro_version' => 'facebook-button-pro/facebook-button-pro.php',
|
130 |
'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/facebook-like-button/buy/?k=8da168e60a831cfb3525417c333ad275&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
131 |
'pro_settings' => 'admin.php?page=facebook-button-pro.php'
|
132 |
),
|
133 |
-
'bws-featured-posts/bws-featured-posts.php' => array(
|
134 |
-
'category' => array( 'content-and-media' ),
|
135 |
-
'name' => 'Featured Posts',
|
136 |
-
'description' => 'Add featured posts to WordPress posts or widgets. Highlight important information.',
|
137 |
-
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/featured-posts/?k=f0afb31185ba7c7d6d598528d69f6d97&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
138 |
-
'settings' => 'admin.php?page=featured-posts.php'
|
139 |
-
),
|
140 |
'gallery-plugin/gallery-plugin.php' => array(
|
141 |
-
'category' => array( 'content
|
142 |
'name' => 'Gallery',
|
143 |
-
'description' => 'Add beautiful galleries, albums & images to your
|
144 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/gallery/?k=2da21c0a64eec7ebf16337fa134c5f78&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
145 |
'settings' => 'admin.php?page=gallery-plugin.php',
|
146 |
'pro_version' => 'gallery-plugin-pro/gallery-plugin-pro.php',
|
147 |
'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/gallery/buy/?k=382e5ce7c96a6391f5ffa5e116b37fe0&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
148 |
'pro_settings' => 'admin.php?page=gallery-plugin-pro.php'
|
149 |
),
|
150 |
-
'gallery-categories/gallery-categories.php' => array(
|
151 |
-
'category' => array( 'content-and-media' ),
|
152 |
-
'name' => 'Gallery Categories',
|
153 |
-
'description' => 'Add unlimited gallery categories. Organize images to make the navigation through content easier.',
|
154 |
-
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/gallery-categories/?k=7d68c7bfec2486dc350c67fff57ad433&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
155 |
-
'settings' => ''
|
156 |
-
),
|
157 |
'google-one/google-plus-one.php' => array(
|
158 |
-
'category' => array( '
|
159 |
'name' => 'Google +1',
|
160 |
-
'description' => 'Add Google +1 Share, Follow, Hangout buttons and profile badge to WordPress posts, pages and widgets.',
|
161 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/google-plus-one/?k=ce7a88837f0a857b3a2bb142f470853c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
162 |
'settings' => 'admin.php?page=google-plus-one.php',
|
163 |
'pro_version' => 'google-one-pro/google-plus-one-pro.php',
|
164 |
'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/google-plus-one/buy/?k=f4b0a62d155c9df9601a0531ad5bd832&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
165 |
'pro_settings' => 'admin.php?page=google-plus-one-pro.php'
|
166 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
'adsense-plugin/adsense-plugin.php' => array(
|
168 |
-
'category' => array( '
|
169 |
'name' => 'Google AdSense',
|
170 |
-
'description' => 'Add Adsense ads to pages, posts, custom posts, search results, categories, tags,
|
171 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/google-adsense/?k=60e3979921e354feb0347e88e7d7b73d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
172 |
'settings' => 'admin.php?page=adsense-plugin.php',
|
173 |
'pro_version' => 'adsense-pro/adsense-pro.php',
|
@@ -175,9 +158,9 @@ $bws_plugins = array(
|
|
175 |
'pro_settings' => 'admin.php?page=adsense-pro.php'
|
176 |
),
|
177 |
'bws-google-analytics/bws-google-analytics.php' => array(
|
178 |
-
'category' => array( '
|
179 |
'name' => 'Google Analytics',
|
180 |
-
'description' => 'Add Google Analytics code to WordPress website and track basic stats.',
|
181 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/bws-google-analytics/?k=261c74cad753fb279cdf5a5db63fbd43&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
182 |
'settings' => 'admin.php?page=bws-google-analytics.php',
|
183 |
'pro_version' => 'bws-google-analytics-pro/bws-google-analytics-pro.php',
|
@@ -187,7 +170,7 @@ $bws_plugins = array(
|
|
187 |
'google-captcha/google-captcha.php' => array(
|
188 |
'category' => array( 'security', 'recommended' ),
|
189 |
'name' => 'Google Captcha (reCAPTCHA)',
|
190 |
-
'description' => 'Protect WordPress website forms from spam entries with Google Captcha (reCaptcha).',
|
191 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/google-captcha/?k=7b59fbe542acf950b29f3e020d5ad735&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
192 |
'settings' => 'admin.php?page=google-captcha.php',
|
193 |
'pro_version' => 'google-captcha-pro/google-captcha-pro.php',
|
@@ -195,9 +178,9 @@ $bws_plugins = array(
|
|
195 |
'pro_settings' => 'admin.php?page=google-captcha-pro.php'
|
196 |
),
|
197 |
'bws-google-maps/bws-google-maps.php' => array(
|
198 |
-
'category' => array( 'content
|
199 |
'name' => 'Google Maps',
|
200 |
-
'description' => 'Add customized Google maps to WordPress posts, pages and widgets.',
|
201 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/bws-google-maps/?k=d8fac412d7359ebaa4ff53b46572f9f7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
202 |
'settings' => 'admin.php?page=bws-google-maps.php',
|
203 |
'pro_version' => 'bws-google-maps-pro/bws-google-maps-pro.php',
|
@@ -205,9 +188,9 @@ $bws_plugins = array(
|
|
205 |
'pro_settings' => 'admin.php?page=bws-google-maps-pro.php'
|
206 |
),
|
207 |
'google-sitemap-plugin/google-sitemap-plugin.php' => array(
|
208 |
-
'category' => array( '
|
209 |
'name' => 'Google Sitemap',
|
210 |
-
'description' => 'Generate and add XML sitemap to WordPress website. Help search engines index your blog.',
|
211 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/google-sitemap/?k=5202b2f5ce2cf85daee5e5f79a51d806&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
212 |
'settings' => 'admin.php?page=google-sitemap-plugin.php',
|
213 |
'pro_version' => 'google-sitemap-pro/google-sitemap-pro.php',
|
@@ -215,16 +198,16 @@ $bws_plugins = array(
|
|
215 |
'pro_settings' => 'admin.php?page=google-sitemap-pro.php'
|
216 |
),
|
217 |
'google-shortlink/google-shortlink.php' => array(
|
218 |
-
'category' => array( '
|
219 |
'name' => 'Google Shortlink',
|
220 |
-
'description' => 'Replace external WordPress website links with Google shortlinks and track click stats.',
|
221 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/google-shortlink/?k=afcf3eaed021bbbbeea1090e16bc22db&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
222 |
'settings' => 'admin.php?page=gglshrtlnk_options'
|
223 |
),
|
224 |
'htaccess/htaccess.php' => array(
|
225 |
'category' => array( 'security' ),
|
226 |
'name' => 'Htaccess',
|
227 |
-
'description' => 'Protect WordPress website – allow and deny access for certain IP addresses, hostnames, etc.',
|
228 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/htaccess/?k=2b865fcd56a935d22c5c4f1bba52ed46&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
229 |
'settings' => 'admin.php?page=htaccess.php',
|
230 |
'pro_version' => 'htaccess-pro/htaccess-pro.php',
|
@@ -232,23 +215,16 @@ $bws_plugins = array(
|
|
232 |
'pro_settings' => 'admin.php?page=htaccess-pro.php'
|
233 |
),
|
234 |
'job-board/job-board.php' => array(
|
235 |
-
'category' => array( '
|
236 |
'name' => 'Job Board',
|
237 |
-
'description' => 'Create your personal job board and listing WordPress website. Search jobs, submit CV/resumes, choose candidates.',
|
238 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/job-board/?k=b0c504c9ce6edd6692e04222af3fed6f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
239 |
'settings' => 'admin.php?page=job-board.php'
|
240 |
),
|
241 |
-
'bws-latest-posts/bws-latest-posts.php' => array(
|
242 |
-
'category' => array( 'content-and-media' ),
|
243 |
-
'name' => 'Latest Posts',
|
244 |
-
'description' => 'Add latest posts or latest posts for selected categories widgets to WordPress website.',
|
245 |
-
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/latest-posts/?k=ef4e125aadadd8d219140daa184a9399&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
246 |
-
'settings' => 'admin.php?page=latest-posts.php'
|
247 |
-
),
|
248 |
'limit-attempts/limit-attempts.php' => array(
|
249 |
'category' => array( 'security', 'recommended' ),
|
250 |
'name' => 'Limit Attempts',
|
251 |
-
'description' => 'Protect WordPress website against brute force attacks. Limit rate of login attempts.',
|
252 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/limit-attempts/?k=b14e1697ee4d008abcd4bd34d492573a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
253 |
'settings' => 'admin.php?page=limit-attempts.php',
|
254 |
'pro_version' => 'limit-attempts-pro/limit-attempts-pro.php',
|
@@ -256,9 +232,9 @@ $bws_plugins = array(
|
|
256 |
'pro_settings' => 'admin.php?page=limit-attempts-pro.php'
|
257 |
),
|
258 |
'bws-linkedin/bws-linkedin.php' => array(
|
259 |
-
'category' => array( '
|
260 |
'name' => 'LinkedIn',
|
261 |
-
'description' => 'Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. 5 plugins included – profile, insider, etc.',
|
262 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/linkedin/?k=d63c7319622ccc5f589dd2d545c1d77c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
263 |
'settings' => 'admin.php?page=linkedin.php',
|
264 |
'pro_version' => 'bws-linkedin-pro/bws-linkedin-pro.php',
|
@@ -266,9 +242,9 @@ $bws_plugins = array(
|
|
266 |
'pro_settings' => 'admin.php?page=linkedin-pro.php'
|
267 |
),
|
268 |
'multilanguage/multilanguage.php' => array(
|
269 |
-
'category' => array( 'content
|
270 |
'name' => 'Multilanguage',
|
271 |
-
'description' => 'Translate WordPress website content to other languages manually. Create multilingual pages, posts, widgets, menus, etc.',
|
272 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/multilanguage/?k=7d68c7bfec2486dc350c67fff57ad433&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
273 |
'settings' => 'admin.php?page=mltlngg_settings',
|
274 |
'pro_version' => 'multilanguage-pro/multilanguage-pro.php',
|
@@ -276,9 +252,9 @@ $bws_plugins = array(
|
|
276 |
'pro_settings' => 'admin.php?page=mltlnggpr_settings'
|
277 |
),
|
278 |
'pagination/pagination.php' => array(
|
279 |
-
'category' => array( '
|
280 |
'name' => 'Pagination',
|
281 |
-
'description' => 'Add customizable pagination to WordPress website. Split long content to multiple pages for better navigation.',
|
282 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/pagination/?k=22adb940256f149559ba8fedcd728ac8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
283 |
'settings' => 'admin.php?page=pagination.php',
|
284 |
'pro_version' => 'pagination-pro/pagination-pro.php',
|
@@ -286,9 +262,9 @@ $bws_plugins = array(
|
|
286 |
'pro_settings' => 'admin.php?page=pagination-pro.php'
|
287 |
),
|
288 |
'pdf-print/pdf-print.php' => array(
|
289 |
-
'category' => array( '
|
290 |
'name' => 'PDF & Print',
|
291 |
-
'description' => 'Generate PDF files and print WordPress posts/pages. Customize document header/footer styles and appearance.',
|
292 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/pdf-print/?k=bfefdfb522a4c0ff0141daa3f271840c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
293 |
'settings' => 'admin.php?page=pdf-print.php',
|
294 |
'pro_version' => 'pdf-print-pro/pdf-print-pro.php',
|
@@ -296,26 +272,19 @@ $bws_plugins = array(
|
|
296 |
'pro_settings' => 'admin.php?page=pdf-print-pro.php'
|
297 |
),
|
298 |
'bws-pinterest/bws-pinterest.php' => array(
|
299 |
-
'category' => array( '
|
300 |
'name' => 'Pinterest',
|
301 |
-
'description' => 'Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, Profile) to WordPress posts, pages and widgets.',
|
302 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/pinterest/?k=504107b6213f247a67fe7ffb94e97c78&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
303 |
'settings' => 'admin.php?page=pinterest.php',
|
304 |
'pro_version' => 'bws-pinterest-pro/bws-pinterest-pro.php',
|
305 |
'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/pinterest/buy/?k=ab0069edd1914a3ca8f541bfd88bb0bb&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
306 |
'pro_settings' => 'admin.php?page=pinterest-pro.php'
|
307 |
),
|
308 |
-
'bws-popular-posts/bws-popular-posts.php' => array(
|
309 |
-
'category' => array( 'content-and-media', 'recommended' ),
|
310 |
-
'name' => 'Popular Posts',
|
311 |
-
'description' => 'Track views, comments and add most popular posts to Wordpress widgets.',
|
312 |
-
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/popular-posts/?k=4d529f116d2b7f7df3a78018c383f975&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
313 |
-
'settings' => 'admin.php?page=popular-posts.php'
|
314 |
-
),
|
315 |
'portfolio/portfolio.php' => array(
|
316 |
-
'category' => array( 'content
|
317 |
'name' => 'Portfolio',
|
318 |
-
'description' => 'Create your personal portfolio WordPress website. Manage and showcase past projects to get more clients.',
|
319 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/portfolio/?k=1249a890c5b7bba6bda3f528a94f768b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
320 |
'settings' => 'admin.php?page=portfolio.php',
|
321 |
'pro_version' => 'portfolio-pro/portfolio-pro.php',
|
@@ -323,23 +292,23 @@ $bws_plugins = array(
|
|
323 |
'pro_settings' => 'admin.php?page=portfolio-pro.php'
|
324 |
),
|
325 |
'post-to-csv/post-to-csv.php' => array(
|
326 |
-
'category' => array( '
|
327 |
'name' => 'Post to CSV',
|
328 |
-
'description' => 'Export WordPress posts to CSV file format easily. Configure data order.',
|
329 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/post-to-csv/?k=653aa55518ae17409293a7a894268b8f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
330 |
'settings' => 'admin.php?page=post-to-csv.php'
|
331 |
),
|
332 |
'profile-extra-fields/profile-extra-fields.php' => array(
|
333 |
-
'category' => array( '
|
334 |
'name' => 'Profile Extra Fields',
|
335 |
-
'description' => 'Add extra fields to default WordPress user profile. The easiest way to create and manage additional custom values.',
|
336 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/profile-extra-fields/?k=fe3b6c3dbc80bd4b1cf9a27a2f339820&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
337 |
'settings' => 'admin.php?page=profile-extra-fields.php'
|
338 |
),
|
339 |
'promobar/promobar.php' => array(
|
340 |
-
'category' => array( '
|
341 |
'name' => 'PromoBar',
|
342 |
-
'description' => 'Add and display HTML advertisement on WordPress website. Customize bar styles and appearance.',
|
343 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/promobar/?k=619eac2232d9cfa382c4e678c3b14766&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
344 |
'settings' => 'admin.php?page=promobar.php',
|
345 |
'pro_version' => 'promobar-pro/promobar-pro.php',
|
@@ -347,64 +316,64 @@ $bws_plugins = array(
|
|
347 |
'pro_settings' => 'admin.php?page=promobar-pro.php'
|
348 |
),
|
349 |
'quotes-and-tips/quotes-and-tips.php' => array(
|
350 |
-
'category' => array( 'content
|
351 |
'name' => 'Quotes and Tips',
|
352 |
-
'description' => 'Add customizable quotes and tips blocks to WordPress posts, pages and widgets.',
|
353 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/quotes-and-tips/?k=5738a4e85a798c4a5162240c6515098d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
354 |
'settings' => 'admin.php?page=quotes-and-tips.php'
|
355 |
),
|
356 |
'rating-bws/rating-bws.php' => array(
|
357 |
-
'category' => array( '
|
358 |
'name' => 'Rating',
|
359 |
-
'description' => 'Add rating plugin to your WordPress website to receive feedback from your customers.',
|
360 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/rating/?k=c00e0824bb999735a3224616ef51f4c5&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
361 |
'settings' => 'admin.php?page=rating.php'
|
362 |
),
|
363 |
'realty/realty.php' => array(
|
364 |
-
'category' => array( '
|
365 |
'name' => 'Realty',
|
366 |
-
'description' => 'Create your personal real estate WordPress website. Sell, rent and buy properties. Add, search and browse listings easily.',
|
367 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/realty/?k=d55de979dbbbb7af0b2ff1d7f43884fa&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
368 |
'settings' => 'admin.php?page=realty_settings',
|
369 |
'pro_version' => 'realty-pro/realty-pro.php',
|
370 |
'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/realty/buy/?k=c7791f0a72acfb36f564a614dbccb474&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
371 |
'pro_settings' => 'admin.php?page=realty_pro_settings'
|
372 |
),
|
373 |
-
're-attacher/re-attacher.php' => array(
|
374 |
-
'category' => array( 'utilities' ),
|
375 |
-
'name' => 'Re-attacher',
|
376 |
-
'description' => 'Attach, unattach and re-attach media files quickly to WordPress posts and pages.',
|
377 |
-
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/re-attacher/?k=4d529f116d2b7f7df3a78018c383f975&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
378 |
-
'settings' => 'admin.php?page=re-attacher.php'
|
379 |
-
),
|
380 |
'relevant/related-posts-plugin.php' => array(
|
381 |
-
'category' => array( '
|
382 |
-
'name' => 'Relevant - Related Posts',
|
383 |
-
'description' => 'Add related posts to WordPress
|
384 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/related-posts/?k=73fb737037f7141e66415ec259f7e426&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
385 |
'settings' => 'admin.php?page=related-posts-plugin.php'
|
386 |
),
|
387 |
'sender/sender.php' => array(
|
388 |
-
'category' => array( '
|
389 |
'name' => 'Sender',
|
390 |
-
'description' => 'Send bulk email messages to WordPress users. Custom templates, advanced settings and detailed reports.',
|
391 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/sender/?k=89c297d14ba85a8417a0f2fc05e089c7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
392 |
'settings' => 'admin.php?page=sndr_settings',
|
393 |
'pro_version' => 'sender-pro/sender-pro.php',
|
394 |
'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/sender/buy/?k=dc5d1a87bdc8aeab2de40ffb99b38054&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
395 |
'pro_settings' => 'admin.php?page=sndrpr_settings'
|
396 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
397 |
'bws-smtp/bws-smtp.php' => array(
|
398 |
-
'category' => array( '
|
399 |
'name' => 'SMTP',
|
400 |
-
'description' => 'Configure SMTP server to receive email messages from WordPress to Gmail, Yahoo, Hotmail and other services.',
|
401 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/smtp/?k=0546419f962704429ad2d9b88567752f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
402 |
'settings' => 'admin.php?page=bwssmtp_settings'
|
403 |
),
|
404 |
'social-buttons-pack/social-buttons-pack.php' => array(
|
405 |
-
'category' => array( '
|
406 |
'name' => 'Social Buttons Pack',
|
407 |
-
'description' => 'Add social media buttons and widgets to WordPress posts, pages and widgets. FB, Twitter, G+1, Pinterest, LinkedIn.',
|
408 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/social-buttons-pack/?k=b6440fad9f54274429e536b0c61b42da&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
409 |
'settings' => 'admin.php?page=social-buttons.php',
|
410 |
'pro_version' => 'social-buttons-pack-pro/social-buttons-pack-pro.php',
|
@@ -412,16 +381,16 @@ $bws_plugins = array(
|
|
412 |
'pro_settings' => 'admin.php?page=social-buttons.php'
|
413 |
),
|
414 |
'social-login-bws/social-login-bws.php' => array(
|
415 |
-
'category' => array( '
|
416 |
'name' => 'Social Login',
|
417 |
-
'description' => 'Add social media login, registration, and commenting to your WordPress website.',
|
418 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/social-login/?k=62817c9c94f24129e40894e1d9c3f49d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
419 |
'settings' => 'admin.php?page=social-login.php'
|
420 |
),
|
421 |
'subscriber/subscriber.php' => array(
|
422 |
-
'category' => array( '
|
423 |
'name' => 'Subscriber',
|
424 |
-
'description' => 'Add email newsletter sign up form to WordPress posts, pages and widgets. Collect data and subscribe your users.',
|
425 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/subscriber/?k=a4ecc1b7800bae7329fbe8b4b04e9c88&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
426 |
'settings' => 'admin.php?page=sbscrbr_settings_page',
|
427 |
'pro_version' => 'subscriber-pro/subscriber-pro.php',
|
@@ -429,16 +398,16 @@ $bws_plugins = array(
|
|
429 |
'pro_settings' => 'admin.php?page=sbscrbrpr_settings_page'
|
430 |
),
|
431 |
'bws-testimonials/bws-testimonials.php' => array(
|
432 |
-
'category' => array( '
|
433 |
'name' => 'Testimonials',
|
434 |
-
'description' => 'Add testimonials and feedbacks from your customers to WordPress posts, pages and widgets.',
|
435 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/testimonials/?k=3fe4bb89dc901c98e43a113e08f8db73&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
436 |
'settings' => 'admin.php?page=testimonials.php'
|
437 |
),
|
438 |
'timesheet/timesheet.php' => array(
|
439 |
-
'category' => array( '
|
440 |
'name' => 'Timesheet',
|
441 |
-
'description' => 'Best timesheet plugin for WordPress. Track employee time, streamline attendance and generate reports.',
|
442 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/timesheet/?k=06a58bb78c17a43df01825925f05a5c1&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
443 |
'settings' => 'admin.php?page=timesheet_settings',
|
444 |
'pro_version' => 'timesheet-pro/timesheet-pro.php',
|
@@ -446,9 +415,9 @@ $bws_plugins = array(
|
|
446 |
'pro_settings' => 'admin.php?page=timesheet_pro_settings'
|
447 |
),
|
448 |
'twitter-plugin/twitter.php' => array(
|
449 |
-
'category' => array( '
|
450 |
'name' => 'Twitter',
|
451 |
-
'description' => 'Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts
|
452 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/twitter/?k=f8cb514e25bd7ec4974d64435c5eb333&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
453 |
'settings' => 'admin.php?page=twitter.php',
|
454 |
'pro_version' => 'twitter-pro/twitter-pro.php',
|
@@ -456,9 +425,9 @@ $bws_plugins = array(
|
|
456 |
'pro_settings' => 'admin.php?page=twitter-pro.php'
|
457 |
),
|
458 |
'updater/updater.php' => array(
|
459 |
-
'category' => array( '
|
460 |
'name' => 'Updater',
|
461 |
-
'description' => 'Automatically check and update WordPress website core with all installed plugins and themes to the latest versions.',
|
462 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/updater/?k=66f3ecd4c1912009d395c4bb30f779d1&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
463 |
'settings' => 'admin.php?page=updater-options',
|
464 |
'pro_version' => 'updater-pro/updater_pro.php',
|
@@ -466,9 +435,9 @@ $bws_plugins = array(
|
|
466 |
'pro_settings' => 'admin.php?page=updater-pro-options'
|
467 |
),
|
468 |
'user-role/user-role.php' => array(
|
469 |
-
'category' => array( '
|
470 |
'name' => 'User Role',
|
471 |
-
'description' => 'Powerful user role management plugin for WordPress website. Create, edit, copy, and delete user roles.',
|
472 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/user-role/?k=dfe2244835c6fbf601523964b3f34ccc&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
473 |
'settings' => 'admin.php?page=user-role.php',
|
474 |
'pro_version' => 'user-role-pro/user-role-pro.php',
|
@@ -476,9 +445,9 @@ $bws_plugins = array(
|
|
476 |
'pro_settings' => 'admin.php?page=user-role-pro.php'
|
477 |
),
|
478 |
'visitors-online/visitors-online.php' => array(
|
479 |
-
'category' => array( '
|
480 |
'name' => 'Visitors Online',
|
481 |
-
'description' => 'Display live count of online visitors who are currently browsing your WordPress website.',
|
482 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/visitors-online/?k=93c28013a4f830671b3bba9502ed5177&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
483 |
'settings' => 'admin.php?page=visitors-online.php',
|
484 |
'pro_version' => 'visitors-online-pro/visitors-online-pro.php',
|
@@ -486,9 +455,9 @@ $bws_plugins = array(
|
|
486 |
'pro_settings' => 'admin.php?page=visitors-online-pro.php'
|
487 |
),
|
488 |
'zendesk-help-center/zendesk-help-center.php' => array(
|
489 |
-
'category' => array( '
|
490 |
'name' => 'Zendesk Help Center',
|
491 |
-
'description' => 'Backup and export Zendesk Help Center content automatically to your WordPress website database.',
|
492 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/zendesk-help-center/?k=2a5fd2f4b2f4bde46f2ca44b8d15846d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
493 |
'settings' => 'admin.php?page=zendesk_hc.php&action=settings',
|
494 |
'pro_version' => 'zendesk-help-center-pro/zendesk-help-center-pro.php',
|
4 |
*/
|
5 |
|
6 |
$bws_plugins_category = array(
|
7 |
+
'admin-tools' => array( 'name' => __( 'Admin Tools', 'bestwebsoft' ) ),
|
8 |
+
'content' => array( 'name' => __( 'Content', 'bestwebsoft' ) ),
|
9 |
+
'ecommerce' => array( 'name' => __( 'eCommerce', 'bestwebsoft' ) ),
|
10 |
+
'marketing' => array( 'name' => __( 'Marketing', 'bestwebsoft' ) ),
|
11 |
+
'navigation' => array( 'name' => __( 'Navigation', 'bestwebsoft' ) ),
|
12 |
+
'recommended' => array( 'name' => __( 'Recommended', 'bestwebsoft' ) ),
|
13 |
+
'security' => array( 'name' => __( 'Security', 'bestwebsoft' ) ),
|
14 |
+
'seo' => array( 'name' => __( 'SEO', 'bestwebsoft' ) ),
|
15 |
+
'smm' => array( 'name' => __( 'SMM', 'bestwebsoft' ) ),
|
16 |
);
|
17 |
|
18 |
$bws_plugins = array(
|
19 |
+
/* captcha has pro version only */
|
20 |
+
'captcha-pro/captcha-pro.php' => array(
|
21 |
'category' => array( 'security', 'recommended' ),
|
22 |
'name' => 'Captcha',
|
23 |
+
'description' => __( 'Protect WordPress website forms from spam entries by means of math logic.', 'bestwebsoft' ),
|
24 |
+
/*'link' => 'https://bestwebsoft.com/products/wordpress/plugins/captcha/?k=d678516c0990e781edfb6a6c874f0b8a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version, */
|
25 |
+
'settings' => 'admin.php?page=captcha_pro.php',
|
26 |
+
'install_url' => 'https://bestwebsoft.com/products/wordpress/plugins/captcha/buy/?k=ff7d65e55e5e7f98f219be9ed711094e&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
27 |
'pro_version' => 'captcha-pro/captcha_pro.php',
|
28 |
'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/captcha/buy/?k=ff7d65e55e5e7f98f219be9ed711094e&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
29 |
+
'pro_settings' => 'admin.php?page=captcha_pro.php',
|
30 |
+
'icon' => bws_menu_url( 'icons/plugins/' ) . 'captcha.png'
|
31 |
),
|
32 |
'car-rental/car-rental.php' => array(
|
33 |
+
'category' => array( 'ecommerce' ),
|
34 |
'name' => 'Car Rental',
|
35 |
+
'description' => __( 'Create your personal car rental/booking and reservation website.', 'bestwebsoft' ),
|
36 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/car-rental/?k=444cac6df9a0d3a9763ab4753d24941b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
37 |
'settings' => 'admin.php?page=car-rental-settings',
|
38 |
'pro_version' => 'car-rental-pro/car-rental-pro.php',
|
40 |
'pro_settings' => 'admin.php?page=car-rental-pro-settings'
|
41 |
),
|
42 |
'contact-form-plugin/contact_form.php' => array(
|
43 |
+
'category' => array( 'marketing', 'recommended' ),
|
44 |
'name' => 'Contact Form',
|
45 |
+
'description' => __( 'Allow customers to reach you using secure contact form plugin any website must have.', 'bestwebsoft' ),
|
46 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/contact-form/?k=012327ef413e5b527883e031d43b088b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
47 |
'settings' => 'admin.php?page=contact_form.php',
|
48 |
'pro_version' => 'contact-form-pro/contact_form_pro.php',
|
50 |
'pro_settings' => 'admin.php?page=contact_form_pro.php'
|
51 |
),
|
52 |
'contact-form-multi/contact-form-multi.php' => array(
|
53 |
+
'category' => array( 'marketing', 'recommended' ),
|
54 |
'name' => 'Contact Form Multi',
|
55 |
+
'description' => __( 'Add unlimited number of contact forms to WordPress website.', 'bestwebsoft' ),
|
56 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/contact-form-multi/?k=83cdd9e72a9f4061122ad28a67293c72&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
57 |
'settings' => '',
|
58 |
'pro_version' => 'contact-form-multi-pro/contact-form-multi-pro.php',
|
60 |
'pro_settings' => ''
|
61 |
),
|
62 |
'contact-form-to-db/contact_form_to_db.php' => array(
|
63 |
+
'category' => array( 'admin-tools', 'recommended' ),
|
64 |
'name' => 'Contact Form to DB',
|
65 |
+
'description' => __( 'Save and manage Contact Form messages. Never lose important data.', 'bestwebsoft' ),
|
66 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/contact-form-to-db/?k=ba3747d317c2692e4136ca096a8989d6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
67 |
'settings' => 'admin.php?page=cntctfrmtdb_settings',
|
68 |
'pro_version' => 'contact-form-to-db-pro/contact_form_to_db_pro.php',
|
70 |
'pro_settings' => 'admin.php?page=cntctfrmtdbpr_settings'
|
71 |
),
|
72 |
'custom-admin-page/custom-admin-page.php' => array(
|
73 |
+
'category' => array( 'admin-tools' ),
|
74 |
'name' => 'Custom Admin Page',
|
75 |
+
'description' => __( 'Add unlimited custom pages to WordPress admin dashboard.', 'bestwebsoft' ),
|
76 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/custom-admin-page/?k=9ac03f16c25e845e8e055a221c3e1467&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
77 |
'settings' => 'admin.php?page=custom-admin-page.php'
|
78 |
),
|
79 |
'custom-fields-search/custom-fields-search.php' => array(
|
80 |
+
'category' => array( 'navigation' ),
|
81 |
'name' => 'Custom Fields Search',
|
82 |
+
'description' => __( 'Add custom fields to WordPress website search results.', 'bestwebsoft' ),
|
83 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/custom-fields-search/?k=f3f8285bb069250c42c6ffac95ed3284&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
84 |
'settings' => 'admin.php?page=custom_fields_search.php'
|
85 |
),
|
86 |
'custom-search-plugin/custom-search-plugin.php' => array(
|
87 |
+
'category' => array( 'navigation' ),
|
88 |
'name' => 'Custom Search',
|
89 |
+
'description' => __( 'Add custom post types and taxonomies to WordPress website search results.', 'bestwebsoft' ),
|
90 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/custom-search/?k=933be8f3a8b8719d95d1079d15443e29&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
91 |
'settings' => 'admin.php?page=custom_search.php',
|
92 |
'pro_version' => 'custom-search-pro/custom-search-pro.php',
|
93 |
'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/custom-search/buy/?k=062b652ac6ac8ba863c9f30fc21d62c6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
94 |
'pro_settings' => 'admin.php?page=custom_search_pro.php'
|
95 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
'donate-button/donate.php' => array(
|
97 |
+
'category' => array( 'ecommerce' ),
|
98 |
'name' => 'Donate',
|
99 |
+
'description' => __( 'Add PayPal and 2CO donate buttons to receive charity payments.', 'bestwebsoft' ),
|
100 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/donate/?k=a8b2e2a56914fb1765dd20297c26401b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
101 |
'settings' => 'admin.php?page=donate.php'
|
102 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
'error-log-viewer/error-log-viewer.php' => array(
|
104 |
+
'category' => array( 'admin-tools' ),
|
105 |
'name' => 'Error Log Viewer',
|
106 |
+
'description' => __( 'Get latest error log messages to diagnose website problems. Define and fix issues faster.', 'bestwebsoft' ),
|
107 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/error-log-viewer/?k=da0de8bd2c7a0b2fea5df64d55a368b3&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
108 |
'settings' => 'admin.php?page=rrrlgvwr.php&tab=settings'
|
109 |
),
|
110 |
'facebook-button-plugin/facebook-button-plugin.php' => array(
|
111 |
+
'category' => array( 'smm' ),
|
112 |
'name' => 'Facebook Button',
|
113 |
+
'description' => __( 'Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and widgets.', 'bestwebsoft' ),
|
114 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/facebook-like-button/?k=05ec4f12327f55848335802581467d55&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
115 |
'settings' => 'admin.php?page=facebook-button-plugin.php',
|
116 |
'pro_version' => 'facebook-button-pro/facebook-button-pro.php',
|
117 |
'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/facebook-like-button/buy/?k=8da168e60a831cfb3525417c333ad275&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
118 |
'pro_settings' => 'admin.php?page=facebook-button-pro.php'
|
119 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
120 |
'gallery-plugin/gallery-plugin.php' => array(
|
121 |
+
'category' => array( 'content', 'recommended' ),
|
122 |
'name' => 'Gallery',
|
123 |
+
'description' => __( 'Add beautiful galleries, albums & images to your WordPress website in a few clicks.', 'bestwebsoft' ),
|
124 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/gallery/?k=2da21c0a64eec7ebf16337fa134c5f78&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
125 |
'settings' => 'admin.php?page=gallery-plugin.php',
|
126 |
'pro_version' => 'gallery-plugin-pro/gallery-plugin-pro.php',
|
127 |
'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/gallery/buy/?k=382e5ce7c96a6391f5ffa5e116b37fe0&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
128 |
'pro_settings' => 'admin.php?page=gallery-plugin-pro.php'
|
129 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
'google-one/google-plus-one.php' => array(
|
131 |
+
'category' => array( 'smm' ),
|
132 |
'name' => 'Google +1',
|
133 |
+
'description' => __( 'Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress posts, pages and widgets.', 'bestwebsoft' ),
|
134 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/google-plus-one/?k=ce7a88837f0a857b3a2bb142f470853c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
135 |
'settings' => 'admin.php?page=google-plus-one.php',
|
136 |
'pro_version' => 'google-one-pro/google-plus-one-pro.php',
|
137 |
'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/google-plus-one/buy/?k=f4b0a62d155c9df9601a0531ad5bd832&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
138 |
'pro_settings' => 'admin.php?page=google-plus-one-pro.php'
|
139 |
),
|
140 |
+
'bws-google-2-step-verification/bws-google-2-step-verification.php' => array(
|
141 |
+
'category' => array( 'security' ),
|
142 |
+
'name' => 'Google 2-Step Verification',
|
143 |
+
'description' => __( 'Stronger security solution which protects your WordPress website from hacks and unauthorized login attempts.', 'bestwebsoft' ),
|
144 |
+
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/google-2-step-verification/?k=78de1a525f968d56e39f7325908aa98e&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
145 |
+
'settings' => 'admin.php?page=google-2-step-verification.php',
|
146 |
+
'pro_version' => 'bws-google-2-step-verification-pro/bws-google-2-step-verification-pro.php',
|
147 |
+
'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/google-2-step-verification/buy/?k=b5605ea9bb3628682cfa416e70e78410&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
148 |
+
'pro_settings' => 'admin.php?page=google-2-step-verification-pro.php'
|
149 |
+
),
|
150 |
'adsense-plugin/adsense-plugin.php' => array(
|
151 |
+
'category' => array( 'marketing' ),
|
152 |
'name' => 'Google AdSense',
|
153 |
+
'description' => __( 'Add Adsense ads to WordPress website pages, posts, custom posts, search results, categories, tags, and widgets.', 'bestwebsoft' ),
|
154 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/google-adsense/?k=60e3979921e354feb0347e88e7d7b73d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
155 |
'settings' => 'admin.php?page=adsense-plugin.php',
|
156 |
'pro_version' => 'adsense-pro/adsense-pro.php',
|
158 |
'pro_settings' => 'admin.php?page=adsense-pro.php'
|
159 |
),
|
160 |
'bws-google-analytics/bws-google-analytics.php' => array(
|
161 |
+
'category' => array( 'admin-tools' ),
|
162 |
'name' => 'Google Analytics',
|
163 |
+
'description' => __( 'Add Google Analytics code to WordPress website and track basic stats.', 'bestwebsoft' ),
|
164 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/bws-google-analytics/?k=261c74cad753fb279cdf5a5db63fbd43&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
165 |
'settings' => 'admin.php?page=bws-google-analytics.php',
|
166 |
'pro_version' => 'bws-google-analytics-pro/bws-google-analytics-pro.php',
|
170 |
'google-captcha/google-captcha.php' => array(
|
171 |
'category' => array( 'security', 'recommended' ),
|
172 |
'name' => 'Google Captcha (reCAPTCHA)',
|
173 |
+
'description' => __( 'Protect WordPress website forms from spam entries with Google Captcha (reCaptcha).', 'bestwebsoft' ),
|
174 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/google-captcha/?k=7b59fbe542acf950b29f3e020d5ad735&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
175 |
'settings' => 'admin.php?page=google-captcha.php',
|
176 |
'pro_version' => 'google-captcha-pro/google-captcha-pro.php',
|
178 |
'pro_settings' => 'admin.php?page=google-captcha-pro.php'
|
179 |
),
|
180 |
'bws-google-maps/bws-google-maps.php' => array(
|
181 |
+
'category' => array( 'content' ),
|
182 |
'name' => 'Google Maps',
|
183 |
+
'description' => __( 'Add customized Google maps to WordPress posts, pages and widgets.', 'bestwebsoft' ),
|
184 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/bws-google-maps/?k=d8fac412d7359ebaa4ff53b46572f9f7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
185 |
'settings' => 'admin.php?page=bws-google-maps.php',
|
186 |
'pro_version' => 'bws-google-maps-pro/bws-google-maps-pro.php',
|
188 |
'pro_settings' => 'admin.php?page=bws-google-maps-pro.php'
|
189 |
),
|
190 |
'google-sitemap-plugin/google-sitemap-plugin.php' => array(
|
191 |
+
'category' => array( 'seo', 'recommended' ),
|
192 |
'name' => 'Google Sitemap',
|
193 |
+
'description' => __( 'Generate and add XML sitemap to WordPress website. Help search engines index your blog.', 'bestwebsoft' ),
|
194 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/google-sitemap/?k=5202b2f5ce2cf85daee5e5f79a51d806&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
195 |
'settings' => 'admin.php?page=google-sitemap-plugin.php',
|
196 |
'pro_version' => 'google-sitemap-pro/google-sitemap-pro.php',
|
198 |
'pro_settings' => 'admin.php?page=google-sitemap-pro.php'
|
199 |
),
|
200 |
'google-shortlink/google-shortlink.php' => array(
|
201 |
+
'category' => array( 'seo' ),
|
202 |
'name' => 'Google Shortlink',
|
203 |
+
'description' => __( 'Replace external WordPress website links with Google shortlinks and track click stats.', 'bestwebsoft' ),
|
204 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/google-shortlink/?k=afcf3eaed021bbbbeea1090e16bc22db&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
205 |
'settings' => 'admin.php?page=gglshrtlnk_options'
|
206 |
),
|
207 |
'htaccess/htaccess.php' => array(
|
208 |
'category' => array( 'security' ),
|
209 |
'name' => 'Htaccess',
|
210 |
+
'description' => __( 'Protect WordPress website – allow and deny access for certain IP addresses, hostnames, etc.', 'bestwebsoft' ),
|
211 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/htaccess/?k=2b865fcd56a935d22c5c4f1bba52ed46&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
212 |
'settings' => 'admin.php?page=htaccess.php',
|
213 |
'pro_version' => 'htaccess-pro/htaccess-pro.php',
|
215 |
'pro_settings' => 'admin.php?page=htaccess-pro.php'
|
216 |
),
|
217 |
'job-board/job-board.php' => array(
|
218 |
+
'category' => array( 'ecommerce' ),
|
219 |
'name' => 'Job Board',
|
220 |
+
'description' => __( 'Create your personal job board and listing WordPress website. Search jobs, submit CV/resumes, choose candidates.', 'bestwebsoft' ),
|
221 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/job-board/?k=b0c504c9ce6edd6692e04222af3fed6f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
222 |
'settings' => 'admin.php?page=job-board.php'
|
223 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
224 |
'limit-attempts/limit-attempts.php' => array(
|
225 |
'category' => array( 'security', 'recommended' ),
|
226 |
'name' => 'Limit Attempts',
|
227 |
+
'description' => __( 'Protect WordPress website against brute force attacks. Limit rate of login attempts.', 'bestwebsoft' ),
|
228 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/limit-attempts/?k=b14e1697ee4d008abcd4bd34d492573a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
229 |
'settings' => 'admin.php?page=limit-attempts.php',
|
230 |
'pro_version' => 'limit-attempts-pro/limit-attempts-pro.php',
|
232 |
'pro_settings' => 'admin.php?page=limit-attempts-pro.php'
|
233 |
),
|
234 |
'bws-linkedin/bws-linkedin.php' => array(
|
235 |
+
'category' => array( 'smm' ),
|
236 |
'name' => 'LinkedIn',
|
237 |
+
'description' => __( 'Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. 5 plugins included – profile, insider, etc.', 'bestwebsoft' ),
|
238 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/linkedin/?k=d63c7319622ccc5f589dd2d545c1d77c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
239 |
'settings' => 'admin.php?page=linkedin.php',
|
240 |
'pro_version' => 'bws-linkedin-pro/bws-linkedin-pro.php',
|
242 |
'pro_settings' => 'admin.php?page=linkedin-pro.php'
|
243 |
),
|
244 |
'multilanguage/multilanguage.php' => array(
|
245 |
+
'category' => array( 'content', 'recommended' ),
|
246 |
'name' => 'Multilanguage',
|
247 |
+
'description' => __( 'Translate WordPress website content to other languages manually. Create multilingual pages, posts, widgets, menus, etc.', 'bestwebsoft' ),
|
248 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/multilanguage/?k=7d68c7bfec2486dc350c67fff57ad433&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
249 |
'settings' => 'admin.php?page=mltlngg_settings',
|
250 |
'pro_version' => 'multilanguage-pro/multilanguage-pro.php',
|
252 |
'pro_settings' => 'admin.php?page=mltlnggpr_settings'
|
253 |
),
|
254 |
'pagination/pagination.php' => array(
|
255 |
+
'category' => array( 'navigation' ),
|
256 |
'name' => 'Pagination',
|
257 |
+
'description' => __( 'Add customizable pagination to WordPress website. Split long content to multiple pages for better navigation.', 'bestwebsoft' ),
|
258 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/pagination/?k=22adb940256f149559ba8fedcd728ac8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
259 |
'settings' => 'admin.php?page=pagination.php',
|
260 |
'pro_version' => 'pagination-pro/pagination-pro.php',
|
262 |
'pro_settings' => 'admin.php?page=pagination-pro.php'
|
263 |
),
|
264 |
'pdf-print/pdf-print.php' => array(
|
265 |
+
'category' => array( 'content' ),
|
266 |
'name' => 'PDF & Print',
|
267 |
+
'description' => __( 'Generate PDF files and print WordPress posts/pages. Customize document header/footer styles and appearance.', 'bestwebsoft' ),
|
268 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/pdf-print/?k=bfefdfb522a4c0ff0141daa3f271840c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
269 |
'settings' => 'admin.php?page=pdf-print.php',
|
270 |
'pro_version' => 'pdf-print-pro/pdf-print-pro.php',
|
272 |
'pro_settings' => 'admin.php?page=pdf-print-pro.php'
|
273 |
),
|
274 |
'bws-pinterest/bws-pinterest.php' => array(
|
275 |
+
'category' => array( 'smm' ),
|
276 |
'name' => 'Pinterest',
|
277 |
+
'description' => __( 'Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, Profile) to WordPress posts, pages and widgets.', 'bestwebsoft' ),
|
278 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/pinterest/?k=504107b6213f247a67fe7ffb94e97c78&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
279 |
'settings' => 'admin.php?page=pinterest.php',
|
280 |
'pro_version' => 'bws-pinterest-pro/bws-pinterest-pro.php',
|
281 |
'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/pinterest/buy/?k=ab0069edd1914a3ca8f541bfd88bb0bb&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
282 |
'pro_settings' => 'admin.php?page=pinterest-pro.php'
|
283 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
284 |
'portfolio/portfolio.php' => array(
|
285 |
+
'category' => array( 'content', 'recommended' ),
|
286 |
'name' => 'Portfolio',
|
287 |
+
'description' => __( 'Create your personal portfolio WordPress website. Manage and showcase past projects to get more clients.', 'bestwebsoft' ),
|
288 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/portfolio/?k=1249a890c5b7bba6bda3f528a94f768b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
289 |
'settings' => 'admin.php?page=portfolio.php',
|
290 |
'pro_version' => 'portfolio-pro/portfolio-pro.php',
|
292 |
'pro_settings' => 'admin.php?page=portfolio-pro.php'
|
293 |
),
|
294 |
'post-to-csv/post-to-csv.php' => array(
|
295 |
+
'category' => array( 'admin-tools' ),
|
296 |
'name' => 'Post to CSV',
|
297 |
+
'description' => __( 'Export WordPress posts to CSV file format easily. Configure data order.', 'bestwebsoft' ),
|
298 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/post-to-csv/?k=653aa55518ae17409293a7a894268b8f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
299 |
'settings' => 'admin.php?page=post-to-csv.php'
|
300 |
),
|
301 |
'profile-extra-fields/profile-extra-fields.php' => array(
|
302 |
+
'category' => array( 'admin-tools' ),
|
303 |
'name' => 'Profile Extra Fields',
|
304 |
+
'description' => __( 'Add extra fields to default WordPress user profile. The easiest way to create and manage additional custom values.', 'bestwebsoft' ),
|
305 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/profile-extra-fields/?k=fe3b6c3dbc80bd4b1cf9a27a2f339820&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
306 |
'settings' => 'admin.php?page=profile-extra-fields.php'
|
307 |
),
|
308 |
'promobar/promobar.php' => array(
|
309 |
+
'category' => array( 'marketing' ),
|
310 |
'name' => 'PromoBar',
|
311 |
+
'description' => __( 'Add and display HTML advertisement banner on WordPress website. Customize bar styles and appearance.', 'bestwebsoft' ),
|
312 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/promobar/?k=619eac2232d9cfa382c4e678c3b14766&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
313 |
'settings' => 'admin.php?page=promobar.php',
|
314 |
'pro_version' => 'promobar-pro/promobar-pro.php',
|
316 |
'pro_settings' => 'admin.php?page=promobar-pro.php'
|
317 |
),
|
318 |
'quotes-and-tips/quotes-and-tips.php' => array(
|
319 |
+
'category' => array( 'content' ),
|
320 |
'name' => 'Quotes and Tips',
|
321 |
+
'description' => __( 'Add customizable quotes and tips blocks to WordPress posts, pages and widgets.', 'bestwebsoft' ),
|
322 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/quotes-and-tips/?k=5738a4e85a798c4a5162240c6515098d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
323 |
'settings' => 'admin.php?page=quotes-and-tips.php'
|
324 |
),
|
325 |
'rating-bws/rating-bws.php' => array(
|
326 |
+
'category' => array( 'marketing' ),
|
327 |
'name' => 'Rating',
|
328 |
+
'description' => __( 'Add rating plugin to your WordPress website to receive feedback from your customers.', 'bestwebsoft' ),
|
329 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/rating/?k=c00e0824bb999735a3224616ef51f4c5&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
330 |
'settings' => 'admin.php?page=rating.php'
|
331 |
),
|
332 |
'realty/realty.php' => array(
|
333 |
+
'category' => array( 'ecommerce' ),
|
334 |
'name' => 'Realty',
|
335 |
+
'description' => __( 'Create your personal real estate WordPress website. Sell, rent and buy properties. Add, search and browse listings easily.', 'bestwebsoft' ),
|
336 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/realty/?k=d55de979dbbbb7af0b2ff1d7f43884fa&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
337 |
'settings' => 'admin.php?page=realty_settings',
|
338 |
'pro_version' => 'realty-pro/realty-pro.php',
|
339 |
'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/realty/buy/?k=c7791f0a72acfb36f564a614dbccb474&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
340 |
'pro_settings' => 'admin.php?page=realty_pro_settings'
|
341 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
342 |
'relevant/related-posts-plugin.php' => array(
|
343 |
+
'category' => array( 'marketing', 'recommended' ),
|
344 |
+
'name' => 'Relevant - Related, Featured, Latest, and Popular Posts',
|
345 |
+
'description' => __( 'Add related, featured, latest, and popular posts to your WordPress website. Connect your blog readers with a relevant content.', 'bestwebsoft' ),
|
346 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/related-posts/?k=73fb737037f7141e66415ec259f7e426&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
347 |
'settings' => 'admin.php?page=related-posts-plugin.php'
|
348 |
),
|
349 |
'sender/sender.php' => array(
|
350 |
+
'category' => array( 'marketing', 'recommended' ),
|
351 |
'name' => 'Sender',
|
352 |
+
'description' => __( 'Send bulk email messages to WordPress users. Custom templates, advanced settings and detailed reports.', 'bestwebsoft' ),
|
353 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/sender/?k=89c297d14ba85a8417a0f2fc05e089c7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
354 |
'settings' => 'admin.php?page=sndr_settings',
|
355 |
'pro_version' => 'sender-pro/sender-pro.php',
|
356 |
'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/sender/buy/?k=dc5d1a87bdc8aeab2de40ffb99b38054&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
357 |
'pro_settings' => 'admin.php?page=sndrpr_settings'
|
358 |
),
|
359 |
+
'slider-bws/slider-bws.php' => array(
|
360 |
+
'category' => array( 'content' ),
|
361 |
+
'name' => 'Slider',
|
362 |
+
'description' => __( 'The best responsive slider plugin for your WordPress website. Create beautifully animated slides just in a few clicks.', 'bestwebsoft' ),
|
363 |
+
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/slider/?k=02acebf8531b2995e7de8474ae28e290&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
364 |
+
'settings' => 'admin.php?page=slider-settings.php'
|
365 |
+
),
|
366 |
'bws-smtp/bws-smtp.php' => array(
|
367 |
+
'category' => array( 'admin-tools' ),
|
368 |
'name' => 'SMTP',
|
369 |
+
'description' => __( 'Configure SMTP server to receive email messages from WordPress to Gmail, Yahoo, Hotmail and other services.', 'bestwebsoft' ),
|
370 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/smtp/?k=0546419f962704429ad2d9b88567752f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
371 |
'settings' => 'admin.php?page=bwssmtp_settings'
|
372 |
),
|
373 |
'social-buttons-pack/social-buttons-pack.php' => array(
|
374 |
+
'category' => array( 'smm', 'recommended' ),
|
375 |
'name' => 'Social Buttons Pack',
|
376 |
+
'description' => __( 'Add social media buttons and widgets to WordPress posts, pages and widgets. FB, Twitter, G+1, Pinterest, LinkedIn.', 'bestwebsoft' ),
|
377 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/social-buttons-pack/?k=b6440fad9f54274429e536b0c61b42da&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
378 |
'settings' => 'admin.php?page=social-buttons.php',
|
379 |
'pro_version' => 'social-buttons-pack-pro/social-buttons-pack-pro.php',
|
381 |
'pro_settings' => 'admin.php?page=social-buttons.php'
|
382 |
),
|
383 |
'social-login-bws/social-login-bws.php' => array(
|
384 |
+
'category' => array( 'smm' ),
|
385 |
'name' => 'Social Login',
|
386 |
+
'description' => __( 'Add social media login, registration, and commenting to your WordPress website.', 'bestwebsoft' ),
|
387 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/social-login/?k=62817c9c94f24129e40894e1d9c3f49d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
388 |
'settings' => 'admin.php?page=social-login.php'
|
389 |
),
|
390 |
'subscriber/subscriber.php' => array(
|
391 |
+
'category' => array( 'marketing', 'recommended' ),
|
392 |
'name' => 'Subscriber',
|
393 |
+
'description' => __( 'Add email newsletter sign up form to WordPress posts, pages and widgets. Collect data and subscribe your users.', 'bestwebsoft' ),
|
394 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/subscriber/?k=a4ecc1b7800bae7329fbe8b4b04e9c88&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
395 |
'settings' => 'admin.php?page=sbscrbr_settings_page',
|
396 |
'pro_version' => 'subscriber-pro/subscriber-pro.php',
|
398 |
'pro_settings' => 'admin.php?page=sbscrbrpr_settings_page'
|
399 |
),
|
400 |
'bws-testimonials/bws-testimonials.php' => array(
|
401 |
+
'category' => array( 'marketing', 'recommended' ),
|
402 |
'name' => 'Testimonials',
|
403 |
+
'description' => __( 'Add testimonials and feedbacks from your customers to WordPress website posts, pages, and widgets.', 'bestwebsoft' ),
|
404 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/testimonials/?k=3fe4bb89dc901c98e43a113e08f8db73&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
405 |
'settings' => 'admin.php?page=testimonials.php'
|
406 |
),
|
407 |
'timesheet/timesheet.php' => array(
|
408 |
+
'category' => array( 'admin-tools' ),
|
409 |
'name' => 'Timesheet',
|
410 |
+
'description' => __( 'Best timesheet plugin for WordPress. Track employee time, streamline attendance and generate reports.', 'bestwebsoft' ),
|
411 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/timesheet/?k=06a58bb78c17a43df01825925f05a5c1&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
412 |
'settings' => 'admin.php?page=timesheet_settings',
|
413 |
'pro_version' => 'timesheet-pro/timesheet-pro.php',
|
415 |
'pro_settings' => 'admin.php?page=timesheet_pro_settings'
|
416 |
),
|
417 |
'twitter-plugin/twitter.php' => array(
|
418 |
+
'category' => array( 'smm' ),
|
419 |
'name' => 'Twitter',
|
420 |
+
'description' => __( 'Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts and pages.', 'bestwebsoft' ),
|
421 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/twitter/?k=f8cb514e25bd7ec4974d64435c5eb333&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
422 |
'settings' => 'admin.php?page=twitter.php',
|
423 |
'pro_version' => 'twitter-pro/twitter-pro.php',
|
425 |
'pro_settings' => 'admin.php?page=twitter-pro.php'
|
426 |
),
|
427 |
'updater/updater.php' => array(
|
428 |
+
'category' => array( 'admin-tools', 'recommended' ),
|
429 |
'name' => 'Updater',
|
430 |
+
'description' => __( 'Automatically check and update WordPress website core with all installed plugins and themes to the latest versions.', 'bestwebsoft' ),
|
431 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/updater/?k=66f3ecd4c1912009d395c4bb30f779d1&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
432 |
'settings' => 'admin.php?page=updater-options',
|
433 |
'pro_version' => 'updater-pro/updater_pro.php',
|
435 |
'pro_settings' => 'admin.php?page=updater-pro-options'
|
436 |
),
|
437 |
'user-role/user-role.php' => array(
|
438 |
+
'category' => array( 'admin-tools' ),
|
439 |
'name' => 'User Role',
|
440 |
+
'description' => __( 'Powerful user role management plugin for WordPress website. Create, edit, copy, and delete user roles.', 'bestwebsoft' ),
|
441 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/user-role/?k=dfe2244835c6fbf601523964b3f34ccc&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
442 |
'settings' => 'admin.php?page=user-role.php',
|
443 |
'pro_version' => 'user-role-pro/user-role-pro.php',
|
445 |
'pro_settings' => 'admin.php?page=user-role-pro.php'
|
446 |
),
|
447 |
'visitors-online/visitors-online.php' => array(
|
448 |
+
'category' => array( 'admin-tools' ),
|
449 |
'name' => 'Visitors Online',
|
450 |
+
'description' => __( 'Display live count of online visitors who are currently browsing your WordPress website.', 'bestwebsoft' ),
|
451 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/visitors-online/?k=93c28013a4f830671b3bba9502ed5177&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
452 |
'settings' => 'admin.php?page=visitors-online.php',
|
453 |
'pro_version' => 'visitors-online-pro/visitors-online-pro.php',
|
455 |
'pro_settings' => 'admin.php?page=visitors-online-pro.php'
|
456 |
),
|
457 |
'zendesk-help-center/zendesk-help-center.php' => array(
|
458 |
+
'category' => array( 'admin-tools' ),
|
459 |
'name' => 'Zendesk Help Center',
|
460 |
+
'description' => __( 'Backup and export Zendesk Help Center content automatically to your WordPress website database.', 'bestwebsoft' ),
|
461 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/zendesk-help-center/?k=2a5fd2f4b2f4bde46f2ca44b8d15846d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
462 |
'settings' => 'admin.php?page=zendesk_hc.php&action=settings',
|
463 |
'pro_version' => 'zendesk-help-center-pro/zendesk-help-center-pro.php',
|
css/style.css
CHANGED
@@ -25,4 +25,38 @@
|
|
25 |
}
|
26 |
.gglstmp_success {
|
27 |
color: #009e10;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
}
|
25 |
}
|
26 |
.gglstmp_success {
|
27 |
color: #009e10;
|
28 |
+
}
|
29 |
+
|
30 |
+
/*******************************************************************************
|
31 |
+
* plugin`s instances of class WP_List_Table
|
32 |
+
*/
|
33 |
+
#gglstmp_table .column-url input[type="url"] {
|
34 |
+
width: 100%;
|
35 |
+
box-sizing: border-box;
|
36 |
+
}
|
37 |
+
#gglstmp_table .column-is_sitemap,
|
38 |
+
#gglstmp_table .column-priority,
|
39 |
+
#gglstmp_table .column-frequency,
|
40 |
+
#gglstmp_table .column-date {
|
41 |
+
width: 10em;
|
42 |
+
}
|
43 |
+
.gglstmp_overflow_visible {
|
44 |
+
overflow: visible;
|
45 |
+
}
|
46 |
+
.gglstmp_disabled {
|
47 |
+
background-color: #fefaf7 !important;
|
48 |
+
}
|
49 |
+
.gglstmp_disabled th {
|
50 |
+
border-left: 3px solid #d54e21 !important;
|
51 |
+
box-sizing: border-box;
|
52 |
+
padding-left: 0;
|
53 |
+
}
|
54 |
+
@media screen and (max-width: 782px) {
|
55 |
+
#gglstmp_manage_table th {
|
56 |
+
padding-bottom: 0;
|
57 |
+
}
|
58 |
+
#gglstmp_manage_table td {
|
59 |
+
padding-bottom: 6px;
|
60 |
+
padding-top: 4px;
|
61 |
+
}
|
62 |
}
|
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: https://bestwebsoft.com/
|
11 |
License: GPLv2 or later
|
12 |
*/
|
@@ -30,31 +30,55 @@ License: GPLv2 or later
|
|
30 |
|
31 |
require_once( dirname( __FILE__ ) . '/includes/deprecated.php' );
|
32 |
|
33 |
-
/*============================================ Function for adding menu and submenu ====================*/
|
34 |
if ( ! function_exists( 'gglstmp_admin_menu' ) ) {
|
35 |
function gglstmp_admin_menu() {
|
36 |
global $gglstmp_options, $wp_version, $submenu, $gglstmp_plugin_info;
|
37 |
|
38 |
-
$settings = add_menu_page(
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
|
44 |
-
add_submenu_page(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
|
46 |
if ( isset( $submenu['google-sitemap-plugin.php'] ) )
|
47 |
-
$submenu['google-sitemap-plugin.php'][] = array(
|
48 |
'<span style="color:#d86463"> ' . __( 'Upgrade to Pro', 'google-sitemap-plugin' ) . '</span>',
|
49 |
'manage_options',
|
50 |
'https://bestwebsoft.com/products/wordpress/plugins/google-sitemap/?k=28d4cf0b4ab6f56e703f46f60d34d039&pn=83&v=' . $gglstmp_plugin_info["Version"] . '&wp_v=' . $wp_version );
|
51 |
|
52 |
|
53 |
add_action( "load-{$settings}", 'gglstmp_add_tabs' );
|
54 |
-
|
55 |
-
global $gglstmp_url_home, $gglstmp_url;
|
56 |
-
$gglstmp_url_home = site_url( '/' );
|
57 |
-
$gglstmp_url = urlencode( $gglstmp_url_home );
|
58 |
}
|
59 |
}
|
60 |
|
@@ -81,10 +105,41 @@ if ( ! function_exists( 'gglstmp_init' ) ) {
|
|
81 |
bws_include_init( plugin_basename( __FILE__ ) );
|
82 |
|
83 |
/* check compatible with current WP version */
|
84 |
-
bws_wp_min_version_check( plugin_basename( __FILE__ ), $gglstmp_plugin_info, '3.
|
85 |
|
86 |
/* Get options from the database */
|
87 |
gglstmp_register_settings();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
}
|
89 |
}
|
90 |
|
@@ -104,19 +159,36 @@ if ( ! function_exists( 'gglstmp_admin_init' ) ) {
|
|
104 |
}
|
105 |
}
|
106 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
/*============================================ Function for register of the plugin settings on init core ====================*/
|
108 |
if ( ! function_exists( 'gglstmp_register_settings' ) ) {
|
109 |
function gglstmp_register_settings() {
|
110 |
global $gglstmp_options, $gglstmp_plugin_info;
|
111 |
|
112 |
-
/**
|
113 |
* Renaming old version options
|
114 |
* @deprecated since 3.0.8
|
115 |
* @todo remove after 28.10.2017
|
116 |
*/
|
117 |
-
gglstmp_check_old_options
|
|
|
|
|
118 |
|
119 |
if ( ! get_option( 'gglstmp_options' ) ) {
|
|
|
120 |
$options_default = gglstmp_get_options_default();
|
121 |
add_option( 'gglstmp_options', $options_default );
|
122 |
}
|
@@ -126,11 +198,28 @@ if ( ! function_exists( 'gglstmp_register_settings' ) ) {
|
|
126 |
if ( ! isset( $gglstmp_options['plugin_option_version'] ) || $gglstmp_options['plugin_option_version'] != $gglstmp_plugin_info['Version'] ) {
|
127 |
$options_default = gglstmp_get_options_default();
|
128 |
$gglstmp_options = array_merge( $options_default, $gglstmp_options );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
$gglstmp_options['plugin_option_version'] = $gglstmp_plugin_info["Version"];
|
130 |
/* show pro features */
|
131 |
$gglstmp_options['hide_premium_options'] = array();
|
132 |
update_option( 'gglstmp_options', $gglstmp_options );
|
133 |
}
|
|
|
|
|
|
|
|
|
134 |
}
|
135 |
}
|
136 |
|
@@ -145,155 +234,525 @@ if ( ! function_exists( 'gglstmp_get_options_default' ) ) {
|
|
145 |
'suggest_feature_banner' => 1,
|
146 |
'post_type' => array( 'page', 'post' ),
|
147 |
'taxonomy' => array(),
|
148 |
-
'
|
|
|
|
|
149 |
);
|
150 |
return $options_default;
|
151 |
}
|
152 |
}
|
153 |
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
|
159 |
-
|
|
|
|
|
160 |
|
161 |
-
$
|
162 |
-
|
163 |
-
|
|
|
|
|
|
|
|
|
|
|
164 |
}
|
|
|
|
|
165 |
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
170 |
|
171 |
-
$
|
172 |
-
$xml->appendChild( $xslt );
|
173 |
-
$gglstmp_urlset = $xml->appendChild( $xml->createElementNS( 'http://www.sitemaps.org/schemas/sitemap/0.9','urlset' ) );
|
174 |
|
175 |
-
|
176 |
-
$
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
$
|
185 |
-
|
186 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
}
|
188 |
-
|
189 |
-
$
|
190 |
-
|
191 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
192 |
while ( true ) {
|
193 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
194 |
if ( ! empty( $hidden_child_array ) ) {
|
195 |
-
$
|
196 |
-
$excluded_posts_string = implode( ', ', $hidden_child_array );
|
197 |
} else {
|
198 |
break 1;
|
199 |
}
|
200 |
}
|
201 |
}
|
202 |
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
225 |
}
|
226 |
}
|
227 |
}
|
228 |
-
if ( ! empty( $taxonomies ) ) {
|
229 |
-
foreach ( $taxonomies as $value ) {
|
230 |
|
231 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
232 |
|
233 |
if ( ! empty( $terms ) && ! is_wp_error( $terms ) ) {
|
234 |
foreach ( $terms as $term_value ) {
|
235 |
-
$
|
236 |
-
$
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
$date = date( 'Y-m-d\TH:i:sP', strtotime( $now ) );
|
243 |
-
$lastmod->appendChild( $xml->createTextNode( $date ) );
|
244 |
-
$changefreq = $gglstmp_url -> appendChild( $xml->createElement( 'changefreq' ) );
|
245 |
-
$changefreq->appendChild( $xml->createTextNode( 'monthly' ) );
|
246 |
-
$priority = $gglstmp_url->appendChild( $xml->createElement( 'priority' ) );
|
247 |
-
$priority->appendChild( $xml->createTextNode( 1.0 ) );
|
248 |
}
|
249 |
}
|
250 |
}
|
251 |
}
|
252 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
253 |
$xml->formatOutput = true;
|
254 |
|
255 |
if ( ! is_writable( ABSPATH ) )
|
256 |
@chmod( ABSPATH, 0755 );
|
257 |
|
|
|
|
|
258 |
if ( is_multisite() ) {
|
259 |
-
$
|
260 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
261 |
} else {
|
262 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
263 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
264 |
|
265 |
if ( is_multisite() ) {
|
266 |
-
|
267 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
268 |
} else {
|
269 |
-
$
|
270 |
}
|
271 |
|
272 |
-
|
273 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
274 |
if ( file_exists( $xml_path ) ) {
|
275 |
-
|
276 |
-
|
277 |
-
'path' => $xml_path,
|
278 |
-
'loc' => $xml_url,
|
279 |
-
'lastmod' => date( 'Y-m-d\TH:i:sP', filemtime( $xml_path ) )
|
280 |
-
);
|
281 |
update_option( 'gglstmp_options', $gglstmp_options );
|
282 |
}
|
283 |
}
|
284 |
}
|
285 |
|
286 |
-
if ( ! function_exists( '
|
287 |
-
function
|
288 |
-
|
289 |
-
|
|
|
|
|
|
|
|
|
|
|
290 |
}
|
291 |
}
|
292 |
|
293 |
if ( ! function_exists ( 'gglstmp_client' ) ) {
|
294 |
function gglstmp_client() {
|
295 |
global $gglstmp_plugin_info;
|
296 |
-
|
|
|
|
|
|
|
297 |
$client = new Google_Client();
|
298 |
$client->setClientId( '37374817621-7ujpfn4ai4q98q4nb0gaaq5ga7j7u0ka.apps.googleusercontent.com' );
|
299 |
$client->setClientSecret( 'GMefWPZdRIWk3J7USu6_Kf6_' );
|
@@ -337,20 +796,23 @@ if ( ! function_exists( 'gglstmp_plugin_status' ) ) {
|
|
337 |
}
|
338 |
}
|
339 |
|
340 |
-
|
341 |
if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
|
342 |
function gglstmp_settings_page() {
|
343 |
-
global $gglstmp_plugin_info, $gglstmp_list_table;
|
344 |
require_once( dirname( __FILE__ ) . '/includes/pro_banners.php' ); ?>
|
345 |
-
<div class="wrap">
|
346 |
<?php if ( 'google-sitemap-plugin.php' == $_GET['page'] ) { /* Showing settings tab */
|
347 |
require_once( dirname( __FILE__ ) . '/includes/class-gglstmp-settings.php' );
|
348 |
$page = new Gglstmp_Settings_Tabs( plugin_basename( __FILE__ ) ); ?>
|
349 |
<h1>Google Sitemap <?php _e( 'Settings', 'google-sitemap-plugin' ); ?></h1>
|
350 |
-
<noscript><div class="error below-h2"><p><strong><?php _e( "Please enable JavaScript in
|
351 |
<?php $page->display_content();
|
352 |
} else { ?>
|
353 |
-
<h1
|
|
|
|
|
|
|
354 |
<?php gglstmp_pro_block( "gglstmp_custom_links_block", false );
|
355 |
bws_plugin_reviews_block( $gglstmp_plugin_info['Name'], 'google-sitemap-plugin' );
|
356 |
} ?>
|
@@ -360,35 +822,31 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
|
|
360 |
|
361 |
if ( ! function_exists( 'gglstmp_robots_add_sitemap' ) ) {
|
362 |
function gglstmp_robots_add_sitemap( $output, $public ) {
|
363 |
-
if ( '0'
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
$output .= "Sitemap: " . site_url( "/" ) . "sitemap_" . $home_url . ".xml";
|
370 |
-
} else {
|
371 |
-
$output .= "Sitemap: " . site_url( "/" ) . "sitemap.xml";
|
372 |
-
}
|
373 |
-
return $output;
|
374 |
}
|
375 |
}
|
|
|
376 |
}
|
377 |
}
|
378 |
|
379 |
-
|
380 |
if ( ! function_exists( 'gglstmp_add_plugin_stylesheet' ) ) {
|
381 |
function gglstmp_add_plugin_stylesheet() {
|
382 |
wp_enqueue_style( 'gglstmp_stylesheet', plugins_url( 'css/style.css', __FILE__ ) );
|
383 |
-
if ( isset( $_GET['page'] ) && "google-sitemap-plugin.php" == $_GET['page'] ) {
|
384 |
bws_enqueue_settings_scripts();
|
385 |
}
|
386 |
}
|
387 |
}
|
388 |
|
389 |
-
|
390 |
-
if ( ! function_exists( '
|
391 |
-
function
|
392 |
global $gglstmp_options;
|
393 |
|
394 |
$instruction_url = 'https://docs.google.com/document/d/1VOJx_OaasVskCqi9fsAbUmxfsckoagPU5Py97yjha9w/';
|
@@ -431,7 +889,7 @@ if ( ! function_exists( 'gglstmp_info_site' ) ) {
|
|
431 |
$url_sitemap = $gglstmp_options['sitemap']['loc'];
|
432 |
if ( ! array_key_exists( $url_sitemap, $wmt_sitemaps_arr ) ) {
|
433 |
$return .= '<td>' . __( 'Not added', 'google-sitemap-plugin' ) . '</td></tr>';
|
434 |
-
} else {
|
435 |
if ( ! $wmt_sitemaps_arr[ $url_sitemap ] ) {
|
436 |
$return .= '<td class="gglstmp_success">' . __( 'Added', 'google-sitemap-plugin' ) . '</td></tr>';
|
437 |
} else {
|
@@ -466,11 +924,11 @@ if ( ! function_exists( 'gglstmp_info_site' ) ) {
|
|
466 |
}
|
467 |
}
|
468 |
|
469 |
-
|
470 |
-
if ( ! function_exists( '
|
471 |
-
function
|
472 |
global $gglstmp_options;
|
473 |
-
|
474 |
$home_url = home_url('/');
|
475 |
$return = '<table id="gglstmp_manage_table"><tr><th>' . __( 'Website', 'google-sitemap-plugin' ) . '</th>
|
476 |
<td><a href="' . $home_url . '" target="_blank">' . $home_url . '</a></td></tr>';
|
@@ -514,7 +972,7 @@ if ( ! function_exists( 'gglstmp_del_site' ) ) {
|
|
514 |
}
|
515 |
}
|
516 |
|
517 |
-
|
518 |
if ( ! function_exists( 'gglstmp_add_site' ) ) {
|
519 |
function gglstmp_add_site( $webmasters, $site_verification ) {
|
520 |
global $gglstmp_options;
|
@@ -576,7 +1034,7 @@ if ( ! function_exists( 'gglstmp_add_site' ) ) {
|
|
576 |
$sv_error = $e->getMessage();
|
577 |
}
|
578 |
|
579 |
-
if ( ! empty( $sv_error ) ) {
|
580 |
if ( $sv_error !== true ) {
|
581 |
$return .= '<tr><th>' . __( 'Verification Code', 'google-sitemap-plugin' ) . '</th>
|
582 |
<td><strong>' . __( 'Error', 'google-sitemap-plugin' ) . ':</strong> ' . $sv_error . '</td></tr>';
|
@@ -617,12 +1075,25 @@ if ( ! function_exists( 'gglstmp_add_site' ) ) {
|
|
617 |
|
618 |
$return .= '<tr><th>' . __( 'Sitemap Status', 'google-sitemap-plugin' ) . '</th>';
|
619 |
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
624 |
try {
|
625 |
-
$webmasters->sitemaps->submit( $home_url, $
|
626 |
$return .= '<td class="gglstmp_success">' . __( 'Added', 'google-sitemap-plugin' ) . '</td></tr>';
|
627 |
} catch ( Google_Service_Exception $e ) {
|
628 |
$error = $e->getErrors();
|
@@ -641,7 +1112,18 @@ if ( ! function_exists( 'gglstmp_add_site' ) ) {
|
|
641 |
$return .= '<td>' . __( "Please add the sitemap file manually.", 'google-sitemap-plugin' ) . ' <a target="_blank" href="' . $instruction_url . '">' . __( 'Learn More', 'google-sitemap-plugin' ) . '</a></td></tr>';
|
642 |
}
|
643 |
} else {
|
644 |
-
$return .=
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
645 |
}
|
646 |
} else {
|
647 |
$return .= '<td><strong>' . __( 'Error', 'google-sitemap-plugin' ) . ':</strong> ' . __( 'The sitemap file not found.', 'google-sitemap-plugin' ) . '</td></tr>';
|
@@ -655,7 +1137,7 @@ if ( ! function_exists( 'gglstmp_add_site' ) ) {
|
|
655 |
}
|
656 |
}
|
657 |
|
658 |
-
|
659 |
if ( ! function_exists( 'gglstmp_add_verification_code' ) ) {
|
660 |
function gglstmp_add_verification_code() {
|
661 |
global $gglstmp_options;
|
@@ -666,35 +1148,37 @@ if ( ! function_exists( 'gglstmp_add_verification_code' ) ) {
|
|
666 |
}
|
667 |
}
|
668 |
|
669 |
-
|
670 |
if ( ! function_exists( 'gglstmp_check_post_status' ) ) {
|
671 |
function gglstmp_check_post_status( $new_status, $old_status, $post ) {
|
672 |
if ( ! wp_is_post_revision( $post->ID ) ) {
|
673 |
global $gglstmp_update_sitemap;
|
674 |
-
if (
|
675 |
-
|
676 |
-
} elseif (
|
677 |
-
(
|
|
|
|
|
678 |
$gglstmp_update_sitemap = true;
|
679 |
}
|
680 |
}
|
681 |
}
|
682 |
}
|
683 |
|
684 |
-
|
685 |
if ( ! function_exists( 'gglstmp_update_sitemap' ) ) {
|
686 |
function gglstmp_update_sitemap( $post_id ) {
|
687 |
if ( ! wp_is_post_revision( $post_id ) ) {
|
688 |
global $gglstmp_update_sitemap;
|
689 |
if ( true === $gglstmp_update_sitemap ) {
|
690 |
gglstmp_register_settings();
|
691 |
-
|
692 |
}
|
693 |
}
|
694 |
}
|
695 |
}
|
696 |
|
697 |
-
|
698 |
if ( ! function_exists( 'gglstmp_action_links' ) ) {
|
699 |
function gglstmp_action_links( $links, $file ) {
|
700 |
/* Static so we don't call plugin_basename on every plugin row. */
|
@@ -777,15 +1261,12 @@ if ( ! function_exists( 'gglstmp_add_sitemap' ) ) {
|
|
777 |
return;
|
778 |
}
|
779 |
|
780 |
-
$
|
781 |
-
switch_to_blog( $blog_id );
|
782 |
-
gglstmp_sitemapcreate();
|
783 |
-
switch_to_blog( $old_blog );
|
784 |
}
|
785 |
}
|
786 |
|
787 |
/**
|
788 |
-
* Fires when the blog has been deleted or blog status to 'spam', 'deactivated(deleted)' or 'archived'.
|
789 |
* @since 1.2.9
|
790 |
* @param int $blog_id Blog ID
|
791 |
* @return void
|
@@ -793,15 +1274,16 @@ if ( ! function_exists( 'gglstmp_add_sitemap' ) ) {
|
|
793 |
if ( ! function_exists( 'gglstmp_delete_sitemap' ) ) {
|
794 |
function gglstmp_delete_sitemap( $blog_id ) {
|
795 |
|
796 |
-
|
797 |
-
$
|
|
|
798 |
|
799 |
-
|
800 |
-
|
801 |
}
|
802 |
}
|
803 |
|
804 |
-
|
805 |
if ( ! function_exists( 'gglstmp_delete_settings' ) ) {
|
806 |
function gglstmp_delete_settings() {
|
807 |
global $wpdb;
|
@@ -816,31 +1298,14 @@ if ( ! function_exists( 'gglstmp_delete_settings' ) ) {
|
|
816 |
foreach ( $blogids as $blog_id ) {
|
817 |
delete_blog_option( $blog_id, 'gglstmp_options' );
|
818 |
delete_blog_option( $blog_id, 'gglstmp_robots' );
|
819 |
-
$site_url = preg_replace( "/[^a-zA-ZА-Яа-я0-9\s]/", '_', str_replace( 'http://', '', str_replace( 'https://', '', get_site_url( $blog_id ) ) ) );
|
820 |
-
$file = ABSPATH . "sitemap_{$site_url}.xml";
|
821 |
-
if ( file_exists( $file ) )
|
822 |
-
unlink( $file );
|
823 |
}
|
824 |
} else {
|
825 |
delete_option( 'gglstmp_options' );
|
826 |
delete_option( 'gglstmp_robots' );
|
827 |
-
$sitemap_path = ABSPATH . "sitemap.xml";
|
828 |
-
$sitemap_url = site_url( '/sitemap.xml' );
|
829 |
-
$robots_path = ABSPATH . "robots.txt";
|
830 |
-
|
831 |
-
if ( file_exists( $sitemap_path ) )
|
832 |
-
unlink( $sitemap_path );
|
833 |
-
|
834 |
-
if ( file_exists( $robots_path ) ) {
|
835 |
-
if ( ! is_writable( $robots_path ) )
|
836 |
-
@chmod( $robots_path, 0755 );
|
837 |
-
if ( is_writable( $robots_path ) ) {
|
838 |
-
$content = file_get_contents( $robots_path );
|
839 |
-
$content = preg_replace( "|\nSitemap: {$sitemap_url}|", '', $content );
|
840 |
-
file_put_contents( $robots_path, $content );
|
841 |
-
}
|
842 |
-
}
|
843 |
}
|
|
|
|
|
|
|
844 |
}
|
845 |
|
846 |
require_once( dirname( __FILE__ ) . '/bws_menu/bws_include.php' );
|
@@ -849,6 +1314,8 @@ if ( ! function_exists( 'gglstmp_delete_settings' ) ) {
|
|
849 |
}
|
850 |
}
|
851 |
|
|
|
|
|
852 |
add_action( 'admin_menu', 'gglstmp_admin_menu' );
|
853 |
|
854 |
add_action( 'init', 'gglstmp_init' );
|
@@ -863,8 +1330,13 @@ add_action( 'transition_post_status', 'gglstmp_check_post_status', 10, 3 );
|
|
863 |
add_action( 'save_post', 'gglstmp_update_sitemap' );
|
864 |
add_action( 'trashed_post', 'gglstmp_update_sitemap' );
|
865 |
|
866 |
-
|
867 |
-
|
|
|
|
|
|
|
|
|
|
|
868 |
|
869 |
add_action( 'wp_head', 'gglstmp_add_verification_code' );
|
870 |
|
@@ -883,6 +1355,4 @@ add_action( 'delete_blog', 'gglstmp_delete_sitemap' );
|
|
883 |
add_action( 'deactivate_blog', 'gglstmp_delete_sitemap' );
|
884 |
add_action( 'make_delete_blog', 'gglstmp_delete_sitemap' );
|
885 |
add_action( 'archive_blog', 'gglstmp_delete_sitemap' );
|
886 |
-
add_action( 'make_spam_blog', 'gglstmp_delete_sitemap' );
|
887 |
-
|
888 |
-
register_uninstall_hook( __FILE__, 'gglstmp_delete_settings' ); /* uninstall plugin */
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: google-sitemap-plugin
|
8 |
Domain Path: /languages
|
9 |
+
Version: 3.1.0
|
10 |
Author URI: https://bestwebsoft.com/
|
11 |
License: GPLv2 or later
|
12 |
*/
|
30 |
|
31 |
require_once( dirname( __FILE__ ) . '/includes/deprecated.php' );
|
32 |
|
|
|
33 |
if ( ! function_exists( 'gglstmp_admin_menu' ) ) {
|
34 |
function gglstmp_admin_menu() {
|
35 |
global $gglstmp_options, $wp_version, $submenu, $gglstmp_plugin_info;
|
36 |
|
37 |
+
$settings = add_menu_page(
|
38 |
+
__( 'Google Sitemap Settings', 'google-sitemap-plugin' ), /* $page_title */
|
39 |
+
'Google Sitemap', /* $menu_title */
|
40 |
+
'manage_options', /* $capability */
|
41 |
+
'google-sitemap-plugin.php', /* $menu_slug */
|
42 |
+
'gglstmp_settings_page', /* $callable_function */
|
43 |
+
'none' /* $icon_url */
|
44 |
+
);
|
45 |
+
|
46 |
+
add_submenu_page(
|
47 |
+
'google-sitemap-plugin.php', /* $parent_slug */
|
48 |
+
__( 'Google Sitemap Settings', 'google-sitemap-plugin' ), /* $page_title */
|
49 |
+
__( 'Settings', 'google-sitemap-plugin' ), /* $menu_title */
|
50 |
+
'manage_options', /* $capability */
|
51 |
+
'google-sitemap-plugin.php', /* $menu_slug */
|
52 |
+
'gglstmp_settings_page' /* $callable_function */
|
53 |
+
);
|
54 |
+
|
55 |
+
if ( ! bws_hide_premium_options_check( $gglstmp_options ) ) {
|
56 |
+
add_submenu_page( 'google-sitemap-plugin.php', /* $parent_slug */
|
57 |
+
__( 'Custom Links', 'google-sitemap-plugin' ), /* $page_title */
|
58 |
+
__( 'Custom Links', 'google-sitemap-plugin' ), /* $menu_title */
|
59 |
+
'manage_options', /* $capability */
|
60 |
+
'google-sitemap-custom-links.php', /* $menu_slug */
|
61 |
+
'gglstmp_settings_page' /* $callable_function */
|
62 |
+
);
|
63 |
+
}
|
64 |
|
65 |
+
add_submenu_page(
|
66 |
+
'google-sitemap-plugin.php', /* $parent_slug */
|
67 |
+
'BWS Panel', /* $page_title */
|
68 |
+
'BWS Panel', /* $menu_title */
|
69 |
+
'manage_options', /* $capability */
|
70 |
+
'gglstmp-bws-panel', /* $menu_slug */
|
71 |
+
'bws_add_menu_render' /* $callable_function */
|
72 |
+
);
|
73 |
|
74 |
if ( isset( $submenu['google-sitemap-plugin.php'] ) )
|
75 |
+
$submenu['google-sitemap-plugin.php'][] = array(
|
76 |
'<span style="color:#d86463"> ' . __( 'Upgrade to Pro', 'google-sitemap-plugin' ) . '</span>',
|
77 |
'manage_options',
|
78 |
'https://bestwebsoft.com/products/wordpress/plugins/google-sitemap/?k=28d4cf0b4ab6f56e703f46f60d34d039&pn=83&v=' . $gglstmp_plugin_info["Version"] . '&wp_v=' . $wp_version );
|
79 |
|
80 |
|
81 |
add_action( "load-{$settings}", 'gglstmp_add_tabs' );
|
|
|
|
|
|
|
|
|
82 |
}
|
83 |
}
|
84 |
|
105 |
bws_include_init( plugin_basename( __FILE__ ) );
|
106 |
|
107 |
/* check compatible with current WP version */
|
108 |
+
bws_wp_min_version_check( plugin_basename( __FILE__ ), $gglstmp_plugin_info, '3.9' );
|
109 |
|
110 |
/* Get options from the database */
|
111 |
gglstmp_register_settings();
|
112 |
+
|
113 |
+
if ( 1 == get_option( 'gglstmp_robots' ) )
|
114 |
+
add_filter( 'robots_txt', 'gglstmp_robots_add_sitemap', 10, 2 );
|
115 |
+
|
116 |
+
if ( isset( $_GET['gglstmp_robots'] ) ) {
|
117 |
+
$robots_txt_url = ABSPATH . 'robots.txt';
|
118 |
+
/* Get content from real robots.txt file and output its content + custom content */
|
119 |
+
if ( file_exists( $robots_txt_url ) ) {
|
120 |
+
$robots_content = file_get_contents( $robots_txt_url );
|
121 |
+
$robots_content .= "\n";
|
122 |
+
$public = get_option( 'blog_public' );
|
123 |
+
header( 'Content-Type: text/plain; charset=utf-8' );
|
124 |
+
echo apply_filters( 'robots_txt', $robots_content, $public );
|
125 |
+
exit;
|
126 |
+
}
|
127 |
+
}
|
128 |
+
|
129 |
+
if ( is_multisite() ) {
|
130 |
+
$blog_id = get_current_blog_id();
|
131 |
+
$filename = "sitemap_{$blog_id}.xml";
|
132 |
+
} else {
|
133 |
+
$filename = "sitemap.xml";
|
134 |
+
}
|
135 |
+
|
136 |
+
if ( ! file_exists( ABSPATH . $filename ) ) {
|
137 |
+
$sitemaprecreate = true;
|
138 |
+
}
|
139 |
+
|
140 |
+
if ( isset( $sitemaprecreate ) ) {
|
141 |
+
gglstmp_schedule_sitemap( false, false, true );
|
142 |
+
}
|
143 |
}
|
144 |
}
|
145 |
|
159 |
}
|
160 |
}
|
161 |
|
162 |
+
if ( ! function_exists( 'gglstmp_activate' ) ) {
|
163 |
+
function gglstmp_activate() {
|
164 |
+
if ( is_multisite() ) {
|
165 |
+
switch_to_blog( 1 );
|
166 |
+
/* register uninstall function only for the main blog */
|
167 |
+
register_uninstall_hook( __FILE__, 'gglstmp_delete_settings' );
|
168 |
+
restore_current_blog();
|
169 |
+
} else {
|
170 |
+
/* register uninstall function */
|
171 |
+
register_uninstall_hook( __FILE__, 'gglstmp_delete_settings' );
|
172 |
+
}
|
173 |
+
}
|
174 |
+
}
|
175 |
+
|
176 |
/*============================================ Function for register of the plugin settings on init core ====================*/
|
177 |
if ( ! function_exists( 'gglstmp_register_settings' ) ) {
|
178 |
function gglstmp_register_settings() {
|
179 |
global $gglstmp_options, $gglstmp_plugin_info;
|
180 |
|
181 |
+
/**
|
182 |
* Renaming old version options
|
183 |
* @deprecated since 3.0.8
|
184 |
* @todo remove after 28.10.2017
|
185 |
*/
|
186 |
+
if ( function_exists( 'gglstmp_check_old_options' ) )
|
187 |
+
gglstmp_check_old_options();
|
188 |
+
/* end @todo */
|
189 |
|
190 |
if ( ! get_option( 'gglstmp_options' ) ) {
|
191 |
+
$sitemaprecreate = true;
|
192 |
$options_default = gglstmp_get_options_default();
|
193 |
add_option( 'gglstmp_options', $options_default );
|
194 |
}
|
198 |
if ( ! isset( $gglstmp_options['plugin_option_version'] ) || $gglstmp_options['plugin_option_version'] != $gglstmp_plugin_info['Version'] ) {
|
199 |
$options_default = gglstmp_get_options_default();
|
200 |
$gglstmp_options = array_merge( $options_default, $gglstmp_options );
|
201 |
+
/**
|
202 |
+
* Register uninstall hook
|
203 |
+
* @deprecated since 3.1.0
|
204 |
+
* @todo remove after 28.01.2018
|
205 |
+
*/
|
206 |
+
if ( ! isset( $gglstmp_options['plugin_option_version'] ) || version_compare( str_replace( 'pro-', '', $gglstmp_options['plugin_option_version'] ), '3.1.0', '<' ) ) {
|
207 |
+
unset( $gglstmp_options['sitemap'] );
|
208 |
+
gglstmp_activate();
|
209 |
+
/* Remove sitemap line from robots if exists */
|
210 |
+
if ( function_exists( 'gglstmp_clean_robots' ) )
|
211 |
+
gglstmp_clean_robots();
|
212 |
+
}
|
213 |
+
/* end @todo */
|
214 |
$gglstmp_options['plugin_option_version'] = $gglstmp_plugin_info["Version"];
|
215 |
/* show pro features */
|
216 |
$gglstmp_options['hide_premium_options'] = array();
|
217 |
update_option( 'gglstmp_options', $gglstmp_options );
|
218 |
}
|
219 |
+
|
220 |
+
if ( isset( $sitemaprecreate ) ) {
|
221 |
+
gglstmp_schedule_sitemap();
|
222 |
+
}
|
223 |
}
|
224 |
}
|
225 |
|
234 |
'suggest_feature_banner' => 1,
|
235 |
'post_type' => array( 'page', 'post' ),
|
236 |
'taxonomy' => array(),
|
237 |
+
'limit' => 50000,
|
238 |
+
'sitemap_cron_delay' => 600, /* delay in seconds to next cron */
|
239 |
+
'sitemaps' => array()
|
240 |
);
|
241 |
return $options_default;
|
242 |
}
|
243 |
}
|
244 |
|
245 |
+
/**
|
246 |
+
* @since 3.1.0
|
247 |
+
* Schedules sitemap preparing task for specified blog.
|
248 |
+
* @param mixed $blog_id (int)The blog id the sitemap is created for. Default is false - for current blog.
|
249 |
+
* @param bool $no_cron Set if sitemap creation would be executed using cron. Default is false.
|
250 |
+
* @return void
|
251 |
+
*/
|
252 |
+
if ( ! function_exists( 'gglstmp_schedule_sitemap' ) ) {
|
253 |
+
function gglstmp_schedule_sitemap( $blog_id = false, $no_cron = false, $now = false ) {
|
254 |
+
global $gglstmp_options;
|
255 |
|
256 |
+
if ( empty( $blog_id ) ) {
|
257 |
+
$blog_id = get_current_blog_id();
|
258 |
+
}
|
259 |
|
260 |
+
if ( $no_cron || ! isset( $gglstmp_options['link_count'] ) || $gglstmp_options['link_count'] < 10000 ) {
|
261 |
+
gglstmp_prepare_sitemap( $blog_id );
|
262 |
+
} else {
|
263 |
+
if ( $now ) {
|
264 |
+
wp_schedule_single_event( time(), 'gglstmp_sitemap_cron', array( $blog_id ) );
|
265 |
+
} else {
|
266 |
+
wp_schedule_single_event( time() + absint( $gglstmp_options['sitemap_cron_delay'] ), 'gglstmp_sitemap_cron', array( $blog_id ) );
|
267 |
+
}
|
268 |
}
|
269 |
+
}
|
270 |
+
}
|
271 |
|
272 |
+
/**
|
273 |
+
* @since 3.1.0
|
274 |
+
* Function prepares all the items that should be included into blog's sitemap.
|
275 |
+
* After array of items is prepared, it is divided into multiple parts according to the limit value.
|
276 |
+
* A single sitemap file will be created if the limit isn't reached,
|
277 |
+
* otherwise sitemap file for each part of array of items will be created. Blog index file would be created also.
|
278 |
+
* If multisite network is used, network index file will be created also.
|
279 |
+
* @param mixed $blog_id (int)The blog id the sitemap is created for. Default is false - for current blog.
|
280 |
+
* @return void
|
281 |
+
*/
|
282 |
+
if ( ! function_exists( 'gglstmp_prepare_sitemap' ) ) {
|
283 |
+
function gglstmp_prepare_sitemap( $blog_id = false ) {
|
284 |
+
global $wpdb, $gglstmp_options;
|
285 |
|
286 |
+
$old_blog = $wpdb->blogid;
|
|
|
|
|
287 |
|
288 |
+
$create_index = true;
|
289 |
+
$counter = 0;
|
290 |
+
$part_num = 1;
|
291 |
+
$elements = array();
|
292 |
+
$is_multisite = is_multisite();
|
293 |
+
|
294 |
+
if ( $is_multisite && ! empty( $blog_id ) ) {
|
295 |
+
switch_to_blog( absint( $blog_id ) );
|
296 |
+
} else {
|
297 |
+
$blog_id = get_current_blog_id();
|
298 |
+
}
|
299 |
+
|
300 |
+
$gglstmp_options = get_option( 'gglstmp_options' );
|
301 |
+
|
302 |
+
$post_types = get_post_types( array( 'public' => true ), 'names' );
|
303 |
+
/* get all posts */
|
304 |
+
|
305 |
+
foreach ( $post_types as $post_type => $post_type_object ) {
|
306 |
+
if ( ! in_array( $post_type, $gglstmp_options['post_type'] ) ) {
|
307 |
+
unset( $post_types[ $post_type ] );
|
308 |
+
}
|
309 |
}
|
310 |
+
|
311 |
+
$excluded_posts = $wpdb->get_col( "
|
312 |
+
SELECT
|
313 |
+
`ID`
|
314 |
+
FROM $wpdb->posts
|
315 |
+
WHERE
|
316 |
+
`post_status` IN ('hidden', 'private')
|
317 |
+
" );
|
318 |
+
|
319 |
+
if ( ! empty( $excluded_posts ) ) {
|
320 |
while ( true ) {
|
321 |
+
/* exclude bbPress forums and topics */
|
322 |
+
$hidden_child_array = $wpdb->get_col(
|
323 |
+
"SELECT
|
324 |
+
`ID`
|
325 |
+
FROM $wpdb->posts
|
326 |
+
WHERE
|
327 |
+
`post_status` = 'publish'
|
328 |
+
AND `ID` NOT IN (" . implode( ',', $excluded_posts ) . ")
|
329 |
+
AND `post_type` IN ('forum', 'topic', 'reply')
|
330 |
+
AND `post_parent` IN (" . implode( ',', $excluded_posts ) . ");"
|
331 |
+
);
|
332 |
+
|
333 |
if ( ! empty( $hidden_child_array ) ) {
|
334 |
+
$excluded_posts = array_unique( array_merge( $excluded_posts, $hidden_child_array ) );
|
|
|
335 |
} else {
|
336 |
break 1;
|
337 |
}
|
338 |
}
|
339 |
}
|
340 |
|
341 |
+
/* get all taxonomies */
|
342 |
+
$taxonomies = array(
|
343 |
+
'category' => __( 'Post categories','google-sitemap-plugin' ),
|
344 |
+
'post_tag' => __( 'Post tags','google-sitemap-plugin' )
|
345 |
+
);
|
346 |
+
|
347 |
+
foreach ( $taxonomies as $key => $taxonomy_name ) {
|
348 |
+
if ( ! in_array( $key, $gglstmp_options['taxonomy'] ) ) {
|
349 |
+
unset( $taxonomies[ $key ] );
|
350 |
+
}
|
351 |
+
}
|
352 |
+
|
353 |
+
/* add home page */
|
354 |
+
$show_on_front = !! ( 'page' == get_option( 'show_on_front' ) );
|
355 |
+
$frontpage_id = get_option( 'page_on_front' );
|
356 |
+
$frontpage_is_added = false;
|
357 |
+
|
358 |
+
if ( ! empty( $post_types ) ) {
|
359 |
+
$excluded_posts_string = $post_types_string = $excluded_categories_string = '';
|
360 |
+
|
361 |
+
$post_types_string = "AND p.`post_type` IN ('" . implode( "','", (array)$post_types ) . "')";
|
362 |
+
|
363 |
+
if ( ! empty( $excluded_posts ) )
|
364 |
+
$excluded_posts_string = "AND p.`ID` NOT IN (" . implode( ",", $excluded_posts ) . ")";
|
365 |
+
|
366 |
+
$posts = $wpdb->get_results(
|
367 |
+
"SELECT
|
368 |
+
`ID`,
|
369 |
+
`post_author`,
|
370 |
+
`post_status`,
|
371 |
+
`post_name`,
|
372 |
+
`post_parent`,
|
373 |
+
`post_type`,
|
374 |
+
`post_date`,
|
375 |
+
`post_date_gmt`,
|
376 |
+
`post_modified`,
|
377 |
+
`post_modified_gmt`,
|
378 |
+
GROUP_CONCAT(t.`term_id`) as term_id
|
379 |
+
FROM `{$wpdb->posts}` p
|
380 |
+
LEFT JOIN {$wpdb->term_relationships} tr
|
381 |
+
ON p.`ID` = tr.`object_id`
|
382 |
+
LEFT JOIN {$wpdb->term_taxonomy} tt
|
383 |
+
ON tt.`term_taxonomy_id` = tr.`term_taxonomy_id`
|
384 |
+
LEFT JOIN {$wpdb->terms} t
|
385 |
+
ON t.`term_id` = tt.`term_id`
|
386 |
+
WHERE
|
387 |
+
p.`post_status` = 'publish'
|
388 |
+
{$post_types_string}
|
389 |
+
{$excluded_posts_string}
|
390 |
+
GROUP BY `ID`
|
391 |
+
ORDER BY `post_date_gmt` DESC;"
|
392 |
+
);
|
393 |
+
|
394 |
+
if ( ! empty( $posts ) ) {
|
395 |
+
foreach ( $posts as $post ) {
|
396 |
+
$priority = 0.8;
|
397 |
+
if ( $show_on_front && $frontpage_id == $post->ID ) {
|
398 |
+
$priority = 1.0;
|
399 |
+
$frontpage_is_added = true;
|
400 |
+
}
|
401 |
+
$elements[] = array(
|
402 |
+
'url' => get_permalink( $post ),
|
403 |
+
'date' => date( 'Y-m-d\TH:i:sP', strtotime( $post->post_modified ) ),
|
404 |
+
'frequency' => 'monthly',
|
405 |
+
'priority' => $priority
|
406 |
+
);
|
407 |
+
|
408 |
}
|
409 |
}
|
410 |
}
|
|
|
|
|
411 |
|
412 |
+
if ( ! $frontpage_is_added ) {
|
413 |
+
$elements[] = array(
|
414 |
+
'url' => home_url( '/' ),
|
415 |
+
'date' => date( 'Y-m-d\TH:i:sP', time() ),
|
416 |
+
'frequency' => 'monthly',
|
417 |
+
'priority' => 1.0
|
418 |
+
);
|
419 |
+
}
|
420 |
+
|
421 |
+
if ( ! empty( $taxonomies ) ) {
|
422 |
+
foreach ( $taxonomies as $taxonomy => $taxonomy_data ) {
|
423 |
+
$terms = get_terms( $taxonomy, 'hide_empty=1' );
|
424 |
|
425 |
if ( ! empty( $terms ) && ! is_wp_error( $terms ) ) {
|
426 |
foreach ( $terms as $term_value ) {
|
427 |
+
$modified = $wpdb->get_var( "SELECT `post_modified` FROM $wpdb->posts, $wpdb->term_relationships WHERE `post_status` = 'publish' AND `term_taxonomy_id` = " . $term_value->term_taxonomy_id . " AND $wpdb->posts.ID= $wpdb->term_relationships.object_id ORDER BY `post_modified` DESC" );
|
428 |
+
$elements[] = array(
|
429 |
+
'url' => get_term_link( (int)$term_value->term_id, $taxonomy ),
|
430 |
+
'date' => date( 'Y-m-d\TH:i:sP', strtotime( $modified ) ),
|
431 |
+
'frequency' => 'monthly',
|
432 |
+
'priority' => 0.8
|
433 |
+
);
|
|
|
|
|
|
|
|
|
|
|
|
|
434 |
}
|
435 |
}
|
436 |
}
|
437 |
}
|
438 |
|
439 |
+
/* removing existing sitemap and sitemap_index files for current blog */
|
440 |
+
$existing_files = gglstmp_get_sitemap_files();
|
441 |
+
array_map( "unlink", $existing_files );
|
442 |
+
|
443 |
+
$gglstmp_options['sitemaps'] = array();
|
444 |
+
$gglstmp_options['link_count'] = count( $elements );
|
445 |
+
|
446 |
+
if ( count( $elements ) <= $gglstmp_options['limit'] ) {
|
447 |
+
$part_num = 0;
|
448 |
+
gglstmp_create_sitemap( $elements, $part_num );
|
449 |
+
if ( ! $is_multisite )
|
450 |
+
$create_index = false;
|
451 |
+
} else {
|
452 |
+
$parts = array_chunk( $elements, $gglstmp_options['limit'] );
|
453 |
+
foreach ( $parts as $part_num => $part_elements ) {
|
454 |
+
gglstmp_create_sitemap( $part_elements, $part_num + 1 );
|
455 |
+
}
|
456 |
+
}
|
457 |
+
|
458 |
+
if ( $is_multisite || $create_index ) {
|
459 |
+
|
460 |
+
if ( $is_multisite ) {
|
461 |
+
/* removing main index file */
|
462 |
+
$existing_files = gglstmp_get_sitemap_files(0);
|
463 |
+
array_map( "unlink", $existing_files );
|
464 |
+
|
465 |
+
if ( count( $elements ) > $gglstmp_options['limit'] ) {
|
466 |
+
/* creating subsite sitemap only when limit is exhausted or external sitemap is added */
|
467 |
+
gglstmp_create_sitemap_index();
|
468 |
+
}
|
469 |
+
|
470 |
+
/* create main network sitemap index file. Only for subfolder structure, as index sitemap cannot contain sitemaps located on different domain/subdomain */
|
471 |
+
gglstmp_create_sitemap_index( 0 );
|
472 |
+
} elseif( count( $elements ) > $gglstmp_options['limit'] ) {
|
473 |
+
/* external sitemap is added as custom link on a sinle site */
|
474 |
+
gglstmp_create_sitemap_index();
|
475 |
+
}
|
476 |
+
}
|
477 |
+
|
478 |
+
/**
|
479 |
+
* Options update is necessary because 'gglstmp_create_sitemap' and 'gglstmp_create_sitemap_index' functions
|
480 |
+
* have modified $gglstmp_options global variable by calling 'gglstmp_save_sitemap_info' function
|
481 |
+
*/
|
482 |
+
update_option( 'gglstmp_options', $gglstmp_options );
|
483 |
+
if ( $is_multisite )
|
484 |
+
switch_to_blog( $old_blog );
|
485 |
+
}
|
486 |
+
}
|
487 |
+
|
488 |
+
/**
|
489 |
+
* @since 3.1.0
|
490 |
+
* Function creates xml sitemap file with the provided list of elements.
|
491 |
+
* Filename is generated in the following way:
|
492 |
+
* On a single site:
|
493 |
+
* a) $part_num isn't set: "sitemap.xml"
|
494 |
+
* b) $part_num is set and equals 2: "sitemap_2.xml".
|
495 |
+
* On single subsite of multisite network, $blog_id == 1:
|
496 |
+
* a) $part_num isn't set: "sitemap_1.xml"
|
497 |
+
* b) $part_num is set and equals 2: "sitemap_1_2.xml".
|
498 |
+
* @param array $elements An array of elements to include to the sitemap.
|
499 |
+
* @param int $part_num (optional) Indicates the number of the part of elements. It is included to the sitemap filename.
|
500 |
+
* @return void
|
501 |
+
*/
|
502 |
+
if ( ! function_exists( 'gglstmp_create_sitemap' ) ) {
|
503 |
+
function gglstmp_create_sitemap( $elements, $part_num = 0 ) {
|
504 |
+
global $blog_id;
|
505 |
+
|
506 |
+
$xml = new DomDocument( '1.0', 'utf-8' );
|
507 |
+
$home_url = site_url( '/' );
|
508 |
+
$xml_stylesheet_path = ( defined( 'WP_CONTENT_DIR' ) ) ? $home_url . basename( WP_CONTENT_DIR ) : $home_url . 'wp-content';
|
509 |
+
$xml_stylesheet_path .= ( defined( 'WP_PLUGIN_DIR' ) ) ? '/' . basename( WP_PLUGIN_DIR ) . '/google-sitemap-plugin/sitemap.xsl' : '/plugins/google-sitemap-plugin/sitemap.xsl';
|
510 |
+
$xslt = $xml->createProcessingInstruction( 'xml-stylesheet', "type=\"text/xsl\" href=\"$xml_stylesheet_path\"" );
|
511 |
+
$xml->appendChild( $xslt );
|
512 |
+
$urlset = $xml->appendChild( $xml->createElementNS( 'http://www.sitemaps.org/schemas/sitemap/0.9','urlset' ) );
|
513 |
+
|
514 |
+
foreach ( $elements as $element ) {
|
515 |
+
$url = $urlset->appendChild( $xml->createElement( 'url' ) );
|
516 |
+
$loc = $url->appendChild( $xml->createElement( 'loc' ) );
|
517 |
+
$loc->appendChild( $xml->createTextNode( $element['url'] ) );
|
518 |
+
$lastmod = $url->appendChild( $xml->createElement( 'lastmod' ) );
|
519 |
+
$lastmod->appendChild( $xml->createTextNode( $element['date'] ) );
|
520 |
+
$changefreq = $url->appendChild( $xml->createElement( 'changefreq' ) );
|
521 |
+
$changefreq->appendChild( $xml->createTextNode( $element['frequency'] ) );
|
522 |
+
$priority = $url->appendChild( $xml->createElement( 'priority' ) );
|
523 |
+
$priority->appendChild( $xml->createTextNode( $element['priority'] ) );
|
524 |
+
}
|
525 |
+
|
526 |
$xml->formatOutput = true;
|
527 |
|
528 |
if ( ! is_writable( ABSPATH ) )
|
529 |
@chmod( ABSPATH, 0755 );
|
530 |
|
531 |
+
$part_num = ( absint( $part_num ) > 0 ) ? '_' . absint( $part_num ) : '';
|
532 |
+
|
533 |
if ( is_multisite() ) {
|
534 |
+
$filename = 'sitemap_' . absint( $blog_id ) . $part_num . '.xml';
|
535 |
+
} else {
|
536 |
+
$filename = 'sitemap' . $part_num . '.xml';
|
537 |
+
}
|
538 |
+
$xml->save( ABSPATH . $filename );
|
539 |
+
gglstmp_save_sitemap_info( $filename );
|
540 |
+
}
|
541 |
+
}
|
542 |
+
|
543 |
+
/**
|
544 |
+
* @since 3.1.0
|
545 |
+
* Function creates xml sitemap index file.
|
546 |
+
* @param mixed $blog_id (optional) Sets if the index file is created for network (0) or for single subsite (false: current blog id).
|
547 |
+
* @return void
|
548 |
+
*/
|
549 |
+
if ( ! function_exists( 'gglstmp_create_sitemap_index' ) ) {
|
550 |
+
function gglstmp_create_sitemap_index( $blog_id = false ) {
|
551 |
+
global $wpdb;
|
552 |
+
|
553 |
+
/* index sitemap for network supports only subfolder multisite installation */
|
554 |
+
if ( 0 === $blog_id && is_multisite() && is_subdomain_install() ) {
|
555 |
+
return;
|
556 |
+
}
|
557 |
+
|
558 |
+
$blog_id = ( false === $blog_id ) ? get_current_blog_id() : absint( $blog_id );
|
559 |
+
|
560 |
+
if ( ! is_multisite() || 0 === $blog_id ) {
|
561 |
+
$index_filename = "sitemap.xml";
|
562 |
} else {
|
563 |
+
$index_filename = "sitemap_{$blog_id}.xml";
|
564 |
+
}
|
565 |
+
|
566 |
+
$elements = gglstmp_get_index_elements( $blog_id );
|
567 |
+
|
568 |
+
$index_file = ABSPATH . $index_filename;
|
569 |
+
|
570 |
+
if ( file_exists( $index_file ) ) {
|
571 |
+
unlink( $index_file );
|
572 |
+
}
|
573 |
+
|
574 |
+
$xmlindex = new DomDocument( '1.0', 'utf-8' );
|
575 |
+
$site_url = ( 0 === $blog_id ) ? network_site_url( '/' ) : site_url( '/' );
|
576 |
+
|
577 |
+
$xml_stylesheet_path = ( defined( 'WP_CONTENT_DIR' ) ) ? $site_url . basename( WP_CONTENT_DIR ) : $site_url . 'wp-content';
|
578 |
+
$xml_stylesheet_path .= ( defined( 'WP_PLUGIN_DIR' ) ) ? '/' . basename( WP_PLUGIN_DIR ) . '/google-sitemap-plugin/sitemap-index.xsl' : '/plugins/google-sitemap-plugin/sitemap-index.xsl';
|
579 |
+
|
580 |
+
$xmlindex->appendChild( $xmlindex->createProcessingInstruction( 'xml-stylesheet', "type=\"text/xsl\" href=\"$xml_stylesheet_path\"" ) );
|
581 |
+
$sitemapindex = $xmlindex->appendChild( $xmlindex->createElementNS( 'http://www.sitemaps.org/schemas/sitemap/0.9','sitemapindex' ) );
|
582 |
+
foreach ( $elements as $element ) {
|
583 |
+
$sitemap = $sitemapindex->appendChild( $xmlindex->createElement( 'sitemap' ) );
|
584 |
+
$loc = $sitemap->appendChild( $xmlindex->createElement( 'loc' ) );
|
585 |
+
$loc->appendChild( $xmlindex->createTextNode( $element['loc'] ) );
|
586 |
+
$lastmod = $sitemap->appendChild( $xmlindex->createElement( 'lastmod' ) );
|
587 |
+
$lastmod->appendChild( $xmlindex->createTextNode( $element['lastmod'] ) );
|
588 |
+
}
|
589 |
+
|
590 |
+
if ( count( $elements ) > 0 ) {
|
591 |
+
if ( ! is_writable( ABSPATH ) )
|
592 |
+
@chmod( ABSPATH, 0755 );
|
593 |
+
$xmlindex->formatOutput = true;
|
594 |
+
$xmlindex->save( $index_file );
|
595 |
+
if ( 0 !== $blog_id )
|
596 |
+
gglstmp_save_sitemap_info( $index_filename, true );
|
597 |
+
} elseif ( file_exists( $index_file ) ) {
|
598 |
+
unlink( $index_file );
|
599 |
+
}
|
600 |
+
}
|
601 |
+
}
|
602 |
+
|
603 |
+
/**
|
604 |
+
* @since 3.1.0
|
605 |
+
* Function gets the elements from the blogs options and returns an array of elements to include to the index sitemap file.
|
606 |
+
* @param mixed $blog_id (optional) Sets the range of elements to return. false - current subsite, 0 - network index, (int) - id of the subsite
|
607 |
+
* @return array $include_index (optional) Sets if index element should be also included.
|
608 |
+
*/
|
609 |
+
if ( ! function_exists( 'gglstmp_get_index_elements' ) ) {
|
610 |
+
function gglstmp_get_index_elements( $blog_id = false, $include_index = false ) {
|
611 |
+
global $wpdb;
|
612 |
+
$index_elements = $external_index_elements = array();
|
613 |
+
$is_multisite = is_multisite();
|
614 |
+
if ( $is_multisite && 0 === $blog_id ) {
|
615 |
+
/* building main network index */
|
616 |
+
$old_blog = $wpdb->blogid;
|
617 |
+
$blogids = $wpdb->get_col( "SELECT `blog_id` FROM $wpdb->blogs" );
|
618 |
+
foreach ( $blogids as $id ) {
|
619 |
+
switch_to_blog( $id );
|
620 |
+
$blog_options = get_option( 'gglstmp_options' );
|
621 |
+
if ( ! empty( $blog_options['sitemaps'] ) && is_array( $blog_options['sitemaps'] ) ) {
|
622 |
+
foreach ( $blog_options['sitemaps'] as $sitemap ) {
|
623 |
+
if (
|
624 |
+
( empty( $sitemap['is_index'] ) || $include_index ) &&
|
625 |
+
isset( $sitemap['path'] ) && file_exists( $sitemap['path'] ) &&
|
626 |
+
isset( $sitemap['loc'] )
|
627 |
+
) {
|
628 |
+
$index_elements[ $sitemap['loc'] ] = $sitemap;
|
629 |
+
}
|
630 |
+
}
|
631 |
+
}
|
632 |
+
}
|
633 |
+
switch_to_blog( $old_blog );
|
634 |
+
} else {
|
635 |
+
$blog_options = ( ! $is_multisite || empty( $blog_id ) ) ? get_option( 'gglstmp_options' ) : get_blog_option( absint( $blog_id ), 'gglstmp_options' );
|
636 |
+
if ( ! empty( $blog_options['sitemaps'] ) && is_array( $blog_options['sitemaps'] ) ) {
|
637 |
+
foreach ( $blog_options['sitemaps'] as $sitemap ) {
|
638 |
+
if (
|
639 |
+
( empty( $sitemap['is_index'] ) || $include_index ) &&
|
640 |
+
isset( $sitemap['path'] ) && file_exists( $sitemap['path'] ) &&
|
641 |
+
isset( $sitemap['loc'] )
|
642 |
+
) {
|
643 |
+
$index_elements[ $sitemap['loc'] ] = $sitemap;
|
644 |
+
}
|
645 |
+
}
|
646 |
+
}
|
647 |
}
|
648 |
+
return $index_elements;
|
649 |
+
}
|
650 |
+
}
|
651 |
+
|
652 |
+
/**
|
653 |
+
* @since 3.1.0
|
654 |
+
* Function returns all the corresponding existing sitemap files.
|
655 |
+
* @param mixed $blog_id (optional, default: false) "all" || false || (int)blog_id. Specifies the range of xml files to return.
|
656 |
+
* "all" - all availabe sitemap .xml files.
|
657 |
+
* false - sitemaps of current blog.
|
658 |
+
* blog_id - sitemaps of specified blog, 0 - network index file.
|
659 |
+
* @return array $files An array of filenames of existing files of the specified type.
|
660 |
+
*/
|
661 |
+
if ( ! function_exists( 'gglstmp_get_sitemap_files' ) ) {
|
662 |
+
function gglstmp_get_sitemap_files( $blog_id = false ) {
|
663 |
+
$files = array();
|
664 |
|
665 |
if ( is_multisite() ) {
|
666 |
+
if ( 'all' != $blog_id )
|
667 |
+
$blog_id = ( false === $blog_id ) ? get_current_blog_id() : absint( $blog_id );
|
668 |
+
|
669 |
+
if ( 'all' === $blog_id ) {
|
670 |
+
/* all existing sitemap files */
|
671 |
+
$mask = "sitemap*.xml";
|
672 |
+
} elseif ( 0 === $blog_id ) {
|
673 |
+
/* main network index */
|
674 |
+
$mask = "sitemap.xml";
|
675 |
+
} else {
|
676 |
+
/* all subsite sitemap files */
|
677 |
+
$mask = "sitemap_{$blog_id}*.xml";
|
678 |
+
}
|
679 |
} else {
|
680 |
+
$mask = "sitemap*.xml";
|
681 |
}
|
682 |
|
683 |
+
if ( isset( $mask ) )
|
684 |
+
$files = glob( ABSPATH . $mask );
|
685 |
+
|
686 |
+
return $files;
|
687 |
+
}
|
688 |
+
}
|
689 |
+
|
690 |
+
/**
|
691 |
+
* Function checks the availability of the sitemap file by the provided URL.
|
692 |
+
* @param string $url The url of the xml sitemap file to check.
|
693 |
+
* @return array $result An array with the code and message of the external url check. 200 == $result['code'] if success.
|
694 |
+
*/
|
695 |
+
if ( ! function_exists( 'gglstmp_check_sitemap' ) ) {
|
696 |
+
function gglstmp_check_sitemap( $url ) {
|
697 |
+
$result = wp_remote_get( esc_url_raw( $url ) );
|
698 |
+
if ( is_array( $result ) && ! is_wp_error( $result ) )
|
699 |
+
return $result['response'];
|
700 |
+
else
|
701 |
+
return $result;
|
702 |
+
}
|
703 |
+
}
|
704 |
+
|
705 |
+
/**
|
706 |
+
* @since 3.1.0
|
707 |
+
* Function checks the availability of the sitemap file by the provided URL.
|
708 |
+
* @param string $filename The filename to save to the options.
|
709 |
+
* @param string $is_index Indicates if the file is an index sitemap.
|
710 |
+
* false if is regular sitemap
|
711 |
+
* 'index' if is sitemap index
|
712 |
+
* @return void
|
713 |
+
*/
|
714 |
+
if ( ! function_exists( 'gglstmp_save_sitemap_info' ) ) {
|
715 |
+
function gglstmp_save_sitemap_info( $filename = 'sitemap.xml', $is_index = false ) {
|
716 |
+
global $gglstmp_options;
|
717 |
+
$xml_url = home_url('/') . $filename;
|
718 |
+
$xml_path = ABSPATH . $filename;
|
719 |
+
$is_index = !! $is_index ? 1 : 0 ;
|
720 |
+
|
721 |
+
$sitemap_data = array(
|
722 |
+
'is_index' => $is_index,
|
723 |
+
'file' => $filename,
|
724 |
+
'path' => $xml_path,
|
725 |
+
'loc' => $xml_url,
|
726 |
+
'lastmod' => date( 'Y-m-d\TH:i:sP', filemtime( $xml_path ) )
|
727 |
+
);
|
728 |
+
|
729 |
if ( file_exists( $xml_path ) ) {
|
730 |
+
/* save data to blog options */
|
731 |
+
$gglstmp_options['sitemaps'][ $filename ] = $sitemap_data;
|
|
|
|
|
|
|
|
|
732 |
update_option( 'gglstmp_options', $gglstmp_options );
|
733 |
}
|
734 |
}
|
735 |
}
|
736 |
|
737 |
+
if ( ! function_exists( 'gglstmp_get_sitemap_info' ) ) {
|
738 |
+
function gglstmp_get_sitemap_info( $blog_id = false ) {
|
739 |
+
if ( is_multisite() && ! empty( $blog_id ) ) {
|
740 |
+
$options = get_blog_option( absint( $blog_id ), 'gglstmp_options' );
|
741 |
+
} else {
|
742 |
+
$options = get_option( 'gglstmp_options' );
|
743 |
+
}
|
744 |
+
|
745 |
+
return ( ! empty( $options['sitemaps'] ) ) ? $options['sitemaps'] : array();
|
746 |
}
|
747 |
}
|
748 |
|
749 |
if ( ! function_exists ( 'gglstmp_client' ) ) {
|
750 |
function gglstmp_client() {
|
751 |
global $gglstmp_plugin_info;
|
752 |
+
|
753 |
+
if ( ! function_exists( 'google_api_php_client_autoload' ) || class_exists( 'Google_Client' ) )
|
754 |
+
require_once( dirname( __FILE__ ) . '/google_api/autoload.php' );
|
755 |
+
|
756 |
$client = new Google_Client();
|
757 |
$client->setClientId( '37374817621-7ujpfn4ai4q98q4nb0gaaq5ga7j7u0ka.apps.googleusercontent.com' );
|
758 |
$client->setClientSecret( 'GMefWPZdRIWk3J7USu6_Kf6_' );
|
796 |
}
|
797 |
}
|
798 |
|
799 |
+
/* Display setting page */
|
800 |
if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
|
801 |
function gglstmp_settings_page() {
|
802 |
+
global $gglstmp_plugin_info, $gglstmp_list_table;
|
803 |
require_once( dirname( __FILE__ ) . '/includes/pro_banners.php' ); ?>
|
804 |
+
<div class="wrap">
|
805 |
<?php if ( 'google-sitemap-plugin.php' == $_GET['page'] ) { /* Showing settings tab */
|
806 |
require_once( dirname( __FILE__ ) . '/includes/class-gglstmp-settings.php' );
|
807 |
$page = new Gglstmp_Settings_Tabs( plugin_basename( __FILE__ ) ); ?>
|
808 |
<h1>Google Sitemap <?php _e( 'Settings', 'google-sitemap-plugin' ); ?></h1>
|
809 |
+
<noscript><div class="error below-h2"><p><strong><?php _e( "Please enable JavaScript in your browser.", 'google-sitemap-plugin' ); ?></strong></p></div></noscript>
|
810 |
<?php $page->display_content();
|
811 |
} else { ?>
|
812 |
+
<h1>
|
813 |
+
<?php _e( 'Custom Links', 'google-sitemap-plugin' ); ?>
|
814 |
+
<button disabled="disabled" class="page-title-action add-new-h2" ><?php _e( 'Add New', 'google-sitemap-plugin' ); ?></button>
|
815 |
+
</h1>
|
816 |
<?php gglstmp_pro_block( "gglstmp_custom_links_block", false );
|
817 |
bws_plugin_reviews_block( $gglstmp_plugin_info['Name'], 'google-sitemap-plugin' );
|
818 |
} ?>
|
822 |
|
823 |
if ( ! function_exists( 'gglstmp_robots_add_sitemap' ) ) {
|
824 |
function gglstmp_robots_add_sitemap( $output, $public ) {
|
825 |
+
if ( '0' != $public ) {
|
826 |
+
$home_url = get_option( 'home' );
|
827 |
+
$filename = ( is_multisite() ) ? "sitemap_" . get_current_blog_id() . ".xml" : "sitemap.xml";
|
828 |
+
$line = "Sitemap: " . $home_url . "/" . $filename;
|
829 |
+
if ( file_exists( ABSPATH . $filename ) && false === strpos( $output, $line ) ) {
|
830 |
+
$output .= "\n" . $line . "\n";
|
|
|
|
|
|
|
|
|
|
|
831 |
}
|
832 |
}
|
833 |
+
return $output;
|
834 |
}
|
835 |
}
|
836 |
|
837 |
+
/* Function for adding style */
|
838 |
if ( ! function_exists( 'gglstmp_add_plugin_stylesheet' ) ) {
|
839 |
function gglstmp_add_plugin_stylesheet() {
|
840 |
wp_enqueue_style( 'gglstmp_stylesheet', plugins_url( 'css/style.css', __FILE__ ) );
|
841 |
+
if ( isset( $_GET['page'] ) && "google-sitemap-plugin.php" == $_GET['page'] ) {
|
842 |
bws_enqueue_settings_scripts();
|
843 |
}
|
844 |
}
|
845 |
}
|
846 |
|
847 |
+
/* Function to get info about site from Google Webmaster Tools */
|
848 |
+
if ( ! function_exists( 'gglstmp_get_site_info' ) ) {
|
849 |
+
function gglstmp_get_site_info( $webmasters, $site_verification ) {
|
850 |
global $gglstmp_options;
|
851 |
|
852 |
$instruction_url = 'https://docs.google.com/document/d/1VOJx_OaasVskCqi9fsAbUmxfsckoagPU5Py97yjha9w/';
|
889 |
$url_sitemap = $gglstmp_options['sitemap']['loc'];
|
890 |
if ( ! array_key_exists( $url_sitemap, $wmt_sitemaps_arr ) ) {
|
891 |
$return .= '<td>' . __( 'Not added', 'google-sitemap-plugin' ) . '</td></tr>';
|
892 |
+
} else {
|
893 |
if ( ! $wmt_sitemaps_arr[ $url_sitemap ] ) {
|
894 |
$return .= '<td class="gglstmp_success">' . __( 'Added', 'google-sitemap-plugin' ) . '</td></tr>';
|
895 |
} else {
|
924 |
}
|
925 |
}
|
926 |
|
927 |
+
/* Deleting site from Google Webmaster Tools */
|
928 |
+
if ( ! function_exists( 'gglstmp_delete_site' ) ) {
|
929 |
+
function gglstmp_delete_site( $webmasters, $site_verification ) {
|
930 |
global $gglstmp_options;
|
931 |
+
|
932 |
$home_url = home_url('/');
|
933 |
$return = '<table id="gglstmp_manage_table"><tr><th>' . __( 'Website', 'google-sitemap-plugin' ) . '</th>
|
934 |
<td><a href="' . $home_url . '" target="_blank">' . $home_url . '</a></td></tr>';
|
972 |
}
|
973 |
}
|
974 |
|
975 |
+
/* Adding and verifing site, adding sitemap file to Google Webmaster Tools */
|
976 |
if ( ! function_exists( 'gglstmp_add_site' ) ) {
|
977 |
function gglstmp_add_site( $webmasters, $site_verification ) {
|
978 |
global $gglstmp_options;
|
1034 |
$sv_error = $e->getMessage();
|
1035 |
}
|
1036 |
|
1037 |
+
if ( ! empty( $sv_error ) ) {
|
1038 |
if ( $sv_error !== true ) {
|
1039 |
$return .= '<tr><th>' . __( 'Verification Code', 'google-sitemap-plugin' ) . '</th>
|
1040 |
<td><strong>' . __( 'Error', 'google-sitemap-plugin' ) . ':</strong> ' . $sv_error . '</td></tr>';
|
1075 |
|
1076 |
$return .= '<tr><th>' . __( 'Sitemap Status', 'google-sitemap-plugin' ) . '</th>';
|
1077 |
|
1078 |
+
$is_multisite = is_multisite();
|
1079 |
+
|
1080 |
+
if ( $is_multisite ) {
|
1081 |
+
$blog_id = get_current_blog_id();
|
1082 |
+
$sitemap_filename = "sitemap_{$blog_id}.xml";
|
1083 |
+
} else {
|
1084 |
+
$sitemap_filename = 'sitemap.xml';
|
1085 |
+
}
|
1086 |
+
|
1087 |
+
if (
|
1088 |
+
! empty( $gglstmp_options['sitemaps'][ $sitemap_filename ]['loc'] ) &&
|
1089 |
+
! empty( $gglstmp_options['sitemaps'][ $sitemap_filename ]['path'] ) &&
|
1090 |
+
file_exists( $gglstmp_options['sitemaps'][ $sitemap_filename ]['path'] )
|
1091 |
+
) {
|
1092 |
+
$sitemap_url = $gglstmp_options['sitemaps'][ $sitemap_filename ]['loc'];
|
1093 |
+
$check_result = gglstmp_check_sitemap( $sitemap_url );
|
1094 |
+
if ( ! is_wp_error( $check_result ) && $check_result['code'] == 200 ) {
|
1095 |
try {
|
1096 |
+
$webmasters->sitemaps->submit( $home_url, $sitemap_url );
|
1097 |
$return .= '<td class="gglstmp_success">' . __( 'Added', 'google-sitemap-plugin' ) . '</td></tr>';
|
1098 |
} catch ( Google_Service_Exception $e ) {
|
1099 |
$error = $e->getErrors();
|
1112 |
$return .= '<td>' . __( "Please add the sitemap file manually.", 'google-sitemap-plugin' ) . ' <a target="_blank" href="' . $instruction_url . '">' . __( 'Learn More', 'google-sitemap-plugin' ) . '</a></td></tr>';
|
1113 |
}
|
1114 |
} else {
|
1115 |
+
$return .= sprintf(
|
1116 |
+
'<td><strong>%s:</strong> %s</td></tr>',
|
1117 |
+
__( 'Error 404', 'google-sitemap-plugin' ),
|
1118 |
+
sprintf(
|
1119 |
+
__( 'The sitemap file %s not found.', 'google-sitemap-plugin' ),
|
1120 |
+
sprintf(
|
1121 |
+
'(<a href="%s">%s</a>)',
|
1122 |
+
$gglstmp_options['sitemaps'][ $sitemap_filename ]['loc'],
|
1123 |
+
$sitemap_filename
|
1124 |
+
)
|
1125 |
+
)
|
1126 |
+
);
|
1127 |
}
|
1128 |
} else {
|
1129 |
$return .= '<td><strong>' . __( 'Error', 'google-sitemap-plugin' ) . ':</strong> ' . __( 'The sitemap file not found.', 'google-sitemap-plugin' ) . '</td></tr>';
|
1137 |
}
|
1138 |
}
|
1139 |
|
1140 |
+
/* Add verification code to the site head */
|
1141 |
if ( ! function_exists( 'gglstmp_add_verification_code' ) ) {
|
1142 |
function gglstmp_add_verification_code() {
|
1143 |
global $gglstmp_options;
|
1148 |
}
|
1149 |
}
|
1150 |
|
1151 |
+
/* Check post status before Updating */
|
1152 |
if ( ! function_exists( 'gglstmp_check_post_status' ) ) {
|
1153 |
function gglstmp_check_post_status( $new_status, $old_status, $post ) {
|
1154 |
if ( ! wp_is_post_revision( $post->ID ) ) {
|
1155 |
global $gglstmp_update_sitemap;
|
1156 |
+
if ( in_array( $new_status, array( 'publish', 'trash', 'future' ) ) ) {
|
1157 |
+
$gglstmp_update_sitemap = true;
|
1158 |
+
} elseif (
|
1159 |
+
in_array( $old_status, array( 'publish', 'future' ) ) &&
|
1160 |
+
in_array( $new_status, array( 'auto-draft', 'draft', 'private', 'pending' ) )
|
1161 |
+
) {
|
1162 |
$gglstmp_update_sitemap = true;
|
1163 |
}
|
1164 |
}
|
1165 |
}
|
1166 |
}
|
1167 |
|
1168 |
+
/* Updating the sitemap after a post or page is trashed or published */
|
1169 |
if ( ! function_exists( 'gglstmp_update_sitemap' ) ) {
|
1170 |
function gglstmp_update_sitemap( $post_id ) {
|
1171 |
if ( ! wp_is_post_revision( $post_id ) ) {
|
1172 |
global $gglstmp_update_sitemap;
|
1173 |
if ( true === $gglstmp_update_sitemap ) {
|
1174 |
gglstmp_register_settings();
|
1175 |
+
gglstmp_schedule_sitemap();
|
1176 |
}
|
1177 |
}
|
1178 |
}
|
1179 |
}
|
1180 |
|
1181 |
+
/* Adding setting link in activate plugin page */
|
1182 |
if ( ! function_exists( 'gglstmp_action_links' ) ) {
|
1183 |
function gglstmp_action_links( $links, $file ) {
|
1184 |
/* Static so we don't call plugin_basename on every plugin row. */
|
1261 |
return;
|
1262 |
}
|
1263 |
|
1264 |
+
gglstmp_schedule_sitemap( $blog_id );
|
|
|
|
|
|
|
1265 |
}
|
1266 |
}
|
1267 |
|
1268 |
/**
|
1269 |
+
* Fires when the blog has been deleted or blog status has been changed to 'spam', 'deactivated(deleted)' or 'archived'.
|
1270 |
* @since 1.2.9
|
1271 |
* @param int $blog_id Blog ID
|
1272 |
* @return void
|
1274 |
if ( ! function_exists( 'gglstmp_delete_sitemap' ) ) {
|
1275 |
function gglstmp_delete_sitemap( $blog_id ) {
|
1276 |
|
1277 |
+
/* remove blog sitemap files */
|
1278 |
+
$mask = "sitemap_{$blog_id}*.xml";
|
1279 |
+
array_map( "unlink", glob( ABSPATH . $mask ) );
|
1280 |
|
1281 |
+
/* update network index file */
|
1282 |
+
gglstmp_create_sitemap_index( 0 );
|
1283 |
}
|
1284 |
}
|
1285 |
|
1286 |
+
/* Function for delete of the plugin settings on register_activation_hook */
|
1287 |
if ( ! function_exists( 'gglstmp_delete_settings' ) ) {
|
1288 |
function gglstmp_delete_settings() {
|
1289 |
global $wpdb;
|
1298 |
foreach ( $blogids as $blog_id ) {
|
1299 |
delete_blog_option( $blog_id, 'gglstmp_options' );
|
1300 |
delete_blog_option( $blog_id, 'gglstmp_robots' );
|
|
|
|
|
|
|
|
|
1301 |
}
|
1302 |
} else {
|
1303 |
delete_option( 'gglstmp_options' );
|
1304 |
delete_option( 'gglstmp_robots' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1305 |
}
|
1306 |
+
/* remove all sitemaps */
|
1307 |
+
$sitemaps = gglstmp_get_sitemap_files( 'all' );
|
1308 |
+
array_map( "unlink", $sitemaps );
|
1309 |
}
|
1310 |
|
1311 |
require_once( dirname( __FILE__ ) . '/bws_menu/bws_include.php' );
|
1314 |
}
|
1315 |
}
|
1316 |
|
1317 |
+
register_activation_hook( __FILE__, 'gglstmp_activate' );
|
1318 |
+
|
1319 |
add_action( 'admin_menu', 'gglstmp_admin_menu' );
|
1320 |
|
1321 |
add_action( 'init', 'gglstmp_init' );
|
1330 |
add_action( 'save_post', 'gglstmp_update_sitemap' );
|
1331 |
add_action( 'trashed_post', 'gglstmp_update_sitemap' );
|
1332 |
|
1333 |
+
add_action( 'gglstmp_sitemap_cron','gglstmp_prepare_sitemap' );
|
1334 |
+
|
1335 |
+
/* rebuild sitemap on permalink structure change, on taxonomy term add/edit/delete */
|
1336 |
+
add_action( 'permalink_structure_changed','gglstmp_schedule_sitemap', 10, 0 );
|
1337 |
+
add_action( 'created_term','gglstmp_schedule_sitemap', 10, 0 );
|
1338 |
+
add_action( 'edited_term','gglstmp_schedule_sitemap', 10, 0 );
|
1339 |
+
add_action( 'delete_term','gglstmp_schedule_sitemap', 10, 0 );
|
1340 |
|
1341 |
add_action( 'wp_head', 'gglstmp_add_verification_code' );
|
1342 |
|
1355 |
add_action( 'deactivate_blog', 'gglstmp_delete_sitemap' );
|
1356 |
add_action( 'make_delete_blog', 'gglstmp_delete_sitemap' );
|
1357 |
add_action( 'archive_blog', 'gglstmp_delete_sitemap' );
|
1358 |
+
add_action( 'make_spam_blog', 'gglstmp_delete_sitemap' );
|
|
|
|
includes/class-gglstmp-settings.php
CHANGED
@@ -44,8 +44,7 @@ if ( ! class_exists( 'Gglstmp_Settings_Tabs' ) ) {
|
|
44 |
'link_pn' => '83'
|
45 |
) );
|
46 |
|
47 |
-
|
48 |
-
$this->robots = get_option( 'gglstmp_robots' );
|
49 |
|
50 |
/* Check htaccess plugin */
|
51 |
if ( $this->is_multisite && ! is_subdomain_install() ) {
|
@@ -89,7 +88,7 @@ if ( ! class_exists( 'Gglstmp_Settings_Tabs' ) ) {
|
|
89 |
* @return array The action results
|
90 |
*/
|
91 |
public function save_options() {
|
92 |
-
global $wpdb
|
93 |
|
94 |
if ( isset( $_POST['gglstmp_logout'] ) ) {
|
95 |
unset( $_SESSION[ 'gglstmp_authorization_code' . $this->blog_prefix ], $this->options['authorization_code'] );
|
@@ -105,11 +104,11 @@ if ( ! class_exists( 'Gglstmp_Settings_Tabs' ) ) {
|
|
105 |
$webmasters = new Google_Service_Webmasters( $this->client );
|
106 |
$site_verification = new Google_Service_SiteVerification( $this->client );
|
107 |
if ( isset( $_POST['gglstmp_menu_info'] ) ) {
|
108 |
-
$this->manage_info .=
|
109 |
} elseif ( isset( $_POST['gglstmp_menu_add'] ) ) {
|
110 |
$this->manage_info .= gglstmp_add_site( $webmasters, $site_verification );
|
111 |
} else {
|
112 |
-
$this->manage_info .=
|
113 |
}
|
114 |
}
|
115 |
} else {
|
@@ -124,46 +123,26 @@ if ( ! class_exists( 'Gglstmp_Settings_Tabs' ) ) {
|
|
124 |
}
|
125 |
|
126 |
$post_types = isset( $_REQUEST['gglstmp_post_types'] ) ? $_REQUEST['gglstmp_post_types'] : array();
|
127 |
-
$
|
128 |
-
if ( $this->options['post_type'] != $post_types || $this->options['taxonomy'] != $
|
129 |
$sitemapcreate = true;
|
130 |
|
131 |
$this->options['post_type'] = $post_types;
|
132 |
-
$this->options['taxonomy'] = $
|
133 |
|
134 |
-
|
|
|
|
|
135 |
|
136 |
-
|
137 |
-
gglstmp_sitemapcreate();
|
138 |
}
|
139 |
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
$url_robot = ABSPATH . 'robots.txt';
|
144 |
-
if ( file_exists( $url_robot ) ) {
|
145 |
-
if ( ! is_writable( $url_robot ) )
|
146 |
-
@chmod( $url_robot, 0755 );
|
147 |
-
if ( is_writable( $url_robot ) ) {
|
148 |
-
$file_content = file_get_contents( $url_robot );
|
149 |
-
if ( isset( $_POST['gglstmp_checkbox'] ) && ! preg_match( '|Sitemap: ' . $gglstmp_url_home . 'sitemap.xml|', $file_content ) ) {
|
150 |
-
file_put_contents( $url_robot, $file_content . "\nSitemap: " . $gglstmp_url_home . "sitemap.xml" );
|
151 |
-
} elseif ( preg_match( "|Sitemap: " . $gglstmp_url_home . "sitemap.xml|", $file_content ) && ! isset( $_POST['gglstmp_checkbox'] ) ) {
|
152 |
-
$file_content = preg_replace( "|\nSitemap: " . $gglstmp_url_home . "sitemap.xml|", '', $file_content );
|
153 |
-
file_put_contents( $url_robot, $file_content );
|
154 |
-
}
|
155 |
-
} else {
|
156 |
-
$error = __( 'Cannot edit "robots.txt". Check your permissions', 'google-sitemap-plugin' );
|
157 |
-
$robots_flag = 0;
|
158 |
-
}
|
159 |
-
}
|
160 |
|
161 |
-
|
162 |
-
|
163 |
-
else
|
164 |
-
update_option( 'gglstmp_robots', $robots_flag );
|
165 |
-
$this->robots = get_option( 'gglstmp_robots' );
|
166 |
-
}
|
167 |
|
168 |
$message = __( 'Settings saved.', 'google-sitemap-plugin' );
|
169 |
}
|
@@ -177,26 +156,37 @@ if ( ! class_exists( 'Gglstmp_Settings_Tabs' ) ) {
|
|
177 |
public function tab_settings() { ?>
|
178 |
<h3 class="bws_tab_label"><?php _e( 'Google Sitemap Settings', 'google-sitemap-plugin' ); ?></h3>
|
179 |
<?php $this->help_phrase(); ?>
|
180 |
-
<hr>
|
181 |
<table class="form-table gglstmp_settings_form">
|
182 |
-
<?php if ( ! $this->is_multisite ) {
|
183 |
-
$disabled = '';
|
184 |
-
$checked = 1 == $this->robots ? ' checked="checked"' : '';
|
185 |
-
/* for robots.txt we need to use site_url instead home_url ! */
|
186 |
-
$link = '<a href="' . site_url( '/' ) . 'robots.txt" target="_blank">robots.txt</a>';
|
187 |
-
$notice = '';
|
188 |
-
} else {
|
189 |
-
$disabled = ' disabled="disabled"';
|
190 |
-
$checked = '';
|
191 |
-
$link = 'robots.txt';
|
192 |
-
$notice = '<p style="color:red">' . sprintf( __( 'Since you are using multisiting, the plugin does not allow to add a sitemap to %s.', 'google-sitemap-plugin' ), '"robots.txt"' ) . '</p>';
|
193 |
-
} ?>
|
194 |
<tr>
|
195 |
<th>Robots.txt</th>
|
196 |
<td>
|
197 |
-
<input type='checkbox'
|
198 |
-
<span class="bws_info"
|
199 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
200 |
</td>
|
201 |
</tr>
|
202 |
<?php if ( $this->is_multisite && ! is_subdomain_install() ) {
|
@@ -210,9 +200,6 @@ if ( ! class_exists( 'Gglstmp_Settings_Tabs' ) ) {
|
|
210 |
$attr_disabled = 'disabled="disabled"';
|
211 |
$htaccess_plugin_notice = '<a href="https://bestwebsoft.com/products/wordpress/plugins/htaccess/?k=bc745b0c9d4b19ba95ae2c861418e0df&pn=106&v=' . $this->plugins_info["Version"] . '&wp_v=' . $wp_version . '">' . __( 'Install Now', 'google-sitemap-plugin' ) . '</a>';
|
212 |
}
|
213 |
-
if ( '' != $this->change_permission_attr ) {
|
214 |
-
$attr_disabled = 'disabled="disabled"';
|
215 |
-
}
|
216 |
if ( '1' == $this->htaccess_options['allow_xml'] && $attr_disabled == '' ) {
|
217 |
$attr_checked = 'checked="checked"';
|
218 |
} ?>
|
@@ -238,22 +225,33 @@ if ( ! class_exists( 'Gglstmp_Settings_Tabs' ) ) {
|
|
238 |
</div>
|
239 |
<?php } ?>
|
240 |
<table class="form-table gglstmp_settings_form">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
241 |
<tr>
|
242 |
<th><?php _e( 'Google Webmaster Tools', 'google-sitemap-plugin' ); ?></th>
|
243 |
<td>
|
244 |
-
<?php if ( ! $this->client ) { ?>
|
245 |
<?php _e( "This hosting does not support сURL, so you cannot add a sitemap file automatically.", 'google-sitemap-plugin' ); ?>
|
246 |
<?php } else { ?>
|
247 |
<?php if ( ! isset( $_POST['gglstmp_logout'] ) && $this->client->getAccessToken() ) { ?>
|
248 |
-
<input
|
249 |
</td>
|
250 |
</tr>
|
251 |
<tr>
|
252 |
<th><?php _e( 'Manage Website with Google Webmaster Tools', 'google-sitemap-plugin' ); ?></th>
|
253 |
<td>
|
254 |
-
<input
|
255 |
-
<input
|
256 |
-
<input
|
257 |
<div class="bws_info">
|
258 |
<?php _e( "Add, delete or get info about this website using your Google Webmaster Tools account.", 'google-sitemap-plugin' ); ?>
|
259 |
</div>
|
@@ -263,12 +261,12 @@ if ( ! class_exists( 'Gglstmp_Settings_Tabs' ) ) {
|
|
263 |
$this->client->setState( $gglstmp_state );
|
264 |
$_SESSION[ 'gglstmp_state' . $this->blog_prefix ] = $this->client;
|
265 |
$gglstmp_auth_url = $this->client->createAuthUrl(); ?>
|
266 |
-
<a
|
267 |
<div id="gglstmp_authorization_form">
|
268 |
-
<input
|
269 |
-
<input
|
270 |
</div>
|
271 |
-
<?php if ( isset( $_POST['gglstmp_authorization_code'] ) && isset( $_POST['gglstmp_authorize'] )
|
272 |
<div id="gglstmp_authorize_error"><?php _e( 'Invalid authorization code. Please try again.', 'google-sitemap-plugin' ); ?></div>
|
273 |
<?php }
|
274 |
}
|
@@ -284,9 +282,9 @@ if ( ! class_exists( 'Gglstmp_Settings_Tabs' ) ) {
|
|
284 |
/**
|
285 |
*
|
286 |
*/
|
287 |
-
public function tab_display() {
|
288 |
-
$post_types = get_post_types( '', '
|
289 |
-
unset( $post_types['
|
290 |
|
291 |
$taxonomies = array(
|
292 |
'category' => __( 'Post category', 'google-sitemap-plugin' ),
|
@@ -300,8 +298,8 @@ if ( ! class_exists( 'Gglstmp_Settings_Tabs' ) ) {
|
|
300 |
<th><?php _e( 'Post Types', 'google-sitemap-plugin' ); ?></th>
|
301 |
<td>
|
302 |
<fieldset>
|
303 |
-
<?php foreach ( $post_types as $
|
304 |
-
<label><input type="checkbox" <?php if ( in_array( $
|
305 |
<?php } ?>
|
306 |
</fieldset>
|
307 |
<span class="bws_info"><?php _e( 'Enable to add post type links to the sitemap.', 'google-sitemap-plugin' ); ?></span>
|
@@ -336,89 +334,72 @@ if ( ! class_exists( 'Gglstmp_Settings_Tabs' ) ) {
|
|
336 |
* @access public
|
337 |
*/
|
338 |
public function additional_restore_options( $default_options ) {
|
339 |
-
|
340 |
-
$url_robot = ABSPATH . 'robots.txt';
|
341 |
-
/* remove sitemap.xml */
|
342 |
if ( $this->is_multisite ) {
|
343 |
-
$
|
344 |
-
|
345 |
} else {
|
346 |
-
|
347 |
}
|
348 |
-
|
|
|
|
|
349 |
/* clear robots.txt */
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
$file_content = preg_replace( "|\nSitemap: " . $gglstmp_url_home . "sitemap.xml|", '', $file_content );
|
357 |
-
file_put_contents( $url_robot, $file_content );
|
358 |
-
}
|
359 |
-
} else {
|
360 |
-
$error = __( 'Cannot edit "robot.txt". Check your permissions', 'google-sitemap-plugin' );
|
361 |
-
}
|
362 |
-
}
|
363 |
-
if ( false === get_option( 'gglstmp_robots' ) )
|
364 |
-
add_option( 'gglstmp_robots', 0 );
|
365 |
-
else
|
366 |
-
update_option( 'gglstmp_robots', 0 );
|
367 |
-
|
368 |
return $default_options;
|
369 |
}
|
370 |
|
371 |
|
372 |
public function display_custom_messages( $save_results ) {
|
373 |
-
/*=============================== Creating sitemap file ====================================*/
|
374 |
if ( $this->is_multisite ) {
|
375 |
-
$
|
376 |
-
$
|
377 |
-
$site_id = get_current_blog_id();
|
378 |
-
$xml_is_deleted_from_network = isset( $gglstmp_network_options['removed_sitemaps'] ) ? in_array( $site_id, $gglstmp_network_options['removed_sitemaps'] ) : false;
|
379 |
} else {
|
380 |
$xml_file = 'sitemap.xml';
|
381 |
-
$xml_url = site_url( '/' ) . $xml_file;
|
382 |
-
$xml_is_deleted_from_network = false;
|
383 |
}
|
|
|
384 |
|
385 |
-
if (
|
386 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
387 |
} else {
|
388 |
-
if ( $
|
389 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
390 |
} else {
|
391 |
-
|
392 |
-
$xml_is_created = true;
|
393 |
}
|
394 |
}
|
395 |
-
|
396 |
-
echo
|
397 |
-
$xml_is_created
|
398 |
-
?
|
399 |
-
'<div class="updated bws-notice inline"><p><strong>' . sprintf( __( "%s is in the site root directory.", 'google-sitemap-plugin' ), '<a href="' . $xml_url . '" target="_blank">' . __( 'The Sitemap file', 'google-sitemap-plugin' ) . '</a>' ) . '</strong></p></div>'
|
400 |
-
:
|
401 |
-
'<div class="error inline"><p><strong>' . __( 'The Sitemap file for this site has been deleted by network admin.', 'google-sitemap-plugin' ) . '</strong></p></div>';
|
402 |
-
|
403 |
-
if ( $this->is_multisite && ! is_subdomain_install() && count( glob( ABSPATH . "sitemap*.xml" ) ) > 0 && ( ! $this->htaccess_active || $this->htaccess_options['allow_xml'] == 0 ) ) {
|
404 |
-
if ( $this->options['sitemap'] && file_exists( $this->options['sitemap']['path'] ) ) {
|
405 |
-
$status = gglstmp_check_sitemap( $this->options['sitemap']['loc'] );
|
406 |
-
if ( '200' != $status['code'] ) { ?>
|
407 |
-
<div class="error below-h2">
|
408 |
-
<p>
|
409 |
-
<strong><?php _e( 'Error', 'google-sitemap-plugin' ); ?>:</strong> <?php
|
410 |
-
printf( __( "Can't access XML files on subsites. Add the following rule %s to your %s file in %s after %s or install, activate and enable %s plugin option to resolve this error.", 'google-sitemap-plugin' ),
|
411 |
-
'<code>RewriteRule ([^/]+\.xml)$ $1 [L]</code>',
|
412 |
-
'<strong>.htaccess</strong>',
|
413 |
-
sprintf( '<strong>"%s"</strong>', ABSPATH ),
|
414 |
-
'<strong>"RewriteBase"</strong>',
|
415 |
-
'Htaccess'
|
416 |
-
); ?>
|
417 |
-
</p>
|
418 |
-
</div>
|
419 |
-
<?php }
|
420 |
-
}
|
421 |
-
}
|
422 |
}
|
423 |
}
|
424 |
}
|
44 |
'link_pn' => '83'
|
45 |
) );
|
46 |
|
47 |
+
$this->robots = get_option( 'gglstmp_robots' );
|
|
|
48 |
|
49 |
/* Check htaccess plugin */
|
50 |
if ( $this->is_multisite && ! is_subdomain_install() ) {
|
88 |
* @return array The action results
|
89 |
*/
|
90 |
public function save_options() {
|
91 |
+
global $wpdb;
|
92 |
|
93 |
if ( isset( $_POST['gglstmp_logout'] ) ) {
|
94 |
unset( $_SESSION[ 'gglstmp_authorization_code' . $this->blog_prefix ], $this->options['authorization_code'] );
|
104 |
$webmasters = new Google_Service_Webmasters( $this->client );
|
105 |
$site_verification = new Google_Service_SiteVerification( $this->client );
|
106 |
if ( isset( $_POST['gglstmp_menu_info'] ) ) {
|
107 |
+
$this->manage_info .= gglstmp_get_site_info( $webmasters, $site_verification );
|
108 |
} elseif ( isset( $_POST['gglstmp_menu_add'] ) ) {
|
109 |
$this->manage_info .= gglstmp_add_site( $webmasters, $site_verification );
|
110 |
} else {
|
111 |
+
$this->manage_info .= gglstmp_delete_site( $webmasters, $site_verification );
|
112 |
}
|
113 |
}
|
114 |
} else {
|
123 |
}
|
124 |
|
125 |
$post_types = isset( $_REQUEST['gglstmp_post_types'] ) ? $_REQUEST['gglstmp_post_types'] : array();
|
126 |
+
$taxonomies = isset( $_REQUEST['gglstmp_taxonomies'] ) ? $_REQUEST['gglstmp_taxonomies'] : array();
|
127 |
+
if ( $this->options['post_type'] != $post_types || $this->options['taxonomy'] != $taxonomies )
|
128 |
$sitemapcreate = true;
|
129 |
|
130 |
$this->options['post_type'] = $post_types;
|
131 |
+
$this->options['taxonomy'] = $taxonomies;
|
132 |
|
133 |
+
if ( isset( $_POST['gglstmp_limit'] ) ) {
|
134 |
+
if ( $this->options['limit'] != absint( $_POST['gglstmp_limit'] ) )
|
135 |
+
$sitemapcreate = true;
|
136 |
|
137 |
+
$this->options['limit'] = ( absint( $_POST['gglstmp_limit'] ) >= 1000 && absint( $_POST['gglstmp_limit'] ) <= 50000 ) ? absint( $_POST['gglstmp_limit'] ) : 50000;
|
|
|
138 |
}
|
139 |
|
140 |
+
$this->robots = isset( $_POST['gglstmp_checkbox'] ) ? 1 : 0;
|
141 |
+
update_option( 'gglstmp_robots', $this->robots );
|
142 |
+
update_option( 'gglstmp_options', $this->options );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
143 |
|
144 |
+
if ( isset( $sitemapcreate ) )
|
145 |
+
gglstmp_schedule_sitemap();
|
|
|
|
|
|
|
|
|
146 |
|
147 |
$message = __( 'Settings saved.', 'google-sitemap-plugin' );
|
148 |
}
|
156 |
public function tab_settings() { ?>
|
157 |
<h3 class="bws_tab_label"><?php _e( 'Google Sitemap Settings', 'google-sitemap-plugin' ); ?></h3>
|
158 |
<?php $this->help_phrase(); ?>
|
159 |
+
<hr>
|
160 |
<table class="form-table gglstmp_settings_form">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
161 |
<tr>
|
162 |
<th>Robots.txt</th>
|
163 |
<td>
|
164 |
+
<input type='checkbox' name="gglstmp_checkbox" value="1" <?php checked( $this->robots, 1 ); ?> />
|
165 |
+
<span class="bws_info">
|
166 |
+
<?php printf(
|
167 |
+
_x( "Enable to add a sitemap file path to the %s file.", '%robots.txt file link%', 'google-sitemap-plugin' ),
|
168 |
+
'<a href="' . home_url( '/robots.txt' ) . '" target="_blank">robots.txt</a>'
|
169 |
+
); ?>
|
170 |
+
</span>
|
171 |
+
<?php $tooltip_text = sprintf(
|
172 |
+
_x( '"Search Engine Visibility" option have to be unmarked on the %s.', '%reading settings page link%', 'google-sitemap-plugin' ),
|
173 |
+
sprintf(
|
174 |
+
'<a href="%s" target="_blank">%s</a>',
|
175 |
+
admin_url( '/options-reading.php#blog_public' ),
|
176 |
+
_x( 'Reading Settings page', '...on the reading settings page.', 'google-sitemap-plugin' )
|
177 |
+
)
|
178 |
+
);
|
179 |
+
if ( file_exists( ABSPATH . 'robots.txt' ) ) {
|
180 |
+
$tooltip_text .= "<br />" . __( 'Also, please add the following code to the beginning of your ".htaccess" file:', 'google-sitemap-plugin' ) . "<br />" .
|
181 |
+
"<pre><code>" .
|
182 |
+
"<IfModule mod_rewrite.c><br />" .
|
183 |
+
"RewriteEngine On<br />" .
|
184 |
+
"RewriteBase /<br />" .
|
185 |
+
"RewriteRule robots\.txt$ index.php?gglstmp_robots=1<br />" .
|
186 |
+
"</IfModule>" .
|
187 |
+
"</code></pre>";
|
188 |
+
}
|
189 |
+
echo bws_add_help_box( $tooltip_text, 'bws-hide-for-mobile bws-auto-width' ); ?>
|
190 |
</td>
|
191 |
</tr>
|
192 |
<?php if ( $this->is_multisite && ! is_subdomain_install() ) {
|
200 |
$attr_disabled = 'disabled="disabled"';
|
201 |
$htaccess_plugin_notice = '<a href="https://bestwebsoft.com/products/wordpress/plugins/htaccess/?k=bc745b0c9d4b19ba95ae2c861418e0df&pn=106&v=' . $this->plugins_info["Version"] . '&wp_v=' . $wp_version . '">' . __( 'Install Now', 'google-sitemap-plugin' ) . '</a>';
|
202 |
}
|
|
|
|
|
|
|
203 |
if ( '1' == $this->htaccess_options['allow_xml'] && $attr_disabled == '' ) {
|
204 |
$attr_checked = 'checked="checked"';
|
205 |
} ?>
|
225 |
</div>
|
226 |
<?php } ?>
|
227 |
<table class="form-table gglstmp_settings_form">
|
228 |
+
<tr>
|
229 |
+
<th><?php _e( 'URLs Limit', 'google-sitemap-plugin' ); ?></th>
|
230 |
+
<td>
|
231 |
+
<input type="number" name="gglstmp_limit" min="1000" max="50000" value="<?php echo absint( $this->options['limit'] ); ?>" />
|
232 |
+
<div class="bws_info">
|
233 |
+
<?php _e( "A sitemap file can't contain more than 50,000 URLs and must be no larger than 50 MB uncompressed.", 'google-sitemap-plugin' ); ?> <a href="https://support.google.com/webmasters/answer/183668?ref_topic=4581190#general-guidelines" target="_blank"><?php _e( 'Learn More', 'google-sitemap-plugin' ); ?></a><br />
|
234 |
+
<?php _e( 'Decrease the limit if your sitemap exceeds file size limit.', 'google-sitemap-plugin' ); ?>
|
235 |
+
<?php _e( 'When the limit is reached, the sitemap will be splitted into multiple files.', 'google-sitemap-plugin' ); ?>
|
236 |
+
</div>
|
237 |
+
</td>
|
238 |
+
</tr>
|
239 |
<tr>
|
240 |
<th><?php _e( 'Google Webmaster Tools', 'google-sitemap-plugin' ); ?></th>
|
241 |
<td>
|
242 |
+
<?php if ( ! $this->client ) { ?>
|
243 |
<?php _e( "This hosting does not support сURL, so you cannot add a sitemap file automatically.", 'google-sitemap-plugin' ); ?>
|
244 |
<?php } else { ?>
|
245 |
<?php if ( ! isset( $_POST['gglstmp_logout'] ) && $this->client->getAccessToken() ) { ?>
|
246 |
+
<input class="button-secondary bws_no_bind_notice" name="gglstmp_logout" type="submit" value="<?php _e( 'Logout from Google Webmaster Tools', 'google-sitemap-plugin' ); ?>" />
|
247 |
</td>
|
248 |
</tr>
|
249 |
<tr>
|
250 |
<th><?php _e( 'Manage Website with Google Webmaster Tools', 'google-sitemap-plugin' ); ?></th>
|
251 |
<td>
|
252 |
+
<input class="button-secondary bws_no_bind_notice" type='submit' name='gglstmp_menu_add' value="<?php _e( 'Add', 'google-sitemap-plugin' ); ?>" />
|
253 |
+
<input class="button-secondary bws_no_bind_notice" type='submit' name='gglstmp_menu_delete' value="<?php _e( 'Delete', 'google-sitemap-plugin' ); ?>" />
|
254 |
+
<input class="button-secondary bws_no_bind_notice" type='submit' name='gglstmp_menu_info' value="<?php _e( 'Get Info', 'google-sitemap-plugin' ); ?>" />
|
255 |
<div class="bws_info">
|
256 |
<?php _e( "Add, delete or get info about this website using your Google Webmaster Tools account.", 'google-sitemap-plugin' ); ?>
|
257 |
</div>
|
261 |
$this->client->setState( $gglstmp_state );
|
262 |
$_SESSION[ 'gglstmp_state' . $this->blog_prefix ] = $this->client;
|
263 |
$gglstmp_auth_url = $this->client->createAuthUrl(); ?>
|
264 |
+
<a id="gglstmp_authorization_button" class="button-secondary button" href="<?php echo $gglstmp_auth_url; ?>" target="_blank" onclick="window.open(this.href,'','top='+(screen.height/2-560/2)+',left='+(screen.width/2-640/2)+',width=640,height=560,resizable=0,scrollbars=0,menubar=0,toolbar=0,status=1,location=0').focus(); return false;"><?php _e( 'Get Authorization Code', 'google-sitemap-plugin' ); ?></a>
|
265 |
<div id="gglstmp_authorization_form">
|
266 |
+
<input id="gglstmp_authorization_code" class="bws_no_bind_notice" name="gglstmp_authorization_code" type="text" maxlength="100" autocomplete="off" />
|
267 |
+
<input id="gglstmp_authorize" class="button-secondary button bws_no_bind_notice" name="gglstmp_authorize" type="submit" value="<?php _e( 'Authorize', 'google-sitemap-plugin' ); ?>" />
|
268 |
</div>
|
269 |
+
<?php if ( isset( $_POST['gglstmp_authorization_code'] ) && isset( $_POST['gglstmp_authorize'] ) ) { ?>
|
270 |
<div id="gglstmp_authorize_error"><?php _e( 'Invalid authorization code. Please try again.', 'google-sitemap-plugin' ); ?></div>
|
271 |
<?php }
|
272 |
}
|
282 |
/**
|
283 |
*
|
284 |
*/
|
285 |
+
public function tab_display() {
|
286 |
+
$post_types = get_post_types( array( 'public' => true ), 'objects' );
|
287 |
+
unset( $post_types['attachment'] );
|
288 |
|
289 |
$taxonomies = array(
|
290 |
'category' => __( 'Post category', 'google-sitemap-plugin' ),
|
298 |
<th><?php _e( 'Post Types', 'google-sitemap-plugin' ); ?></th>
|
299 |
<td>
|
300 |
<fieldset>
|
301 |
+
<?php foreach ( $post_types as $post_type => $post_type_object ) { ?>
|
302 |
+
<label><input type="checkbox" <?php if ( in_array( $post_type, $this->options['post_type'] ) ) echo 'checked="checked"'; ?> name="gglstmp_post_types[]" value="<?php echo $post_type; ?>"/><span style="text-transform: capitalize; padding-left: 5px;"><?php echo $post_type_object->labels->name; ?></span></label><br />
|
303 |
<?php } ?>
|
304 |
</fieldset>
|
305 |
<span class="bws_info"><?php _e( 'Enable to add post type links to the sitemap.', 'google-sitemap-plugin' ); ?></span>
|
334 |
* @access public
|
335 |
*/
|
336 |
public function additional_restore_options( $default_options ) {
|
337 |
+
|
|
|
|
|
338 |
if ( $this->is_multisite ) {
|
339 |
+
$blog_id = get_current_blog_id();
|
340 |
+
$mask = "sitemap_{$blog_id}*.xml";
|
341 |
} else {
|
342 |
+
$mask = "sitemap*.xml";
|
343 |
}
|
344 |
+
/* remove all sitemap files */
|
345 |
+
array_map( "unlink", glob( ABSPATH . $mask ) );
|
346 |
+
|
347 |
/* clear robots.txt */
|
348 |
+
$this->robots = 0;
|
349 |
+
update_option( 'gglstmp_robots', $this->robots );
|
350 |
+
|
351 |
+
$this->client->revokeToken();
|
352 |
+
unset( $_SESSION[ 'gglstmp_authorization_code' . $this->blog_prefix ], $this->options['authorization_code'] );
|
353 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
354 |
return $default_options;
|
355 |
}
|
356 |
|
357 |
|
358 |
public function display_custom_messages( $save_results ) {
|
|
|
359 |
if ( $this->is_multisite ) {
|
360 |
+
$blog_id = get_current_blog_id();
|
361 |
+
$xml_file = 'sitemap_' . $blog_id . '.xml';
|
|
|
|
|
362 |
} else {
|
363 |
$xml_file = 'sitemap.xml';
|
|
|
|
|
364 |
}
|
365 |
+
$xml_url = home_url( '/' . $xml_file );
|
366 |
|
367 |
+
if ( class_exists( 'Google_Client' ) && version_compare( Google_Client::LIBVER, '1.1.3', '!=' ) ) {
|
368 |
+
/* Google Client library of some other product is used! */ ?>
|
369 |
+
<div class="updated bws-notice inline">
|
370 |
+
<p><strong><?php _e( 'Note', 'google-sitemap-plugin' ); ?>: </strong><?php _e( 'Another plugin is providing Google Client functionality and may interrupt proper plugin work.', 'google-sitemap-plugin' ); ?></p>
|
371 |
+
</div>
|
372 |
+
<?php }
|
373 |
+
|
374 |
+
if ( $this->is_multisite && ! is_subdomain_install() && file_exists( ABSPATH . "sitemap_{$blog_id}.xml" ) && ( ! $this->htaccess_active || $this->htaccess_options['allow_xml'] == 0 ) ) {
|
375 |
+
$status = gglstmp_check_sitemap( home_url( "/sitemap_{$blog_id}.xml" ) );
|
376 |
+
if ( ! is_wp_error( $status ) && '200' != $status['code'] ) { ?>
|
377 |
+
<div class="error below-h2">
|
378 |
+
<p>
|
379 |
+
<strong><?php _e( 'Error', 'google-sitemap-plugin' ); ?>:</strong> <?php
|
380 |
+
printf( __( "Can't access XML files on subsites. Add the following rule %s to your %s file in %s after %s or install, activate and enable %s plugin option to resolve this error.", 'google-sitemap-plugin' ),
|
381 |
+
'<code>RewriteRule ([^/]+\.xml)$ $1 [L]</code>',
|
382 |
+
'<strong>.htaccess</strong>',
|
383 |
+
sprintf( '<strong>"%s"</strong>', ABSPATH ),
|
384 |
+
'<strong>"RewriteBase"</strong>',
|
385 |
+
'Htaccess'
|
386 |
+
); ?>
|
387 |
+
</p>
|
388 |
+
</div>
|
389 |
+
<?php }
|
390 |
} else {
|
391 |
+
if ( file_exists( ABSPATH . $xml_file ) ) {
|
392 |
+
printf(
|
393 |
+
'<div class="updated bws-notice inline"><p><strong>%s</strong></p></div>',
|
394 |
+
sprintf(
|
395 |
+
__( "%s is in the site root directory.", 'google-sitemap-plugin' ),
|
396 |
+
'<a href="' . $xml_url . '" target="_blank">' . __( 'The Sitemap file', 'google-sitemap-plugin' ) . '</a>'
|
397 |
+
)
|
398 |
+
);
|
399 |
} else {
|
400 |
+
gglstmp_schedule_sitemap();
|
|
|
401 |
}
|
402 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
403 |
}
|
404 |
}
|
405 |
}
|
includes/deprecated.php
CHANGED
@@ -3,11 +3,11 @@
|
|
3 |
* Includes deprecated functions
|
4 |
*/
|
5 |
|
6 |
-
/**
|
7 |
-
* Renaming old version options
|
8 |
-
* @deprecated since 3.0.8
|
9 |
-
* @todo remove after 28.10.2017
|
10 |
-
*/
|
11 |
if ( ! function_exists( 'gglstmp_check_old_options' ) ) {
|
12 |
function gglstmp_check_old_options() {
|
13 |
if ( is_multisite() ) {
|
@@ -45,4 +45,24 @@ if ( ! function_exists( 'gglstmp_check_old_options' ) ) {
|
|
45 |
}
|
46 |
}
|
47 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
}
|
3 |
* Includes deprecated functions
|
4 |
*/
|
5 |
|
6 |
+
/**
|
7 |
+
* Renaming old version options
|
8 |
+
* @deprecated since 3.0.8
|
9 |
+
* @todo remove after 28.10.2017
|
10 |
+
*/
|
11 |
if ( ! function_exists( 'gglstmp_check_old_options' ) ) {
|
12 |
function gglstmp_check_old_options() {
|
13 |
if ( is_multisite() ) {
|
45 |
}
|
46 |
}
|
47 |
}
|
48 |
+
}
|
49 |
+
|
50 |
+
/**
|
51 |
+
* Remove sitemap directive from robots.txt when removing plugin
|
52 |
+
* @deprecated since 3.1.0
|
53 |
+
* @todo remove after 28.01.2018
|
54 |
+
*/
|
55 |
+
if ( ! function_exists( 'gglstmp_clean_robots' ) ) {
|
56 |
+
function gglstmp_clean_robots() {
|
57 |
+
$robots_path = ABSPATH . "robots.txt";
|
58 |
+
if ( file_exists( $robots_path ) ) {
|
59 |
+
if ( ! is_writable( $robots_path ) )
|
60 |
+
@chmod( $robots_path, 0755 );
|
61 |
+
if ( is_writable( $robots_path ) ) {
|
62 |
+
$content = file_get_contents( $robots_path );
|
63 |
+
$content = preg_replace( "~\nSitemap: *\.xml~", '', $content );
|
64 |
+
file_put_contents( $robots_path, $content );
|
65 |
+
}
|
66 |
+
}
|
67 |
+
}
|
68 |
}
|
includes/pro_banners.php
CHANGED
@@ -15,7 +15,7 @@ if ( ! function_exists( 'gglstmp_pro_block' ) ) {
|
|
15 |
function gglstmp_pro_block( $func, $show_cross = true ) {
|
16 |
global $gglstmp_plugin_info, $wp_version, $gglstmp_options;
|
17 |
if ( ! bws_hide_premium_options_check( $gglstmp_options ) || ! $show_cross ) { ?>
|
18 |
-
<div class="bws_pro_version_bloc gglstmp_pro_block <?php echo $func;?>" title="<?php _e( 'This
|
19 |
<div class="bws_pro_version_table_bloc">
|
20 |
<?php if ( $show_cross ) { ?>
|
21 |
<button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php _e( 'Close', 'google-sitemap-plugin' ); ?>"></button>
|
@@ -47,6 +47,15 @@ if ( ! function_exists( 'gglstmp_frequency_block' ) ) {
|
|
47 |
<div class="bws_info"><?php _e( 'This value provides general information to search engines and tell them how frequently the page is likely to change. It may not correlate exactly to how often they crawl the website.', 'google-sitemap-plugin' ); ?> <a href="http://www.sitemaps.org/protocol.html#changefreqdef" target="_blank"><?php _e( 'Learn More', 'google-sitemap-plugin' ); ?></a></div>
|
48 |
</td>
|
49 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
<?php }
|
51 |
}
|
52 |
|
@@ -69,25 +78,33 @@ if ( ! function_exists( 'gglstmp_extra_block' ) ) {
|
|
69 |
if ( ! function_exists( 'gglstmp_custom_links_block' ) ) {
|
70 |
function gglstmp_custom_links_block() {
|
71 |
$date = date_i18n( get_option( 'date_format' ), 1458086400 ); ?>
|
72 |
-
|
|
|
|
|
|
|
|
|
73 |
<p class="search-box">
|
74 |
<input type="search" disabled="disabled"/>
|
75 |
-
<input class="button" value="<?php _e( 'Search' ); ?>" type="submit" disabled="disabled" />
|
76 |
</p>
|
77 |
-
<div class="
|
78 |
-
<
|
79 |
-
<
|
80 |
-
|
81 |
-
|
|
|
|
|
|
|
82 |
</div>
|
83 |
-
<table class="wp-list-table widefat fixed striped links">
|
84 |
<thead>
|
85 |
<tr>
|
86 |
-
<
|
87 |
-
<th scope="col" id="url" class="manage-column column-url column-primary sortable asc">URL</th>
|
88 |
-
<th scope="col" id="
|
|
|
89 |
<th scope="col" id="frequency" class="manage-column column-frequency"><?php _e( 'Change Frequency', 'google-sitemap-plugin' ); ?></th>
|
90 |
-
<th scope="col" id="date" class="manage-column column-date sortable desc"><?php _e( 'Last Changed', 'google-sitemap-plugin' ); ?></th>
|
91 |
</tr>
|
92 |
</thead>
|
93 |
<tbody data-wp-lists="list:link">
|
@@ -97,9 +114,10 @@ if ( ! function_exists( 'gglstmp_custom_links_block' ) ) {
|
|
97 |
<input type="url" style="width: 100%; box-sizing: border-box;" disabled="disabled" />
|
98 |
<div class="bws_info">
|
99 |
<strong><?php _e( "Please note", "google-sitemap-plugin" ); ?>:</strong>
|
100 |
-
<?php _e( "All URLs listed in the sitemap.xml must use the same protocol (
|
101 |
</div>
|
102 |
</td>
|
|
|
103 |
<td class="priority column-priority" data-colname="Priority"><input class="small-text" value="100" type="number" disabled="disabled" /> %</td>
|
104 |
<td class="frequency column-frequency" data-colname="Change Frequency">
|
105 |
<select disabled="disabled" >
|
@@ -112,29 +130,47 @@ if ( ! function_exists( 'gglstmp_custom_links_block' ) ) {
|
|
112 |
</tr>
|
113 |
<tr>
|
114 |
<th scope="row" class="check-column"><input type="checkbox" disabled="disabled" /></th>
|
115 |
-
<td class="url column-url has-row-actions column-primary" data-colname="URL">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
116 |
<td class="priority column-priority" data-colname="Priority">100 %</td>
|
117 |
<td class="frequency column-frequency" data-colname="Change Frequency"><?php _e( 'Monthly', 'google-sitemap-plugin' ); ?></td>
|
118 |
<td class="date column-date" data-colname="Last Changed"><?php echo $date; ?></td>
|
119 |
</tr>
|
120 |
<tr>
|
121 |
<th scope="row" class="check-column"><input type="checkbox" disabled="disabled" /></th>
|
122 |
-
<td class="url column-url has-row-actions column-primary" data-colname="URL">http://example.com/
|
|
|
123 |
<td class="priority column-priority" data-colname="Priority">100 %</td>
|
124 |
<td class="frequency column-frequency" data-colname="Change Frequency"><?php _e( 'Monthly', 'google-sitemap-plugin' ); ?></td>
|
125 |
<td class="date column-date" data-colname="Last Changed"><?php echo $date; ?></td>
|
126 |
</tr>
|
127 |
-
<tr>
|
128 |
<th scope="row" class="check-column"><input type="checkbox" disabled="disabled" /></th>
|
129 |
-
<td class="url column-url has-row-actions column-primary" data-colname="URL">http://example.com/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
<td class="priority column-priority" data-colname="Priority">100 %</td>
|
131 |
<td class="frequency column-frequency" data-colname="Change Frequency"><?php _e( 'Monthly', 'google-sitemap-plugin' ); ?></td>
|
132 |
<td class="date column-date" data-colname="Last Changed"><?php echo $date; ?></td>
|
133 |
</tr>
|
134 |
-
|
135 |
<tr>
|
136 |
<th scope="row" class="check-column"><input type="checkbox" disabled="disabled" /></th>
|
137 |
-
<td class="url column-url has-row-actions column-primary" data-colname="URL">http://example.com/?s_id=123&p_id=2
|
|
|
138 |
<td class="priority column-priority" data-colname="Priority">100 %</td>
|
139 |
<td class="frequency column-frequency" data-colname="Change Frequency"><?php _e( 'Monthly', 'google-sitemap-plugin' ); ?></td>
|
140 |
<td class="date column-date" data-colname="Last Changed"><?php echo $date; ?></td>
|
@@ -142,11 +178,12 @@ if ( ! function_exists( 'gglstmp_custom_links_block' ) ) {
|
|
142 |
</tbody>
|
143 |
<tfoot>
|
144 |
<tr>
|
145 |
-
<
|
146 |
-
<th scope="col" class="manage-column column-url column-primary sortable asc">URL</th>
|
147 |
-
<th scope="col" class="manage-column column-
|
|
|
148 |
<th scope="col" class="manage-column column-frequency"><?php _e( 'Change Frequency', 'google-sitemap-plugin' ); ?></th>
|
149 |
-
<th scope="col" class="manage-column column-date sortable desc"><?php _e( 'Last Changed', 'google-sitemap-plugin' ); ?></th>
|
150 |
</tr>
|
151 |
</tfoot>
|
152 |
</table>
|
15 |
function gglstmp_pro_block( $func, $show_cross = true ) {
|
16 |
global $gglstmp_plugin_info, $wp_version, $gglstmp_options;
|
17 |
if ( ! bws_hide_premium_options_check( $gglstmp_options ) || ! $show_cross ) { ?>
|
18 |
+
<div class="bws_pro_version_bloc gglstmp_pro_block <?php echo $func;?>" title="<?php _e( 'This option is available in Pro version of plugin', 'google-sitemap-plugin' ); ?>">
|
19 |
<div class="bws_pro_version_table_bloc">
|
20 |
<?php if ( $show_cross ) { ?>
|
21 |
<button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php _e( 'Close', 'google-sitemap-plugin' ); ?>"></button>
|
47 |
<div class="bws_info"><?php _e( 'This value provides general information to search engines and tell them how frequently the page is likely to change. It may not correlate exactly to how often they crawl the website.', 'google-sitemap-plugin' ); ?> <a href="http://www.sitemaps.org/protocol.html#changefreqdef" target="_blank"><?php _e( 'Learn More', 'google-sitemap-plugin' ); ?></a></div>
|
48 |
</td>
|
49 |
</tr>
|
50 |
+
<tr>
|
51 |
+
<th><?php _e( 'External Sitemap Update Frequency', 'google-sitemap-plugin' ); ?></th>
|
52 |
+
<td>
|
53 |
+
<input disabled="disabled" class="small-text" type="number" value="7"> <?php _e( 'day(-s)', 'google-sitemap-plugin' ); ?>
|
54 |
+
<div class="bws_info">
|
55 |
+
<?php _e( 'This option sets how often the external index sitemap files should be checked for updates.', 'google-sitemap-plugin' ); ?>
|
56 |
+
</div>
|
57 |
+
</td>
|
58 |
+
</tr>
|
59 |
<?php }
|
60 |
}
|
61 |
|
78 |
if ( ! function_exists( 'gglstmp_custom_links_block' ) ) {
|
79 |
function gglstmp_custom_links_block() {
|
80 |
$date = date_i18n( get_option( 'date_format' ), 1458086400 ); ?>
|
81 |
+
<ul class="subsubsub">
|
82 |
+
<li class="all"><a class="current"><?php _e( 'All', 'google-sitemap-plugin' ); ?> <span class="count">(5)</span></a> |</li>
|
83 |
+
<li class="enabled"><a><?php _e( 'Enabled', 'google-sitemap-plugin' ); ?> <span class="count">(3)</span></a> |</li>
|
84 |
+
<li class="disabled"><a><?php _e( 'Disabled', 'google-sitemap-plugin' ); ?> <span class="count">(2)</span></a></li>
|
85 |
+
</ul>
|
86 |
<p class="search-box">
|
87 |
<input type="search" disabled="disabled"/>
|
88 |
+
<input class="button" value="<?php _e( 'Search', 'google-sitemap-plugin' ); ?>" type="submit" disabled="disabled" />
|
89 |
</p>
|
90 |
+
<div class="tablenav top">
|
91 |
+
<div class="alignleft actions bulkactions">
|
92 |
+
<select disabled="disabled">
|
93 |
+
<option value="-1"><?php _e( 'Bulk Actions', 'google-sitemap-plugin' ); ?></option>
|
94 |
+
</select>
|
95 |
+
<input disabled="disabled" id="doaction" class="button action" value="<?php _e( 'Apply', 'google-sitemap-plugin' ); ?>" type="submit">
|
96 |
+
</div>
|
97 |
+
<div class="tablenav-pages one-page"><span class="displaying-num">5 <?php _e( 'items', 'google-sitemap-plugin' ); ?></span></div>
|
98 |
</div>
|
99 |
+
<table class="wp-list-table widefat fixed striped links" id="gglstmp_table">
|
100 |
<thead>
|
101 |
<tr>
|
102 |
+
<td id="cb" class="manage-column column-cb check-column"><input id="cb-select-all" type="checkbox" disabled="disabled" /></td>
|
103 |
+
<th scope="col" id="url" class="manage-column column-url column-primary sortable asc"><a>URL</a></th>
|
104 |
+
<th scope="col" id="is_sitemap" class="manage-column column-is_sitemap sortable desc"><a>Sitemap</a></th>
|
105 |
+
<th scope="col" id="priority" class="manage-column column-priority sortable desc"><a><?php _e( 'Priority', 'google-sitemap-plugin' ); ?></a></th>
|
106 |
<th scope="col" id="frequency" class="manage-column column-frequency"><?php _e( 'Change Frequency', 'google-sitemap-plugin' ); ?></th>
|
107 |
+
<th scope="col" id="date" class="manage-column column-date sortable desc"><a><?php _e( 'Last Changed', 'google-sitemap-plugin' ); ?></a></th>
|
108 |
</tr>
|
109 |
</thead>
|
110 |
<tbody data-wp-lists="list:link">
|
114 |
<input type="url" style="width: 100%; box-sizing: border-box;" disabled="disabled" />
|
115 |
<div class="bws_info">
|
116 |
<strong><?php _e( "Please note", "google-sitemap-plugin" ); ?>:</strong>
|
117 |
+
<?php _e( "All URLs listed in the sitemap.xml must use the same protocol (HTTP or HTTPS) and must be located on the same host as the sitemap.xml. For more info see", "google-sitemap-plugin" ); ?> <a href="http://www.sitemaps.org/protocol.html#location" target="_blank"><?php _e( "here", "google-sitemap-plugin" ); ?></a>.
|
118 |
</div>
|
119 |
</td>
|
120 |
+
<td class="is_sitemap column-is_sitemap" data-colname="Sitemap"><input type="checkbox" disabled="disabled" value="1"></td>
|
121 |
<td class="priority column-priority" data-colname="Priority"><input class="small-text" value="100" type="number" disabled="disabled" /> %</td>
|
122 |
<td class="frequency column-frequency" data-colname="Change Frequency">
|
123 |
<select disabled="disabled" >
|
130 |
</tr>
|
131 |
<tr>
|
132 |
<th scope="row" class="check-column"><input type="checkbox" disabled="disabled" /></th>
|
133 |
+
<td class="url column-url has-row-actions column-primary" data-colname="URL">
|
134 |
+
http://example.com/sitemap.xml
|
135 |
+
<div class="row-actions visible">
|
136 |
+
<span class="edit"><a><?php _e( 'Edit', 'google-sitemap-plugin' ); ?></a> | </span>
|
137 |
+
<span class="disable"><a><?php _e( 'Disable', 'google-sitemap-plugin' ); ?></a> | </span>
|
138 |
+
<span class="delete"><a><?php _e( 'Delete', 'google-sitemap-plugin' ); ?></a></span>
|
139 |
+
</div>
|
140 |
+
</td>
|
141 |
+
<td class="is_sitemap column-is_sitemap" data-colname="Sitemap"><?php _e( 'Yes', 'google-sitemap-plugin' ); ?></td>
|
142 |
<td class="priority column-priority" data-colname="Priority">100 %</td>
|
143 |
<td class="frequency column-frequency" data-colname="Change Frequency"><?php _e( 'Monthly', 'google-sitemap-plugin' ); ?></td>
|
144 |
<td class="date column-date" data-colname="Last Changed"><?php echo $date; ?></td>
|
145 |
</tr>
|
146 |
<tr>
|
147 |
<th scope="row" class="check-column"><input type="checkbox" disabled="disabled" /></th>
|
148 |
+
<td class="url column-url has-row-actions column-primary" data-colname="URL">http://example.com/lorem/ipsum/dolor/sit/amet<div class="row-actions"> </div></td>
|
149 |
+
<td class="is_sitemap column-is_sitemap" data-colname="Sitemap"><?php _e( 'No', 'google-sitemap-plugin' ); ?></td>
|
150 |
<td class="priority column-priority" data-colname="Priority">100 %</td>
|
151 |
<td class="frequency column-frequency" data-colname="Change Frequency"><?php _e( 'Monthly', 'google-sitemap-plugin' ); ?></td>
|
152 |
<td class="date column-date" data-colname="Last Changed"><?php echo $date; ?></td>
|
153 |
</tr>
|
154 |
+
<tr class="gglstmp_disabled">
|
155 |
<th scope="row" class="check-column"><input type="checkbox" disabled="disabled" /></th>
|
156 |
+
<td class="url column-url has-row-actions column-primary" data-colname="URL">http://example.com/donec-fringilla<div class="row-actions"> </div></td>
|
157 |
+
<td class="is_sitemap column-is_sitemap" data-colname="Sitemap"><?php _e( 'No', 'google-sitemap-plugin' ); ?></td>
|
158 |
+
<td class="priority column-priority" data-colname="Priority">100 %</td>
|
159 |
+
<td class="frequency column-frequency" data-colname="Change Frequency"><?php _e( 'Monthly', 'google-sitemap-plugin' ); ?></td>
|
160 |
+
<td class="date column-date" data-colname="Last Changed"><?php echo $date; ?></td>
|
161 |
+
</tr>
|
162 |
+
<tr class="gglstmp_disabled">
|
163 |
+
<th scope="row" class="check-column"><input type="checkbox" disabled="disabled" /></th>
|
164 |
+
<td class="url column-url has-row-actions column-primary" data-colname="URL">http://example.com/lorem-ipsum<div class="row-actions"> </div></td>
|
165 |
+
<td class="is_sitemap column-is_sitemap" data-colname="Sitemap"><?php _e( 'No', 'google-sitemap-plugin' ); ?></td>
|
166 |
<td class="priority column-priority" data-colname="Priority">100 %</td>
|
167 |
<td class="frequency column-frequency" data-colname="Change Frequency"><?php _e( 'Monthly', 'google-sitemap-plugin' ); ?></td>
|
168 |
<td class="date column-date" data-colname="Last Changed"><?php echo $date; ?></td>
|
169 |
</tr>
|
|
|
170 |
<tr>
|
171 |
<th scope="row" class="check-column"><input type="checkbox" disabled="disabled" /></th>
|
172 |
+
<td class="url column-url has-row-actions column-primary" data-colname="URL">http://example.com/?s_id=123&p_id=2<div class="row-actions"> </div></td>
|
173 |
+
<td class="is_sitemap column-is_sitemap" data-colname="Sitemap"><?php _e( 'No', 'google-sitemap-plugin' ); ?></td>
|
174 |
<td class="priority column-priority" data-colname="Priority">100 %</td>
|
175 |
<td class="frequency column-frequency" data-colname="Change Frequency"><?php _e( 'Monthly', 'google-sitemap-plugin' ); ?></td>
|
176 |
<td class="date column-date" data-colname="Last Changed"><?php echo $date; ?></td>
|
178 |
</tbody>
|
179 |
<tfoot>
|
180 |
<tr>
|
181 |
+
<td class="manage-column column-cb check-column"><input id="cb-select-all-2" type="checkbox" disabled="disabled" /></td>
|
182 |
+
<th scope="col" class="manage-column column-url column-primary sortable asc"><a>URL</a></th>
|
183 |
+
<th scope="col" class="manage-column column-is_sitemap sortable desc"><a>Sitemap</a></th>
|
184 |
+
<th scope="col" class="manage-column column-priority sortable desc"><a><?php _e( 'Priority', 'google-sitemap-plugin' ); ?></a></th>
|
185 |
<th scope="col" class="manage-column column-frequency"><?php _e( 'Change Frequency', 'google-sitemap-plugin' ); ?></th>
|
186 |
+
<th scope="col" class="manage-column column-date sortable desc"><a><?php _e( 'Last Changed', 'google-sitemap-plugin' ); ?></a></th>
|
187 |
</tr>
|
188 |
</tfoot>
|
189 |
</table>
|
languages/google-sitemap-plugin-cs_CZ.mo
CHANGED
Binary file
|
languages/google-sitemap-plugin-cs_CZ.po
CHANGED
@@ -1,167 +1,316 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Google Sitemap\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
"Last-Translator: Mik013\n"
|
8 |
"Language-Team: Mik013\n"
|
9 |
"Language: cs_CZ\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit 1.
|
17 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: google-sitemap-plugin.php:38 google-sitemap-plugin.php:
|
21 |
-
#: includes/class-gglstmp-settings.php:
|
22 |
msgid "Google Sitemap Settings"
|
23 |
msgstr "Nastavení Google Sitemap"
|
24 |
|
25 |
-
#: google-sitemap-plugin.php:
|
26 |
-
#: google-sitemap-plugin.php:
|
27 |
#: includes/class-gglstmp-settings.php:27
|
28 |
msgid "Settings"
|
29 |
msgstr "Nastavení"
|
30 |
|
31 |
-
#: google-sitemap-plugin.php:
|
|
|
32 |
msgid "Custom Links"
|
33 |
msgstr "Uživatelské odkazy"
|
34 |
|
35 |
-
#: google-sitemap-plugin.php:
|
36 |
msgid "Upgrade to Pro"
|
37 |
msgstr "Aktualizovat na Pro"
|
38 |
|
39 |
-
#: google-sitemap-plugin.php:
|
40 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
msgstr "Prosím, povolte JavaScript ve vašem prohlížeči."
|
42 |
|
43 |
-
#: google-sitemap-plugin.php:
|
44 |
-
|
|
|
|
|
|
|
|
|
45 |
msgid "Website"
|
46 |
msgstr "Webová stránka"
|
47 |
|
48 |
-
#: google-sitemap-plugin.php:
|
49 |
-
#: google-sitemap-plugin.php:
|
50 |
-
#: google-sitemap-plugin.php:
|
51 |
msgid "Status"
|
52 |
msgstr "Stav"
|
53 |
|
54 |
-
#: google-sitemap-plugin.php:
|
55 |
-
#: google-sitemap-plugin.php:
|
56 |
msgid "Not added"
|
57 |
msgstr "Nepřidáno"
|
58 |
|
59 |
-
#: google-sitemap-plugin.php:
|
60 |
-
#: google-sitemap-plugin.php:
|
61 |
msgid "Added"
|
62 |
msgstr "Přidáno"
|
63 |
|
64 |
-
#: google-sitemap-plugin.php:
|
65 |
-
#: google-sitemap-plugin.php:
|
66 |
msgid "Verification Status"
|
67 |
msgstr "Stav ověření"
|
68 |
|
69 |
-
#: google-sitemap-plugin.php:
|
70 |
msgid "Verified"
|
71 |
msgstr "Ověřeno"
|
72 |
|
73 |
-
#: google-sitemap-plugin.php:
|
74 |
msgid "Not verified"
|
75 |
msgstr "Nevěřeno"
|
76 |
|
77 |
-
#: google-sitemap-plugin.php:
|
78 |
msgid "Sitemap Status"
|
79 |
msgstr "Stav sitemap.xml"
|
80 |
|
81 |
-
#: google-sitemap-plugin.php:
|
82 |
msgid "Added with errors."
|
83 |
msgstr "Přidáno s chybami."
|
84 |
|
85 |
-
#: google-sitemap-plugin.php:
|
86 |
msgid "View errors in Google Webmaster Tools"
|
87 |
msgstr "Zobrazit chyby v Google Webmaster Tools"
|
88 |
|
89 |
-
#: google-sitemap-plugin.php:
|
90 |
msgid "Sitemap URL"
|
91 |
msgstr "URL sitemap.xml"
|
92 |
|
93 |
-
#: google-sitemap-plugin.php:
|
94 |
-
#: google-sitemap-plugin.php:
|
95 |
-
#: google-sitemap-plugin.php:
|
96 |
-
#: google-sitemap-plugin.php:
|
97 |
-
#: includes/class-gglstmp-settings.php:
|
98 |
msgid "Error"
|
99 |
msgstr "Chyba"
|
100 |
|
101 |
-
#: google-sitemap-plugin.php:
|
102 |
msgid "Please check the sitemap file manually."
|
103 |
msgstr "Zkontrolujte soubor sitemap.xml manuálně."
|
104 |
|
105 |
-
#: google-sitemap-plugin.php:
|
106 |
-
#: google-sitemap-plugin.php:
|
107 |
-
#: google-sitemap-plugin.php:
|
108 |
-
#: includes/pro_banners.php:47
|
109 |
msgid "Learn More"
|
110 |
msgstr "Více informací"
|
111 |
|
112 |
-
#: google-sitemap-plugin.php:
|
113 |
-
#: google-sitemap-plugin.php:
|
114 |
-
#: google-sitemap-plugin.php:
|
115 |
msgid "Unexpected error"
|
116 |
msgstr "Neočekávaná chyba"
|
117 |
|
118 |
-
#: google-sitemap-plugin.php:
|
119 |
-
#: google-sitemap-plugin.php:
|
120 |
msgid "Manual verification required."
|
121 |
msgstr "Je vyžadováno ruční ověření."
|
122 |
|
123 |
-
#: google-sitemap-plugin.php:
|
124 |
msgid "Deleted"
|
125 |
msgstr "Odstraněno"
|
126 |
|
127 |
-
#: google-sitemap-plugin.php:
|
128 |
-
#: google-sitemap-plugin.php:
|
129 |
msgid "Verification Code"
|
130 |
msgstr "Ověřovací kód"
|
131 |
|
132 |
-
#: google-sitemap-plugin.php:
|
133 |
msgid "Received and added to the site"
|
134 |
msgstr "Přijato a přidáno na web"
|
135 |
|
136 |
-
#: google-sitemap-plugin.php:
|
137 |
msgid "Received, but has not been added to the site"
|
138 |
msgstr "Přijato avšak nepřidáno na web"
|
139 |
|
140 |
-
#: google-sitemap-plugin.php:
|
141 |
msgid "Please add the sitemap file manually."
|
142 |
msgstr "Přidejte soubor sitemap.xml manuálně."
|
143 |
|
144 |
-
#: google-sitemap-plugin.php:
|
145 |
msgid "Error 404"
|
146 |
msgstr "Chyba 404"
|
147 |
|
148 |
-
#: google-sitemap-plugin.php:
|
149 |
#, php-format
|
150 |
msgid "The sitemap file %s not found."
|
151 |
msgstr "Soubor sitemap.xml %s nebyl nalezen."
|
152 |
|
153 |
-
#: google-sitemap-plugin.php:
|
154 |
msgid "The sitemap file not found."
|
155 |
msgstr "Soubor sitemap.xml nebyl nalezen."
|
156 |
|
157 |
-
#: google-sitemap-plugin.php:
|
158 |
msgid "FAQ"
|
159 |
msgstr "Často kladené otázky (FAQ)"
|
160 |
|
161 |
-
#: google-sitemap-plugin.php:
|
162 |
msgid "Support"
|
163 |
msgstr "Podpora"
|
164 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
165 |
#: includes/class-gglstmp-settings.php:28
|
166 |
msgid "Structure"
|
167 |
msgstr "Struktura"
|
@@ -174,64 +323,84 @@ msgstr "Různé"
|
|
174 |
msgid "License Key"
|
175 |
msgstr "Licenční klíč"
|
176 |
|
177 |
-
#: includes/class-gglstmp-settings.php:
|
178 |
-
msgid "Cannot edit \"robots.txt\". Check your permissions"
|
179 |
-
msgstr "Nelze upravit \"robots.txt\". Prosím, zkontrolujte oprávnění"
|
180 |
-
|
181 |
-
#: includes/class-gglstmp-settings.php:167
|
182 |
msgid "Settings saved."
|
183 |
msgstr "Nastavení uloženo."
|
184 |
|
185 |
-
#: includes/class-gglstmp-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
186 |
#, php-format
|
187 |
-
|
188 |
-
"
|
189 |
-
"to %s."
|
190 |
msgstr ""
|
191 |
-
"Vzhledem k tomu, že používáte multisite, plugin neumožňuje přidat soubor "
|
192 |
-
"sitemap.xml do %s."
|
193 |
|
194 |
-
#: includes/class-gglstmp-settings.php:
|
195 |
-
#,
|
196 |
-
|
197 |
-
|
|
|
198 |
|
199 |
-
#: includes/class-gglstmp-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
200 |
msgid "This option will be applied to all websites in the network."
|
201 |
msgstr "Tato volba bude použita pro všechny weby v síti."
|
202 |
|
203 |
-
#: includes/class-gglstmp-settings.php:
|
204 |
msgid "Activate"
|
205 |
msgstr "Aktivovat"
|
206 |
|
207 |
-
#: includes/class-gglstmp-settings.php:
|
208 |
msgid "Install Now"
|
209 |
msgstr "Instalovat nyní"
|
210 |
|
211 |
-
#: includes/class-gglstmp-settings.php:
|
212 |
#, php-format
|
213 |
msgid "%s Plugin"
|
214 |
msgstr "%s Plugin"
|
215 |
|
216 |
-
#: includes/class-gglstmp-settings.php:
|
217 |
#, php-format
|
218 |
msgid "Enable to allow XML files access using %s plugin."
|
219 |
msgstr "Povolte přístup ke XML souborům pomocí %s pluginu."
|
220 |
|
221 |
-
#: includes/class-gglstmp-settings.php:
|
222 |
msgid "The following string will be added to your .htaccess file"
|
223 |
msgstr "Následující řetězec bude přidán do vašeho .htaccess souboru"
|
224 |
|
225 |
-
#: includes/class-gglstmp-settings.php:
|
226 |
-
|
227 |
-
|
228 |
-
|
|
|
|
|
|
|
|
|
|
|
229 |
|
230 |
-
#: includes/class-gglstmp-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
231 |
msgid "Google Webmaster Tools"
|
232 |
msgstr "Google Webmaster Tools"
|
233 |
|
234 |
-
#: includes/class-gglstmp-settings.php:
|
235 |
msgid ""
|
236 |
"This hosting does not support сURL, so you cannot add a sitemap file "
|
237 |
"automatically."
|
@@ -239,27 +408,23 @@ msgstr ""
|
|
239 |
"Váš hosting nepodporuje cURL, takže nemůžete přidat soubor sitemap.xml (do "
|
240 |
"Google?) automaticky."
|
241 |
|
242 |
-
#: includes/class-gglstmp-settings.php:
|
243 |
msgid "Logout from Google Webmaster Tools"
|
244 |
msgstr "Odhlásit se z Google Webmaster Tools"
|
245 |
|
246 |
-
#: includes/class-gglstmp-settings.php:
|
247 |
msgid "Manage Website with Google Webmaster Tools"
|
248 |
msgstr "Spravovat web s Google Webmaster Tools"
|
249 |
|
250 |
-
#: includes/class-gglstmp-settings.php:
|
251 |
msgid "Add"
|
252 |
msgstr "Přidat"
|
253 |
|
254 |
#: includes/class-gglstmp-settings.php:254
|
255 |
-
msgid "Delete"
|
256 |
-
msgstr "Smazat"
|
257 |
-
|
258 |
-
#: includes/class-gglstmp-settings.php:255
|
259 |
msgid "Get Info"
|
260 |
msgstr "Získat informace"
|
261 |
|
262 |
-
#: includes/class-gglstmp-settings.php:
|
263 |
msgid ""
|
264 |
"Add, delete or get info about this website using your Google Webmaster Tools "
|
265 |
"account."
|
@@ -267,73 +432,65 @@ msgstr ""
|
|
267 |
"Přidat, odstranit nebo zobrazit informace o tomto webu pomocí účtu Google "
|
268 |
"Webmaster Tools."
|
269 |
|
270 |
-
#: includes/class-gglstmp-settings.php:
|
271 |
msgid "Get Authorization Code"
|
272 |
msgstr "Získat autorizační kód"
|
273 |
|
274 |
-
#: includes/class-gglstmp-settings.php:
|
275 |
msgid "Authorize"
|
276 |
msgstr "Schválit"
|
277 |
|
278 |
-
#: includes/class-gglstmp-settings.php:
|
279 |
msgid "Invalid authorization code. Please try again."
|
280 |
msgstr "Neplatný autorizační kód. Zkuste to znovu."
|
281 |
|
282 |
-
#: includes/class-gglstmp-settings.php:
|
283 |
msgid "You can also add your sitemap to Google Webmaster Tools manually."
|
284 |
msgstr "Můžete také přidat soubor sitemap.xml na Google Webmaster Tools ručně."
|
285 |
|
286 |
-
#: includes/class-gglstmp-settings.php:
|
287 |
msgid "Read the instruction"
|
288 |
msgstr "Přečíst si instrukce"
|
289 |
|
290 |
-
#: includes/class-gglstmp-settings.php:
|
291 |
msgid "Post category"
|
292 |
msgstr "Kategorie příspěvku"
|
293 |
|
294 |
-
#: includes/class-gglstmp-settings.php:
|
295 |
msgid "Post tag"
|
296 |
msgstr "Štítek příspěvku"
|
297 |
|
298 |
-
#: includes/class-gglstmp-settings.php:
|
299 |
msgid "Sitemap Structure"
|
300 |
msgstr "Struktura sitemap.xml"
|
301 |
|
302 |
-
#: includes/class-gglstmp-settings.php:
|
303 |
msgid "Post Types"
|
304 |
msgstr "Typy příspěvků"
|
305 |
|
306 |
-
#: includes/class-gglstmp-settings.php:
|
307 |
msgid "Enable to add post type links to the sitemap."
|
308 |
msgstr "Do souboru sitemap.xml přidat typy příspěvků."
|
309 |
|
310 |
-
#: includes/class-gglstmp-settings.php:
|
311 |
msgid "Taxonomies"
|
312 |
msgstr "Taxonomie"
|
313 |
|
314 |
-
#: includes/class-gglstmp-settings.php:
|
315 |
msgid "Enable to taxonomy links to the sitemap."
|
316 |
msgstr "Do souboru sitemap.xml přidat taxonomie."
|
317 |
|
318 |
-
#: includes/class-gglstmp-settings.php:
|
319 |
-
msgid "
|
320 |
-
msgstr "
|
321 |
-
|
322 |
-
#: includes/class-gglstmp-settings.php:397
|
323 |
-
#, php-format
|
324 |
-
msgid "%s is in the site root directory."
|
325 |
-
msgstr "%s je v kořenovém adresáři webu."
|
326 |
-
|
327 |
-
#: includes/class-gglstmp-settings.php:397
|
328 |
-
msgid "The Sitemap file"
|
329 |
-
msgstr "Soubor sitemap.xml"
|
330 |
|
331 |
-
#: includes/class-gglstmp-settings.php:
|
332 |
-
msgid "
|
|
|
|
|
333 |
msgstr ""
|
334 |
-
"Soubor sitemap.xml pro tento web byl odstraněn sítovým administrátorem."
|
335 |
|
336 |
-
#: includes/class-gglstmp-settings.php:
|
337 |
#, php-format
|
338 |
msgid ""
|
339 |
"Can't access XML files on subsites. Add the following rule %s to your %s "
|
@@ -344,82 +501,31 @@ msgstr ""
|
|
344 |
"následující pravidlo %s do souboru %s v %s po %s nebo zkuste instalovat, "
|
345 |
"aktivovat a povolit plugin %s Chcete-li vyřešit tuto chybu."
|
346 |
|
347 |
-
#: includes/
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
#: includes/pro_banners.php:42 includes/pro_banners.php:89
|
352 |
-
#: includes/pro_banners.php:148
|
353 |
-
msgid "Change Frequency"
|
354 |
-
msgstr "Frekvence obnovy"
|
355 |
-
|
356 |
-
#: includes/pro_banners.php:45 includes/pro_banners.php:117
|
357 |
-
#: includes/pro_banners.php:124 includes/pro_banners.php:131
|
358 |
-
#: includes/pro_banners.php:139
|
359 |
-
msgid "Monthly"
|
360 |
-
msgstr "Měsíčně"
|
361 |
-
|
362 |
-
#: includes/pro_banners.php:47
|
363 |
-
msgid ""
|
364 |
-
"This value provides general information to search engines and tell them how "
|
365 |
-
"frequently the page is likely to change. It may not correlate exactly to how "
|
366 |
-
"often they crawl the website."
|
367 |
-
msgstr ""
|
368 |
-
"Tato hodnota poskytuje obecné informace vyhledávačům a řekněte jim, jak "
|
369 |
-
"často se stránka mění. Což nemusí přesně korelovat s tím, jak často "
|
370 |
-
"procházejí web."
|
371 |
-
|
372 |
-
#: includes/pro_banners.php:60
|
373 |
-
msgid "Example of site pages' tree"
|
374 |
-
msgstr "Příklad stromu stránek webu"
|
375 |
-
|
376 |
-
#: includes/pro_banners.php:75
|
377 |
-
msgid "Search"
|
378 |
-
msgstr "Hledání"
|
379 |
-
|
380 |
-
#: includes/pro_banners.php:79
|
381 |
-
msgid "Bulk Actions"
|
382 |
-
msgstr "Hromadné akce"
|
383 |
-
|
384 |
-
#: includes/pro_banners.php:81
|
385 |
-
msgid "Apply"
|
386 |
-
msgstr "Použít"
|
387 |
-
|
388 |
-
#: includes/pro_banners.php:88 includes/pro_banners.php:147
|
389 |
-
msgid "Priority"
|
390 |
-
msgstr "Priorita"
|
391 |
-
|
392 |
-
#: includes/pro_banners.php:90 includes/pro_banners.php:149
|
393 |
-
msgid "Last Changed"
|
394 |
-
msgstr "Poslední změna"
|
395 |
-
|
396 |
-
#: includes/pro_banners.php:99
|
397 |
-
msgid "Please note"
|
398 |
-
msgstr "Upozorňujeme"
|
399 |
|
400 |
-
#: includes/
|
401 |
-
msgid ""
|
402 |
-
"
|
403 |
-
"HTTPS ) and reside on the same host as the sitemap.xml. For more info see"
|
404 |
-
msgstr ""
|
405 |
-
"Všechny URL adresy uvedené v sitemap.xml musí používat stejný protokol (HTTP "
|
406 |
-
"nebo HTTPS) a nacházet se na stejném hostu jako sitemap.xml. Pro více "
|
407 |
-
"informací viz"
|
408 |
|
409 |
-
|
410 |
-
|
411 |
-
msgstr "zde"
|
412 |
|
413 |
-
|
414 |
-
|
415 |
-
|
|
|
|
|
|
|
416 |
|
417 |
-
|
418 |
-
|
419 |
-
msgstr "Uložit"
|
420 |
|
421 |
-
#~ msgid "
|
422 |
-
#~ msgstr "
|
|
|
423 |
|
424 |
#~ msgid "Your Sitemap file has been created in the site root directory"
|
425 |
#~ msgstr "Váš soubor sitemap.xml byl vytvořen v kořenovém adresáři webu"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Google Sitemap - BWS\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-08-14 20:18+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-08-14 20:18+0300\n"
|
7 |
"Last-Translator: Mik013\n"
|
8 |
"Language-Team: Mik013\n"
|
9 |
"Language: cs_CZ\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;_x:1,2c;_n:1,2c\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 1.5.4\n"
|
17 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: google-sitemap-plugin.php:38 google-sitemap-plugin.php:48
|
21 |
+
#: includes/class-gglstmp-settings.php:157
|
22 |
msgid "Google Sitemap Settings"
|
23 |
msgstr "Nastavení Google Sitemap"
|
24 |
|
25 |
+
#: google-sitemap-plugin.php:49 google-sitemap-plugin.php:808
|
26 |
+
#: google-sitemap-plugin.php:1189 google-sitemap-plugin.php:1202
|
27 |
#: includes/class-gglstmp-settings.php:27
|
28 |
msgid "Settings"
|
29 |
msgstr "Nastavení"
|
30 |
|
31 |
+
#: google-sitemap-plugin.php:57 google-sitemap-plugin.php:58
|
32 |
+
#: google-sitemap-plugin.php:813
|
33 |
msgid "Custom Links"
|
34 |
msgstr "Uživatelské odkazy"
|
35 |
|
36 |
+
#: google-sitemap-plugin.php:76 includes/pro_banners.php:27
|
37 |
msgid "Upgrade to Pro"
|
38 |
msgstr "Aktualizovat na Pro"
|
39 |
|
40 |
+
#: google-sitemap-plugin.php:343
|
41 |
+
#, fuzzy
|
42 |
+
msgid "Post categories"
|
43 |
+
msgstr "Kategorie příspěvku"
|
44 |
+
|
45 |
+
#: google-sitemap-plugin.php:344
|
46 |
+
#, fuzzy
|
47 |
+
msgid "Post tags"
|
48 |
+
msgstr "Štítek příspěvku"
|
49 |
+
|
50 |
+
#: google-sitemap-plugin.php:809
|
51 |
+
#, fuzzy
|
52 |
+
msgid "Please enable JavaScript in your browser."
|
53 |
msgstr "Prosím, povolte JavaScript ve vašem prohlížeči."
|
54 |
|
55 |
+
#: google-sitemap-plugin.php:814
|
56 |
+
msgid "Add New"
|
57 |
+
msgstr ""
|
58 |
+
|
59 |
+
#: google-sitemap-plugin.php:855 google-sitemap-plugin.php:932
|
60 |
+
#: google-sitemap-plugin.php:982
|
61 |
msgid "Website"
|
62 |
msgstr "Webová stránka"
|
63 |
|
64 |
+
#: google-sitemap-plugin.php:866 google-sitemap-plugin.php:870
|
65 |
+
#: google-sitemap-plugin.php:948 google-sitemap-plugin.php:964
|
66 |
+
#: google-sitemap-plugin.php:986 google-sitemap-plugin.php:1000
|
67 |
msgid "Status"
|
68 |
msgstr "Stav"
|
69 |
|
70 |
+
#: google-sitemap-plugin.php:867 google-sitemap-plugin.php:890
|
71 |
+
#: google-sitemap-plugin.php:965
|
72 |
msgid "Not added"
|
73 |
msgstr "Nepřidáno"
|
74 |
|
75 |
+
#: google-sitemap-plugin.php:871 google-sitemap-plugin.php:893
|
76 |
+
#: google-sitemap-plugin.php:987 google-sitemap-plugin.php:1096
|
77 |
msgid "Added"
|
78 |
msgstr "Přidáno"
|
79 |
|
80 |
+
#: google-sitemap-plugin.php:873 google-sitemap-plugin.php:1042
|
81 |
+
#: google-sitemap-plugin.php:1054 google-sitemap-plugin.php:1068
|
82 |
msgid "Verification Status"
|
83 |
msgstr "Stav ověření"
|
84 |
|
85 |
+
#: google-sitemap-plugin.php:875
|
86 |
msgid "Verified"
|
87 |
msgstr "Ověřeno"
|
88 |
|
89 |
+
#: google-sitemap-plugin.php:877
|
90 |
msgid "Not verified"
|
91 |
msgstr "Nevěřeno"
|
92 |
|
93 |
+
#: google-sitemap-plugin.php:885 google-sitemap-plugin.php:1075
|
94 |
msgid "Sitemap Status"
|
95 |
msgstr "Stav sitemap.xml"
|
96 |
|
97 |
+
#: google-sitemap-plugin.php:895
|
98 |
msgid "Added with errors."
|
99 |
msgstr "Přidáno s chybami."
|
100 |
|
101 |
+
#: google-sitemap-plugin.php:895
|
102 |
msgid "View errors in Google Webmaster Tools"
|
103 |
msgstr "Zobrazit chyby v Google Webmaster Tools"
|
104 |
|
105 |
+
#: google-sitemap-plugin.php:898
|
106 |
msgid "Sitemap URL"
|
107 |
msgstr "URL sitemap.xml"
|
108 |
|
109 |
+
#: google-sitemap-plugin.php:901 google-sitemap-plugin.php:917
|
110 |
+
#: google-sitemap-plugin.php:967 google-sitemap-plugin.php:1002
|
111 |
+
#: google-sitemap-plugin.php:1039 google-sitemap-plugin.php:1070
|
112 |
+
#: google-sitemap-plugin.php:1109 google-sitemap-plugin.php:1128
|
113 |
+
#: includes/class-gglstmp-settings.php:379
|
114 |
msgid "Error"
|
115 |
msgstr "Chyba"
|
116 |
|
117 |
+
#: google-sitemap-plugin.php:901
|
118 |
msgid "Please check the sitemap file manually."
|
119 |
msgstr "Zkontrolujte soubor sitemap.xml manuálně."
|
120 |
|
121 |
+
#: google-sitemap-plugin.php:901 google-sitemap-plugin.php:919
|
122 |
+
#: google-sitemap-plugin.php:1004 google-sitemap-plugin.php:1043
|
123 |
+
#: google-sitemap-plugin.php:1072 google-sitemap-plugin.php:1111
|
124 |
+
#: includes/pro_banners.php:47 includes/class-gglstmp-settings.php:233
|
125 |
msgid "Learn More"
|
126 |
msgstr "Více informací"
|
127 |
|
128 |
+
#: google-sitemap-plugin.php:906 google-sitemap-plugin.php:955
|
129 |
+
#: google-sitemap-plugin.php:990 google-sitemap-plugin.php:1027
|
130 |
+
#: google-sitemap-plugin.php:1058 google-sitemap-plugin.php:1099
|
131 |
msgid "Unexpected error"
|
132 |
msgstr "Neočekávaná chyba"
|
133 |
|
134 |
+
#: google-sitemap-plugin.php:919 google-sitemap-plugin.php:1004
|
135 |
+
#: google-sitemap-plugin.php:1072
|
136 |
msgid "Manual verification required."
|
137 |
msgstr "Je vyžadováno ruční ověření."
|
138 |
|
139 |
+
#: google-sitemap-plugin.php:949
|
140 |
msgid "Deleted"
|
141 |
msgstr "Odstraněno"
|
142 |
|
143 |
+
#: google-sitemap-plugin.php:1019 google-sitemap-plugin.php:1022
|
144 |
+
#: google-sitemap-plugin.php:1038
|
145 |
msgid "Verification Code"
|
146 |
msgstr "Ověřovací kód"
|
147 |
|
148 |
+
#: google-sitemap-plugin.php:1020
|
149 |
msgid "Received and added to the site"
|
150 |
msgstr "Přijato a přidáno na web"
|
151 |
|
152 |
+
#: google-sitemap-plugin.php:1023
|
153 |
msgid "Received, but has not been added to the site"
|
154 |
msgstr "Přijato avšak nepřidáno na web"
|
155 |
|
156 |
+
#: google-sitemap-plugin.php:1111
|
157 |
msgid "Please add the sitemap file manually."
|
158 |
msgstr "Přidejte soubor sitemap.xml manuálně."
|
159 |
|
160 |
+
#: google-sitemap-plugin.php:1116
|
161 |
msgid "Error 404"
|
162 |
msgstr "Chyba 404"
|
163 |
|
164 |
+
#: google-sitemap-plugin.php:1118
|
165 |
#, php-format
|
166 |
msgid "The sitemap file %s not found."
|
167 |
msgstr "Soubor sitemap.xml %s nebyl nalezen."
|
168 |
|
169 |
+
#: google-sitemap-plugin.php:1128
|
170 |
msgid "The sitemap file not found."
|
171 |
msgstr "Soubor sitemap.xml nebyl nalezen."
|
172 |
|
173 |
+
#: google-sitemap-plugin.php:1203
|
174 |
msgid "FAQ"
|
175 |
msgstr "Často kladené otázky (FAQ)"
|
176 |
|
177 |
+
#: google-sitemap-plugin.php:1204
|
178 |
msgid "Support"
|
179 |
msgstr "Podpora"
|
180 |
|
181 |
+
#: includes/pro_banners.php:18
|
182 |
+
#, fuzzy
|
183 |
+
msgid "This option is available in Pro version of plugin"
|
184 |
+
msgstr "Toto nastavení je k dispozici v Pro verzi pluginu"
|
185 |
+
|
186 |
+
#: includes/pro_banners.php:21 includes/class-gglstmp-settings.php:218
|
187 |
+
#: includes/class-gglstmp-settings.php:323
|
188 |
+
msgid "Close"
|
189 |
+
msgstr "Zavřít"
|
190 |
+
|
191 |
+
#: includes/pro_banners.php:42 includes/pro_banners.php:106
|
192 |
+
#: includes/pro_banners.php:185
|
193 |
+
msgid "Change Frequency"
|
194 |
+
msgstr "Frekvence obnovy"
|
195 |
+
|
196 |
+
#: includes/pro_banners.php:45 includes/pro_banners.php:143
|
197 |
+
#: includes/pro_banners.php:151 includes/pro_banners.php:159
|
198 |
+
#: includes/pro_banners.php:167 includes/pro_banners.php:175
|
199 |
+
msgid "Monthly"
|
200 |
+
msgstr "Měsíčně"
|
201 |
+
|
202 |
+
#: includes/pro_banners.php:47
|
203 |
+
msgid ""
|
204 |
+
"This value provides general information to search engines and tell them how "
|
205 |
+
"frequently the page is likely to change. It may not correlate exactly to how "
|
206 |
+
"often they crawl the website."
|
207 |
+
msgstr ""
|
208 |
+
"Tato hodnota poskytuje obecné informace vyhledávačům a řekněte jim, jak "
|
209 |
+
"často se stránka mění. Což nemusí přesně korelovat s tím, jak často "
|
210 |
+
"procházejí web."
|
211 |
+
|
212 |
+
#: includes/pro_banners.php:51
|
213 |
+
msgid "External Sitemap Update Frequency"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: includes/pro_banners.php:53
|
217 |
+
msgid "day(-s)"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: includes/pro_banners.php:55
|
221 |
+
msgid ""
|
222 |
+
"This option sets how often the external index sitemap files should be "
|
223 |
+
"checked for updates."
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/pro_banners.php:69
|
227 |
+
msgid "Example of site pages' tree"
|
228 |
+
msgstr "Příklad stromu stránek webu"
|
229 |
+
|
230 |
+
#: includes/pro_banners.php:82
|
231 |
+
msgid "All"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: includes/pro_banners.php:83
|
235 |
+
msgid "Enabled"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: includes/pro_banners.php:84
|
239 |
+
msgid "Disabled"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: includes/pro_banners.php:88
|
243 |
+
msgid "Search"
|
244 |
+
msgstr "Hledání"
|
245 |
+
|
246 |
+
#: includes/pro_banners.php:93
|
247 |
+
msgid "Bulk Actions"
|
248 |
+
msgstr "Hromadné akce"
|
249 |
+
|
250 |
+
#: includes/pro_banners.php:95
|
251 |
+
msgid "Apply"
|
252 |
+
msgstr "Použít"
|
253 |
+
|
254 |
+
#: includes/pro_banners.php:97
|
255 |
+
msgid "items"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: includes/pro_banners.php:105 includes/pro_banners.php:184
|
259 |
+
msgid "Priority"
|
260 |
+
msgstr "Priorita"
|
261 |
+
|
262 |
+
#: includes/pro_banners.php:107 includes/pro_banners.php:186
|
263 |
+
msgid "Last Changed"
|
264 |
+
msgstr "Poslední změna"
|
265 |
+
|
266 |
+
#: includes/pro_banners.php:116
|
267 |
+
msgid "Please note"
|
268 |
+
msgstr "Upozorňujeme"
|
269 |
+
|
270 |
+
#: includes/pro_banners.php:117
|
271 |
+
#, fuzzy
|
272 |
+
msgid ""
|
273 |
+
"All URLs listed in the sitemap.xml must use the same protocol (HTTP or "
|
274 |
+
"HTTPS) and must be located on the same host as the sitemap.xml. For more "
|
275 |
+
"info see"
|
276 |
+
msgstr ""
|
277 |
+
"Všechny URL adresy uvedené v sitemap.xml musí používat stejný protokol (HTTP "
|
278 |
+
"nebo HTTPS) a nacházet se na stejném hostu jako sitemap.xml. Pro více "
|
279 |
+
"informací viz"
|
280 |
+
|
281 |
+
#: includes/pro_banners.php:117
|
282 |
+
msgid "here"
|
283 |
+
msgstr "zde"
|
284 |
+
|
285 |
+
#: includes/pro_banners.php:124
|
286 |
+
msgid "Always"
|
287 |
+
msgstr "Vždy"
|
288 |
+
|
289 |
+
#: includes/pro_banners.php:128
|
290 |
+
msgid "Save"
|
291 |
+
msgstr "Uložit"
|
292 |
+
|
293 |
+
#: includes/pro_banners.php:136
|
294 |
+
msgid "Edit"
|
295 |
+
msgstr ""
|
296 |
+
|
297 |
+
#: includes/pro_banners.php:137
|
298 |
+
msgid "Disable"
|
299 |
+
msgstr ""
|
300 |
+
|
301 |
+
#: includes/pro_banners.php:138 includes/class-gglstmp-settings.php:253
|
302 |
+
msgid "Delete"
|
303 |
+
msgstr "Smazat"
|
304 |
+
|
305 |
+
#: includes/pro_banners.php:141
|
306 |
+
msgid "Yes"
|
307 |
+
msgstr ""
|
308 |
+
|
309 |
+
#: includes/pro_banners.php:149 includes/pro_banners.php:157
|
310 |
+
#: includes/pro_banners.php:165 includes/pro_banners.php:173
|
311 |
+
msgid "No"
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
#: includes/class-gglstmp-settings.php:28
|
315 |
msgid "Structure"
|
316 |
msgstr "Struktura"
|
323 |
msgid "License Key"
|
324 |
msgstr "Licenční klíč"
|
325 |
|
326 |
+
#: includes/class-gglstmp-settings.php:147
|
|
|
|
|
|
|
|
|
327 |
msgid "Settings saved."
|
328 |
msgstr "Nastavení uloženo."
|
329 |
|
330 |
+
#: includes/class-gglstmp-settings.php:167
|
331 |
+
#, fuzzy, php-format
|
332 |
+
msgctxt "%robots.txt file link%"
|
333 |
+
msgid "Enable to add a sitemap file path to the %s file."
|
334 |
+
msgstr "Přidat cestu k souboru sitemap.xml do souboru %s."
|
335 |
+
|
336 |
+
#: includes/class-gglstmp-settings.php:172
|
337 |
#, php-format
|
338 |
+
msgctxt "%reading settings page link%"
|
339 |
+
msgid "\"Search Engine Visibility\" option have to be unmarked on the %s."
|
|
|
340 |
msgstr ""
|
|
|
|
|
341 |
|
342 |
+
#: includes/class-gglstmp-settings.php:176
|
343 |
+
#, fuzzy
|
344 |
+
msgctxt "...on the reading settings page."
|
345 |
+
msgid "Reading Settings page"
|
346 |
+
msgstr "Nastavení uloženo"
|
347 |
|
348 |
+
#: includes/class-gglstmp-settings.php:180
|
349 |
+
msgid ""
|
350 |
+
"Also, please add the following code to the beginning of your \".htaccess\" "
|
351 |
+
"file:"
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#: includes/class-gglstmp-settings.php:194
|
355 |
msgid "This option will be applied to all websites in the network."
|
356 |
msgstr "Tato volba bude použita pro všechny weby v síti."
|
357 |
|
358 |
+
#: includes/class-gglstmp-settings.php:197
|
359 |
msgid "Activate"
|
360 |
msgstr "Aktivovat"
|
361 |
|
362 |
+
#: includes/class-gglstmp-settings.php:201
|
363 |
msgid "Install Now"
|
364 |
msgstr "Instalovat nyní"
|
365 |
|
366 |
+
#: includes/class-gglstmp-settings.php:207
|
367 |
#, php-format
|
368 |
msgid "%s Plugin"
|
369 |
msgstr "%s Plugin"
|
370 |
|
371 |
+
#: includes/class-gglstmp-settings.php:209
|
372 |
#, php-format
|
373 |
msgid "Enable to allow XML files access using %s plugin."
|
374 |
msgstr "Povolte přístup ke XML souborům pomocí %s pluginu."
|
375 |
|
376 |
+
#: includes/class-gglstmp-settings.php:210
|
377 |
msgid "The following string will be added to your .htaccess file"
|
378 |
msgstr "Následující řetězec bude přidán do vašeho .htaccess souboru"
|
379 |
|
380 |
+
#: includes/class-gglstmp-settings.php:229
|
381 |
+
msgid "URLs Limit"
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
+
#: includes/class-gglstmp-settings.php:233
|
385 |
+
msgid ""
|
386 |
+
"A sitemap file can't contain more than 50,000 URLs and must be no larger "
|
387 |
+
"than 50 MB uncompressed."
|
388 |
+
msgstr ""
|
389 |
|
390 |
+
#: includes/class-gglstmp-settings.php:234
|
391 |
+
msgid "Decrease the limit if your sitemap exceeds file size limit."
|
392 |
+
msgstr ""
|
393 |
+
|
394 |
+
#: includes/class-gglstmp-settings.php:235
|
395 |
+
msgid ""
|
396 |
+
"When the limit is reached, the sitemap will be splitted into multiple files."
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: includes/class-gglstmp-settings.php:240
|
400 |
msgid "Google Webmaster Tools"
|
401 |
msgstr "Google Webmaster Tools"
|
402 |
|
403 |
+
#: includes/class-gglstmp-settings.php:243
|
404 |
msgid ""
|
405 |
"This hosting does not support сURL, so you cannot add a sitemap file "
|
406 |
"automatically."
|
408 |
"Váš hosting nepodporuje cURL, takže nemůžete přidat soubor sitemap.xml (do "
|
409 |
"Google?) automaticky."
|
410 |
|
411 |
+
#: includes/class-gglstmp-settings.php:246
|
412 |
msgid "Logout from Google Webmaster Tools"
|
413 |
msgstr "Odhlásit se z Google Webmaster Tools"
|
414 |
|
415 |
+
#: includes/class-gglstmp-settings.php:250
|
416 |
msgid "Manage Website with Google Webmaster Tools"
|
417 |
msgstr "Spravovat web s Google Webmaster Tools"
|
418 |
|
419 |
+
#: includes/class-gglstmp-settings.php:252
|
420 |
msgid "Add"
|
421 |
msgstr "Přidat"
|
422 |
|
423 |
#: includes/class-gglstmp-settings.php:254
|
|
|
|
|
|
|
|
|
424 |
msgid "Get Info"
|
425 |
msgstr "Získat informace"
|
426 |
|
427 |
+
#: includes/class-gglstmp-settings.php:256
|
428 |
msgid ""
|
429 |
"Add, delete or get info about this website using your Google Webmaster Tools "
|
430 |
"account."
|
432 |
"Přidat, odstranit nebo zobrazit informace o tomto webu pomocí účtu Google "
|
433 |
"Webmaster Tools."
|
434 |
|
435 |
+
#: includes/class-gglstmp-settings.php:264
|
436 |
msgid "Get Authorization Code"
|
437 |
msgstr "Získat autorizační kód"
|
438 |
|
439 |
+
#: includes/class-gglstmp-settings.php:267
|
440 |
msgid "Authorize"
|
441 |
msgstr "Schválit"
|
442 |
|
443 |
+
#: includes/class-gglstmp-settings.php:270
|
444 |
msgid "Invalid authorization code. Please try again."
|
445 |
msgstr "Neplatný autorizační kód. Zkuste to znovu."
|
446 |
|
447 |
+
#: includes/class-gglstmp-settings.php:275
|
448 |
msgid "You can also add your sitemap to Google Webmaster Tools manually."
|
449 |
msgstr "Můžete také přidat soubor sitemap.xml na Google Webmaster Tools ručně."
|
450 |
|
451 |
+
#: includes/class-gglstmp-settings.php:275
|
452 |
msgid "Read the instruction"
|
453 |
msgstr "Přečíst si instrukce"
|
454 |
|
455 |
+
#: includes/class-gglstmp-settings.php:290
|
456 |
msgid "Post category"
|
457 |
msgstr "Kategorie příspěvku"
|
458 |
|
459 |
+
#: includes/class-gglstmp-settings.php:291
|
460 |
msgid "Post tag"
|
461 |
msgstr "Štítek příspěvku"
|
462 |
|
463 |
+
#: includes/class-gglstmp-settings.php:293
|
464 |
msgid "Sitemap Structure"
|
465 |
msgstr "Struktura sitemap.xml"
|
466 |
|
467 |
+
#: includes/class-gglstmp-settings.php:298
|
468 |
msgid "Post Types"
|
469 |
msgstr "Typy příspěvků"
|
470 |
|
471 |
+
#: includes/class-gglstmp-settings.php:305
|
472 |
msgid "Enable to add post type links to the sitemap."
|
473 |
msgstr "Do souboru sitemap.xml přidat typy příspěvků."
|
474 |
|
475 |
+
#: includes/class-gglstmp-settings.php:309
|
476 |
msgid "Taxonomies"
|
477 |
msgstr "Taxonomie"
|
478 |
|
479 |
+
#: includes/class-gglstmp-settings.php:316
|
480 |
msgid "Enable to taxonomy links to the sitemap."
|
481 |
msgstr "Do souboru sitemap.xml přidat taxonomie."
|
482 |
|
483 |
+
#: includes/class-gglstmp-settings.php:370
|
484 |
+
msgid "Note"
|
485 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
486 |
|
487 |
+
#: includes/class-gglstmp-settings.php:370
|
488 |
+
msgid ""
|
489 |
+
"Another plugin is providing Google Client functionality and may interrupt "
|
490 |
+
"proper plugin work."
|
491 |
msgstr ""
|
|
|
492 |
|
493 |
+
#: includes/class-gglstmp-settings.php:380
|
494 |
#, php-format
|
495 |
msgid ""
|
496 |
"Can't access XML files on subsites. Add the following rule %s to your %s "
|
501 |
"následující pravidlo %s do souboru %s v %s po %s nebo zkuste instalovat, "
|
502 |
"aktivovat a povolit plugin %s Chcete-li vyřešit tuto chybu."
|
503 |
|
504 |
+
#: includes/class-gglstmp-settings.php:395
|
505 |
+
#, php-format
|
506 |
+
msgid "%s is in the site root directory."
|
507 |
+
msgstr "%s je v kořenovém adresáři webu."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
508 |
|
509 |
+
#: includes/class-gglstmp-settings.php:396
|
510 |
+
msgid "The Sitemap file"
|
511 |
+
msgstr "Soubor sitemap.xml"
|
|
|
|
|
|
|
|
|
|
|
512 |
|
513 |
+
#~ msgid "Cannot edit \"robots.txt\". Check your permissions"
|
514 |
+
#~ msgstr "Nelze upravit \"robots.txt\". Prosím, zkontrolujte oprávnění"
|
|
|
515 |
|
516 |
+
#~ msgid ""
|
517 |
+
#~ "Since you are using multisiting, the plugin does not allow to add a "
|
518 |
+
#~ "sitemap to %s."
|
519 |
+
#~ msgstr ""
|
520 |
+
#~ "Vzhledem k tomu, že používáte multisite, plugin neumožňuje přidat soubor "
|
521 |
+
#~ "sitemap.xml do %s."
|
522 |
|
523 |
+
#~ msgid "Cannot edit \"robot.txt\". Check your permissions"
|
524 |
+
#~ msgstr "Nelze upravit \"robot.txt\". Prosím, zkontrolujte oprávnění"
|
|
|
525 |
|
526 |
+
#~ msgid "The Sitemap file for this site has been deleted by network admin."
|
527 |
+
#~ msgstr ""
|
528 |
+
#~ "Soubor sitemap.xml pro tento web byl odstraněn sítovým administrátorem."
|
529 |
|
530 |
#~ msgid "Your Sitemap file has been created in the site root directory"
|
531 |
#~ msgstr "Váš soubor sitemap.xml byl vytvořen v kořenovém adresáři webu"
|
languages/google-sitemap-plugin-es_ES.mo
CHANGED
Binary file
|
languages/google-sitemap-plugin-es_ES.po
CHANGED
@@ -2,166 +2,309 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Sitemap\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <wp@bestwebsoft.com>\n"
|
9 |
-
"Language:
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit 1.
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: google-sitemap-plugin.php:38 google-sitemap-plugin.php:
|
21 |
-
#: includes/class-gglstmp-settings.php:
|
22 |
msgid "Google Sitemap Settings"
|
23 |
msgstr "Ajustes de Google Sitemap"
|
24 |
|
25 |
-
#: google-sitemap-plugin.php:
|
26 |
-
#: google-sitemap-plugin.php:
|
27 |
#: includes/class-gglstmp-settings.php:27
|
28 |
msgid "Settings"
|
29 |
msgstr "Configuración"
|
30 |
|
31 |
-
#: google-sitemap-plugin.php:
|
|
|
32 |
msgid "Custom Links"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: google-sitemap-plugin.php:
|
36 |
msgid "Upgrade to Pro"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: google-sitemap-plugin.php:
|
40 |
-
msgid "
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: google-sitemap-plugin.php:
|
44 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
msgid "Website"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: google-sitemap-plugin.php:
|
49 |
-
#: google-sitemap-plugin.php:
|
50 |
-
#: google-sitemap-plugin.php:
|
51 |
msgid "Status"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: google-sitemap-plugin.php:
|
55 |
-
#: google-sitemap-plugin.php:
|
56 |
msgid "Not added"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: google-sitemap-plugin.php:
|
60 |
-
#: google-sitemap-plugin.php:
|
61 |
msgid "Added"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: google-sitemap-plugin.php:
|
65 |
-
#: google-sitemap-plugin.php:
|
66 |
msgid "Verification Status"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: google-sitemap-plugin.php:
|
70 |
msgid "Verified"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: google-sitemap-plugin.php:
|
74 |
msgid "Not verified"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: google-sitemap-plugin.php:
|
78 |
msgid "Sitemap Status"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: google-sitemap-plugin.php:
|
82 |
msgid "Added with errors."
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: google-sitemap-plugin.php:
|
86 |
msgid "View errors in Google Webmaster Tools"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: google-sitemap-plugin.php:
|
90 |
msgid "Sitemap URL"
|
91 |
msgstr "Sitemap URL"
|
92 |
|
93 |
-
#: google-sitemap-plugin.php:
|
94 |
-
#: google-sitemap-plugin.php:
|
95 |
-
#: google-sitemap-plugin.php:
|
96 |
-
#: google-sitemap-plugin.php:
|
97 |
-
#: includes/class-gglstmp-settings.php:
|
98 |
msgid "Error"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: google-sitemap-plugin.php:
|
102 |
msgid "Please check the sitemap file manually."
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: google-sitemap-plugin.php:
|
106 |
-
#: google-sitemap-plugin.php:
|
107 |
-
#: google-sitemap-plugin.php:
|
108 |
-
#: includes/pro_banners.php:47
|
109 |
msgid "Learn More"
|
110 |
msgstr "Aprende más"
|
111 |
|
112 |
-
#: google-sitemap-plugin.php:
|
113 |
-
#: google-sitemap-plugin.php:
|
114 |
-
#: google-sitemap-plugin.php:
|
115 |
msgid "Unexpected error"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: google-sitemap-plugin.php:
|
119 |
-
#: google-sitemap-plugin.php:
|
120 |
msgid "Manual verification required."
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: google-sitemap-plugin.php:
|
124 |
msgid "Deleted"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: google-sitemap-plugin.php:
|
128 |
-
#: google-sitemap-plugin.php:
|
129 |
msgid "Verification Code"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: google-sitemap-plugin.php:
|
133 |
msgid "Received and added to the site"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: google-sitemap-plugin.php:
|
137 |
msgid "Received, but has not been added to the site"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: google-sitemap-plugin.php:
|
141 |
msgid "Please add the sitemap file manually."
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: google-sitemap-plugin.php:
|
145 |
msgid "Error 404"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: google-sitemap-plugin.php:
|
149 |
#, php-format
|
150 |
msgid "The sitemap file %s not found."
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: google-sitemap-plugin.php:
|
154 |
msgid "The sitemap file not found."
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: google-sitemap-plugin.php:
|
158 |
msgid "FAQ"
|
159 |
msgstr "FAQ"
|
160 |
|
161 |
-
#: google-sitemap-plugin.php:
|
162 |
msgid "Support"
|
163 |
msgstr "Soporte"
|
164 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
165 |
#: includes/class-gglstmp-settings.php:28
|
166 |
msgid "Structure"
|
167 |
msgstr ""
|
@@ -174,159 +317,170 @@ msgstr ""
|
|
174 |
msgid "License Key"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: includes/class-gglstmp-settings.php:
|
178 |
-
msgid "Cannot edit \"robots.txt\". Check your permissions"
|
179 |
-
msgstr "No puede editar \"robots.txt\". Compruebe los permisos del usuario"
|
180 |
-
|
181 |
-
#: includes/class-gglstmp-settings.php:167
|
182 |
msgid "Settings saved."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: includes/class-gglstmp-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
186 |
#, php-format
|
187 |
-
|
188 |
-
"
|
189 |
-
"to %s."
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: includes/class-gglstmp-settings.php:
|
193 |
-
#,
|
194 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: includes/class-gglstmp-settings.php:
|
198 |
msgid "This option will be applied to all websites in the network."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: includes/class-gglstmp-settings.php:
|
202 |
msgid "Activate"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: includes/class-gglstmp-settings.php:
|
206 |
msgid "Install Now"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: includes/class-gglstmp-settings.php:
|
210 |
#, php-format
|
211 |
msgid "%s Plugin"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: includes/class-gglstmp-settings.php:
|
215 |
#, php-format
|
216 |
msgid "Enable to allow XML files access using %s plugin."
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: includes/class-gglstmp-settings.php:
|
220 |
msgid "The following string will be added to your .htaccess file"
|
221 |
msgstr "La siguiente cuerda se añadirá al su archivo .htaccess"
|
222 |
|
223 |
-
#: includes/class-gglstmp-settings.php:
|
224 |
-
|
225 |
-
|
226 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
|
228 |
-
#: includes/class-gglstmp-settings.php:
|
229 |
msgid "Google Webmaster Tools"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: includes/class-gglstmp-settings.php:
|
233 |
msgid ""
|
234 |
"This hosting does not support сURL, so you cannot add a sitemap file "
|
235 |
"automatically."
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: includes/class-gglstmp-settings.php:
|
239 |
msgid "Logout from Google Webmaster Tools"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: includes/class-gglstmp-settings.php:
|
243 |
msgid "Manage Website with Google Webmaster Tools"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: includes/class-gglstmp-settings.php:
|
247 |
msgid "Add"
|
248 |
msgstr ""
|
249 |
|
250 |
#: includes/class-gglstmp-settings.php:254
|
251 |
-
msgid "Delete"
|
252 |
-
msgstr ""
|
253 |
-
|
254 |
-
#: includes/class-gglstmp-settings.php:255
|
255 |
msgid "Get Info"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: includes/class-gglstmp-settings.php:
|
259 |
msgid ""
|
260 |
"Add, delete or get info about this website using your Google Webmaster Tools "
|
261 |
"account."
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: includes/class-gglstmp-settings.php:
|
265 |
msgid "Get Authorization Code"
|
266 |
msgstr "Obtener el código de autorización"
|
267 |
|
268 |
-
#: includes/class-gglstmp-settings.php:
|
269 |
msgid "Authorize"
|
270 |
msgstr "Autorizar"
|
271 |
|
272 |
-
#: includes/class-gglstmp-settings.php:
|
273 |
msgid "Invalid authorization code. Please try again."
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: includes/class-gglstmp-settings.php:
|
277 |
msgid "You can also add your sitemap to Google Webmaster Tools manually."
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: includes/class-gglstmp-settings.php:
|
281 |
msgid "Read the instruction"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: includes/class-gglstmp-settings.php:
|
285 |
msgid "Post category"
|
286 |
-
msgstr "
|
287 |
|
288 |
-
#: includes/class-gglstmp-settings.php:
|
289 |
msgid "Post tag"
|
290 |
-
msgstr "
|
291 |
|
292 |
-
#: includes/class-gglstmp-settings.php:
|
293 |
msgid "Sitemap Structure"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: includes/class-gglstmp-settings.php:
|
297 |
msgid "Post Types"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: includes/class-gglstmp-settings.php:
|
301 |
msgid "Enable to add post type links to the sitemap."
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: includes/class-gglstmp-settings.php:
|
305 |
msgid "Taxonomies"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: includes/class-gglstmp-settings.php:
|
309 |
msgid "Enable to taxonomy links to the sitemap."
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: includes/class-gglstmp-settings.php:
|
313 |
-
msgid "
|
314 |
-
msgstr "No puede editar \"robot.txt\". Compruebe los permisos del usuario"
|
315 |
-
|
316 |
-
#: includes/class-gglstmp-settings.php:397
|
317 |
-
#, php-format
|
318 |
-
msgid "%s is in the site root directory."
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: includes/class-gglstmp-settings.php:
|
322 |
-
msgid "
|
323 |
-
|
324 |
-
|
325 |
-
#: includes/class-gglstmp-settings.php:399
|
326 |
-
msgid "The Sitemap file for this site has been deleted by network admin."
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: includes/class-gglstmp-settings.php:
|
330 |
#, php-format
|
331 |
msgid ""
|
332 |
"Can't access XML files on subsites. Add the following rule %s to your %s "
|
@@ -334,76 +488,20 @@ msgid ""
|
|
334 |
"resolve this error."
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: includes/
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
#: includes/pro_banners.php:42 includes/pro_banners.php:89
|
342 |
-
#: includes/pro_banners.php:148
|
343 |
-
msgid "Change Frequency"
|
344 |
-
msgstr "Cambiar la frecuencia "
|
345 |
-
|
346 |
-
#: includes/pro_banners.php:45 includes/pro_banners.php:117
|
347 |
-
#: includes/pro_banners.php:124 includes/pro_banners.php:131
|
348 |
-
#: includes/pro_banners.php:139
|
349 |
-
msgid "Monthly"
|
350 |
-
msgstr "Mensual"
|
351 |
-
|
352 |
-
#: includes/pro_banners.php:47
|
353 |
-
msgid ""
|
354 |
-
"This value provides general information to search engines and tell them how "
|
355 |
-
"frequently the page is likely to change. It may not correlate exactly to how "
|
356 |
-
"often they crawl the website."
|
357 |
-
msgstr ""
|
358 |
-
|
359 |
-
#: includes/pro_banners.php:60
|
360 |
-
msgid "Example of site pages' tree"
|
361 |
-
msgstr "Ejemplo de sitio páginas árbol "
|
362 |
-
|
363 |
-
#: includes/pro_banners.php:75
|
364 |
-
msgid "Search"
|
365 |
-
msgstr "Buscar"
|
366 |
-
|
367 |
-
#: includes/pro_banners.php:79
|
368 |
-
msgid "Bulk Actions"
|
369 |
-
msgstr "Acciones masivas"
|
370 |
-
|
371 |
-
#: includes/pro_banners.php:81
|
372 |
-
msgid "Apply"
|
373 |
-
msgstr "Aplicar"
|
374 |
-
|
375 |
-
#: includes/pro_banners.php:88 includes/pro_banners.php:147
|
376 |
-
msgid "Priority"
|
377 |
-
msgstr "Prioridad"
|
378 |
-
|
379 |
-
#: includes/pro_banners.php:90 includes/pro_banners.php:149
|
380 |
-
msgid "Last Changed"
|
381 |
-
msgstr "Último cambio"
|
382 |
-
|
383 |
-
#: includes/pro_banners.php:99
|
384 |
-
msgid "Please note"
|
385 |
-
msgstr "Tenga en cuenta"
|
386 |
-
|
387 |
-
#: includes/pro_banners.php:100
|
388 |
-
msgid ""
|
389 |
-
"All URLs listed in the sitemap.xml must use the same protocol ( HTTP or "
|
390 |
-
"HTTPS ) and reside on the same host as the sitemap.xml. For more info see"
|
391 |
msgstr ""
|
392 |
-
"Todas las URL enumeradas en el sitemap.xml deben utilizar el mismo protocolo "
|
393 |
-
"(HTTP o HTTPS) y residir en el mismo host como el sitemap.xml. Para obtener "
|
394 |
-
"más información, vea"
|
395 |
|
396 |
-
#: includes/
|
397 |
-
msgid "
|
398 |
-
msgstr "
|
399 |
|
400 |
-
|
401 |
-
|
402 |
-
msgstr "Siempre"
|
403 |
|
404 |
-
|
405 |
-
|
406 |
-
msgstr ""
|
407 |
|
408 |
#~ msgid "Save link"
|
409 |
#~ msgstr "Guardar enlace"
|
@@ -469,9 +567,6 @@ msgstr ""
|
|
469 |
#~ "Puesto que usted está usando multisiting, el plugin no permite agregar un "
|
470 |
#~ "sitemap a robots.txt"
|
471 |
|
472 |
-
#~ msgid "add sitemap file path in"
|
473 |
-
#~ msgstr "añadir sitemap archivo de la ruta en"
|
474 |
-
|
475 |
#~ msgid "Add post types and taxonomies links to the sitemap"
|
476 |
#~ msgstr "Agregar post tipos y taxonomías enlaces a la sitemap"
|
477 |
|
@@ -739,12 +834,6 @@ msgstr ""
|
|
739 |
#~ msgid "Go"
|
740 |
#~ msgstr "Перейти на"
|
741 |
|
742 |
-
#~ msgid "Post categories"
|
743 |
-
#~ msgstr "Рубрики записей"
|
744 |
-
|
745 |
-
#~ msgid "Post tags"
|
746 |
-
#~ msgstr "Метки записей"
|
747 |
-
|
748 |
#~ msgid ""
|
749 |
#~ "Please choose the necessary post types the links to which are to be added "
|
750 |
#~ "to the sitemap:"
|
@@ -858,9 +947,6 @@ msgstr ""
|
|
858 |
#~ msgstr ""
|
859 |
#~ "Поздравляем! PRO версия плагина была успешно загружена и активирована."
|
860 |
|
861 |
-
#~ msgid "the setting page"
|
862 |
-
#~ msgstr "страницу настроек"
|
863 |
-
|
864 |
#~ msgid "You will be redirected automatically in 5 seconds."
|
865 |
#~ msgstr "Вы будете перенаправлены автоматически через 5 секунд."
|
866 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Sitemap\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-08-14 20:18+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-08-14 20:18+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <wp@bestwebsoft.com>\n"
|
9 |
+
"Language: es_ES\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2c;_x:1,2c\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 1.5.4\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: google-sitemap-plugin.php:38 google-sitemap-plugin.php:48
|
21 |
+
#: includes/class-gglstmp-settings.php:157
|
22 |
msgid "Google Sitemap Settings"
|
23 |
msgstr "Ajustes de Google Sitemap"
|
24 |
|
25 |
+
#: google-sitemap-plugin.php:49 google-sitemap-plugin.php:808
|
26 |
+
#: google-sitemap-plugin.php:1189 google-sitemap-plugin.php:1202
|
27 |
#: includes/class-gglstmp-settings.php:27
|
28 |
msgid "Settings"
|
29 |
msgstr "Configuración"
|
30 |
|
31 |
+
#: google-sitemap-plugin.php:57 google-sitemap-plugin.php:58
|
32 |
+
#: google-sitemap-plugin.php:813
|
33 |
msgid "Custom Links"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: google-sitemap-plugin.php:76 includes/pro_banners.php:27
|
37 |
msgid "Upgrade to Pro"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: google-sitemap-plugin.php:343
|
41 |
+
msgid "Post categories"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: google-sitemap-plugin.php:344
|
45 |
+
msgid "Post tags"
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
+
#: google-sitemap-plugin.php:809
|
49 |
+
msgid "Please enable JavaScript in your browser."
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#: google-sitemap-plugin.php:814
|
53 |
+
msgid "Add New"
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
+
#: google-sitemap-plugin.php:855 google-sitemap-plugin.php:932
|
57 |
+
#: google-sitemap-plugin.php:982
|
58 |
msgid "Website"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: google-sitemap-plugin.php:866 google-sitemap-plugin.php:870
|
62 |
+
#: google-sitemap-plugin.php:948 google-sitemap-plugin.php:964
|
63 |
+
#: google-sitemap-plugin.php:986 google-sitemap-plugin.php:1000
|
64 |
msgid "Status"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: google-sitemap-plugin.php:867 google-sitemap-plugin.php:890
|
68 |
+
#: google-sitemap-plugin.php:965
|
69 |
msgid "Not added"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: google-sitemap-plugin.php:871 google-sitemap-plugin.php:893
|
73 |
+
#: google-sitemap-plugin.php:987 google-sitemap-plugin.php:1096
|
74 |
msgid "Added"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: google-sitemap-plugin.php:873 google-sitemap-plugin.php:1042
|
78 |
+
#: google-sitemap-plugin.php:1054 google-sitemap-plugin.php:1068
|
79 |
msgid "Verification Status"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: google-sitemap-plugin.php:875
|
83 |
msgid "Verified"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: google-sitemap-plugin.php:877
|
87 |
msgid "Not verified"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: google-sitemap-plugin.php:885 google-sitemap-plugin.php:1075
|
91 |
msgid "Sitemap Status"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: google-sitemap-plugin.php:895
|
95 |
msgid "Added with errors."
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: google-sitemap-plugin.php:895
|
99 |
msgid "View errors in Google Webmaster Tools"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: google-sitemap-plugin.php:898
|
103 |
msgid "Sitemap URL"
|
104 |
msgstr "Sitemap URL"
|
105 |
|
106 |
+
#: google-sitemap-plugin.php:901 google-sitemap-plugin.php:917
|
107 |
+
#: google-sitemap-plugin.php:967 google-sitemap-plugin.php:1002
|
108 |
+
#: google-sitemap-plugin.php:1039 google-sitemap-plugin.php:1070
|
109 |
+
#: google-sitemap-plugin.php:1109 google-sitemap-plugin.php:1128
|
110 |
+
#: includes/class-gglstmp-settings.php:379
|
111 |
msgid "Error"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: google-sitemap-plugin.php:901
|
115 |
msgid "Please check the sitemap file manually."
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: google-sitemap-plugin.php:901 google-sitemap-plugin.php:919
|
119 |
+
#: google-sitemap-plugin.php:1004 google-sitemap-plugin.php:1043
|
120 |
+
#: google-sitemap-plugin.php:1072 google-sitemap-plugin.php:1111
|
121 |
+
#: includes/pro_banners.php:47 includes/class-gglstmp-settings.php:233
|
122 |
msgid "Learn More"
|
123 |
msgstr "Aprende más"
|
124 |
|
125 |
+
#: google-sitemap-plugin.php:906 google-sitemap-plugin.php:955
|
126 |
+
#: google-sitemap-plugin.php:990 google-sitemap-plugin.php:1027
|
127 |
+
#: google-sitemap-plugin.php:1058 google-sitemap-plugin.php:1099
|
128 |
msgid "Unexpected error"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: google-sitemap-plugin.php:919 google-sitemap-plugin.php:1004
|
132 |
+
#: google-sitemap-plugin.php:1072
|
133 |
msgid "Manual verification required."
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: google-sitemap-plugin.php:949
|
137 |
msgid "Deleted"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: google-sitemap-plugin.php:1019 google-sitemap-plugin.php:1022
|
141 |
+
#: google-sitemap-plugin.php:1038
|
142 |
msgid "Verification Code"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: google-sitemap-plugin.php:1020
|
146 |
msgid "Received and added to the site"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: google-sitemap-plugin.php:1023
|
150 |
msgid "Received, but has not been added to the site"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: google-sitemap-plugin.php:1111
|
154 |
msgid "Please add the sitemap file manually."
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: google-sitemap-plugin.php:1116
|
158 |
msgid "Error 404"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: google-sitemap-plugin.php:1118
|
162 |
#, php-format
|
163 |
msgid "The sitemap file %s not found."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: google-sitemap-plugin.php:1128
|
167 |
msgid "The sitemap file not found."
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: google-sitemap-plugin.php:1203
|
171 |
msgid "FAQ"
|
172 |
msgstr "FAQ"
|
173 |
|
174 |
+
#: google-sitemap-plugin.php:1204
|
175 |
msgid "Support"
|
176 |
msgstr "Soporte"
|
177 |
|
178 |
+
#: includes/pro_banners.php:18
|
179 |
+
#, fuzzy
|
180 |
+
msgid "This option is available in Pro version of plugin"
|
181 |
+
msgstr "Esta configuración está disponible en la versión Pro"
|
182 |
+
|
183 |
+
#: includes/pro_banners.php:21 includes/class-gglstmp-settings.php:218
|
184 |
+
#: includes/class-gglstmp-settings.php:323
|
185 |
+
msgid "Close"
|
186 |
+
msgstr "Cerrar"
|
187 |
+
|
188 |
+
#: includes/pro_banners.php:42 includes/pro_banners.php:106
|
189 |
+
#: includes/pro_banners.php:185
|
190 |
+
msgid "Change Frequency"
|
191 |
+
msgstr "Cambiar la frecuencia "
|
192 |
+
|
193 |
+
#: includes/pro_banners.php:45 includes/pro_banners.php:143
|
194 |
+
#: includes/pro_banners.php:151 includes/pro_banners.php:159
|
195 |
+
#: includes/pro_banners.php:167 includes/pro_banners.php:175
|
196 |
+
msgid "Monthly"
|
197 |
+
msgstr "Mensual"
|
198 |
+
|
199 |
+
#: includes/pro_banners.php:47
|
200 |
+
msgid ""
|
201 |
+
"This value provides general information to search engines and tell them how "
|
202 |
+
"frequently the page is likely to change. It may not correlate exactly to how "
|
203 |
+
"often they crawl the website."
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/pro_banners.php:51
|
207 |
+
msgid "External Sitemap Update Frequency"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/pro_banners.php:53
|
211 |
+
msgid "day(-s)"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/pro_banners.php:55
|
215 |
+
msgid ""
|
216 |
+
"This option sets how often the external index sitemap files should be "
|
217 |
+
"checked for updates."
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: includes/pro_banners.php:69
|
221 |
+
msgid "Example of site pages' tree"
|
222 |
+
msgstr "Ejemplo de sitio páginas árbol "
|
223 |
+
|
224 |
+
#: includes/pro_banners.php:82
|
225 |
+
msgid "All"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: includes/pro_banners.php:83
|
229 |
+
msgid "Enabled"
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: includes/pro_banners.php:84
|
233 |
+
msgid "Disabled"
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: includes/pro_banners.php:88
|
237 |
+
msgid "Search"
|
238 |
+
msgstr "Buscar"
|
239 |
+
|
240 |
+
#: includes/pro_banners.php:93
|
241 |
+
msgid "Bulk Actions"
|
242 |
+
msgstr "Acciones masivas"
|
243 |
+
|
244 |
+
#: includes/pro_banners.php:95
|
245 |
+
msgid "Apply"
|
246 |
+
msgstr "Aplicar"
|
247 |
+
|
248 |
+
#: includes/pro_banners.php:97
|
249 |
+
msgid "items"
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: includes/pro_banners.php:105 includes/pro_banners.php:184
|
253 |
+
msgid "Priority"
|
254 |
+
msgstr "Prioridad"
|
255 |
+
|
256 |
+
#: includes/pro_banners.php:107 includes/pro_banners.php:186
|
257 |
+
msgid "Last Changed"
|
258 |
+
msgstr "Último cambio"
|
259 |
+
|
260 |
+
#: includes/pro_banners.php:116
|
261 |
+
msgid "Please note"
|
262 |
+
msgstr "Tenga en cuenta"
|
263 |
+
|
264 |
+
#: includes/pro_banners.php:117
|
265 |
+
#, fuzzy
|
266 |
+
msgid ""
|
267 |
+
"All URLs listed in the sitemap.xml must use the same protocol (HTTP or "
|
268 |
+
"HTTPS) and must be located on the same host as the sitemap.xml. For more "
|
269 |
+
"info see"
|
270 |
+
msgstr ""
|
271 |
+
"Todas las URL enumeradas en el sitemap.xml deben utilizar el mismo protocolo "
|
272 |
+
"(HTTP o HTTPS) y residir en el mismo host como el sitemap.xml. Para obtener "
|
273 |
+
"más información, vea"
|
274 |
+
|
275 |
+
#: includes/pro_banners.php:117
|
276 |
+
msgid "here"
|
277 |
+
msgstr "aquí"
|
278 |
+
|
279 |
+
#: includes/pro_banners.php:124
|
280 |
+
msgid "Always"
|
281 |
+
msgstr "Siempre"
|
282 |
+
|
283 |
+
#: includes/pro_banners.php:128
|
284 |
+
msgid "Save"
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: includes/pro_banners.php:136
|
288 |
+
msgid "Edit"
|
289 |
+
msgstr ""
|
290 |
+
|
291 |
+
#: includes/pro_banners.php:137
|
292 |
+
msgid "Disable"
|
293 |
+
msgstr ""
|
294 |
+
|
295 |
+
#: includes/pro_banners.php:138 includes/class-gglstmp-settings.php:253
|
296 |
+
msgid "Delete"
|
297 |
+
msgstr ""
|
298 |
+
|
299 |
+
#: includes/pro_banners.php:141
|
300 |
+
msgid "Yes"
|
301 |
+
msgstr ""
|
302 |
+
|
303 |
+
#: includes/pro_banners.php:149 includes/pro_banners.php:157
|
304 |
+
#: includes/pro_banners.php:165 includes/pro_banners.php:173
|
305 |
+
msgid "No"
|
306 |
+
msgstr ""
|
307 |
+
|
308 |
#: includes/class-gglstmp-settings.php:28
|
309 |
msgid "Structure"
|
310 |
msgstr ""
|
317 |
msgid "License Key"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: includes/class-gglstmp-settings.php:147
|
|
|
|
|
|
|
|
|
321 |
msgid "Settings saved."
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: includes/class-gglstmp-settings.php:167
|
325 |
+
#, fuzzy, php-format
|
326 |
+
msgctxt "%robots.txt file link%"
|
327 |
+
msgid "Enable to add a sitemap file path to the %s file."
|
328 |
+
msgstr "añadir sitemap archivo de la ruta en"
|
329 |
+
|
330 |
+
#: includes/class-gglstmp-settings.php:172
|
331 |
#, php-format
|
332 |
+
msgctxt "%reading settings page link%"
|
333 |
+
msgid "\"Search Engine Visibility\" option have to be unmarked on the %s."
|
|
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: includes/class-gglstmp-settings.php:176
|
337 |
+
#, fuzzy
|
338 |
+
msgctxt "...on the reading settings page."
|
339 |
+
msgid "Reading Settings page"
|
340 |
+
msgstr "страницу настроек"
|
341 |
+
|
342 |
+
#: includes/class-gglstmp-settings.php:180
|
343 |
+
msgid ""
|
344 |
+
"Also, please add the following code to the beginning of your \".htaccess\" "
|
345 |
+
"file:"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: includes/class-gglstmp-settings.php:194
|
349 |
msgid "This option will be applied to all websites in the network."
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: includes/class-gglstmp-settings.php:197
|
353 |
msgid "Activate"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: includes/class-gglstmp-settings.php:201
|
357 |
msgid "Install Now"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: includes/class-gglstmp-settings.php:207
|
361 |
#, php-format
|
362 |
msgid "%s Plugin"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: includes/class-gglstmp-settings.php:209
|
366 |
#, php-format
|
367 |
msgid "Enable to allow XML files access using %s plugin."
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: includes/class-gglstmp-settings.php:210
|
371 |
msgid "The following string will be added to your .htaccess file"
|
372 |
msgstr "La siguiente cuerda se añadirá al su archivo .htaccess"
|
373 |
|
374 |
+
#: includes/class-gglstmp-settings.php:229
|
375 |
+
msgid "URLs Limit"
|
376 |
+
msgstr ""
|
377 |
+
|
378 |
+
#: includes/class-gglstmp-settings.php:233
|
379 |
+
msgid ""
|
380 |
+
"A sitemap file can't contain more than 50,000 URLs and must be no larger "
|
381 |
+
"than 50 MB uncompressed."
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
+
#: includes/class-gglstmp-settings.php:234
|
385 |
+
msgid "Decrease the limit if your sitemap exceeds file size limit."
|
386 |
+
msgstr ""
|
387 |
+
|
388 |
+
#: includes/class-gglstmp-settings.php:235
|
389 |
+
msgid ""
|
390 |
+
"When the limit is reached, the sitemap will be splitted into multiple files."
|
391 |
+
msgstr ""
|
392 |
|
393 |
+
#: includes/class-gglstmp-settings.php:240
|
394 |
msgid "Google Webmaster Tools"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: includes/class-gglstmp-settings.php:243
|
398 |
msgid ""
|
399 |
"This hosting does not support сURL, so you cannot add a sitemap file "
|
400 |
"automatically."
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: includes/class-gglstmp-settings.php:246
|
404 |
msgid "Logout from Google Webmaster Tools"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: includes/class-gglstmp-settings.php:250
|
408 |
msgid "Manage Website with Google Webmaster Tools"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: includes/class-gglstmp-settings.php:252
|
412 |
msgid "Add"
|
413 |
msgstr ""
|
414 |
|
415 |
#: includes/class-gglstmp-settings.php:254
|
|
|
|
|
|
|
|
|
416 |
msgid "Get Info"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: includes/class-gglstmp-settings.php:256
|
420 |
msgid ""
|
421 |
"Add, delete or get info about this website using your Google Webmaster Tools "
|
422 |
"account."
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: includes/class-gglstmp-settings.php:264
|
426 |
msgid "Get Authorization Code"
|
427 |
msgstr "Obtener el código de autorización"
|
428 |
|
429 |
+
#: includes/class-gglstmp-settings.php:267
|
430 |
msgid "Authorize"
|
431 |
msgstr "Autorizar"
|
432 |
|
433 |
+
#: includes/class-gglstmp-settings.php:270
|
434 |
msgid "Invalid authorization code. Please try again."
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: includes/class-gglstmp-settings.php:275
|
438 |
msgid "You can also add your sitemap to Google Webmaster Tools manually."
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: includes/class-gglstmp-settings.php:275
|
442 |
msgid "Read the instruction"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: includes/class-gglstmp-settings.php:290
|
446 |
msgid "Post category"
|
447 |
+
msgstr ""
|
448 |
|
449 |
+
#: includes/class-gglstmp-settings.php:291
|
450 |
msgid "Post tag"
|
451 |
+
msgstr ""
|
452 |
|
453 |
+
#: includes/class-gglstmp-settings.php:293
|
454 |
msgid "Sitemap Structure"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: includes/class-gglstmp-settings.php:298
|
458 |
msgid "Post Types"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: includes/class-gglstmp-settings.php:305
|
462 |
msgid "Enable to add post type links to the sitemap."
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: includes/class-gglstmp-settings.php:309
|
466 |
msgid "Taxonomies"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: includes/class-gglstmp-settings.php:316
|
470 |
msgid "Enable to taxonomy links to the sitemap."
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: includes/class-gglstmp-settings.php:370
|
474 |
+
msgid "Note"
|
|
|
|
|
|
|
|
|
|
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: includes/class-gglstmp-settings.php:370
|
478 |
+
msgid ""
|
479 |
+
"Another plugin is providing Google Client functionality and may interrupt "
|
480 |
+
"proper plugin work."
|
|
|
|
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: includes/class-gglstmp-settings.php:380
|
484 |
#, php-format
|
485 |
msgid ""
|
486 |
"Can't access XML files on subsites. Add the following rule %s to your %s "
|
488 |
"resolve this error."
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: includes/class-gglstmp-settings.php:395
|
492 |
+
#, php-format
|
493 |
+
msgid "%s is in the site root directory."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
494 |
msgstr ""
|
|
|
|
|
|
|
495 |
|
496 |
+
#: includes/class-gglstmp-settings.php:396
|
497 |
+
msgid "The Sitemap file"
|
498 |
+
msgstr "El archivo de Sitemap"
|
499 |
|
500 |
+
#~ msgid "Cannot edit \"robots.txt\". Check your permissions"
|
501 |
+
#~ msgstr "No puede editar \"robots.txt\". Compruebe los permisos del usuario"
|
|
|
502 |
|
503 |
+
#~ msgid "Cannot edit \"robot.txt\". Check your permissions"
|
504 |
+
#~ msgstr "No puede editar \"robot.txt\". Compruebe los permisos del usuario"
|
|
|
505 |
|
506 |
#~ msgid "Save link"
|
507 |
#~ msgstr "Guardar enlace"
|
567 |
#~ "Puesto que usted está usando multisiting, el plugin no permite agregar un "
|
568 |
#~ "sitemap a robots.txt"
|
569 |
|
|
|
|
|
|
|
570 |
#~ msgid "Add post types and taxonomies links to the sitemap"
|
571 |
#~ msgstr "Agregar post tipos y taxonomías enlaces a la sitemap"
|
572 |
|
834 |
#~ msgid "Go"
|
835 |
#~ msgstr "Перейти на"
|
836 |
|
|
|
|
|
|
|
|
|
|
|
|
|
837 |
#~ msgid ""
|
838 |
#~ "Please choose the necessary post types the links to which are to be added "
|
839 |
#~ "to the sitemap:"
|
947 |
#~ msgstr ""
|
948 |
#~ "Поздравляем! PRO версия плагина была успешно загружена и активирована."
|
949 |
|
|
|
|
|
|
|
950 |
#~ msgid "You will be redirected automatically in 5 seconds."
|
951 |
#~ msgstr "Вы будете перенаправлены автоматически через 5 секунд."
|
952 |
|
languages/google-sitemap-plugin-ru_RU.mo
CHANGED
Binary file
|
languages/google-sitemap-plugin-ru_RU.po
CHANGED
@@ -2,165 +2,313 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Sitemap\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit 1.
|
|
|
|
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: google-sitemap-plugin.php:38 google-sitemap-plugin.php:
|
20 |
-
#: includes/class-gglstmp-settings.php:
|
21 |
msgid "Google Sitemap Settings"
|
22 |
msgstr "Настройки Google Sitemap"
|
23 |
|
24 |
-
#: google-sitemap-plugin.php:
|
25 |
-
#: google-sitemap-plugin.php:
|
26 |
#: includes/class-gglstmp-settings.php:27
|
27 |
msgid "Settings"
|
28 |
msgstr "Настройки"
|
29 |
|
30 |
-
#: google-sitemap-plugin.php:
|
|
|
31 |
msgid "Custom Links"
|
32 |
msgstr "Пользовательские ссылки"
|
33 |
|
34 |
-
#: google-sitemap-plugin.php:
|
35 |
msgid "Upgrade to Pro"
|
36 |
-
msgstr "
|
37 |
|
38 |
-
#: google-sitemap-plugin.php:
|
39 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
msgstr "Пожалуйста, включите поддержку JavaScript в вашем браузере."
|
41 |
|
42 |
-
#: google-sitemap-plugin.php:
|
43 |
-
|
|
|
|
|
|
|
|
|
44 |
msgid "Website"
|
45 |
msgstr "Сайт"
|
46 |
|
47 |
-
#: google-sitemap-plugin.php:
|
48 |
-
#: google-sitemap-plugin.php:
|
49 |
-
#: google-sitemap-plugin.php:
|
50 |
msgid "Status"
|
51 |
msgstr "Статус"
|
52 |
|
53 |
-
#: google-sitemap-plugin.php:
|
54 |
-
#: google-sitemap-plugin.php:
|
55 |
msgid "Not added"
|
56 |
msgstr "Не добавлено"
|
57 |
|
58 |
-
#: google-sitemap-plugin.php:
|
59 |
-
#: google-sitemap-plugin.php:
|
60 |
msgid "Added"
|
61 |
msgstr "Добавлено"
|
62 |
|
63 |
-
#: google-sitemap-plugin.php:
|
64 |
-
#: google-sitemap-plugin.php:
|
65 |
msgid "Verification Status"
|
66 |
msgstr "Статус проверки"
|
67 |
|
68 |
-
#: google-sitemap-plugin.php:
|
69 |
msgid "Verified"
|
70 |
msgstr "Проверено"
|
71 |
|
72 |
-
#: google-sitemap-plugin.php:
|
73 |
msgid "Not verified"
|
74 |
msgstr "Не проверено"
|
75 |
|
76 |
-
#: google-sitemap-plugin.php:
|
77 |
msgid "Sitemap Status"
|
78 |
msgstr "Статус Sitemap"
|
79 |
|
80 |
-
#: google-sitemap-plugin.php:
|
81 |
msgid "Added with errors."
|
82 |
msgstr "Добавлено с ошибками."
|
83 |
|
84 |
-
#: google-sitemap-plugin.php:
|
85 |
msgid "View errors in Google Webmaster Tools"
|
86 |
-
msgstr "Просмотреть ошибки
|
87 |
|
88 |
-
#: google-sitemap-plugin.php:
|
89 |
msgid "Sitemap URL"
|
90 |
-
msgstr "URL
|
91 |
|
92 |
-
#: google-sitemap-plugin.php:
|
93 |
-
#: google-sitemap-plugin.php:
|
94 |
-
#: google-sitemap-plugin.php:
|
95 |
-
#: google-sitemap-plugin.php:
|
96 |
-
#: includes/class-gglstmp-settings.php:
|
97 |
msgid "Error"
|
98 |
msgstr "Ошибка"
|
99 |
|
100 |
-
#: google-sitemap-plugin.php:
|
101 |
msgid "Please check the sitemap file manually."
|
102 |
-
msgstr "
|
103 |
|
104 |
-
#: google-sitemap-plugin.php:
|
105 |
-
#: google-sitemap-plugin.php:
|
106 |
-
#: google-sitemap-plugin.php:
|
107 |
-
#: includes/pro_banners.php:47
|
108 |
msgid "Learn More"
|
109 |
msgstr "Подробнее"
|
110 |
|
111 |
-
#: google-sitemap-plugin.php:
|
112 |
-
#: google-sitemap-plugin.php:
|
113 |
-
#: google-sitemap-plugin.php:
|
114 |
msgid "Unexpected error"
|
115 |
msgstr "Неожиданная ошибка"
|
116 |
|
117 |
-
#: google-sitemap-plugin.php:
|
118 |
-
#: google-sitemap-plugin.php:
|
119 |
msgid "Manual verification required."
|
120 |
msgstr "Требуется ручная проверка."
|
121 |
|
122 |
-
#: google-sitemap-plugin.php:
|
123 |
msgid "Deleted"
|
124 |
msgstr "Удален"
|
125 |
|
126 |
-
#: google-sitemap-plugin.php:
|
127 |
-
#: google-sitemap-plugin.php:
|
128 |
msgid "Verification Code"
|
129 |
-
msgstr "Код
|
130 |
|
131 |
-
#: google-sitemap-plugin.php:
|
132 |
msgid "Received and added to the site"
|
133 |
msgstr "Получен и добавлен на сайт"
|
134 |
|
135 |
-
#: google-sitemap-plugin.php:
|
136 |
msgid "Received, but has not been added to the site"
|
137 |
msgstr "Получен, но не добавлен на сайт"
|
138 |
|
139 |
-
#: google-sitemap-plugin.php:
|
140 |
msgid "Please add the sitemap file manually."
|
141 |
msgstr "Пожалуйста, добавьте файл Sitemap вручную."
|
142 |
|
143 |
-
#: google-sitemap-plugin.php:
|
144 |
msgid "Error 404"
|
145 |
msgstr "Ошибка 404"
|
146 |
|
147 |
-
#: google-sitemap-plugin.php:
|
148 |
#, php-format
|
149 |
msgid "The sitemap file %s not found."
|
150 |
msgstr "Файл sitemap %s не найден."
|
151 |
|
152 |
-
#: google-sitemap-plugin.php:
|
153 |
msgid "The sitemap file not found."
|
154 |
msgstr "Файл sitemap не найден."
|
155 |
|
156 |
-
#: google-sitemap-plugin.php:
|
157 |
msgid "FAQ"
|
158 |
msgstr "FAQ"
|
159 |
|
160 |
-
#: google-sitemap-plugin.php:
|
161 |
msgid "Support"
|
162 |
msgstr "Тех.поддержка"
|
163 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
164 |
#: includes/class-gglstmp-settings.php:28
|
165 |
msgid "Structure"
|
166 |
msgstr "Структура"
|
@@ -173,64 +321,89 @@ msgstr "Разное"
|
|
173 |
msgid "License Key"
|
174 |
msgstr "Лицензионный ключ"
|
175 |
|
176 |
-
#: includes/class-gglstmp-settings.php:
|
177 |
-
msgid "Cannot edit \"robots.txt\". Check your permissions"
|
178 |
-
msgstr "Невозможно отредактировать файл \"robots.txt\". Проверьте свои права"
|
179 |
-
|
180 |
-
#: includes/class-gglstmp-settings.php:167
|
181 |
msgid "Settings saved."
|
182 |
msgstr "Настройки сохранены."
|
183 |
|
184 |
-
#: includes/class-gglstmp-settings.php:
|
185 |
#, php-format
|
186 |
-
|
187 |
-
"
|
188 |
-
"
|
189 |
-
msgstr ""
|
190 |
-
"Поскольку вы используете мультисайт, плагин не позволяет добавлять sitemap в "
|
191 |
-
"%s."
|
192 |
|
193 |
-
#: includes/class-gglstmp-settings.php:
|
194 |
#, php-format
|
195 |
-
|
196 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
197 |
|
198 |
-
#: includes/class-gglstmp-settings.php:
|
199 |
msgid "This option will be applied to all websites in the network."
|
200 |
msgstr "Эта опция будет применена ко всем сайтам в сети."
|
201 |
|
202 |
-
#: includes/class-gglstmp-settings.php:
|
203 |
msgid "Activate"
|
204 |
msgstr "Активировать"
|
205 |
|
206 |
-
#: includes/class-gglstmp-settings.php:
|
207 |
msgid "Install Now"
|
208 |
msgstr "Установить Сейчас"
|
209 |
|
210 |
-
#: includes/class-gglstmp-settings.php:
|
211 |
#, php-format
|
212 |
msgid "%s Plugin"
|
213 |
msgstr "%s плагин"
|
214 |
|
215 |
-
#: includes/class-gglstmp-settings.php:
|
216 |
#, php-format
|
217 |
msgid "Enable to allow XML files access using %s plugin."
|
218 |
-
msgstr "
|
219 |
|
220 |
-
#: includes/class-gglstmp-settings.php:
|
221 |
msgid "The following string will be added to your .htaccess file"
|
222 |
msgstr "В ваш .htaccess файл будет добавлена следующая строка"
|
223 |
|
224 |
-
#: includes/class-gglstmp-settings.php:
|
225 |
-
|
226 |
-
|
227 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
228 |
|
229 |
-
#: includes/class-gglstmp-settings.php:
|
230 |
msgid "Google Webmaster Tools"
|
231 |
msgstr "Google Webmaster Tools"
|
232 |
|
233 |
-
#: includes/class-gglstmp-settings.php:
|
234 |
msgid ""
|
235 |
"This hosting does not support сURL, so you cannot add a sitemap file "
|
236 |
"automatically."
|
@@ -238,100 +411,91 @@ msgstr ""
|
|
238 |
"Ваш хостинг не поддерживает сURL, поэтому вы не можете добавить sitemap "
|
239 |
"автоматически."
|
240 |
|
241 |
-
#: includes/class-gglstmp-settings.php:
|
242 |
msgid "Logout from Google Webmaster Tools"
|
243 |
msgstr "Выйти из Google Webmaster Tools"
|
244 |
|
245 |
-
#: includes/class-gglstmp-settings.php:
|
246 |
msgid "Manage Website with Google Webmaster Tools"
|
247 |
msgstr "Управление веб-сайтом с помощью Google Webmaster Tools"
|
248 |
|
249 |
-
#: includes/class-gglstmp-settings.php:
|
250 |
msgid "Add"
|
251 |
msgstr "Добавить"
|
252 |
|
253 |
#: includes/class-gglstmp-settings.php:254
|
254 |
-
msgid "Delete"
|
255 |
-
msgstr "Удалить"
|
256 |
-
|
257 |
-
#: includes/class-gglstmp-settings.php:255
|
258 |
msgid "Get Info"
|
259 |
msgstr "Получить информацию"
|
260 |
|
261 |
-
#: includes/class-gglstmp-settings.php:
|
262 |
msgid ""
|
263 |
"Add, delete or get info about this website using your Google Webmaster Tools "
|
264 |
"account."
|
265 |
msgstr ""
|
266 |
-
"Добавьте, удалите или получите информацию
|
267 |
"учетной записи Google Webmaster Tools."
|
268 |
|
269 |
-
#: includes/class-gglstmp-settings.php:
|
270 |
msgid "Get Authorization Code"
|
271 |
msgstr "Получить код авторизации"
|
272 |
|
273 |
-
#: includes/class-gglstmp-settings.php:
|
274 |
msgid "Authorize"
|
275 |
msgstr "Авторизироваться"
|
276 |
|
277 |
-
#: includes/class-gglstmp-settings.php:
|
278 |
msgid "Invalid authorization code. Please try again."
|
279 |
msgstr "Недействительный код авторизации. Пожалуйста, попробуйте еще раз."
|
280 |
|
281 |
-
#: includes/class-gglstmp-settings.php:
|
282 |
msgid "You can also add your sitemap to Google Webmaster Tools manually."
|
283 |
msgstr "Вы также можете вручную добавить sitemap в Google Webmaster Tools."
|
284 |
|
285 |
-
#: includes/class-gglstmp-settings.php:
|
286 |
msgid "Read the instruction"
|
287 |
msgstr "Читать инструкцию"
|
288 |
|
289 |
-
#: includes/class-gglstmp-settings.php:
|
290 |
msgid "Post category"
|
291 |
msgstr "Рубрика записей"
|
292 |
|
293 |
-
#: includes/class-gglstmp-settings.php:
|
294 |
msgid "Post tag"
|
295 |
msgstr "Метка записей"
|
296 |
|
297 |
-
#: includes/class-gglstmp-settings.php:
|
298 |
msgid "Sitemap Structure"
|
299 |
msgstr "Структура Sitemap"
|
300 |
|
301 |
-
#: includes/class-gglstmp-settings.php:
|
302 |
msgid "Post Types"
|
303 |
-
msgstr "Типы
|
304 |
|
305 |
-
#: includes/class-gglstmp-settings.php:
|
306 |
msgid "Enable to add post type links to the sitemap."
|
307 |
-
msgstr "
|
308 |
|
309 |
-
#: includes/class-gglstmp-settings.php:
|
310 |
msgid "Taxonomies"
|
311 |
msgstr "Таксономии"
|
312 |
|
313 |
-
#: includes/class-gglstmp-settings.php:
|
314 |
msgid "Enable to taxonomy links to the sitemap."
|
315 |
-
msgstr "
|
316 |
-
|
317 |
-
#: includes/class-gglstmp-settings.php:358
|
318 |
-
msgid "Cannot edit \"robot.txt\". Check your permissions"
|
319 |
-
msgstr "Невозможно отредактировать файл \"robot.txt\". Проверьте свои права"
|
320 |
|
321 |
-
#: includes/class-gglstmp-settings.php:
|
322 |
-
|
323 |
-
|
324 |
-
msgstr "%s находится в корневом каталоге сайта."
|
325 |
|
326 |
-
#: includes/class-gglstmp-settings.php:
|
327 |
-
msgid "
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
|
334 |
-
#: includes/class-gglstmp-settings.php:
|
335 |
#, php-format
|
336 |
msgid ""
|
337 |
"Can't access XML files on subsites. Add the following rule %s to your %s "
|
@@ -342,79 +506,32 @@ msgstr ""
|
|
342 |
"правило %s в файл %s в %s после %s или установите, активируйте и включите "
|
343 |
"опцию плагина %s, чтобы устранить эту ошибку."
|
344 |
|
345 |
-
#: includes/
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
#: includes/pro_banners.php:42 includes/pro_banners.php:89
|
350 |
-
#: includes/pro_banners.php:148
|
351 |
-
msgid "Change Frequency"
|
352 |
-
msgstr "Частота обновления"
|
353 |
-
|
354 |
-
#: includes/pro_banners.php:45 includes/pro_banners.php:117
|
355 |
-
#: includes/pro_banners.php:124 includes/pro_banners.php:131
|
356 |
-
#: includes/pro_banners.php:139
|
357 |
-
msgid "Monthly"
|
358 |
-
msgstr "Ежемесячно"
|
359 |
-
|
360 |
-
#: includes/pro_banners.php:47
|
361 |
-
msgid ""
|
362 |
-
"This value provides general information to search engines and tell them how "
|
363 |
-
"frequently the page is likely to change. It may not correlate exactly to how "
|
364 |
-
"often they crawl the website."
|
365 |
-
msgstr ""
|
366 |
-
"Это значение предоставляет общую информацию поисковым системам и сообщает "
|
367 |
-
"им, как часто страница может измениться. Это может не точно соответствовать "
|
368 |
-
"тому, как часто они сканируют сайт."
|
369 |
-
|
370 |
-
#: includes/pro_banners.php:60
|
371 |
-
msgid "Example of site pages' tree"
|
372 |
-
msgstr "Пример дерева страниц сайта"
|
373 |
-
|
374 |
-
#: includes/pro_banners.php:75
|
375 |
-
msgid "Search"
|
376 |
-
msgstr "Поиск"
|
377 |
-
|
378 |
-
#: includes/pro_banners.php:79
|
379 |
-
msgid "Bulk Actions"
|
380 |
-
msgstr "Групповые действия"
|
381 |
-
|
382 |
-
#: includes/pro_banners.php:81
|
383 |
-
msgid "Apply"
|
384 |
-
msgstr "Применить"
|
385 |
-
|
386 |
-
#: includes/pro_banners.php:88 includes/pro_banners.php:147
|
387 |
-
msgid "Priority"
|
388 |
-
msgstr "Приоритет"
|
389 |
-
|
390 |
-
#: includes/pro_banners.php:90 includes/pro_banners.php:149
|
391 |
-
msgid "Last Changed"
|
392 |
-
msgstr "Дата"
|
393 |
|
394 |
-
#: includes/
|
395 |
-
msgid "
|
396 |
-
msgstr "
|
397 |
|
398 |
-
|
399 |
-
|
400 |
-
"
|
401 |
-
"HTTPS ) and reside on the same host as the sitemap.xml. For more info see"
|
402 |
-
msgstr ""
|
403 |
-
"Все URL-адреса, перечисленные в файле sitemap.xml, должны использовать один "
|
404 |
-
"и тот же протокол( HTTP или HTTPS ) и размещены на том же хосте, что и файл "
|
405 |
-
"sitemap.xml. Более подрообно, Вы можете прочитать"
|
406 |
|
407 |
-
|
408 |
-
|
409 |
-
|
|
|
|
|
|
|
410 |
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
|
415 |
-
|
416 |
-
|
417 |
-
msgstr "Сохранить"
|
418 |
|
419 |
#~ msgid "Verification code"
|
420 |
#~ msgstr "Код подтверждения"
|
@@ -747,12 +864,6 @@ msgstr "Сохранить"
|
|
747 |
#~ msgid "Go"
|
748 |
#~ msgstr "Перейти на"
|
749 |
|
750 |
-
#~ msgid "Post categories"
|
751 |
-
#~ msgstr "Рубрики записей"
|
752 |
-
|
753 |
-
#~ msgid "Post tags"
|
754 |
-
#~ msgstr "Метки записей"
|
755 |
-
|
756 |
#~ msgid ""
|
757 |
#~ "Please choose the necessary post types the links to which are to be added "
|
758 |
#~ "to the sitemap:"
|
@@ -866,9 +977,6 @@ msgstr "Сохранить"
|
|
866 |
#~ msgstr ""
|
867 |
#~ "Поздравляем! PRO версия плагина была успешно загружена и активирована."
|
868 |
|
869 |
-
#~ msgid "the setting page"
|
870 |
-
#~ msgstr "страницу настроек"
|
871 |
-
|
872 |
#~ msgid "You will be redirected automatically in 5 seconds."
|
873 |
#~ msgstr "Вы будете перенаправлены автоматически через 5 секунд."
|
874 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Sitemap\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-08-14 20:18+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-08-14 20:24+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 1.5.4\n"
|
17 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
18 |
+
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: google-sitemap-plugin.php:38 google-sitemap-plugin.php:48
|
22 |
+
#: includes/class-gglstmp-settings.php:157
|
23 |
msgid "Google Sitemap Settings"
|
24 |
msgstr "Настройки Google Sitemap"
|
25 |
|
26 |
+
#: google-sitemap-plugin.php:49 google-sitemap-plugin.php:808
|
27 |
+
#: google-sitemap-plugin.php:1189 google-sitemap-plugin.php:1202
|
28 |
#: includes/class-gglstmp-settings.php:27
|
29 |
msgid "Settings"
|
30 |
msgstr "Настройки"
|
31 |
|
32 |
+
#: google-sitemap-plugin.php:57 google-sitemap-plugin.php:58
|
33 |
+
#: google-sitemap-plugin.php:813
|
34 |
msgid "Custom Links"
|
35 |
msgstr "Пользовательские ссылки"
|
36 |
|
37 |
+
#: google-sitemap-plugin.php:76 includes/pro_banners.php:27
|
38 |
msgid "Upgrade to Pro"
|
39 |
+
msgstr "Обновить до Pro"
|
40 |
|
41 |
+
#: google-sitemap-plugin.php:343
|
42 |
+
msgid "Post categories"
|
43 |
+
msgstr "Рубрики записей"
|
44 |
+
|
45 |
+
#: google-sitemap-plugin.php:344
|
46 |
+
msgid "Post tags"
|
47 |
+
msgstr "Метки записей"
|
48 |
+
|
49 |
+
#: google-sitemap-plugin.php:809
|
50 |
+
msgid "Please enable JavaScript in your browser."
|
51 |
msgstr "Пожалуйста, включите поддержку JavaScript в вашем браузере."
|
52 |
|
53 |
+
#: google-sitemap-plugin.php:814
|
54 |
+
msgid "Add New"
|
55 |
+
msgstr "Добавить ссылку"
|
56 |
+
|
57 |
+
#: google-sitemap-plugin.php:855 google-sitemap-plugin.php:932
|
58 |
+
#: google-sitemap-plugin.php:982
|
59 |
msgid "Website"
|
60 |
msgstr "Сайт"
|
61 |
|
62 |
+
#: google-sitemap-plugin.php:866 google-sitemap-plugin.php:870
|
63 |
+
#: google-sitemap-plugin.php:948 google-sitemap-plugin.php:964
|
64 |
+
#: google-sitemap-plugin.php:986 google-sitemap-plugin.php:1000
|
65 |
msgid "Status"
|
66 |
msgstr "Статус"
|
67 |
|
68 |
+
#: google-sitemap-plugin.php:867 google-sitemap-plugin.php:890
|
69 |
+
#: google-sitemap-plugin.php:965
|
70 |
msgid "Not added"
|
71 |
msgstr "Не добавлено"
|
72 |
|
73 |
+
#: google-sitemap-plugin.php:871 google-sitemap-plugin.php:893
|
74 |
+
#: google-sitemap-plugin.php:987 google-sitemap-plugin.php:1096
|
75 |
msgid "Added"
|
76 |
msgstr "Добавлено"
|
77 |
|
78 |
+
#: google-sitemap-plugin.php:873 google-sitemap-plugin.php:1042
|
79 |
+
#: google-sitemap-plugin.php:1054 google-sitemap-plugin.php:1068
|
80 |
msgid "Verification Status"
|
81 |
msgstr "Статус проверки"
|
82 |
|
83 |
+
#: google-sitemap-plugin.php:875
|
84 |
msgid "Verified"
|
85 |
msgstr "Проверено"
|
86 |
|
87 |
+
#: google-sitemap-plugin.php:877
|
88 |
msgid "Not verified"
|
89 |
msgstr "Не проверено"
|
90 |
|
91 |
+
#: google-sitemap-plugin.php:885 google-sitemap-plugin.php:1075
|
92 |
msgid "Sitemap Status"
|
93 |
msgstr "Статус Sitemap"
|
94 |
|
95 |
+
#: google-sitemap-plugin.php:895
|
96 |
msgid "Added with errors."
|
97 |
msgstr "Добавлено с ошибками."
|
98 |
|
99 |
+
#: google-sitemap-plugin.php:895
|
100 |
msgid "View errors in Google Webmaster Tools"
|
101 |
+
msgstr "Просмотреть ошибки в Google Webmaster Tools"
|
102 |
|
103 |
+
#: google-sitemap-plugin.php:898
|
104 |
msgid "Sitemap URL"
|
105 |
+
msgstr "Sitemap URL"
|
106 |
|
107 |
+
#: google-sitemap-plugin.php:901 google-sitemap-plugin.php:917
|
108 |
+
#: google-sitemap-plugin.php:967 google-sitemap-plugin.php:1002
|
109 |
+
#: google-sitemap-plugin.php:1039 google-sitemap-plugin.php:1070
|
110 |
+
#: google-sitemap-plugin.php:1109 google-sitemap-plugin.php:1128
|
111 |
+
#: includes/class-gglstmp-settings.php:379
|
112 |
msgid "Error"
|
113 |
msgstr "Ошибка"
|
114 |
|
115 |
+
#: google-sitemap-plugin.php:901
|
116 |
msgid "Please check the sitemap file manually."
|
117 |
+
msgstr "Пожалуйста, проверьте файл Sitemap вручную."
|
118 |
|
119 |
+
#: google-sitemap-plugin.php:901 google-sitemap-plugin.php:919
|
120 |
+
#: google-sitemap-plugin.php:1004 google-sitemap-plugin.php:1043
|
121 |
+
#: google-sitemap-plugin.php:1072 google-sitemap-plugin.php:1111
|
122 |
+
#: includes/pro_banners.php:47 includes/class-gglstmp-settings.php:233
|
123 |
msgid "Learn More"
|
124 |
msgstr "Подробнее"
|
125 |
|
126 |
+
#: google-sitemap-plugin.php:906 google-sitemap-plugin.php:955
|
127 |
+
#: google-sitemap-plugin.php:990 google-sitemap-plugin.php:1027
|
128 |
+
#: google-sitemap-plugin.php:1058 google-sitemap-plugin.php:1099
|
129 |
msgid "Unexpected error"
|
130 |
msgstr "Неожиданная ошибка"
|
131 |
|
132 |
+
#: google-sitemap-plugin.php:919 google-sitemap-plugin.php:1004
|
133 |
+
#: google-sitemap-plugin.php:1072
|
134 |
msgid "Manual verification required."
|
135 |
msgstr "Требуется ручная проверка."
|
136 |
|
137 |
+
#: google-sitemap-plugin.php:949
|
138 |
msgid "Deleted"
|
139 |
msgstr "Удален"
|
140 |
|
141 |
+
#: google-sitemap-plugin.php:1019 google-sitemap-plugin.php:1022
|
142 |
+
#: google-sitemap-plugin.php:1038
|
143 |
msgid "Verification Code"
|
144 |
+
msgstr "Код подтверждения"
|
145 |
|
146 |
+
#: google-sitemap-plugin.php:1020
|
147 |
msgid "Received and added to the site"
|
148 |
msgstr "Получен и добавлен на сайт"
|
149 |
|
150 |
+
#: google-sitemap-plugin.php:1023
|
151 |
msgid "Received, but has not been added to the site"
|
152 |
msgstr "Получен, но не добавлен на сайт"
|
153 |
|
154 |
+
#: google-sitemap-plugin.php:1111
|
155 |
msgid "Please add the sitemap file manually."
|
156 |
msgstr "Пожалуйста, добавьте файл Sitemap вручную."
|
157 |
|
158 |
+
#: google-sitemap-plugin.php:1116
|
159 |
msgid "Error 404"
|
160 |
msgstr "Ошибка 404"
|
161 |
|
162 |
+
#: google-sitemap-plugin.php:1118
|
163 |
#, php-format
|
164 |
msgid "The sitemap file %s not found."
|
165 |
msgstr "Файл sitemap %s не найден."
|
166 |
|
167 |
+
#: google-sitemap-plugin.php:1128
|
168 |
msgid "The sitemap file not found."
|
169 |
msgstr "Файл sitemap не найден."
|
170 |
|
171 |
+
#: google-sitemap-plugin.php:1203
|
172 |
msgid "FAQ"
|
173 |
msgstr "FAQ"
|
174 |
|
175 |
+
#: google-sitemap-plugin.php:1204
|
176 |
msgid "Support"
|
177 |
msgstr "Тех.поддержка"
|
178 |
|
179 |
+
#: includes/pro_banners.php:18
|
180 |
+
msgid "This option is available in Pro version of plugin"
|
181 |
+
msgstr "Данный функционал доступен в Pro версии плагина"
|
182 |
+
|
183 |
+
#: includes/pro_banners.php:21 includes/class-gglstmp-settings.php:218
|
184 |
+
#: includes/class-gglstmp-settings.php:323
|
185 |
+
msgid "Close"
|
186 |
+
msgstr "Закрыть"
|
187 |
+
|
188 |
+
#: includes/pro_banners.php:42 includes/pro_banners.php:106
|
189 |
+
#: includes/pro_banners.php:185
|
190 |
+
msgid "Change Frequency"
|
191 |
+
msgstr "Частота обновления"
|
192 |
+
|
193 |
+
#: includes/pro_banners.php:45 includes/pro_banners.php:143
|
194 |
+
#: includes/pro_banners.php:151 includes/pro_banners.php:159
|
195 |
+
#: includes/pro_banners.php:167 includes/pro_banners.php:175
|
196 |
+
msgid "Monthly"
|
197 |
+
msgstr "Ежемесячно"
|
198 |
+
|
199 |
+
#: includes/pro_banners.php:47
|
200 |
+
msgid ""
|
201 |
+
"This value provides general information to search engines and tell them how "
|
202 |
+
"frequently the page is likely to change. It may not correlate exactly to how "
|
203 |
+
"often they crawl the website."
|
204 |
+
msgstr ""
|
205 |
+
"Это значение предоставляет общую информацию поисковым системам и сообщает "
|
206 |
+
"им, как часто страница может измениться. Это может не точно соответствовать "
|
207 |
+
"тому, как часто они сканируют сайт."
|
208 |
+
|
209 |
+
#: includes/pro_banners.php:51
|
210 |
+
msgid "External Sitemap Update Frequency"
|
211 |
+
msgstr "Частота обновления внешних sitemap"
|
212 |
+
|
213 |
+
#: includes/pro_banners.php:53
|
214 |
+
msgid "day(-s)"
|
215 |
+
msgstr "дней"
|
216 |
+
|
217 |
+
#: includes/pro_banners.php:55
|
218 |
+
msgid ""
|
219 |
+
"This option sets how often the external index sitemap files should be "
|
220 |
+
"checked for updates."
|
221 |
+
msgstr ""
|
222 |
+
"Эта опция устанавливает, как часто будет выполняться проверка на наличие "
|
223 |
+
"обновлений во внешних файлах sitemap."
|
224 |
+
|
225 |
+
#: includes/pro_banners.php:69
|
226 |
+
msgid "Example of site pages' tree"
|
227 |
+
msgstr "Пример дерева страниц сайта"
|
228 |
+
|
229 |
+
#: includes/pro_banners.php:82
|
230 |
+
msgid "All"
|
231 |
+
msgstr "Все"
|
232 |
+
|
233 |
+
#: includes/pro_banners.php:83
|
234 |
+
msgid "Enabled"
|
235 |
+
msgstr "Активные"
|
236 |
+
|
237 |
+
#: includes/pro_banners.php:84
|
238 |
+
msgid "Disabled"
|
239 |
+
msgstr "Неактивные"
|
240 |
+
|
241 |
+
#: includes/pro_banners.php:88
|
242 |
+
msgid "Search"
|
243 |
+
msgstr "Поиск"
|
244 |
+
|
245 |
+
#: includes/pro_banners.php:93
|
246 |
+
msgid "Bulk Actions"
|
247 |
+
msgstr "Групповые действия"
|
248 |
+
|
249 |
+
#: includes/pro_banners.php:95
|
250 |
+
msgid "Apply"
|
251 |
+
msgstr "Применить"
|
252 |
+
|
253 |
+
#: includes/pro_banners.php:97
|
254 |
+
msgid "items"
|
255 |
+
msgstr "элементов"
|
256 |
+
|
257 |
+
#: includes/pro_banners.php:105 includes/pro_banners.php:184
|
258 |
+
msgid "Priority"
|
259 |
+
msgstr "Приоритет"
|
260 |
+
|
261 |
+
#: includes/pro_banners.php:107 includes/pro_banners.php:186
|
262 |
+
msgid "Last Changed"
|
263 |
+
msgstr "Дата изменения"
|
264 |
+
|
265 |
+
#: includes/pro_banners.php:116
|
266 |
+
msgid "Please note"
|
267 |
+
msgstr "Пожалуйста, учтите"
|
268 |
+
|
269 |
+
#: includes/pro_banners.php:117
|
270 |
+
msgid ""
|
271 |
+
"All URLs listed in the sitemap.xml must use the same protocol (HTTP or "
|
272 |
+
"HTTPS) and must be located on the same host as the sitemap.xml. For more "
|
273 |
+
"info see"
|
274 |
+
msgstr ""
|
275 |
+
"Все URL-адреса, перечисленные в файле sitemap.xml, должны использовать один "
|
276 |
+
"и тот же протокол( HTTP или HTTPS ) и размещены на том же хосте, что и файл "
|
277 |
+
"sitemap.xml. Более подробно Вы можете прочитать"
|
278 |
+
|
279 |
+
#: includes/pro_banners.php:117
|
280 |
+
msgid "here"
|
281 |
+
msgstr "здесь"
|
282 |
+
|
283 |
+
#: includes/pro_banners.php:124
|
284 |
+
msgid "Always"
|
285 |
+
msgstr "Всегда"
|
286 |
+
|
287 |
+
#: includes/pro_banners.php:128
|
288 |
+
msgid "Save"
|
289 |
+
msgstr "Сохранить"
|
290 |
+
|
291 |
+
#: includes/pro_banners.php:136
|
292 |
+
msgid "Edit"
|
293 |
+
msgstr "Редактировать"
|
294 |
+
|
295 |
+
#: includes/pro_banners.php:137
|
296 |
+
msgid "Disable"
|
297 |
+
msgstr "Деактивировать"
|
298 |
+
|
299 |
+
#: includes/pro_banners.php:138 includes/class-gglstmp-settings.php:253
|
300 |
+
msgid "Delete"
|
301 |
+
msgstr "Удалить"
|
302 |
+
|
303 |
+
#: includes/pro_banners.php:141
|
304 |
+
msgid "Yes"
|
305 |
+
msgstr "Да"
|
306 |
+
|
307 |
+
#: includes/pro_banners.php:149 includes/pro_banners.php:157
|
308 |
+
#: includes/pro_banners.php:165 includes/pro_banners.php:173
|
309 |
+
msgid "No"
|
310 |
+
msgstr "Нет"
|
311 |
+
|
312 |
#: includes/class-gglstmp-settings.php:28
|
313 |
msgid "Structure"
|
314 |
msgstr "Структура"
|
321 |
msgid "License Key"
|
322 |
msgstr "Лицензионный ключ"
|
323 |
|
324 |
+
#: includes/class-gglstmp-settings.php:147
|
|
|
|
|
|
|
|
|
325 |
msgid "Settings saved."
|
326 |
msgstr "Настройки сохранены."
|
327 |
|
328 |
+
#: includes/class-gglstmp-settings.php:167
|
329 |
#, php-format
|
330 |
+
msgctxt "%robots.txt file link%"
|
331 |
+
msgid "Enable to add a sitemap file path to the %s file."
|
332 |
+
msgstr "Включите для добавления пути файла Sitemap в файл %s."
|
|
|
|
|
|
|
333 |
|
334 |
+
#: includes/class-gglstmp-settings.php:172
|
335 |
#, php-format
|
336 |
+
msgctxt "%reading settings page link%"
|
337 |
+
msgid "\"Search Engine Visibility\" option have to be unmarked on the %s."
|
338 |
+
msgstr "Опция \"Видимость для поисковых систем\" дожна быть не отмечена на %s."
|
339 |
+
|
340 |
+
#: includes/class-gglstmp-settings.php:176
|
341 |
+
msgctxt "...on the reading settings page."
|
342 |
+
msgid "Reading Settings page"
|
343 |
+
msgstr "странице настроек чтения"
|
344 |
+
|
345 |
+
#: includes/class-gglstmp-settings.php:180
|
346 |
+
msgid ""
|
347 |
+
"Also, please add the following code to the beginning of your \".htaccess\" "
|
348 |
+
"file:"
|
349 |
+
msgstr ""
|
350 |
+
"Так же, пожалуйста, добавьте следующий код в начало Вашего файла \".htaccess"
|
351 |
+
"\":"
|
352 |
|
353 |
+
#: includes/class-gglstmp-settings.php:194
|
354 |
msgid "This option will be applied to all websites in the network."
|
355 |
msgstr "Эта опция будет применена ко всем сайтам в сети."
|
356 |
|
357 |
+
#: includes/class-gglstmp-settings.php:197
|
358 |
msgid "Activate"
|
359 |
msgstr "Активировать"
|
360 |
|
361 |
+
#: includes/class-gglstmp-settings.php:201
|
362 |
msgid "Install Now"
|
363 |
msgstr "Установить Сейчас"
|
364 |
|
365 |
+
#: includes/class-gglstmp-settings.php:207
|
366 |
#, php-format
|
367 |
msgid "%s Plugin"
|
368 |
msgstr "%s плагин"
|
369 |
|
370 |
+
#: includes/class-gglstmp-settings.php:209
|
371 |
#, php-format
|
372 |
msgid "Enable to allow XML files access using %s plugin."
|
373 |
+
msgstr "Включите, чтобы разрешить доступ к файлам XML с помощью плагина %s."
|
374 |
|
375 |
+
#: includes/class-gglstmp-settings.php:210
|
376 |
msgid "The following string will be added to your .htaccess file"
|
377 |
msgstr "В ваш .htaccess файл будет добавлена следующая строка"
|
378 |
|
379 |
+
#: includes/class-gglstmp-settings.php:229
|
380 |
+
msgid "URLs Limit"
|
381 |
+
msgstr "Лимит ссылок"
|
382 |
+
|
383 |
+
#: includes/class-gglstmp-settings.php:233
|
384 |
+
msgid ""
|
385 |
+
"A sitemap file can't contain more than 50,000 URLs and must be no larger "
|
386 |
+
"than 50 MB uncompressed."
|
387 |
+
msgstr ""
|
388 |
+
"Файл sitemap не может содержать более 50000 ссылок и не должен превышать "
|
389 |
+
"50MB в несжатом состоянии."
|
390 |
+
|
391 |
+
#: includes/class-gglstmp-settings.php:234
|
392 |
+
msgid "Decrease the limit if your sitemap exceeds file size limit."
|
393 |
+
msgstr ""
|
394 |
+
"Уменьшите значение если размер файла sitemap превышает допустимое значение."
|
395 |
+
|
396 |
+
#: includes/class-gglstmp-settings.php:235
|
397 |
+
msgid ""
|
398 |
+
"When the limit is reached, the sitemap will be splitted into multiple files."
|
399 |
+
msgstr ""
|
400 |
+
"Файл sitemap будет разбит на несколько частей при достижении лимита ссылок."
|
401 |
|
402 |
+
#: includes/class-gglstmp-settings.php:240
|
403 |
msgid "Google Webmaster Tools"
|
404 |
msgstr "Google Webmaster Tools"
|
405 |
|
406 |
+
#: includes/class-gglstmp-settings.php:243
|
407 |
msgid ""
|
408 |
"This hosting does not support сURL, so you cannot add a sitemap file "
|
409 |
"automatically."
|
411 |
"Ваш хостинг не поддерживает сURL, поэтому вы не можете добавить sitemap "
|
412 |
"автоматически."
|
413 |
|
414 |
+
#: includes/class-gglstmp-settings.php:246
|
415 |
msgid "Logout from Google Webmaster Tools"
|
416 |
msgstr "Выйти из Google Webmaster Tools"
|
417 |
|
418 |
+
#: includes/class-gglstmp-settings.php:250
|
419 |
msgid "Manage Website with Google Webmaster Tools"
|
420 |
msgstr "Управление веб-сайтом с помощью Google Webmaster Tools"
|
421 |
|
422 |
+
#: includes/class-gglstmp-settings.php:252
|
423 |
msgid "Add"
|
424 |
msgstr "Добавить"
|
425 |
|
426 |
#: includes/class-gglstmp-settings.php:254
|
|
|
|
|
|
|
|
|
427 |
msgid "Get Info"
|
428 |
msgstr "Получить информацию"
|
429 |
|
430 |
+
#: includes/class-gglstmp-settings.php:256
|
431 |
msgid ""
|
432 |
"Add, delete or get info about this website using your Google Webmaster Tools "
|
433 |
"account."
|
434 |
msgstr ""
|
435 |
+
"Добавьте, удалите или получите информацию об этом сайте с помощью своей "
|
436 |
"учетной записи Google Webmaster Tools."
|
437 |
|
438 |
+
#: includes/class-gglstmp-settings.php:264
|
439 |
msgid "Get Authorization Code"
|
440 |
msgstr "Получить код авторизации"
|
441 |
|
442 |
+
#: includes/class-gglstmp-settings.php:267
|
443 |
msgid "Authorize"
|
444 |
msgstr "Авторизироваться"
|
445 |
|
446 |
+
#: includes/class-gglstmp-settings.php:270
|
447 |
msgid "Invalid authorization code. Please try again."
|
448 |
msgstr "Недействительный код авторизации. Пожалуйста, попробуйте еще раз."
|
449 |
|
450 |
+
#: includes/class-gglstmp-settings.php:275
|
451 |
msgid "You can also add your sitemap to Google Webmaster Tools manually."
|
452 |
msgstr "Вы также можете вручную добавить sitemap в Google Webmaster Tools."
|
453 |
|
454 |
+
#: includes/class-gglstmp-settings.php:275
|
455 |
msgid "Read the instruction"
|
456 |
msgstr "Читать инструкцию"
|
457 |
|
458 |
+
#: includes/class-gglstmp-settings.php:290
|
459 |
msgid "Post category"
|
460 |
msgstr "Рубрика записей"
|
461 |
|
462 |
+
#: includes/class-gglstmp-settings.php:291
|
463 |
msgid "Post tag"
|
464 |
msgstr "Метка записей"
|
465 |
|
466 |
+
#: includes/class-gglstmp-settings.php:293
|
467 |
msgid "Sitemap Structure"
|
468 |
msgstr "Структура Sitemap"
|
469 |
|
470 |
+
#: includes/class-gglstmp-settings.php:298
|
471 |
msgid "Post Types"
|
472 |
+
msgstr "Типы записей"
|
473 |
|
474 |
+
#: includes/class-gglstmp-settings.php:305
|
475 |
msgid "Enable to add post type links to the sitemap."
|
476 |
+
msgstr "Включите, чтобы добавить ссылки типов записей в sitemap."
|
477 |
|
478 |
+
#: includes/class-gglstmp-settings.php:309
|
479 |
msgid "Taxonomies"
|
480 |
msgstr "Таксономии"
|
481 |
|
482 |
+
#: includes/class-gglstmp-settings.php:316
|
483 |
msgid "Enable to taxonomy links to the sitemap."
|
484 |
+
msgstr "Включите, чтобы добавить ссылки таксономий в sitemap."
|
|
|
|
|
|
|
|
|
485 |
|
486 |
+
#: includes/class-gglstmp-settings.php:370
|
487 |
+
msgid "Note"
|
488 |
+
msgstr "Примечание"
|
|
|
489 |
|
490 |
+
#: includes/class-gglstmp-settings.php:370
|
491 |
+
msgid ""
|
492 |
+
"Another plugin is providing Google Client functionality and may interrupt "
|
493 |
+
"proper plugin work."
|
494 |
+
msgstr ""
|
495 |
+
"Другой плагин предоставляет функционал для Google Client и может мешать "
|
496 |
+
"корректной работе плагина."
|
497 |
|
498 |
+
#: includes/class-gglstmp-settings.php:380
|
499 |
#, php-format
|
500 |
msgid ""
|
501 |
"Can't access XML files on subsites. Add the following rule %s to your %s "
|
506 |
"правило %s в файл %s в %s после %s или установите, активируйте и включите "
|
507 |
"опцию плагина %s, чтобы устранить эту ошибку."
|
508 |
|
509 |
+
#: includes/class-gglstmp-settings.php:395
|
510 |
+
#, php-format
|
511 |
+
msgid "%s is in the site root directory."
|
512 |
+
msgstr "%s находится в корневом каталоге сайта."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
513 |
|
514 |
+
#: includes/class-gglstmp-settings.php:396
|
515 |
+
msgid "The Sitemap file"
|
516 |
+
msgstr "Файл Sitemap"
|
517 |
|
518 |
+
#~ msgid "Cannot edit \"robots.txt\". Check your permissions"
|
519 |
+
#~ msgstr ""
|
520 |
+
#~ "Невозможно отредактировать файл \"robots.txt\". Проверьте свои права"
|
|
|
|
|
|
|
|
|
|
|
521 |
|
522 |
+
#~ msgid ""
|
523 |
+
#~ "Since you are using multisiting, the plugin does not allow to add a "
|
524 |
+
#~ "sitemap to %s."
|
525 |
+
#~ msgstr ""
|
526 |
+
#~ "Поскольку вы используете мультисайт, плагин не позволяет добавлять "
|
527 |
+
#~ "sitemap в %s."
|
528 |
|
529 |
+
#~ msgid "Cannot edit \"robot.txt\". Check your permissions"
|
530 |
+
#~ msgstr ""
|
531 |
+
#~ "Невозможно отредактировать файл \"robot.txt\". Проверьте свои права"
|
532 |
|
533 |
+
#~ msgid "The Sitemap file for this site has been deleted by network admin."
|
534 |
+
#~ msgstr "Файл Sitemap для этого сайта был удален администратором сети."
|
|
|
535 |
|
536 |
#~ msgid "Verification code"
|
537 |
#~ msgstr "Код подтверждения"
|
864 |
#~ msgid "Go"
|
865 |
#~ msgstr "Перейти на"
|
866 |
|
|
|
|
|
|
|
|
|
|
|
|
|
867 |
#~ msgid ""
|
868 |
#~ "Please choose the necessary post types the links to which are to be added "
|
869 |
#~ "to the sitemap:"
|
977 |
#~ msgstr ""
|
978 |
#~ "Поздравляем! PRO версия плагина была успешно загружена и активирована."
|
979 |
|
|
|
|
|
|
|
980 |
#~ msgid "You will be redirected automatically in 5 seconds."
|
981 |
#~ msgstr "Вы будете перенаправлены автоматически через 5 секунд."
|
982 |
|
languages/google-sitemap-plugin-uk.mo
CHANGED
Binary file
|
languages/google-sitemap-plugin-uk.po
CHANGED
@@ -2,167 +2,313 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Sitemap\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
-
"Language:
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Poedit-KeywordsList: __;_e;_n:1,2\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit 1.
|
17 |
-
"Plural-Forms: nplurals=
|
18 |
-
"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: google-sitemap-plugin.php:38 google-sitemap-plugin.php:
|
22 |
-
#: includes/class-gglstmp-settings.php:
|
23 |
msgid "Google Sitemap Settings"
|
24 |
msgstr "Налаштування Google Sitemap"
|
25 |
|
26 |
-
#: google-sitemap-plugin.php:
|
27 |
-
#: google-sitemap-plugin.php:
|
28 |
#: includes/class-gglstmp-settings.php:27
|
29 |
msgid "Settings"
|
30 |
msgstr "Налаштування"
|
31 |
|
32 |
-
#: google-sitemap-plugin.php:
|
|
|
33 |
msgid "Custom Links"
|
34 |
msgstr "Користувацькі посилання"
|
35 |
|
36 |
-
#: google-sitemap-plugin.php:
|
37 |
msgid "Upgrade to Pro"
|
38 |
msgstr "Оновитися на Pro"
|
39 |
|
40 |
-
#: google-sitemap-plugin.php:
|
41 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
msgstr "Будь ласка, увімкніть JavaScript у вашому браузері."
|
43 |
|
44 |
-
#: google-sitemap-plugin.php:
|
45 |
-
|
|
|
|
|
|
|
|
|
46 |
msgid "Website"
|
47 |
msgstr "Сайт"
|
48 |
|
49 |
-
#: google-sitemap-plugin.php:
|
50 |
-
#: google-sitemap-plugin.php:
|
51 |
-
#: google-sitemap-plugin.php:
|
52 |
msgid "Status"
|
53 |
msgstr "Статус"
|
54 |
|
55 |
-
#: google-sitemap-plugin.php:
|
56 |
-
#: google-sitemap-plugin.php:
|
57 |
msgid "Not added"
|
58 |
msgstr "Не додано"
|
59 |
|
60 |
-
#: google-sitemap-plugin.php:
|
61 |
-
#: google-sitemap-plugin.php:
|
62 |
msgid "Added"
|
63 |
msgstr "Додано"
|
64 |
|
65 |
-
#: google-sitemap-plugin.php:
|
66 |
-
#: google-sitemap-plugin.php:
|
67 |
msgid "Verification Status"
|
68 |
msgstr "Статус перевірки"
|
69 |
|
70 |
-
#: google-sitemap-plugin.php:
|
71 |
msgid "Verified"
|
72 |
msgstr "Перевірено"
|
73 |
|
74 |
-
#: google-sitemap-plugin.php:
|
75 |
msgid "Not verified"
|
76 |
msgstr "Не перевірено"
|
77 |
|
78 |
-
#: google-sitemap-plugin.php:
|
79 |
msgid "Sitemap Status"
|
80 |
msgstr "Статус Sitemap"
|
81 |
|
82 |
-
#: google-sitemap-plugin.php:
|
83 |
msgid "Added with errors."
|
84 |
msgstr "Додано з помилками."
|
85 |
|
86 |
-
#: google-sitemap-plugin.php:
|
87 |
msgid "View errors in Google Webmaster Tools"
|
88 |
-
msgstr "Подивитися помилки
|
89 |
|
90 |
-
#: google-sitemap-plugin.php:
|
91 |
msgid "Sitemap URL"
|
92 |
-
msgstr "URL
|
93 |
|
94 |
-
#: google-sitemap-plugin.php:
|
95 |
-
#: google-sitemap-plugin.php:
|
96 |
-
#: google-sitemap-plugin.php:
|
97 |
-
#: google-sitemap-plugin.php:
|
98 |
-
#: includes/class-gglstmp-settings.php:
|
99 |
msgid "Error"
|
100 |
msgstr "Помилка"
|
101 |
|
102 |
-
#: google-sitemap-plugin.php:
|
103 |
msgid "Please check the sitemap file manually."
|
104 |
msgstr "Будь ласка, перевірте файл sitemap вручну."
|
105 |
|
106 |
-
#: google-sitemap-plugin.php:
|
107 |
-
#: google-sitemap-plugin.php:
|
108 |
-
#: google-sitemap-plugin.php:
|
109 |
-
#: includes/pro_banners.php:47
|
110 |
msgid "Learn More"
|
111 |
msgstr "Дізнатись більше"
|
112 |
|
113 |
-
#: google-sitemap-plugin.php:
|
114 |
-
#: google-sitemap-plugin.php:
|
115 |
-
#: google-sitemap-plugin.php:
|
116 |
msgid "Unexpected error"
|
117 |
msgstr "Неочікуванна помилка"
|
118 |
|
119 |
-
#: google-sitemap-plugin.php:
|
120 |
-
#: google-sitemap-plugin.php:
|
121 |
msgid "Manual verification required."
|
122 |
msgstr "Потрібна ручна перевірка."
|
123 |
|
124 |
-
#: google-sitemap-plugin.php:
|
125 |
msgid "Deleted"
|
126 |
msgstr "Видалено"
|
127 |
|
128 |
-
#: google-sitemap-plugin.php:
|
129 |
-
#: google-sitemap-plugin.php:
|
130 |
msgid "Verification Code"
|
131 |
-
msgstr "Код
|
132 |
|
133 |
-
#: google-sitemap-plugin.php:
|
134 |
msgid "Received and added to the site"
|
135 |
msgstr "Отриман і додан на сайт"
|
136 |
|
137 |
-
#: google-sitemap-plugin.php:
|
138 |
msgid "Received, but has not been added to the site"
|
139 |
msgstr "Отриман, але не додан на сайт"
|
140 |
|
141 |
-
#: google-sitemap-plugin.php:
|
142 |
msgid "Please add the sitemap file manually."
|
143 |
msgstr "Будь ласка, додайте файл Sitemap вручну."
|
144 |
|
145 |
-
#: google-sitemap-plugin.php:
|
146 |
msgid "Error 404"
|
147 |
msgstr "Помилка 404"
|
148 |
|
149 |
-
#: google-sitemap-plugin.php:
|
150 |
#, php-format
|
151 |
msgid "The sitemap file %s not found."
|
152 |
msgstr "Файл sitemap %s не знайдено."
|
153 |
|
154 |
-
#: google-sitemap-plugin.php:
|
155 |
msgid "The sitemap file not found."
|
156 |
msgstr "Файл sitemap не знайдено."
|
157 |
|
158 |
-
#: google-sitemap-plugin.php:
|
159 |
msgid "FAQ"
|
160 |
msgstr "FAQ"
|
161 |
|
162 |
-
#: google-sitemap-plugin.php:
|
163 |
msgid "Support"
|
164 |
msgstr "Підтримка"
|
165 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
#: includes/class-gglstmp-settings.php:28
|
167 |
msgid "Structure"
|
168 |
msgstr "Структура"
|
@@ -175,64 +321,90 @@ msgstr "Різне"
|
|
175 |
msgid "License Key"
|
176 |
msgstr "Ліцензійний ключ"
|
177 |
|
178 |
-
#: includes/class-gglstmp-settings.php:
|
179 |
-
msgid "Cannot edit \"robots.txt\". Check your permissions"
|
180 |
-
msgstr "Неможливо відредагувати файл \"robots.txt\". Перевірте свої права"
|
181 |
-
|
182 |
-
#: includes/class-gglstmp-settings.php:167
|
183 |
msgid "Settings saved."
|
184 |
msgstr "Налаштування збережено."
|
185 |
|
186 |
-
#: includes/class-gglstmp-settings.php:
|
187 |
#, php-format
|
188 |
-
|
189 |
-
"
|
190 |
-
"
|
191 |
-
msgstr ""
|
192 |
-
"Оскільки ви використовуєте Мультисайт, плагін не дозволяє додавати sitemap в "
|
193 |
-
"%s."
|
194 |
|
195 |
-
#: includes/class-gglstmp-settings.php:
|
196 |
#, php-format
|
197 |
-
|
198 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
199 |
|
200 |
-
#: includes/class-gglstmp-settings.php:
|
201 |
msgid "This option will be applied to all websites in the network."
|
202 |
msgstr "Ця опція буде застосована до всіх сайтів в мережі."
|
203 |
|
204 |
-
#: includes/class-gglstmp-settings.php:
|
205 |
msgid "Activate"
|
206 |
msgstr "Активувати"
|
207 |
|
208 |
-
#: includes/class-gglstmp-settings.php:
|
209 |
msgid "Install Now"
|
210 |
-
msgstr "Встановити
|
211 |
|
212 |
-
#: includes/class-gglstmp-settings.php:
|
213 |
#, php-format
|
214 |
msgid "%s Plugin"
|
215 |
msgstr "%s плагін"
|
216 |
|
217 |
-
#: includes/class-gglstmp-settings.php:
|
218 |
#, php-format
|
219 |
msgid "Enable to allow XML files access using %s plugin."
|
220 |
-
msgstr "
|
221 |
|
222 |
-
#: includes/class-gglstmp-settings.php:
|
223 |
msgid "The following string will be added to your .htaccess file"
|
224 |
msgstr "До вашого .htaccess файл буде додано наступну строку"
|
225 |
|
226 |
-
#: includes/class-gglstmp-settings.php:
|
227 |
-
|
228 |
-
|
229 |
-
msgstr "Закрити"
|
230 |
|
231 |
-
#: includes/class-gglstmp-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
232 |
msgid "Google Webmaster Tools"
|
233 |
msgstr "Google Webmaster Tools"
|
234 |
|
235 |
-
#: includes/class-gglstmp-settings.php:
|
236 |
msgid ""
|
237 |
"This hosting does not support сURL, so you cannot add a sitemap file "
|
238 |
"automatically."
|
@@ -240,27 +412,23 @@ msgstr ""
|
|
240 |
"Ваш хостінг не підтримує сURL, отже ви не можете додати файл Sitemap "
|
241 |
"автоматично."
|
242 |
|
243 |
-
#: includes/class-gglstmp-settings.php:
|
244 |
msgid "Logout from Google Webmaster Tools"
|
245 |
msgstr "Вийти з Google Webmaster Tools"
|
246 |
|
247 |
-
#: includes/class-gglstmp-settings.php:
|
248 |
msgid "Manage Website with Google Webmaster Tools"
|
249 |
msgstr "Управління веб-сайтом за допомогою Google Webmaster Tools"
|
250 |
|
251 |
-
#: includes/class-gglstmp-settings.php:
|
252 |
msgid "Add"
|
253 |
msgstr "Додати"
|
254 |
|
255 |
#: includes/class-gglstmp-settings.php:254
|
256 |
-
msgid "Delete"
|
257 |
-
msgstr "Видалити"
|
258 |
-
|
259 |
-
#: includes/class-gglstmp-settings.php:255
|
260 |
msgid "Get Info"
|
261 |
msgstr "Отримати інформацію"
|
262 |
|
263 |
-
#: includes/class-gglstmp-settings.php:
|
264 |
msgid ""
|
265 |
"Add, delete or get info about this website using your Google Webmaster Tools "
|
266 |
"account."
|
@@ -268,72 +436,67 @@ msgstr ""
|
|
268 |
"Додайте, видаліть або отримайте інформацію про цей сайт за допомогою свого "
|
269 |
"облікового запису Google Webmaster Tools."
|
270 |
|
271 |
-
#: includes/class-gglstmp-settings.php:
|
272 |
msgid "Get Authorization Code"
|
273 |
-
msgstr "Отримати
|
274 |
|
275 |
-
#: includes/class-gglstmp-settings.php:
|
276 |
msgid "Authorize"
|
277 |
msgstr "Авторизуватись"
|
278 |
|
279 |
-
#: includes/class-gglstmp-settings.php:
|
280 |
msgid "Invalid authorization code. Please try again."
|
281 |
msgstr "Невірний код авторизації. Будь ласка спробуйте ще раз."
|
282 |
|
283 |
-
#: includes/class-gglstmp-settings.php:
|
284 |
msgid "You can also add your sitemap to Google Webmaster Tools manually."
|
285 |
msgstr "Ви також можете додати sitemap в Google Webmaster Tools вручну."
|
286 |
|
287 |
-
#: includes/class-gglstmp-settings.php:
|
288 |
msgid "Read the instruction"
|
289 |
msgstr "Читати інструкцію"
|
290 |
|
291 |
-
#: includes/class-gglstmp-settings.php:
|
292 |
msgid "Post category"
|
293 |
-
msgstr "Категорія
|
294 |
|
295 |
-
#: includes/class-gglstmp-settings.php:
|
296 |
msgid "Post tag"
|
297 |
-
msgstr "
|
298 |
|
299 |
-
#: includes/class-gglstmp-settings.php:
|
300 |
msgid "Sitemap Structure"
|
301 |
msgstr "Структура Sitemap"
|
302 |
|
303 |
-
#: includes/class-gglstmp-settings.php:
|
304 |
msgid "Post Types"
|
305 |
-
msgstr "Типи
|
306 |
|
307 |
-
#: includes/class-gglstmp-settings.php:
|
308 |
msgid "Enable to add post type links to the sitemap."
|
309 |
-
msgstr "
|
310 |
|
311 |
-
#: includes/class-gglstmp-settings.php:
|
312 |
msgid "Taxonomies"
|
313 |
msgstr "Таксономії"
|
314 |
|
315 |
-
#: includes/class-gglstmp-settings.php:
|
316 |
msgid "Enable to taxonomy links to the sitemap."
|
317 |
-
msgstr "
|
318 |
-
|
319 |
-
#: includes/class-gglstmp-settings.php:358
|
320 |
-
msgid "Cannot edit \"robot.txt\". Check your permissions"
|
321 |
-
msgstr "Неможливо відредагувати файл \"robot.txt\". Перевірте свої права"
|
322 |
|
323 |
-
#: includes/class-gglstmp-settings.php:
|
324 |
-
|
325 |
-
|
326 |
-
msgstr "%s знаходиться в кореневому каталозі сайту."
|
327 |
-
|
328 |
-
#: includes/class-gglstmp-settings.php:397
|
329 |
-
msgid "The Sitemap file"
|
330 |
-
msgstr "Файл Sitemap"
|
331 |
|
332 |
-
#: includes/class-gglstmp-settings.php:
|
333 |
-
msgid "
|
334 |
-
|
|
|
|
|
|
|
|
|
335 |
|
336 |
-
#: includes/class-gglstmp-settings.php:
|
337 |
#, php-format
|
338 |
msgid ""
|
339 |
"Can't access XML files on subsites. Add the following rule %s to your %s "
|
@@ -344,79 +507,30 @@ msgstr ""
|
|
344 |
"правило %s в файл %s в %s після %s або встановіть, активуйте і включіть "
|
345 |
"опцію плагіна %s, щоб усунути цю помилку."
|
346 |
|
347 |
-
#: includes/
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
#: includes/pro_banners.php:42 includes/pro_banners.php:89
|
352 |
-
#: includes/pro_banners.php:148
|
353 |
-
msgid "Change Frequency"
|
354 |
-
msgstr "Частота оновлення"
|
355 |
-
|
356 |
-
#: includes/pro_banners.php:45 includes/pro_banners.php:117
|
357 |
-
#: includes/pro_banners.php:124 includes/pro_banners.php:131
|
358 |
-
#: includes/pro_banners.php:139
|
359 |
-
msgid "Monthly"
|
360 |
-
msgstr "щомісяця"
|
361 |
-
|
362 |
-
#: includes/pro_banners.php:47
|
363 |
-
msgid ""
|
364 |
-
"This value provides general information to search engines and tell them how "
|
365 |
-
"frequently the page is likely to change. It may not correlate exactly to how "
|
366 |
-
"often they crawl the website."
|
367 |
-
msgstr ""
|
368 |
-
"Це значення надає загальну інформацію пошуковим системам і повідомляє їм, як "
|
369 |
-
"часто сторінка може змінитися. Це може не точно відповідати тому, як часто "
|
370 |
-
"вони сканують сайт."
|
371 |
-
|
372 |
-
#: includes/pro_banners.php:60
|
373 |
-
msgid "Example of site pages' tree"
|
374 |
-
msgstr "Приклад дерева сторінок сайту"
|
375 |
-
|
376 |
-
#: includes/pro_banners.php:75
|
377 |
-
msgid "Search"
|
378 |
-
msgstr "Пошук"
|
379 |
-
|
380 |
-
#: includes/pro_banners.php:79
|
381 |
-
msgid "Bulk Actions"
|
382 |
-
msgstr "Групові дії"
|
383 |
-
|
384 |
-
#: includes/pro_banners.php:81
|
385 |
-
msgid "Apply"
|
386 |
-
msgstr "Застосувати"
|
387 |
-
|
388 |
-
#: includes/pro_banners.php:88 includes/pro_banners.php:147
|
389 |
-
msgid "Priority"
|
390 |
-
msgstr "Пріотритет"
|
391 |
-
|
392 |
-
#: includes/pro_banners.php:90 includes/pro_banners.php:149
|
393 |
-
msgid "Last Changed"
|
394 |
-
msgstr "Дата"
|
395 |
|
396 |
-
#: includes/
|
397 |
-
msgid "
|
398 |
-
msgstr "
|
399 |
|
400 |
-
|
401 |
-
|
402 |
-
"All URLs listed in the sitemap.xml must use the same protocol ( HTTP or "
|
403 |
-
"HTTPS ) and reside on the same host as the sitemap.xml. For more info see"
|
404 |
-
msgstr ""
|
405 |
-
"Усі URL-адреси, що містяться в sitemap.xml, повинні використовувати той "
|
406 |
-
"самий протокол ( HTTP чи HTTPS ) та розміщені на тому ж хості, що й файл "
|
407 |
-
"sitemap.xml. Для отримання більш детальної інформації прочитайте"
|
408 |
|
409 |
-
|
410 |
-
|
411 |
-
|
|
|
|
|
|
|
412 |
|
413 |
-
|
414 |
-
|
415 |
-
msgstr "завжди"
|
416 |
|
417 |
-
|
418 |
-
|
419 |
-
msgstr "Зберегти"
|
420 |
|
421 |
#~ msgid "Verification code"
|
422 |
#~ msgstr "Код підтвердження"
|
@@ -750,12 +864,6 @@ msgstr "Зберегти"
|
|
750 |
#~ msgid "Go"
|
751 |
#~ msgstr "Перейти"
|
752 |
|
753 |
-
#~ msgid "Post categories"
|
754 |
-
#~ msgstr "Категорії публікацій"
|
755 |
-
|
756 |
-
#~ msgid "Post tags"
|
757 |
-
#~ msgstr "Теґи публікацій"
|
758 |
-
|
759 |
#~ msgid ""
|
760 |
#~ "Please choose the necessary post types the links to which are to be added "
|
761 |
#~ "to the sitemap:"
|
@@ -870,9 +978,6 @@ msgstr "Зберегти"
|
|
870 |
#~ "and activated."
|
871 |
#~ msgstr "Вітаємо! PRO версію плагіну було успішно завантажено та активовано."
|
872 |
|
873 |
-
#~ msgid "the setting page"
|
874 |
-
#~ msgstr "на сторінку налаштувань"
|
875 |
-
|
876 |
#~ msgid "You will be redirected automatically in 5 seconds."
|
877 |
#~ msgstr "Вас буде переадресовано автоматично за 5 сек."
|
878 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Sitemap\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-08-14 20:22+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-08-14 20:30+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
+
"Language: uk\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 1.5.4\n"
|
17 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
18 |
+
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: google-sitemap-plugin.php:38 google-sitemap-plugin.php:48
|
22 |
+
#: includes/class-gglstmp-settings.php:157
|
23 |
msgid "Google Sitemap Settings"
|
24 |
msgstr "Налаштування Google Sitemap"
|
25 |
|
26 |
+
#: google-sitemap-plugin.php:49 google-sitemap-plugin.php:808
|
27 |
+
#: google-sitemap-plugin.php:1189 google-sitemap-plugin.php:1202
|
28 |
#: includes/class-gglstmp-settings.php:27
|
29 |
msgid "Settings"
|
30 |
msgstr "Налаштування"
|
31 |
|
32 |
+
#: google-sitemap-plugin.php:57 google-sitemap-plugin.php:58
|
33 |
+
#: google-sitemap-plugin.php:813
|
34 |
msgid "Custom Links"
|
35 |
msgstr "Користувацькі посилання"
|
36 |
|
37 |
+
#: google-sitemap-plugin.php:76 includes/pro_banners.php:27
|
38 |
msgid "Upgrade to Pro"
|
39 |
msgstr "Оновитися на Pro"
|
40 |
|
41 |
+
#: google-sitemap-plugin.php:343
|
42 |
+
msgid "Post categories"
|
43 |
+
msgstr "Категорії записів"
|
44 |
+
|
45 |
+
#: google-sitemap-plugin.php:344
|
46 |
+
msgid "Post tags"
|
47 |
+
msgstr "Позначки записів"
|
48 |
+
|
49 |
+
#: google-sitemap-plugin.php:809
|
50 |
+
msgid "Please enable JavaScript in your browser."
|
51 |
msgstr "Будь ласка, увімкніть JavaScript у вашому браузері."
|
52 |
|
53 |
+
#: google-sitemap-plugin.php:814
|
54 |
+
msgid "Add New"
|
55 |
+
msgstr "Додати посилання"
|
56 |
+
|
57 |
+
#: google-sitemap-plugin.php:855 google-sitemap-plugin.php:932
|
58 |
+
#: google-sitemap-plugin.php:982
|
59 |
msgid "Website"
|
60 |
msgstr "Сайт"
|
61 |
|
62 |
+
#: google-sitemap-plugin.php:866 google-sitemap-plugin.php:870
|
63 |
+
#: google-sitemap-plugin.php:948 google-sitemap-plugin.php:964
|
64 |
+
#: google-sitemap-plugin.php:986 google-sitemap-plugin.php:1000
|
65 |
msgid "Status"
|
66 |
msgstr "Статус"
|
67 |
|
68 |
+
#: google-sitemap-plugin.php:867 google-sitemap-plugin.php:890
|
69 |
+
#: google-sitemap-plugin.php:965
|
70 |
msgid "Not added"
|
71 |
msgstr "Не додано"
|
72 |
|
73 |
+
#: google-sitemap-plugin.php:871 google-sitemap-plugin.php:893
|
74 |
+
#: google-sitemap-plugin.php:987 google-sitemap-plugin.php:1096
|
75 |
msgid "Added"
|
76 |
msgstr "Додано"
|
77 |
|
78 |
+
#: google-sitemap-plugin.php:873 google-sitemap-plugin.php:1042
|
79 |
+
#: google-sitemap-plugin.php:1054 google-sitemap-plugin.php:1068
|
80 |
msgid "Verification Status"
|
81 |
msgstr "Статус перевірки"
|
82 |
|
83 |
+
#: google-sitemap-plugin.php:875
|
84 |
msgid "Verified"
|
85 |
msgstr "Перевірено"
|
86 |
|
87 |
+
#: google-sitemap-plugin.php:877
|
88 |
msgid "Not verified"
|
89 |
msgstr "Не перевірено"
|
90 |
|
91 |
+
#: google-sitemap-plugin.php:885 google-sitemap-plugin.php:1075
|
92 |
msgid "Sitemap Status"
|
93 |
msgstr "Статус Sitemap"
|
94 |
|
95 |
+
#: google-sitemap-plugin.php:895
|
96 |
msgid "Added with errors."
|
97 |
msgstr "Додано з помилками."
|
98 |
|
99 |
+
#: google-sitemap-plugin.php:895
|
100 |
msgid "View errors in Google Webmaster Tools"
|
101 |
+
msgstr "Подивитися помилки у Google Webmaster Tools"
|
102 |
|
103 |
+
#: google-sitemap-plugin.php:898
|
104 |
msgid "Sitemap URL"
|
105 |
+
msgstr "Sitemap URL"
|
106 |
|
107 |
+
#: google-sitemap-plugin.php:901 google-sitemap-plugin.php:917
|
108 |
+
#: google-sitemap-plugin.php:967 google-sitemap-plugin.php:1002
|
109 |
+
#: google-sitemap-plugin.php:1039 google-sitemap-plugin.php:1070
|
110 |
+
#: google-sitemap-plugin.php:1109 google-sitemap-plugin.php:1128
|
111 |
+
#: includes/class-gglstmp-settings.php:379
|
112 |
msgid "Error"
|
113 |
msgstr "Помилка"
|
114 |
|
115 |
+
#: google-sitemap-plugin.php:901
|
116 |
msgid "Please check the sitemap file manually."
|
117 |
msgstr "Будь ласка, перевірте файл sitemap вручну."
|
118 |
|
119 |
+
#: google-sitemap-plugin.php:901 google-sitemap-plugin.php:919
|
120 |
+
#: google-sitemap-plugin.php:1004 google-sitemap-plugin.php:1043
|
121 |
+
#: google-sitemap-plugin.php:1072 google-sitemap-plugin.php:1111
|
122 |
+
#: includes/pro_banners.php:47 includes/class-gglstmp-settings.php:233
|
123 |
msgid "Learn More"
|
124 |
msgstr "Дізнатись більше"
|
125 |
|
126 |
+
#: google-sitemap-plugin.php:906 google-sitemap-plugin.php:955
|
127 |
+
#: google-sitemap-plugin.php:990 google-sitemap-plugin.php:1027
|
128 |
+
#: google-sitemap-plugin.php:1058 google-sitemap-plugin.php:1099
|
129 |
msgid "Unexpected error"
|
130 |
msgstr "Неочікуванна помилка"
|
131 |
|
132 |
+
#: google-sitemap-plugin.php:919 google-sitemap-plugin.php:1004
|
133 |
+
#: google-sitemap-plugin.php:1072
|
134 |
msgid "Manual verification required."
|
135 |
msgstr "Потрібна ручна перевірка."
|
136 |
|
137 |
+
#: google-sitemap-plugin.php:949
|
138 |
msgid "Deleted"
|
139 |
msgstr "Видалено"
|
140 |
|
141 |
+
#: google-sitemap-plugin.php:1019 google-sitemap-plugin.php:1022
|
142 |
+
#: google-sitemap-plugin.php:1038
|
143 |
msgid "Verification Code"
|
144 |
+
msgstr "Код підтвердження"
|
145 |
|
146 |
+
#: google-sitemap-plugin.php:1020
|
147 |
msgid "Received and added to the site"
|
148 |
msgstr "Отриман і додан на сайт"
|
149 |
|
150 |
+
#: google-sitemap-plugin.php:1023
|
151 |
msgid "Received, but has not been added to the site"
|
152 |
msgstr "Отриман, але не додан на сайт"
|
153 |
|
154 |
+
#: google-sitemap-plugin.php:1111
|
155 |
msgid "Please add the sitemap file manually."
|
156 |
msgstr "Будь ласка, додайте файл Sitemap вручну."
|
157 |
|
158 |
+
#: google-sitemap-plugin.php:1116
|
159 |
msgid "Error 404"
|
160 |
msgstr "Помилка 404"
|
161 |
|
162 |
+
#: google-sitemap-plugin.php:1118
|
163 |
#, php-format
|
164 |
msgid "The sitemap file %s not found."
|
165 |
msgstr "Файл sitemap %s не знайдено."
|
166 |
|
167 |
+
#: google-sitemap-plugin.php:1128
|
168 |
msgid "The sitemap file not found."
|
169 |
msgstr "Файл sitemap не знайдено."
|
170 |
|
171 |
+
#: google-sitemap-plugin.php:1203
|
172 |
msgid "FAQ"
|
173 |
msgstr "FAQ"
|
174 |
|
175 |
+
#: google-sitemap-plugin.php:1204
|
176 |
msgid "Support"
|
177 |
msgstr "Підтримка"
|
178 |
|
179 |
+
#: includes/pro_banners.php:18
|
180 |
+
msgid "This option is available in Pro version of plugin"
|
181 |
+
msgstr "Ця опція наявна в Pro версії плагіну"
|
182 |
+
|
183 |
+
#: includes/pro_banners.php:21 includes/class-gglstmp-settings.php:218
|
184 |
+
#: includes/class-gglstmp-settings.php:323
|
185 |
+
msgid "Close"
|
186 |
+
msgstr "Закрити"
|
187 |
+
|
188 |
+
#: includes/pro_banners.php:42 includes/pro_banners.php:106
|
189 |
+
#: includes/pro_banners.php:185
|
190 |
+
msgid "Change Frequency"
|
191 |
+
msgstr "Частота оновлення"
|
192 |
+
|
193 |
+
#: includes/pro_banners.php:45 includes/pro_banners.php:143
|
194 |
+
#: includes/pro_banners.php:151 includes/pro_banners.php:159
|
195 |
+
#: includes/pro_banners.php:167 includes/pro_banners.php:175
|
196 |
+
msgid "Monthly"
|
197 |
+
msgstr "щомісяця"
|
198 |
+
|
199 |
+
#: includes/pro_banners.php:47
|
200 |
+
msgid ""
|
201 |
+
"This value provides general information to search engines and tell them how "
|
202 |
+
"frequently the page is likely to change. It may not correlate exactly to how "
|
203 |
+
"often they crawl the website."
|
204 |
+
msgstr ""
|
205 |
+
"Це значення надає загальну інформацію пошуковим системам і повідомляє їм, як "
|
206 |
+
"часто сторінка може змінитися. Це може не точно відповідати тому, як часто "
|
207 |
+
"вони сканують сайт."
|
208 |
+
|
209 |
+
#: includes/pro_banners.php:51
|
210 |
+
msgid "External Sitemap Update Frequency"
|
211 |
+
msgstr "Частота оновлення зовнішніх sitemap"
|
212 |
+
|
213 |
+
#: includes/pro_banners.php:53
|
214 |
+
msgid "day(-s)"
|
215 |
+
msgstr "днів"
|
216 |
+
|
217 |
+
#: includes/pro_banners.php:55
|
218 |
+
msgid ""
|
219 |
+
"This option sets how often the external index sitemap files should be "
|
220 |
+
"checked for updates."
|
221 |
+
msgstr ""
|
222 |
+
"Ця опція встановлює, як часто буде виконуватися перевірка на наявність "
|
223 |
+
"оновлень у зовнішніх файлах sitemap."
|
224 |
+
|
225 |
+
#: includes/pro_banners.php:69
|
226 |
+
msgid "Example of site pages' tree"
|
227 |
+
msgstr "Приклад дерева сторінок сайту"
|
228 |
+
|
229 |
+
#: includes/pro_banners.php:82
|
230 |
+
msgid "All"
|
231 |
+
msgstr "Всі"
|
232 |
+
|
233 |
+
#: includes/pro_banners.php:83
|
234 |
+
msgid "Enabled"
|
235 |
+
msgstr "Активні"
|
236 |
+
|
237 |
+
#: includes/pro_banners.php:84
|
238 |
+
msgid "Disabled"
|
239 |
+
msgstr "Деактивовані"
|
240 |
+
|
241 |
+
#: includes/pro_banners.php:88
|
242 |
+
msgid "Search"
|
243 |
+
msgstr "Пошук"
|
244 |
+
|
245 |
+
#: includes/pro_banners.php:93
|
246 |
+
msgid "Bulk Actions"
|
247 |
+
msgstr "Групові дії"
|
248 |
+
|
249 |
+
#: includes/pro_banners.php:95
|
250 |
+
msgid "Apply"
|
251 |
+
msgstr "Застосувати"
|
252 |
+
|
253 |
+
#: includes/pro_banners.php:97
|
254 |
+
msgid "items"
|
255 |
+
msgstr "елементів"
|
256 |
+
|
257 |
+
#: includes/pro_banners.php:105 includes/pro_banners.php:184
|
258 |
+
msgid "Priority"
|
259 |
+
msgstr "Пріоритет"
|
260 |
+
|
261 |
+
#: includes/pro_banners.php:107 includes/pro_banners.php:186
|
262 |
+
msgid "Last Changed"
|
263 |
+
msgstr "Дата зміни"
|
264 |
+
|
265 |
+
#: includes/pro_banners.php:116
|
266 |
+
msgid "Please note"
|
267 |
+
msgstr "Будь ласка, зауважте"
|
268 |
+
|
269 |
+
#: includes/pro_banners.php:117
|
270 |
+
msgid ""
|
271 |
+
"All URLs listed in the sitemap.xml must use the same protocol (HTTP or "
|
272 |
+
"HTTPS) and must be located on the same host as the sitemap.xml. For more "
|
273 |
+
"info see"
|
274 |
+
msgstr ""
|
275 |
+
"Всі URL-адреси, що містяться в sitemap.xml, повинні використовувати той "
|
276 |
+
"самий протокол ( HTTP або HTTPS ) та розміщені на тому ж хості, що і файл "
|
277 |
+
"sitemap.xml. Для отримання більш детальної інформації прочитайте"
|
278 |
+
|
279 |
+
#: includes/pro_banners.php:117
|
280 |
+
msgid "here"
|
281 |
+
msgstr "тут"
|
282 |
+
|
283 |
+
#: includes/pro_banners.php:124
|
284 |
+
msgid "Always"
|
285 |
+
msgstr "завжди"
|
286 |
+
|
287 |
+
#: includes/pro_banners.php:128
|
288 |
+
msgid "Save"
|
289 |
+
msgstr "Зберегти"
|
290 |
+
|
291 |
+
#: includes/pro_banners.php:136
|
292 |
+
msgid "Edit"
|
293 |
+
msgstr "Редагувати"
|
294 |
+
|
295 |
+
#: includes/pro_banners.php:137
|
296 |
+
msgid "Disable"
|
297 |
+
msgstr "Деактивувати"
|
298 |
+
|
299 |
+
#: includes/pro_banners.php:138 includes/class-gglstmp-settings.php:253
|
300 |
+
msgid "Delete"
|
301 |
+
msgstr "Видалити"
|
302 |
+
|
303 |
+
#: includes/pro_banners.php:141
|
304 |
+
msgid "Yes"
|
305 |
+
msgstr "Так"
|
306 |
+
|
307 |
+
#: includes/pro_banners.php:149 includes/pro_banners.php:157
|
308 |
+
#: includes/pro_banners.php:165 includes/pro_banners.php:173
|
309 |
+
msgid "No"
|
310 |
+
msgstr "Ні"
|
311 |
+
|
312 |
#: includes/class-gglstmp-settings.php:28
|
313 |
msgid "Structure"
|
314 |
msgstr "Структура"
|
321 |
msgid "License Key"
|
322 |
msgstr "Ліцензійний ключ"
|
323 |
|
324 |
+
#: includes/class-gglstmp-settings.php:147
|
|
|
|
|
|
|
|
|
325 |
msgid "Settings saved."
|
326 |
msgstr "Налаштування збережено."
|
327 |
|
328 |
+
#: includes/class-gglstmp-settings.php:167
|
329 |
#, php-format
|
330 |
+
msgctxt "%robots.txt file link%"
|
331 |
+
msgid "Enable to add a sitemap file path to the %s file."
|
332 |
+
msgstr "Увімкніть для додання шляха до файлу Sitemap в файл %s."
|
|
|
|
|
|
|
333 |
|
334 |
+
#: includes/class-gglstmp-settings.php:172
|
335 |
#, php-format
|
336 |
+
msgctxt "%reading settings page link%"
|
337 |
+
msgid "\"Search Engine Visibility\" option have to be unmarked on the %s."
|
338 |
+
msgstr ""
|
339 |
+
"Опція \"Видимість для пошукових систем\" повинна бути не відзначена на %s."
|
340 |
+
|
341 |
+
#: includes/class-gglstmp-settings.php:176
|
342 |
+
msgctxt "...on the reading settings page."
|
343 |
+
msgid "Reading Settings page"
|
344 |
+
msgstr "сторінці налаштувань читання"
|
345 |
+
|
346 |
+
#: includes/class-gglstmp-settings.php:180
|
347 |
+
msgid ""
|
348 |
+
"Also, please add the following code to the beginning of your \".htaccess\" "
|
349 |
+
"file:"
|
350 |
+
msgstr ""
|
351 |
+
"Також, будь ласка, додайте наступний код у початок Вашого файлу \".htaccess"
|
352 |
+
"\":"
|
353 |
|
354 |
+
#: includes/class-gglstmp-settings.php:194
|
355 |
msgid "This option will be applied to all websites in the network."
|
356 |
msgstr "Ця опція буде застосована до всіх сайтів в мережі."
|
357 |
|
358 |
+
#: includes/class-gglstmp-settings.php:197
|
359 |
msgid "Activate"
|
360 |
msgstr "Активувати"
|
361 |
|
362 |
+
#: includes/class-gglstmp-settings.php:201
|
363 |
msgid "Install Now"
|
364 |
+
msgstr "Встановити зараз"
|
365 |
|
366 |
+
#: includes/class-gglstmp-settings.php:207
|
367 |
#, php-format
|
368 |
msgid "%s Plugin"
|
369 |
msgstr "%s плагін"
|
370 |
|
371 |
+
#: includes/class-gglstmp-settings.php:209
|
372 |
#, php-format
|
373 |
msgid "Enable to allow XML files access using %s plugin."
|
374 |
+
msgstr "Увімкніть, щоб дозволити доступ до файлів XML за допомогою плагіна %s."
|
375 |
|
376 |
+
#: includes/class-gglstmp-settings.php:210
|
377 |
msgid "The following string will be added to your .htaccess file"
|
378 |
msgstr "До вашого .htaccess файл буде додано наступну строку"
|
379 |
|
380 |
+
#: includes/class-gglstmp-settings.php:229
|
381 |
+
msgid "URLs Limit"
|
382 |
+
msgstr "Ліміт посилань"
|
|
|
383 |
|
384 |
+
#: includes/class-gglstmp-settings.php:233
|
385 |
+
msgid ""
|
386 |
+
"A sitemap file can't contain more than 50,000 URLs and must be no larger "
|
387 |
+
"than 50 MB uncompressed."
|
388 |
+
msgstr ""
|
389 |
+
"Файл sitemap не може містити більш 50000 посилань і не повинен перевищувати "
|
390 |
+
"50MB в нестислому стані."
|
391 |
+
|
392 |
+
#: includes/class-gglstmp-settings.php:234
|
393 |
+
msgid "Decrease the limit if your sitemap exceeds file size limit."
|
394 |
+
msgstr ""
|
395 |
+
"Зменшіть значення якщо розмір файлу sitemap перевищує допустиме значення."
|
396 |
+
|
397 |
+
#: includes/class-gglstmp-settings.php:235
|
398 |
+
msgid ""
|
399 |
+
"When the limit is reached, the sitemap will be splitted into multiple files."
|
400 |
+
msgstr ""
|
401 |
+
"Файл sitemap буде розбитий на кілька частин при досягненні ліміту посилань."
|
402 |
+
|
403 |
+
#: includes/class-gglstmp-settings.php:240
|
404 |
msgid "Google Webmaster Tools"
|
405 |
msgstr "Google Webmaster Tools"
|
406 |
|
407 |
+
#: includes/class-gglstmp-settings.php:243
|
408 |
msgid ""
|
409 |
"This hosting does not support сURL, so you cannot add a sitemap file "
|
410 |
"automatically."
|
412 |
"Ваш хостінг не підтримує сURL, отже ви не можете додати файл Sitemap "
|
413 |
"автоматично."
|
414 |
|
415 |
+
#: includes/class-gglstmp-settings.php:246
|
416 |
msgid "Logout from Google Webmaster Tools"
|
417 |
msgstr "Вийти з Google Webmaster Tools"
|
418 |
|
419 |
+
#: includes/class-gglstmp-settings.php:250
|
420 |
msgid "Manage Website with Google Webmaster Tools"
|
421 |
msgstr "Управління веб-сайтом за допомогою Google Webmaster Tools"
|
422 |
|
423 |
+
#: includes/class-gglstmp-settings.php:252
|
424 |
msgid "Add"
|
425 |
msgstr "Додати"
|
426 |
|
427 |
#: includes/class-gglstmp-settings.php:254
|
|
|
|
|
|
|
|
|
428 |
msgid "Get Info"
|
429 |
msgstr "Отримати інформацію"
|
430 |
|
431 |
+
#: includes/class-gglstmp-settings.php:256
|
432 |
msgid ""
|
433 |
"Add, delete or get info about this website using your Google Webmaster Tools "
|
434 |
"account."
|
436 |
"Додайте, видаліть або отримайте інформацію про цей сайт за допомогою свого "
|
437 |
"облікового запису Google Webmaster Tools."
|
438 |
|
439 |
+
#: includes/class-gglstmp-settings.php:264
|
440 |
msgid "Get Authorization Code"
|
441 |
+
msgstr "Отримати код авторизації"
|
442 |
|
443 |
+
#: includes/class-gglstmp-settings.php:267
|
444 |
msgid "Authorize"
|
445 |
msgstr "Авторизуватись"
|
446 |
|
447 |
+
#: includes/class-gglstmp-settings.php:270
|
448 |
msgid "Invalid authorization code. Please try again."
|
449 |
msgstr "Невірний код авторизації. Будь ласка спробуйте ще раз."
|
450 |
|
451 |
+
#: includes/class-gglstmp-settings.php:275
|
452 |
msgid "You can also add your sitemap to Google Webmaster Tools manually."
|
453 |
msgstr "Ви також можете додати sitemap в Google Webmaster Tools вручну."
|
454 |
|
455 |
+
#: includes/class-gglstmp-settings.php:275
|
456 |
msgid "Read the instruction"
|
457 |
msgstr "Читати інструкцію"
|
458 |
|
459 |
+
#: includes/class-gglstmp-settings.php:290
|
460 |
msgid "Post category"
|
461 |
+
msgstr "Категорія записів"
|
462 |
|
463 |
+
#: includes/class-gglstmp-settings.php:291
|
464 |
msgid "Post tag"
|
465 |
+
msgstr "Позначка записів"
|
466 |
|
467 |
+
#: includes/class-gglstmp-settings.php:293
|
468 |
msgid "Sitemap Structure"
|
469 |
msgstr "Структура Sitemap"
|
470 |
|
471 |
+
#: includes/class-gglstmp-settings.php:298
|
472 |
msgid "Post Types"
|
473 |
+
msgstr "Типи записів"
|
474 |
|
475 |
+
#: includes/class-gglstmp-settings.php:305
|
476 |
msgid "Enable to add post type links to the sitemap."
|
477 |
+
msgstr "Увімкніть, щоб додати посилання типів записів в sitemap."
|
478 |
|
479 |
+
#: includes/class-gglstmp-settings.php:309
|
480 |
msgid "Taxonomies"
|
481 |
msgstr "Таксономії"
|
482 |
|
483 |
+
#: includes/class-gglstmp-settings.php:316
|
484 |
msgid "Enable to taxonomy links to the sitemap."
|
485 |
+
msgstr "Увімкніть, щоб додати посилання таксономій в sitemap."
|
|
|
|
|
|
|
|
|
486 |
|
487 |
+
#: includes/class-gglstmp-settings.php:370
|
488 |
+
msgid "Note"
|
489 |
+
msgstr "Примітка"
|
|
|
|
|
|
|
|
|
|
|
490 |
|
491 |
+
#: includes/class-gglstmp-settings.php:370
|
492 |
+
msgid ""
|
493 |
+
"Another plugin is providing Google Client functionality and may interrupt "
|
494 |
+
"proper plugin work."
|
495 |
+
msgstr ""
|
496 |
+
"Сторонній плагін вже надає функціонал для Google Client, що може заважати "
|
497 |
+
"коректній роботі плагіна."
|
498 |
|
499 |
+
#: includes/class-gglstmp-settings.php:380
|
500 |
#, php-format
|
501 |
msgid ""
|
502 |
"Can't access XML files on subsites. Add the following rule %s to your %s "
|
507 |
"правило %s в файл %s в %s після %s або встановіть, активуйте і включіть "
|
508 |
"опцію плагіна %s, щоб усунути цю помилку."
|
509 |
|
510 |
+
#: includes/class-gglstmp-settings.php:395
|
511 |
+
#, php-format
|
512 |
+
msgid "%s is in the site root directory."
|
513 |
+
msgstr "%s знаходиться в кореневому каталозі сайту."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
514 |
|
515 |
+
#: includes/class-gglstmp-settings.php:396
|
516 |
+
msgid "The Sitemap file"
|
517 |
+
msgstr "Файл Sitemap"
|
518 |
|
519 |
+
#~ msgid "Cannot edit \"robots.txt\". Check your permissions"
|
520 |
+
#~ msgstr "Неможливо відредагувати файл \"robots.txt\". Перевірте свої права"
|
|
|
|
|
|
|
|
|
|
|
|
|
521 |
|
522 |
+
#~ msgid ""
|
523 |
+
#~ "Since you are using multisiting, the plugin does not allow to add a "
|
524 |
+
#~ "sitemap to %s."
|
525 |
+
#~ msgstr ""
|
526 |
+
#~ "Оскільки ви використовуєте Мультисайт, плагін не дозволяє додавати "
|
527 |
+
#~ "sitemap в %s."
|
528 |
|
529 |
+
#~ msgid "Cannot edit \"robot.txt\". Check your permissions"
|
530 |
+
#~ msgstr "Неможливо відредагувати файл \"robot.txt\". Перевірте свої права"
|
|
|
531 |
|
532 |
+
#~ msgid "The Sitemap file for this site has been deleted by network admin."
|
533 |
+
#~ msgstr "Файл Sitemap для цього сайту був видалений адміністратором мережі."
|
|
|
534 |
|
535 |
#~ msgid "Verification code"
|
536 |
#~ msgstr "Код підтвердження"
|
864 |
#~ msgid "Go"
|
865 |
#~ msgstr "Перейти"
|
866 |
|
|
|
|
|
|
|
|
|
|
|
|
|
867 |
#~ msgid ""
|
868 |
#~ "Please choose the necessary post types the links to which are to be added "
|
869 |
#~ "to the sitemap:"
|
978 |
#~ "and activated."
|
979 |
#~ msgstr "Вітаємо! PRO версію плагіну було успішно завантажено та активовано."
|
980 |
|
|
|
|
|
|
|
981 |
#~ msgid "You will be redirected automatically in 5 seconds."
|
982 |
#~ msgstr "Вас буде переадресовано автоматично за 5 сек."
|
983 |
|
readme.txt
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
Contributors: bestwebsoft
|
3 |
Donate link: https://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.
|
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 |
|
@@ -30,6 +30,7 @@ https://www.youtube.com/watch?v=CgYXKRXpj_0
|
|
30 |
* Custom post types
|
31 |
* Custom taxonomies
|
32 |
* Add a path to your sitemap file in robots.txt automatically
|
|
|
33 |
* Connect your Google Webmaster Tools account to:
|
34 |
* Add website
|
35 |
* Add sitemap
|
@@ -43,8 +44,11 @@ https://www.youtube.com/watch?v=CgYXKRXpj_0
|
|
43 |
>
|
44 |
> All features from Free version included plus:
|
45 |
>
|
|
|
46 |
> * Exclude certain pages or post types from your sitemap file
|
47 |
-
> * Set the frequency of
|
|
|
|
|
48 |
> * Configure all subsites on the network
|
49 |
> * Add custom URLs to the sitemap file
|
50 |
> * Get answer to your support question within one business day ([Support Policy](https://bestwebsoft.com/support-policy/))
|
@@ -75,7 +79,8 @@ Some of these translations are not complete. We are constantly adding new featur
|
|
75 |
|
76 |
= Recommended Plugins =
|
77 |
|
78 |
-
* [Updater](https://bestwebsoft.com/products/wordpress/plugins/updater/?k=4b7b8eac2b35e12eaa2d51359f49cfb2) - Automatically check and update WordPress core with all installed plugins to the latest versions.
|
|
|
79 |
|
80 |
== Installation ==
|
81 |
|
@@ -102,6 +107,25 @@ After opening the Settings page the sitemap.xml file will be created automatical
|
|
102 |
|
103 |
Check the plugin version and the folder permissions (it is better to use 644 or 755). You should create both files manually ("robots.txt" and "sitemap.xml") and set permissions to 755 for both.
|
104 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
= I have some problems with the plugin's work. What Information should I provide to receive proper support? =
|
106 |
|
107 |
Please make sure that the problem hasn't been discussed yet on our forum (<https://support.bestwebsoft.com>). If no, please provide the following data along with your problem's description:
|
@@ -119,6 +143,11 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
|
|
119 |
|
120 |
== Changelog ==
|
121 |
|
|
|
|
|
|
|
|
|
|
|
122 |
= V3.0.9 - 04.05.2017 =
|
123 |
* Update : The Czech language file was updated.
|
124 |
* Bugfix : The bug with editing of robots.txt file was fixed.
|
@@ -297,6 +326,10 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
|
|
297 |
|
298 |
== Upgrade Notice ==
|
299 |
|
|
|
|
|
|
|
|
|
300 |
= V3.0.9 =
|
301 |
* Languages updated.
|
302 |
* Bugs fixed.
|
2 |
Contributors: bestwebsoft
|
3 |
Donate link: https://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.9
|
6 |
+
Tested up to: 4.8.1
|
7 |
+
Stable tag: 3.1.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
30 |
* Custom post types
|
31 |
* Custom taxonomies
|
32 |
* Add a path to your sitemap file in robots.txt automatically
|
33 |
+
* Set the maximum number of URLs in one sitemap file [NEW]
|
34 |
* Connect your Google Webmaster Tools account to:
|
35 |
* Add website
|
36 |
* Add sitemap
|
44 |
>
|
45 |
> All features from Free version included plus:
|
46 |
>
|
47 |
+
> * Add external sitemap files [NEW]
|
48 |
> * Exclude certain pages or post types from your sitemap file
|
49 |
+
> * Set the frequency of
|
50 |
+
> * Your website content changes for all pages
|
51 |
+
> * External sitemap file update [NEW]
|
52 |
> * Configure all subsites on the network
|
53 |
> * Add custom URLs to the sitemap file
|
54 |
> * Get answer to your support question within one business day ([Support Policy](https://bestwebsoft.com/support-policy/))
|
79 |
|
80 |
= Recommended Plugins =
|
81 |
|
82 |
+
* [Updater](https://bestwebsoft.com/products/wordpress/plugins/updater/?k=4b7b8eac2b35e12eaa2d51359f49cfb2) - Automatically check and update WordPress website core with all installed plugins and themes to the latest versions.
|
83 |
+
* [Htaccess](https://bestwebsoft.com/products/wordpress/plugins/htaccess/?k=6f8794059b2a6618808fa7ac6401ba6e) - Protect WordPress website - allow and deny access for certain IP addresses, hostnames, etc.
|
84 |
|
85 |
== Installation ==
|
86 |
|
107 |
|
108 |
Check the plugin version and the folder permissions (it is better to use 644 or 755). You should create both files manually ("robots.txt" and "sitemap.xml") and set permissions to 755 for both.
|
109 |
|
110 |
+
= I have enabled 'Robots.txt' option, but sitemap path hasn't been added to the 'robots.txt' file. The file is the same for any site of a multisite network. Is it normal? =
|
111 |
+
|
112 |
+
You should edit '.htaccess' file which is located in the root of your WordPress installation. Please open it with a text editor and add the following code to the end of this file:
|
113 |
+
|
114 |
+
`<IfModule mod_rewrite.c>
|
115 |
+
RewriteEngine On
|
116 |
+
RewriteBase /
|
117 |
+
RewriteRule robots\.txt$ index.php?gglstmp_robots=1
|
118 |
+
</IfModule>`
|
119 |
+
|
120 |
+
Also, "Search Engine Visibility" option should be unmarked on the Settings > Reading page.
|
121 |
+
|
122 |
+
= I have a large number of posts and sitemap file isn't created =
|
123 |
+
|
124 |
+
Try to increase an available memory limit (i.e. up to 256M) by adding the following lines to your 'wp-config.php' file:
|
125 |
+
|
126 |
+
`ini_set('memory_limit','256M');
|
127 |
+
define('WP_MEMORY_LIMIT', '256M');`
|
128 |
+
|
129 |
= I have some problems with the plugin's work. What Information should I provide to receive proper support? =
|
130 |
|
131 |
Please make sure that the problem hasn't been discussed yet on our forum (<https://support.bestwebsoft.com>). If no, please provide the following data along with your problem's description:
|
143 |
|
144 |
== Changelog ==
|
145 |
|
146 |
+
= V3.1.0 - 16.08.2017 =
|
147 |
+
* Update : Plugin performance has been optimized.
|
148 |
+
* NEW : Sitemap file splitting functionality for a large amount of posts has been added.
|
149 |
+
* Pro : Ability to add link to the external sitemap has been added.
|
150 |
+
|
151 |
= V3.0.9 - 04.05.2017 =
|
152 |
* Update : The Czech language file was updated.
|
153 |
* Bugfix : The bug with editing of robots.txt file was fixed.
|
326 |
|
327 |
== Upgrade Notice ==
|
328 |
|
329 |
+
= V3.1.0 =
|
330 |
+
* Performance optimized.
|
331 |
+
* New features added.
|
332 |
+
|
333 |
= V3.0.9 =
|
334 |
* Languages updated.
|
335 |
* Bugs fixed.
|
screenshot-1.png
CHANGED
Binary file
|
screenshot-2.png
CHANGED
Binary file
|
sitemap-index.xsl
ADDED
@@ -0,0 +1,136 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<xsl:stylesheet version="2.0"
|
3 |
+
xmlns:html="http://www.w3.org/TR/REC-html40"
|
4 |
+
xmlns:sitemap="http://www.sitemaps.org/schemas/sitemap/0.9"
|
5 |
+
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
6 |
+
<xsl:output method="html" version="1.0" encoding="UTF-8" indent="yes"/>
|
7 |
+
<xsl:template match="/">
|
8 |
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
9 |
+
<head>
|
10 |
+
<title>XML Sitemap Index</title>
|
11 |
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
12 |
+
<style type="text/css">
|
13 |
+
body {
|
14 |
+
font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,Verdana;
|
15 |
+
font-size: 13px;
|
16 |
+
}
|
17 |
+
|
18 |
+
#header {
|
19 |
+
text-align: center;
|
20 |
+
padding-top: 14px;
|
21 |
+
padding-bottom: 29px;
|
22 |
+
}
|
23 |
+
|
24 |
+
h1 {
|
25 |
+
font-weight: normal;
|
26 |
+
font-size: 24px;
|
27 |
+
line-height: 20px;
|
28 |
+
color: #333333;
|
29 |
+
}
|
30 |
+
|
31 |
+
h2 {
|
32 |
+
font-weight: normal;
|
33 |
+
font-size: 13px;
|
34 |
+
color: #aaaaaa;
|
35 |
+
line-height: 10px;
|
36 |
+
}
|
37 |
+
|
38 |
+
#content {
|
39 |
+
background: #f8f8f8;
|
40 |
+
border-top: 1px solid #dddddd;
|
41 |
+
padding-top: 50px;
|
42 |
+
}
|
43 |
+
|
44 |
+
#content a:visited,
|
45 |
+
#content tr:hover a:visited {
|
46 |
+
color: #68009c;
|
47 |
+
}
|
48 |
+
|
49 |
+
table {
|
50 |
+
margin: 0 auto;
|
51 |
+
text-align: left;
|
52 |
+
}
|
53 |
+
|
54 |
+
tr#table-header:hover {
|
55 |
+
background: none;
|
56 |
+
}
|
57 |
+
|
58 |
+
tr:hover {
|
59 |
+
background: #ebebeb;
|
60 |
+
}
|
61 |
+
|
62 |
+
#content tr:hover a {
|
63 |
+
color: #6e6e6e;
|
64 |
+
}
|
65 |
+
|
66 |
+
td {
|
67 |
+
color: #6e6e6e;
|
68 |
+
font-size: 12px;
|
69 |
+
border-bottom: 1px solid #dddddd;
|
70 |
+
padding: 11px 50px 13px 5px;
|
71 |
+
}
|
72 |
+
|
73 |
+
th {
|
74 |
+
color: #333333;
|
75 |
+
font-size: 12px;
|
76 |
+
border-bottom: 1px solid #dddddd;
|
77 |
+
padding: 5px 50px 17px 5px;
|
78 |
+
}
|
79 |
+
|
80 |
+
#footer {
|
81 |
+
background: #f8f8f8;
|
82 |
+
font-size: 13px;
|
83 |
+
color: #aaaaaa;
|
84 |
+
padding: 54px 0 20px;
|
85 |
+
text-align: center;
|
86 |
+
}
|
87 |
+
|
88 |
+
a {
|
89 |
+
color: #2384c6;
|
90 |
+
}
|
91 |
+
a:hover {
|
92 |
+
color: #6e6e6e;
|
93 |
+
text-decoration: none;
|
94 |
+
}
|
95 |
+
</style>
|
96 |
+
</head>
|
97 |
+
<body>
|
98 |
+
<div id="header">
|
99 |
+
<h1>Sitemap Index</h1>
|
100 |
+
<h2>This is a XML Sitemap Index which is supposed to be processed by <a href="http://www.google.com">Google search engine</a>.</h2>
|
101 |
+
</div>
|
102 |
+
<div id="content">
|
103 |
+
<table cellpadding="5" cellspacing="0">
|
104 |
+
<tr id="table-header">
|
105 |
+
<th>URL</th>
|
106 |
+
<th>LastChange (GMT)</th>
|
107 |
+
</tr>
|
108 |
+
<xsl:variable name="lower" select="'abcdefghijklmnopqrstuvwxyz'"/>
|
109 |
+
<xsl:variable name="upper" select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ'"/>
|
110 |
+
<xsl:for-each select="sitemap:sitemapindex/sitemap:sitemap">
|
111 |
+
<tr>
|
112 |
+
<xsl:if test="position() mod 2 != 1">
|
113 |
+
<xsl:attribute name="class">high</xsl:attribute>
|
114 |
+
</xsl:if>
|
115 |
+
<td>
|
116 |
+
<xsl:variable name="itemURL">
|
117 |
+
<xsl:value-of select="sitemap:loc"/>
|
118 |
+
</xsl:variable>
|
119 |
+
<a href="{$itemURL}">
|
120 |
+
<xsl:value-of select="sitemap:loc"/>
|
121 |
+
</a>
|
122 |
+
</td>
|
123 |
+
<td>
|
124 |
+
<xsl:value-of select="concat(substring(sitemap:lastmod,0,11),concat(' ', substring(sitemap:lastmod,12,5)))"/>
|
125 |
+
</td>
|
126 |
+
</tr>
|
127 |
+
</xsl:for-each>
|
128 |
+
</table>
|
129 |
+
</div>
|
130 |
+
<div id="footer">
|
131 |
+
Generated with <a href="https://bestwebsoft.com/products/wordpress/plugins/google-sitemap/">Google Sitemap Pro</a> plugin by <a href="https://bestwebsoft.com">BestWebSoft</a>
|
132 |
+
</div>
|
133 |
+
</body>
|
134 |
+
</html>
|
135 |
+
</xsl:template>
|
136 |
+
</xsl:stylesheet>
|