Version Description
- 21.09.2015 =
- Update : Textdomain was changed.
- Update : We updated all functionality for wordpress 4.3.1.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Google Sitemap by BestWebSoft |
Version | 3.0.1 |
Comparing to | |
See all releases |
Code changes from version 3.0.0 to 3.0.1
- bws_menu/bws_functions.php +242 -98
- bws_menu/bws_include.php +83 -0
- bws_menu/bws_menu.php +14 -2
- bws_menu/css/general_style.css +117 -0
- bws_menu/css/general_style_wp_before_3.8.css +0 -275
- bws_menu/icons/error-log-viewer.png +0 -0
- bws_menu/images/help.png +0 -0
- bws_menu/images/icon_16.png +0 -0
- bws_menu/images/icon_16_b.png +0 -0
- bws_menu/images/icon_16_c.png +0 -0
- bws_menu/images/icon_36.png +0 -0
- bws_menu/images/icon_36_b.png +0 -0
- bws_menu/images/shortcode-icon.png +0 -0
- bws_menu/images/tooltip_icons.png +0 -0
- bws_menu/js/general_script.js +17 -0
- bws_menu/js/shortcode-button.js +121 -0
- bws_menu/languages/bestwebsoft-de_DE.mo +0 -0
- bws_menu/languages/bestwebsoft-de_DE.po +256 -192
- bws_menu/languages/bestwebsoft-fr_FR.mo +0 -0
- bws_menu/languages/bestwebsoft-fr_FR.po +262 -202
- bws_menu/languages/bestwebsoft-it_IT.mo +0 -0
- bws_menu/languages/bestwebsoft-it_IT.po +259 -195
- bws_menu/languages/bestwebsoft-ja.mo +0 -0
- bws_menu/languages/bestwebsoft-ja.po +253 -201
- bws_menu/languages/bestwebsoft-pt_BR.mo +0 -0
- bws_menu/languages/bestwebsoft-pt_BR.po +256 -192
- bws_menu/languages/bestwebsoft-ru_RU.mo +0 -0
- bws_menu/languages/bestwebsoft-ru_RU.po +266 -207
- bws_menu/languages/bestwebsoft-sr_RS.mo +0 -0
- bws_menu/languages/bestwebsoft-sr_RS.po +252 -198
- bws_menu/languages/bestwebsoft-sv_SE.mo +0 -0
- bws_menu/languages/bestwebsoft-sv_SE.po +252 -195
- bws_menu/languages/bestwebsoft-uk.mo +0 -0
- bws_menu/languages/bestwebsoft-uk.po +257 -204
- css/style.css +0 -4
- google-sitemap-plugin.php +140 -117
- js/script.js +0 -10
- languages/google-sitemap-plugin-ru_RU.mo +0 -0
- languages/{sitemap-ru_RU.po → google-sitemap-plugin-ru_RU.po} +124 -124
- languages/google-sitemap-plugin-uk.mo +0 -0
- languages/{sitemap-uk.po → google-sitemap-plugin-uk.po} +124 -124
- languages/sitemap-ru_RU.mo +0 -0
- languages/sitemap-uk.mo +0 -0
- readme.txt +15 -8
bws_menu/bws_functions.php
CHANGED
@@ -1,83 +1,33 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
* General functions for BestWebSoft plugins
|
4 |
-
* Version: 1.1.
|
5 |
*/
|
6 |
-
if ( ! function_exists ( 'bws_add_general_menu' ) ) {
|
7 |
-
function bws_add_general_menu( $base ) {
|
8 |
-
global $bstwbsftwppdtplgns_options, $bstwbsftwppdtplgns_added_menu;
|
9 |
-
$bws_menu_info = get_plugin_data( dirname( dirname( plugin_dir_path( __FILE__ ) ) ) . '/' . dirname( $base ) . '/bws_menu/bws_menu.php' );
|
10 |
-
$bws_menu_version = $bws_menu_info["Version"];
|
11 |
-
|
12 |
-
if ( ! isset( $bstwbsftwppdtplgns_options ) ) {
|
13 |
-
if ( is_multisite() ) {
|
14 |
-
if ( ! get_site_option( 'bstwbsftwppdtplgns_options' ) )
|
15 |
-
add_site_option( 'bstwbsftwppdtplgns_options', array() );
|
16 |
-
$bstwbsftwppdtplgns_options = get_site_option( 'bstwbsftwppdtplgns_options' );
|
17 |
-
} else {
|
18 |
-
if ( ! get_option( 'bstwbsftwppdtplgns_options' ) )
|
19 |
-
add_option( 'bstwbsftwppdtplgns_options', array() );
|
20 |
-
$bstwbsftwppdtplgns_options = get_option( 'bstwbsftwppdtplgns_options' );
|
21 |
-
}
|
22 |
-
}
|
23 |
|
24 |
-
|
25 |
-
|
26 |
-
unset( $bstwbsftwppdtplgns_options['bws_menu_version'] );
|
27 |
-
if ( is_multisite() )
|
28 |
-
update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
29 |
-
else
|
30 |
-
update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
31 |
-
require_once( dirname( __FILE__ ) . '/bws_menu.php' );
|
32 |
-
} else if ( ! isset( $bstwbsftwppdtplgns_options['bws_menu']['version'][ $base ] ) || $bstwbsftwppdtplgns_options['bws_menu']['version'][ $base ] < $bws_menu_version ) {
|
33 |
-
$bstwbsftwppdtplgns_options['bws_menu']['version'][ $base ] = $bws_menu_version;
|
34 |
-
if ( is_multisite() )
|
35 |
-
update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
36 |
-
else
|
37 |
-
update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
38 |
-
require_once( dirname( __FILE__ ) . '/bws_menu.php' );
|
39 |
-
} else if ( ! isset( $bstwbsftwppdtplgns_added_menu ) ) {
|
40 |
-
$all_plugins = get_plugins();
|
41 |
-
foreach ( $bstwbsftwppdtplgns_options['bws_menu']['version'] as $key => $value ) {
|
42 |
-
if ( array_key_exists( $key, $all_plugins ) ) {
|
43 |
-
if ( $bws_menu_version < $value && is_plugin_active( $base ) ) {
|
44 |
-
if ( ! isset( $plugin_with_newer_menu ) )
|
45 |
-
$plugin_with_newer_menu = $key;
|
46 |
-
elseif ( $bstwbsftwppdtplgns_options['bws_menu']['version'][ $plugin_with_newer_menu ] < $bstwbsftwppdtplgns_options['bws_menu']['version'][ $key ] )
|
47 |
-
$plugin_with_newer_menu = $key;
|
48 |
-
}
|
49 |
-
} else {
|
50 |
-
unset( $bstwbsftwppdtplgns_options['bws_menu']['version'][ $key ] );
|
51 |
-
if ( is_multisite() )
|
52 |
-
update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
53 |
-
else
|
54 |
-
update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
55 |
-
}
|
56 |
-
}
|
57 |
-
if ( ! isset( $plugin_with_newer_menu ) )
|
58 |
-
$plugin_with_newer_menu = $base;
|
59 |
-
$plugin_with_newer_menu = explode( '/', $plugin_with_newer_menu );
|
60 |
-
$wp_content_dir = defined( 'WP_CONTENT_DIR' ) ? basename( WP_CONTENT_DIR ) : 'wp-content';
|
61 |
-
|
62 |
-
if ( file_exists( ABSPATH . $wp_content_dir . '/plugins/' . $plugin_with_newer_menu[0] . '/bws_menu/bws_menu.php' ) )
|
63 |
-
require_once( ABSPATH . $wp_content_dir . '/plugins/' . $plugin_with_newer_menu[0] . '/bws_menu/bws_menu.php' );
|
64 |
-
else
|
65 |
-
require_once( dirname( __FILE__ ) . '/bws_menu.php' );
|
66 |
-
$bstwbsftwppdtplgns_added_menu = true;
|
67 |
-
}
|
68 |
add_menu_page( 'BWS Plugins', 'BWS Plugins', 'manage_options', 'bws_plugins', 'bws_add_menu_render', plugins_url( 'images/px.png', __FILE__ ), 1001 );
|
69 |
}
|
70 |
}
|
71 |
|
72 |
-
|
73 |
/**
|
74 |
-
* Function check if plugin is compatible with current WP version
|
75 |
* @return void
|
76 |
*/
|
77 |
if ( ! function_exists ( 'bws_wp_version_check' ) ) {
|
78 |
function bws_wp_version_check( $plugin_basename, $plugin_info, $require_wp ) {
|
79 |
-
|
80 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
82 |
if ( is_plugin_active( $plugin_basename ) ) {
|
83 |
deactivate_plugins( $plugin_basename );
|
@@ -95,6 +45,27 @@ if ( ! function_exists ( 'bws_wp_version_check' ) ) {
|
|
95 |
)
|
96 |
);
|
97 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
98 |
}
|
99 |
}
|
100 |
}
|
@@ -148,7 +119,7 @@ if ( ! function_exists( 'bws_plugin_banner' ) ) {
|
|
148 |
<img title="" src="<?php echo esc_attr( $banner_url_or_slug ); ?>" alt="" />
|
149 |
</div>
|
150 |
<div class="text"><?php
|
151 |
-
_e( 'It’s time to upgrade your', 'bestwebsoft' ); ?> <strong><?php echo $plugin_info['Name']; ?> plugin</strong> <?php _e( 'to', 'bestwebsoft' ); ?> <strong>
|
152 |
<span><?php _e( 'Extend standard plugin functionality with new great options.', 'bestwebsoft' ); ?></span>
|
153 |
</div>
|
154 |
<div class="button_div">
|
@@ -234,7 +205,7 @@ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
|
|
234 |
} elseif ( "time_out" == $value->package ) {
|
235 |
$result['error'] = __( "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your", 'bestwebsoft' ) . ' <a href="http://bestwebsoft.com/wp-admin/admin.php?page=bws_plugins_client_area">Client area</a>';
|
236 |
} elseif ( "duplicate_domen_for_trial" == $value->package ) {
|
237 |
-
$result['error'] = __( "Unfortunately, the
|
238 |
}
|
239 |
}
|
240 |
if ( empty( $result['error'] ) ) {
|
@@ -345,7 +316,7 @@ if ( ! function_exists( 'bws_go_pro_tab' ) ) {
|
|
345 |
window.location.href = 'admin.php?page=<?php echo $pro_page; ?>';
|
346 |
}, 5000 );
|
347 |
</script>
|
348 |
-
<p><?php _e( "Congratulations! The
|
349 |
<p>
|
350 |
<?php _e( "Please, go to", 'bestwebsoft' ); ?> <a href="admin.php?page=<?php echo $pro_page; ?>"><?php _e( 'the setting page', 'bestwebsoft' ); ?></a>
|
351 |
(<?php _e( "You will be redirected automatically in 5 seconds.", 'bestwebsoft' ); ?>)
|
@@ -354,7 +325,7 @@ if ( ! function_exists( 'bws_go_pro_tab' ) ) {
|
|
354 |
<form method="post" action="admin.php?page=<?php echo $page; ?>&action=go_pro">
|
355 |
<p>
|
356 |
<?php _e( 'You can download and activate', 'bestwebsoft' ); ?>
|
357 |
-
<a href="http://bestwebsoft.com/products/<?php echo $link_slug; ?>/?k=<?php echo $link_key; ?>&pn=<?php echo $link_pn; ?>&v=<?php echo $plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="<?php echo $plugin_info["Name"]; ?> Pro">
|
358 |
<?php _e( 'version of this plugin by entering Your license key.', 'bestwebsoft' ); ?><br />
|
359 |
<span class="bws_info">
|
360 |
<?php _e( 'You can find your license key on your personal page Client area, by clicking on the link', 'bestwebsoft' ); ?>
|
@@ -395,7 +366,7 @@ if ( ! function_exists( 'bws_go_pro_from_trial_tab' ) ) {
|
|
395 |
if ( $trial_license_is_set ) { ?>
|
396 |
<form method="post" action="admin.php?page=<?php echo $page; ?>&action=go_pro">
|
397 |
<p>
|
398 |
-
<?php echo sprintf( __( 'In order to continue using the plugin it is necessary to buy a %s license.', 'bestwebsoft' ), '<a href="http://bestwebsoft.com/products/' . $link_slug . '/?k=' . $link_key . '&pn=' . $link_pn . '&v=' . $plugin_info["Version"] . '&wp_v=' . $wp_version .'" target="_blank" title="' . $plugin_info["Name"] . '">
|
399 |
_e( 'After that you can activate it by entering your license key.', 'bestwebsoft' ); ?><br />
|
400 |
<span class="bws_info">
|
401 |
<?php _e( 'You can find your license key on your personal page Client area, by clicking on the link', 'bestwebsoft' ); ?>
|
@@ -427,7 +398,7 @@ if ( ! function_exists( 'bws_go_pro_from_trial_tab' ) ) {
|
|
427 |
window.location.href = 'admin.php?page=<?php echo $page; ?>';
|
428 |
}, 5000 );
|
429 |
</script>
|
430 |
-
<p><?php _e( "Congratulations! The
|
431 |
<p>
|
432 |
<?php _e( "Please, go to", 'bestwebsoft' ); ?> <a href="admin.php?page=<?php echo $page; ?>"><?php _e( 'the setting page', 'bestwebsoft' ); ?></a>
|
433 |
(<?php _e( "You will be redirected automatically in 5 seconds.", 'bestwebsoft' ); ?>)
|
@@ -476,11 +447,11 @@ if ( ! function_exists( 'bws_check_pro_license' ) ) {
|
|
476 |
} elseif ( "you_are_banned" == $value->package ) {
|
477 |
$result['error'] = __( "Unfortunately, you have exceeded the number of available tries.", 'bestwebsoft' );
|
478 |
} elseif ( "duplicate_domen_for_trial" == $value->package ) {
|
479 |
-
$result['error'] = __( "Unfortunately, the
|
480 |
}
|
481 |
if ( empty( $result['message'] ) && empty( $result['error'] ) ) {
|
482 |
if ( isset( $value->trial ) )
|
483 |
-
$result['message'] = __( 'The
|
484 |
else
|
485 |
$result['message'] = __( 'The license key is valid.', 'bestwebsoft' );
|
486 |
|
@@ -488,7 +459,7 @@ if ( ! function_exists( 'bws_check_pro_license' ) ) {
|
|
488 |
$result['message'] .= ' ' . __( 'Your license will expire on', 'bestwebsoft' ) . ' ' . $value->time_out . '.';
|
489 |
|
490 |
if ( isset( $value->trial ) && $trial_plugin != false )
|
491 |
-
$result['message'] .= ' ' . sprintf( __( 'In order to continue using the plugin it is necessary to buy a %s license.', 'bestwebsoft' ), '<a href="http://bestwebsoft.com/products/' . $trial_plugin['link_slug'] . '/?k=' . $trial_plugin['link_key'] . '&pn=' . $trial_plugin['link_pn'] . '&v=' . $trial_plugin['plugin_info']['Version'] . '&wp_v=' . $wp_version . '" target="_blank" title="' . $trial_plugin['plugin_info']['Name'] . '">
|
492 |
|
493 |
if ( isset( $value->trial ) ) {
|
494 |
$bstwbsftwppdtplgns_options['trial'][ $plugin_basename ] = 1;
|
@@ -557,7 +528,7 @@ if ( ! function_exists ( 'bws_plugin_update_row' ) ) {
|
|
557 |
<td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
|
558 |
<div class="update-message" style="color: #8C0000;">';
|
559 |
if ( isset( $bstwbsftwppdtplgns_options['trial'][ $plugin_key ] ) && $link_slug != false ) {
|
560 |
-
echo __( 'Notice: Your
|
561 |
} else {
|
562 |
echo __( 'Your license has expired. To continue getting top-priority support and plugin updates you should extend it.', 'bestwebsoft' ) . ' <a target="_new" href="http://support.bestwebsoft.com/entries/53487136">' . __( "Learn more", 'bestwebsoft' ) . '</a>';
|
563 |
}
|
@@ -569,12 +540,12 @@ if ( ! function_exists ( 'bws_plugin_update_row' ) ) {
|
|
569 |
<td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
|
570 |
<div class="update-message" style="color: #8C0000;">';
|
571 |
if ( $free_plugin_name != false ) {
|
572 |
-
echo sprintf( __( 'Notice: You are using the
|
573 |
} else {
|
574 |
-
_e( 'Notice: You are using the
|
575 |
}
|
576 |
if ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) )
|
577 |
-
echo ' ' . __( "The
|
578 |
echo '</div>
|
579 |
</td>
|
580 |
</tr>';
|
@@ -619,34 +590,104 @@ if ( ! function_exists ( 'bws_plugin_banner_timeout' ) ) {
|
|
619 |
}
|
620 |
}
|
621 |
|
622 |
-
if ( ! function_exists
|
623 |
-
function
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
624 |
/* Internationalization, first(!) */
|
625 |
load_plugin_textdomain( 'bestwebsoft', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
|
|
|
|
626 |
}
|
627 |
}
|
628 |
|
629 |
-
if ( ! function_exists ( '
|
630 |
-
function
|
631 |
global $wp_version;
|
632 |
-
|
633 |
-
|
634 |
-
else
|
635 |
-
wp_enqueue_style( 'bws-admin-style', plugins_url( 'css/general_style.css', __FILE__ ) );
|
636 |
|
637 |
if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_plugins" ) {
|
638 |
wp_enqueue_style( 'bws_menu_style', plugins_url( 'css/style.css', __FILE__ ) );
|
639 |
wp_enqueue_script( 'bws_menu_script', plugins_url( 'js/bws_menu.js' , __FILE__ ) );
|
640 |
-
|
641 |
-
wp_enqueue_script( 'theme-install' );
|
642 |
-
elseif ( $wp_version >= '3.4' )
|
643 |
-
wp_enqueue_script( 'theme' );
|
644 |
}
|
645 |
}
|
646 |
}
|
647 |
|
648 |
-
if ( ! function_exists ( '
|
649 |
-
function
|
|
|
650 |
if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_plugins" ) { ?>
|
651 |
<noscript>
|
652 |
<style type="text/css">
|
@@ -655,8 +696,25 @@ if ( ! function_exists ( 'bws_admin_head' ) ) {
|
|
655 |
}
|
656 |
</style>
|
657 |
</noscript>
|
658 |
-
<?php }
|
659 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
660 |
}
|
661 |
|
662 |
/**
|
@@ -803,6 +861,92 @@ if ( ! function_exists ( 'bws_form_restore_default_confirm' ) ) {
|
|
803 |
<?php }
|
804 |
}
|
805 |
|
806 |
-
|
807 |
-
|
808 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<?php
|
2 |
/*
|
3 |
* General functions for BestWebSoft plugins
|
4 |
+
* Version: 1.1.2
|
5 |
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
|
7 |
+
if ( ! function_exists ( 'bws_add_general_menu' ) ) {
|
8 |
+
function bws_add_general_menu() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
add_menu_page( 'BWS Plugins', 'BWS Plugins', 'manage_options', 'bws_plugins', 'bws_add_menu_render', plugins_url( 'images/px.png', __FILE__ ), 1001 );
|
10 |
}
|
11 |
}
|
12 |
|
|
|
13 |
/**
|
14 |
+
* Function check if plugin is compatible with current WP version - for old plugin version
|
15 |
* @return void
|
16 |
*/
|
17 |
if ( ! function_exists ( 'bws_wp_version_check' ) ) {
|
18 |
function bws_wp_version_check( $plugin_basename, $plugin_info, $require_wp ) {
|
19 |
+
bws_wp_min_version_check( $plugin_basename, $plugin_info, '3.8' , $require_wp );
|
20 |
+
}
|
21 |
+
}
|
22 |
+
|
23 |
+
/**
|
24 |
+
* Function check if plugin is compatible with current WP version
|
25 |
+
* @return void
|
26 |
+
*/
|
27 |
+
if ( ! function_exists ( 'bws_wp_min_version_check' ) ) {
|
28 |
+
function bws_wp_min_version_check( $plugin_basename, $plugin_info, $require_wp, $min_wp = false ) {
|
29 |
+
global $wp_version, $bws_versions_notice_array;
|
30 |
+
if ( false != $min_wp && version_compare( $wp_version, $min_wp, "<" ) ) {
|
31 |
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
32 |
if ( is_plugin_active( $plugin_basename ) ) {
|
33 |
deactivate_plugins( $plugin_basename );
|
45 |
)
|
46 |
);
|
47 |
}
|
48 |
+
} elseif ( version_compare( $wp_version, $require_wp, "<" ) ) {
|
49 |
+
$bws_versions_notice_array[] = array( 'name' => $plugin_info['Name'], 'version' => $require_wp );
|
50 |
+
}
|
51 |
+
}
|
52 |
+
}
|
53 |
+
|
54 |
+
if ( ! function_exists( 'bws_versions_notice' ) ) {
|
55 |
+
function bws_versions_notice() {
|
56 |
+
global $bws_versions_notice_array;
|
57 |
+
if ( ! empty( $bws_versions_notice_array ) ) {
|
58 |
+
foreach ( $bws_versions_notice_array as $key => $value ) { ?>
|
59 |
+
<div class="update-nag"><?php
|
60 |
+
echo sprintf(
|
61 |
+
"<strong>%s</strong> %s <strong>WordPress %s</strong> %s",
|
62 |
+
$value['name'],
|
63 |
+
__( 'requires', 'bestwebsoft' ),
|
64 |
+
$value['version'],
|
65 |
+
__( 'or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version.', 'bestwebsoft' )
|
66 |
+
);
|
67 |
+
?></div>
|
68 |
+
<?php }
|
69 |
}
|
70 |
}
|
71 |
}
|
119 |
<img title="" src="<?php echo esc_attr( $banner_url_or_slug ); ?>" alt="" />
|
120 |
</div>
|
121 |
<div class="text"><?php
|
122 |
+
_e( 'It’s time to upgrade your', 'bestwebsoft' ); ?> <strong><?php echo $plugin_info['Name']; ?> plugin</strong> <?php _e( 'to', 'bestwebsoft' ); ?> <strong>Pro</strong> <?php _e( 'version!', 'bestwebsoft' ); ?><br />
|
123 |
<span><?php _e( 'Extend standard plugin functionality with new great options.', 'bestwebsoft' ); ?></span>
|
124 |
</div>
|
125 |
<div class="button_div">
|
205 |
} elseif ( "time_out" == $value->package ) {
|
206 |
$result['error'] = __( "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your", 'bestwebsoft' ) . ' <a href="http://bestwebsoft.com/wp-admin/admin.php?page=bws_plugins_client_area">Client area</a>';
|
207 |
} elseif ( "duplicate_domen_for_trial" == $value->package ) {
|
208 |
+
$result['error'] = __( "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once.", 'bestwebsoft' );
|
209 |
}
|
210 |
}
|
211 |
if ( empty( $result['error'] ) ) {
|
316 |
window.location.href = 'admin.php?page=<?php echo $pro_page; ?>';
|
317 |
}, 5000 );
|
318 |
</script>
|
319 |
+
<p><?php _e( "Congratulations! The Pro version of the plugin is successfully download and activated.", 'bestwebsoft' ); ?></p>
|
320 |
<p>
|
321 |
<?php _e( "Please, go to", 'bestwebsoft' ); ?> <a href="admin.php?page=<?php echo $pro_page; ?>"><?php _e( 'the setting page', 'bestwebsoft' ); ?></a>
|
322 |
(<?php _e( "You will be redirected automatically in 5 seconds.", 'bestwebsoft' ); ?>)
|
325 |
<form method="post" action="admin.php?page=<?php echo $page; ?>&action=go_pro">
|
326 |
<p>
|
327 |
<?php _e( 'You can download and activate', 'bestwebsoft' ); ?>
|
328 |
+
<a href="http://bestwebsoft.com/products/<?php echo $link_slug; ?>/?k=<?php echo $link_key; ?>&pn=<?php echo $link_pn; ?>&v=<?php echo $plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="<?php echo $plugin_info["Name"]; ?> Pro">Pro</a>
|
329 |
<?php _e( 'version of this plugin by entering Your license key.', 'bestwebsoft' ); ?><br />
|
330 |
<span class="bws_info">
|
331 |
<?php _e( 'You can find your license key on your personal page Client area, by clicking on the link', 'bestwebsoft' ); ?>
|
366 |
if ( $trial_license_is_set ) { ?>
|
367 |
<form method="post" action="admin.php?page=<?php echo $page; ?>&action=go_pro">
|
368 |
<p>
|
369 |
+
<?php echo sprintf( __( 'In order to continue using the plugin it is necessary to buy a %s license.', 'bestwebsoft' ), '<a href="http://bestwebsoft.com/products/' . $link_slug . '/?k=' . $link_key . '&pn=' . $link_pn . '&v=' . $plugin_info["Version"] . '&wp_v=' . $wp_version .'" target="_blank" title="' . $plugin_info["Name"] . '">Pro</a>' ) . ' ';
|
370 |
_e( 'After that you can activate it by entering your license key.', 'bestwebsoft' ); ?><br />
|
371 |
<span class="bws_info">
|
372 |
<?php _e( 'You can find your license key on your personal page Client area, by clicking on the link', 'bestwebsoft' ); ?>
|
398 |
window.location.href = 'admin.php?page=<?php echo $page; ?>';
|
399 |
}, 5000 );
|
400 |
</script>
|
401 |
+
<p><?php _e( "Congratulations! The Pro license of the plugin is successfully activated.", 'bestwebsoft' ); ?></p>
|
402 |
<p>
|
403 |
<?php _e( "Please, go to", 'bestwebsoft' ); ?> <a href="admin.php?page=<?php echo $page; ?>"><?php _e( 'the setting page', 'bestwebsoft' ); ?></a>
|
404 |
(<?php _e( "You will be redirected automatically in 5 seconds.", 'bestwebsoft' ); ?>)
|
447 |
} elseif ( "you_are_banned" == $value->package ) {
|
448 |
$result['error'] = __( "Unfortunately, you have exceeded the number of available tries.", 'bestwebsoft' );
|
449 |
} elseif ( "duplicate_domen_for_trial" == $value->package ) {
|
450 |
+
$result['error'] = __( "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once.", 'bestwebsoft' );
|
451 |
}
|
452 |
if ( empty( $result['message'] ) && empty( $result['error'] ) ) {
|
453 |
if ( isset( $value->trial ) )
|
454 |
+
$result['message'] = __( 'The Pro Trial license key is valid.', 'bestwebsoft' );
|
455 |
else
|
456 |
$result['message'] = __( 'The license key is valid.', 'bestwebsoft' );
|
457 |
|
459 |
$result['message'] .= ' ' . __( 'Your license will expire on', 'bestwebsoft' ) . ' ' . $value->time_out . '.';
|
460 |
|
461 |
if ( isset( $value->trial ) && $trial_plugin != false )
|
462 |
+
$result['message'] .= ' ' . sprintf( __( 'In order to continue using the plugin it is necessary to buy a %s license.', 'bestwebsoft' ), '<a href="http://bestwebsoft.com/products/' . $trial_plugin['link_slug'] . '/?k=' . $trial_plugin['link_key'] . '&pn=' . $trial_plugin['link_pn'] . '&v=' . $trial_plugin['plugin_info']['Version'] . '&wp_v=' . $wp_version . '" target="_blank" title="' . $trial_plugin['plugin_info']['Name'] . '">Pro</a>' );
|
463 |
|
464 |
if ( isset( $value->trial ) ) {
|
465 |
$bstwbsftwppdtplgns_options['trial'][ $plugin_basename ] = 1;
|
528 |
<td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
|
529 |
<div class="update-message" style="color: #8C0000;">';
|
530 |
if ( isset( $bstwbsftwppdtplgns_options['trial'][ $plugin_key ] ) && $link_slug != false ) {
|
531 |
+
echo __( 'Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license', 'bestwebsoft' ) . ' - <a href="http://bestwebsoft.com/products/' . $link_slug .'/">http://bestwebsoft.com/products/' . $link_slug . '/</a>';
|
532 |
} else {
|
533 |
echo __( 'Your license has expired. To continue getting top-priority support and plugin updates you should extend it.', 'bestwebsoft' ) . ' <a target="_new" href="http://support.bestwebsoft.com/entries/53487136">' . __( "Learn more", 'bestwebsoft' ) . '</a>';
|
534 |
}
|
540 |
<td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
|
541 |
<div class="update-message" style="color: #8C0000;">';
|
542 |
if ( $free_plugin_name != false ) {
|
543 |
+
echo sprintf( __( 'Notice: You are using the Pro Trial license of %s plugin.', 'bestwebsoft' ), $free_plugin_name );
|
544 |
} else {
|
545 |
+
_e( 'Notice: You are using the Pro Trial license of plugin.', 'bestwebsoft' );
|
546 |
}
|
547 |
if ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) )
|
548 |
+
echo ' ' . __( "The Pro Trial license will expire on", 'bestwebsoft' ) . ' ' . $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] . '.';
|
549 |
echo '</div>
|
550 |
</td>
|
551 |
</tr>';
|
590 |
}
|
591 |
}
|
592 |
|
593 |
+
if ( ! function_exists( 'bws_plugin_banner_to_settings' ) ) {
|
594 |
+
function bws_plugin_banner_to_settings( $plugin_info, $plugin_options_name, $banner_url_or_slug, $settings_url, $post_type_url = false, $post_type_name = false ) {
|
595 |
+
global $wp_version;
|
596 |
+
|
597 |
+
$plugin_options = get_option( $plugin_options_name );
|
598 |
+
|
599 |
+
if ( isset( $plugin_options['display_settings_notice'] ) && 0 == $plugin_options['display_settings_notice'] )
|
600 |
+
return;
|
601 |
+
|
602 |
+
if ( isset( $_POST['bws_hide_settings_notice_' . $plugin_options_name ] ) && check_admin_referer( $plugin_info['Name'], 'bws_settings_nonce_name' ) ) {
|
603 |
+
$plugin_options['display_settings_notice'] = 0;
|
604 |
+
update_option( $plugin_options_name, $plugin_options );
|
605 |
+
return;
|
606 |
+
}
|
607 |
+
|
608 |
+
if ( false == strrpos( $banner_url_or_slug, '/' ) ) {
|
609 |
+
$banner_url_or_slug = '//ps.w.org/' . $banner_url_or_slug . '/assets/icon-128x128.png';
|
610 |
+
}
|
611 |
+
|
612 |
+
if ( 4.2 > $wp_version ) {
|
613 |
+
$plugin_dir_array = explode( '/', plugin_basename( __FILE__ ) );
|
614 |
+
$plugin_dir = $plugin_dir_array[0]; ?>
|
615 |
+
<style type="text/css">
|
616 |
+
.bws_hide_settings_notice {
|
617 |
+
width: 11px;
|
618 |
+
height: 11px;
|
619 |
+
border: none;
|
620 |
+
background: url("<?php echo plugins_url( $plugin_dir . '/bws_menu/images/close_banner.png' ); ?>") no-repeat center center;
|
621 |
+
box-shadow: none;
|
622 |
+
float: right;
|
623 |
+
margin: 8px;
|
624 |
+
}
|
625 |
+
.bws_hide_settings_notice:hover {
|
626 |
+
cursor: pointer;
|
627 |
+
}
|
628 |
+
</style>
|
629 |
+
<?php } ?>
|
630 |
+
<div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
|
631 |
+
<div class="bws_banner_on_plugin_page">
|
632 |
+
<div class="icon">
|
633 |
+
<img title="" src="<?php echo esc_attr( $banner_url_or_slug ); ?>" alt="" />
|
634 |
+
</div>
|
635 |
+
<div class="text">
|
636 |
+
<strong><?php _e( 'Thank you for installing', 'bestwebsoft' ); ?> <?php echo $plugin_info['Name']; ?> plugin!</strong><br />
|
637 |
+
<?php _e( "Let's get started", 'bestwebsoft' ); ?>:
|
638 |
+
<a target="_blank" href="<?php echo $settings_url; ?>"><?php _e( 'Configure Settings', 'bestwebsoft' ); ?></a>
|
639 |
+
<?php if ( false != $post_type_url && false != $post_type_name ) { ?>
|
640 |
+
<?php _e( 'or', 'bestwebsoft' ); ?>
|
641 |
+
<a target="_blank" href="<?php echo $post_type_url; ?>"><?php _e( 'Add New', 'bestwebsoft' ); ?> <?php echo $post_type_name; ?></a>
|
642 |
+
<?php } ?>
|
643 |
+
</div>
|
644 |
+
<form action="" method="post">
|
645 |
+
<button class="notice-dismiss bws_hide_settings_notice" title="<?php _e( 'Close notice', 'bestwebsoft' ); ?>"></button>
|
646 |
+
<input type="hidden" name="bws_hide_settings_notice_<?php echo $plugin_options_name; ?>" value="hide" />
|
647 |
+
<?php wp_nonce_field( $plugin_info['Name'], 'bws_settings_nonce_name' ); ?>
|
648 |
+
</form>
|
649 |
+
</div>
|
650 |
+
</div>
|
651 |
+
<?php }
|
652 |
+
}
|
653 |
+
|
654 |
+
if ( ! function_exists( 'bws_show_settings_notice' ) ) {
|
655 |
+
function bws_show_settings_notice() { ?>
|
656 |
+
<div id="bws_save_settings_notice" class="updated fade" style="display:none">
|
657 |
+
<p>
|
658 |
+
<strong><?php _e( 'Notice', 'bestwebsoft' ); ?></strong>: <?php _e( "The plugin's settings have been changed.", 'bestwebsoft' ); ?>
|
659 |
+
<a class="bws_save_anchor" href="#bws-submit-button"><?php _e( 'Save Changes', 'bestwebsoft' ); ?></a>
|
660 |
+
</p>
|
661 |
+
</div>
|
662 |
+
<?php }
|
663 |
+
}
|
664 |
+
|
665 |
+
if ( ! function_exists ( 'bws_plugins_admin_init' ) ) {
|
666 |
+
function bws_plugins_admin_init() {
|
667 |
/* Internationalization, first(!) */
|
668 |
load_plugin_textdomain( 'bestwebsoft', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
669 |
+
|
670 |
+
bws_add_editor_buttons();
|
671 |
}
|
672 |
}
|
673 |
|
674 |
+
if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) ) {
|
675 |
+
function bws_admin_enqueue_scripts() {
|
676 |
global $wp_version;
|
677 |
+
wp_enqueue_style( 'bws-admin-css', plugins_url( 'css/general_style.css', __FILE__ ) );
|
678 |
+
wp_enqueue_script( 'bws-admin-scripts', plugins_url( 'js/general_script.js', __FILE__ ), array( 'jquery' ) );
|
|
|
|
|
679 |
|
680 |
if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_plugins" ) {
|
681 |
wp_enqueue_style( 'bws_menu_style', plugins_url( 'css/style.css', __FILE__ ) );
|
682 |
wp_enqueue_script( 'bws_menu_script', plugins_url( 'js/bws_menu.js' , __FILE__ ) );
|
683 |
+
wp_enqueue_script( 'theme-install' );
|
|
|
|
|
|
|
684 |
}
|
685 |
}
|
686 |
}
|
687 |
|
688 |
+
if ( ! function_exists ( 'bws_plugins_admin_head' ) ) {
|
689 |
+
function bws_plugins_admin_head() {
|
690 |
+
global $bws_shortcode_list, $wp_version;
|
691 |
if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_plugins" ) { ?>
|
692 |
<noscript>
|
693 |
<style type="text/css">
|
696 |
}
|
697 |
</style>
|
698 |
</noscript>
|
699 |
+
<?php }
|
700 |
+
if ( ! empty( $bws_shortcode_list ) ) { ?>
|
701 |
+
<!-- TinyMCE Shortcode Plugin -->
|
702 |
+
<script type='text/javascript'>
|
703 |
+
var bws_shortcode_button = {
|
704 |
+
'title': '<?php _e( "Add BWS Plugins Shortcode", "bestwebsoft" ); ?>',
|
705 |
+
'function_name': [
|
706 |
+
<?php foreach ( $bws_shortcode_list as $key => $value ) {
|
707 |
+
if ( isset( $value['js_function'] ) )
|
708 |
+
echo "'" . $value['js_function'] . "',";
|
709 |
+
} ?>
|
710 |
+
],
|
711 |
+
'icon_url': '<?php echo plugins_url( "images/shortcode-icon.png" , __FILE__ ); ?>',
|
712 |
+
'wp_version' : '<?php echo $wp_version; ?>'
|
713 |
+
};
|
714 |
+
</script>
|
715 |
+
<!-- TinyMCE Shortcode Plugin -->
|
716 |
+
<?php }
|
717 |
+
}
|
718 |
}
|
719 |
|
720 |
/**
|
861 |
<?php }
|
862 |
}
|
863 |
|
864 |
+
/* shortcode */
|
865 |
+
if ( ! function_exists( 'bws_add_editor_buttons' ) ) {
|
866 |
+
function bws_add_editor_buttons() {
|
867 |
+
global $bws_shortcode_list, $wp_version;
|
868 |
+
if ( $wp_version < '3.3' )
|
869 |
+
return;
|
870 |
+
if ( ! empty( $bws_shortcode_list ) && current_user_can( 'edit_posts' ) && current_user_can( 'edit_pages' ) ) {
|
871 |
+
add_filter( 'mce_external_plugins', 'bws_add_buttons' );
|
872 |
+
add_filter( 'mce_buttons', 'bws_register_buttons' );
|
873 |
+
}
|
874 |
+
}
|
875 |
+
}
|
876 |
+
if ( ! function_exists( 'bws_add_buttons' ) ){
|
877 |
+
function bws_add_buttons( $plugin_array ) {
|
878 |
+
$plugin_array['add_bws_shortcode'] = plugins_url( 'js/shortcode-button.js', __FILE__ );
|
879 |
+
return $plugin_array;
|
880 |
+
}
|
881 |
+
}
|
882 |
+
if ( ! function_exists( 'bws_register_buttons' ) ) {
|
883 |
+
function bws_register_buttons( $buttons ) {
|
884 |
+
array_push( $buttons, 'add_bws_shortcode' ); /* dropcap', 'recentposts */
|
885 |
+
return $buttons;
|
886 |
+
}
|
887 |
+
}
|
888 |
+
|
889 |
+
/* Generate inline content for the popup window when the "bws shortcode" button is clicked */
|
890 |
+
if ( ! function_exists( 'bws_shortcode_media_button_popup' ) ) {
|
891 |
+
function bws_shortcode_media_button_popup() {
|
892 |
+
global $bws_shortcode_list, $wp_version;
|
893 |
+
if ( $wp_version < '3.3' )
|
894 |
+
return;
|
895 |
+
|
896 |
+
if ( ! empty( $bws_shortcode_list ) ) { ?>
|
897 |
+
<div id="bws_shortcode_popup" style="display:none;">
|
898 |
+
<div id="bws_shortcode_popup_block">
|
899 |
+
<div id="bws_shortcode_select_plugin">
|
900 |
+
<h4><?php _e( 'Plugin', 'bestwebsoft' ); ?></h4>
|
901 |
+
<select name="bws_shortcode_select" id="bws_shortcode_select">
|
902 |
+
<?php foreach ( $bws_shortcode_list as $key => $value ) { ?>
|
903 |
+
<option value="<?php echo $key; ?>"><?php echo $value['name']; ?></option>
|
904 |
+
<?php } ?>
|
905 |
+
</select>
|
906 |
+
</div>
|
907 |
+
<div class="clear"></div>
|
908 |
+
<div id="bws_shortcode_content">
|
909 |
+
<h4><?php _e( 'Shortcode settings', 'bestwebsoft' ); ?></h4>
|
910 |
+
<?php echo apply_filters( 'bws_shortcode_button_content', '' ); ?>
|
911 |
+
</div>
|
912 |
+
<div class="clear"></div>
|
913 |
+
<div id="bws_shortcode_content_bottom">
|
914 |
+
<p><?php _e( 'The shortcode will be inserted', 'bestwebsoft' ); ?></p>
|
915 |
+
<div id="bws_shortcode_block"><div id="bws_shortcode_display"></div></div>
|
916 |
+
</div>
|
917 |
+
<?php if ( $wp_version < '3.9' ) { ?>
|
918 |
+
<p>
|
919 |
+
<button class="button-primary primary bws_shortcode_insert"><?php _e( 'Insert', 'bestwebsoft' ); ?></button>
|
920 |
+
</p>
|
921 |
+
<?php } ?>
|
922 |
+
</div>
|
923 |
+
</div>
|
924 |
+
<?php }
|
925 |
+
if ( $wp_version < '3.9' ) { ?>
|
926 |
+
<script type="text/javascript">
|
927 |
+
(function($){
|
928 |
+
$( '.bws_shortcode_insert' ).on( 'click',function() {
|
929 |
+
var shortcode = $( '#TB_ajaxContent #bws_shortcode_display' ).text();
|
930 |
+
if ( '' != shortcode ) {
|
931 |
+
/* insert shortcode to tinymce */
|
932 |
+
if ( !tinyMCE.activeEditor || tinyMCE.activeEditor.isHidden() ) {
|
933 |
+
$( 'textarea#content' ).val( shortcode );
|
934 |
+
} else {
|
935 |
+
tinyMCE.execCommand( 'mceInsertContent', false, shortcode );
|
936 |
+
}
|
937 |
+
}
|
938 |
+
/* close the thickbox after adding shortcode to editor */
|
939 |
+
self.parent.tb_remove();
|
940 |
+
});
|
941 |
+
})(jQuery);
|
942 |
+
</script>
|
943 |
+
<?php }
|
944 |
+
}
|
945 |
+
}
|
946 |
+
|
947 |
+
add_action( 'admin_init', 'bws_plugins_admin_init' );
|
948 |
+
add_action( 'admin_enqueue_scripts', 'bws_admin_enqueue_scripts' );
|
949 |
+
add_action( 'admin_head', 'bws_plugins_admin_head' );
|
950 |
+
add_action( 'admin_footer','bws_shortcode_media_button_popup' );
|
951 |
+
|
952 |
+
add_action( 'admin_notices', 'bws_versions_notice' );
|
bws_menu/bws_include.php
ADDED
@@ -0,0 +1,83 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/*
|
3 |
+
* Get latest version
|
4 |
+
* Version: 1.0.0
|
5 |
+
*/
|
6 |
+
|
7 |
+
if ( ! function_exists ( 'bws_include_init' ) ) {
|
8 |
+
function bws_include_init( $base ) {
|
9 |
+
global $bstwbsftwppdtplgns_options, $bstwbsftwppdtplgns_added_menu;
|
10 |
+
if ( ! function_exists( 'get_plugin_data' ) )
|
11 |
+
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
12 |
+
|
13 |
+
$bws_menu_info = get_plugin_data( dirname( dirname( plugin_dir_path( __FILE__ ) ) ) . '/' . dirname( $base ) . '/bws_menu/bws_menu.php' );
|
14 |
+
$bws_menu_version = $bws_menu_info["Version"];
|
15 |
+
|
16 |
+
if ( ! isset( $bstwbsftwppdtplgns_options ) ) {
|
17 |
+
if ( function_exists( 'is_multisite' ) && is_multisite() ) {
|
18 |
+
if ( ! get_site_option( 'bstwbsftwppdtplgns_options' ) )
|
19 |
+
add_site_option( 'bstwbsftwppdtplgns_options', array() );
|
20 |
+
$bstwbsftwppdtplgns_options = get_site_option( 'bstwbsftwppdtplgns_options' );
|
21 |
+
} else {
|
22 |
+
if ( ! get_option( 'bstwbsftwppdtplgns_options' ) )
|
23 |
+
add_option( 'bstwbsftwppdtplgns_options', array() );
|
24 |
+
$bstwbsftwppdtplgns_options = get_option( 'bstwbsftwppdtplgns_options' );
|
25 |
+
}
|
26 |
+
}
|
27 |
+
|
28 |
+
if ( isset( $bstwbsftwppdtplgns_options['bws_menu_version'] ) ) {
|
29 |
+
$bstwbsftwppdtplgns_options['bws_menu']['version'][ $base ] = $bws_menu_version;
|
30 |
+
unset( $bstwbsftwppdtplgns_options['bws_menu_version'] );
|
31 |
+
if ( function_exists( 'is_multisite' ) && is_multisite() )
|
32 |
+
update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
33 |
+
else
|
34 |
+
update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
35 |
+
require_once( dirname( __FILE__ ) . '/bws_menu.php' );
|
36 |
+
require_once( dirname( __FILE__ ) . '/bws_functions.php' );
|
37 |
+
} else if ( ! isset( $bstwbsftwppdtplgns_options['bws_menu']['version'][ $base ] ) || $bstwbsftwppdtplgns_options['bws_menu']['version'][ $base ] < $bws_menu_version ) {
|
38 |
+
$bstwbsftwppdtplgns_options['bws_menu']['version'][ $base ] = $bws_menu_version;
|
39 |
+
if ( function_exists( 'is_multisite' ) && is_multisite() )
|
40 |
+
update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
41 |
+
else
|
42 |
+
update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
43 |
+
require_once( dirname( __FILE__ ) . '/bws_menu.php' );
|
44 |
+
require_once( dirname( __FILE__ ) . '/bws_functions.php' );
|
45 |
+
} else if ( ! isset( $bstwbsftwppdtplgns_added_menu ) ) {
|
46 |
+
$all_plugins = get_plugins();
|
47 |
+
foreach ( $bstwbsftwppdtplgns_options['bws_menu']['version'] as $key => $value ) {
|
48 |
+
if ( array_key_exists( $key, $all_plugins ) ) {
|
49 |
+
if ( $bws_menu_version < $value && is_plugin_active( $base ) ) {
|
50 |
+
if ( ! isset( $plugin_with_newer_menu ) )
|
51 |
+
$plugin_with_newer_menu = $key;
|
52 |
+
elseif ( $bstwbsftwppdtplgns_options['bws_menu']['version'][ $plugin_with_newer_menu ] < $bstwbsftwppdtplgns_options['bws_menu']['version'][ $key ] )
|
53 |
+
$plugin_with_newer_menu = $key;
|
54 |
+
}
|
55 |
+
} else {
|
56 |
+
unset( $bstwbsftwppdtplgns_options['bws_menu']['version'][ $key ] );
|
57 |
+
if ( function_exists( 'is_multisite' ) && is_multisite() )
|
58 |
+
update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
59 |
+
else
|
60 |
+
update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
61 |
+
}
|
62 |
+
}
|
63 |
+
if ( ! isset( $plugin_with_newer_menu ) )
|
64 |
+
$plugin_with_newer_menu = $base;
|
65 |
+
$plugin_with_newer_menu = explode( '/', $plugin_with_newer_menu );
|
66 |
+
$wp_content_dir = defined( 'WP_CONTENT_DIR' ) ? basename( WP_CONTENT_DIR ) : 'wp-content';
|
67 |
+
|
68 |
+
if ( file_exists( ABSPATH . $wp_content_dir . '/plugins/' . $plugin_with_newer_menu[0] . '/bws_menu/bws_menu.php' ) ) {
|
69 |
+
require_once( ABSPATH . $wp_content_dir . '/plugins/' . $plugin_with_newer_menu[0] . '/bws_menu/bws_menu.php' );
|
70 |
+
} else {
|
71 |
+
require_once( dirname( __FILE__ ) . '/bws_menu.php' );
|
72 |
+
}
|
73 |
+
|
74 |
+
if ( file_exists( ABSPATH . $wp_content_dir . '/plugins/' . $plugin_with_newer_menu[0] . '/bws_menu/bws_functions.php' ) ) {
|
75 |
+
require_once( ABSPATH . $wp_content_dir . '/plugins/' . $plugin_with_newer_menu[0] . '/bws_menu/bws_functions.php' );
|
76 |
+
} else {
|
77 |
+
require_once( dirname( __FILE__ ) . '/bws_functions.php' );
|
78 |
+
}
|
79 |
+
|
80 |
+
$bstwbsftwppdtplgns_added_menu = true;
|
81 |
+
}
|
82 |
+
}
|
83 |
+
}
|
bws_menu/bws_menu.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
* Function for displaying BestWebSoft menu
|
4 |
-
* Version: 1.
|
5 |
*/
|
6 |
|
7 |
if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
|
@@ -230,7 +230,10 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
230 |
'link' => 'http://bestwebsoft.com/products/google-captcha/?k=7b59fbe542acf950b29f3e020d5ad735&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
231 |
'download' => 'http://bestwebsoft.com/products/google-captcha/download/?k=7b59fbe542acf950b29f3e020d5ad735&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
232 |
'wp_install' => $admin_url . 'plugin-install.php?tab=search&s=Google+Captcha+Bestwebsoft&plugin-search-input=Search+Plugins',
|
233 |
-
'settings' => 'admin.php?page=google-captcha.php'
|
|
|
|
|
|
|
234 |
),
|
235 |
'sender/sender.php' => array(
|
236 |
'name' => 'Sender',
|
@@ -456,6 +459,14 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
456 |
'download' => 'http://bestwebsoft.com/products/profile-extra-fields/download/?k=fe3b6c3dbc80bd4b1cf9a27a2f339820&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
457 |
'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Profile+Extra+Fields+BestWebSoft&plugin-search-input=Search+Plugins',
|
458 |
'settings' => 'admin.php?page=profile-extra-fields.php'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
459 |
)
|
460 |
);
|
461 |
|
@@ -984,6 +995,7 @@ if ( ! function_exists( 'bws_get_banner_array' ) ) {
|
|
984 |
function bws_get_banner_array() {
|
985 |
global $bstwbsftwppdtplgns_banner_array;
|
986 |
$bstwbsftwppdtplgns_banner_array = array(
|
|
|
987 |
array( 'mltlngg_hide_banner_on_plugin_page', 'multilanguage/multilanguage.php', '1.1.1' ),
|
988 |
array( 'adsns_hide_banner_on_plugin_page', 'adsense-plugin/adsense-plugin.php', '1.36' ),
|
989 |
array( 'vstrsnln_hide_banner_on_plugin_page', 'visitors-online/visitors-online.php', '0.2' ),
|
1 |
<?php
|
2 |
/*
|
3 |
* Function for displaying BestWebSoft menu
|
4 |
+
* Version: 1.7.4
|
5 |
*/
|
6 |
|
7 |
if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
|
230 |
'link' => 'http://bestwebsoft.com/products/google-captcha/?k=7b59fbe542acf950b29f3e020d5ad735&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
231 |
'download' => 'http://bestwebsoft.com/products/google-captcha/download/?k=7b59fbe542acf950b29f3e020d5ad735&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
232 |
'wp_install' => $admin_url . 'plugin-install.php?tab=search&s=Google+Captcha+Bestwebsoft&plugin-search-input=Search+Plugins',
|
233 |
+
'settings' => 'admin.php?page=google-captcha.php',
|
234 |
+
'pro_version' => 'google-captcha-pro/google-captcha-pro.php',
|
235 |
+
'purchase' => 'http://bestwebsoft.com/products/google-captcha/buy/?k=773d30149acf1edc32e5c0766b96c134&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
236 |
+
'pro_settings' => 'admin.php?page=google-captcha-pro.php'
|
237 |
),
|
238 |
'sender/sender.php' => array(
|
239 |
'name' => 'Sender',
|
459 |
'download' => 'http://bestwebsoft.com/products/profile-extra-fields/download/?k=fe3b6c3dbc80bd4b1cf9a27a2f339820&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
460 |
'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Profile+Extra+Fields+BestWebSoft&plugin-search-input=Search+Plugins',
|
461 |
'settings' => 'admin.php?page=profile-extra-fields.php'
|
462 |
+
),
|
463 |
+
'error-log-viewer/error-log-viewer.php' => array(
|
464 |
+
'name' => 'Error Log Viewer',
|
465 |
+
'description' => "Work with log files and folders on the WordPress server",
|
466 |
+
'link' => 'http://bestwebsoft.com/products/error-log-viewer/?k=da0de8bd2c7a0b2fea5df64d55a368b3&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
467 |
+
'download' => 'http://bestwebsoft.com/products/error-log-viewer/download/?k=da0de8bd2c7a0b2fea5df64d55a368b3&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
468 |
+
'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Error+Log+Viewer+BestWebSoft&plugin-search-input=Search+Plugins',
|
469 |
+
'settings' => 'admin.php?page=rrrlgvwr.php&tab=settings'
|
470 |
)
|
471 |
);
|
472 |
|
995 |
function bws_get_banner_array() {
|
996 |
global $bstwbsftwppdtplgns_banner_array;
|
997 |
$bstwbsftwppdtplgns_banner_array = array(
|
998 |
+
array( 'gglcptch_hide_banner_on_plugin_page', 'google-captcha/google-captcha.php', '1.18' ),
|
999 |
array( 'mltlngg_hide_banner_on_plugin_page', 'multilanguage/multilanguage.php', '1.1.1' ),
|
1000 |
array( 'adsns_hide_banner_on_plugin_page', 'adsense-plugin/adsense-plugin.php', '1.36' ),
|
1001 |
array( 'vstrsnln_hide_banner_on_plugin_page', 'visitors-online/visitors-online.php', '0.2' ),
|
bws_menu/css/general_style.css
CHANGED
@@ -266,4 +266,121 @@ div.bws_banner_on_plugin_page .icon {
|
|
266 |
position: relative;
|
267 |
left: 8px;
|
268 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
269 |
}
|
266 |
position: relative;
|
267 |
left: 8px;
|
268 |
}
|
269 |
+
}
|
270 |
+
/* display shortcodes */
|
271 |
+
span.bws_code {
|
272 |
+
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.07);
|
273 |
+
font-size: 13px;
|
274 |
+
margin: 0 1px;
|
275 |
+
padding: 3px 5px 2px;
|
276 |
+
}
|
277 |
+
/*
|
278 |
+
* styles help tooltips
|
279 |
+
*/
|
280 |
+
.bws_help_box {
|
281 |
+
background-image: url("../images/tooltip_icons.png");
|
282 |
+
background-repeat: no-repeat;
|
283 |
+
cursor: pointer;
|
284 |
+
height: 28px;
|
285 |
+
position: relative;
|
286 |
+
margin: 3px 5px;
|
287 |
+
width: 28px;
|
288 |
+
display: inline-block;
|
289 |
+
vertical-align: middle;
|
290 |
+
}
|
291 |
+
.bws_help_box.dashicons-editor-help {
|
292 |
+
background: none;
|
293 |
+
color: #0074a2;
|
294 |
+
height: auto;
|
295 |
+
width: auto;
|
296 |
+
margin: 0;
|
297 |
+
}
|
298 |
+
.bws_help_box.dashicons-editor-help:hover {
|
299 |
+
color: #2ea2cc;
|
300 |
+
}
|
301 |
+
.bws_hidden_help_text {
|
302 |
+
background: #F4F4F4;
|
303 |
+
border: 1px solid #DCDCDC;
|
304 |
+
border-radius: 4px;
|
305 |
+
left: 40px;
|
306 |
+
padding: 5px;
|
307 |
+
position: absolute;
|
308 |
+
width: auto;
|
309 |
+
line-height: 1.5;
|
310 |
+
display: none;
|
311 |
+
color: #333;
|
312 |
+
font-size: 12px;
|
313 |
+
}
|
314 |
+
.dashicons-editor-help .bws_hidden_help_text {
|
315 |
+
left: 30px;
|
316 |
+
top: -6px;
|
317 |
+
}
|
318 |
+
.bws_hidden_help_text:before {
|
319 |
+
content: url("../images/help.png");
|
320 |
+
left: -10px;
|
321 |
+
position: absolute;
|
322 |
+
top: 7px;
|
323 |
+
direction: ltr;
|
324 |
+
}
|
325 |
+
.bws_help_box:hover .bws_hidden_help_text {
|
326 |
+
display: inline-block;
|
327 |
+
z-index: 1001;
|
328 |
+
}
|
329 |
+
/* RTL styles */
|
330 |
+
.bws_help_box_right .bws_hidden_help_text,
|
331 |
+
.rtl .bws_hidden_help_text {
|
332 |
+
left: auto;
|
333 |
+
right: 40px;
|
334 |
+
}
|
335 |
+
.bws_help_box_right.dashicons-editor-help .bws_hidden_help_text,
|
336 |
+
.rtl .dashicons-editor-help .bws_hidden_help_text {
|
337 |
+
right: 30px;
|
338 |
+
top: 0;
|
339 |
+
}
|
340 |
+
.bws_help_box_right .bws_hidden_help_text:before,
|
341 |
+
.rtl .bws_hidden_help_text:before {
|
342 |
+
top: 0;
|
343 |
+
left: auto;
|
344 |
+
right: -10px;
|
345 |
+
-webkit-transform: rotate(180deg); /* Chrome y Safari */
|
346 |
+
-moz-transform: rotate(180deg); /* Firefox */
|
347 |
+
-o-transform: rotate(180deg); /* Opera */
|
348 |
+
transform: rotate(180deg);
|
349 |
+
}
|
350 |
+
|
351 |
+
/* bws shortcode insert */
|
352 |
+
#bws_shortcode_content,
|
353 |
+
#bws_shortcode_select_plugin {
|
354 |
+
margin-bottom: 10px;
|
355 |
+
}
|
356 |
+
#bws_shortcode_popup_block h4 {
|
357 |
+
padding: 0;
|
358 |
+
line-height: 2.5;
|
359 |
+
text-transform: uppercase;
|
360 |
+
}
|
361 |
+
#bws_shortcode_content_bottom p {
|
362 |
+
font-style: italic;
|
363 |
+
color: #666;
|
364 |
+
}
|
365 |
+
#bws_shortcode_block {
|
366 |
+
background-color: #fdfdfd;
|
367 |
+
border: 1px solid #dfdfdf;
|
368 |
+
overflow: auto;
|
369 |
+
padding: 10px;
|
370 |
+
}
|
371 |
+
#bws_shortcode_display {
|
372 |
+
margin: 0 auto;
|
373 |
+
}
|
374 |
+
#bws_shortcode_content fieldset label {
|
375 |
+
margin-top: 5px;
|
376 |
+
display: inline-block;
|
377 |
+
}
|
378 |
+
#bws_shortcode_content .title {
|
379 |
+
margin-right: 5px;
|
380 |
+
margin-left: 5px;
|
381 |
+
line-height: 2.5;
|
382 |
+
}
|
383 |
+
#bws_shortcode_content .title,
|
384 |
+
#bws_shortcode_content .checkbox-title {
|
385 |
+
white-space: normal;
|
386 |
}
|
bws_menu/css/general_style_wp_before_3.8.css
DELETED
@@ -1,275 +0,0 @@
|
|
1 |
-
#adminmenu #toplevel_page_bws_plugins div.wp-menu-image {
|
2 |
-
background: url("../images/icon_16.png") no-repeat scroll center center transparent;
|
3 |
-
}
|
4 |
-
#wpadminbar li#wp-admin-bar-pdfprnt-bar-menu a:hover span.admin-bar-menu-bws-icon {
|
5 |
-
background: url("../images/icon_16_c.png") no-repeat scroll center center transparent;
|
6 |
-
}
|
7 |
-
#adminmenu #toplevel_page_bws_plugins:hover div.wp-menu-image,
|
8 |
-
#adminmenu #toplevel_page_bws_plugins.wp-has-current-submenu div.wp-menu-image {
|
9 |
-
background: url("../images/icon_16_c.png") no-repeat scroll center center transparent;
|
10 |
-
}
|
11 |
-
.wrap #icon-options-general.icon32-bws {
|
12 |
-
background: url("../images/icon_36.png") no-repeat scroll left top transparent;
|
13 |
-
}
|
14 |
-
#toplevel_page_bws_plugins .wp-submenu .wp-first-item {
|
15 |
-
display: none;
|
16 |
-
}
|
17 |
-
.bws_info {
|
18 |
-
color: #888888;
|
19 |
-
font-size: 10px;
|
20 |
-
}
|
21 |
-
/*
|
22 |
-
* styles for rate-support div on the settings page
|
23 |
-
*/
|
24 |
-
.bws-plugin-reviews {
|
25 |
-
background: none repeat scroll 0 0 #BEE1F1;
|
26 |
-
border: 1px solid #70A8C2;
|
27 |
-
border-radius: 3px;
|
28 |
-
max-width: 700px;
|
29 |
-
}
|
30 |
-
.bws-plugin-reviews-rate {
|
31 |
-
padding: 10px;
|
32 |
-
border-bottom: 1px dashed #70A8C2;
|
33 |
-
}
|
34 |
-
.bws-plugin-reviews-support {
|
35 |
-
padding: 10px;
|
36 |
-
}
|
37 |
-
/*
|
38 |
-
* styles for Go PRO tab
|
39 |
-
*/
|
40 |
-
.bws_go_pro_tab {
|
41 |
-
background-color: #2A95C5;
|
42 |
-
border-color: #11688F;
|
43 |
-
color: #FFFFFF;
|
44 |
-
font-weight: normal !important;
|
45 |
-
text-shadow: none;
|
46 |
-
}
|
47 |
-
.bws_go_pro_tab:hover {
|
48 |
-
background-color: #2080AB;
|
49 |
-
color: #FFFFFF;
|
50 |
-
border-color: #11688F;
|
51 |
-
}
|
52 |
-
/*
|
53 |
-
* styles for pro_version settings and tooltip
|
54 |
-
*/
|
55 |
-
td.bws_pro_version,
|
56 |
-
tr.bws_pro_version,
|
57 |
-
.nav-tab.bws_plugin_menu_pro_version,
|
58 |
-
.nav-tab.bws_plugin_menu_pro_version:hover {
|
59 |
-
background: rgba(248, 226, 104, 0.11) url("../images/pattern_bg.png");
|
60 |
-
border: 1px solid #AAA;
|
61 |
-
}
|
62 |
-
.nav-tab.bws_plugin_menu_pro_version:hover {
|
63 |
-
color: #AAAAAA;
|
64 |
-
}
|
65 |
-
td.bws_pro_version_tooltip {
|
66 |
-
border: 1px solid #AAA;
|
67 |
-
position: inherit;
|
68 |
-
}
|
69 |
-
.bws_pro_version_bloc {
|
70 |
-
position: relative;
|
71 |
-
margin: 5px 0;
|
72 |
-
border: 1px solid #AAAAAA;
|
73 |
-
max-width: 800px;
|
74 |
-
overflow: hidden;
|
75 |
-
}
|
76 |
-
.bws_table_bg {
|
77 |
-
background: #f8e268 url("../images/pattern.png");
|
78 |
-
opacity: 0.11;
|
79 |
-
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=11); /* IE 5.5+*/
|
80 |
-
-moz-opacity: 0.11; /* Mozilla 1.6 и ниже */
|
81 |
-
width: 100%;
|
82 |
-
height: 100%;
|
83 |
-
position: absolute;
|
84 |
-
z-index: 1;
|
85 |
-
}
|
86 |
-
.bws_pro_version_table_bloc table.bws_pro_version {
|
87 |
-
background: transparent;
|
88 |
-
margin: 0;
|
89 |
-
border: none;
|
90 |
-
width: 100%;
|
91 |
-
}
|
92 |
-
table.bws_pro_version {
|
93 |
-
background: #E0E0E0;
|
94 |
-
border: 1px solid #AAA;
|
95 |
-
margin-bottom: 5px;
|
96 |
-
width: auto;
|
97 |
-
}
|
98 |
-
table.bws_pro_version tbody {
|
99 |
-
display: block;
|
100 |
-
}
|
101 |
-
table.bws_pro_version th,
|
102 |
-
table.bws_pro_version td {
|
103 |
-
padding-left: 10px;
|
104 |
-
}
|
105 |
-
.bws_pro_version_tooltip {
|
106 |
-
background: #FFF;
|
107 |
-
border-top: 1px solid #AAA;
|
108 |
-
position: relative;
|
109 |
-
z-index: 2;
|
110 |
-
padding: 10px;
|
111 |
-
font-size: 14px;
|
112 |
-
}
|
113 |
-
.bws_pro_version_tooltip .bws_button {
|
114 |
-
background: #dd5738;
|
115 |
-
border: none;
|
116 |
-
text-decoration: none;
|
117 |
-
color: #fff;
|
118 |
-
padding: 5px 17px;
|
119 |
-
border-radius: 2px;
|
120 |
-
margin: 5px 10px;
|
121 |
-
float: right;
|
122 |
-
}
|
123 |
-
.bws_pro_version_tooltip .bws_info {
|
124 |
-
float: left;
|
125 |
-
padding-top: 10px;
|
126 |
-
font-size: 14px;
|
127 |
-
color: #444;
|
128 |
-
}
|
129 |
-
.bws_pro_version_tooltip .bws_pro_links {
|
130 |
-
float: right;
|
131 |
-
}
|
132 |
-
.bws_pro_version_tooltip .bws_trial_info {
|
133 |
-
padding-top: 10px;
|
134 |
-
display: inline-block;
|
135 |
-
}
|
136 |
-
div.bws_pro_version {
|
137 |
-
padding: 5px 10px;
|
138 |
-
}
|
139 |
-
a.bws_plugin_pro_version {
|
140 |
-
display: block;
|
141 |
-
background: rgba(248, 226, 104, 0.11) url("../images/pattern_bg.png");
|
142 |
-
border: 1px solid #AAA;
|
143 |
-
padding: 5px;
|
144 |
-
text-decoration: none;
|
145 |
-
color: #666;
|
146 |
-
}
|
147 |
-
.bws_pro_version_single_link,
|
148 |
-
.bws_pro_version_single_link:hover {
|
149 |
-
text-decoration: none;
|
150 |
-
color: #666;
|
151 |
-
}
|
152 |
-
/* style for mini-block (ex. google map) */
|
153 |
-
.bws_pro_version_bloc_mini .bws_pro_version_table_bloc table.bws_pro_version {
|
154 |
-
width: auto;
|
155 |
-
}
|
156 |
-
.bws_pro_version_bloc_mini .bws_pro_version_tooltip {
|
157 |
-
padding: 10px 61px;
|
158 |
-
text-align: center;
|
159 |
-
width: 200px;
|
160 |
-
}
|
161 |
-
.bws_pro_version_bloc_mini .bws_pro_version_tooltip a {
|
162 |
-
display: inline-block;
|
163 |
-
line-height: 1.5;
|
164 |
-
}
|
165 |
-
.bws_pro_version_bloc_mini .bws_pro_version_tooltip .bws_button {
|
166 |
-
margin: 10px 10px 5px;
|
167 |
-
padding: 5px 50px;
|
168 |
-
float: none;
|
169 |
-
}
|
170 |
-
/* #### Mobile Phones Portrait or Landscape #### */
|
171 |
-
@media screen and (max-device-width: 768px) {
|
172 |
-
.bws_pro_version_tooltip {
|
173 |
-
padding: 10px;
|
174 |
-
text-align: center;
|
175 |
-
}
|
176 |
-
.bws_pro_version_tooltip .bws_info {
|
177 |
-
float: none;
|
178 |
-
text-align: center;
|
179 |
-
}
|
180 |
-
.bws_pro_version_tooltip a {
|
181 |
-
display: inline-block;
|
182 |
-
line-height: 1.5;
|
183 |
-
}
|
184 |
-
.bws_pro_version_tooltip .bws_info a {
|
185 |
-
display: block;
|
186 |
-
}
|
187 |
-
.bws_pro_version_tooltip .bws_button {
|
188 |
-
margin: 10px 10px 5px;
|
189 |
-
padding: 5px 50px;
|
190 |
-
float: none;
|
191 |
-
}
|
192 |
-
}
|
193 |
-
/*
|
194 |
-
* styles for banner
|
195 |
-
*/
|
196 |
-
.bws_banner_on_plugin_page {
|
197 |
-
border: 1px solid #d4d4d4;
|
198 |
-
background: #FFF;
|
199 |
-
position: relative;
|
200 |
-
overflow: hidden;
|
201 |
-
margin: 12px 0;
|
202 |
-
background: #ECECEC;
|
203 |
-
-moz-border-radius: 3px;
|
204 |
-
-webkit-border-radius: 3px;
|
205 |
-
border-radius: 3px;
|
206 |
-
}
|
207 |
-
.bws_banner_on_plugin_page .text {
|
208 |
-
color: #000;
|
209 |
-
font-size: 15px;
|
210 |
-
line-height: 26px;
|
211 |
-
margin: 18px 18px 14px;
|
212 |
-
float: left;
|
213 |
-
width: auto;
|
214 |
-
max-width: 80%;
|
215 |
-
}
|
216 |
-
.bws_banner_on_plugin_page .text span {
|
217 |
-
font-size: 12px;
|
218 |
-
opacity: 0.7;
|
219 |
-
}
|
220 |
-
div.bws_banner_on_plugin_page .button {
|
221 |
-
float: right;
|
222 |
-
border: none;
|
223 |
-
font-size: 14px;
|
224 |
-
margin: 18px 16px;
|
225 |
-
padding: 14px 29px;
|
226 |
-
color: #FFF;
|
227 |
-
text-shadow: none;
|
228 |
-
font-weight: bold;
|
229 |
-
background: #0074A2;
|
230 |
-
-moz-border-radius: 3px;
|
231 |
-
border-radius: 3px;
|
232 |
-
-webkit-border-radius: 3px;
|
233 |
-
text-decoration: none;
|
234 |
-
height: 50px;
|
235 |
-
text-align: center;
|
236 |
-
text-transform: uppercase;
|
237 |
-
box-shadow: none;
|
238 |
-
-moz-box-sizing: border-box;
|
239 |
-
-webkit-box-sizing: border-box;
|
240 |
-
box-sizing: border-box;
|
241 |
-
}
|
242 |
-
.bws_banner_on_plugin_page .button:hover,
|
243 |
-
.bws_banner_on_plugin_page .button:focus {
|
244 |
-
background: #222;
|
245 |
-
color: #FFF;
|
246 |
-
}
|
247 |
-
div.bws_banner_on_plugin_page .icon {
|
248 |
-
float: left;
|
249 |
-
margin: 12px 8px 8px 12px;
|
250 |
-
}
|
251 |
-
.bws_banner_on_plugin_page .icon img {
|
252 |
-
max-width: 60px;
|
253 |
-
}
|
254 |
-
.bws_banner_on_plugin_page .text + .icon {
|
255 |
-
display: none;
|
256 |
-
}
|
257 |
-
.bws_banner_on_plugin_page .close_icon {
|
258 |
-
float: right;
|
259 |
-
margin: 8px;
|
260 |
-
cursor: pointer;
|
261 |
-
}
|
262 |
-
/* #### Mobile Phones Portrait or Landscape #### */
|
263 |
-
@media screen and (max-device-width: 768px) {
|
264 |
-
.bws_banner_on_plugin_page .text,
|
265 |
-
.bws_banner_on_plugin_page .icon,
|
266 |
-
.bws_banner_on_plugin_page .button_div,
|
267 |
-
.bws_banner_on_plugin_page .button {
|
268 |
-
float: none;
|
269 |
-
text-align: center;
|
270 |
-
}
|
271 |
-
.bws_banner_on_plugin_page .icon {
|
272 |
-
position: relative;
|
273 |
-
left: 8px;
|
274 |
-
}
|
275 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bws_menu/icons/error-log-viewer.png
ADDED
Binary file
|
bws_menu/images/help.png
ADDED
Binary file
|
bws_menu/images/icon_16.png
DELETED
Binary file
|
bws_menu/images/icon_16_b.png
DELETED
Binary file
|
bws_menu/images/icon_16_c.png
DELETED
Binary file
|
bws_menu/images/icon_36.png
DELETED
Binary file
|
bws_menu/images/icon_36_b.png
DELETED
Binary file
|
bws_menu/images/shortcode-icon.png
ADDED
Binary file
|
bws_menu/images/tooltip_icons.png
ADDED
Binary file
|
bws_menu/js/general_script.js
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
(function($) {
|
2 |
+
$( document ).ready( function() {
|
3 |
+
/**
|
4 |
+
* add notice about changing on the settings page
|
5 |
+
*/
|
6 |
+
$( '.bws_form input, .bws_form textarea, .bws_form select' ).bind( "change click select", function() {
|
7 |
+
if ( $( this ).attr( 'type' ) != 'submit' && ! $( this ).hasClass( 'bws_no_bind_notice' ) ) {
|
8 |
+
$( '.updated.fade, .error' ).css( 'display', 'none' );
|
9 |
+
$( '#bws_save_settings_notice' ).css( 'display', 'block' );
|
10 |
+
};
|
11 |
+
});
|
12 |
+
$( '.bws_save_anchor' ).on( "click", function( event ) {
|
13 |
+
event.preventDefault();
|
14 |
+
$( '.bws_form #bws-submit-button' ).click();
|
15 |
+
});
|
16 |
+
});
|
17 |
+
})(jQuery);
|
bws_menu/js/shortcode-button.js
ADDED
@@ -0,0 +1,121 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
(function($) {
|
2 |
+
var win;
|
3 |
+
tinymce.create( 'tinymce.plugins.BWSButton', {
|
4 |
+
/**
|
5 |
+
* Initializes the plugin, this will be executed after the plugin has been created.
|
6 |
+
* This call is done before the editor instance has finished it's initialization so use the onInit event
|
7 |
+
* of the editor instance to intercept that event.
|
8 |
+
*
|
9 |
+
* @param {tinymce.Editor} ed Editor instance that the plugin is initialized in.
|
10 |
+
* @param {string} url Absolute URL to where the plugin is located.
|
11 |
+
*/
|
12 |
+
init : function( ed, url ) {
|
13 |
+
ed.addButton( 'add_bws_shortcode', {
|
14 |
+
title : bws_shortcode_button.title,
|
15 |
+
image : bws_shortcode_button.icon_url,
|
16 |
+
onclick: function() {
|
17 |
+
if ( bws_shortcode_button.wp_version < '3.9' ) {
|
18 |
+
/* triggers the thickbox */
|
19 |
+
var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width;
|
20 |
+
W = W - 80;
|
21 |
+
H = H - 84;
|
22 |
+
tb_show( bws_shortcode_button.title, '#TB_inline?width=' + W + '&height=' + H + '&inlineId=bws_shortcode_popup' );
|
23 |
+
|
24 |
+
var current_object = '#TB_ajaxContent';
|
25 |
+
} else {
|
26 |
+
win = ed.windowManager.open( {
|
27 |
+
width: 400,
|
28 |
+
height: 400,
|
29 |
+
inline: true,
|
30 |
+
title: bws_shortcode_button.title,
|
31 |
+
body: {
|
32 |
+
id : 'bws-shortcode-content',
|
33 |
+
type: 'container',
|
34 |
+
classes: 'bws-shortcode',
|
35 |
+
html: $( '#bws_shortcode_popup' ).html()
|
36 |
+
},
|
37 |
+
buttons: [{
|
38 |
+
text: 'Insert',
|
39 |
+
classes: 'button-primary primary bws_shortcode_insert',
|
40 |
+
onclick: function( e ) {
|
41 |
+
var shortcode = $( '.mce-container-body #bws_shortcode_display' ).text();
|
42 |
+
if ( '' != shortcode ) {
|
43 |
+
/* insert shortcode to tinymce */
|
44 |
+
ed.insertContent( shortcode );
|
45 |
+
}
|
46 |
+
ed.windowManager.close();
|
47 |
+
},
|
48 |
+
},
|
49 |
+
{
|
50 |
+
text: 'Cancel',
|
51 |
+
onclick: 'close'
|
52 |
+
}],
|
53 |
+
|
54 |
+
});
|
55 |
+
var current_object = '.mce-container-body';
|
56 |
+
}
|
57 |
+
var select_count = $( current_object + ' select#bws_shortcode_select option').length;
|
58 |
+
if ( 1 == select_count ) {
|
59 |
+
$( current_object + ' #bws_shortcode_select_plugin' ).hide();
|
60 |
+
}
|
61 |
+
|
62 |
+
var plugin = $( current_object + ' #bws_shortcode_select option:selected' ).val();
|
63 |
+
$( current_object + ' #bws_shortcode_content > div' ).hide();
|
64 |
+
$( current_object + ' #bws_shortcode_content > #' + plugin ).show();
|
65 |
+
|
66 |
+
if ( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).length > 0 ) {
|
67 |
+
$( current_object + ' #bws_shortcode_display' ).text( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).val() );
|
68 |
+
}
|
69 |
+
|
70 |
+
$( current_object + ' #bws_shortcode_select' ).on( 'change',function() {
|
71 |
+
var plugin = $( current_object + ' #bws_shortcode_select option:selected' ).val();
|
72 |
+
$( current_object + ' #bws_shortcode_content > div' ).hide();
|
73 |
+
$( current_object + ' #bws_shortcode_content > #' + plugin ).show();
|
74 |
+
if ( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).length > 0 ) {
|
75 |
+
$( current_object + ' #bws_shortcode_display' ).text( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).val() );
|
76 |
+
} else {
|
77 |
+
$( current_object + ' #bws_shortcode_display' ).text( '' );
|
78 |
+
}
|
79 |
+
});
|
80 |
+
|
81 |
+
$.each( bws_shortcode_button.function_name, function( index, value ) {
|
82 |
+
eval( value + '();' );
|
83 |
+
});
|
84 |
+
}
|
85 |
+
});
|
86 |
+
},
|
87 |
+
|
88 |
+
/**
|
89 |
+
* Creates control instances based in the incomming name. This method is normally not
|
90 |
+
* needed since the addButton method of the tinymce.Editor class is a more easy way of adding buttons
|
91 |
+
* but you sometimes need to create more complex controls like listboxes, split buttons etc then this
|
92 |
+
* method can be used to create those.
|
93 |
+
*
|
94 |
+
* @param {String} n Name of the control to create.
|
95 |
+
* @param {tinymce.ControlManager} cm Control manager to use inorder to create new control.
|
96 |
+
* @return {tinymce.ui.Control} New control instance or null if no control was created.
|
97 |
+
*/
|
98 |
+
createControl : function(n, cm) {
|
99 |
+
return null;
|
100 |
+
},
|
101 |
+
|
102 |
+
/**
|
103 |
+
* Returns information about the plugin as a name/value array.
|
104 |
+
* The current keys are longname, author, authorurl, infourl and version.
|
105 |
+
*
|
106 |
+
* @return {Object} Name/value array containing information about the plugin.
|
107 |
+
*/
|
108 |
+
getInfo : function() {
|
109 |
+
return {
|
110 |
+
longname : 'BWS Shortcode Buttons',
|
111 |
+
author : 'BWS',
|
112 |
+
authorurl : 'http://bestwebsoft.com',
|
113 |
+
infourl : '',
|
114 |
+
version : "0.1"
|
115 |
+
};
|
116 |
+
}
|
117 |
+
});
|
118 |
+
|
119 |
+
/* Register plugin */
|
120 |
+
tinymce.PluginManager.add( 'add_bws_shortcode', tinymce.plugins.BWSButton );
|
121 |
+
})(jQuery);
|
bws_menu/languages/bestwebsoft-de_DE.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-de_DE.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Lothar Schiborr <lothar.schiborr@web.de>\n"
|
9 |
"Language: de_DE\n"
|
@@ -18,658 +18,722 @@ msgstr ""
|
|
18 |
"X-Textdomain-Support: yes\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: bws_functions.php:
|
|
|
22 |
msgid "requires"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: bws_functions.php:
|
26 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: bws_functions.php:
|
30 |
msgid "Back to the WordPress"
|
31 |
msgstr ""
|
32 |
|
33 |
# @ captcha
|
34 |
-
#: bws_functions.php:
|
35 |
#, fuzzy
|
36 |
msgid "Plugins page"
|
37 |
msgstr "BWS Plugins"
|
38 |
|
39 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
40 |
msgid "It’s time to upgrade your"
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: bws_functions.php:
|
44 |
msgid "to"
|
45 |
msgstr ""
|
46 |
|
47 |
# @ captcha
|
48 |
-
#: bws_functions.php:
|
49 |
#, fuzzy
|
50 |
msgid "version!"
|
51 |
msgstr "PHP Version"
|
52 |
|
53 |
-
#: bws_functions.php:
|
54 |
msgid "Extend standard plugin functionality with new great options."
|
55 |
msgstr ""
|
56 |
|
57 |
# @ captcha
|
58 |
-
#: bws_functions.php:
|
59 |
-
#: bws_functions.php:
|
60 |
#, fuzzy
|
61 |
msgid "Learn More"
|
62 |
msgstr "Lesen Sie mehr"
|
63 |
|
64 |
-
#: bws_functions.php:
|
65 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
66 |
msgstr ""
|
67 |
|
68 |
# @ captcha
|
69 |
-
#: bws_functions.php:
|
70 |
#, fuzzy
|
71 |
msgid "Rate the plugin"
|
72 |
msgstr "Aktivierte Plugins"
|
73 |
|
74 |
# @ captcha
|
75 |
-
#: bws_functions.php:
|
76 |
#, fuzzy
|
77 |
msgid "If there is something wrong about it, please contact us"
|
78 |
msgstr "Wenn Sie irgendwelche Fragen haben, kontaktieren Sie uns bitte über"
|
79 |
|
80 |
-
#: bws_functions.php:
|
81 |
-
#: bws_functions.php:
|
82 |
msgid "Wrong license key"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: bws_functions.php:
|
86 |
-
#: bws_functions.php:
|
87 |
-
#: bws_functions.php:
|
88 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: bws_functions.php:
|
92 |
-
#: bws_functions.php:
|
93 |
-
#: bws_functions.php:
|
94 |
msgid "We are sorry for inconvenience."
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: bws_functions.php:
|
98 |
msgid "This license key is bind to another site"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: bws_functions.php:
|
102 |
-
#: bws_functions.php:
|
103 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: bws_functions.php:
|
107 |
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: bws_functions.php:
|
111 |
-
msgid "Unfortunately, the
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: bws_functions.php:
|
115 |
-
#: bws_functions.php:
|
116 |
-
#: bws_functions.php:
|
117 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: bws_functions.php:
|
121 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: bws_functions.php:
|
125 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: bws_functions.php:
|
129 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: bws_functions.php:
|
133 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: bws_functions.php:
|
137 |
msgid "Please, enter Your license key"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: bws_functions.php:
|
141 |
-
msgid "Congratulations! The
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: bws_functions.php:
|
145 |
-
#: bws_functions.php:
|
146 |
msgid "Please, go to"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: bws_functions.php:
|
150 |
-
#: bws_functions.php:
|
151 |
msgid "the setting page"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: bws_functions.php:
|
155 |
-
#: bws_functions.php:
|
156 |
msgid "You will be redirected automatically in 5 seconds."
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: bws_functions.php:
|
160 |
msgid "You can download and activate"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: bws_functions.php:
|
164 |
msgid "version of this plugin by entering Your license key."
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: bws_functions.php:
|
168 |
-
#: bws_functions.php:
|
169 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: bws_functions.php:
|
173 |
-
#: bws_functions.php:
|
174 |
msgid "(your username is the email you specify when purchasing the product)."
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: bws_functions.php:
|
|
|
178 |
msgid "or"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: bws_functions.php:
|
182 |
#, php-format
|
183 |
msgid "Start Your Free %s-Day Trial Now"
|
184 |
msgstr ""
|
185 |
|
186 |
# @ captcha
|
187 |
-
#: bws_functions.php:
|
188 |
-
#: bws_functions.php:
|
189 |
-
#: bws_functions.php:
|
190 |
-
#: bws_functions.php:
|
191 |
-
#: bws_menu.php:
|
192 |
-
#: bws_menu.php:
|
193 |
#, fuzzy
|
194 |
msgid "Activate"
|
195 |
msgstr "Aktivierte Plugins"
|
196 |
|
197 |
-
#: bws_functions.php:
|
198 |
-
#: bws_functions.php:
|
199 |
#, php-format
|
200 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: bws_functions.php:
|
204 |
msgid "After that you can activate it by entering your license key."
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: bws_functions.php:
|
208 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: bws_functions.php:
|
212 |
-
msgid "Congratulations! The
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: bws_functions.php:
|
216 |
msgid "Wrong license key."
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: bws_functions.php:
|
220 |
msgid "This license key is bind to another site."
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: bws_functions.php:
|
224 |
msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: bws_functions.php:
|
228 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: bws_functions.php:
|
232 |
-
msgid "Unfortunately, the
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: bws_functions.php:
|
236 |
-
msgid "The
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: bws_functions.php:
|
240 |
msgid "The license key is valid."
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: bws_functions.php:
|
244 |
msgid "Your license will expire on"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: bws_functions.php:
|
248 |
msgid "Please, enter your license key"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: bws_functions.php:
|
252 |
msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: bws_functions.php:
|
256 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: bws_functions.php:
|
260 |
msgid "Check license key"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: bws_functions.php:
|
264 |
msgid "WARNING: Illegal use notification"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: bws_functions.php:
|
268 |
msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: bws_functions.php:
|
272 |
-
msgid "Notice: Your
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: bws_functions.php:
|
276 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
277 |
msgstr ""
|
278 |
|
279 |
# @ captcha
|
280 |
-
#: bws_functions.php:
|
281 |
-
#: bws_functions.php:
|
282 |
-
#: bws_menu.php:
|
283 |
-
#: bws_menu.php:
|
284 |
-
#: bws_menu.php:
|
285 |
-
#: bws_menu.php:
|
286 |
-
#: bws_menu.php:
|
287 |
#, fuzzy
|
288 |
msgid "Learn more"
|
289 |
msgstr "Lesen Sie mehr"
|
290 |
|
291 |
-
#: bws_functions.php:
|
292 |
#, php-format
|
293 |
-
msgid "Notice: You are using the
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: bws_functions.php:
|
297 |
-
msgid "Notice: You are using the
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: bws_functions.php:
|
301 |
-
msgid "The
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: bws_functions.php:
|
305 |
msgid "You license for"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: bws_functions.php:
|
309 |
msgid "expires on"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: bws_functions.php:
|
313 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
314 |
msgstr ""
|
315 |
|
316 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
317 |
msgid "Close"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: bws_functions.php:
|
321 |
-
#: bws_functions.php:784
|
322 |
msgid "Restore all plugin settings to defaults"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: bws_functions.php:
|
326 |
-
#: bws_functions.php:786
|
327 |
msgid "Restore settings"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: bws_functions.php:
|
331 |
msgid "Are you sure you want to restore all settings by default?"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: bws_functions.php:
|
335 |
msgid "Yes, restore all settings"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: bws_functions.php:
|
339 |
msgid "No, go back to the settings page"
|
340 |
msgstr ""
|
341 |
|
342 |
# @ captcha
|
343 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
344 |
msgid "Not set"
|
345 |
msgstr "Nicht festgelegt"
|
346 |
|
347 |
# @ captcha
|
348 |
-
#: bws_menu.php:
|
349 |
-
#: bws_menu.php:
|
350 |
msgid "On"
|
351 |
msgstr "Ein"
|
352 |
|
353 |
# @ captcha
|
354 |
-
#: bws_menu.php:
|
355 |
-
#: bws_menu.php:
|
356 |
msgid "Off"
|
357 |
msgstr "Ausgeschaltet"
|
358 |
|
359 |
# @ captcha
|
360 |
-
#: bws_menu.php:
|
361 |
-
#: bws_menu.php:
|
362 |
-
#: bws_menu.php:
|
363 |
-
#: bws_menu.php:
|
364 |
-
#: bws_menu.php:
|
365 |
-
#: bws_menu.php:
|
366 |
msgid "N/A"
|
367 |
msgstr "keine Angaben"
|
368 |
|
369 |
# @ captcha
|
370 |
-
#: bws_menu.php:
|
371 |
msgid " Mb"
|
372 |
msgstr " Mb"
|
373 |
|
374 |
# @ captcha
|
375 |
-
#: bws_menu.php:
|
376 |
-
#: bws_menu.php:
|
377 |
-
#: bws_menu.php:
|
378 |
-
#: bws_menu.php:
|
379 |
msgid "Yes"
|
380 |
msgstr "Ja"
|
381 |
|
382 |
# @ captcha
|
383 |
-
#: bws_menu.php:
|
384 |
-
#: bws_menu.php:
|
385 |
-
#: bws_menu.php:
|
386 |
-
#: bws_menu.php:
|
387 |
msgid "No"
|
388 |
msgstr "Nein"
|
389 |
|
390 |
# @ captcha
|
391 |
-
#: bws_menu.php:
|
392 |
msgid "Operating System"
|
393 |
msgstr "Betriebs-System"
|
394 |
|
395 |
# @ captcha
|
396 |
-
#: bws_menu.php:
|
397 |
msgid "Server"
|
398 |
msgstr "Server"
|
399 |
|
400 |
# @ captcha
|
401 |
-
#: bws_menu.php:
|
402 |
msgid "Memory usage"
|
403 |
msgstr "Speichernutzung"
|
404 |
|
405 |
# @ captcha
|
406 |
-
#: bws_menu.php:
|
407 |
msgid "MYSQL Version"
|
408 |
msgstr "MYSQL Version"
|
409 |
|
410 |
# @ captcha
|
411 |
-
#: bws_menu.php:
|
412 |
msgid "SQL Mode"
|
413 |
msgstr "SQL Modus"
|
414 |
|
415 |
# @ captcha
|
416 |
-
#: bws_menu.php:
|
417 |
msgid "PHP Version"
|
418 |
msgstr "PHP Version"
|
419 |
|
420 |
# @ captcha
|
421 |
-
#: bws_menu.php:
|
422 |
msgid "PHP Safe Mode"
|
423 |
msgstr "PHP Gesicherter Modus"
|
424 |
|
425 |
# @ captcha
|
426 |
-
#: bws_menu.php:
|
427 |
msgid "PHP Allow URL fopen"
|
428 |
msgstr "PHP Erlaubet URL zu öffnen (fopen)"
|
429 |
|
430 |
# @ captcha
|
431 |
-
#: bws_menu.php:
|
432 |
msgid "PHP Memory Limit"
|
433 |
msgstr "PHP Speicher-Grenze"
|
434 |
|
435 |
# @ captcha
|
436 |
-
#: bws_menu.php:
|
437 |
msgid "PHP Max Upload Size"
|
438 |
msgstr "PHP Maximale Upload Größe"
|
439 |
|
440 |
# @ captcha
|
441 |
-
#: bws_menu.php:
|
442 |
msgid "PHP Max Post Size"
|
443 |
msgstr "PHP Maximale Beitrags-Größe"
|
444 |
|
445 |
# @ captcha
|
446 |
-
#: bws_menu.php:
|
447 |
msgid "PHP Max Script Execute Time"
|
448 |
msgstr "PHP Maximale Script Ausführungszeit"
|
449 |
|
450 |
# @ captcha
|
451 |
-
#: bws_menu.php:
|
452 |
msgid "PHP Exif support"
|
453 |
msgstr "PHP Exif Support"
|
454 |
|
455 |
# @ captcha
|
456 |
-
#: bws_menu.php:
|
457 |
msgid "PHP IPTC support"
|
458 |
msgstr "PHP IPTC Support"
|
459 |
|
460 |
# @ captcha
|
461 |
-
#: bws_menu.php:
|
462 |
msgid "PHP XML support"
|
463 |
msgstr "PHP XML Support"
|
464 |
|
465 |
# @ captcha
|
466 |
-
#: bws_menu.php:
|
467 |
msgid "Site URL"
|
468 |
msgstr "Site URL"
|
469 |
|
470 |
# @ captcha
|
471 |
-
#: bws_menu.php:
|
472 |
msgid "Home URL"
|
473 |
msgstr "Home URL"
|
474 |
|
475 |
# @ captcha
|
476 |
-
#: bws_menu.php:
|
477 |
msgid "WordPress Version"
|
478 |
msgstr "WordPress Version"
|
479 |
|
480 |
# @ captcha
|
481 |
-
#: bws_menu.php:
|
482 |
msgid "WordPress DB Version"
|
483 |
msgstr "WordPress DB Version"
|
484 |
|
485 |
# @ captcha
|
486 |
-
#: bws_menu.php:
|
487 |
msgid "Multisite"
|
488 |
msgstr "Multisite"
|
489 |
|
490 |
# @ captcha
|
491 |
-
#: bws_menu.php:
|
492 |
msgid "Active Theme"
|
493 |
msgstr "Actives Theme"
|
494 |
|
495 |
# @ captcha
|
496 |
-
#: bws_menu.php:
|
497 |
msgid "Please enter a valid email address."
|
498 |
msgstr "Bitte geben Sie eine gültige E-Mail-Adresse ein."
|
499 |
|
500 |
# @ captcha
|
501 |
-
#: bws_menu.php:
|
502 |
msgid "Email with system info is sent to "
|
503 |
msgstr "E-Mail-mit System Informationen wird gesendet an "
|
504 |
|
505 |
# @ captcha
|
506 |
-
#: bws_menu.php:
|
507 |
msgid "Thank you for contacting us."
|
508 |
msgstr "Vielen Dank für Ihre Kontaktaufnahme."
|
509 |
|
510 |
# @ captcha
|
511 |
-
#: bws_menu.php:
|
512 |
msgid "Sorry, email message could not be delivered."
|
513 |
msgstr "Sorry, E-Mail konnte nicht zugestellt werden."
|
514 |
|
515 |
-
#: bws_menu.php:
|
516 |
msgid "Need help?"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: bws_menu.php:
|
520 |
msgid "Client area"
|
521 |
msgstr ""
|
522 |
|
523 |
# @ captcha
|
524 |
-
#: bws_menu.php:
|
525 |
-
#: bws_menu.php:
|
526 |
msgid "System status"
|
527 |
msgstr "System Status"
|
528 |
|
529 |
# @ captcha
|
530 |
-
#: bws_menu.php:
|
531 |
#, fuzzy
|
532 |
msgid "Plugins"
|
533 |
msgstr "BWS Plugins"
|
534 |
|
535 |
-
#: bws_menu.php:
|
536 |
msgid "Themes"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: bws_menu.php:
|
540 |
msgid "All"
|
541 |
msgstr ""
|
542 |
|
543 |
# @ default
|
544 |
-
#: bws_menu.php:
|
545 |
#, fuzzy
|
546 |
msgid "Installed"
|
547 |
msgstr "Installiere %s"
|
548 |
|
549 |
# @ captcha
|
550 |
-
#: bws_menu.php:
|
551 |
#, fuzzy
|
552 |
msgid "Recommended"
|
553 |
msgstr "Empfohlene Plugins"
|
554 |
|
555 |
# @ captcha
|
556 |
-
#: bws_menu.php:
|
557 |
msgid "Installed plugins"
|
558 |
msgstr "Installierte Plugins"
|
559 |
|
560 |
# @ captcha
|
561 |
-
#: bws_menu.php:
|
562 |
-
#: bws_menu.php:
|
563 |
msgid "Settings"
|
564 |
msgstr "Einstellungen"
|
565 |
|
566 |
# @ captcha
|
567 |
-
#: bws_menu.php:
|
568 |
-
#: bws_menu.php:
|
569 |
#, fuzzy
|
570 |
msgid "Activate this plugin"
|
571 |
msgstr "Aktivierte Plugins"
|
572 |
|
573 |
-
#: bws_menu.php:
|
574 |
-
#: bws_menu.php:
|
575 |
-
#: bws_menu.php:
|
576 |
msgid "Go"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: bws_menu.php:
|
580 |
-
#: bws_menu.php:
|
581 |
-
#: bws_menu.php:
|
582 |
msgid "DONATE"
|
583 |
msgstr ""
|
584 |
|
585 |
# @ captcha
|
586 |
-
#: bws_menu.php:
|
587 |
msgid "Recommended plugins"
|
588 |
msgstr "Empfohlene Plugins"
|
589 |
|
590 |
# @ default
|
591 |
-
#: bws_menu.php:
|
592 |
#, fuzzy
|
593 |
msgid "Install now"
|
594 |
msgstr "Installiere %s"
|
595 |
|
596 |
-
#: bws_menu.php:
|
597 |
msgid "Try again"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: bws_menu.php:
|
601 |
#, php-format
|
602 |
msgid "Preview “%s”"
|
603 |
msgstr ""
|
604 |
|
605 |
# @ default
|
606 |
-
#: bws_menu.php:
|
607 |
#, php-format
|
608 |
msgid "Install %s"
|
609 |
msgstr "Installiere %s"
|
610 |
|
611 |
# @ default
|
612 |
-
#: bws_menu.php:
|
613 |
#, fuzzy
|
614 |
msgid "Install Now"
|
615 |
msgstr "Installiere %s"
|
616 |
|
617 |
-
#: bws_menu.php:
|
618 |
#, php-format
|
619 |
msgid "Update to version %s"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: bws_menu.php:
|
623 |
msgid "Update"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: bws_menu.php:
|
627 |
#, php-format
|
628 |
msgid "Preview %s"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: bws_menu.php:
|
632 |
msgid "Preview"
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: bws_menu.php:
|
636 |
-
#: bws_menu.php:
|
637 |
#, php-format
|
638 |
msgid "By %s"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: bws_menu.php:
|
642 |
msgid "Details"
|
643 |
msgstr ""
|
644 |
|
645 |
# @ default
|
646 |
-
#: bws_menu.php:
|
647 |
#, fuzzy
|
648 |
msgid "Already Installed"
|
649 |
msgstr "Installiere %s"
|
650 |
|
651 |
# @ captcha
|
652 |
-
#: bws_menu.php:
|
653 |
msgid "Environment"
|
654 |
msgstr "Umgebungsvariable"
|
655 |
|
656 |
# @ captcha
|
657 |
-
#: bws_menu.php:
|
658 |
msgid "Active Plugins"
|
659 |
msgstr "Aktivierte Plugins"
|
660 |
|
661 |
# @ captcha
|
662 |
-
#: bws_menu.php:
|
663 |
msgid "Inactive Plugins"
|
664 |
msgstr "Inactive Plugins"
|
665 |
|
666 |
# @ captcha
|
667 |
-
#: bws_menu.php:
|
668 |
msgid "Send to support"
|
669 |
msgstr "Sende zuzm Support"
|
670 |
|
671 |
# @ captcha
|
672 |
-
#: bws_menu.php:
|
673 |
msgid "Send to custom email »"
|
674 |
msgstr "Senden Sie eine benutzerdefinierte E-Mail zu »"
|
675 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-17 16:00+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-09-17 16:00+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Lothar Schiborr <lothar.schiborr@web.de>\n"
|
9 |
"Language: de_DE\n"
|
18 |
"X-Textdomain-Support: yes\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: bws_functions.php:29
|
22 |
+
#: bws_functions.php:53
|
23 |
msgid "requires"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: bws_functions.php:31
|
27 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: bws_functions.php:32
|
31 |
msgid "Back to the WordPress"
|
32 |
msgstr ""
|
33 |
|
34 |
# @ captcha
|
35 |
+
#: bws_functions.php:34
|
36 |
#, fuzzy
|
37 |
msgid "Plugins page"
|
38 |
msgstr "BWS Plugins"
|
39 |
|
40 |
+
#: bws_functions.php:55
|
41 |
+
msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
#: bws_functions.php:112
|
45 |
msgid "It’s time to upgrade your"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: bws_functions.php:112
|
49 |
msgid "to"
|
50 |
msgstr ""
|
51 |
|
52 |
# @ captcha
|
53 |
+
#: bws_functions.php:112
|
54 |
#, fuzzy
|
55 |
msgid "version!"
|
56 |
msgstr "PHP Version"
|
57 |
|
58 |
+
#: bws_functions.php:113
|
59 |
msgid "Extend standard plugin functionality with new great options."
|
60 |
msgstr ""
|
61 |
|
62 |
# @ captcha
|
63 |
+
#: bws_functions.php:116
|
64 |
+
#: bws_functions.php:513
|
65 |
#, fuzzy
|
66 |
msgid "Learn More"
|
67 |
msgstr "Lesen Sie mehr"
|
68 |
|
69 |
+
#: bws_functions.php:133
|
70 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
71 |
msgstr ""
|
72 |
|
73 |
# @ captcha
|
74 |
+
#: bws_functions.php:134
|
75 |
#, fuzzy
|
76 |
msgid "Rate the plugin"
|
77 |
msgstr "Aktivierte Plugins"
|
78 |
|
79 |
# @ captcha
|
80 |
+
#: bws_functions.php:137
|
81 |
#, fuzzy
|
82 |
msgid "If there is something wrong about it, please contact us"
|
83 |
msgstr "Wenn Sie irgendwelche Fragen haben, kontaktieren Sie uns bitte über"
|
84 |
|
85 |
+
#: bws_functions.php:154
|
86 |
+
#: bws_functions.php:190
|
87 |
msgid "Wrong license key"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: bws_functions.php:184
|
91 |
+
#: bws_functions.php:426
|
92 |
+
#: bws_functions.php:477
|
93 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: bws_functions.php:184
|
97 |
+
#: bws_functions.php:426
|
98 |
+
#: bws_functions.php:477
|
99 |
msgid "We are sorry for inconvenience."
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: bws_functions.php:192
|
103 |
msgid "This license key is bind to another site"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: bws_functions.php:194
|
107 |
+
#: bws_functions.php:336
|
108 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: bws_functions.php:196
|
112 |
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: bws_functions.php:198
|
116 |
+
msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: bws_functions.php:219
|
120 |
+
#: bws_functions.php:241
|
121 |
+
#: bws_functions.php:263
|
122 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: bws_functions.php:231
|
126 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: bws_functions.php:237
|
130 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: bws_functions.php:244
|
134 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: bws_functions.php:267
|
138 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: bws_functions.php:292
|
142 |
msgid "Please, enter Your license key"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: bws_functions.php:309
|
146 |
+
msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: bws_functions.php:311
|
150 |
+
#: bws_functions.php:393
|
151 |
msgid "Please, go to"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: bws_functions.php:311
|
155 |
+
#: bws_functions.php:393
|
156 |
msgid "the setting page"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: bws_functions.php:312
|
160 |
+
#: bws_functions.php:394
|
161 |
msgid "You will be redirected automatically in 5 seconds."
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: bws_functions.php:317
|
165 |
msgid "You can download and activate"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: bws_functions.php:319
|
169 |
msgid "version of this plugin by entering Your license key."
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: bws_functions.php:321
|
173 |
+
#: bws_functions.php:362
|
174 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: bws_functions.php:323
|
178 |
+
#: bws_functions.php:364
|
179 |
msgid "(your username is the email you specify when purchasing the product)."
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: bws_functions.php:327
|
183 |
+
#: bws_functions.php:630
|
184 |
msgid "or"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: bws_functions.php:327
|
188 |
#, php-format
|
189 |
msgid "Start Your Free %s-Day Trial Now"
|
190 |
msgstr ""
|
191 |
|
192 |
# @ captcha
|
193 |
+
#: bws_functions.php:333
|
194 |
+
#: bws_functions.php:342
|
195 |
+
#: bws_functions.php:372
|
196 |
+
#: bws_functions.php:380
|
197 |
+
#: bws_menu.php:693
|
198 |
+
#: bws_menu.php:750
|
199 |
#, fuzzy
|
200 |
msgid "Activate"
|
201 |
msgstr "Aktivierte Plugins"
|
202 |
|
203 |
+
#: bws_functions.php:359
|
204 |
+
#: bws_functions.php:452
|
205 |
#, php-format
|
206 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: bws_functions.php:360
|
210 |
msgid "After that you can activate it by entering your license key."
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: bws_functions.php:374
|
214 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: bws_functions.php:391
|
218 |
+
msgid "Congratulations! The Pro license of the plugin is successfully activated."
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: bws_functions.php:432
|
222 |
msgid "Wrong license key."
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: bws_functions.php:434
|
226 |
msgid "This license key is bind to another site."
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: bws_functions.php:436
|
230 |
msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: bws_functions.php:438
|
234 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: bws_functions.php:440
|
238 |
+
msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: bws_functions.php:444
|
242 |
+
msgid "The Pro Trial license key is valid."
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: bws_functions.php:446
|
246 |
msgid "The license key is valid."
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: bws_functions.php:449
|
250 |
msgid "Your license will expire on"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: bws_functions.php:482
|
254 |
msgid "Please, enter your license key"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: bws_functions.php:495
|
258 |
msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: bws_functions.php:495
|
262 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: bws_functions.php:499
|
266 |
msgid "Check license key"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: bws_functions.php:513
|
270 |
msgid "WARNING: Illegal use notification"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: bws_functions.php:513
|
274 |
msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: bws_functions.php:521
|
278 |
+
msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: bws_functions.php:523
|
282 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
283 |
msgstr ""
|
284 |
|
285 |
# @ captcha
|
286 |
+
#: bws_functions.php:523
|
287 |
+
#: bws_functions.php:576
|
288 |
+
#: bws_menu.php:669
|
289 |
+
#: bws_menu.php:691
|
290 |
+
#: bws_menu.php:718
|
291 |
+
#: bws_menu.php:748
|
292 |
+
#: bws_menu.php:794
|
293 |
#, fuzzy
|
294 |
msgid "Learn more"
|
295 |
msgstr "Lesen Sie mehr"
|
296 |
|
297 |
+
#: bws_functions.php:533
|
298 |
#, php-format
|
299 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: bws_functions.php:535
|
303 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: bws_functions.php:538
|
307 |
+
msgid "The Pro Trial license will expire on"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: bws_functions.php:576
|
311 |
msgid "You license for"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: bws_functions.php:576
|
315 |
msgid "expires on"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: bws_functions.php:576
|
319 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
320 |
msgstr ""
|
321 |
|
322 |
+
# @ captcha
|
323 |
+
#: bws_functions.php:626
|
324 |
+
#, fuzzy
|
325 |
+
msgid "Thank you for installing"
|
326 |
+
msgstr "Vielen Dank für Ihre Kontaktaufnahme."
|
327 |
+
|
328 |
+
#: bws_functions.php:627
|
329 |
+
msgid "Let's get started"
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
+
# @ captcha
|
333 |
+
#: bws_functions.php:628
|
334 |
+
#, fuzzy
|
335 |
+
msgid "Configure Settings"
|
336 |
+
msgstr "Einstellungen"
|
337 |
+
|
338 |
+
#: bws_functions.php:631
|
339 |
+
msgid "Add New"
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
#: bws_functions.php:635
|
343 |
+
msgid "Close notice"
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
+
#: bws_functions.php:648
|
347 |
+
msgid "Notice"
|
348 |
+
msgstr ""
|
349 |
+
|
350 |
+
#: bws_functions.php:648
|
351 |
+
msgid "The plugin's settings have been changed."
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#: bws_functions.php:649
|
355 |
+
msgid "Save Changes"
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: bws_functions.php:694
|
359 |
+
msgid "Add BWS Plugins Shortcode"
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: bws_functions.php:738
|
363 |
msgid "Close"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: bws_functions.php:829
|
|
|
367 |
msgid "Restore all plugin settings to defaults"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: bws_functions.php:831
|
|
|
371 |
msgid "Restore settings"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: bws_functions.php:842
|
375 |
msgid "Are you sure you want to restore all settings by default?"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: bws_functions.php:845
|
379 |
msgid "Yes, restore all settings"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: bws_functions.php:846
|
383 |
msgid "No, go back to the settings page"
|
384 |
msgstr ""
|
385 |
|
386 |
# @ captcha
|
387 |
+
#: bws_functions.php:890
|
388 |
+
#, fuzzy
|
389 |
+
msgid "Plugin"
|
390 |
+
msgstr "BWS Plugins"
|
391 |
+
|
392 |
+
# @ captcha
|
393 |
+
#: bws_functions.php:899
|
394 |
+
#, fuzzy
|
395 |
+
msgid "Shortcode settings"
|
396 |
+
msgstr "Einstellungen"
|
397 |
+
|
398 |
+
#: bws_functions.php:904
|
399 |
+
msgid "The shortcode will be inserted"
|
400 |
+
msgstr ""
|
401 |
+
|
402 |
+
#: bws_functions.php:909
|
403 |
+
msgid "Insert"
|
404 |
+
msgstr ""
|
405 |
+
|
406 |
+
# @ captcha
|
407 |
+
#: bws_menu.php:506
|
408 |
msgid "Not set"
|
409 |
msgstr "Nicht festgelegt"
|
410 |
|
411 |
# @ captcha
|
412 |
+
#: bws_menu.php:508
|
413 |
+
#: bws_menu.php:509
|
414 |
msgid "On"
|
415 |
msgstr "Ein"
|
416 |
|
417 |
# @ captcha
|
418 |
+
#: bws_menu.php:508
|
419 |
+
#: bws_menu.php:509
|
420 |
msgid "Off"
|
421 |
msgstr "Ausgeschaltet"
|
422 |
|
423 |
# @ captcha
|
424 |
+
#: bws_menu.php:510
|
425 |
+
#: bws_menu.php:511
|
426 |
+
#: bws_menu.php:512
|
427 |
+
#: bws_menu.php:513
|
428 |
+
#: bws_menu.php:514
|
429 |
+
#: bws_menu.php:526
|
430 |
msgid "N/A"
|
431 |
msgstr "keine Angaben"
|
432 |
|
433 |
# @ captcha
|
434 |
+
#: bws_menu.php:514
|
435 |
msgid " Mb"
|
436 |
msgstr " Mb"
|
437 |
|
438 |
# @ captcha
|
439 |
+
#: bws_menu.php:515
|
440 |
+
#: bws_menu.php:516
|
441 |
+
#: bws_menu.php:517
|
442 |
+
#: bws_menu.php:522
|
443 |
msgid "Yes"
|
444 |
msgstr "Ja"
|
445 |
|
446 |
# @ captcha
|
447 |
+
#: bws_menu.php:515
|
448 |
+
#: bws_menu.php:516
|
449 |
+
#: bws_menu.php:517
|
450 |
+
#: bws_menu.php:524
|
451 |
msgid "No"
|
452 |
msgstr "Nein"
|
453 |
|
454 |
# @ captcha
|
455 |
+
#: bws_menu.php:534
|
456 |
msgid "Operating System"
|
457 |
msgstr "Betriebs-System"
|
458 |
|
459 |
# @ captcha
|
460 |
+
#: bws_menu.php:535
|
461 |
msgid "Server"
|
462 |
msgstr "Server"
|
463 |
|
464 |
# @ captcha
|
465 |
+
#: bws_menu.php:536
|
466 |
msgid "Memory usage"
|
467 |
msgstr "Speichernutzung"
|
468 |
|
469 |
# @ captcha
|
470 |
+
#: bws_menu.php:537
|
471 |
msgid "MYSQL Version"
|
472 |
msgstr "MYSQL Version"
|
473 |
|
474 |
# @ captcha
|
475 |
+
#: bws_menu.php:538
|
476 |
msgid "SQL Mode"
|
477 |
msgstr "SQL Modus"
|
478 |
|
479 |
# @ captcha
|
480 |
+
#: bws_menu.php:539
|
481 |
msgid "PHP Version"
|
482 |
msgstr "PHP Version"
|
483 |
|
484 |
# @ captcha
|
485 |
+
#: bws_menu.php:540
|
486 |
msgid "PHP Safe Mode"
|
487 |
msgstr "PHP Gesicherter Modus"
|
488 |
|
489 |
# @ captcha
|
490 |
+
#: bws_menu.php:541
|
491 |
msgid "PHP Allow URL fopen"
|
492 |
msgstr "PHP Erlaubet URL zu öffnen (fopen)"
|
493 |
|
494 |
# @ captcha
|
495 |
+
#: bws_menu.php:542
|
496 |
msgid "PHP Memory Limit"
|
497 |
msgstr "PHP Speicher-Grenze"
|
498 |
|
499 |
# @ captcha
|
500 |
+
#: bws_menu.php:543
|
501 |
msgid "PHP Max Upload Size"
|
502 |
msgstr "PHP Maximale Upload Größe"
|
503 |
|
504 |
# @ captcha
|
505 |
+
#: bws_menu.php:544
|
506 |
msgid "PHP Max Post Size"
|
507 |
msgstr "PHP Maximale Beitrags-Größe"
|
508 |
|
509 |
# @ captcha
|
510 |
+
#: bws_menu.php:545
|
511 |
msgid "PHP Max Script Execute Time"
|
512 |
msgstr "PHP Maximale Script Ausführungszeit"
|
513 |
|
514 |
# @ captcha
|
515 |
+
#: bws_menu.php:546
|
516 |
msgid "PHP Exif support"
|
517 |
msgstr "PHP Exif Support"
|
518 |
|
519 |
# @ captcha
|
520 |
+
#: bws_menu.php:547
|
521 |
msgid "PHP IPTC support"
|
522 |
msgstr "PHP IPTC Support"
|
523 |
|
524 |
# @ captcha
|
525 |
+
#: bws_menu.php:548
|
526 |
msgid "PHP XML support"
|
527 |
msgstr "PHP XML Support"
|
528 |
|
529 |
# @ captcha
|
530 |
+
#: bws_menu.php:549
|
531 |
msgid "Site URL"
|
532 |
msgstr "Site URL"
|
533 |
|
534 |
# @ captcha
|
535 |
+
#: bws_menu.php:550
|
536 |
msgid "Home URL"
|
537 |
msgstr "Home URL"
|
538 |
|
539 |
# @ captcha
|
540 |
+
#: bws_menu.php:553
|
541 |
msgid "WordPress Version"
|
542 |
msgstr "WordPress Version"
|
543 |
|
544 |
# @ captcha
|
545 |
+
#: bws_menu.php:554
|
546 |
msgid "WordPress DB Version"
|
547 |
msgstr "WordPress DB Version"
|
548 |
|
549 |
# @ captcha
|
550 |
+
#: bws_menu.php:555
|
551 |
msgid "Multisite"
|
552 |
msgstr "Multisite"
|
553 |
|
554 |
# @ captcha
|
555 |
+
#: bws_menu.php:556
|
556 |
msgid "Active Theme"
|
557 |
msgstr "Actives Theme"
|
558 |
|
559 |
# @ captcha
|
560 |
+
#: bws_menu.php:571
|
561 |
msgid "Please enter a valid email address."
|
562 |
msgstr "Bitte geben Sie eine gültige E-Mail-Adresse ein."
|
563 |
|
564 |
# @ captcha
|
565 |
+
#: bws_menu.php:575
|
566 |
msgid "Email with system info is sent to "
|
567 |
msgstr "E-Mail-mit System Informationen wird gesendet an "
|
568 |
|
569 |
# @ captcha
|
570 |
+
#: bws_menu.php:579
|
571 |
msgid "Thank you for contacting us."
|
572 |
msgstr "Vielen Dank für Ihre Kontaktaufnahme."
|
573 |
|
574 |
# @ captcha
|
575 |
+
#: bws_menu.php:612
|
576 |
msgid "Sorry, email message could not be delivered."
|
577 |
msgstr "Sorry, E-Mail konnte nicht zugestellt werden."
|
578 |
|
579 |
+
#: bws_menu.php:620
|
580 |
msgid "Need help?"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: bws_menu.php:621
|
584 |
msgid "Client area"
|
585 |
msgstr ""
|
586 |
|
587 |
# @ captcha
|
588 |
+
#: bws_menu.php:622
|
589 |
+
#: bws_menu.php:933
|
590 |
msgid "System status"
|
591 |
msgstr "System Status"
|
592 |
|
593 |
# @ captcha
|
594 |
+
#: bws_menu.php:627
|
595 |
#, fuzzy
|
596 |
msgid "Plugins"
|
597 |
msgstr "BWS Plugins"
|
598 |
|
599 |
+
#: bws_menu.php:629
|
600 |
msgid "Themes"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: bws_menu.php:634
|
604 |
msgid "All"
|
605 |
msgstr ""
|
606 |
|
607 |
# @ default
|
608 |
+
#: bws_menu.php:635
|
609 |
#, fuzzy
|
610 |
msgid "Installed"
|
611 |
msgstr "Installiere %s"
|
612 |
|
613 |
# @ captcha
|
614 |
+
#: bws_menu.php:636
|
615 |
#, fuzzy
|
616 |
msgid "Recommended"
|
617 |
msgstr "Empfohlene Plugins"
|
618 |
|
619 |
# @ captcha
|
620 |
+
#: bws_menu.php:640
|
621 |
msgid "Installed plugins"
|
622 |
msgstr "Installierte Plugins"
|
623 |
|
624 |
# @ captcha
|
625 |
+
#: bws_menu.php:672
|
626 |
+
#: bws_menu.php:721
|
627 |
msgid "Settings"
|
628 |
msgstr "Einstellungen"
|
629 |
|
630 |
# @ captcha
|
631 |
+
#: bws_menu.php:693
|
632 |
+
#: bws_menu.php:750
|
633 |
#, fuzzy
|
634 |
msgid "Activate this plugin"
|
635 |
msgstr "Aktivierte Plugins"
|
636 |
|
637 |
+
#: bws_menu.php:708
|
638 |
+
#: bws_menu.php:738
|
639 |
+
#: bws_menu.php:784
|
640 |
msgid "Go"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: bws_menu.php:712
|
644 |
+
#: bws_menu.php:742
|
645 |
+
#: bws_menu.php:788
|
646 |
msgid "DONATE"
|
647 |
msgstr ""
|
648 |
|
649 |
# @ captcha
|
650 |
+
#: bws_menu.php:758
|
651 |
msgid "Recommended plugins"
|
652 |
msgstr "Empfohlene Plugins"
|
653 |
|
654 |
# @ default
|
655 |
+
#: bws_menu.php:796
|
656 |
#, fuzzy
|
657 |
msgid "Install now"
|
658 |
msgstr "Installiere %s"
|
659 |
|
660 |
+
#: bws_menu.php:817
|
661 |
msgid "Try again"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: bws_menu.php:835
|
665 |
#, php-format
|
666 |
msgid "Preview “%s”"
|
667 |
msgstr ""
|
668 |
|
669 |
# @ default
|
670 |
+
#: bws_menu.php:866
|
671 |
#, php-format
|
672 |
msgid "Install %s"
|
673 |
msgstr "Installiere %s"
|
674 |
|
675 |
# @ default
|
676 |
+
#: bws_menu.php:866
|
677 |
#, fuzzy
|
678 |
msgid "Install Now"
|
679 |
msgstr "Installiere %s"
|
680 |
|
681 |
+
#: bws_menu.php:869
|
682 |
#, php-format
|
683 |
msgid "Update to version %s"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: bws_menu.php:869
|
687 |
msgid "Update"
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: bws_menu.php:876
|
691 |
#, php-format
|
692 |
msgid "Preview %s"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: bws_menu.php:876
|
696 |
msgid "Preview"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: bws_menu.php:882
|
700 |
+
#: bws_menu.php:914
|
701 |
#, php-format
|
702 |
msgid "By %s"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: bws_menu.php:888
|
706 |
msgid "Details"
|
707 |
msgstr ""
|
708 |
|
709 |
# @ default
|
710 |
+
#: bws_menu.php:920
|
711 |
#, fuzzy
|
712 |
msgid "Already Installed"
|
713 |
msgstr "Installiere %s"
|
714 |
|
715 |
# @ captcha
|
716 |
+
#: bws_menu.php:936
|
717 |
msgid "Environment"
|
718 |
msgstr "Umgebungsvariable"
|
719 |
|
720 |
# @ captcha
|
721 |
+
#: bws_menu.php:947
|
722 |
msgid "Active Plugins"
|
723 |
msgstr "Aktivierte Plugins"
|
724 |
|
725 |
# @ captcha
|
726 |
+
#: bws_menu.php:960
|
727 |
msgid "Inactive Plugins"
|
728 |
msgstr "Inactive Plugins"
|
729 |
|
730 |
# @ captcha
|
731 |
+
#: bws_menu.php:976
|
732 |
msgid "Send to support"
|
733 |
msgstr "Sende zuzm Support"
|
734 |
|
735 |
# @ captcha
|
736 |
+
#: bws_menu.php:983
|
737 |
msgid "Send to custom email »"
|
738 |
msgstr "Senden Sie eine benutzerdefinierte E-Mail zu »"
|
739 |
|
bws_menu/languages/bestwebsoft-fr_FR.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-fr_FR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
|
9 |
"Language: fr_FR\n"
|
@@ -17,591 +17,660 @@ msgstr ""
|
|
17 |
"X-Generator: Poedit 1.5.7\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: bws_functions.php:
|
|
|
21 |
msgid "requires"
|
22 |
msgstr "obligatoire"
|
23 |
|
24 |
-
#: bws_functions.php:
|
25 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
26 |
msgstr "ou supérieure, c'est pourquoi il a été désactivé! Merci de faire la mise à jour de WordPress puis de ré-essayer."
|
27 |
|
28 |
-
#: bws_functions.php:
|
29 |
msgid "Back to the WordPress"
|
30 |
msgstr "Retour à WordPress"
|
31 |
|
32 |
-
#: bws_functions.php:
|
33 |
msgid "Plugins page"
|
34 |
msgstr "Page des extensions"
|
35 |
|
36 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
37 |
msgid "It’s time to upgrade your"
|
38 |
msgstr "C'est le moment de mettre à jour votre "
|
39 |
|
40 |
-
#: bws_functions.php:
|
41 |
msgid "to"
|
42 |
msgstr "à"
|
43 |
|
44 |
-
#: bws_functions.php:
|
45 |
msgid "version!"
|
46 |
msgstr "version"
|
47 |
|
48 |
-
#: bws_functions.php:
|
49 |
msgid "Extend standard plugin functionality with new great options."
|
50 |
msgstr "Etend les fonctionalités classiques de l'extension avec des nouvelles options."
|
51 |
|
52 |
-
#: bws_functions.php:
|
53 |
-
#: bws_functions.php:
|
54 |
msgid "Learn More"
|
55 |
msgstr "En savoir plus"
|
56 |
|
57 |
-
#: bws_functions.php:
|
58 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
59 |
msgstr "Si notre extension vous satisfait, merci de la notée avec 5 étoiles dans Wordpress"
|
60 |
|
61 |
-
#: bws_functions.php:
|
62 |
msgid "Rate the plugin"
|
63 |
msgstr "Voter pour l'extension"
|
64 |
|
65 |
-
#: bws_functions.php:
|
66 |
msgid "If there is something wrong about it, please contact us"
|
67 |
msgstr "Si vous avez une question, n'hésitez pas à nous contacter"
|
68 |
|
69 |
-
#: bws_functions.php:
|
70 |
-
#: bws_functions.php:
|
71 |
msgid "Wrong license key"
|
72 |
msgstr "Clé de licence incorrecte"
|
73 |
|
74 |
-
#: bws_functions.php:
|
75 |
-
#: bws_functions.php:
|
76 |
-
#: bws_functions.php:
|
77 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
78 |
msgstr "Il est survenu une erreur. Essayer de nouveau. Si l'erreur se produit de nouveau, merci de contacter <a href=http://support.bestwebsoft.com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
|
79 |
|
80 |
-
#: bws_functions.php:
|
81 |
-
#: bws_functions.php:
|
82 |
-
#: bws_functions.php:
|
83 |
msgid "We are sorry for inconvenience."
|
84 |
msgstr "Nous sommes désolés pour le désagrément."
|
85 |
|
86 |
-
#: bws_functions.php:
|
87 |
msgid "This license key is bind to another site"
|
88 |
msgstr "La clé de licence correspond à un autre site."
|
89 |
|
90 |
-
#: bws_functions.php:
|
91 |
-
#: bws_functions.php:
|
92 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
93 |
msgstr "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de télécharger l'extension manuellement."
|
94 |
|
95 |
-
#: bws_functions.php:
|
96 |
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
97 |
msgstr "Désoler, votre licence est terminée. Pour continuer à disposer du support rapide et des mises à jour de l'extension vous devez la renouveller dans votre"
|
98 |
|
99 |
-
#: bws_functions.php:
|
100 |
-
|
|
|
101 |
msgstr "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne peut-être installée qu'une seule fois."
|
102 |
|
103 |
-
#: bws_functions.php:
|
104 |
-
#: bws_functions.php:
|
105 |
-
#: bws_functions.php:
|
106 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
107 |
msgstr "Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension manuellement."
|
108 |
|
109 |
-
#: bws_functions.php:
|
110 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
111 |
msgstr "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension manuellement."
|
112 |
|
113 |
-
#: bws_functions.php:
|
114 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
115 |
msgstr "Votre server n'a pas le support du format des archives ZIP ou Phar. Merci de télécharger l'extension manuellement."
|
116 |
|
117 |
-
#: bws_functions.php:
|
118 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
119 |
msgstr "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension manuellement."
|
120 |
|
121 |
-
#: bws_functions.php:
|
122 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
123 |
msgstr "Il est survenu une erreur. Essayer de nouveau ou bien télécharger l'extension manuellement.Nous sommes désolés pour le désagrément."
|
124 |
|
125 |
-
#: bws_functions.php:
|
126 |
msgid "Please, enter Your license key"
|
127 |
msgstr "Merci de saisir votre clé de licence"
|
128 |
|
129 |
-
#: bws_functions.php:
|
130 |
-
|
|
|
131 |
msgstr "Félicitations! La version PRO de cette extension a été téléchargée et activée avec succès."
|
132 |
|
133 |
-
#: bws_functions.php:
|
134 |
-
#: bws_functions.php:
|
135 |
msgid "Please, go to"
|
136 |
msgstr "Merci d'allez à"
|
137 |
|
138 |
-
#: bws_functions.php:
|
139 |
-
#: bws_functions.php:
|
140 |
msgid "the setting page"
|
141 |
msgstr "Options supplémentaires"
|
142 |
|
143 |
-
#: bws_functions.php:
|
144 |
-
#: bws_functions.php:
|
145 |
msgid "You will be redirected automatically in 5 seconds."
|
146 |
msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
|
147 |
|
148 |
-
#: bws_functions.php:
|
149 |
msgid "You can download and activate"
|
150 |
msgstr "Vous pouvez télécharger et activer la version "
|
151 |
|
152 |
-
#: bws_functions.php:
|
153 |
msgid "version of this plugin by entering Your license key."
|
154 |
msgstr " de cette extension en donnant votre clé de licence."
|
155 |
|
156 |
-
#: bws_functions.php:
|
157 |
-
#: bws_functions.php:
|
158 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
159 |
msgstr "Vous pouvez trouver votre clé de licence sur votre page personnelle dans la zone cliente en cliquant sur le lien"
|
160 |
|
161 |
-
#: bws_functions.php:
|
162 |
-
#: bws_functions.php:
|
163 |
msgid "(your username is the email you specify when purchasing the product)."
|
164 |
msgstr "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de l'achat de l'extension)."
|
165 |
|
166 |
-
#: bws_functions.php:
|
|
|
167 |
msgid "or"
|
168 |
msgstr "ou"
|
169 |
|
170 |
-
#: bws_functions.php:
|
171 |
#, php-format
|
172 |
msgid "Start Your Free %s-Day Trial Now"
|
173 |
msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
|
174 |
|
175 |
-
#: bws_functions.php:
|
176 |
-
#: bws_functions.php:
|
177 |
-
#: bws_functions.php:
|
178 |
-
#: bws_functions.php:
|
179 |
-
#: bws_menu.php:
|
180 |
-
#: bws_menu.php:
|
181 |
msgid "Activate"
|
182 |
msgstr "Activé"
|
183 |
|
184 |
-
#: bws_functions.php:
|
185 |
-
#: bws_functions.php:
|
186 |
#, php-format
|
187 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
188 |
msgstr "Afin de pouvoir continuer à utiliser cette extension il est nécessaire d'acheter une licence %s."
|
189 |
|
190 |
-
#: bws_functions.php:
|
191 |
msgid "After that you can activate it by entering your license key."
|
192 |
msgstr " Après vous pouvez activer cette extension en donnant votre clé de licence."
|
193 |
|
194 |
-
#: bws_functions.php:
|
195 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
196 |
msgstr "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de télécharger l'extension manuellement."
|
197 |
|
198 |
-
#: bws_functions.php:
|
199 |
-
|
|
|
200 |
msgstr "Félicitations! La version PRO de cette extension a été téléchargée et activée avec succès."
|
201 |
|
202 |
-
#: bws_functions.php:
|
203 |
msgid "Wrong license key."
|
204 |
msgstr "Clé de licence incorrecte."
|
205 |
|
206 |
-
#: bws_functions.php:
|
207 |
msgid "This license key is bind to another site."
|
208 |
msgstr "La clé de licence correspond à un autre site."
|
209 |
|
210 |
-
#: bws_functions.php:
|
211 |
msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
|
212 |
msgstr "La clé de licence est valide mais votre durée de validité est passée. Pour continuer à disposer du support rapide et des mises à jour de l'extension vous devez la renouveller."
|
213 |
|
214 |
-
#: bws_functions.php:
|
215 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
216 |
msgstr "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de télécharger l'extension manuellement."
|
217 |
|
218 |
-
#: bws_functions.php:
|
219 |
-
|
|
|
220 |
msgstr "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne peut-être installée qu'une seule fois."
|
221 |
|
222 |
-
#: bws_functions.php:
|
223 |
-
|
|
|
224 |
msgstr "La clé de licence d'évaluation est valide."
|
225 |
|
226 |
-
#: bws_functions.php:
|
227 |
msgid "The license key is valid."
|
228 |
msgstr "La clé de licence est valide."
|
229 |
|
230 |
-
#: bws_functions.php:
|
231 |
msgid "Your license will expire on"
|
232 |
msgstr "Votre licence se termine le "
|
233 |
|
234 |
-
#: bws_functions.php:
|
235 |
msgid "Please, enter your license key"
|
236 |
msgstr "Merci de saisir votre clé de licence"
|
237 |
|
238 |
-
#: bws_functions.php:
|
239 |
msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
|
240 |
msgstr "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la saisir de nouveau dans le champ ci-dessous. Vous pouvez trouver votre clé de licence sur votre page personnelle (zone client) sur notre site web."
|
241 |
|
242 |
-
#: bws_functions.php:
|
243 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
244 |
msgstr "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de l'achat de l'extension). Si nécessaire, utilisez la fonction de demande de mot de passe perdu."
|
245 |
|
246 |
-
#: bws_functions.php:
|
247 |
msgid "Check license key"
|
248 |
msgstr "Vérifier la clé de licence"
|
249 |
|
250 |
-
#: bws_functions.php:
|
251 |
msgid "WARNING: Illegal use notification"
|
252 |
msgstr "AVERTISSEMENT : Notification d'utilisation abusive"
|
253 |
|
254 |
-
#: bws_functions.php:
|
255 |
msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
|
256 |
msgstr "Nous avons détecté une utilisation abusive de notre extension. Nous vous recommandons de résoudre ce problème dans les 24 heures, sinon l'extension sera rendue inactive. Merci de vous rendre dans votre espace personel"
|
257 |
|
258 |
-
#: bws_functions.php:
|
259 |
-
|
|
|
260 |
msgstr "Votre licence d'évaluation est terminée. Pour continuer à disposer du support rapide et des mises à jour de l'extension vous devez la renouveller."
|
261 |
|
262 |
-
#: bws_functions.php:
|
263 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
264 |
msgstr "Votre licence est terminée. Pour continuer à disposer du support rapide et des mises à jour de l'extension vous devez la renouveller."
|
265 |
|
266 |
-
#: bws_functions.php:
|
267 |
-
#: bws_functions.php:
|
268 |
-
#: bws_menu.php:
|
269 |
-
#: bws_menu.php:
|
270 |
-
#: bws_menu.php:
|
271 |
-
#: bws_menu.php:
|
272 |
-
#: bws_menu.php:
|
273 |
msgid "Learn more"
|
274 |
msgstr "En savoir plus"
|
275 |
|
276 |
-
#: bws_functions.php:
|
277 |
-
#, php-format
|
278 |
-
msgid "Notice: You are using the
|
279 |
msgstr "Avertissement : vous utilisez la version d'évaluation de l'extension %s."
|
280 |
|
281 |
-
#: bws_functions.php:
|
282 |
-
|
|
|
283 |
msgstr "Avertissement : vous utilisez la version d'évaluation de l'extension."
|
284 |
|
285 |
-
#: bws_functions.php:
|
286 |
-
|
|
|
287 |
msgstr "Votre licence se termine le "
|
288 |
|
289 |
-
#: bws_functions.php:
|
290 |
msgid "You license for"
|
291 |
msgstr "Votre licence pour"
|
292 |
|
293 |
-
#: bws_functions.php:
|
294 |
msgid "expires on"
|
295 |
msgstr "se termine le"
|
296 |
|
297 |
-
#: bws_functions.php:
|
298 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
299 |
msgstr "et vous ne diposerez plus du support rapide et des mises à jour."
|
300 |
|
301 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
302 |
msgid "Close"
|
303 |
msgstr "Fermer"
|
304 |
|
305 |
-
#: bws_functions.php:
|
306 |
-
#: bws_functions.php:784
|
307 |
msgid "Restore all plugin settings to defaults"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: bws_functions.php:
|
311 |
-
#: bws_functions.php:786
|
312 |
#, fuzzy
|
313 |
msgid "Restore settings"
|
314 |
msgstr "Options supplémentaires"
|
315 |
|
316 |
-
#: bws_functions.php:
|
317 |
#, fuzzy
|
318 |
msgid "Are you sure you want to restore all settings by default?"
|
319 |
msgstr "Etes vous sûr de vouloir supprimer cette langue ?"
|
320 |
|
321 |
-
#: bws_functions.php:
|
322 |
msgid "Yes, restore all settings"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: bws_functions.php:
|
326 |
#, fuzzy
|
327 |
msgid "No, go back to the settings page"
|
328 |
msgstr "Options supplémentaires"
|
329 |
|
330 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
331 |
msgid "Not set"
|
332 |
msgstr "Not set"
|
333 |
|
334 |
-
#: bws_menu.php:
|
335 |
-
#: bws_menu.php:
|
336 |
msgid "On"
|
337 |
msgstr "On"
|
338 |
|
339 |
-
#: bws_menu.php:
|
340 |
-
#: bws_menu.php:
|
341 |
msgid "Off"
|
342 |
msgstr "Off"
|
343 |
|
344 |
-
#: bws_menu.php:
|
345 |
-
#: bws_menu.php:
|
346 |
-
#: bws_menu.php:
|
347 |
-
#: bws_menu.php:
|
348 |
-
#: bws_menu.php:
|
349 |
-
#: bws_menu.php:
|
350 |
msgid "N/A"
|
351 |
msgstr "N/A"
|
352 |
|
353 |
-
#: bws_menu.php:
|
354 |
msgid " Mb"
|
355 |
msgstr " Mb"
|
356 |
|
357 |
-
#: bws_menu.php:
|
358 |
-
#: bws_menu.php:
|
359 |
-
#: bws_menu.php:
|
360 |
-
#: bws_menu.php:
|
361 |
msgid "Yes"
|
362 |
msgstr "Yes"
|
363 |
|
364 |
-
#: bws_menu.php:
|
365 |
-
#: bws_menu.php:
|
366 |
-
#: bws_menu.php:
|
367 |
-
#: bws_menu.php:
|
368 |
msgid "No"
|
369 |
msgstr "No"
|
370 |
|
371 |
-
#: bws_menu.php:
|
372 |
msgid "Operating System"
|
373 |
msgstr "Operating System"
|
374 |
|
375 |
-
#: bws_menu.php:
|
376 |
msgid "Server"
|
377 |
msgstr "Server"
|
378 |
|
379 |
-
#: bws_menu.php:
|
380 |
msgid "Memory usage"
|
381 |
msgstr "Memory usage"
|
382 |
|
383 |
-
#: bws_menu.php:
|
384 |
msgid "MYSQL Version"
|
385 |
msgstr "MYSQL Version"
|
386 |
|
387 |
-
#: bws_menu.php:
|
388 |
msgid "SQL Mode"
|
389 |
msgstr "SQL Mode"
|
390 |
|
391 |
-
#: bws_menu.php:
|
392 |
msgid "PHP Version"
|
393 |
msgstr "PHP Version"
|
394 |
|
395 |
-
#: bws_menu.php:
|
396 |
msgid "PHP Safe Mode"
|
397 |
msgstr "PHP Safe Mode"
|
398 |
|
399 |
-
#: bws_menu.php:
|
400 |
msgid "PHP Allow URL fopen"
|
401 |
msgstr "PHP Allow URL fopen"
|
402 |
|
403 |
-
#: bws_menu.php:
|
404 |
msgid "PHP Memory Limit"
|
405 |
msgstr "PHP Memory Limit"
|
406 |
|
407 |
-
#: bws_menu.php:
|
408 |
msgid "PHP Max Upload Size"
|
409 |
msgstr "PHP Max Upload Size"
|
410 |
|
411 |
-
#: bws_menu.php:
|
412 |
msgid "PHP Max Post Size"
|
413 |
msgstr "PHP Max Post Size"
|
414 |
|
415 |
-
#: bws_menu.php:
|
416 |
msgid "PHP Max Script Execute Time"
|
417 |
msgstr "PHP Max Script Execute Time"
|
418 |
|
419 |
-
#: bws_menu.php:
|
420 |
msgid "PHP Exif support"
|
421 |
msgstr "PHP Exif support"
|
422 |
|
423 |
-
#: bws_menu.php:
|
424 |
msgid "PHP IPTC support"
|
425 |
msgstr "PHP IPTC support"
|
426 |
|
427 |
-
#: bws_menu.php:
|
428 |
msgid "PHP XML support"
|
429 |
msgstr "PHP XML support"
|
430 |
|
431 |
-
#: bws_menu.php:
|
432 |
msgid "Site URL"
|
433 |
msgstr "Site URL"
|
434 |
|
435 |
-
#: bws_menu.php:
|
436 |
msgid "Home URL"
|
437 |
msgstr "Home URL"
|
438 |
|
439 |
-
#: bws_menu.php:
|
440 |
msgid "WordPress Version"
|
441 |
msgstr "WordPress Version"
|
442 |
|
443 |
-
#: bws_menu.php:
|
444 |
msgid "WordPress DB Version"
|
445 |
msgstr "WordPress DB Version"
|
446 |
|
447 |
-
#: bws_menu.php:
|
448 |
msgid "Multisite"
|
449 |
msgstr "Multisite"
|
450 |
|
451 |
-
#: bws_menu.php:
|
452 |
msgid "Active Theme"
|
453 |
msgstr "Active Theme"
|
454 |
|
455 |
-
#: bws_menu.php:
|
456 |
msgid "Please enter a valid email address."
|
457 |
msgstr "Merci de saisir une adresse e-mail valide."
|
458 |
|
459 |
-
#: bws_menu.php:
|
460 |
msgid "Email with system info is sent to "
|
461 |
msgstr "Le courriel avec les informations système est envoyé à"
|
462 |
|
463 |
-
#: bws_menu.php:
|
464 |
msgid "Thank you for contacting us."
|
465 |
msgstr "Merci de nous avoir contacté."
|
466 |
|
467 |
-
#: bws_menu.php:
|
468 |
msgid "Sorry, email message could not be delivered."
|
469 |
msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
|
470 |
|
471 |
-
#: bws_menu.php:
|
472 |
msgid "Need help?"
|
473 |
msgstr "Besoin d'aide ?"
|
474 |
|
475 |
-
#: bws_menu.php:
|
476 |
msgid "Client area"
|
477 |
msgstr "Espace client"
|
478 |
|
479 |
-
#: bws_menu.php:
|
480 |
-
#: bws_menu.php:
|
481 |
msgid "System status"
|
482 |
msgstr "System status"
|
483 |
|
484 |
-
#: bws_menu.php:
|
485 |
msgid "Plugins"
|
486 |
msgstr "Extensions"
|
487 |
|
488 |
-
#: bws_menu.php:
|
489 |
msgid "Themes"
|
490 |
msgstr "Thèmes"
|
491 |
|
492 |
-
#: bws_menu.php:
|
493 |
msgid "All"
|
494 |
msgstr "Tous"
|
495 |
|
496 |
-
#: bws_menu.php:
|
497 |
msgid "Installed"
|
498 |
msgstr "Installé"
|
499 |
|
500 |
-
#: bws_menu.php:
|
501 |
msgid "Recommended"
|
502 |
msgstr "Recommandé"
|
503 |
|
504 |
-
#: bws_menu.php:
|
505 |
msgid "Installed plugins"
|
506 |
msgstr "Plugin installé"
|
507 |
|
508 |
-
#: bws_menu.php:
|
509 |
-
#: bws_menu.php:
|
510 |
msgid "Settings"
|
511 |
msgstr "Réglages"
|
512 |
|
513 |
-
#: bws_menu.php:
|
514 |
-
#: bws_menu.php:
|
515 |
msgid "Activate this plugin"
|
516 |
msgstr "Activer cette extension"
|
517 |
|
518 |
-
#: bws_menu.php:
|
519 |
-
#: bws_menu.php:
|
520 |
-
#: bws_menu.php:
|
521 |
msgid "Go"
|
522 |
msgstr "Passez"
|
523 |
|
524 |
-
#: bws_menu.php:
|
525 |
-
#: bws_menu.php:
|
526 |
-
#: bws_menu.php:
|
527 |
msgid "DONATE"
|
528 |
msgstr "Faire un don"
|
529 |
|
530 |
-
#: bws_menu.php:
|
531 |
msgid "Recommended plugins"
|
532 |
msgstr "Plugin recommandé"
|
533 |
|
534 |
-
#: bws_menu.php:
|
535 |
msgid "Install now"
|
536 |
msgstr "Installer maintenant"
|
537 |
|
538 |
-
#: bws_menu.php:
|
539 |
msgid "Try again"
|
540 |
msgstr "Essayer de nouveau"
|
541 |
|
542 |
-
#: bws_menu.php:
|
543 |
#, php-format
|
544 |
msgid "Preview “%s”"
|
545 |
msgstr "Pré-visualiser “%s”"
|
546 |
|
547 |
-
#: bws_menu.php:
|
548 |
#, php-format
|
549 |
msgid "Install %s"
|
550 |
msgstr "%s installé"
|
551 |
|
552 |
-
#: bws_menu.php:
|
553 |
msgid "Install Now"
|
554 |
msgstr "Installa Ora"
|
555 |
|
556 |
-
#: bws_menu.php:
|
557 |
#, php-format
|
558 |
msgid "Update to version %s"
|
559 |
msgstr "Mettre à jour pour la version %s"
|
560 |
|
561 |
-
#: bws_menu.php:
|
562 |
msgid "Update"
|
563 |
msgstr "Mettre à jour"
|
564 |
|
565 |
-
#: bws_menu.php:
|
566 |
#, php-format
|
567 |
msgid "Preview %s"
|
568 |
msgstr "Pré-visualiser %s"
|
569 |
|
570 |
-
#: bws_menu.php:
|
571 |
msgid "Preview"
|
572 |
msgstr "Pré-visualiser"
|
573 |
|
574 |
-
#: bws_menu.php:
|
575 |
-
#: bws_menu.php:
|
576 |
#, php-format
|
577 |
msgid "By %s"
|
578 |
msgstr "Par %s"
|
579 |
|
580 |
-
#: bws_menu.php:
|
581 |
msgid "Details"
|
582 |
msgstr "Détails"
|
583 |
|
584 |
-
#: bws_menu.php:
|
585 |
msgid "Already Installed"
|
586 |
msgstr "Déjà installé"
|
587 |
|
588 |
-
#: bws_menu.php:
|
589 |
msgid "Environment"
|
590 |
msgstr "Environment"
|
591 |
|
592 |
-
#: bws_menu.php:
|
593 |
msgid "Active Plugins"
|
594 |
msgstr "Plugin actifs"
|
595 |
|
596 |
-
#: bws_menu.php:
|
597 |
msgid "Inactive Plugins"
|
598 |
msgstr "Plugin inactifs"
|
599 |
|
600 |
-
#: bws_menu.php:
|
601 |
msgid "Send to support"
|
602 |
msgstr "Envoyé au support"
|
603 |
|
604 |
-
#: bws_menu.php:
|
605 |
msgid "Send to custom email »"
|
606 |
msgstr "Envoyer un e-mail spécifique »"
|
607 |
|
@@ -662,9 +731,6 @@ msgstr "Envoyer un e-mail spécifique »"
|
|
662 |
#~ msgid "installed"
|
663 |
#~ msgstr "%s installé"
|
664 |
|
665 |
-
#~ msgid "Contact Form Settings"
|
666 |
-
#~ msgstr "Options du formulaire de Contact"
|
667 |
-
|
668 |
#~ msgid "Contact Form"
|
669 |
#~ msgstr "Formulaire de Contact"
|
670 |
|
@@ -953,9 +1019,6 @@ msgstr "Envoyer un e-mail spécifique »"
|
|
953 |
#~ msgid "Error message for the whole form"
|
954 |
#~ msgstr "Message d'erreur demandant à compléter les champs manquants"
|
955 |
|
956 |
-
#~ msgid "Use shortcode"
|
957 |
-
#~ msgstr "Utiliser le code court"
|
958 |
-
|
959 |
#~ msgid "for this language"
|
960 |
#~ msgstr "pour cette langue"
|
961 |
|
@@ -974,9 +1037,6 @@ msgstr "Envoyer un e-mail spécifique »"
|
|
974 |
#~ msgid "Url"
|
975 |
#~ msgstr "Url"
|
976 |
|
977 |
-
#~ msgid "Save Changes"
|
978 |
-
#~ msgstr "Sauvegarder les modifications"
|
979 |
-
|
980 |
#~ msgid "Contact Form Pro | Extra Settings"
|
981 |
#~ msgstr "Formulaire Pro de Contact | Options supplémentaires"
|
982 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-17 16:00+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-09-17 16:00+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
|
9 |
"Language: fr_FR\n"
|
17 |
"X-Generator: Poedit 1.5.7\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: bws_functions.php:29
|
21 |
+
#: bws_functions.php:53
|
22 |
msgid "requires"
|
23 |
msgstr "obligatoire"
|
24 |
|
25 |
+
#: bws_functions.php:31
|
26 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
27 |
msgstr "ou supérieure, c'est pourquoi il a été désactivé! Merci de faire la mise à jour de WordPress puis de ré-essayer."
|
28 |
|
29 |
+
#: bws_functions.php:32
|
30 |
msgid "Back to the WordPress"
|
31 |
msgstr "Retour à WordPress"
|
32 |
|
33 |
+
#: bws_functions.php:34
|
34 |
msgid "Plugins page"
|
35 |
msgstr "Page des extensions"
|
36 |
|
37 |
+
#: bws_functions.php:55
|
38 |
+
msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: bws_functions.php:112
|
42 |
msgid "It’s time to upgrade your"
|
43 |
msgstr "C'est le moment de mettre à jour votre "
|
44 |
|
45 |
+
#: bws_functions.php:112
|
46 |
msgid "to"
|
47 |
msgstr "à"
|
48 |
|
49 |
+
#: bws_functions.php:112
|
50 |
msgid "version!"
|
51 |
msgstr "version"
|
52 |
|
53 |
+
#: bws_functions.php:113
|
54 |
msgid "Extend standard plugin functionality with new great options."
|
55 |
msgstr "Etend les fonctionalités classiques de l'extension avec des nouvelles options."
|
56 |
|
57 |
+
#: bws_functions.php:116
|
58 |
+
#: bws_functions.php:513
|
59 |
msgid "Learn More"
|
60 |
msgstr "En savoir plus"
|
61 |
|
62 |
+
#: bws_functions.php:133
|
63 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
64 |
msgstr "Si notre extension vous satisfait, merci de la notée avec 5 étoiles dans Wordpress"
|
65 |
|
66 |
+
#: bws_functions.php:134
|
67 |
msgid "Rate the plugin"
|
68 |
msgstr "Voter pour l'extension"
|
69 |
|
70 |
+
#: bws_functions.php:137
|
71 |
msgid "If there is something wrong about it, please contact us"
|
72 |
msgstr "Si vous avez une question, n'hésitez pas à nous contacter"
|
73 |
|
74 |
+
#: bws_functions.php:154
|
75 |
+
#: bws_functions.php:190
|
76 |
msgid "Wrong license key"
|
77 |
msgstr "Clé de licence incorrecte"
|
78 |
|
79 |
+
#: bws_functions.php:184
|
80 |
+
#: bws_functions.php:426
|
81 |
+
#: bws_functions.php:477
|
82 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
83 |
msgstr "Il est survenu une erreur. Essayer de nouveau. Si l'erreur se produit de nouveau, merci de contacter <a href=http://support.bestwebsoft.com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
|
84 |
|
85 |
+
#: bws_functions.php:184
|
86 |
+
#: bws_functions.php:426
|
87 |
+
#: bws_functions.php:477
|
88 |
msgid "We are sorry for inconvenience."
|
89 |
msgstr "Nous sommes désolés pour le désagrément."
|
90 |
|
91 |
+
#: bws_functions.php:192
|
92 |
msgid "This license key is bind to another site"
|
93 |
msgstr "La clé de licence correspond à un autre site."
|
94 |
|
95 |
+
#: bws_functions.php:194
|
96 |
+
#: bws_functions.php:336
|
97 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
98 |
msgstr "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de télécharger l'extension manuellement."
|
99 |
|
100 |
+
#: bws_functions.php:196
|
101 |
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
102 |
msgstr "Désoler, votre licence est terminée. Pour continuer à disposer du support rapide et des mises à jour de l'extension vous devez la renouveller dans votre"
|
103 |
|
104 |
+
#: bws_functions.php:198
|
105 |
+
#, fuzzy
|
106 |
+
msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
|
107 |
msgstr "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne peut-être installée qu'une seule fois."
|
108 |
|
109 |
+
#: bws_functions.php:219
|
110 |
+
#: bws_functions.php:241
|
111 |
+
#: bws_functions.php:263
|
112 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
113 |
msgstr "Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension manuellement."
|
114 |
|
115 |
+
#: bws_functions.php:231
|
116 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
117 |
msgstr "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension manuellement."
|
118 |
|
119 |
+
#: bws_functions.php:237
|
120 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
121 |
msgstr "Votre server n'a pas le support du format des archives ZIP ou Phar. Merci de télécharger l'extension manuellement."
|
122 |
|
123 |
+
#: bws_functions.php:244
|
124 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
125 |
msgstr "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension manuellement."
|
126 |
|
127 |
+
#: bws_functions.php:267
|
128 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
129 |
msgstr "Il est survenu une erreur. Essayer de nouveau ou bien télécharger l'extension manuellement.Nous sommes désolés pour le désagrément."
|
130 |
|
131 |
+
#: bws_functions.php:292
|
132 |
msgid "Please, enter Your license key"
|
133 |
msgstr "Merci de saisir votre clé de licence"
|
134 |
|
135 |
+
#: bws_functions.php:309
|
136 |
+
#, fuzzy
|
137 |
+
msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
|
138 |
msgstr "Félicitations! La version PRO de cette extension a été téléchargée et activée avec succès."
|
139 |
|
140 |
+
#: bws_functions.php:311
|
141 |
+
#: bws_functions.php:393
|
142 |
msgid "Please, go to"
|
143 |
msgstr "Merci d'allez à"
|
144 |
|
145 |
+
#: bws_functions.php:311
|
146 |
+
#: bws_functions.php:393
|
147 |
msgid "the setting page"
|
148 |
msgstr "Options supplémentaires"
|
149 |
|
150 |
+
#: bws_functions.php:312
|
151 |
+
#: bws_functions.php:394
|
152 |
msgid "You will be redirected automatically in 5 seconds."
|
153 |
msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
|
154 |
|
155 |
+
#: bws_functions.php:317
|
156 |
msgid "You can download and activate"
|
157 |
msgstr "Vous pouvez télécharger et activer la version "
|
158 |
|
159 |
+
#: bws_functions.php:319
|
160 |
msgid "version of this plugin by entering Your license key."
|
161 |
msgstr " de cette extension en donnant votre clé de licence."
|
162 |
|
163 |
+
#: bws_functions.php:321
|
164 |
+
#: bws_functions.php:362
|
165 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
166 |
msgstr "Vous pouvez trouver votre clé de licence sur votre page personnelle dans la zone cliente en cliquant sur le lien"
|
167 |
|
168 |
+
#: bws_functions.php:323
|
169 |
+
#: bws_functions.php:364
|
170 |
msgid "(your username is the email you specify when purchasing the product)."
|
171 |
msgstr "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de l'achat de l'extension)."
|
172 |
|
173 |
+
#: bws_functions.php:327
|
174 |
+
#: bws_functions.php:630
|
175 |
msgid "or"
|
176 |
msgstr "ou"
|
177 |
|
178 |
+
#: bws_functions.php:327
|
179 |
#, php-format
|
180 |
msgid "Start Your Free %s-Day Trial Now"
|
181 |
msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
|
182 |
|
183 |
+
#: bws_functions.php:333
|
184 |
+
#: bws_functions.php:342
|
185 |
+
#: bws_functions.php:372
|
186 |
+
#: bws_functions.php:380
|
187 |
+
#: bws_menu.php:693
|
188 |
+
#: bws_menu.php:750
|
189 |
msgid "Activate"
|
190 |
msgstr "Activé"
|
191 |
|
192 |
+
#: bws_functions.php:359
|
193 |
+
#: bws_functions.php:452
|
194 |
#, php-format
|
195 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
196 |
msgstr "Afin de pouvoir continuer à utiliser cette extension il est nécessaire d'acheter une licence %s."
|
197 |
|
198 |
+
#: bws_functions.php:360
|
199 |
msgid "After that you can activate it by entering your license key."
|
200 |
msgstr " Après vous pouvez activer cette extension en donnant votre clé de licence."
|
201 |
|
202 |
+
#: bws_functions.php:374
|
203 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
204 |
msgstr "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de télécharger l'extension manuellement."
|
205 |
|
206 |
+
#: bws_functions.php:391
|
207 |
+
#, fuzzy
|
208 |
+
msgid "Congratulations! The Pro license of the plugin is successfully activated."
|
209 |
msgstr "Félicitations! La version PRO de cette extension a été téléchargée et activée avec succès."
|
210 |
|
211 |
+
#: bws_functions.php:432
|
212 |
msgid "Wrong license key."
|
213 |
msgstr "Clé de licence incorrecte."
|
214 |
|
215 |
+
#: bws_functions.php:434
|
216 |
msgid "This license key is bind to another site."
|
217 |
msgstr "La clé de licence correspond à un autre site."
|
218 |
|
219 |
+
#: bws_functions.php:436
|
220 |
msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
|
221 |
msgstr "La clé de licence est valide mais votre durée de validité est passée. Pour continuer à disposer du support rapide et des mises à jour de l'extension vous devez la renouveller."
|
222 |
|
223 |
+
#: bws_functions.php:438
|
224 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
225 |
msgstr "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de télécharger l'extension manuellement."
|
226 |
|
227 |
+
#: bws_functions.php:440
|
228 |
+
#, fuzzy
|
229 |
+
msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
|
230 |
msgstr "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne peut-être installée qu'une seule fois."
|
231 |
|
232 |
+
#: bws_functions.php:444
|
233 |
+
#, fuzzy
|
234 |
+
msgid "The Pro Trial license key is valid."
|
235 |
msgstr "La clé de licence d'évaluation est valide."
|
236 |
|
237 |
+
#: bws_functions.php:446
|
238 |
msgid "The license key is valid."
|
239 |
msgstr "La clé de licence est valide."
|
240 |
|
241 |
+
#: bws_functions.php:449
|
242 |
msgid "Your license will expire on"
|
243 |
msgstr "Votre licence se termine le "
|
244 |
|
245 |
+
#: bws_functions.php:482
|
246 |
msgid "Please, enter your license key"
|
247 |
msgstr "Merci de saisir votre clé de licence"
|
248 |
|
249 |
+
#: bws_functions.php:495
|
250 |
msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
|
251 |
msgstr "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la saisir de nouveau dans le champ ci-dessous. Vous pouvez trouver votre clé de licence sur votre page personnelle (zone client) sur notre site web."
|
252 |
|
253 |
+
#: bws_functions.php:495
|
254 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
255 |
msgstr "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de l'achat de l'extension). Si nécessaire, utilisez la fonction de demande de mot de passe perdu."
|
256 |
|
257 |
+
#: bws_functions.php:499
|
258 |
msgid "Check license key"
|
259 |
msgstr "Vérifier la clé de licence"
|
260 |
|
261 |
+
#: bws_functions.php:513
|
262 |
msgid "WARNING: Illegal use notification"
|
263 |
msgstr "AVERTISSEMENT : Notification d'utilisation abusive"
|
264 |
|
265 |
+
#: bws_functions.php:513
|
266 |
msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
|
267 |
msgstr "Nous avons détecté une utilisation abusive de notre extension. Nous vous recommandons de résoudre ce problème dans les 24 heures, sinon l'extension sera rendue inactive. Merci de vous rendre dans votre espace personel"
|
268 |
|
269 |
+
#: bws_functions.php:521
|
270 |
+
#, fuzzy
|
271 |
+
msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
|
272 |
msgstr "Votre licence d'évaluation est terminée. Pour continuer à disposer du support rapide et des mises à jour de l'extension vous devez la renouveller."
|
273 |
|
274 |
+
#: bws_functions.php:523
|
275 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
276 |
msgstr "Votre licence est terminée. Pour continuer à disposer du support rapide et des mises à jour de l'extension vous devez la renouveller."
|
277 |
|
278 |
+
#: bws_functions.php:523
|
279 |
+
#: bws_functions.php:576
|
280 |
+
#: bws_menu.php:669
|
281 |
+
#: bws_menu.php:691
|
282 |
+
#: bws_menu.php:718
|
283 |
+
#: bws_menu.php:748
|
284 |
+
#: bws_menu.php:794
|
285 |
msgid "Learn more"
|
286 |
msgstr "En savoir plus"
|
287 |
|
288 |
+
#: bws_functions.php:533
|
289 |
+
#, fuzzy, php-format
|
290 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
291 |
msgstr "Avertissement : vous utilisez la version d'évaluation de l'extension %s."
|
292 |
|
293 |
+
#: bws_functions.php:535
|
294 |
+
#, fuzzy
|
295 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
296 |
msgstr "Avertissement : vous utilisez la version d'évaluation de l'extension."
|
297 |
|
298 |
+
#: bws_functions.php:538
|
299 |
+
#, fuzzy
|
300 |
+
msgid "The Pro Trial license will expire on"
|
301 |
msgstr "Votre licence se termine le "
|
302 |
|
303 |
+
#: bws_functions.php:576
|
304 |
msgid "You license for"
|
305 |
msgstr "Votre licence pour"
|
306 |
|
307 |
+
#: bws_functions.php:576
|
308 |
msgid "expires on"
|
309 |
msgstr "se termine le"
|
310 |
|
311 |
+
#: bws_functions.php:576
|
312 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
313 |
msgstr "et vous ne diposerez plus du support rapide et des mises à jour."
|
314 |
|
315 |
+
#: bws_functions.php:626
|
316 |
+
#, fuzzy
|
317 |
+
msgid "Thank you for installing"
|
318 |
+
msgstr "Merci de nous avoir contacté."
|
319 |
+
|
320 |
+
#: bws_functions.php:627
|
321 |
+
msgid "Let's get started"
|
322 |
+
msgstr ""
|
323 |
+
|
324 |
+
#: bws_functions.php:628
|
325 |
+
#, fuzzy
|
326 |
+
msgid "Configure Settings"
|
327 |
+
msgstr "Options du formulaire de Contact"
|
328 |
+
|
329 |
+
#: bws_functions.php:631
|
330 |
+
msgid "Add New"
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
#: bws_functions.php:635
|
334 |
+
msgid "Close notice"
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: bws_functions.php:648
|
338 |
+
msgid "Notice"
|
339 |
+
msgstr ""
|
340 |
+
|
341 |
+
#: bws_functions.php:648
|
342 |
+
msgid "The plugin's settings have been changed."
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
#: bws_functions.php:649
|
346 |
+
msgid "Save Changes"
|
347 |
+
msgstr "Sauvegarder les modifications"
|
348 |
+
|
349 |
+
#: bws_functions.php:694
|
350 |
+
#, fuzzy
|
351 |
+
msgid "Add BWS Plugins Shortcode"
|
352 |
+
msgstr "Utiliser le code court"
|
353 |
+
|
354 |
+
#: bws_functions.php:738
|
355 |
msgid "Close"
|
356 |
msgstr "Fermer"
|
357 |
|
358 |
+
#: bws_functions.php:829
|
|
|
359 |
msgid "Restore all plugin settings to defaults"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: bws_functions.php:831
|
|
|
363 |
#, fuzzy
|
364 |
msgid "Restore settings"
|
365 |
msgstr "Options supplémentaires"
|
366 |
|
367 |
+
#: bws_functions.php:842
|
368 |
#, fuzzy
|
369 |
msgid "Are you sure you want to restore all settings by default?"
|
370 |
msgstr "Etes vous sûr de vouloir supprimer cette langue ?"
|
371 |
|
372 |
+
#: bws_functions.php:845
|
373 |
msgid "Yes, restore all settings"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: bws_functions.php:846
|
377 |
#, fuzzy
|
378 |
msgid "No, go back to the settings page"
|
379 |
msgstr "Options supplémentaires"
|
380 |
|
381 |
+
#: bws_functions.php:890
|
382 |
+
#, fuzzy
|
383 |
+
msgid "Plugin"
|
384 |
+
msgstr "Extensions"
|
385 |
+
|
386 |
+
#: bws_functions.php:899
|
387 |
+
#, fuzzy
|
388 |
+
msgid "Shortcode settings"
|
389 |
+
msgstr "Options supplémentaires"
|
390 |
+
|
391 |
+
#: bws_functions.php:904
|
392 |
+
msgid "The shortcode will be inserted"
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#: bws_functions.php:909
|
396 |
+
msgid "Insert"
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: bws_menu.php:506
|
400 |
msgid "Not set"
|
401 |
msgstr "Not set"
|
402 |
|
403 |
+
#: bws_menu.php:508
|
404 |
+
#: bws_menu.php:509
|
405 |
msgid "On"
|
406 |
msgstr "On"
|
407 |
|
408 |
+
#: bws_menu.php:508
|
409 |
+
#: bws_menu.php:509
|
410 |
msgid "Off"
|
411 |
msgstr "Off"
|
412 |
|
413 |
+
#: bws_menu.php:510
|
414 |
+
#: bws_menu.php:511
|
415 |
+
#: bws_menu.php:512
|
416 |
+
#: bws_menu.php:513
|
417 |
+
#: bws_menu.php:514
|
418 |
+
#: bws_menu.php:526
|
419 |
msgid "N/A"
|
420 |
msgstr "N/A"
|
421 |
|
422 |
+
#: bws_menu.php:514
|
423 |
msgid " Mb"
|
424 |
msgstr " Mb"
|
425 |
|
426 |
+
#: bws_menu.php:515
|
427 |
+
#: bws_menu.php:516
|
428 |
+
#: bws_menu.php:517
|
429 |
+
#: bws_menu.php:522
|
430 |
msgid "Yes"
|
431 |
msgstr "Yes"
|
432 |
|
433 |
+
#: bws_menu.php:515
|
434 |
+
#: bws_menu.php:516
|
435 |
+
#: bws_menu.php:517
|
436 |
+
#: bws_menu.php:524
|
437 |
msgid "No"
|
438 |
msgstr "No"
|
439 |
|
440 |
+
#: bws_menu.php:534
|
441 |
msgid "Operating System"
|
442 |
msgstr "Operating System"
|
443 |
|
444 |
+
#: bws_menu.php:535
|
445 |
msgid "Server"
|
446 |
msgstr "Server"
|
447 |
|
448 |
+
#: bws_menu.php:536
|
449 |
msgid "Memory usage"
|
450 |
msgstr "Memory usage"
|
451 |
|
452 |
+
#: bws_menu.php:537
|
453 |
msgid "MYSQL Version"
|
454 |
msgstr "MYSQL Version"
|
455 |
|
456 |
+
#: bws_menu.php:538
|
457 |
msgid "SQL Mode"
|
458 |
msgstr "SQL Mode"
|
459 |
|
460 |
+
#: bws_menu.php:539
|
461 |
msgid "PHP Version"
|
462 |
msgstr "PHP Version"
|
463 |
|
464 |
+
#: bws_menu.php:540
|
465 |
msgid "PHP Safe Mode"
|
466 |
msgstr "PHP Safe Mode"
|
467 |
|
468 |
+
#: bws_menu.php:541
|
469 |
msgid "PHP Allow URL fopen"
|
470 |
msgstr "PHP Allow URL fopen"
|
471 |
|
472 |
+
#: bws_menu.php:542
|
473 |
msgid "PHP Memory Limit"
|
474 |
msgstr "PHP Memory Limit"
|
475 |
|
476 |
+
#: bws_menu.php:543
|
477 |
msgid "PHP Max Upload Size"
|
478 |
msgstr "PHP Max Upload Size"
|
479 |
|
480 |
+
#: bws_menu.php:544
|
481 |
msgid "PHP Max Post Size"
|
482 |
msgstr "PHP Max Post Size"
|
483 |
|
484 |
+
#: bws_menu.php:545
|
485 |
msgid "PHP Max Script Execute Time"
|
486 |
msgstr "PHP Max Script Execute Time"
|
487 |
|
488 |
+
#: bws_menu.php:546
|
489 |
msgid "PHP Exif support"
|
490 |
msgstr "PHP Exif support"
|
491 |
|
492 |
+
#: bws_menu.php:547
|
493 |
msgid "PHP IPTC support"
|
494 |
msgstr "PHP IPTC support"
|
495 |
|
496 |
+
#: bws_menu.php:548
|
497 |
msgid "PHP XML support"
|
498 |
msgstr "PHP XML support"
|
499 |
|
500 |
+
#: bws_menu.php:549
|
501 |
msgid "Site URL"
|
502 |
msgstr "Site URL"
|
503 |
|
504 |
+
#: bws_menu.php:550
|
505 |
msgid "Home URL"
|
506 |
msgstr "Home URL"
|
507 |
|
508 |
+
#: bws_menu.php:553
|
509 |
msgid "WordPress Version"
|
510 |
msgstr "WordPress Version"
|
511 |
|
512 |
+
#: bws_menu.php:554
|
513 |
msgid "WordPress DB Version"
|
514 |
msgstr "WordPress DB Version"
|
515 |
|
516 |
+
#: bws_menu.php:555
|
517 |
msgid "Multisite"
|
518 |
msgstr "Multisite"
|
519 |
|
520 |
+
#: bws_menu.php:556
|
521 |
msgid "Active Theme"
|
522 |
msgstr "Active Theme"
|
523 |
|
524 |
+
#: bws_menu.php:571
|
525 |
msgid "Please enter a valid email address."
|
526 |
msgstr "Merci de saisir une adresse e-mail valide."
|
527 |
|
528 |
+
#: bws_menu.php:575
|
529 |
msgid "Email with system info is sent to "
|
530 |
msgstr "Le courriel avec les informations système est envoyé à"
|
531 |
|
532 |
+
#: bws_menu.php:579
|
533 |
msgid "Thank you for contacting us."
|
534 |
msgstr "Merci de nous avoir contacté."
|
535 |
|
536 |
+
#: bws_menu.php:612
|
537 |
msgid "Sorry, email message could not be delivered."
|
538 |
msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
|
539 |
|
540 |
+
#: bws_menu.php:620
|
541 |
msgid "Need help?"
|
542 |
msgstr "Besoin d'aide ?"
|
543 |
|
544 |
+
#: bws_menu.php:621
|
545 |
msgid "Client area"
|
546 |
msgstr "Espace client"
|
547 |
|
548 |
+
#: bws_menu.php:622
|
549 |
+
#: bws_menu.php:933
|
550 |
msgid "System status"
|
551 |
msgstr "System status"
|
552 |
|
553 |
+
#: bws_menu.php:627
|
554 |
msgid "Plugins"
|
555 |
msgstr "Extensions"
|
556 |
|
557 |
+
#: bws_menu.php:629
|
558 |
msgid "Themes"
|
559 |
msgstr "Thèmes"
|
560 |
|
561 |
+
#: bws_menu.php:634
|
562 |
msgid "All"
|
563 |
msgstr "Tous"
|
564 |
|
565 |
+
#: bws_menu.php:635
|
566 |
msgid "Installed"
|
567 |
msgstr "Installé"
|
568 |
|
569 |
+
#: bws_menu.php:636
|
570 |
msgid "Recommended"
|
571 |
msgstr "Recommandé"
|
572 |
|
573 |
+
#: bws_menu.php:640
|
574 |
msgid "Installed plugins"
|
575 |
msgstr "Plugin installé"
|
576 |
|
577 |
+
#: bws_menu.php:672
|
578 |
+
#: bws_menu.php:721
|
579 |
msgid "Settings"
|
580 |
msgstr "Réglages"
|
581 |
|
582 |
+
#: bws_menu.php:693
|
583 |
+
#: bws_menu.php:750
|
584 |
msgid "Activate this plugin"
|
585 |
msgstr "Activer cette extension"
|
586 |
|
587 |
+
#: bws_menu.php:708
|
588 |
+
#: bws_menu.php:738
|
589 |
+
#: bws_menu.php:784
|
590 |
msgid "Go"
|
591 |
msgstr "Passez"
|
592 |
|
593 |
+
#: bws_menu.php:712
|
594 |
+
#: bws_menu.php:742
|
595 |
+
#: bws_menu.php:788
|
596 |
msgid "DONATE"
|
597 |
msgstr "Faire un don"
|
598 |
|
599 |
+
#: bws_menu.php:758
|
600 |
msgid "Recommended plugins"
|
601 |
msgstr "Plugin recommandé"
|
602 |
|
603 |
+
#: bws_menu.php:796
|
604 |
msgid "Install now"
|
605 |
msgstr "Installer maintenant"
|
606 |
|
607 |
+
#: bws_menu.php:817
|
608 |
msgid "Try again"
|
609 |
msgstr "Essayer de nouveau"
|
610 |
|
611 |
+
#: bws_menu.php:835
|
612 |
#, php-format
|
613 |
msgid "Preview “%s”"
|
614 |
msgstr "Pré-visualiser “%s”"
|
615 |
|
616 |
+
#: bws_menu.php:866
|
617 |
#, php-format
|
618 |
msgid "Install %s"
|
619 |
msgstr "%s installé"
|
620 |
|
621 |
+
#: bws_menu.php:866
|
622 |
msgid "Install Now"
|
623 |
msgstr "Installa Ora"
|
624 |
|
625 |
+
#: bws_menu.php:869
|
626 |
#, php-format
|
627 |
msgid "Update to version %s"
|
628 |
msgstr "Mettre à jour pour la version %s"
|
629 |
|
630 |
+
#: bws_menu.php:869
|
631 |
msgid "Update"
|
632 |
msgstr "Mettre à jour"
|
633 |
|
634 |
+
#: bws_menu.php:876
|
635 |
#, php-format
|
636 |
msgid "Preview %s"
|
637 |
msgstr "Pré-visualiser %s"
|
638 |
|
639 |
+
#: bws_menu.php:876
|
640 |
msgid "Preview"
|
641 |
msgstr "Pré-visualiser"
|
642 |
|
643 |
+
#: bws_menu.php:882
|
644 |
+
#: bws_menu.php:914
|
645 |
#, php-format
|
646 |
msgid "By %s"
|
647 |
msgstr "Par %s"
|
648 |
|
649 |
+
#: bws_menu.php:888
|
650 |
msgid "Details"
|
651 |
msgstr "Détails"
|
652 |
|
653 |
+
#: bws_menu.php:920
|
654 |
msgid "Already Installed"
|
655 |
msgstr "Déjà installé"
|
656 |
|
657 |
+
#: bws_menu.php:936
|
658 |
msgid "Environment"
|
659 |
msgstr "Environment"
|
660 |
|
661 |
+
#: bws_menu.php:947
|
662 |
msgid "Active Plugins"
|
663 |
msgstr "Plugin actifs"
|
664 |
|
665 |
+
#: bws_menu.php:960
|
666 |
msgid "Inactive Plugins"
|
667 |
msgstr "Plugin inactifs"
|
668 |
|
669 |
+
#: bws_menu.php:976
|
670 |
msgid "Send to support"
|
671 |
msgstr "Envoyé au support"
|
672 |
|
673 |
+
#: bws_menu.php:983
|
674 |
msgid "Send to custom email »"
|
675 |
msgstr "Envoyer un e-mail spécifique »"
|
676 |
|
731 |
#~ msgid "installed"
|
732 |
#~ msgstr "%s installé"
|
733 |
|
|
|
|
|
|
|
734 |
#~ msgid "Contact Form"
|
735 |
#~ msgstr "Formulaire de Contact"
|
736 |
|
1019 |
#~ msgid "Error message for the whole form"
|
1020 |
#~ msgstr "Message d'erreur demandant à compléter les champs manquants"
|
1021 |
|
|
|
|
|
|
|
1022 |
#~ msgid "for this language"
|
1023 |
#~ msgstr "pour cette langue"
|
1024 |
|
1037 |
#~ msgid "Url"
|
1038 |
#~ msgstr "Url"
|
1039 |
|
|
|
|
|
|
|
1040 |
#~ msgid "Contact Form Pro | Extra Settings"
|
1041 |
#~ msgstr "Formulaire Pro de Contact | Options supplémentaires"
|
1042 |
|
bws_menu/languages/bestwebsoft-it_IT.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-it_IT.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Marco <marco@blackstudio.it>\n"
|
9 |
"Language: it_IT\n"
|
@@ -18,663 +18,730 @@ msgstr ""
|
|
18 |
"X-Textdomain-Support: yes\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: bws_functions.php:
|
|
|
22 |
msgid "requires"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: bws_functions.php:
|
26 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: bws_functions.php:
|
30 |
msgid "Back to the WordPress"
|
31 |
msgstr ""
|
32 |
|
33 |
# @ bestwebsoft
|
34 |
-
#: bws_functions.php:
|
35 |
#, fuzzy
|
36 |
msgid "Plugins page"
|
37 |
msgstr "Plugin Pro"
|
38 |
|
39 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
40 |
msgid "It’s time to upgrade your"
|
41 |
msgstr ""
|
42 |
|
43 |
# @ captcha
|
44 |
-
#: bws_functions.php:
|
45 |
#, fuzzy
|
46 |
msgid "to"
|
47 |
msgstr "due"
|
48 |
|
49 |
# @ bestwebsoft
|
50 |
-
#: bws_functions.php:
|
51 |
#, fuzzy
|
52 |
msgid "version!"
|
53 |
msgstr "Versione PHP"
|
54 |
|
55 |
-
#: bws_functions.php:
|
56 |
msgid "Extend standard plugin functionality with new great options."
|
57 |
msgstr ""
|
58 |
|
59 |
# @ bestwebsoft
|
60 |
-
#: bws_functions.php:
|
61 |
-
#: bws_functions.php:
|
62 |
#, fuzzy
|
63 |
msgid "Learn More"
|
64 |
msgstr "Leggi tutto"
|
65 |
|
66 |
-
#: bws_functions.php:
|
67 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
68 |
msgstr ""
|
69 |
|
70 |
# @ bestwebsoft
|
71 |
-
#: bws_functions.php:
|
72 |
#, fuzzy
|
73 |
msgid "Rate the plugin"
|
74 |
msgstr "Plugin attivi"
|
75 |
|
76 |
# @ bestwebsoft
|
77 |
-
#: bws_functions.php:
|
78 |
#, fuzzy
|
79 |
msgid "If there is something wrong about it, please contact us"
|
80 |
msgstr "Se hai domande, contattaci tramite"
|
81 |
|
82 |
-
#: bws_functions.php:
|
83 |
-
#: bws_functions.php:
|
84 |
msgid "Wrong license key"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: bws_functions.php:
|
88 |
-
#: bws_functions.php:
|
89 |
-
#: bws_functions.php:
|
90 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: bws_functions.php:
|
94 |
-
#: bws_functions.php:
|
95 |
-
#: bws_functions.php:
|
96 |
msgid "We are sorry for inconvenience."
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: bws_functions.php:
|
100 |
msgid "This license key is bind to another site"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: bws_functions.php:
|
104 |
-
#: bws_functions.php:
|
105 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: bws_functions.php:
|
109 |
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: bws_functions.php:
|
113 |
-
msgid "Unfortunately, the
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: bws_functions.php:
|
117 |
-
#: bws_functions.php:
|
118 |
-
#: bws_functions.php:
|
119 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: bws_functions.php:
|
123 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: bws_functions.php:
|
127 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: bws_functions.php:
|
131 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: bws_functions.php:
|
135 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: bws_functions.php:
|
139 |
msgid "Please, enter Your license key"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: bws_functions.php:
|
143 |
-
msgid "Congratulations! The
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: bws_functions.php:
|
147 |
-
#: bws_functions.php:
|
148 |
msgid "Please, go to"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: bws_functions.php:
|
152 |
-
#: bws_functions.php:
|
153 |
msgid "the setting page"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: bws_functions.php:
|
157 |
-
#: bws_functions.php:
|
158 |
msgid "You will be redirected automatically in 5 seconds."
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: bws_functions.php:
|
162 |
msgid "You can download and activate"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: bws_functions.php:
|
166 |
msgid "version of this plugin by entering Your license key."
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: bws_functions.php:
|
170 |
-
#: bws_functions.php:
|
171 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: bws_functions.php:
|
175 |
-
#: bws_functions.php:
|
176 |
msgid "(your username is the email you specify when purchasing the product)."
|
177 |
msgstr ""
|
178 |
|
179 |
# @ captcha
|
180 |
-
#: bws_functions.php:
|
|
|
181 |
#, fuzzy
|
182 |
msgid "or"
|
183 |
msgstr "quattro"
|
184 |
|
185 |
-
#: bws_functions.php:
|
186 |
#, php-format
|
187 |
msgid "Start Your Free %s-Day Trial Now"
|
188 |
msgstr ""
|
189 |
|
190 |
# @ bestwebsoft
|
191 |
-
#: bws_functions.php:
|
192 |
-
#: bws_functions.php:
|
193 |
-
#: bws_functions.php:
|
194 |
-
#: bws_functions.php:
|
195 |
-
#: bws_menu.php:
|
196 |
-
#: bws_menu.php:
|
197 |
#, fuzzy
|
198 |
msgid "Activate"
|
199 |
msgstr "Plugin attivi"
|
200 |
|
201 |
-
#: bws_functions.php:
|
202 |
-
#: bws_functions.php:
|
203 |
#, php-format
|
204 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: bws_functions.php:
|
208 |
msgid "After that you can activate it by entering your license key."
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: bws_functions.php:
|
212 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: bws_functions.php:
|
216 |
-
msgid "Congratulations! The
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: bws_functions.php:
|
220 |
msgid "Wrong license key."
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: bws_functions.php:
|
224 |
msgid "This license key is bind to another site."
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: bws_functions.php:
|
228 |
msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: bws_functions.php:
|
232 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: bws_functions.php:
|
236 |
-
msgid "Unfortunately, the
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: bws_functions.php:
|
240 |
-
msgid "The
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: bws_functions.php:
|
244 |
msgid "The license key is valid."
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: bws_functions.php:
|
248 |
msgid "Your license will expire on"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: bws_functions.php:
|
252 |
msgid "Please, enter your license key"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: bws_functions.php:
|
256 |
msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: bws_functions.php:
|
260 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: bws_functions.php:
|
264 |
msgid "Check license key"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: bws_functions.php:
|
268 |
msgid "WARNING: Illegal use notification"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: bws_functions.php:
|
272 |
msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: bws_functions.php:
|
276 |
-
msgid "Notice: Your
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: bws_functions.php:
|
280 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
281 |
msgstr ""
|
282 |
|
283 |
# @ bestwebsoft
|
284 |
-
#: bws_functions.php:
|
285 |
-
#: bws_functions.php:
|
286 |
-
#: bws_menu.php:
|
287 |
-
#: bws_menu.php:
|
288 |
-
#: bws_menu.php:
|
289 |
-
#: bws_menu.php:
|
290 |
-
#: bws_menu.php:
|
291 |
#, fuzzy
|
292 |
msgid "Learn more"
|
293 |
msgstr "Leggi tutto"
|
294 |
|
295 |
-
#: bws_functions.php:
|
296 |
#, php-format
|
297 |
-
msgid "Notice: You are using the
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: bws_functions.php:
|
301 |
-
msgid "Notice: You are using the
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: bws_functions.php:
|
305 |
-
msgid "The
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: bws_functions.php:
|
309 |
msgid "You license for"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: bws_functions.php:
|
313 |
msgid "expires on"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: bws_functions.php:
|
317 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
318 |
msgstr ""
|
319 |
|
320 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
321 |
msgid "Close"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: bws_functions.php:
|
325 |
-
#: bws_functions.php:784
|
326 |
msgid "Restore all plugin settings to defaults"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: bws_functions.php:
|
330 |
-
#: bws_functions.php:786
|
331 |
msgid "Restore settings"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: bws_functions.php:
|
335 |
msgid "Are you sure you want to restore all settings by default?"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: bws_functions.php:
|
339 |
msgid "Yes, restore all settings"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: bws_functions.php:
|
343 |
msgid "No, go back to the settings page"
|
344 |
msgstr ""
|
345 |
|
346 |
# @ bestwebsoft
|
347 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
348 |
msgid "Not set"
|
349 |
msgstr "Non impostato"
|
350 |
|
351 |
# @ bestwebsoft
|
352 |
-
#: bws_menu.php:
|
353 |
-
#: bws_menu.php:
|
354 |
msgid "On"
|
355 |
msgstr "Abilitato"
|
356 |
|
357 |
# @ bestwebsoft
|
358 |
-
#: bws_menu.php:
|
359 |
-
#: bws_menu.php:
|
360 |
msgid "Off"
|
361 |
msgstr "Disabilitato"
|
362 |
|
363 |
# @ bestwebsoft
|
364 |
-
#: bws_menu.php:
|
365 |
-
#: bws_menu.php:
|
366 |
-
#: bws_menu.php:
|
367 |
-
#: bws_menu.php:
|
368 |
-
#: bws_menu.php:
|
369 |
-
#: bws_menu.php:
|
370 |
msgid "N/A"
|
371 |
msgstr "Non disponibile"
|
372 |
|
373 |
# @ bestwebsoft
|
374 |
-
#: bws_menu.php:
|
375 |
msgid " Mb"
|
376 |
msgstr "Mb"
|
377 |
|
378 |
# @ bestwebsoft
|
379 |
-
#: bws_menu.php:
|
380 |
-
#: bws_menu.php:
|
381 |
-
#: bws_menu.php:
|
382 |
-
#: bws_menu.php:
|
383 |
msgid "Yes"
|
384 |
msgstr "Sì"
|
385 |
|
386 |
# @ bestwebsoft
|
387 |
-
#: bws_menu.php:
|
388 |
-
#: bws_menu.php:
|
389 |
-
#: bws_menu.php:
|
390 |
-
#: bws_menu.php:
|
391 |
msgid "No"
|
392 |
msgstr "No"
|
393 |
|
394 |
# @ bestwebsoft
|
395 |
-
#: bws_menu.php:
|
396 |
msgid "Operating System"
|
397 |
msgstr "Sistema operativo"
|
398 |
|
399 |
# @ bestwebsoft
|
400 |
-
#: bws_menu.php:
|
401 |
msgid "Server"
|
402 |
msgstr "Server"
|
403 |
|
404 |
# @ bestwebsoft
|
405 |
-
#: bws_menu.php:
|
406 |
msgid "Memory usage"
|
407 |
msgstr "Utilizzo memoria"
|
408 |
|
409 |
# @ bestwebsoft
|
410 |
-
#: bws_menu.php:
|
411 |
msgid "MYSQL Version"
|
412 |
msgstr "Versione MYSQL"
|
413 |
|
414 |
# @ bestwebsoft
|
415 |
-
#: bws_menu.php:
|
416 |
msgid "SQL Mode"
|
417 |
msgstr "Modalità SQL"
|
418 |
|
419 |
# @ bestwebsoft
|
420 |
-
#: bws_menu.php:
|
421 |
msgid "PHP Version"
|
422 |
msgstr "Versione PHP"
|
423 |
|
424 |
# @ bestwebsoft
|
425 |
-
#: bws_menu.php:
|
426 |
msgid "PHP Safe Mode"
|
427 |
msgstr "Safe Mode PHP"
|
428 |
|
429 |
# @ bestwebsoft
|
430 |
-
#: bws_menu.php:
|
431 |
msgid "PHP Allow URL fopen"
|
432 |
msgstr "Consenti URL fopen PHP"
|
433 |
|
434 |
# @ bestwebsoft
|
435 |
-
#: bws_menu.php:
|
436 |
msgid "PHP Memory Limit"
|
437 |
msgstr "Limite di memoria PHP"
|
438 |
|
439 |
# @ bestwebsoft
|
440 |
-
#: bws_menu.php:
|
441 |
msgid "PHP Max Upload Size"
|
442 |
msgstr "Dimensione upload massima PHP"
|
443 |
|
444 |
# @ bestwebsoft
|
445 |
-
#: bws_menu.php:
|
446 |
msgid "PHP Max Post Size"
|
447 |
msgstr "Dimensione massima Post PHP"
|
448 |
|
449 |
# @ bestwebsoft
|
450 |
-
#: bws_menu.php:
|
451 |
msgid "PHP Max Script Execute Time"
|
452 |
msgstr "Tempo massimo di esecuzione PHP"
|
453 |
|
454 |
# @ bestwebsoft
|
455 |
-
#: bws_menu.php:
|
456 |
msgid "PHP Exif support"
|
457 |
msgstr "Supporto Exif PHP"
|
458 |
|
459 |
# @ bestwebsoft
|
460 |
-
#: bws_menu.php:
|
461 |
msgid "PHP IPTC support"
|
462 |
msgstr "Supporto IPTC PHP"
|
463 |
|
464 |
# @ bestwebsoft
|
465 |
-
#: bws_menu.php:
|
466 |
msgid "PHP XML support"
|
467 |
msgstr "Supporto XML PHP"
|
468 |
|
469 |
# @ bestwebsoft
|
470 |
-
#: bws_menu.php:
|
471 |
msgid "Site URL"
|
472 |
msgstr "URL sito"
|
473 |
|
474 |
# @ bestwebsoft
|
475 |
-
#: bws_menu.php:
|
476 |
msgid "Home URL"
|
477 |
msgstr "URL home"
|
478 |
|
479 |
# @ bestwebsoft
|
480 |
-
#: bws_menu.php:
|
481 |
msgid "WordPress Version"
|
482 |
msgstr "Versione WordPress"
|
483 |
|
484 |
# @ bestwebsoft
|
485 |
-
#: bws_menu.php:
|
486 |
msgid "WordPress DB Version"
|
487 |
msgstr "Versione DB WordPress"
|
488 |
|
489 |
# @ bestwebsoft
|
490 |
-
#: bws_menu.php:
|
491 |
msgid "Multisite"
|
492 |
msgstr "Multisito"
|
493 |
|
494 |
# @ bestwebsoft
|
495 |
-
#: bws_menu.php:
|
496 |
msgid "Active Theme"
|
497 |
msgstr "Tema attivo"
|
498 |
|
499 |
# @ bestwebsoft
|
500 |
-
#: bws_menu.php:
|
501 |
msgid "Please enter a valid email address."
|
502 |
msgstr "Per favore inserisci un indirizzo e-mail valido."
|
503 |
|
504 |
# @ bestwebsoft
|
505 |
-
#: bws_menu.php:
|
506 |
msgid "Email with system info is sent to "
|
507 |
msgstr "Email con informazioni di sistema spedita a "
|
508 |
|
509 |
# @ bestwebsoft
|
510 |
-
#: bws_menu.php:
|
511 |
msgid "Thank you for contacting us."
|
512 |
msgstr "Grazie per averci contattato."
|
513 |
|
514 |
# @ bestwebsoft
|
515 |
-
#: bws_menu.php:
|
516 |
msgid "Sorry, email message could not be delivered."
|
517 |
msgstr "Spiacenti, il messaggio email non può essere inviato."
|
518 |
|
519 |
-
#: bws_menu.php:
|
520 |
msgid "Need help?"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: bws_menu.php:
|
524 |
msgid "Client area"
|
525 |
msgstr ""
|
526 |
|
527 |
# @ bestwebsoft
|
528 |
-
#: bws_menu.php:
|
529 |
-
#: bws_menu.php:
|
530 |
msgid "System status"
|
531 |
msgstr "Stato sistema"
|
532 |
|
533 |
# @ bestwebsoft
|
534 |
-
#: bws_menu.php:
|
535 |
#, fuzzy
|
536 |
msgid "Plugins"
|
537 |
msgstr "Plugin Pro"
|
538 |
|
539 |
-
#: bws_menu.php:
|
540 |
msgid "Themes"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: bws_menu.php:
|
544 |
msgid "All"
|
545 |
msgstr ""
|
546 |
|
547 |
# @ default
|
548 |
-
#: bws_menu.php:
|
549 |
#, fuzzy
|
550 |
msgid "Installed"
|
551 |
msgstr "Installa %s"
|
552 |
|
553 |
# @ bestwebsoft
|
554 |
-
#: bws_menu.php:
|
555 |
#, fuzzy
|
556 |
msgid "Recommended"
|
557 |
msgstr "Plugin raccomandati"
|
558 |
|
559 |
# @ bestwebsoft
|
560 |
-
#: bws_menu.php:
|
561 |
msgid "Installed plugins"
|
562 |
msgstr "Plugin installati"
|
563 |
|
564 |
# @ bestwebsoft
|
565 |
# @ captcha
|
566 |
-
#: bws_menu.php:
|
567 |
-
#: bws_menu.php:
|
568 |
msgid "Settings"
|
569 |
msgstr "Impostazioni"
|
570 |
|
571 |
# @ bestwebsoft
|
572 |
-
#: bws_menu.php:
|
573 |
-
#: bws_menu.php:
|
574 |
#, fuzzy
|
575 |
msgid "Activate this plugin"
|
576 |
msgstr "Plugin attivi"
|
577 |
|
578 |
-
#: bws_menu.php:
|
579 |
-
#: bws_menu.php:
|
580 |
-
#: bws_menu.php:
|
581 |
msgid "Go"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: bws_menu.php:
|
585 |
-
#: bws_menu.php:
|
586 |
-
#: bws_menu.php:
|
587 |
msgid "DONATE"
|
588 |
msgstr ""
|
589 |
|
590 |
# @ bestwebsoft
|
591 |
-
#: bws_menu.php:
|
592 |
msgid "Recommended plugins"
|
593 |
msgstr "Plugin raccomandati"
|
594 |
|
595 |
# @ default
|
596 |
-
#: bws_menu.php:
|
597 |
#, fuzzy
|
598 |
msgid "Install now"
|
599 |
msgstr "Installa %s"
|
600 |
|
601 |
-
#: bws_menu.php:
|
602 |
msgid "Try again"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: bws_menu.php:
|
606 |
#, php-format
|
607 |
msgid "Preview “%s”"
|
608 |
msgstr ""
|
609 |
|
610 |
# @ default
|
611 |
-
#: bws_menu.php:
|
612 |
#, php-format
|
613 |
msgid "Install %s"
|
614 |
msgstr "Installa %s"
|
615 |
|
616 |
# @ default
|
617 |
-
#: bws_menu.php:
|
618 |
#, fuzzy
|
619 |
msgid "Install Now"
|
620 |
msgstr "Installa %s"
|
621 |
|
622 |
-
#: bws_menu.php:
|
623 |
#, php-format
|
624 |
msgid "Update to version %s"
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: bws_menu.php:
|
628 |
msgid "Update"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: bws_menu.php:
|
632 |
#, php-format
|
633 |
msgid "Preview %s"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: bws_menu.php:
|
637 |
msgid "Preview"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: bws_menu.php:
|
641 |
-
#: bws_menu.php:
|
642 |
#, php-format
|
643 |
msgid "By %s"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: bws_menu.php:
|
647 |
msgid "Details"
|
648 |
msgstr ""
|
649 |
|
650 |
# @ default
|
651 |
-
#: bws_menu.php:
|
652 |
#, fuzzy
|
653 |
msgid "Already Installed"
|
654 |
msgstr "Installa %s"
|
655 |
|
656 |
# @ bestwebsoft
|
657 |
-
#: bws_menu.php:
|
658 |
msgid "Environment"
|
659 |
msgstr "Ambiente"
|
660 |
|
661 |
# @ bestwebsoft
|
662 |
-
#: bws_menu.php:
|
663 |
msgid "Active Plugins"
|
664 |
msgstr "Plugin attivi"
|
665 |
|
666 |
# @ bestwebsoft
|
667 |
-
#: bws_menu.php:
|
668 |
msgid "Inactive Plugins"
|
669 |
msgstr "Plugin inattivi"
|
670 |
|
671 |
# @ bestwebsoft
|
672 |
-
#: bws_menu.php:
|
673 |
msgid "Send to support"
|
674 |
msgstr "Invia al supporto"
|
675 |
|
676 |
# @ bestwebsoft
|
677 |
-
#: bws_menu.php:
|
678 |
msgid "Send to custom email »"
|
679 |
msgstr "Invia a una email personalizzata »"
|
680 |
|
@@ -843,9 +910,6 @@ msgstr "Invia a una email personalizzata »"
|
|
843 |
# @ captcha
|
844 |
#~ msgid "CAPTCHA complexity level"
|
845 |
#~ msgstr "Livello complessità CAPTCHA"
|
846 |
-
# @ default
|
847 |
-
#~ msgid "Save Changes"
|
848 |
-
#~ msgstr "Salva le modifiche"
|
849 |
# @ captcha
|
850 |
#~ msgid "ERROR"
|
851 |
#~ msgstr "ERRORE"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-17 16:00+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-09-17 16:00+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Marco <marco@blackstudio.it>\n"
|
9 |
"Language: it_IT\n"
|
18 |
"X-Textdomain-Support: yes\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: bws_functions.php:29
|
22 |
+
#: bws_functions.php:53
|
23 |
msgid "requires"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: bws_functions.php:31
|
27 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: bws_functions.php:32
|
31 |
msgid "Back to the WordPress"
|
32 |
msgstr ""
|
33 |
|
34 |
# @ bestwebsoft
|
35 |
+
#: bws_functions.php:34
|
36 |
#, fuzzy
|
37 |
msgid "Plugins page"
|
38 |
msgstr "Plugin Pro"
|
39 |
|
40 |
+
#: bws_functions.php:55
|
41 |
+
msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
#: bws_functions.php:112
|
45 |
msgid "It’s time to upgrade your"
|
46 |
msgstr ""
|
47 |
|
48 |
# @ captcha
|
49 |
+
#: bws_functions.php:112
|
50 |
#, fuzzy
|
51 |
msgid "to"
|
52 |
msgstr "due"
|
53 |
|
54 |
# @ bestwebsoft
|
55 |
+
#: bws_functions.php:112
|
56 |
#, fuzzy
|
57 |
msgid "version!"
|
58 |
msgstr "Versione PHP"
|
59 |
|
60 |
+
#: bws_functions.php:113
|
61 |
msgid "Extend standard plugin functionality with new great options."
|
62 |
msgstr ""
|
63 |
|
64 |
# @ bestwebsoft
|
65 |
+
#: bws_functions.php:116
|
66 |
+
#: bws_functions.php:513
|
67 |
#, fuzzy
|
68 |
msgid "Learn More"
|
69 |
msgstr "Leggi tutto"
|
70 |
|
71 |
+
#: bws_functions.php:133
|
72 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
73 |
msgstr ""
|
74 |
|
75 |
# @ bestwebsoft
|
76 |
+
#: bws_functions.php:134
|
77 |
#, fuzzy
|
78 |
msgid "Rate the plugin"
|
79 |
msgstr "Plugin attivi"
|
80 |
|
81 |
# @ bestwebsoft
|
82 |
+
#: bws_functions.php:137
|
83 |
#, fuzzy
|
84 |
msgid "If there is something wrong about it, please contact us"
|
85 |
msgstr "Se hai domande, contattaci tramite"
|
86 |
|
87 |
+
#: bws_functions.php:154
|
88 |
+
#: bws_functions.php:190
|
89 |
msgid "Wrong license key"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: bws_functions.php:184
|
93 |
+
#: bws_functions.php:426
|
94 |
+
#: bws_functions.php:477
|
95 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: bws_functions.php:184
|
99 |
+
#: bws_functions.php:426
|
100 |
+
#: bws_functions.php:477
|
101 |
msgid "We are sorry for inconvenience."
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: bws_functions.php:192
|
105 |
msgid "This license key is bind to another site"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: bws_functions.php:194
|
109 |
+
#: bws_functions.php:336
|
110 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: bws_functions.php:196
|
114 |
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: bws_functions.php:198
|
118 |
+
msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: bws_functions.php:219
|
122 |
+
#: bws_functions.php:241
|
123 |
+
#: bws_functions.php:263
|
124 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: bws_functions.php:231
|
128 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: bws_functions.php:237
|
132 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: bws_functions.php:244
|
136 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: bws_functions.php:267
|
140 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: bws_functions.php:292
|
144 |
msgid "Please, enter Your license key"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: bws_functions.php:309
|
148 |
+
msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: bws_functions.php:311
|
152 |
+
#: bws_functions.php:393
|
153 |
msgid "Please, go to"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: bws_functions.php:311
|
157 |
+
#: bws_functions.php:393
|
158 |
msgid "the setting page"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: bws_functions.php:312
|
162 |
+
#: bws_functions.php:394
|
163 |
msgid "You will be redirected automatically in 5 seconds."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: bws_functions.php:317
|
167 |
msgid "You can download and activate"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: bws_functions.php:319
|
171 |
msgid "version of this plugin by entering Your license key."
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: bws_functions.php:321
|
175 |
+
#: bws_functions.php:362
|
176 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: bws_functions.php:323
|
180 |
+
#: bws_functions.php:364
|
181 |
msgid "(your username is the email you specify when purchasing the product)."
|
182 |
msgstr ""
|
183 |
|
184 |
# @ captcha
|
185 |
+
#: bws_functions.php:327
|
186 |
+
#: bws_functions.php:630
|
187 |
#, fuzzy
|
188 |
msgid "or"
|
189 |
msgstr "quattro"
|
190 |
|
191 |
+
#: bws_functions.php:327
|
192 |
#, php-format
|
193 |
msgid "Start Your Free %s-Day Trial Now"
|
194 |
msgstr ""
|
195 |
|
196 |
# @ bestwebsoft
|
197 |
+
#: bws_functions.php:333
|
198 |
+
#: bws_functions.php:342
|
199 |
+
#: bws_functions.php:372
|
200 |
+
#: bws_functions.php:380
|
201 |
+
#: bws_menu.php:693
|
202 |
+
#: bws_menu.php:750
|
203 |
#, fuzzy
|
204 |
msgid "Activate"
|
205 |
msgstr "Plugin attivi"
|
206 |
|
207 |
+
#: bws_functions.php:359
|
208 |
+
#: bws_functions.php:452
|
209 |
#, php-format
|
210 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: bws_functions.php:360
|
214 |
msgid "After that you can activate it by entering your license key."
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: bws_functions.php:374
|
218 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: bws_functions.php:391
|
222 |
+
msgid "Congratulations! The Pro license of the plugin is successfully activated."
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: bws_functions.php:432
|
226 |
msgid "Wrong license key."
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: bws_functions.php:434
|
230 |
msgid "This license key is bind to another site."
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: bws_functions.php:436
|
234 |
msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: bws_functions.php:438
|
238 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: bws_functions.php:440
|
242 |
+
msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: bws_functions.php:444
|
246 |
+
msgid "The Pro Trial license key is valid."
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: bws_functions.php:446
|
250 |
msgid "The license key is valid."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: bws_functions.php:449
|
254 |
msgid "Your license will expire on"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: bws_functions.php:482
|
258 |
msgid "Please, enter your license key"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: bws_functions.php:495
|
262 |
msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: bws_functions.php:495
|
266 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: bws_functions.php:499
|
270 |
msgid "Check license key"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: bws_functions.php:513
|
274 |
msgid "WARNING: Illegal use notification"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: bws_functions.php:513
|
278 |
msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: bws_functions.php:521
|
282 |
+
msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: bws_functions.php:523
|
286 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
287 |
msgstr ""
|
288 |
|
289 |
# @ bestwebsoft
|
290 |
+
#: bws_functions.php:523
|
291 |
+
#: bws_functions.php:576
|
292 |
+
#: bws_menu.php:669
|
293 |
+
#: bws_menu.php:691
|
294 |
+
#: bws_menu.php:718
|
295 |
+
#: bws_menu.php:748
|
296 |
+
#: bws_menu.php:794
|
297 |
#, fuzzy
|
298 |
msgid "Learn more"
|
299 |
msgstr "Leggi tutto"
|
300 |
|
301 |
+
#: bws_functions.php:533
|
302 |
#, php-format
|
303 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: bws_functions.php:535
|
307 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: bws_functions.php:538
|
311 |
+
msgid "The Pro Trial license will expire on"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: bws_functions.php:576
|
315 |
msgid "You license for"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: bws_functions.php:576
|
319 |
msgid "expires on"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: bws_functions.php:576
|
323 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
324 |
msgstr ""
|
325 |
|
326 |
+
# @ bestwebsoft
|
327 |
+
#: bws_functions.php:626
|
328 |
+
#, fuzzy
|
329 |
+
msgid "Thank you for installing"
|
330 |
+
msgstr "Grazie per averci contattato."
|
331 |
+
|
332 |
+
#: bws_functions.php:627
|
333 |
+
msgid "Let's get started"
|
334 |
+
msgstr ""
|
335 |
+
|
336 |
+
# @ bestwebsoft
|
337 |
+
# @ captcha
|
338 |
+
#: bws_functions.php:628
|
339 |
+
#, fuzzy
|
340 |
+
msgid "Configure Settings"
|
341 |
+
msgstr "Impostazioni"
|
342 |
+
|
343 |
+
#: bws_functions.php:631
|
344 |
+
msgid "Add New"
|
345 |
+
msgstr ""
|
346 |
+
|
347 |
+
#: bws_functions.php:635
|
348 |
+
msgid "Close notice"
|
349 |
+
msgstr ""
|
350 |
+
|
351 |
+
#: bws_functions.php:648
|
352 |
+
msgid "Notice"
|
353 |
+
msgstr ""
|
354 |
+
|
355 |
+
#: bws_functions.php:648
|
356 |
+
msgid "The plugin's settings have been changed."
|
357 |
+
msgstr ""
|
358 |
+
|
359 |
+
# @ default
|
360 |
+
#: bws_functions.php:649
|
361 |
+
msgid "Save Changes"
|
362 |
+
msgstr "Salva le modifiche"
|
363 |
+
|
364 |
+
#: bws_functions.php:694
|
365 |
+
msgid "Add BWS Plugins Shortcode"
|
366 |
+
msgstr ""
|
367 |
+
|
368 |
+
#: bws_functions.php:738
|
369 |
msgid "Close"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: bws_functions.php:829
|
|
|
373 |
msgid "Restore all plugin settings to defaults"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: bws_functions.php:831
|
|
|
377 |
msgid "Restore settings"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: bws_functions.php:842
|
381 |
msgid "Are you sure you want to restore all settings by default?"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: bws_functions.php:845
|
385 |
msgid "Yes, restore all settings"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: bws_functions.php:846
|
389 |
msgid "No, go back to the settings page"
|
390 |
msgstr ""
|
391 |
|
392 |
# @ bestwebsoft
|
393 |
+
#: bws_functions.php:890
|
394 |
+
#, fuzzy
|
395 |
+
msgid "Plugin"
|
396 |
+
msgstr "Plugin Pro"
|
397 |
+
|
398 |
+
# @ bestwebsoft
|
399 |
+
# @ captcha
|
400 |
+
#: bws_functions.php:899
|
401 |
+
#, fuzzy
|
402 |
+
msgid "Shortcode settings"
|
403 |
+
msgstr "Impostazioni"
|
404 |
+
|
405 |
+
#: bws_functions.php:904
|
406 |
+
msgid "The shortcode will be inserted"
|
407 |
+
msgstr ""
|
408 |
+
|
409 |
+
#: bws_functions.php:909
|
410 |
+
msgid "Insert"
|
411 |
+
msgstr ""
|
412 |
+
|
413 |
+
# @ bestwebsoft
|
414 |
+
#: bws_menu.php:506
|
415 |
msgid "Not set"
|
416 |
msgstr "Non impostato"
|
417 |
|
418 |
# @ bestwebsoft
|
419 |
+
#: bws_menu.php:508
|
420 |
+
#: bws_menu.php:509
|
421 |
msgid "On"
|
422 |
msgstr "Abilitato"
|
423 |
|
424 |
# @ bestwebsoft
|
425 |
+
#: bws_menu.php:508
|
426 |
+
#: bws_menu.php:509
|
427 |
msgid "Off"
|
428 |
msgstr "Disabilitato"
|
429 |
|
430 |
# @ bestwebsoft
|
431 |
+
#: bws_menu.php:510
|
432 |
+
#: bws_menu.php:511
|
433 |
+
#: bws_menu.php:512
|
434 |
+
#: bws_menu.php:513
|
435 |
+
#: bws_menu.php:514
|
436 |
+
#: bws_menu.php:526
|
437 |
msgid "N/A"
|
438 |
msgstr "Non disponibile"
|
439 |
|
440 |
# @ bestwebsoft
|
441 |
+
#: bws_menu.php:514
|
442 |
msgid " Mb"
|
443 |
msgstr "Mb"
|
444 |
|
445 |
# @ bestwebsoft
|
446 |
+
#: bws_menu.php:515
|
447 |
+
#: bws_menu.php:516
|
448 |
+
#: bws_menu.php:517
|
449 |
+
#: bws_menu.php:522
|
450 |
msgid "Yes"
|
451 |
msgstr "Sì"
|
452 |
|
453 |
# @ bestwebsoft
|
454 |
+
#: bws_menu.php:515
|
455 |
+
#: bws_menu.php:516
|
456 |
+
#: bws_menu.php:517
|
457 |
+
#: bws_menu.php:524
|
458 |
msgid "No"
|
459 |
msgstr "No"
|
460 |
|
461 |
# @ bestwebsoft
|
462 |
+
#: bws_menu.php:534
|
463 |
msgid "Operating System"
|
464 |
msgstr "Sistema operativo"
|
465 |
|
466 |
# @ bestwebsoft
|
467 |
+
#: bws_menu.php:535
|
468 |
msgid "Server"
|
469 |
msgstr "Server"
|
470 |
|
471 |
# @ bestwebsoft
|
472 |
+
#: bws_menu.php:536
|
473 |
msgid "Memory usage"
|
474 |
msgstr "Utilizzo memoria"
|
475 |
|
476 |
# @ bestwebsoft
|
477 |
+
#: bws_menu.php:537
|
478 |
msgid "MYSQL Version"
|
479 |
msgstr "Versione MYSQL"
|
480 |
|
481 |
# @ bestwebsoft
|
482 |
+
#: bws_menu.php:538
|
483 |
msgid "SQL Mode"
|
484 |
msgstr "Modalità SQL"
|
485 |
|
486 |
# @ bestwebsoft
|
487 |
+
#: bws_menu.php:539
|
488 |
msgid "PHP Version"
|
489 |
msgstr "Versione PHP"
|
490 |
|
491 |
# @ bestwebsoft
|
492 |
+
#: bws_menu.php:540
|
493 |
msgid "PHP Safe Mode"
|
494 |
msgstr "Safe Mode PHP"
|
495 |
|
496 |
# @ bestwebsoft
|
497 |
+
#: bws_menu.php:541
|
498 |
msgid "PHP Allow URL fopen"
|
499 |
msgstr "Consenti URL fopen PHP"
|
500 |
|
501 |
# @ bestwebsoft
|
502 |
+
#: bws_menu.php:542
|
503 |
msgid "PHP Memory Limit"
|
504 |
msgstr "Limite di memoria PHP"
|
505 |
|
506 |
# @ bestwebsoft
|
507 |
+
#: bws_menu.php:543
|
508 |
msgid "PHP Max Upload Size"
|
509 |
msgstr "Dimensione upload massima PHP"
|
510 |
|
511 |
# @ bestwebsoft
|
512 |
+
#: bws_menu.php:544
|
513 |
msgid "PHP Max Post Size"
|
514 |
msgstr "Dimensione massima Post PHP"
|
515 |
|
516 |
# @ bestwebsoft
|
517 |
+
#: bws_menu.php:545
|
518 |
msgid "PHP Max Script Execute Time"
|
519 |
msgstr "Tempo massimo di esecuzione PHP"
|
520 |
|
521 |
# @ bestwebsoft
|
522 |
+
#: bws_menu.php:546
|
523 |
msgid "PHP Exif support"
|
524 |
msgstr "Supporto Exif PHP"
|
525 |
|
526 |
# @ bestwebsoft
|
527 |
+
#: bws_menu.php:547
|
528 |
msgid "PHP IPTC support"
|
529 |
msgstr "Supporto IPTC PHP"
|
530 |
|
531 |
# @ bestwebsoft
|
532 |
+
#: bws_menu.php:548
|
533 |
msgid "PHP XML support"
|
534 |
msgstr "Supporto XML PHP"
|
535 |
|
536 |
# @ bestwebsoft
|
537 |
+
#: bws_menu.php:549
|
538 |
msgid "Site URL"
|
539 |
msgstr "URL sito"
|
540 |
|
541 |
# @ bestwebsoft
|
542 |
+
#: bws_menu.php:550
|
543 |
msgid "Home URL"
|
544 |
msgstr "URL home"
|
545 |
|
546 |
# @ bestwebsoft
|
547 |
+
#: bws_menu.php:553
|
548 |
msgid "WordPress Version"
|
549 |
msgstr "Versione WordPress"
|
550 |
|
551 |
# @ bestwebsoft
|
552 |
+
#: bws_menu.php:554
|
553 |
msgid "WordPress DB Version"
|
554 |
msgstr "Versione DB WordPress"
|
555 |
|
556 |
# @ bestwebsoft
|
557 |
+
#: bws_menu.php:555
|
558 |
msgid "Multisite"
|
559 |
msgstr "Multisito"
|
560 |
|
561 |
# @ bestwebsoft
|
562 |
+
#: bws_menu.php:556
|
563 |
msgid "Active Theme"
|
564 |
msgstr "Tema attivo"
|
565 |
|
566 |
# @ bestwebsoft
|
567 |
+
#: bws_menu.php:571
|
568 |
msgid "Please enter a valid email address."
|
569 |
msgstr "Per favore inserisci un indirizzo e-mail valido."
|
570 |
|
571 |
# @ bestwebsoft
|
572 |
+
#: bws_menu.php:575
|
573 |
msgid "Email with system info is sent to "
|
574 |
msgstr "Email con informazioni di sistema spedita a "
|
575 |
|
576 |
# @ bestwebsoft
|
577 |
+
#: bws_menu.php:579
|
578 |
msgid "Thank you for contacting us."
|
579 |
msgstr "Grazie per averci contattato."
|
580 |
|
581 |
# @ bestwebsoft
|
582 |
+
#: bws_menu.php:612
|
583 |
msgid "Sorry, email message could not be delivered."
|
584 |
msgstr "Spiacenti, il messaggio email non può essere inviato."
|
585 |
|
586 |
+
#: bws_menu.php:620
|
587 |
msgid "Need help?"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: bws_menu.php:621
|
591 |
msgid "Client area"
|
592 |
msgstr ""
|
593 |
|
594 |
# @ bestwebsoft
|
595 |
+
#: bws_menu.php:622
|
596 |
+
#: bws_menu.php:933
|
597 |
msgid "System status"
|
598 |
msgstr "Stato sistema"
|
599 |
|
600 |
# @ bestwebsoft
|
601 |
+
#: bws_menu.php:627
|
602 |
#, fuzzy
|
603 |
msgid "Plugins"
|
604 |
msgstr "Plugin Pro"
|
605 |
|
606 |
+
#: bws_menu.php:629
|
607 |
msgid "Themes"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: bws_menu.php:634
|
611 |
msgid "All"
|
612 |
msgstr ""
|
613 |
|
614 |
# @ default
|
615 |
+
#: bws_menu.php:635
|
616 |
#, fuzzy
|
617 |
msgid "Installed"
|
618 |
msgstr "Installa %s"
|
619 |
|
620 |
# @ bestwebsoft
|
621 |
+
#: bws_menu.php:636
|
622 |
#, fuzzy
|
623 |
msgid "Recommended"
|
624 |
msgstr "Plugin raccomandati"
|
625 |
|
626 |
# @ bestwebsoft
|
627 |
+
#: bws_menu.php:640
|
628 |
msgid "Installed plugins"
|
629 |
msgstr "Plugin installati"
|
630 |
|
631 |
# @ bestwebsoft
|
632 |
# @ captcha
|
633 |
+
#: bws_menu.php:672
|
634 |
+
#: bws_menu.php:721
|
635 |
msgid "Settings"
|
636 |
msgstr "Impostazioni"
|
637 |
|
638 |
# @ bestwebsoft
|
639 |
+
#: bws_menu.php:693
|
640 |
+
#: bws_menu.php:750
|
641 |
#, fuzzy
|
642 |
msgid "Activate this plugin"
|
643 |
msgstr "Plugin attivi"
|
644 |
|
645 |
+
#: bws_menu.php:708
|
646 |
+
#: bws_menu.php:738
|
647 |
+
#: bws_menu.php:784
|
648 |
msgid "Go"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: bws_menu.php:712
|
652 |
+
#: bws_menu.php:742
|
653 |
+
#: bws_menu.php:788
|
654 |
msgid "DONATE"
|
655 |
msgstr ""
|
656 |
|
657 |
# @ bestwebsoft
|
658 |
+
#: bws_menu.php:758
|
659 |
msgid "Recommended plugins"
|
660 |
msgstr "Plugin raccomandati"
|
661 |
|
662 |
# @ default
|
663 |
+
#: bws_menu.php:796
|
664 |
#, fuzzy
|
665 |
msgid "Install now"
|
666 |
msgstr "Installa %s"
|
667 |
|
668 |
+
#: bws_menu.php:817
|
669 |
msgid "Try again"
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: bws_menu.php:835
|
673 |
#, php-format
|
674 |
msgid "Preview “%s”"
|
675 |
msgstr ""
|
676 |
|
677 |
# @ default
|
678 |
+
#: bws_menu.php:866
|
679 |
#, php-format
|
680 |
msgid "Install %s"
|
681 |
msgstr "Installa %s"
|
682 |
|
683 |
# @ default
|
684 |
+
#: bws_menu.php:866
|
685 |
#, fuzzy
|
686 |
msgid "Install Now"
|
687 |
msgstr "Installa %s"
|
688 |
|
689 |
+
#: bws_menu.php:869
|
690 |
#, php-format
|
691 |
msgid "Update to version %s"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: bws_menu.php:869
|
695 |
msgid "Update"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: bws_menu.php:876
|
699 |
#, php-format
|
700 |
msgid "Preview %s"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: bws_menu.php:876
|
704 |
msgid "Preview"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: bws_menu.php:882
|
708 |
+
#: bws_menu.php:914
|
709 |
#, php-format
|
710 |
msgid "By %s"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: bws_menu.php:888
|
714 |
msgid "Details"
|
715 |
msgstr ""
|
716 |
|
717 |
# @ default
|
718 |
+
#: bws_menu.php:920
|
719 |
#, fuzzy
|
720 |
msgid "Already Installed"
|
721 |
msgstr "Installa %s"
|
722 |
|
723 |
# @ bestwebsoft
|
724 |
+
#: bws_menu.php:936
|
725 |
msgid "Environment"
|
726 |
msgstr "Ambiente"
|
727 |
|
728 |
# @ bestwebsoft
|
729 |
+
#: bws_menu.php:947
|
730 |
msgid "Active Plugins"
|
731 |
msgstr "Plugin attivi"
|
732 |
|
733 |
# @ bestwebsoft
|
734 |
+
#: bws_menu.php:960
|
735 |
msgid "Inactive Plugins"
|
736 |
msgstr "Plugin inattivi"
|
737 |
|
738 |
# @ bestwebsoft
|
739 |
+
#: bws_menu.php:976
|
740 |
msgid "Send to support"
|
741 |
msgstr "Invia al supporto"
|
742 |
|
743 |
# @ bestwebsoft
|
744 |
+
#: bws_menu.php:983
|
745 |
msgid "Send to custom email »"
|
746 |
msgstr "Invia a una email personalizzata »"
|
747 |
|
910 |
# @ captcha
|
911 |
#~ msgid "CAPTCHA complexity level"
|
912 |
#~ msgstr "Livello complessità CAPTCHA"
|
|
|
|
|
|
|
913 |
# @ captcha
|
914 |
#~ msgid "ERROR"
|
915 |
#~ msgstr "ERRORE"
|
bws_menu/languages/bestwebsoft-ja.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-ja.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: foken <foken@gmx.com>\n"
|
9 |
"Language: ja_JP\n"
|
@@ -16,608 +16,669 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: bws_functions.php:
|
|
|
20 |
#, fuzzy
|
21 |
msgid "requires"
|
22 |
msgstr "必須フィールド"
|
23 |
|
24 |
-
#: bws_functions.php:
|
25 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: bws_functions.php:
|
29 |
msgid "Back to the WordPress"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: bws_functions.php:
|
33 |
#, fuzzy
|
34 |
msgid "Plugins page"
|
35 |
msgstr "Pro Plugins"
|
36 |
|
37 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
38 |
msgid "It’s time to upgrade your"
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: bws_functions.php:
|
42 |
msgid "to"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: bws_functions.php:
|
46 |
#, fuzzy
|
47 |
msgid "version!"
|
48 |
msgstr "PHP バージョン"
|
49 |
|
50 |
-
#: bws_functions.php:
|
51 |
msgid "Extend standard plugin functionality with new great options."
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: bws_functions.php:
|
55 |
-
#: bws_functions.php:
|
56 |
#, fuzzy
|
57 |
msgid "Learn More"
|
58 |
msgstr "もっと読む"
|
59 |
|
60 |
-
#: bws_functions.php:
|
61 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: bws_functions.php:
|
65 |
#, fuzzy
|
66 |
msgid "Rate the plugin"
|
67 |
msgstr "有効なプラグイン"
|
68 |
|
69 |
-
#: bws_functions.php:
|
70 |
#, fuzzy
|
71 |
msgid "If there is something wrong about it, please contact us"
|
72 |
msgstr "もそご質問がある場合は、以下の方法でご連絡下さい:"
|
73 |
|
74 |
-
#: bws_functions.php:
|
75 |
-
#: bws_functions.php:
|
76 |
msgid "Wrong license key"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: bws_functions.php:
|
80 |
-
#: bws_functions.php:
|
81 |
-
#: bws_functions.php:
|
82 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: bws_functions.php:
|
86 |
-
#: bws_functions.php:
|
87 |
-
#: bws_functions.php:
|
88 |
msgid "We are sorry for inconvenience."
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: bws_functions.php:
|
92 |
msgid "This license key is bind to another site"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: bws_functions.php:
|
96 |
-
#: bws_functions.php:
|
97 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: bws_functions.php:
|
101 |
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: bws_functions.php:
|
105 |
-
msgid "Unfortunately, the
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: bws_functions.php:
|
109 |
-
#: bws_functions.php:
|
110 |
-
#: bws_functions.php:
|
111 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: bws_functions.php:
|
115 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: bws_functions.php:
|
119 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: bws_functions.php:
|
123 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: bws_functions.php:
|
127 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: bws_functions.php:
|
131 |
#, fuzzy
|
132 |
msgid "Please, enter Your license key"
|
133 |
msgstr "メッセージを入力して下さい..."
|
134 |
|
135 |
-
#: bws_functions.php:
|
136 |
-
msgid "Congratulations! The
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: bws_functions.php:
|
140 |
-
#: bws_functions.php:
|
141 |
msgid "Please, go to"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: bws_functions.php:
|
145 |
-
#: bws_functions.php:
|
146 |
#, fuzzy
|
147 |
msgid "the setting page"
|
148 |
msgstr "追加設定"
|
149 |
|
150 |
-
#: bws_functions.php:
|
151 |
-
#: bws_functions.php:
|
152 |
msgid "You will be redirected automatically in 5 seconds."
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: bws_functions.php:
|
156 |
msgid "You can download and activate"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: bws_functions.php:
|
160 |
msgid "version of this plugin by entering Your license key."
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: bws_functions.php:
|
164 |
-
#: bws_functions.php:
|
165 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: bws_functions.php:
|
169 |
-
#: bws_functions.php:
|
170 |
msgid "(your username is the email you specify when purchasing the product)."
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: bws_functions.php:
|
|
|
174 |
msgid "or"
|
175 |
msgstr "又は"
|
176 |
|
177 |
-
#: bws_functions.php:
|
178 |
#, php-format
|
179 |
msgid "Start Your Free %s-Day Trial Now"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: bws_functions.php:
|
183 |
-
#: bws_functions.php:
|
184 |
-
#: bws_functions.php:
|
185 |
-
#: bws_functions.php:
|
186 |
-
#: bws_menu.php:
|
187 |
-
#: bws_menu.php:
|
188 |
#, fuzzy
|
189 |
msgid "Activate"
|
190 |
msgstr "有効なcaptcha"
|
191 |
|
192 |
-
#: bws_functions.php:
|
193 |
-
#: bws_functions.php:
|
194 |
#, php-format
|
195 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: bws_functions.php:
|
199 |
msgid "After that you can activate it by entering your license key."
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: bws_functions.php:
|
203 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: bws_functions.php:
|
207 |
-
msgid "Congratulations! The
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: bws_functions.php:
|
211 |
msgid "Wrong license key."
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: bws_functions.php:
|
215 |
msgid "This license key is bind to another site."
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: bws_functions.php:
|
219 |
msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: bws_functions.php:
|
223 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: bws_functions.php:
|
227 |
-
msgid "Unfortunately, the
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: bws_functions.php:
|
231 |
-
msgid "The
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: bws_functions.php:
|
235 |
msgid "The license key is valid."
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: bws_functions.php:
|
239 |
msgid "Your license will expire on"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: bws_functions.php:
|
243 |
#, fuzzy
|
244 |
msgid "Please, enter your license key"
|
245 |
msgstr "メッセージを入力して下さい..."
|
246 |
|
247 |
-
#: bws_functions.php:
|
248 |
msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: bws_functions.php:
|
252 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: bws_functions.php:
|
256 |
msgid "Check license key"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: bws_functions.php:
|
260 |
msgid "WARNING: Illegal use notification"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: bws_functions.php:
|
264 |
msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: bws_functions.php:
|
268 |
-
msgid "Notice: Your
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: bws_functions.php:
|
272 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: bws_functions.php:
|
276 |
-
#: bws_functions.php:
|
277 |
-
#: bws_menu.php:
|
278 |
-
#: bws_menu.php:
|
279 |
-
#: bws_menu.php:
|
280 |
-
#: bws_menu.php:
|
281 |
-
#: bws_menu.php:
|
282 |
#, fuzzy
|
283 |
msgid "Learn more"
|
284 |
msgstr "もっと読む"
|
285 |
|
286 |
-
#: bws_functions.php:
|
287 |
#, php-format
|
288 |
-
msgid "Notice: You are using the
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: bws_functions.php:
|
292 |
-
msgid "Notice: You are using the
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: bws_functions.php:
|
296 |
-
msgid "The
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: bws_functions.php:
|
300 |
msgid "You license for"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: bws_functions.php:
|
304 |
msgid "expires on"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: bws_functions.php:
|
308 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
312 |
msgid "Close"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: bws_functions.php:
|
316 |
-
#: bws_functions.php:784
|
317 |
msgid "Restore all plugin settings to defaults"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: bws_functions.php:
|
321 |
-
#: bws_functions.php:786
|
322 |
#, fuzzy
|
323 |
msgid "Restore settings"
|
324 |
msgstr "追加設定"
|
325 |
|
326 |
-
#: bws_functions.php:
|
327 |
#, fuzzy
|
328 |
msgid "Are you sure you want to restore all settings by default?"
|
329 |
msgstr "本当に、この言語データを削除しますか?"
|
330 |
|
331 |
-
#: bws_functions.php:
|
332 |
msgid "Yes, restore all settings"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: bws_functions.php:
|
336 |
#, fuzzy
|
337 |
msgid "No, go back to the settings page"
|
338 |
msgstr "追加設定"
|
339 |
|
340 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
341 |
msgid "Not set"
|
342 |
msgstr "未設定"
|
343 |
|
344 |
-
#: bws_menu.php:
|
345 |
-
#: bws_menu.php:
|
346 |
msgid "On"
|
347 |
msgstr "On"
|
348 |
|
349 |
-
#: bws_menu.php:
|
350 |
-
#: bws_menu.php:
|
351 |
msgid "Off"
|
352 |
msgstr "Off"
|
353 |
|
354 |
-
#: bws_menu.php:
|
355 |
-
#: bws_menu.php:
|
356 |
-
#: bws_menu.php:
|
357 |
-
#: bws_menu.php:
|
358 |
-
#: bws_menu.php:
|
359 |
-
#: bws_menu.php:
|
360 |
msgid "N/A"
|
361 |
msgstr "該当なし"
|
362 |
|
363 |
-
#: bws_menu.php:
|
364 |
msgid " Mb"
|
365 |
msgstr " Mb"
|
366 |
|
367 |
-
#: bws_menu.php:
|
368 |
-
#: bws_menu.php:
|
369 |
-
#: bws_menu.php:
|
370 |
-
#: bws_menu.php:
|
371 |
msgid "Yes"
|
372 |
msgstr "はい"
|
373 |
|
374 |
-
#: bws_menu.php:
|
375 |
-
#: bws_menu.php:
|
376 |
-
#: bws_menu.php:
|
377 |
-
#: bws_menu.php:
|
378 |
msgid "No"
|
379 |
msgstr "いいえ"
|
380 |
|
381 |
-
#: bws_menu.php:
|
382 |
msgid "Operating System"
|
383 |
msgstr "オペレーション・システム"
|
384 |
|
385 |
-
#: bws_menu.php:
|
386 |
msgid "Server"
|
387 |
msgstr "サーバ"
|
388 |
|
389 |
-
#: bws_menu.php:
|
390 |
msgid "Memory usage"
|
391 |
msgstr "メモリー使用"
|
392 |
|
393 |
-
#: bws_menu.php:
|
394 |
msgid "MYSQL Version"
|
395 |
msgstr "MYSQL バージョン"
|
396 |
|
397 |
-
#: bws_menu.php:
|
398 |
msgid "SQL Mode"
|
399 |
msgstr "SQLモード"
|
400 |
|
401 |
-
#: bws_menu.php:
|
402 |
msgid "PHP Version"
|
403 |
msgstr "PHP バージョン"
|
404 |
|
405 |
-
#: bws_menu.php:
|
406 |
msgid "PHP Safe Mode"
|
407 |
msgstr "PHP Safe Mode"
|
408 |
|
409 |
-
#: bws_menu.php:
|
410 |
msgid "PHP Allow URL fopen"
|
411 |
msgstr "PHP Allow URL fopen"
|
412 |
|
413 |
-
#: bws_menu.php:
|
414 |
msgid "PHP Memory Limit"
|
415 |
msgstr "PHP Memory Limit"
|
416 |
|
417 |
-
#: bws_menu.php:
|
418 |
msgid "PHP Max Upload Size"
|
419 |
msgstr "PHP Max Upload Size"
|
420 |
|
421 |
-
#: bws_menu.php:
|
422 |
msgid "PHP Max Post Size"
|
423 |
msgstr "PHP Max Post Size"
|
424 |
|
425 |
-
#: bws_menu.php:
|
426 |
msgid "PHP Max Script Execute Time"
|
427 |
msgstr "PHP Max Script Execute Time"
|
428 |
|
429 |
-
#: bws_menu.php:
|
430 |
msgid "PHP Exif support"
|
431 |
msgstr "PHP Exif サポート"
|
432 |
|
433 |
-
#: bws_menu.php:
|
434 |
msgid "PHP IPTC support"
|
435 |
msgstr "PHP IPTC サポート"
|
436 |
|
437 |
-
#: bws_menu.php:
|
438 |
msgid "PHP XML support"
|
439 |
msgstr "PHP XML サポート"
|
440 |
|
441 |
-
#: bws_menu.php:
|
442 |
msgid "Site URL"
|
443 |
msgstr "サイトURL"
|
444 |
|
445 |
-
#: bws_menu.php:
|
446 |
msgid "Home URL"
|
447 |
msgstr "ホームURL"
|
448 |
|
449 |
-
#: bws_menu.php:
|
450 |
msgid "WordPress Version"
|
451 |
msgstr "WordPress バージョン"
|
452 |
|
453 |
-
#: bws_menu.php:
|
454 |
msgid "WordPress DB Version"
|
455 |
msgstr "WordPress データベース バージョン"
|
456 |
|
457 |
-
#: bws_menu.php:
|
458 |
msgid "Multisite"
|
459 |
msgstr "複数サイト"
|
460 |
|
461 |
-
#: bws_menu.php:
|
462 |
msgid "Active Theme"
|
463 |
msgstr "有効なテーマ"
|
464 |
|
465 |
-
#: bws_menu.php:
|
466 |
msgid "Please enter a valid email address."
|
467 |
msgstr "正確なEメール・アドレスを入力して下さい。"
|
468 |
|
469 |
-
#: bws_menu.php:
|
470 |
msgid "Email with system info is sent to "
|
471 |
msgstr "システム情報をメールで送信:"
|
472 |
|
473 |
-
#: bws_menu.php:
|
474 |
msgid "Thank you for contacting us."
|
475 |
msgstr "ご連絡ありがとうございます"
|
476 |
|
477 |
-
#: bws_menu.php:
|
478 |
msgid "Sorry, email message could not be delivered."
|
479 |
msgstr "申し訳ございませんが、貴方のemailは配信できませんでした。"
|
480 |
|
481 |
-
#: bws_menu.php:
|
482 |
msgid "Need help?"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: bws_menu.php:
|
486 |
msgid "Client area"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: bws_menu.php:
|
490 |
-
#: bws_menu.php:
|
491 |
msgid "System status"
|
492 |
msgstr "システム状況"
|
493 |
|
494 |
-
#: bws_menu.php:
|
495 |
#, fuzzy
|
496 |
msgid "Plugins"
|
497 |
msgstr "Pro Plugins"
|
498 |
|
499 |
-
#: bws_menu.php:
|
500 |
msgid "Themes"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: bws_menu.php:
|
504 |
msgid "All"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: bws_menu.php:
|
508 |
#, fuzzy
|
509 |
msgid "Installed"
|
510 |
msgstr "%s 導入"
|
511 |
|
512 |
-
#: bws_menu.php:
|
513 |
#, fuzzy
|
514 |
msgid "Recommended"
|
515 |
msgstr "推奨プラグイン"
|
516 |
|
517 |
-
#: bws_menu.php:
|
518 |
msgid "Installed plugins"
|
519 |
msgstr "導入済みプラグイン"
|
520 |
|
521 |
-
#: bws_menu.php:
|
522 |
-
#: bws_menu.php:
|
523 |
msgid "Settings"
|
524 |
msgstr "設定"
|
525 |
|
526 |
-
#: bws_menu.php:
|
527 |
-
#: bws_menu.php:
|
528 |
#, fuzzy
|
529 |
msgid "Activate this plugin"
|
530 |
msgstr "有効なプラグイン"
|
531 |
|
532 |
-
#: bws_menu.php:
|
533 |
-
#: bws_menu.php:
|
534 |
-
#: bws_menu.php:
|
535 |
msgid "Go"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: bws_menu.php:
|
539 |
-
#: bws_menu.php:
|
540 |
-
#: bws_menu.php:
|
541 |
msgid "DONATE"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: bws_menu.php:
|
545 |
msgid "Recommended plugins"
|
546 |
msgstr "推奨プラグイン"
|
547 |
|
548 |
-
#: bws_menu.php:
|
549 |
#, fuzzy
|
550 |
msgid "Install now"
|
551 |
msgstr "Installa Ora"
|
552 |
|
553 |
-
#: bws_menu.php:
|
554 |
msgid "Try again"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: bws_menu.php:
|
558 |
#, php-format
|
559 |
msgid "Preview “%s”"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: bws_menu.php:
|
563 |
#, php-format
|
564 |
msgid "Install %s"
|
565 |
msgstr "%s 導入"
|
566 |
|
567 |
-
#: bws_menu.php:
|
568 |
msgid "Install Now"
|
569 |
msgstr "Installa Ora"
|
570 |
|
571 |
-
#: bws_menu.php:
|
572 |
#, php-format
|
573 |
msgid "Update to version %s"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: bws_menu.php:
|
577 |
msgid "Update"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: bws_menu.php:
|
581 |
#, php-format
|
582 |
msgid "Preview %s"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: bws_menu.php:
|
586 |
msgid "Preview"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: bws_menu.php:
|
590 |
-
#: bws_menu.php:
|
591 |
#, php-format
|
592 |
msgid "By %s"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: bws_menu.php:
|
596 |
msgid "Details"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: bws_menu.php:
|
600 |
#, fuzzy
|
601 |
msgid "Already Installed"
|
602 |
msgstr "%s 導入"
|
603 |
|
604 |
-
#: bws_menu.php:
|
605 |
msgid "Environment"
|
606 |
msgstr "環境"
|
607 |
|
608 |
-
#: bws_menu.php:
|
609 |
msgid "Active Plugins"
|
610 |
msgstr "有効なプラグイン"
|
611 |
|
612 |
-
#: bws_menu.php:
|
613 |
msgid "Inactive Plugins"
|
614 |
msgstr "無効なプラグイン"
|
615 |
|
616 |
-
#: bws_menu.php:
|
617 |
msgid "Send to support"
|
618 |
msgstr "サポートに送信"
|
619 |
|
620 |
-
#: bws_menu.php:
|
621 |
msgid "Send to custom email »"
|
622 |
msgstr "カスタムEメールに送信»"
|
623 |
|
@@ -658,9 +719,6 @@ msgstr "カスタムEメールに送信»"
|
|
658 |
#~ msgid "installed"
|
659 |
#~ msgstr "%s 導入"
|
660 |
|
661 |
-
#~ msgid "Contact Form Settings"
|
662 |
-
#~ msgstr "コンタクトフォーム設定"
|
663 |
-
|
664 |
#~ msgid "Contact Form"
|
665 |
#~ msgstr "コンタクトフォーム"
|
666 |
|
@@ -946,9 +1004,6 @@ msgstr "カスタムEメールに送信»"
|
|
946 |
#~ msgid "Error message for the whole form"
|
947 |
#~ msgstr "全体フォーム用のエラーメッセージ"
|
948 |
|
949 |
-
#~ msgid "Use shortcode"
|
950 |
-
#~ msgstr "短いコードの利用"
|
951 |
-
|
952 |
#~ msgid "for this language"
|
953 |
#~ msgstr "この言語用"
|
954 |
|
@@ -967,9 +1022,6 @@ msgstr "カスタムEメールに送信»"
|
|
967 |
#~ msgid "Url"
|
968 |
#~ msgstr "Url"
|
969 |
|
970 |
-
#~ msgid "Save Changes"
|
971 |
-
#~ msgstr "変更を保存"
|
972 |
-
|
973 |
#~ msgid "Contact Form Pro | Extra Settings"
|
974 |
#~ msgstr "Contact Form Pro | 追加設定"
|
975 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-17 16:00+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-09-17 16:00+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: foken <foken@gmx.com>\n"
|
9 |
"Language: ja_JP\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: bws_functions.php:29
|
20 |
+
#: bws_functions.php:53
|
21 |
#, fuzzy
|
22 |
msgid "requires"
|
23 |
msgstr "必須フィールド"
|
24 |
|
25 |
+
#: bws_functions.php:31
|
26 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: bws_functions.php:32
|
30 |
msgid "Back to the WordPress"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: bws_functions.php:34
|
34 |
#, fuzzy
|
35 |
msgid "Plugins page"
|
36 |
msgstr "Pro Plugins"
|
37 |
|
38 |
+
#: bws_functions.php:55
|
39 |
+
msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: bws_functions.php:112
|
43 |
msgid "It’s time to upgrade your"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: bws_functions.php:112
|
47 |
msgid "to"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: bws_functions.php:112
|
51 |
#, fuzzy
|
52 |
msgid "version!"
|
53 |
msgstr "PHP バージョン"
|
54 |
|
55 |
+
#: bws_functions.php:113
|
56 |
msgid "Extend standard plugin functionality with new great options."
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: bws_functions.php:116
|
60 |
+
#: bws_functions.php:513
|
61 |
#, fuzzy
|
62 |
msgid "Learn More"
|
63 |
msgstr "もっと読む"
|
64 |
|
65 |
+
#: bws_functions.php:133
|
66 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: bws_functions.php:134
|
70 |
#, fuzzy
|
71 |
msgid "Rate the plugin"
|
72 |
msgstr "有効なプラグイン"
|
73 |
|
74 |
+
#: bws_functions.php:137
|
75 |
#, fuzzy
|
76 |
msgid "If there is something wrong about it, please contact us"
|
77 |
msgstr "もそご質問がある場合は、以下の方法でご連絡下さい:"
|
78 |
|
79 |
+
#: bws_functions.php:154
|
80 |
+
#: bws_functions.php:190
|
81 |
msgid "Wrong license key"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: bws_functions.php:184
|
85 |
+
#: bws_functions.php:426
|
86 |
+
#: bws_functions.php:477
|
87 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: bws_functions.php:184
|
91 |
+
#: bws_functions.php:426
|
92 |
+
#: bws_functions.php:477
|
93 |
msgid "We are sorry for inconvenience."
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: bws_functions.php:192
|
97 |
msgid "This license key is bind to another site"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: bws_functions.php:194
|
101 |
+
#: bws_functions.php:336
|
102 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: bws_functions.php:196
|
106 |
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: bws_functions.php:198
|
110 |
+
msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: bws_functions.php:219
|
114 |
+
#: bws_functions.php:241
|
115 |
+
#: bws_functions.php:263
|
116 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: bws_functions.php:231
|
120 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: bws_functions.php:237
|
124 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: bws_functions.php:244
|
128 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: bws_functions.php:267
|
132 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: bws_functions.php:292
|
136 |
#, fuzzy
|
137 |
msgid "Please, enter Your license key"
|
138 |
msgstr "メッセージを入力して下さい..."
|
139 |
|
140 |
+
#: bws_functions.php:309
|
141 |
+
msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: bws_functions.php:311
|
145 |
+
#: bws_functions.php:393
|
146 |
msgid "Please, go to"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: bws_functions.php:311
|
150 |
+
#: bws_functions.php:393
|
151 |
#, fuzzy
|
152 |
msgid "the setting page"
|
153 |
msgstr "追加設定"
|
154 |
|
155 |
+
#: bws_functions.php:312
|
156 |
+
#: bws_functions.php:394
|
157 |
msgid "You will be redirected automatically in 5 seconds."
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: bws_functions.php:317
|
161 |
msgid "You can download and activate"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: bws_functions.php:319
|
165 |
msgid "version of this plugin by entering Your license key."
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: bws_functions.php:321
|
169 |
+
#: bws_functions.php:362
|
170 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: bws_functions.php:323
|
174 |
+
#: bws_functions.php:364
|
175 |
msgid "(your username is the email you specify when purchasing the product)."
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: bws_functions.php:327
|
179 |
+
#: bws_functions.php:630
|
180 |
msgid "or"
|
181 |
msgstr "又は"
|
182 |
|
183 |
+
#: bws_functions.php:327
|
184 |
#, php-format
|
185 |
msgid "Start Your Free %s-Day Trial Now"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: bws_functions.php:333
|
189 |
+
#: bws_functions.php:342
|
190 |
+
#: bws_functions.php:372
|
191 |
+
#: bws_functions.php:380
|
192 |
+
#: bws_menu.php:693
|
193 |
+
#: bws_menu.php:750
|
194 |
#, fuzzy
|
195 |
msgid "Activate"
|
196 |
msgstr "有効なcaptcha"
|
197 |
|
198 |
+
#: bws_functions.php:359
|
199 |
+
#: bws_functions.php:452
|
200 |
#, php-format
|
201 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: bws_functions.php:360
|
205 |
msgid "After that you can activate it by entering your license key."
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: bws_functions.php:374
|
209 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: bws_functions.php:391
|
213 |
+
msgid "Congratulations! The Pro license of the plugin is successfully activated."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: bws_functions.php:432
|
217 |
msgid "Wrong license key."
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: bws_functions.php:434
|
221 |
msgid "This license key is bind to another site."
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: bws_functions.php:436
|
225 |
msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: bws_functions.php:438
|
229 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: bws_functions.php:440
|
233 |
+
msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: bws_functions.php:444
|
237 |
+
msgid "The Pro Trial license key is valid."
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: bws_functions.php:446
|
241 |
msgid "The license key is valid."
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: bws_functions.php:449
|
245 |
msgid "Your license will expire on"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: bws_functions.php:482
|
249 |
#, fuzzy
|
250 |
msgid "Please, enter your license key"
|
251 |
msgstr "メッセージを入力して下さい..."
|
252 |
|
253 |
+
#: bws_functions.php:495
|
254 |
msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: bws_functions.php:495
|
258 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: bws_functions.php:499
|
262 |
msgid "Check license key"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: bws_functions.php:513
|
266 |
msgid "WARNING: Illegal use notification"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: bws_functions.php:513
|
270 |
msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: bws_functions.php:521
|
274 |
+
msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: bws_functions.php:523
|
278 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: bws_functions.php:523
|
282 |
+
#: bws_functions.php:576
|
283 |
+
#: bws_menu.php:669
|
284 |
+
#: bws_menu.php:691
|
285 |
+
#: bws_menu.php:718
|
286 |
+
#: bws_menu.php:748
|
287 |
+
#: bws_menu.php:794
|
288 |
#, fuzzy
|
289 |
msgid "Learn more"
|
290 |
msgstr "もっと読む"
|
291 |
|
292 |
+
#: bws_functions.php:533
|
293 |
#, php-format
|
294 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: bws_functions.php:535
|
298 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: bws_functions.php:538
|
302 |
+
msgid "The Pro Trial license will expire on"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: bws_functions.php:576
|
306 |
msgid "You license for"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: bws_functions.php:576
|
310 |
msgid "expires on"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: bws_functions.php:576
|
314 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: bws_functions.php:626
|
318 |
+
#, fuzzy
|
319 |
+
msgid "Thank you for installing"
|
320 |
+
msgstr "ご連絡ありがとうございます"
|
321 |
+
|
322 |
+
#: bws_functions.php:627
|
323 |
+
msgid "Let's get started"
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
#: bws_functions.php:628
|
327 |
+
#, fuzzy
|
328 |
+
msgid "Configure Settings"
|
329 |
+
msgstr "コンタクトフォーム設定"
|
330 |
+
|
331 |
+
#: bws_functions.php:631
|
332 |
+
msgid "Add New"
|
333 |
+
msgstr ""
|
334 |
+
|
335 |
+
#: bws_functions.php:635
|
336 |
+
msgid "Close notice"
|
337 |
+
msgstr ""
|
338 |
+
|
339 |
+
#: bws_functions.php:648
|
340 |
+
msgid "Notice"
|
341 |
+
msgstr ""
|
342 |
+
|
343 |
+
#: bws_functions.php:648
|
344 |
+
msgid "The plugin's settings have been changed."
|
345 |
+
msgstr ""
|
346 |
+
|
347 |
+
#: bws_functions.php:649
|
348 |
+
msgid "Save Changes"
|
349 |
+
msgstr "変更を保存"
|
350 |
+
|
351 |
+
#: bws_functions.php:694
|
352 |
+
#, fuzzy
|
353 |
+
msgid "Add BWS Plugins Shortcode"
|
354 |
+
msgstr "短いコードの利用"
|
355 |
+
|
356 |
+
#: bws_functions.php:738
|
357 |
msgid "Close"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: bws_functions.php:829
|
|
|
361 |
msgid "Restore all plugin settings to defaults"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: bws_functions.php:831
|
|
|
365 |
#, fuzzy
|
366 |
msgid "Restore settings"
|
367 |
msgstr "追加設定"
|
368 |
|
369 |
+
#: bws_functions.php:842
|
370 |
#, fuzzy
|
371 |
msgid "Are you sure you want to restore all settings by default?"
|
372 |
msgstr "本当に、この言語データを削除しますか?"
|
373 |
|
374 |
+
#: bws_functions.php:845
|
375 |
msgid "Yes, restore all settings"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: bws_functions.php:846
|
379 |
#, fuzzy
|
380 |
msgid "No, go back to the settings page"
|
381 |
msgstr "追加設定"
|
382 |
|
383 |
+
#: bws_functions.php:890
|
384 |
+
#, fuzzy
|
385 |
+
msgid "Plugin"
|
386 |
+
msgstr "Pro Plugins"
|
387 |
+
|
388 |
+
#: bws_functions.php:899
|
389 |
+
#, fuzzy
|
390 |
+
msgid "Shortcode settings"
|
391 |
+
msgstr "追加設定"
|
392 |
+
|
393 |
+
#: bws_functions.php:904
|
394 |
+
msgid "The shortcode will be inserted"
|
395 |
+
msgstr ""
|
396 |
+
|
397 |
+
#: bws_functions.php:909
|
398 |
+
msgid "Insert"
|
399 |
+
msgstr ""
|
400 |
+
|
401 |
+
#: bws_menu.php:506
|
402 |
msgid "Not set"
|
403 |
msgstr "未設定"
|
404 |
|
405 |
+
#: bws_menu.php:508
|
406 |
+
#: bws_menu.php:509
|
407 |
msgid "On"
|
408 |
msgstr "On"
|
409 |
|
410 |
+
#: bws_menu.php:508
|
411 |
+
#: bws_menu.php:509
|
412 |
msgid "Off"
|
413 |
msgstr "Off"
|
414 |
|
415 |
+
#: bws_menu.php:510
|
416 |
+
#: bws_menu.php:511
|
417 |
+
#: bws_menu.php:512
|
418 |
+
#: bws_menu.php:513
|
419 |
+
#: bws_menu.php:514
|
420 |
+
#: bws_menu.php:526
|
421 |
msgid "N/A"
|
422 |
msgstr "該当なし"
|
423 |
|
424 |
+
#: bws_menu.php:514
|
425 |
msgid " Mb"
|
426 |
msgstr " Mb"
|
427 |
|
428 |
+
#: bws_menu.php:515
|
429 |
+
#: bws_menu.php:516
|
430 |
+
#: bws_menu.php:517
|
431 |
+
#: bws_menu.php:522
|
432 |
msgid "Yes"
|
433 |
msgstr "はい"
|
434 |
|
435 |
+
#: bws_menu.php:515
|
436 |
+
#: bws_menu.php:516
|
437 |
+
#: bws_menu.php:517
|
438 |
+
#: bws_menu.php:524
|
439 |
msgid "No"
|
440 |
msgstr "いいえ"
|
441 |
|
442 |
+
#: bws_menu.php:534
|
443 |
msgid "Operating System"
|
444 |
msgstr "オペレーション・システム"
|
445 |
|
446 |
+
#: bws_menu.php:535
|
447 |
msgid "Server"
|
448 |
msgstr "サーバ"
|
449 |
|
450 |
+
#: bws_menu.php:536
|
451 |
msgid "Memory usage"
|
452 |
msgstr "メモリー使用"
|
453 |
|
454 |
+
#: bws_menu.php:537
|
455 |
msgid "MYSQL Version"
|
456 |
msgstr "MYSQL バージョン"
|
457 |
|
458 |
+
#: bws_menu.php:538
|
459 |
msgid "SQL Mode"
|
460 |
msgstr "SQLモード"
|
461 |
|
462 |
+
#: bws_menu.php:539
|
463 |
msgid "PHP Version"
|
464 |
msgstr "PHP バージョン"
|
465 |
|
466 |
+
#: bws_menu.php:540
|
467 |
msgid "PHP Safe Mode"
|
468 |
msgstr "PHP Safe Mode"
|
469 |
|
470 |
+
#: bws_menu.php:541
|
471 |
msgid "PHP Allow URL fopen"
|
472 |
msgstr "PHP Allow URL fopen"
|
473 |
|
474 |
+
#: bws_menu.php:542
|
475 |
msgid "PHP Memory Limit"
|
476 |
msgstr "PHP Memory Limit"
|
477 |
|
478 |
+
#: bws_menu.php:543
|
479 |
msgid "PHP Max Upload Size"
|
480 |
msgstr "PHP Max Upload Size"
|
481 |
|
482 |
+
#: bws_menu.php:544
|
483 |
msgid "PHP Max Post Size"
|
484 |
msgstr "PHP Max Post Size"
|
485 |
|
486 |
+
#: bws_menu.php:545
|
487 |
msgid "PHP Max Script Execute Time"
|
488 |
msgstr "PHP Max Script Execute Time"
|
489 |
|
490 |
+
#: bws_menu.php:546
|
491 |
msgid "PHP Exif support"
|
492 |
msgstr "PHP Exif サポート"
|
493 |
|
494 |
+
#: bws_menu.php:547
|
495 |
msgid "PHP IPTC support"
|
496 |
msgstr "PHP IPTC サポート"
|
497 |
|
498 |
+
#: bws_menu.php:548
|
499 |
msgid "PHP XML support"
|
500 |
msgstr "PHP XML サポート"
|
501 |
|
502 |
+
#: bws_menu.php:549
|
503 |
msgid "Site URL"
|
504 |
msgstr "サイトURL"
|
505 |
|
506 |
+
#: bws_menu.php:550
|
507 |
msgid "Home URL"
|
508 |
msgstr "ホームURL"
|
509 |
|
510 |
+
#: bws_menu.php:553
|
511 |
msgid "WordPress Version"
|
512 |
msgstr "WordPress バージョン"
|
513 |
|
514 |
+
#: bws_menu.php:554
|
515 |
msgid "WordPress DB Version"
|
516 |
msgstr "WordPress データベース バージョン"
|
517 |
|
518 |
+
#: bws_menu.php:555
|
519 |
msgid "Multisite"
|
520 |
msgstr "複数サイト"
|
521 |
|
522 |
+
#: bws_menu.php:556
|
523 |
msgid "Active Theme"
|
524 |
msgstr "有効なテーマ"
|
525 |
|
526 |
+
#: bws_menu.php:571
|
527 |
msgid "Please enter a valid email address."
|
528 |
msgstr "正確なEメール・アドレスを入力して下さい。"
|
529 |
|
530 |
+
#: bws_menu.php:575
|
531 |
msgid "Email with system info is sent to "
|
532 |
msgstr "システム情報をメールで送信:"
|
533 |
|
534 |
+
#: bws_menu.php:579
|
535 |
msgid "Thank you for contacting us."
|
536 |
msgstr "ご連絡ありがとうございます"
|
537 |
|
538 |
+
#: bws_menu.php:612
|
539 |
msgid "Sorry, email message could not be delivered."
|
540 |
msgstr "申し訳ございませんが、貴方のemailは配信できませんでした。"
|
541 |
|
542 |
+
#: bws_menu.php:620
|
543 |
msgid "Need help?"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: bws_menu.php:621
|
547 |
msgid "Client area"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: bws_menu.php:622
|
551 |
+
#: bws_menu.php:933
|
552 |
msgid "System status"
|
553 |
msgstr "システム状況"
|
554 |
|
555 |
+
#: bws_menu.php:627
|
556 |
#, fuzzy
|
557 |
msgid "Plugins"
|
558 |
msgstr "Pro Plugins"
|
559 |
|
560 |
+
#: bws_menu.php:629
|
561 |
msgid "Themes"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: bws_menu.php:634
|
565 |
msgid "All"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: bws_menu.php:635
|
569 |
#, fuzzy
|
570 |
msgid "Installed"
|
571 |
msgstr "%s 導入"
|
572 |
|
573 |
+
#: bws_menu.php:636
|
574 |
#, fuzzy
|
575 |
msgid "Recommended"
|
576 |
msgstr "推奨プラグイン"
|
577 |
|
578 |
+
#: bws_menu.php:640
|
579 |
msgid "Installed plugins"
|
580 |
msgstr "導入済みプラグイン"
|
581 |
|
582 |
+
#: bws_menu.php:672
|
583 |
+
#: bws_menu.php:721
|
584 |
msgid "Settings"
|
585 |
msgstr "設定"
|
586 |
|
587 |
+
#: bws_menu.php:693
|
588 |
+
#: bws_menu.php:750
|
589 |
#, fuzzy
|
590 |
msgid "Activate this plugin"
|
591 |
msgstr "有効なプラグイン"
|
592 |
|
593 |
+
#: bws_menu.php:708
|
594 |
+
#: bws_menu.php:738
|
595 |
+
#: bws_menu.php:784
|
596 |
msgid "Go"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: bws_menu.php:712
|
600 |
+
#: bws_menu.php:742
|
601 |
+
#: bws_menu.php:788
|
602 |
msgid "DONATE"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: bws_menu.php:758
|
606 |
msgid "Recommended plugins"
|
607 |
msgstr "推奨プラグイン"
|
608 |
|
609 |
+
#: bws_menu.php:796
|
610 |
#, fuzzy
|
611 |
msgid "Install now"
|
612 |
msgstr "Installa Ora"
|
613 |
|
614 |
+
#: bws_menu.php:817
|
615 |
msgid "Try again"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: bws_menu.php:835
|
619 |
#, php-format
|
620 |
msgid "Preview “%s”"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: bws_menu.php:866
|
624 |
#, php-format
|
625 |
msgid "Install %s"
|
626 |
msgstr "%s 導入"
|
627 |
|
628 |
+
#: bws_menu.php:866
|
629 |
msgid "Install Now"
|
630 |
msgstr "Installa Ora"
|
631 |
|
632 |
+
#: bws_menu.php:869
|
633 |
#, php-format
|
634 |
msgid "Update to version %s"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: bws_menu.php:869
|
638 |
msgid "Update"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: bws_menu.php:876
|
642 |
#, php-format
|
643 |
msgid "Preview %s"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: bws_menu.php:876
|
647 |
msgid "Preview"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: bws_menu.php:882
|
651 |
+
#: bws_menu.php:914
|
652 |
#, php-format
|
653 |
msgid "By %s"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: bws_menu.php:888
|
657 |
msgid "Details"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: bws_menu.php:920
|
661 |
#, fuzzy
|
662 |
msgid "Already Installed"
|
663 |
msgstr "%s 導入"
|
664 |
|
665 |
+
#: bws_menu.php:936
|
666 |
msgid "Environment"
|
667 |
msgstr "環境"
|
668 |
|
669 |
+
#: bws_menu.php:947
|
670 |
msgid "Active Plugins"
|
671 |
msgstr "有効なプラグイン"
|
672 |
|
673 |
+
#: bws_menu.php:960
|
674 |
msgid "Inactive Plugins"
|
675 |
msgstr "無効なプラグイン"
|
676 |
|
677 |
+
#: bws_menu.php:976
|
678 |
msgid "Send to support"
|
679 |
msgstr "サポートに送信"
|
680 |
|
681 |
+
#: bws_menu.php:983
|
682 |
msgid "Send to custom email »"
|
683 |
msgstr "カスタムEメールに送信»"
|
684 |
|
719 |
#~ msgid "installed"
|
720 |
#~ msgstr "%s 導入"
|
721 |
|
|
|
|
|
|
|
722 |
#~ msgid "Contact Form"
|
723 |
#~ msgstr "コンタクトフォーム"
|
724 |
|
1004 |
#~ msgid "Error message for the whole form"
|
1005 |
#~ msgstr "全体フォーム用のエラーメッセージ"
|
1006 |
|
|
|
|
|
|
|
1007 |
#~ msgid "for this language"
|
1008 |
#~ msgstr "この言語用"
|
1009 |
|
1022 |
#~ msgid "Url"
|
1023 |
#~ msgstr "Url"
|
1024 |
|
|
|
|
|
|
|
1025 |
#~ msgid "Contact Form Pro | Extra Settings"
|
1026 |
#~ msgstr "Contact Form Pro | 追加設定"
|
1027 |
|
bws_menu/languages/bestwebsoft-pt_BR.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-pt_BR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Dionizio Bonfim Bach | DJIO <wordpress@djio.com.br>\n"
|
9 |
"Language: pt_BR\n"
|
@@ -18,658 +18,722 @@ msgstr ""
|
|
18 |
"X-Textdomain-Support: yes\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: bws_functions.php:
|
|
|
22 |
msgid "requires"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: bws_functions.php:
|
26 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: bws_functions.php:
|
30 |
msgid "Back to the WordPress"
|
31 |
msgstr ""
|
32 |
|
33 |
# @ captcha
|
34 |
-
#: bws_functions.php:
|
35 |
#, fuzzy
|
36 |
msgid "Plugins page"
|
37 |
msgstr "Plugins Pro"
|
38 |
|
39 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
40 |
msgid "It’s time to upgrade your"
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: bws_functions.php:
|
44 |
msgid "to"
|
45 |
msgstr ""
|
46 |
|
47 |
# @ captcha
|
48 |
-
#: bws_functions.php:
|
49 |
#, fuzzy
|
50 |
msgid "version!"
|
51 |
msgstr "Versão do PHP"
|
52 |
|
53 |
-
#: bws_functions.php:
|
54 |
msgid "Extend standard plugin functionality with new great options."
|
55 |
msgstr ""
|
56 |
|
57 |
# @ captcha
|
58 |
-
#: bws_functions.php:
|
59 |
-
#: bws_functions.php:
|
60 |
#, fuzzy
|
61 |
msgid "Learn More"
|
62 |
msgstr "Leia Mais"
|
63 |
|
64 |
-
#: bws_functions.php:
|
65 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
66 |
msgstr ""
|
67 |
|
68 |
# @ captcha
|
69 |
-
#: bws_functions.php:
|
70 |
#, fuzzy
|
71 |
msgid "Rate the plugin"
|
72 |
msgstr "Plugins ativados"
|
73 |
|
74 |
# @ captcha
|
75 |
-
#: bws_functions.php:
|
76 |
#, fuzzy
|
77 |
msgid "If there is something wrong about it, please contact us"
|
78 |
msgstr "Se você tiver quaisquer perguntas, por favor entre em contato via"
|
79 |
|
80 |
-
#: bws_functions.php:
|
81 |
-
#: bws_functions.php:
|
82 |
msgid "Wrong license key"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: bws_functions.php:
|
86 |
-
#: bws_functions.php:
|
87 |
-
#: bws_functions.php:
|
88 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: bws_functions.php:
|
92 |
-
#: bws_functions.php:
|
93 |
-
#: bws_functions.php:
|
94 |
msgid "We are sorry for inconvenience."
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: bws_functions.php:
|
98 |
msgid "This license key is bind to another site"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: bws_functions.php:
|
102 |
-
#: bws_functions.php:
|
103 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: bws_functions.php:
|
107 |
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: bws_functions.php:
|
111 |
-
msgid "Unfortunately, the
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: bws_functions.php:
|
115 |
-
#: bws_functions.php:
|
116 |
-
#: bws_functions.php:
|
117 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: bws_functions.php:
|
121 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: bws_functions.php:
|
125 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: bws_functions.php:
|
129 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: bws_functions.php:
|
133 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: bws_functions.php:
|
137 |
msgid "Please, enter Your license key"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: bws_functions.php:
|
141 |
-
msgid "Congratulations! The
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: bws_functions.php:
|
145 |
-
#: bws_functions.php:
|
146 |
msgid "Please, go to"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: bws_functions.php:
|
150 |
-
#: bws_functions.php:
|
151 |
msgid "the setting page"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: bws_functions.php:
|
155 |
-
#: bws_functions.php:
|
156 |
msgid "You will be redirected automatically in 5 seconds."
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: bws_functions.php:
|
160 |
msgid "You can download and activate"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: bws_functions.php:
|
164 |
msgid "version of this plugin by entering Your license key."
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: bws_functions.php:
|
168 |
-
#: bws_functions.php:
|
169 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: bws_functions.php:
|
173 |
-
#: bws_functions.php:
|
174 |
msgid "(your username is the email you specify when purchasing the product)."
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: bws_functions.php:
|
|
|
178 |
msgid "or"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: bws_functions.php:
|
182 |
#, php-format
|
183 |
msgid "Start Your Free %s-Day Trial Now"
|
184 |
msgstr ""
|
185 |
|
186 |
# @ captcha
|
187 |
-
#: bws_functions.php:
|
188 |
-
#: bws_functions.php:
|
189 |
-
#: bws_functions.php:
|
190 |
-
#: bws_functions.php:
|
191 |
-
#: bws_menu.php:
|
192 |
-
#: bws_menu.php:
|
193 |
#, fuzzy
|
194 |
msgid "Activate"
|
195 |
msgstr "Plugins ativados"
|
196 |
|
197 |
-
#: bws_functions.php:
|
198 |
-
#: bws_functions.php:
|
199 |
#, php-format
|
200 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: bws_functions.php:
|
204 |
msgid "After that you can activate it by entering your license key."
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: bws_functions.php:
|
208 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: bws_functions.php:
|
212 |
-
msgid "Congratulations! The
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: bws_functions.php:
|
216 |
msgid "Wrong license key."
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: bws_functions.php:
|
220 |
msgid "This license key is bind to another site."
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: bws_functions.php:
|
224 |
msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: bws_functions.php:
|
228 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: bws_functions.php:
|
232 |
-
msgid "Unfortunately, the
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: bws_functions.php:
|
236 |
-
msgid "The
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: bws_functions.php:
|
240 |
msgid "The license key is valid."
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: bws_functions.php:
|
244 |
msgid "Your license will expire on"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: bws_functions.php:
|
248 |
msgid "Please, enter your license key"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: bws_functions.php:
|
252 |
msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: bws_functions.php:
|
256 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: bws_functions.php:
|
260 |
msgid "Check license key"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: bws_functions.php:
|
264 |
msgid "WARNING: Illegal use notification"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: bws_functions.php:
|
268 |
msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: bws_functions.php:
|
272 |
-
msgid "Notice: Your
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: bws_functions.php:
|
276 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
277 |
msgstr ""
|
278 |
|
279 |
# @ captcha
|
280 |
-
#: bws_functions.php:
|
281 |
-
#: bws_functions.php:
|
282 |
-
#: bws_menu.php:
|
283 |
-
#: bws_menu.php:
|
284 |
-
#: bws_menu.php:
|
285 |
-
#: bws_menu.php:
|
286 |
-
#: bws_menu.php:
|
287 |
#, fuzzy
|
288 |
msgid "Learn more"
|
289 |
msgstr "Leia Mais"
|
290 |
|
291 |
-
#: bws_functions.php:
|
292 |
#, php-format
|
293 |
-
msgid "Notice: You are using the
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: bws_functions.php:
|
297 |
-
msgid "Notice: You are using the
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: bws_functions.php:
|
301 |
-
msgid "The
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: bws_functions.php:
|
305 |
msgid "You license for"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: bws_functions.php:
|
309 |
msgid "expires on"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: bws_functions.php:
|
313 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
314 |
msgstr ""
|
315 |
|
316 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
317 |
msgid "Close"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: bws_functions.php:
|
321 |
-
#: bws_functions.php:784
|
322 |
msgid "Restore all plugin settings to defaults"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: bws_functions.php:
|
326 |
-
#: bws_functions.php:786
|
327 |
msgid "Restore settings"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: bws_functions.php:
|
331 |
msgid "Are you sure you want to restore all settings by default?"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: bws_functions.php:
|
335 |
msgid "Yes, restore all settings"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: bws_functions.php:
|
339 |
msgid "No, go back to the settings page"
|
340 |
msgstr ""
|
341 |
|
342 |
# @ captcha
|
343 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
344 |
msgid "Not set"
|
345 |
msgstr "Não definido"
|
346 |
|
347 |
# @ captcha
|
348 |
-
#: bws_menu.php:
|
349 |
-
#: bws_menu.php:
|
350 |
msgid "On"
|
351 |
msgstr "Ligado"
|
352 |
|
353 |
# @ captcha
|
354 |
-
#: bws_menu.php:
|
355 |
-
#: bws_menu.php:
|
356 |
msgid "Off"
|
357 |
msgstr "Desligado"
|
358 |
|
359 |
# @ captcha
|
360 |
-
#: bws_menu.php:
|
361 |
-
#: bws_menu.php:
|
362 |
-
#: bws_menu.php:
|
363 |
-
#: bws_menu.php:
|
364 |
-
#: bws_menu.php:
|
365 |
-
#: bws_menu.php:
|
366 |
msgid "N/A"
|
367 |
msgstr "N/D"
|
368 |
|
369 |
# @ captcha
|
370 |
-
#: bws_menu.php:
|
371 |
msgid " Mb"
|
372 |
msgstr " Mb"
|
373 |
|
374 |
# @ captcha
|
375 |
-
#: bws_menu.php:
|
376 |
-
#: bws_menu.php:
|
377 |
-
#: bws_menu.php:
|
378 |
-
#: bws_menu.php:
|
379 |
msgid "Yes"
|
380 |
msgstr "Sim"
|
381 |
|
382 |
# @ captcha
|
383 |
-
#: bws_menu.php:
|
384 |
-
#: bws_menu.php:
|
385 |
-
#: bws_menu.php:
|
386 |
-
#: bws_menu.php:
|
387 |
msgid "No"
|
388 |
msgstr "Não"
|
389 |
|
390 |
# @ captcha
|
391 |
-
#: bws_menu.php:
|
392 |
msgid "Operating System"
|
393 |
msgstr "Sistema Operacional"
|
394 |
|
395 |
# @ captcha
|
396 |
-
#: bws_menu.php:
|
397 |
msgid "Server"
|
398 |
msgstr "Servidor"
|
399 |
|
400 |
# @ captcha
|
401 |
-
#: bws_menu.php:
|
402 |
msgid "Memory usage"
|
403 |
msgstr "Uso de memória"
|
404 |
|
405 |
# @ captcha
|
406 |
-
#: bws_menu.php:
|
407 |
msgid "MYSQL Version"
|
408 |
msgstr "Versão do MySQL"
|
409 |
|
410 |
# @ captcha
|
411 |
-
#: bws_menu.php:
|
412 |
msgid "SQL Mode"
|
413 |
msgstr "Modo SQL"
|
414 |
|
415 |
# @ captcha
|
416 |
-
#: bws_menu.php:
|
417 |
msgid "PHP Version"
|
418 |
msgstr "Versão do PHP"
|
419 |
|
420 |
# @ captcha
|
421 |
-
#: bws_menu.php:
|
422 |
msgid "PHP Safe Mode"
|
423 |
msgstr "Modo de Segurança do PHP"
|
424 |
|
425 |
# @ captcha
|
426 |
-
#: bws_menu.php:
|
427 |
msgid "PHP Allow URL fopen"
|
428 |
msgstr "Permissão de fopen de URL do PHP"
|
429 |
|
430 |
# @ captcha
|
431 |
-
#: bws_menu.php:
|
432 |
msgid "PHP Memory Limit"
|
433 |
msgstr "Limite de Memória do PHP"
|
434 |
|
435 |
# @ captcha
|
436 |
-
#: bws_menu.php:
|
437 |
msgid "PHP Max Upload Size"
|
438 |
msgstr "Tamanho Máximo de Upload no PHP"
|
439 |
|
440 |
# @ captcha
|
441 |
-
#: bws_menu.php:
|
442 |
msgid "PHP Max Post Size"
|
443 |
msgstr "Tamanho Máximo de Envio do PHP"
|
444 |
|
445 |
# @ captcha
|
446 |
-
#: bws_menu.php:
|
447 |
msgid "PHP Max Script Execute Time"
|
448 |
msgstr "Tempo de Execução Máximo do PHP"
|
449 |
|
450 |
# @ captcha
|
451 |
-
#: bws_menu.php:
|
452 |
msgid "PHP Exif support"
|
453 |
msgstr "Suporte a Exif no PHP"
|
454 |
|
455 |
# @ captcha
|
456 |
-
#: bws_menu.php:
|
457 |
msgid "PHP IPTC support"
|
458 |
msgstr "Suporte da IPTC no PHP"
|
459 |
|
460 |
# @ captcha
|
461 |
-
#: bws_menu.php:
|
462 |
msgid "PHP XML support"
|
463 |
msgstr "Suporte a XML no PHP"
|
464 |
|
465 |
# @ captcha
|
466 |
-
#: bws_menu.php:
|
467 |
msgid "Site URL"
|
468 |
msgstr "URL do Site"
|
469 |
|
470 |
# @ captcha
|
471 |
-
#: bws_menu.php:
|
472 |
msgid "Home URL"
|
473 |
msgstr "URL da Página Inicial"
|
474 |
|
475 |
# @ captcha
|
476 |
-
#: bws_menu.php:
|
477 |
msgid "WordPress Version"
|
478 |
msgstr "Versão do WordPress"
|
479 |
|
480 |
# @ captcha
|
481 |
-
#: bws_menu.php:
|
482 |
msgid "WordPress DB Version"
|
483 |
msgstr "Versão do DB do WordPress"
|
484 |
|
485 |
# @ captcha
|
486 |
-
#: bws_menu.php:
|
487 |
msgid "Multisite"
|
488 |
msgstr "Multisite"
|
489 |
|
490 |
# @ captcha
|
491 |
-
#: bws_menu.php:
|
492 |
msgid "Active Theme"
|
493 |
msgstr "Tema Ativo"
|
494 |
|
495 |
# @ captcha
|
496 |
-
#: bws_menu.php:
|
497 |
msgid "Please enter a valid email address."
|
498 |
msgstr "Por favor, informe um endereço de email válido."
|
499 |
|
500 |
# @ captcha
|
501 |
-
#: bws_menu.php:
|
502 |
msgid "Email with system info is sent to "
|
503 |
msgstr "Email com informações do sistema é enviado para "
|
504 |
|
505 |
# @ captcha
|
506 |
-
#: bws_menu.php:
|
507 |
msgid "Thank you for contacting us."
|
508 |
msgstr "Obrigado por nos contatar."
|
509 |
|
510 |
# @ captcha
|
511 |
-
#: bws_menu.php:
|
512 |
msgid "Sorry, email message could not be delivered."
|
513 |
msgstr "Desculpe, a mensagem de email não pôde ser enviada."
|
514 |
|
515 |
-
#: bws_menu.php:
|
516 |
msgid "Need help?"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: bws_menu.php:
|
520 |
msgid "Client area"
|
521 |
msgstr ""
|
522 |
|
523 |
# @ captcha
|
524 |
-
#: bws_menu.php:
|
525 |
-
#: bws_menu.php:
|
526 |
msgid "System status"
|
527 |
msgstr "Status do sistema"
|
528 |
|
529 |
# @ captcha
|
530 |
-
#: bws_menu.php:
|
531 |
#, fuzzy
|
532 |
msgid "Plugins"
|
533 |
msgstr "Plugins Pro"
|
534 |
|
535 |
-
#: bws_menu.php:
|
536 |
msgid "Themes"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: bws_menu.php:
|
540 |
msgid "All"
|
541 |
msgstr ""
|
542 |
|
543 |
# @ default
|
544 |
-
#: bws_menu.php:
|
545 |
#, fuzzy
|
546 |
msgid "Installed"
|
547 |
msgstr "Instalar %s"
|
548 |
|
549 |
# @ captcha
|
550 |
-
#: bws_menu.php:
|
551 |
#, fuzzy
|
552 |
msgid "Recommended"
|
553 |
msgstr "Plugins Recomendados"
|
554 |
|
555 |
# @ captcha
|
556 |
-
#: bws_menu.php:
|
557 |
msgid "Installed plugins"
|
558 |
msgstr "Plugins Instalados"
|
559 |
|
560 |
# @ captcha
|
561 |
-
#: bws_menu.php:
|
562 |
-
#: bws_menu.php:
|
563 |
msgid "Settings"
|
564 |
msgstr "Configurações"
|
565 |
|
566 |
# @ captcha
|
567 |
-
#: bws_menu.php:
|
568 |
-
#: bws_menu.php:
|
569 |
#, fuzzy
|
570 |
msgid "Activate this plugin"
|
571 |
msgstr "Plugins ativados"
|
572 |
|
573 |
-
#: bws_menu.php:
|
574 |
-
#: bws_menu.php:
|
575 |
-
#: bws_menu.php:
|
576 |
msgid "Go"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: bws_menu.php:
|
580 |
-
#: bws_menu.php:
|
581 |
-
#: bws_menu.php:
|
582 |
msgid "DONATE"
|
583 |
msgstr ""
|
584 |
|
585 |
# @ captcha
|
586 |
-
#: bws_menu.php:
|
587 |
msgid "Recommended plugins"
|
588 |
msgstr "Plugins Recomendados"
|
589 |
|
590 |
# @ default
|
591 |
-
#: bws_menu.php:
|
592 |
#, fuzzy
|
593 |
msgid "Install now"
|
594 |
msgstr "Instalar %s"
|
595 |
|
596 |
-
#: bws_menu.php:
|
597 |
msgid "Try again"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: bws_menu.php:
|
601 |
#, php-format
|
602 |
msgid "Preview “%s”"
|
603 |
msgstr ""
|
604 |
|
605 |
# @ default
|
606 |
-
#: bws_menu.php:
|
607 |
#, php-format
|
608 |
msgid "Install %s"
|
609 |
msgstr "Instalar %s"
|
610 |
|
611 |
# @ default
|
612 |
-
#: bws_menu.php:
|
613 |
#, fuzzy
|
614 |
msgid "Install Now"
|
615 |
msgstr "Instalar %s"
|
616 |
|
617 |
-
#: bws_menu.php:
|
618 |
#, php-format
|
619 |
msgid "Update to version %s"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: bws_menu.php:
|
623 |
msgid "Update"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: bws_menu.php:
|
627 |
#, php-format
|
628 |
msgid "Preview %s"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: bws_menu.php:
|
632 |
msgid "Preview"
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: bws_menu.php:
|
636 |
-
#: bws_menu.php:
|
637 |
#, php-format
|
638 |
msgid "By %s"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: bws_menu.php:
|
642 |
msgid "Details"
|
643 |
msgstr ""
|
644 |
|
645 |
# @ default
|
646 |
-
#: bws_menu.php:
|
647 |
#, fuzzy
|
648 |
msgid "Already Installed"
|
649 |
msgstr "Instalar %s"
|
650 |
|
651 |
# @ captcha
|
652 |
-
#: bws_menu.php:
|
653 |
msgid "Environment"
|
654 |
msgstr "Ambiente"
|
655 |
|
656 |
# @ captcha
|
657 |
-
#: bws_menu.php:
|
658 |
msgid "Active Plugins"
|
659 |
msgstr "Plugins Ativos"
|
660 |
|
661 |
# @ captcha
|
662 |
-
#: bws_menu.php:
|
663 |
msgid "Inactive Plugins"
|
664 |
msgstr "Plugins Inativos"
|
665 |
|
666 |
# @ captcha
|
667 |
-
#: bws_menu.php:
|
668 |
msgid "Send to support"
|
669 |
msgstr "Enviar para o suporte"
|
670 |
|
671 |
# @ captcha
|
672 |
-
#: bws_menu.php:
|
673 |
msgid "Send to custom email »"
|
674 |
msgstr "Enviar para email personalizado »"
|
675 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-17 16:00+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-09-17 16:00+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Dionizio Bonfim Bach | DJIO <wordpress@djio.com.br>\n"
|
9 |
"Language: pt_BR\n"
|
18 |
"X-Textdomain-Support: yes\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: bws_functions.php:29
|
22 |
+
#: bws_functions.php:53
|
23 |
msgid "requires"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: bws_functions.php:31
|
27 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: bws_functions.php:32
|
31 |
msgid "Back to the WordPress"
|
32 |
msgstr ""
|
33 |
|
34 |
# @ captcha
|
35 |
+
#: bws_functions.php:34
|
36 |
#, fuzzy
|
37 |
msgid "Plugins page"
|
38 |
msgstr "Plugins Pro"
|
39 |
|
40 |
+
#: bws_functions.php:55
|
41 |
+
msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
#: bws_functions.php:112
|
45 |
msgid "It’s time to upgrade your"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: bws_functions.php:112
|
49 |
msgid "to"
|
50 |
msgstr ""
|
51 |
|
52 |
# @ captcha
|
53 |
+
#: bws_functions.php:112
|
54 |
#, fuzzy
|
55 |
msgid "version!"
|
56 |
msgstr "Versão do PHP"
|
57 |
|
58 |
+
#: bws_functions.php:113
|
59 |
msgid "Extend standard plugin functionality with new great options."
|
60 |
msgstr ""
|
61 |
|
62 |
# @ captcha
|
63 |
+
#: bws_functions.php:116
|
64 |
+
#: bws_functions.php:513
|
65 |
#, fuzzy
|
66 |
msgid "Learn More"
|
67 |
msgstr "Leia Mais"
|
68 |
|
69 |
+
#: bws_functions.php:133
|
70 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
71 |
msgstr ""
|
72 |
|
73 |
# @ captcha
|
74 |
+
#: bws_functions.php:134
|
75 |
#, fuzzy
|
76 |
msgid "Rate the plugin"
|
77 |
msgstr "Plugins ativados"
|
78 |
|
79 |
# @ captcha
|
80 |
+
#: bws_functions.php:137
|
81 |
#, fuzzy
|
82 |
msgid "If there is something wrong about it, please contact us"
|
83 |
msgstr "Se você tiver quaisquer perguntas, por favor entre em contato via"
|
84 |
|
85 |
+
#: bws_functions.php:154
|
86 |
+
#: bws_functions.php:190
|
87 |
msgid "Wrong license key"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: bws_functions.php:184
|
91 |
+
#: bws_functions.php:426
|
92 |
+
#: bws_functions.php:477
|
93 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: bws_functions.php:184
|
97 |
+
#: bws_functions.php:426
|
98 |
+
#: bws_functions.php:477
|
99 |
msgid "We are sorry for inconvenience."
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: bws_functions.php:192
|
103 |
msgid "This license key is bind to another site"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: bws_functions.php:194
|
107 |
+
#: bws_functions.php:336
|
108 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: bws_functions.php:196
|
112 |
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: bws_functions.php:198
|
116 |
+
msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: bws_functions.php:219
|
120 |
+
#: bws_functions.php:241
|
121 |
+
#: bws_functions.php:263
|
122 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: bws_functions.php:231
|
126 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: bws_functions.php:237
|
130 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: bws_functions.php:244
|
134 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: bws_functions.php:267
|
138 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: bws_functions.php:292
|
142 |
msgid "Please, enter Your license key"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: bws_functions.php:309
|
146 |
+
msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: bws_functions.php:311
|
150 |
+
#: bws_functions.php:393
|
151 |
msgid "Please, go to"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: bws_functions.php:311
|
155 |
+
#: bws_functions.php:393
|
156 |
msgid "the setting page"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: bws_functions.php:312
|
160 |
+
#: bws_functions.php:394
|
161 |
msgid "You will be redirected automatically in 5 seconds."
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: bws_functions.php:317
|
165 |
msgid "You can download and activate"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: bws_functions.php:319
|
169 |
msgid "version of this plugin by entering Your license key."
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: bws_functions.php:321
|
173 |
+
#: bws_functions.php:362
|
174 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: bws_functions.php:323
|
178 |
+
#: bws_functions.php:364
|
179 |
msgid "(your username is the email you specify when purchasing the product)."
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: bws_functions.php:327
|
183 |
+
#: bws_functions.php:630
|
184 |
msgid "or"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: bws_functions.php:327
|
188 |
#, php-format
|
189 |
msgid "Start Your Free %s-Day Trial Now"
|
190 |
msgstr ""
|
191 |
|
192 |
# @ captcha
|
193 |
+
#: bws_functions.php:333
|
194 |
+
#: bws_functions.php:342
|
195 |
+
#: bws_functions.php:372
|
196 |
+
#: bws_functions.php:380
|
197 |
+
#: bws_menu.php:693
|
198 |
+
#: bws_menu.php:750
|
199 |
#, fuzzy
|
200 |
msgid "Activate"
|
201 |
msgstr "Plugins ativados"
|
202 |
|
203 |
+
#: bws_functions.php:359
|
204 |
+
#: bws_functions.php:452
|
205 |
#, php-format
|
206 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: bws_functions.php:360
|
210 |
msgid "After that you can activate it by entering your license key."
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: bws_functions.php:374
|
214 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: bws_functions.php:391
|
218 |
+
msgid "Congratulations! The Pro license of the plugin is successfully activated."
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: bws_functions.php:432
|
222 |
msgid "Wrong license key."
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: bws_functions.php:434
|
226 |
msgid "This license key is bind to another site."
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: bws_functions.php:436
|
230 |
msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: bws_functions.php:438
|
234 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: bws_functions.php:440
|
238 |
+
msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: bws_functions.php:444
|
242 |
+
msgid "The Pro Trial license key is valid."
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: bws_functions.php:446
|
246 |
msgid "The license key is valid."
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: bws_functions.php:449
|
250 |
msgid "Your license will expire on"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: bws_functions.php:482
|
254 |
msgid "Please, enter your license key"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: bws_functions.php:495
|
258 |
msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: bws_functions.php:495
|
262 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: bws_functions.php:499
|
266 |
msgid "Check license key"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: bws_functions.php:513
|
270 |
msgid "WARNING: Illegal use notification"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: bws_functions.php:513
|
274 |
msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: bws_functions.php:521
|
278 |
+
msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: bws_functions.php:523
|
282 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
283 |
msgstr ""
|
284 |
|
285 |
# @ captcha
|
286 |
+
#: bws_functions.php:523
|
287 |
+
#: bws_functions.php:576
|
288 |
+
#: bws_menu.php:669
|
289 |
+
#: bws_menu.php:691
|
290 |
+
#: bws_menu.php:718
|
291 |
+
#: bws_menu.php:748
|
292 |
+
#: bws_menu.php:794
|
293 |
#, fuzzy
|
294 |
msgid "Learn more"
|
295 |
msgstr "Leia Mais"
|
296 |
|
297 |
+
#: bws_functions.php:533
|
298 |
#, php-format
|
299 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: bws_functions.php:535
|
303 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: bws_functions.php:538
|
307 |
+
msgid "The Pro Trial license will expire on"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: bws_functions.php:576
|
311 |
msgid "You license for"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: bws_functions.php:576
|
315 |
msgid "expires on"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: bws_functions.php:576
|
319 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
320 |
msgstr ""
|
321 |
|
322 |
+
# @ captcha
|
323 |
+
#: bws_functions.php:626
|
324 |
+
#, fuzzy
|
325 |
+
msgid "Thank you for installing"
|
326 |
+
msgstr "Obrigado por nos contatar."
|
327 |
+
|
328 |
+
#: bws_functions.php:627
|
329 |
+
msgid "Let's get started"
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
+
# @ captcha
|
333 |
+
#: bws_functions.php:628
|
334 |
+
#, fuzzy
|
335 |
+
msgid "Configure Settings"
|
336 |
+
msgstr "Configurações"
|
337 |
+
|
338 |
+
#: bws_functions.php:631
|
339 |
+
msgid "Add New"
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
#: bws_functions.php:635
|
343 |
+
msgid "Close notice"
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
+
#: bws_functions.php:648
|
347 |
+
msgid "Notice"
|
348 |
+
msgstr ""
|
349 |
+
|
350 |
+
#: bws_functions.php:648
|
351 |
+
msgid "The plugin's settings have been changed."
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#: bws_functions.php:649
|
355 |
+
msgid "Save Changes"
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: bws_functions.php:694
|
359 |
+
msgid "Add BWS Plugins Shortcode"
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: bws_functions.php:738
|
363 |
msgid "Close"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: bws_functions.php:829
|
|
|
367 |
msgid "Restore all plugin settings to defaults"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: bws_functions.php:831
|
|
|
371 |
msgid "Restore settings"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: bws_functions.php:842
|
375 |
msgid "Are you sure you want to restore all settings by default?"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: bws_functions.php:845
|
379 |
msgid "Yes, restore all settings"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: bws_functions.php:846
|
383 |
msgid "No, go back to the settings page"
|
384 |
msgstr ""
|
385 |
|
386 |
# @ captcha
|
387 |
+
#: bws_functions.php:890
|
388 |
+
#, fuzzy
|
389 |
+
msgid "Plugin"
|
390 |
+
msgstr "Plugins Pro"
|
391 |
+
|
392 |
+
# @ captcha
|
393 |
+
#: bws_functions.php:899
|
394 |
+
#, fuzzy
|
395 |
+
msgid "Shortcode settings"
|
396 |
+
msgstr "Configurações"
|
397 |
+
|
398 |
+
#: bws_functions.php:904
|
399 |
+
msgid "The shortcode will be inserted"
|
400 |
+
msgstr ""
|
401 |
+
|
402 |
+
#: bws_functions.php:909
|
403 |
+
msgid "Insert"
|
404 |
+
msgstr ""
|
405 |
+
|
406 |
+
# @ captcha
|
407 |
+
#: bws_menu.php:506
|
408 |
msgid "Not set"
|
409 |
msgstr "Não definido"
|
410 |
|
411 |
# @ captcha
|
412 |
+
#: bws_menu.php:508
|
413 |
+
#: bws_menu.php:509
|
414 |
msgid "On"
|
415 |
msgstr "Ligado"
|
416 |
|
417 |
# @ captcha
|
418 |
+
#: bws_menu.php:508
|
419 |
+
#: bws_menu.php:509
|
420 |
msgid "Off"
|
421 |
msgstr "Desligado"
|
422 |
|
423 |
# @ captcha
|
424 |
+
#: bws_menu.php:510
|
425 |
+
#: bws_menu.php:511
|
426 |
+
#: bws_menu.php:512
|
427 |
+
#: bws_menu.php:513
|
428 |
+
#: bws_menu.php:514
|
429 |
+
#: bws_menu.php:526
|
430 |
msgid "N/A"
|
431 |
msgstr "N/D"
|
432 |
|
433 |
# @ captcha
|
434 |
+
#: bws_menu.php:514
|
435 |
msgid " Mb"
|
436 |
msgstr " Mb"
|
437 |
|
438 |
# @ captcha
|
439 |
+
#: bws_menu.php:515
|
440 |
+
#: bws_menu.php:516
|
441 |
+
#: bws_menu.php:517
|
442 |
+
#: bws_menu.php:522
|
443 |
msgid "Yes"
|
444 |
msgstr "Sim"
|
445 |
|
446 |
# @ captcha
|
447 |
+
#: bws_menu.php:515
|
448 |
+
#: bws_menu.php:516
|
449 |
+
#: bws_menu.php:517
|
450 |
+
#: bws_menu.php:524
|
451 |
msgid "No"
|
452 |
msgstr "Não"
|
453 |
|
454 |
# @ captcha
|
455 |
+
#: bws_menu.php:534
|
456 |
msgid "Operating System"
|
457 |
msgstr "Sistema Operacional"
|
458 |
|
459 |
# @ captcha
|
460 |
+
#: bws_menu.php:535
|
461 |
msgid "Server"
|
462 |
msgstr "Servidor"
|
463 |
|
464 |
# @ captcha
|
465 |
+
#: bws_menu.php:536
|
466 |
msgid "Memory usage"
|
467 |
msgstr "Uso de memória"
|
468 |
|
469 |
# @ captcha
|
470 |
+
#: bws_menu.php:537
|
471 |
msgid "MYSQL Version"
|
472 |
msgstr "Versão do MySQL"
|
473 |
|
474 |
# @ captcha
|
475 |
+
#: bws_menu.php:538
|
476 |
msgid "SQL Mode"
|
477 |
msgstr "Modo SQL"
|
478 |
|
479 |
# @ captcha
|
480 |
+
#: bws_menu.php:539
|
481 |
msgid "PHP Version"
|
482 |
msgstr "Versão do PHP"
|
483 |
|
484 |
# @ captcha
|
485 |
+
#: bws_menu.php:540
|
486 |
msgid "PHP Safe Mode"
|
487 |
msgstr "Modo de Segurança do PHP"
|
488 |
|
489 |
# @ captcha
|
490 |
+
#: bws_menu.php:541
|
491 |
msgid "PHP Allow URL fopen"
|
492 |
msgstr "Permissão de fopen de URL do PHP"
|
493 |
|
494 |
# @ captcha
|
495 |
+
#: bws_menu.php:542
|
496 |
msgid "PHP Memory Limit"
|
497 |
msgstr "Limite de Memória do PHP"
|
498 |
|
499 |
# @ captcha
|
500 |
+
#: bws_menu.php:543
|
501 |
msgid "PHP Max Upload Size"
|
502 |
msgstr "Tamanho Máximo de Upload no PHP"
|
503 |
|
504 |
# @ captcha
|
505 |
+
#: bws_menu.php:544
|
506 |
msgid "PHP Max Post Size"
|
507 |
msgstr "Tamanho Máximo de Envio do PHP"
|
508 |
|
509 |
# @ captcha
|
510 |
+
#: bws_menu.php:545
|
511 |
msgid "PHP Max Script Execute Time"
|
512 |
msgstr "Tempo de Execução Máximo do PHP"
|
513 |
|
514 |
# @ captcha
|
515 |
+
#: bws_menu.php:546
|
516 |
msgid "PHP Exif support"
|
517 |
msgstr "Suporte a Exif no PHP"
|
518 |
|
519 |
# @ captcha
|
520 |
+
#: bws_menu.php:547
|
521 |
msgid "PHP IPTC support"
|
522 |
msgstr "Suporte da IPTC no PHP"
|
523 |
|
524 |
# @ captcha
|
525 |
+
#: bws_menu.php:548
|
526 |
msgid "PHP XML support"
|
527 |
msgstr "Suporte a XML no PHP"
|
528 |
|
529 |
# @ captcha
|
530 |
+
#: bws_menu.php:549
|
531 |
msgid "Site URL"
|
532 |
msgstr "URL do Site"
|
533 |
|
534 |
# @ captcha
|
535 |
+
#: bws_menu.php:550
|
536 |
msgid "Home URL"
|
537 |
msgstr "URL da Página Inicial"
|
538 |
|
539 |
# @ captcha
|
540 |
+
#: bws_menu.php:553
|
541 |
msgid "WordPress Version"
|
542 |
msgstr "Versão do WordPress"
|
543 |
|
544 |
# @ captcha
|
545 |
+
#: bws_menu.php:554
|
546 |
msgid "WordPress DB Version"
|
547 |
msgstr "Versão do DB do WordPress"
|
548 |
|
549 |
# @ captcha
|
550 |
+
#: bws_menu.php:555
|
551 |
msgid "Multisite"
|
552 |
msgstr "Multisite"
|
553 |
|
554 |
# @ captcha
|
555 |
+
#: bws_menu.php:556
|
556 |
msgid "Active Theme"
|
557 |
msgstr "Tema Ativo"
|
558 |
|
559 |
# @ captcha
|
560 |
+
#: bws_menu.php:571
|
561 |
msgid "Please enter a valid email address."
|
562 |
msgstr "Por favor, informe um endereço de email válido."
|
563 |
|
564 |
# @ captcha
|
565 |
+
#: bws_menu.php:575
|
566 |
msgid "Email with system info is sent to "
|
567 |
msgstr "Email com informações do sistema é enviado para "
|
568 |
|
569 |
# @ captcha
|
570 |
+
#: bws_menu.php:579
|
571 |
msgid "Thank you for contacting us."
|
572 |
msgstr "Obrigado por nos contatar."
|
573 |
|
574 |
# @ captcha
|
575 |
+
#: bws_menu.php:612
|
576 |
msgid "Sorry, email message could not be delivered."
|
577 |
msgstr "Desculpe, a mensagem de email não pôde ser enviada."
|
578 |
|
579 |
+
#: bws_menu.php:620
|
580 |
msgid "Need help?"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: bws_menu.php:621
|
584 |
msgid "Client area"
|
585 |
msgstr ""
|
586 |
|
587 |
# @ captcha
|
588 |
+
#: bws_menu.php:622
|
589 |
+
#: bws_menu.php:933
|
590 |
msgid "System status"
|
591 |
msgstr "Status do sistema"
|
592 |
|
593 |
# @ captcha
|
594 |
+
#: bws_menu.php:627
|
595 |
#, fuzzy
|
596 |
msgid "Plugins"
|
597 |
msgstr "Plugins Pro"
|
598 |
|
599 |
+
#: bws_menu.php:629
|
600 |
msgid "Themes"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: bws_menu.php:634
|
604 |
msgid "All"
|
605 |
msgstr ""
|
606 |
|
607 |
# @ default
|
608 |
+
#: bws_menu.php:635
|
609 |
#, fuzzy
|
610 |
msgid "Installed"
|
611 |
msgstr "Instalar %s"
|
612 |
|
613 |
# @ captcha
|
614 |
+
#: bws_menu.php:636
|
615 |
#, fuzzy
|
616 |
msgid "Recommended"
|
617 |
msgstr "Plugins Recomendados"
|
618 |
|
619 |
# @ captcha
|
620 |
+
#: bws_menu.php:640
|
621 |
msgid "Installed plugins"
|
622 |
msgstr "Plugins Instalados"
|
623 |
|
624 |
# @ captcha
|
625 |
+
#: bws_menu.php:672
|
626 |
+
#: bws_menu.php:721
|
627 |
msgid "Settings"
|
628 |
msgstr "Configurações"
|
629 |
|
630 |
# @ captcha
|
631 |
+
#: bws_menu.php:693
|
632 |
+
#: bws_menu.php:750
|
633 |
#, fuzzy
|
634 |
msgid "Activate this plugin"
|
635 |
msgstr "Plugins ativados"
|
636 |
|
637 |
+
#: bws_menu.php:708
|
638 |
+
#: bws_menu.php:738
|
639 |
+
#: bws_menu.php:784
|
640 |
msgid "Go"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: bws_menu.php:712
|
644 |
+
#: bws_menu.php:742
|
645 |
+
#: bws_menu.php:788
|
646 |
msgid "DONATE"
|
647 |
msgstr ""
|
648 |
|
649 |
# @ captcha
|
650 |
+
#: bws_menu.php:758
|
651 |
msgid "Recommended plugins"
|
652 |
msgstr "Plugins Recomendados"
|
653 |
|
654 |
# @ default
|
655 |
+
#: bws_menu.php:796
|
656 |
#, fuzzy
|
657 |
msgid "Install now"
|
658 |
msgstr "Instalar %s"
|
659 |
|
660 |
+
#: bws_menu.php:817
|
661 |
msgid "Try again"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: bws_menu.php:835
|
665 |
#, php-format
|
666 |
msgid "Preview “%s”"
|
667 |
msgstr ""
|
668 |
|
669 |
# @ default
|
670 |
+
#: bws_menu.php:866
|
671 |
#, php-format
|
672 |
msgid "Install %s"
|
673 |
msgstr "Instalar %s"
|
674 |
|
675 |
# @ default
|
676 |
+
#: bws_menu.php:866
|
677 |
#, fuzzy
|
678 |
msgid "Install Now"
|
679 |
msgstr "Instalar %s"
|
680 |
|
681 |
+
#: bws_menu.php:869
|
682 |
#, php-format
|
683 |
msgid "Update to version %s"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: bws_menu.php:869
|
687 |
msgid "Update"
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: bws_menu.php:876
|
691 |
#, php-format
|
692 |
msgid "Preview %s"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: bws_menu.php:876
|
696 |
msgid "Preview"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: bws_menu.php:882
|
700 |
+
#: bws_menu.php:914
|
701 |
#, php-format
|
702 |
msgid "By %s"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: bws_menu.php:888
|
706 |
msgid "Details"
|
707 |
msgstr ""
|
708 |
|
709 |
# @ default
|
710 |
+
#: bws_menu.php:920
|
711 |
#, fuzzy
|
712 |
msgid "Already Installed"
|
713 |
msgstr "Instalar %s"
|
714 |
|
715 |
# @ captcha
|
716 |
+
#: bws_menu.php:936
|
717 |
msgid "Environment"
|
718 |
msgstr "Ambiente"
|
719 |
|
720 |
# @ captcha
|
721 |
+
#: bws_menu.php:947
|
722 |
msgid "Active Plugins"
|
723 |
msgstr "Plugins Ativos"
|
724 |
|
725 |
# @ captcha
|
726 |
+
#: bws_menu.php:960
|
727 |
msgid "Inactive Plugins"
|
728 |
msgstr "Plugins Inativos"
|
729 |
|
730 |
# @ captcha
|
731 |
+
#: bws_menu.php:976
|
732 |
msgid "Send to support"
|
733 |
msgstr "Enviar para o suporte"
|
734 |
|
735 |
# @ captcha
|
736 |
+
#: bws_menu.php:983
|
737 |
msgid "Send to custom email »"
|
738 |
msgstr "Enviar para email personalizado »"
|
739 |
|
bws_menu/languages/bestwebsoft-ru_RU.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-ru_RU.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
@@ -16,591 +16,650 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: bws_functions.php:
|
|
|
20 |
msgid "requires"
|
21 |
msgstr "требует"
|
22 |
|
23 |
-
#: bws_functions.php:
|
24 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
25 |
msgstr "или выше, поэтому он был деактивирован! Пожалуйста, обновите WordPress и попробуйте еще раз."
|
26 |
|
27 |
-
#: bws_functions.php:
|
28 |
msgid "Back to the WordPress"
|
29 |
msgstr "Вернуться к WordPress на"
|
30 |
|
31 |
-
#: bws_functions.php:
|
32 |
msgid "Plugins page"
|
33 |
msgstr "Страницу плагинов"
|
34 |
|
35 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
36 |
msgid "It’s time to upgrade your"
|
37 |
msgstr "Настало время обновить Ваш"
|
38 |
|
39 |
-
#: bws_functions.php:
|
40 |
msgid "to"
|
41 |
msgstr "до"
|
42 |
|
43 |
-
#: bws_functions.php:
|
44 |
msgid "version!"
|
45 |
msgstr "версии!"
|
46 |
|
47 |
-
#: bws_functions.php:
|
48 |
msgid "Extend standard plugin functionality with new great options."
|
49 |
msgstr "Расширяет возможности стандартного функционала плагина."
|
50 |
|
51 |
-
#: bws_functions.php:
|
52 |
-
#: bws_functions.php:
|
53 |
msgid "Learn More"
|
54 |
msgstr "Подробнее"
|
55 |
|
56 |
-
#: bws_functions.php:
|
57 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
58 |
msgstr "Если вам понравился плагин, пожалуйста, поставьте нам 5 звезд на WordPress"
|
59 |
|
60 |
-
#: bws_functions.php:
|
61 |
msgid "Rate the plugin"
|
62 |
msgstr "Оценить плагин"
|
63 |
|
64 |
-
#: bws_functions.php:
|
65 |
msgid "If there is something wrong about it, please contact us"
|
66 |
msgstr "Если у вас есть какие-то вопросы, обращайтесь"
|
67 |
|
68 |
-
#: bws_functions.php:
|
69 |
-
#: bws_functions.php:
|
70 |
msgid "Wrong license key"
|
71 |
msgstr "Неправильный лицензионный ключ"
|
72 |
|
73 |
-
#: bws_functions.php:
|
74 |
-
#: bws_functions.php:
|
75 |
-
#: bws_functions.php:
|
76 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
77 |
msgstr "Что-то пошло не так. Повторите попытку позже. Если ошибка появится снова, пожалуйста, свяжитесь с нами"
|
78 |
|
79 |
-
#: bws_functions.php:
|
80 |
-
#: bws_functions.php:
|
81 |
-
#: bws_functions.php:
|
82 |
msgid "We are sorry for inconvenience."
|
83 |
msgstr "Приносим извинения за неудобства."
|
84 |
|
85 |
-
#: bws_functions.php:
|
86 |
msgid "This license key is bind to another site"
|
87 |
msgstr "Этот лицензионный ключ привязан к другому сайту"
|
88 |
|
89 |
-
#: bws_functions.php:
|
90 |
-
#: bws_functions.php:
|
91 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
92 |
msgstr "К сожалению, вы превысили количество доступных попыток в день. Пожалуйста, загрузите плагин вручную."
|
93 |
|
94 |
-
#: bws_functions.php:
|
95 |
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
96 |
msgstr "К сожалению, время использования вашей лицензии истекло. Для получения обновлений приоритетного саппорта вам нужно продлить лицензию перейдя на вашей"
|
97 |
|
98 |
-
#: bws_functions.php:
|
99 |
-
msgid "Unfortunately, the
|
100 |
-
msgstr "К сожалению,
|
101 |
|
102 |
-
#: bws_functions.php:
|
103 |
-
#: bws_functions.php:
|
104 |
-
#: bws_functions.php:
|
105 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
106 |
msgstr "Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
|
107 |
|
108 |
-
#: bws_functions.php:
|
109 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
110 |
msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
|
111 |
|
112 |
-
#: bws_functions.php:
|
113 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
114 |
msgstr "Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. Пожалуйста, загрузите плагин вручную"
|
115 |
|
116 |
-
#: bws_functions.php:
|
117 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
118 |
msgstr "Папка загрузки не доступна для записи. Пожалуйста, загрузите плагин вручную"
|
119 |
|
120 |
-
#: bws_functions.php:
|
121 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
122 |
msgstr "Что-то пошло не так. Повторите попытку позже или загрузите плагин вручную. Приносим извинения за неудобства."
|
123 |
|
124 |
-
#: bws_functions.php:
|
125 |
msgid "Please, enter Your license key"
|
126 |
msgstr "Пожалуйста, введите ваш лицензионный ключ"
|
127 |
|
128 |
-
#: bws_functions.php:
|
129 |
-
msgid "Congratulations! The
|
130 |
-
msgstr "Поздравляем!
|
131 |
|
132 |
-
#: bws_functions.php:
|
133 |
-
#: bws_functions.php:
|
134 |
msgid "Please, go to"
|
135 |
msgstr "Пожалуйста, перейдите на"
|
136 |
|
137 |
-
#: bws_functions.php:
|
138 |
-
#: bws_functions.php:
|
139 |
msgid "the setting page"
|
140 |
msgstr "страницу настроек"
|
141 |
|
142 |
-
#: bws_functions.php:
|
143 |
-
#: bws_functions.php:
|
144 |
msgid "You will be redirected automatically in 5 seconds."
|
145 |
msgstr "Вы будете перенаправлены автоматически через 5 секунд."
|
146 |
|
147 |
-
#: bws_functions.php:
|
148 |
msgid "You can download and activate"
|
149 |
msgstr "Вы можете скачать и активировать"
|
150 |
|
151 |
-
#: bws_functions.php:
|
152 |
msgid "version of this plugin by entering Your license key."
|
153 |
msgstr "версию этого плагина, введя ваш лицензионный ключ."
|
154 |
|
155 |
-
#: bws_functions.php:
|
156 |
-
#: bws_functions.php:
|
157 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
158 |
msgstr "Вы можете найти ваш лицензионный ключ на вашей личной странице Client area, нажав на ссылку"
|
159 |
|
160 |
-
#: bws_functions.php:
|
161 |
-
#: bws_functions.php:
|
162 |
msgid "(your username is the email you specify when purchasing the product)."
|
163 |
msgstr "(ваше имя пользователя - это электронный адрес, указанный при покупке продукта)."
|
164 |
|
165 |
-
#: bws_functions.php:
|
|
|
166 |
msgid "or"
|
167 |
msgstr "или"
|
168 |
|
169 |
-
#: bws_functions.php:
|
170 |
#, php-format
|
171 |
msgid "Start Your Free %s-Day Trial Now"
|
172 |
msgstr "Попробуйте %s-дневную Trial версию бесплатно"
|
173 |
|
174 |
-
#: bws_functions.php:
|
175 |
-
#: bws_functions.php:
|
176 |
-
#: bws_functions.php:
|
177 |
-
#: bws_functions.php:
|
178 |
-
#: bws_menu.php:
|
179 |
-
#: bws_menu.php:
|
180 |
msgid "Activate"
|
181 |
msgstr "Активировать"
|
182 |
|
183 |
-
#: bws_functions.php:
|
184 |
-
#: bws_functions.php:
|
185 |
#, php-format
|
186 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
187 |
msgstr "Чтобы продолжить пользоваться плагином, необходимо приобрести %s лицензию."
|
188 |
|
189 |
-
#: bws_functions.php:
|
190 |
msgid "After that you can activate it by entering your license key."
|
191 |
msgstr "После этого вы сможете активировать его введя лицензионный ключ."
|
192 |
|
193 |
-
#: bws_functions.php:
|
194 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
195 |
msgstr "К сожалению, вы превысили количество доступных попыток."
|
196 |
|
197 |
-
#: bws_functions.php:
|
198 |
-
msgid "Congratulations! The
|
199 |
-
msgstr "Поздравляем!
|
200 |
|
201 |
-
#: bws_functions.php:
|
202 |
msgid "Wrong license key."
|
203 |
msgstr "Неправильный лицензионный ключ."
|
204 |
|
205 |
-
#: bws_functions.php:
|
206 |
msgid "This license key is bind to another site."
|
207 |
msgstr "Этот лицензионный ключ привязан к другому сайту."
|
208 |
|
209 |
-
#: bws_functions.php:
|
210 |
msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
|
211 |
msgstr "Лицензионный ключ принят, но срок действия лицензии истек. Если вы хотите обновлять плагин в будущем, вы должны продлить лицензию."
|
212 |
|
213 |
-
#: bws_functions.php:
|
214 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
215 |
msgstr "К сожалению, вы превысили количество доступных попыток."
|
216 |
|
217 |
-
#: bws_functions.php:
|
218 |
-
msgid "Unfortunately, the
|
219 |
-
msgstr "К сожалению,
|
220 |
|
221 |
-
#: bws_functions.php:
|
222 |
-
msgid "The
|
223 |
-
msgstr "Ключ
|
224 |
|
225 |
-
#: bws_functions.php:
|
226 |
msgid "The license key is valid."
|
227 |
msgstr "Лицензионный ключ действителен."
|
228 |
|
229 |
-
#: bws_functions.php:
|
230 |
msgid "Your license will expire on"
|
231 |
msgstr "Ваша лицензия истечет"
|
232 |
|
233 |
-
#: bws_functions.php:
|
234 |
msgid "Please, enter your license key"
|
235 |
msgstr "Пожалуйста, введите Ваш лицензионный ключ"
|
236 |
|
237 |
-
#: bws_functions.php:
|
238 |
msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
|
239 |
msgstr "При необходимости вы можете проверить валидность лицензионного ключа или повторно ввести его в поле ниже. Вы можете найти ваш лицензионный ключ на своей личной странице - Client area - на нашем сайте"
|
240 |
|
241 |
-
#: bws_functions.php:
|
242 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
243 |
-
msgstr "(ваш пользователь это емейл, который вы указывали при покупке продукта). При необходимости нажмите \"
|
244 |
|
245 |
-
#: bws_functions.php:
|
246 |
msgid "Check license key"
|
247 |
msgstr "Проверка лицензионного ключа"
|
248 |
|
249 |
-
#: bws_functions.php:
|
250 |
msgid "WARNING: Illegal use notification"
|
251 |
msgstr "ВНИМАНИЕ: уведомление о незаконном использовании"
|
252 |
|
253 |
-
#: bws_functions.php:
|
254 |
msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
|
255 |
msgstr "Вы можете использовать одну лицензию Pro плагина только для одного домена. Пожалуйста, проверьте и отредактируйте при необходимости лицензию или домен, используя Ваш личный Client Area. Мы настоятельно рекомендуем вам решить проблему в течение 24 часов, в противном случае плагин будет деактивирован."
|
256 |
|
257 |
-
#: bws_functions.php:
|
258 |
-
msgid "Notice: Your
|
259 |
-
msgstr "Внимание: Срок действия
|
260 |
|
261 |
-
#: bws_functions.php:
|
262 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
263 |
msgstr "Время использования вашей лицензии истекло. Если вы хотите обновлять ваш плагин в дальнейшем и иметь приоритетную тех.поддержку, то вам нужно продлить лицензию."
|
264 |
|
265 |
-
#: bws_functions.php:
|
266 |
-
#: bws_functions.php:
|
267 |
-
#: bws_menu.php:
|
268 |
-
#: bws_menu.php:
|
269 |
-
#: bws_menu.php:
|
270 |
-
#: bws_menu.php:
|
271 |
-
#: bws_menu.php:
|
272 |
msgid "Learn more"
|
273 |
msgstr "Подробнее"
|
274 |
|
275 |
-
#: bws_functions.php:
|
276 |
#, php-format
|
277 |
-
msgid "Notice: You are using the
|
278 |
-
msgstr "Внимание: Вы используете
|
279 |
|
280 |
-
#: bws_functions.php:
|
281 |
-
msgid "Notice: You are using the
|
282 |
-
msgstr "Внимание: Вы используете
|
283 |
|
284 |
-
#: bws_functions.php:
|
285 |
-
msgid "The
|
286 |
-
msgstr "Ваша лицензия
|
287 |
|
288 |
-
#: bws_functions.php:
|
289 |
msgid "You license for"
|
290 |
msgstr "Ваш лицензионный ключ для"
|
291 |
|
292 |
-
#: bws_functions.php:
|
293 |
msgid "expires on"
|
294 |
msgstr "истекает"
|
295 |
|
296 |
-
#: bws_functions.php:
|
297 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
298 |
msgstr "и вы не будете получать приоритетную тех.поддержку или обновления."
|
299 |
|
300 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
301 |
msgid "Close"
|
302 |
msgstr "Закрыть"
|
303 |
|
304 |
-
#: bws_functions.php:
|
305 |
-
#: bws_functions.php:784
|
306 |
msgid "Restore all plugin settings to defaults"
|
307 |
-
msgstr "Восстановить все настройки плагина к настройкам
|
308 |
|
309 |
-
#: bws_functions.php:
|
310 |
-
#: bws_functions.php:786
|
311 |
msgid "Restore settings"
|
312 |
msgstr "Восстановить настройки"
|
313 |
|
314 |
-
#: bws_functions.php:
|
315 |
msgid "Are you sure you want to restore all settings by default?"
|
316 |
-
msgstr "Вы уверены что хотите восстановить все настройки плагина к настройкам
|
317 |
|
318 |
-
#: bws_functions.php:
|
319 |
msgid "Yes, restore all settings"
|
320 |
msgstr "Да, восстановить все настройки"
|
321 |
|
322 |
-
#: bws_functions.php:
|
323 |
msgid "No, go back to the settings page"
|
324 |
-
msgstr "Нет,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
325 |
|
326 |
-
#:
|
|
|
|
|
|
|
|
|
327 |
msgid "Not set"
|
328 |
msgstr "Не задан"
|
329 |
|
330 |
-
#: bws_menu.php:
|
331 |
-
#: bws_menu.php:
|
332 |
msgid "On"
|
333 |
msgstr "Вкл"
|
334 |
|
335 |
-
#: bws_menu.php:
|
336 |
-
#: bws_menu.php:
|
337 |
msgid "Off"
|
338 |
msgstr "Выкл"
|
339 |
|
340 |
-
#: bws_menu.php:
|
341 |
-
#: bws_menu.php:
|
342 |
-
#: bws_menu.php:
|
343 |
-
#: bws_menu.php:
|
344 |
-
#: bws_menu.php:
|
345 |
-
#: bws_menu.php:
|
346 |
msgid "N/A"
|
347 |
msgstr "Неизвестно"
|
348 |
|
349 |
-
#: bws_menu.php:
|
350 |
msgid " Mb"
|
351 |
msgstr "Mb"
|
352 |
|
353 |
-
#: bws_menu.php:
|
354 |
-
#: bws_menu.php:
|
355 |
-
#: bws_menu.php:
|
356 |
-
#: bws_menu.php:
|
357 |
msgid "Yes"
|
358 |
msgstr "Да"
|
359 |
|
360 |
-
#: bws_menu.php:
|
361 |
-
#: bws_menu.php:
|
362 |
-
#: bws_menu.php:
|
363 |
-
#: bws_menu.php:
|
364 |
msgid "No"
|
365 |
msgstr "Нет"
|
366 |
|
367 |
-
#: bws_menu.php:
|
368 |
msgid "Operating System"
|
369 |
msgstr "Операционная система"
|
370 |
|
371 |
-
#: bws_menu.php:
|
372 |
msgid "Server"
|
373 |
msgstr "Тип сервера"
|
374 |
|
375 |
-
#: bws_menu.php:
|
376 |
msgid "Memory usage"
|
377 |
msgstr "Памяти использовано"
|
378 |
|
379 |
-
#: bws_menu.php:
|
380 |
msgid "MYSQL Version"
|
381 |
msgstr "Версия MYSQL"
|
382 |
|
383 |
-
#: bws_menu.php:
|
384 |
msgid "SQL Mode"
|
385 |
msgstr "Режим SQL"
|
386 |
|
387 |
-
#: bws_menu.php:
|
388 |
msgid "PHP Version"
|
389 |
msgstr "Версия PHP"
|
390 |
|
391 |
-
#: bws_menu.php:
|
392 |
msgid "PHP Safe Mode"
|
393 |
msgstr "PHP Safe Mode"
|
394 |
|
395 |
-
#: bws_menu.php:
|
396 |
msgid "PHP Allow URL fopen"
|
397 |
msgstr "PHP Allow URL fopen"
|
398 |
|
399 |
-
#: bws_menu.php:
|
400 |
msgid "PHP Memory Limit"
|
401 |
msgstr "Лимит памяти"
|
402 |
|
403 |
-
#: bws_menu.php:
|
404 |
msgid "PHP Max Upload Size"
|
405 |
msgstr "Макс. размер загружаемого файла"
|
406 |
|
407 |
-
#: bws_menu.php:
|
408 |
msgid "PHP Max Post Size"
|
409 |
msgstr "Макс. размер записи"
|
410 |
|
411 |
-
#: bws_menu.php:
|
412 |
msgid "PHP Max Script Execute Time"
|
413 |
msgstr "Макс. время выполнения сценария"
|
414 |
|
415 |
-
#: bws_menu.php:
|
416 |
msgid "PHP Exif support"
|
417 |
msgstr "Поддержка PHP Exif"
|
418 |
|
419 |
-
#: bws_menu.php:
|
420 |
msgid "PHP IPTC support"
|
421 |
msgstr "Поддержка PHP IPTC"
|
422 |
|
423 |
-
#: bws_menu.php:
|
424 |
msgid "PHP XML support"
|
425 |
msgstr "Поддержка PHP XML"
|
426 |
|
427 |
-
#: bws_menu.php:
|
428 |
msgid "Site URL"
|
429 |
msgstr "Адрес сайта"
|
430 |
|
431 |
-
#: bws_menu.php:
|
432 |
msgid "Home URL"
|
433 |
msgstr "Основной адрес сайта"
|
434 |
|
435 |
-
#: bws_menu.php:
|
436 |
msgid "WordPress Version"
|
437 |
msgstr "Версия WordPress"
|
438 |
|
439 |
-
#: bws_menu.php:
|
440 |
msgid "WordPress DB Version"
|
441 |
msgstr "Версия базы данных WordPress"
|
442 |
|
443 |
-
#: bws_menu.php:
|
444 |
msgid "Multisite"
|
445 |
msgstr "Мультиблог"
|
446 |
|
447 |
-
#: bws_menu.php:
|
448 |
msgid "Active Theme"
|
449 |
msgstr "Текущая тема"
|
450 |
|
451 |
-
#: bws_menu.php:
|
452 |
msgid "Please enter a valid email address."
|
453 |
msgstr "Пожалуйста, введите валидный емайл."
|
454 |
|
455 |
-
#: bws_menu.php:
|
456 |
msgid "Email with system info is sent to "
|
457 |
-
msgstr "
|
458 |
|
459 |
-
#: bws_menu.php:
|
460 |
msgid "Thank you for contacting us."
|
461 |
msgstr "Спасибо что связались с нами."
|
462 |
|
463 |
-
#: bws_menu.php:
|
464 |
msgid "Sorry, email message could not be delivered."
|
465 |
-
msgstr "Извините, ваш
|
466 |
|
467 |
-
#: bws_menu.php:
|
468 |
msgid "Need help?"
|
469 |
msgstr "Нужна помощь?"
|
470 |
|
471 |
-
#: bws_menu.php:
|
472 |
msgid "Client area"
|
473 |
msgstr "Client area"
|
474 |
|
475 |
-
#: bws_menu.php:
|
476 |
-
#: bws_menu.php:
|
477 |
msgid "System status"
|
478 |
msgstr "Системная информация"
|
479 |
|
480 |
-
#: bws_menu.php:
|
481 |
msgid "Plugins"
|
482 |
msgstr "Плагины"
|
483 |
|
484 |
-
#: bws_menu.php:
|
485 |
msgid "Themes"
|
486 |
msgstr "Темы"
|
487 |
|
488 |
-
#: bws_menu.php:
|
489 |
msgid "All"
|
490 |
msgstr "Все"
|
491 |
|
492 |
-
#: bws_menu.php:
|
493 |
msgid "Installed"
|
494 |
msgstr "Установленные"
|
495 |
|
496 |
-
#: bws_menu.php:
|
497 |
msgid "Recommended"
|
498 |
msgstr "Рекомендованные"
|
499 |
|
500 |
-
#: bws_menu.php:
|
501 |
msgid "Installed plugins"
|
502 |
msgstr "Установленные плагины"
|
503 |
|
504 |
-
#: bws_menu.php:
|
505 |
-
#: bws_menu.php:
|
506 |
msgid "Settings"
|
507 |
msgstr "Настройки"
|
508 |
|
509 |
-
#: bws_menu.php:
|
510 |
-
#: bws_menu.php:
|
511 |
msgid "Activate this plugin"
|
512 |
msgstr "Активировать плагин"
|
513 |
|
514 |
-
#: bws_menu.php:
|
515 |
-
#: bws_menu.php:
|
516 |
-
#: bws_menu.php:
|
517 |
msgid "Go"
|
518 |
msgstr "Перейти на"
|
519 |
|
520 |
-
#: bws_menu.php:
|
521 |
-
#: bws_menu.php:
|
522 |
-
#: bws_menu.php:
|
523 |
msgid "DONATE"
|
524 |
msgstr "Пожертвовать"
|
525 |
|
526 |
-
#: bws_menu.php:
|
527 |
msgid "Recommended plugins"
|
528 |
msgstr "Рекомендованные к установке плагины"
|
529 |
|
530 |
-
#: bws_menu.php:
|
531 |
msgid "Install now"
|
532 |
msgstr "Установить"
|
533 |
|
534 |
-
#: bws_menu.php:
|
535 |
msgid "Try again"
|
536 |
msgstr "Попробовать снова"
|
537 |
|
538 |
-
#: bws_menu.php:
|
539 |
#, php-format
|
540 |
msgid "Preview “%s”"
|
541 |
msgstr "Просмотр “%s”"
|
542 |
|
543 |
-
#: bws_menu.php:
|
544 |
#, php-format
|
545 |
msgid "Install %s"
|
546 |
msgstr "Установлено %s"
|
547 |
|
548 |
-
#: bws_menu.php:
|
549 |
msgid "Install Now"
|
550 |
msgstr "Установить"
|
551 |
|
552 |
-
#: bws_menu.php:
|
553 |
#, php-format
|
554 |
msgid "Update to version %s"
|
555 |
msgstr "Обновить до версии %s"
|
556 |
|
557 |
-
#: bws_menu.php:
|
558 |
msgid "Update"
|
559 |
msgstr "Обновить"
|
560 |
|
561 |
-
#: bws_menu.php:
|
562 |
#, php-format
|
563 |
msgid "Preview %s"
|
564 |
msgstr "Просмотр %s"
|
565 |
|
566 |
-
#: bws_menu.php:
|
567 |
msgid "Preview"
|
568 |
msgstr "Просмотр"
|
569 |
|
570 |
-
#: bws_menu.php:
|
571 |
-
#: bws_menu.php:
|
572 |
#, php-format
|
573 |
msgid "By %s"
|
574 |
msgstr "%s"
|
575 |
|
576 |
-
#: bws_menu.php:
|
577 |
msgid "Details"
|
578 |
msgstr "Детали"
|
579 |
|
580 |
-
#: bws_menu.php:
|
581 |
msgid "Already Installed"
|
582 |
msgstr "Уже установлена"
|
583 |
|
584 |
-
#: bws_menu.php:
|
585 |
msgid "Environment"
|
586 |
msgstr "Системная среда"
|
587 |
|
588 |
-
#: bws_menu.php:
|
589 |
msgid "Active Plugins"
|
590 |
msgstr "Активированные плагины"
|
591 |
|
592 |
-
#: bws_menu.php:
|
593 |
msgid "Inactive Plugins"
|
594 |
msgstr "Неактивированные плагины"
|
595 |
|
596 |
-
#: bws_menu.php:
|
597 |
msgid "Send to support"
|
598 |
msgstr "Отправить в тех. поддержку"
|
599 |
|
600 |
-
#: bws_menu.php:
|
601 |
msgid "Send to custom email »"
|
602 |
msgstr "Отправить на емейл »"
|
603 |
|
|
|
|
|
|
|
604 |
#~ msgid ""
|
605 |
#~ "(your username is the email you specify when purchasing the product), "
|
606 |
#~ "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: 2015-09-17 16:00+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-09-17 16:04+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: bws_functions.php:29
|
20 |
+
#: bws_functions.php:53
|
21 |
msgid "requires"
|
22 |
msgstr "требует"
|
23 |
|
24 |
+
#: bws_functions.php:31
|
25 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
26 |
msgstr "или выше, поэтому он был деактивирован! Пожалуйста, обновите WordPress и попробуйте еще раз."
|
27 |
|
28 |
+
#: bws_functions.php:32
|
29 |
msgid "Back to the WordPress"
|
30 |
msgstr "Вернуться к WordPress на"
|
31 |
|
32 |
+
#: bws_functions.php:34
|
33 |
msgid "Plugins page"
|
34 |
msgstr "Страницу плагинов"
|
35 |
|
36 |
+
#: bws_functions.php:55
|
37 |
+
msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
|
38 |
+
msgstr "или выше! Мы не гарантируем, что наш плагин будет работать корректно. Пожалуйста, обновите WordPress до последней версии."
|
39 |
+
|
40 |
+
#: bws_functions.php:112
|
41 |
msgid "It’s time to upgrade your"
|
42 |
msgstr "Настало время обновить Ваш"
|
43 |
|
44 |
+
#: bws_functions.php:112
|
45 |
msgid "to"
|
46 |
msgstr "до"
|
47 |
|
48 |
+
#: bws_functions.php:112
|
49 |
msgid "version!"
|
50 |
msgstr "версии!"
|
51 |
|
52 |
+
#: bws_functions.php:113
|
53 |
msgid "Extend standard plugin functionality with new great options."
|
54 |
msgstr "Расширяет возможности стандартного функционала плагина."
|
55 |
|
56 |
+
#: bws_functions.php:116
|
57 |
+
#: bws_functions.php:513
|
58 |
msgid "Learn More"
|
59 |
msgstr "Подробнее"
|
60 |
|
61 |
+
#: bws_functions.php:133
|
62 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
63 |
msgstr "Если вам понравился плагин, пожалуйста, поставьте нам 5 звезд на WordPress"
|
64 |
|
65 |
+
#: bws_functions.php:134
|
66 |
msgid "Rate the plugin"
|
67 |
msgstr "Оценить плагин"
|
68 |
|
69 |
+
#: bws_functions.php:137
|
70 |
msgid "If there is something wrong about it, please contact us"
|
71 |
msgstr "Если у вас есть какие-то вопросы, обращайтесь"
|
72 |
|
73 |
+
#: bws_functions.php:154
|
74 |
+
#: bws_functions.php:190
|
75 |
msgid "Wrong license key"
|
76 |
msgstr "Неправильный лицензионный ключ"
|
77 |
|
78 |
+
#: bws_functions.php:184
|
79 |
+
#: bws_functions.php:426
|
80 |
+
#: bws_functions.php:477
|
81 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
82 |
msgstr "Что-то пошло не так. Повторите попытку позже. Если ошибка появится снова, пожалуйста, свяжитесь с нами"
|
83 |
|
84 |
+
#: bws_functions.php:184
|
85 |
+
#: bws_functions.php:426
|
86 |
+
#: bws_functions.php:477
|
87 |
msgid "We are sorry for inconvenience."
|
88 |
msgstr "Приносим извинения за неудобства."
|
89 |
|
90 |
+
#: bws_functions.php:192
|
91 |
msgid "This license key is bind to another site"
|
92 |
msgstr "Этот лицензионный ключ привязан к другому сайту"
|
93 |
|
94 |
+
#: bws_functions.php:194
|
95 |
+
#: bws_functions.php:336
|
96 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
97 |
msgstr "К сожалению, вы превысили количество доступных попыток в день. Пожалуйста, загрузите плагин вручную."
|
98 |
|
99 |
+
#: bws_functions.php:196
|
100 |
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
101 |
msgstr "К сожалению, время использования вашей лицензии истекло. Для получения обновлений приоритетного саппорта вам нужно продлить лицензию перейдя на вашей"
|
102 |
|
103 |
+
#: bws_functions.php:198
|
104 |
+
msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
|
105 |
+
msgstr "К сожалению, Pro лицензия уже была установлена на этом доменен. Pro Trial лицензия может быть установлена только один раз."
|
106 |
|
107 |
+
#: bws_functions.php:219
|
108 |
+
#: bws_functions.php:241
|
109 |
+
#: bws_functions.php:263
|
110 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
111 |
msgstr "Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
|
112 |
|
113 |
+
#: bws_functions.php:231
|
114 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
115 |
msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
|
116 |
|
117 |
+
#: bws_functions.php:237
|
118 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
119 |
msgstr "Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. Пожалуйста, загрузите плагин вручную"
|
120 |
|
121 |
+
#: bws_functions.php:244
|
122 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
123 |
msgstr "Папка загрузки не доступна для записи. Пожалуйста, загрузите плагин вручную"
|
124 |
|
125 |
+
#: bws_functions.php:267
|
126 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
127 |
msgstr "Что-то пошло не так. Повторите попытку позже или загрузите плагин вручную. Приносим извинения за неудобства."
|
128 |
|
129 |
+
#: bws_functions.php:292
|
130 |
msgid "Please, enter Your license key"
|
131 |
msgstr "Пожалуйста, введите ваш лицензионный ключ"
|
132 |
|
133 |
+
#: bws_functions.php:309
|
134 |
+
msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
|
135 |
+
msgstr "Поздравляем! Pro версия плагина была успешно загружена и активирована."
|
136 |
|
137 |
+
#: bws_functions.php:311
|
138 |
+
#: bws_functions.php:393
|
139 |
msgid "Please, go to"
|
140 |
msgstr "Пожалуйста, перейдите на"
|
141 |
|
142 |
+
#: bws_functions.php:311
|
143 |
+
#: bws_functions.php:393
|
144 |
msgid "the setting page"
|
145 |
msgstr "страницу настроек"
|
146 |
|
147 |
+
#: bws_functions.php:312
|
148 |
+
#: bws_functions.php:394
|
149 |
msgid "You will be redirected automatically in 5 seconds."
|
150 |
msgstr "Вы будете перенаправлены автоматически через 5 секунд."
|
151 |
|
152 |
+
#: bws_functions.php:317
|
153 |
msgid "You can download and activate"
|
154 |
msgstr "Вы можете скачать и активировать"
|
155 |
|
156 |
+
#: bws_functions.php:319
|
157 |
msgid "version of this plugin by entering Your license key."
|
158 |
msgstr "версию этого плагина, введя ваш лицензионный ключ."
|
159 |
|
160 |
+
#: bws_functions.php:321
|
161 |
+
#: bws_functions.php:362
|
162 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
163 |
msgstr "Вы можете найти ваш лицензионный ключ на вашей личной странице Client area, нажав на ссылку"
|
164 |
|
165 |
+
#: bws_functions.php:323
|
166 |
+
#: bws_functions.php:364
|
167 |
msgid "(your username is the email you specify when purchasing the product)."
|
168 |
msgstr "(ваше имя пользователя - это электронный адрес, указанный при покупке продукта)."
|
169 |
|
170 |
+
#: bws_functions.php:327
|
171 |
+
#: bws_functions.php:630
|
172 |
msgid "or"
|
173 |
msgstr "или"
|
174 |
|
175 |
+
#: bws_functions.php:327
|
176 |
#, php-format
|
177 |
msgid "Start Your Free %s-Day Trial Now"
|
178 |
msgstr "Попробуйте %s-дневную Trial версию бесплатно"
|
179 |
|
180 |
+
#: bws_functions.php:333
|
181 |
+
#: bws_functions.php:342
|
182 |
+
#: bws_functions.php:372
|
183 |
+
#: bws_functions.php:380
|
184 |
+
#: bws_menu.php:693
|
185 |
+
#: bws_menu.php:750
|
186 |
msgid "Activate"
|
187 |
msgstr "Активировать"
|
188 |
|
189 |
+
#: bws_functions.php:359
|
190 |
+
#: bws_functions.php:452
|
191 |
#, php-format
|
192 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
193 |
msgstr "Чтобы продолжить пользоваться плагином, необходимо приобрести %s лицензию."
|
194 |
|
195 |
+
#: bws_functions.php:360
|
196 |
msgid "After that you can activate it by entering your license key."
|
197 |
msgstr "После этого вы сможете активировать его введя лицензионный ключ."
|
198 |
|
199 |
+
#: bws_functions.php:374
|
200 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
201 |
msgstr "К сожалению, вы превысили количество доступных попыток."
|
202 |
|
203 |
+
#: bws_functions.php:391
|
204 |
+
msgid "Congratulations! The Pro license of the plugin is successfully activated."
|
205 |
+
msgstr "Поздравляем! Pro версия плагина была успешно активирована."
|
206 |
|
207 |
+
#: bws_functions.php:432
|
208 |
msgid "Wrong license key."
|
209 |
msgstr "Неправильный лицензионный ключ."
|
210 |
|
211 |
+
#: bws_functions.php:434
|
212 |
msgid "This license key is bind to another site."
|
213 |
msgstr "Этот лицензионный ключ привязан к другому сайту."
|
214 |
|
215 |
+
#: bws_functions.php:436
|
216 |
msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
|
217 |
msgstr "Лицензионный ключ принят, но срок действия лицензии истек. Если вы хотите обновлять плагин в будущем, вы должны продлить лицензию."
|
218 |
|
219 |
+
#: bws_functions.php:438
|
220 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
221 |
msgstr "К сожалению, вы превысили количество доступных попыток."
|
222 |
|
223 |
+
#: bws_functions.php:440
|
224 |
+
msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
|
225 |
+
msgstr "К сожалению, Pro Trial версия плагина уже устанавливалась на этот домен. Pro Trial версию можно устанавливать лишь один раз."
|
226 |
|
227 |
+
#: bws_functions.php:444
|
228 |
+
msgid "The Pro Trial license key is valid."
|
229 |
+
msgstr "Ключ Pro Trial версии действителен."
|
230 |
|
231 |
+
#: bws_functions.php:446
|
232 |
msgid "The license key is valid."
|
233 |
msgstr "Лицензионный ключ действителен."
|
234 |
|
235 |
+
#: bws_functions.php:449
|
236 |
msgid "Your license will expire on"
|
237 |
msgstr "Ваша лицензия истечет"
|
238 |
|
239 |
+
#: bws_functions.php:482
|
240 |
msgid "Please, enter your license key"
|
241 |
msgstr "Пожалуйста, введите Ваш лицензионный ключ"
|
242 |
|
243 |
+
#: bws_functions.php:495
|
244 |
msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
|
245 |
msgstr "При необходимости вы можете проверить валидность лицензионного ключа или повторно ввести его в поле ниже. Вы можете найти ваш лицензионный ключ на своей личной странице - Client area - на нашем сайте"
|
246 |
|
247 |
+
#: bws_functions.php:495
|
248 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
249 |
+
msgstr "(ваш пользователь это емейл, который вы указывали при покупке продукта). При необходимости нажмите \"Забыли пароль?\"."
|
250 |
|
251 |
+
#: bws_functions.php:499
|
252 |
msgid "Check license key"
|
253 |
msgstr "Проверка лицензионного ключа"
|
254 |
|
255 |
+
#: bws_functions.php:513
|
256 |
msgid "WARNING: Illegal use notification"
|
257 |
msgstr "ВНИМАНИЕ: уведомление о незаконном использовании"
|
258 |
|
259 |
+
#: bws_functions.php:513
|
260 |
msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
|
261 |
msgstr "Вы можете использовать одну лицензию Pro плагина только для одного домена. Пожалуйста, проверьте и отредактируйте при необходимости лицензию или домен, используя Ваш личный Client Area. Мы настоятельно рекомендуем вам решить проблему в течение 24 часов, в противном случае плагин будет деактивирован."
|
262 |
|
263 |
+
#: bws_functions.php:521
|
264 |
+
msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
|
265 |
+
msgstr "Внимание: Срок действия Pro Trial версии истек. Чтобы продолжить пользоваться плагином, пожалуйста, приобретите лицензию Pro"
|
266 |
|
267 |
+
#: bws_functions.php:523
|
268 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
269 |
msgstr "Время использования вашей лицензии истекло. Если вы хотите обновлять ваш плагин в дальнейшем и иметь приоритетную тех.поддержку, то вам нужно продлить лицензию."
|
270 |
|
271 |
+
#: bws_functions.php:523
|
272 |
+
#: bws_functions.php:576
|
273 |
+
#: bws_menu.php:669
|
274 |
+
#: bws_menu.php:691
|
275 |
+
#: bws_menu.php:718
|
276 |
+
#: bws_menu.php:748
|
277 |
+
#: bws_menu.php:794
|
278 |
msgid "Learn more"
|
279 |
msgstr "Подробнее"
|
280 |
|
281 |
+
#: bws_functions.php:533
|
282 |
#, php-format
|
283 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
284 |
+
msgstr "Внимание: Вы используете Pro Trial версию плагина %s."
|
285 |
|
286 |
+
#: bws_functions.php:535
|
287 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
288 |
+
msgstr "Внимание: Вы используете Pro Trial версию плагина."
|
289 |
|
290 |
+
#: bws_functions.php:538
|
291 |
+
msgid "The Pro Trial license will expire on"
|
292 |
+
msgstr "Ваша лицензия Pro Trial версии плагина истекает"
|
293 |
|
294 |
+
#: bws_functions.php:576
|
295 |
msgid "You license for"
|
296 |
msgstr "Ваш лицензионный ключ для"
|
297 |
|
298 |
+
#: bws_functions.php:576
|
299 |
msgid "expires on"
|
300 |
msgstr "истекает"
|
301 |
|
302 |
+
#: bws_functions.php:576
|
303 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
304 |
msgstr "и вы не будете получать приоритетную тех.поддержку или обновления."
|
305 |
|
306 |
+
#: bws_functions.php:626
|
307 |
+
msgid "Thank you for installing"
|
308 |
+
msgstr "Спасибо за установку"
|
309 |
+
|
310 |
+
#: bws_functions.php:627
|
311 |
+
msgid "Let's get started"
|
312 |
+
msgstr "Давайте начнем"
|
313 |
+
|
314 |
+
#: bws_functions.php:628
|
315 |
+
msgid "Configure Settings"
|
316 |
+
msgstr "Настройка параметров"
|
317 |
+
|
318 |
+
#: bws_functions.php:631
|
319 |
+
msgid "Add New"
|
320 |
+
msgstr "Добавить"
|
321 |
+
|
322 |
+
#: bws_functions.php:635
|
323 |
+
msgid "Close notice"
|
324 |
+
msgstr "Закрыть"
|
325 |
+
|
326 |
+
#: bws_functions.php:648
|
327 |
+
msgid "Notice"
|
328 |
+
msgstr "Внимание"
|
329 |
+
|
330 |
+
#: bws_functions.php:648
|
331 |
+
msgid "The plugin's settings have been changed."
|
332 |
+
msgstr "Настройки плагина были изменены"
|
333 |
+
|
334 |
+
#: bws_functions.php:649
|
335 |
+
msgid "Save Changes"
|
336 |
+
msgstr "Сохранить изменения"
|
337 |
+
|
338 |
+
#: bws_functions.php:694
|
339 |
+
msgid "Add BWS Plugins Shortcode"
|
340 |
+
msgstr "Добавить шорткод BWS Плагина"
|
341 |
+
|
342 |
+
#: bws_functions.php:738
|
343 |
msgid "Close"
|
344 |
msgstr "Закрыть"
|
345 |
|
346 |
+
#: bws_functions.php:829
|
|
|
347 |
msgid "Restore all plugin settings to defaults"
|
348 |
+
msgstr "Восстановить все настройки плагина к настройкам по умолчанию"
|
349 |
|
350 |
+
#: bws_functions.php:831
|
|
|
351 |
msgid "Restore settings"
|
352 |
msgstr "Восстановить настройки"
|
353 |
|
354 |
+
#: bws_functions.php:842
|
355 |
msgid "Are you sure you want to restore all settings by default?"
|
356 |
+
msgstr "Вы уверены что хотите восстановить все настройки плагина к настройкам по умолчанию?"
|
357 |
|
358 |
+
#: bws_functions.php:845
|
359 |
msgid "Yes, restore all settings"
|
360 |
msgstr "Да, восстановить все настройки"
|
361 |
|
362 |
+
#: bws_functions.php:846
|
363 |
msgid "No, go back to the settings page"
|
364 |
+
msgstr "Нет, вернуться на страницу настроек"
|
365 |
+
|
366 |
+
#: bws_functions.php:890
|
367 |
+
msgid "Plugin"
|
368 |
+
msgstr "Плагин"
|
369 |
+
|
370 |
+
#: bws_functions.php:899
|
371 |
+
msgid "Shortcode settings"
|
372 |
+
msgstr "Настройки шорткода"
|
373 |
+
|
374 |
+
#: bws_functions.php:904
|
375 |
+
msgid "The shortcode will be inserted"
|
376 |
+
msgstr "Будет вставлен шорткод"
|
377 |
|
378 |
+
#: bws_functions.php:909
|
379 |
+
msgid "Insert"
|
380 |
+
msgstr "Вставить"
|
381 |
+
|
382 |
+
#: bws_menu.php:506
|
383 |
msgid "Not set"
|
384 |
msgstr "Не задан"
|
385 |
|
386 |
+
#: bws_menu.php:508
|
387 |
+
#: bws_menu.php:509
|
388 |
msgid "On"
|
389 |
msgstr "Вкл"
|
390 |
|
391 |
+
#: bws_menu.php:508
|
392 |
+
#: bws_menu.php:509
|
393 |
msgid "Off"
|
394 |
msgstr "Выкл"
|
395 |
|
396 |
+
#: bws_menu.php:510
|
397 |
+
#: bws_menu.php:511
|
398 |
+
#: bws_menu.php:512
|
399 |
+
#: bws_menu.php:513
|
400 |
+
#: bws_menu.php:514
|
401 |
+
#: bws_menu.php:526
|
402 |
msgid "N/A"
|
403 |
msgstr "Неизвестно"
|
404 |
|
405 |
+
#: bws_menu.php:514
|
406 |
msgid " Mb"
|
407 |
msgstr "Mb"
|
408 |
|
409 |
+
#: bws_menu.php:515
|
410 |
+
#: bws_menu.php:516
|
411 |
+
#: bws_menu.php:517
|
412 |
+
#: bws_menu.php:522
|
413 |
msgid "Yes"
|
414 |
msgstr "Да"
|
415 |
|
416 |
+
#: bws_menu.php:515
|
417 |
+
#: bws_menu.php:516
|
418 |
+
#: bws_menu.php:517
|
419 |
+
#: bws_menu.php:524
|
420 |
msgid "No"
|
421 |
msgstr "Нет"
|
422 |
|
423 |
+
#: bws_menu.php:534
|
424 |
msgid "Operating System"
|
425 |
msgstr "Операционная система"
|
426 |
|
427 |
+
#: bws_menu.php:535
|
428 |
msgid "Server"
|
429 |
msgstr "Тип сервера"
|
430 |
|
431 |
+
#: bws_menu.php:536
|
432 |
msgid "Memory usage"
|
433 |
msgstr "Памяти использовано"
|
434 |
|
435 |
+
#: bws_menu.php:537
|
436 |
msgid "MYSQL Version"
|
437 |
msgstr "Версия MYSQL"
|
438 |
|
439 |
+
#: bws_menu.php:538
|
440 |
msgid "SQL Mode"
|
441 |
msgstr "Режим SQL"
|
442 |
|
443 |
+
#: bws_menu.php:539
|
444 |
msgid "PHP Version"
|
445 |
msgstr "Версия PHP"
|
446 |
|
447 |
+
#: bws_menu.php:540
|
448 |
msgid "PHP Safe Mode"
|
449 |
msgstr "PHP Safe Mode"
|
450 |
|
451 |
+
#: bws_menu.php:541
|
452 |
msgid "PHP Allow URL fopen"
|
453 |
msgstr "PHP Allow URL fopen"
|
454 |
|
455 |
+
#: bws_menu.php:542
|
456 |
msgid "PHP Memory Limit"
|
457 |
msgstr "Лимит памяти"
|
458 |
|
459 |
+
#: bws_menu.php:543
|
460 |
msgid "PHP Max Upload Size"
|
461 |
msgstr "Макс. размер загружаемого файла"
|
462 |
|
463 |
+
#: bws_menu.php:544
|
464 |
msgid "PHP Max Post Size"
|
465 |
msgstr "Макс. размер записи"
|
466 |
|
467 |
+
#: bws_menu.php:545
|
468 |
msgid "PHP Max Script Execute Time"
|
469 |
msgstr "Макс. время выполнения сценария"
|
470 |
|
471 |
+
#: bws_menu.php:546
|
472 |
msgid "PHP Exif support"
|
473 |
msgstr "Поддержка PHP Exif"
|
474 |
|
475 |
+
#: bws_menu.php:547
|
476 |
msgid "PHP IPTC support"
|
477 |
msgstr "Поддержка PHP IPTC"
|
478 |
|
479 |
+
#: bws_menu.php:548
|
480 |
msgid "PHP XML support"
|
481 |
msgstr "Поддержка PHP XML"
|
482 |
|
483 |
+
#: bws_menu.php:549
|
484 |
msgid "Site URL"
|
485 |
msgstr "Адрес сайта"
|
486 |
|
487 |
+
#: bws_menu.php:550
|
488 |
msgid "Home URL"
|
489 |
msgstr "Основной адрес сайта"
|
490 |
|
491 |
+
#: bws_menu.php:553
|
492 |
msgid "WordPress Version"
|
493 |
msgstr "Версия WordPress"
|
494 |
|
495 |
+
#: bws_menu.php:554
|
496 |
msgid "WordPress DB Version"
|
497 |
msgstr "Версия базы данных WordPress"
|
498 |
|
499 |
+
#: bws_menu.php:555
|
500 |
msgid "Multisite"
|
501 |
msgstr "Мультиблог"
|
502 |
|
503 |
+
#: bws_menu.php:556
|
504 |
msgid "Active Theme"
|
505 |
msgstr "Текущая тема"
|
506 |
|
507 |
+
#: bws_menu.php:571
|
508 |
msgid "Please enter a valid email address."
|
509 |
msgstr "Пожалуйста, введите валидный емайл."
|
510 |
|
511 |
+
#: bws_menu.php:575
|
512 |
msgid "Email with system info is sent to "
|
513 |
+
msgstr "Емейл с системной информацией отправлен на"
|
514 |
|
515 |
+
#: bws_menu.php:579
|
516 |
msgid "Thank you for contacting us."
|
517 |
msgstr "Спасибо что связались с нами."
|
518 |
|
519 |
+
#: bws_menu.php:612
|
520 |
msgid "Sorry, email message could not be delivered."
|
521 |
+
msgstr "Извините, ваш емейл не может быть отправлен."
|
522 |
|
523 |
+
#: bws_menu.php:620
|
524 |
msgid "Need help?"
|
525 |
msgstr "Нужна помощь?"
|
526 |
|
527 |
+
#: bws_menu.php:621
|
528 |
msgid "Client area"
|
529 |
msgstr "Client area"
|
530 |
|
531 |
+
#: bws_menu.php:622
|
532 |
+
#: bws_menu.php:933
|
533 |
msgid "System status"
|
534 |
msgstr "Системная информация"
|
535 |
|
536 |
+
#: bws_menu.php:627
|
537 |
msgid "Plugins"
|
538 |
msgstr "Плагины"
|
539 |
|
540 |
+
#: bws_menu.php:629
|
541 |
msgid "Themes"
|
542 |
msgstr "Темы"
|
543 |
|
544 |
+
#: bws_menu.php:634
|
545 |
msgid "All"
|
546 |
msgstr "Все"
|
547 |
|
548 |
+
#: bws_menu.php:635
|
549 |
msgid "Installed"
|
550 |
msgstr "Установленные"
|
551 |
|
552 |
+
#: bws_menu.php:636
|
553 |
msgid "Recommended"
|
554 |
msgstr "Рекомендованные"
|
555 |
|
556 |
+
#: bws_menu.php:640
|
557 |
msgid "Installed plugins"
|
558 |
msgstr "Установленные плагины"
|
559 |
|
560 |
+
#: bws_menu.php:672
|
561 |
+
#: bws_menu.php:721
|
562 |
msgid "Settings"
|
563 |
msgstr "Настройки"
|
564 |
|
565 |
+
#: bws_menu.php:693
|
566 |
+
#: bws_menu.php:750
|
567 |
msgid "Activate this plugin"
|
568 |
msgstr "Активировать плагин"
|
569 |
|
570 |
+
#: bws_menu.php:708
|
571 |
+
#: bws_menu.php:738
|
572 |
+
#: bws_menu.php:784
|
573 |
msgid "Go"
|
574 |
msgstr "Перейти на"
|
575 |
|
576 |
+
#: bws_menu.php:712
|
577 |
+
#: bws_menu.php:742
|
578 |
+
#: bws_menu.php:788
|
579 |
msgid "DONATE"
|
580 |
msgstr "Пожертвовать"
|
581 |
|
582 |
+
#: bws_menu.php:758
|
583 |
msgid "Recommended plugins"
|
584 |
msgstr "Рекомендованные к установке плагины"
|
585 |
|
586 |
+
#: bws_menu.php:796
|
587 |
msgid "Install now"
|
588 |
msgstr "Установить"
|
589 |
|
590 |
+
#: bws_menu.php:817
|
591 |
msgid "Try again"
|
592 |
msgstr "Попробовать снова"
|
593 |
|
594 |
+
#: bws_menu.php:835
|
595 |
#, php-format
|
596 |
msgid "Preview “%s”"
|
597 |
msgstr "Просмотр “%s”"
|
598 |
|
599 |
+
#: bws_menu.php:866
|
600 |
#, php-format
|
601 |
msgid "Install %s"
|
602 |
msgstr "Установлено %s"
|
603 |
|
604 |
+
#: bws_menu.php:866
|
605 |
msgid "Install Now"
|
606 |
msgstr "Установить"
|
607 |
|
608 |
+
#: bws_menu.php:869
|
609 |
#, php-format
|
610 |
msgid "Update to version %s"
|
611 |
msgstr "Обновить до версии %s"
|
612 |
|
613 |
+
#: bws_menu.php:869
|
614 |
msgid "Update"
|
615 |
msgstr "Обновить"
|
616 |
|
617 |
+
#: bws_menu.php:876
|
618 |
#, php-format
|
619 |
msgid "Preview %s"
|
620 |
msgstr "Просмотр %s"
|
621 |
|
622 |
+
#: bws_menu.php:876
|
623 |
msgid "Preview"
|
624 |
msgstr "Просмотр"
|
625 |
|
626 |
+
#: bws_menu.php:882
|
627 |
+
#: bws_menu.php:914
|
628 |
#, php-format
|
629 |
msgid "By %s"
|
630 |
msgstr "%s"
|
631 |
|
632 |
+
#: bws_menu.php:888
|
633 |
msgid "Details"
|
634 |
msgstr "Детали"
|
635 |
|
636 |
+
#: bws_menu.php:920
|
637 |
msgid "Already Installed"
|
638 |
msgstr "Уже установлена"
|
639 |
|
640 |
+
#: bws_menu.php:936
|
641 |
msgid "Environment"
|
642 |
msgstr "Системная среда"
|
643 |
|
644 |
+
#: bws_menu.php:947
|
645 |
msgid "Active Plugins"
|
646 |
msgstr "Активированные плагины"
|
647 |
|
648 |
+
#: bws_menu.php:960
|
649 |
msgid "Inactive Plugins"
|
650 |
msgstr "Неактивированные плагины"
|
651 |
|
652 |
+
#: bws_menu.php:976
|
653 |
msgid "Send to support"
|
654 |
msgstr "Отправить в тех. поддержку"
|
655 |
|
656 |
+
#: bws_menu.php:983
|
657 |
msgid "Send to custom email »"
|
658 |
msgstr "Отправить на емейл »"
|
659 |
|
660 |
+
#~ msgid "Select Plugin"
|
661 |
+
#~ msgstr "Выберите плагин"
|
662 |
+
|
663 |
#~ msgid ""
|
664 |
#~ "(your username is the email you specify when purchasing the product), "
|
665 |
#~ "where you can make the necessary changes."
|
bws_menu/languages/bestwebsoft-sr_RS.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-sr_RS.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Andrijana Nikolic <andrijanan@webhostinggeeks.com>\n"
|
9 |
"Language: fr_FR\n"
|
@@ -17,612 +17,672 @@ msgstr ""
|
|
17 |
"X-Generator: Poedit 1.5.4\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: bws_functions.php:
|
|
|
21 |
msgid "requires"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: bws_functions.php:
|
25 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: bws_functions.php:
|
29 |
msgid "Back to the WordPress"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: bws_functions.php:
|
33 |
#, fuzzy
|
34 |
msgid "Plugins page"
|
35 |
msgstr "Pro moduli"
|
36 |
|
37 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
38 |
msgid "It’s time to upgrade your"
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: bws_functions.php:
|
42 |
#, fuzzy
|
43 |
msgid "to"
|
44 |
msgstr "vrh"
|
45 |
|
46 |
-
#: bws_functions.php:
|
47 |
#, fuzzy
|
48 |
msgid "version!"
|
49 |
msgstr "PHP Verzija"
|
50 |
|
51 |
-
#: bws_functions.php:
|
52 |
msgid "Extend standard plugin functionality with new great options."
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: bws_functions.php:
|
56 |
-
#: bws_functions.php:
|
57 |
#, fuzzy
|
58 |
msgid "Learn More"
|
59 |
msgstr "Pročitaj više"
|
60 |
|
61 |
-
#: bws_functions.php:
|
62 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: bws_functions.php:
|
66 |
#, fuzzy
|
67 |
msgid "Rate the plugin"
|
68 |
msgstr "Aktivirani moduli"
|
69 |
|
70 |
-
#: bws_functions.php:
|
71 |
#, fuzzy
|
72 |
msgid "If there is something wrong about it, please contact us"
|
73 |
msgstr "Ako imate pitanja molimo da nas kontaktirate preko"
|
74 |
|
75 |
-
#: bws_functions.php:
|
76 |
-
#: bws_functions.php:
|
77 |
msgid "Wrong license key"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: bws_functions.php:
|
81 |
-
#: bws_functions.php:
|
82 |
-
#: bws_functions.php:
|
83 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: bws_functions.php:
|
87 |
-
#: bws_functions.php:
|
88 |
-
#: bws_functions.php:
|
89 |
msgid "We are sorry for inconvenience."
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: bws_functions.php:
|
93 |
msgid "This license key is bind to another site"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: bws_functions.php:
|
97 |
-
#: bws_functions.php:
|
98 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: bws_functions.php:
|
102 |
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: bws_functions.php:
|
106 |
-
msgid "Unfortunately, the
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: bws_functions.php:
|
110 |
-
#: bws_functions.php:
|
111 |
-
#: bws_functions.php:
|
112 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: bws_functions.php:
|
116 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: bws_functions.php:
|
120 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: bws_functions.php:
|
124 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: bws_functions.php:
|
128 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: bws_functions.php:
|
132 |
msgid "Please, enter Your license key"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: bws_functions.php:
|
136 |
-
msgid "Congratulations! The
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: bws_functions.php:
|
140 |
-
#: bws_functions.php:
|
141 |
msgid "Please, go to"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: bws_functions.php:
|
145 |
-
#: bws_functions.php:
|
146 |
#, fuzzy
|
147 |
msgid "the setting page"
|
148 |
msgstr "na stranici za podešavanje modula ("
|
149 |
|
150 |
-
#: bws_functions.php:
|
151 |
-
#: bws_functions.php:
|
152 |
msgid "You will be redirected automatically in 5 seconds."
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: bws_functions.php:
|
156 |
msgid "You can download and activate"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: bws_functions.php:
|
160 |
msgid "version of this plugin by entering Your license key."
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: bws_functions.php:
|
164 |
-
#: bws_functions.php:
|
165 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: bws_functions.php:
|
169 |
-
#: bws_functions.php:
|
170 |
msgid "(your username is the email you specify when purchasing the product)."
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: bws_functions.php:
|
|
|
174 |
msgid "or"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: bws_functions.php:
|
178 |
#, php-format
|
179 |
msgid "Start Your Free %s-Day Trial Now"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: bws_functions.php:
|
183 |
-
#: bws_functions.php:
|
184 |
-
#: bws_functions.php:
|
185 |
-
#: bws_functions.php:
|
186 |
-
#: bws_menu.php:
|
187 |
-
#: bws_menu.php:
|
188 |
#, fuzzy
|
189 |
msgid "Activate"
|
190 |
msgstr "Aktivirani moduli"
|
191 |
|
192 |
-
#: bws_functions.php:
|
193 |
-
#: bws_functions.php:
|
194 |
#, php-format
|
195 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: bws_functions.php:
|
199 |
msgid "After that you can activate it by entering your license key."
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: bws_functions.php:
|
203 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: bws_functions.php:
|
207 |
-
msgid "Congratulations! The
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: bws_functions.php:
|
211 |
msgid "Wrong license key."
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: bws_functions.php:
|
215 |
msgid "This license key is bind to another site."
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: bws_functions.php:
|
219 |
msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: bws_functions.php:
|
223 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: bws_functions.php:
|
227 |
-
msgid "Unfortunately, the
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: bws_functions.php:
|
231 |
-
msgid "The
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: bws_functions.php:
|
235 |
msgid "The license key is valid."
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: bws_functions.php:
|
239 |
msgid "Your license will expire on"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: bws_functions.php:
|
243 |
msgid "Please, enter your license key"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: bws_functions.php:
|
247 |
msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: bws_functions.php:
|
251 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: bws_functions.php:
|
255 |
msgid "Check license key"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: bws_functions.php:
|
259 |
msgid "WARNING: Illegal use notification"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: bws_functions.php:
|
263 |
msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: bws_functions.php:
|
267 |
-
msgid "Notice: Your
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: bws_functions.php:
|
271 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: bws_functions.php:
|
275 |
-
#: bws_functions.php:
|
276 |
-
#: bws_menu.php:
|
277 |
-
#: bws_menu.php:
|
278 |
-
#: bws_menu.php:
|
279 |
-
#: bws_menu.php:
|
280 |
-
#: bws_menu.php:
|
281 |
#, fuzzy
|
282 |
msgid "Learn more"
|
283 |
msgstr "Pročitaj više"
|
284 |
|
285 |
-
#: bws_functions.php:
|
286 |
#, php-format
|
287 |
-
msgid "Notice: You are using the
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: bws_functions.php:
|
291 |
-
msgid "Notice: You are using the
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: bws_functions.php:
|
295 |
-
msgid "The
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: bws_functions.php:
|
299 |
msgid "You license for"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: bws_functions.php:
|
303 |
msgid "expires on"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: bws_functions.php:
|
307 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
311 |
msgid "Close"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: bws_functions.php:
|
315 |
-
#: bws_functions.php:784
|
316 |
msgid "Restore all plugin settings to defaults"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: bws_functions.php:
|
320 |
-
#: bws_functions.php:786
|
321 |
#, fuzzy
|
322 |
msgid "Restore settings"
|
323 |
msgstr "na stranici za podešavanje modula ("
|
324 |
|
325 |
-
#: bws_functions.php:
|
326 |
msgid "Are you sure you want to restore all settings by default?"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: bws_functions.php:
|
330 |
msgid "Yes, restore all settings"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: bws_functions.php:
|
334 |
#, fuzzy
|
335 |
msgid "No, go back to the settings page"
|
336 |
msgstr "na stranici za podešavanje modula ("
|
337 |
|
338 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
339 |
msgid "Not set"
|
340 |
msgstr "Nije podešeno"
|
341 |
|
342 |
-
#: bws_menu.php:
|
343 |
-
#: bws_menu.php:
|
344 |
msgid "On"
|
345 |
msgstr "Uključeno"
|
346 |
|
347 |
-
#: bws_menu.php:
|
348 |
-
#: bws_menu.php:
|
349 |
msgid "Off"
|
350 |
msgstr "Isključeno"
|
351 |
|
352 |
-
#: bws_menu.php:
|
353 |
-
#: bws_menu.php:
|
354 |
-
#: bws_menu.php:
|
355 |
-
#: bws_menu.php:
|
356 |
-
#: bws_menu.php:
|
357 |
-
#: bws_menu.php:
|
358 |
msgid "N/A"
|
359 |
msgstr "N/A"
|
360 |
|
361 |
-
#: bws_menu.php:
|
362 |
msgid " Mb"
|
363 |
msgstr " Mb"
|
364 |
|
365 |
-
#: bws_menu.php:
|
366 |
-
#: bws_menu.php:
|
367 |
-
#: bws_menu.php:
|
368 |
-
#: bws_menu.php:
|
369 |
msgid "Yes"
|
370 |
msgstr "Da"
|
371 |
|
372 |
-
#: bws_menu.php:
|
373 |
-
#: bws_menu.php:
|
374 |
-
#: bws_menu.php:
|
375 |
-
#: bws_menu.php:
|
376 |
msgid "No"
|
377 |
msgstr "Ne"
|
378 |
|
379 |
-
#: bws_menu.php:
|
380 |
msgid "Operating System"
|
381 |
msgstr "Operativni Sistem"
|
382 |
|
383 |
-
#: bws_menu.php:
|
384 |
msgid "Server"
|
385 |
msgstr "Server"
|
386 |
|
387 |
-
#: bws_menu.php:
|
388 |
msgid "Memory usage"
|
389 |
msgstr "Upotreba memorije"
|
390 |
|
391 |
-
#: bws_menu.php:
|
392 |
msgid "MYSQL Version"
|
393 |
msgstr "MYSQL Verzija"
|
394 |
|
395 |
-
#: bws_menu.php:
|
396 |
msgid "SQL Mode"
|
397 |
msgstr "SQL način"
|
398 |
|
399 |
-
#: bws_menu.php:
|
400 |
msgid "PHP Version"
|
401 |
msgstr "PHP Verzija"
|
402 |
|
403 |
-
#: bws_menu.php:
|
404 |
msgid "PHP Safe Mode"
|
405 |
msgstr "PHP Sigurni način"
|
406 |
|
407 |
-
#: bws_menu.php:
|
408 |
msgid "PHP Allow URL fopen"
|
409 |
msgstr "PHP Dozvoli URL fopen"
|
410 |
|
411 |
-
#: bws_menu.php:
|
412 |
msgid "PHP Memory Limit"
|
413 |
msgstr "PHP Ograničenje memorije"
|
414 |
|
415 |
-
#: bws_menu.php:
|
416 |
#, fuzzy
|
417 |
msgid "PHP Max Upload Size"
|
418 |
msgstr "Envoi de fichier"
|
419 |
|
420 |
-
#: bws_menu.php:
|
421 |
msgid "PHP Max Post Size"
|
422 |
msgstr "PHP Max veličina za učitavanje"
|
423 |
|
424 |
-
#: bws_menu.php:
|
425 |
msgid "PHP Max Script Execute Time"
|
426 |
msgstr "PHP Max veličina posta"
|
427 |
|
428 |
-
#: bws_menu.php:
|
429 |
msgid "PHP Exif support"
|
430 |
msgstr "PHP Exif podrška"
|
431 |
|
432 |
-
#: bws_menu.php:
|
433 |
msgid "PHP IPTC support"
|
434 |
msgstr "PHP IPTC podrška"
|
435 |
|
436 |
-
#: bws_menu.php:
|
437 |
msgid "PHP XML support"
|
438 |
msgstr "PHP XML podrška"
|
439 |
|
440 |
-
#: bws_menu.php:
|
441 |
#, fuzzy
|
442 |
msgid "Site URL"
|
443 |
msgstr "URL du lien"
|
444 |
|
445 |
-
#: bws_menu.php:
|
446 |
msgid "Home URL"
|
447 |
msgstr "URL naslovne"
|
448 |
|
449 |
-
#: bws_menu.php:
|
450 |
msgid "WordPress Version"
|
451 |
msgstr "WordPress Verzija"
|
452 |
|
453 |
-
#: bws_menu.php:
|
454 |
msgid "WordPress DB Version"
|
455 |
msgstr "WordPress DB Verzija"
|
456 |
|
457 |
-
#: bws_menu.php:
|
458 |
msgid "Multisite"
|
459 |
msgstr "Višenamenski sajt"
|
460 |
|
461 |
-
#: bws_menu.php:
|
462 |
msgid "Active Theme"
|
463 |
msgstr "Aktivna tema"
|
464 |
|
465 |
-
#: bws_menu.php:
|
466 |
msgid "Please enter a valid email address."
|
467 |
msgstr "Molimo unesite važeću mejl adresu"
|
468 |
|
469 |
-
#: bws_menu.php:
|
470 |
msgid "Email with system info is sent to "
|
471 |
msgstr "Mejl sa sistemskim informacijama je poslat na"
|
472 |
|
473 |
-
#: bws_menu.php:
|
474 |
msgid "Thank you for contacting us."
|
475 |
msgstr "Hvala što ste nas kontaktirali"
|
476 |
|
477 |
-
#: bws_menu.php:
|
478 |
msgid "Sorry, email message could not be delivered."
|
479 |
msgstr "Nažalost mejl poruka nije prosleđena"
|
480 |
|
481 |
-
#: bws_menu.php:
|
482 |
msgid "Need help?"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: bws_menu.php:
|
486 |
msgid "Client area"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: bws_menu.php:
|
490 |
-
#: bws_menu.php:
|
491 |
msgid "System status"
|
492 |
msgstr "Sistemski status"
|
493 |
|
494 |
-
#: bws_menu.php:
|
495 |
#, fuzzy
|
496 |
msgid "Plugins"
|
497 |
msgstr "Pro moduli"
|
498 |
|
499 |
-
#: bws_menu.php:
|
500 |
msgid "Themes"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: bws_menu.php:
|
504 |
msgid "All"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: bws_menu.php:
|
508 |
#, fuzzy
|
509 |
msgid "Installed"
|
510 |
msgstr "Instalacija %s"
|
511 |
|
512 |
-
#: bws_menu.php:
|
513 |
#, fuzzy
|
514 |
msgid "Recommended"
|
515 |
msgstr "Preporučeni moduli"
|
516 |
|
517 |
-
#: bws_menu.php:
|
518 |
msgid "Installed plugins"
|
519 |
msgstr "Instalirani moduli"
|
520 |
|
521 |
-
#: bws_menu.php:
|
522 |
-
#: bws_menu.php:
|
523 |
msgid "Settings"
|
524 |
msgstr "Podešavanja"
|
525 |
|
526 |
-
#: bws_menu.php:
|
527 |
-
#: bws_menu.php:
|
528 |
#, fuzzy
|
529 |
msgid "Activate this plugin"
|
530 |
msgstr "Aktivirani moduli"
|
531 |
|
532 |
-
#: bws_menu.php:
|
533 |
-
#: bws_menu.php:
|
534 |
-
#: bws_menu.php:
|
535 |
msgid "Go"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: bws_menu.php:
|
539 |
-
#: bws_menu.php:
|
540 |
-
#: bws_menu.php:
|
541 |
msgid "DONATE"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: bws_menu.php:
|
545 |
msgid "Recommended plugins"
|
546 |
msgstr "Preporučeni moduli"
|
547 |
|
548 |
-
#: bws_menu.php:
|
549 |
#, fuzzy
|
550 |
msgid "Install now"
|
551 |
msgstr "Instalacija %s"
|
552 |
|
553 |
-
#: bws_menu.php:
|
554 |
msgid "Try again"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: bws_menu.php:
|
558 |
#, php-format
|
559 |
msgid "Preview “%s”"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: bws_menu.php:
|
563 |
#, php-format
|
564 |
msgid "Install %s"
|
565 |
msgstr "Instalacija %s"
|
566 |
|
567 |
-
#: bws_menu.php:
|
568 |
#, fuzzy
|
569 |
msgid "Install Now"
|
570 |
msgstr "Instalacija %s"
|
571 |
|
572 |
-
#: bws_menu.php:
|
573 |
#, php-format
|
574 |
msgid "Update to version %s"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: bws_menu.php:
|
578 |
#, fuzzy
|
579 |
msgid "Update"
|
580 |
msgstr "date"
|
581 |
|
582 |
-
#: bws_menu.php:
|
583 |
#, php-format
|
584 |
msgid "Preview %s"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: bws_menu.php:
|
588 |
msgid "Preview"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: bws_menu.php:
|
592 |
-
#: bws_menu.php:
|
593 |
#, php-format
|
594 |
msgid "By %s"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: bws_menu.php:
|
598 |
msgid "Details"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: bws_menu.php:
|
602 |
#, fuzzy
|
603 |
msgid "Already Installed"
|
604 |
msgstr "Instalacija %s"
|
605 |
|
606 |
-
#: bws_menu.php:
|
607 |
msgid "Environment"
|
608 |
msgstr "Okruženje"
|
609 |
|
610 |
-
#: bws_menu.php:
|
611 |
#, fuzzy
|
612 |
msgid "Active Plugins"
|
613 |
msgstr "Extensions activées"
|
614 |
|
615 |
-
#: bws_menu.php:
|
616 |
#, fuzzy
|
617 |
msgid "Inactive Plugins"
|
618 |
msgstr "Extensions activées"
|
619 |
|
620 |
-
#: bws_menu.php:
|
621 |
#, fuzzy
|
622 |
msgid "Send to support"
|
623 |
msgstr "Soutien"
|
624 |
|
625 |
-
#: bws_menu.php:
|
626 |
msgid "Send to custom email »"
|
627 |
msgstr "Pošalji na korisnički mejl »"
|
628 |
|
@@ -980,9 +1040,6 @@ msgstr "Pošalji na korisnički mejl »"
|
|
980 |
#~ msgid "Google +1"
|
981 |
#~ msgstr "Google +1"
|
982 |
|
983 |
-
#~ msgid "Save Changes"
|
984 |
-
#~ msgstr "Sačuvaj izmene"
|
985 |
-
|
986 |
#~ msgid "FAQ"
|
987 |
#~ msgstr "FAQ"
|
988 |
|
@@ -998,9 +1055,6 @@ msgstr "Pošalji na korisnički mejl »"
|
|
998 |
#~ msgid "Image"
|
999 |
#~ msgstr "Slika"
|
1000 |
|
1001 |
-
#~ msgid "Add New"
|
1002 |
-
#~ msgstr "Ajouter"
|
1003 |
-
|
1004 |
#~ msgid "Search Galleries"
|
1005 |
#~ msgstr "Rechercher une galerie"
|
1006 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-17 16:00+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-09-17 16:00+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Andrijana Nikolic <andrijanan@webhostinggeeks.com>\n"
|
9 |
"Language: fr_FR\n"
|
17 |
"X-Generator: Poedit 1.5.4\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: bws_functions.php:29
|
21 |
+
#: bws_functions.php:53
|
22 |
msgid "requires"
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: bws_functions.php:31
|
26 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: bws_functions.php:32
|
30 |
msgid "Back to the WordPress"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: bws_functions.php:34
|
34 |
#, fuzzy
|
35 |
msgid "Plugins page"
|
36 |
msgstr "Pro moduli"
|
37 |
|
38 |
+
#: bws_functions.php:55
|
39 |
+
msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: bws_functions.php:112
|
43 |
msgid "It’s time to upgrade your"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: bws_functions.php:112
|
47 |
#, fuzzy
|
48 |
msgid "to"
|
49 |
msgstr "vrh"
|
50 |
|
51 |
+
#: bws_functions.php:112
|
52 |
#, fuzzy
|
53 |
msgid "version!"
|
54 |
msgstr "PHP Verzija"
|
55 |
|
56 |
+
#: bws_functions.php:113
|
57 |
msgid "Extend standard plugin functionality with new great options."
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: bws_functions.php:116
|
61 |
+
#: bws_functions.php:513
|
62 |
#, fuzzy
|
63 |
msgid "Learn More"
|
64 |
msgstr "Pročitaj više"
|
65 |
|
66 |
+
#: bws_functions.php:133
|
67 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: bws_functions.php:134
|
71 |
#, fuzzy
|
72 |
msgid "Rate the plugin"
|
73 |
msgstr "Aktivirani moduli"
|
74 |
|
75 |
+
#: bws_functions.php:137
|
76 |
#, fuzzy
|
77 |
msgid "If there is something wrong about it, please contact us"
|
78 |
msgstr "Ako imate pitanja molimo da nas kontaktirate preko"
|
79 |
|
80 |
+
#: bws_functions.php:154
|
81 |
+
#: bws_functions.php:190
|
82 |
msgid "Wrong license key"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: bws_functions.php:184
|
86 |
+
#: bws_functions.php:426
|
87 |
+
#: bws_functions.php:477
|
88 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: bws_functions.php:184
|
92 |
+
#: bws_functions.php:426
|
93 |
+
#: bws_functions.php:477
|
94 |
msgid "We are sorry for inconvenience."
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: bws_functions.php:192
|
98 |
msgid "This license key is bind to another site"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: bws_functions.php:194
|
102 |
+
#: bws_functions.php:336
|
103 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: bws_functions.php:196
|
107 |
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: bws_functions.php:198
|
111 |
+
msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: bws_functions.php:219
|
115 |
+
#: bws_functions.php:241
|
116 |
+
#: bws_functions.php:263
|
117 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: bws_functions.php:231
|
121 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: bws_functions.php:237
|
125 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: bws_functions.php:244
|
129 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: bws_functions.php:267
|
133 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: bws_functions.php:292
|
137 |
msgid "Please, enter Your license key"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: bws_functions.php:309
|
141 |
+
msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: bws_functions.php:311
|
145 |
+
#: bws_functions.php:393
|
146 |
msgid "Please, go to"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: bws_functions.php:311
|
150 |
+
#: bws_functions.php:393
|
151 |
#, fuzzy
|
152 |
msgid "the setting page"
|
153 |
msgstr "na stranici za podešavanje modula ("
|
154 |
|
155 |
+
#: bws_functions.php:312
|
156 |
+
#: bws_functions.php:394
|
157 |
msgid "You will be redirected automatically in 5 seconds."
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: bws_functions.php:317
|
161 |
msgid "You can download and activate"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: bws_functions.php:319
|
165 |
msgid "version of this plugin by entering Your license key."
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: bws_functions.php:321
|
169 |
+
#: bws_functions.php:362
|
170 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: bws_functions.php:323
|
174 |
+
#: bws_functions.php:364
|
175 |
msgid "(your username is the email you specify when purchasing the product)."
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: bws_functions.php:327
|
179 |
+
#: bws_functions.php:630
|
180 |
msgid "or"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: bws_functions.php:327
|
184 |
#, php-format
|
185 |
msgid "Start Your Free %s-Day Trial Now"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: bws_functions.php:333
|
189 |
+
#: bws_functions.php:342
|
190 |
+
#: bws_functions.php:372
|
191 |
+
#: bws_functions.php:380
|
192 |
+
#: bws_menu.php:693
|
193 |
+
#: bws_menu.php:750
|
194 |
#, fuzzy
|
195 |
msgid "Activate"
|
196 |
msgstr "Aktivirani moduli"
|
197 |
|
198 |
+
#: bws_functions.php:359
|
199 |
+
#: bws_functions.php:452
|
200 |
#, php-format
|
201 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: bws_functions.php:360
|
205 |
msgid "After that you can activate it by entering your license key."
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: bws_functions.php:374
|
209 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: bws_functions.php:391
|
213 |
+
msgid "Congratulations! The Pro license of the plugin is successfully activated."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: bws_functions.php:432
|
217 |
msgid "Wrong license key."
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: bws_functions.php:434
|
221 |
msgid "This license key is bind to another site."
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: bws_functions.php:436
|
225 |
msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: bws_functions.php:438
|
229 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: bws_functions.php:440
|
233 |
+
msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: bws_functions.php:444
|
237 |
+
msgid "The Pro Trial license key is valid."
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: bws_functions.php:446
|
241 |
msgid "The license key is valid."
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: bws_functions.php:449
|
245 |
msgid "Your license will expire on"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: bws_functions.php:482
|
249 |
msgid "Please, enter your license key"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: bws_functions.php:495
|
253 |
msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: bws_functions.php:495
|
257 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: bws_functions.php:499
|
261 |
msgid "Check license key"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: bws_functions.php:513
|
265 |
msgid "WARNING: Illegal use notification"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: bws_functions.php:513
|
269 |
msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: bws_functions.php:521
|
273 |
+
msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: bws_functions.php:523
|
277 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: bws_functions.php:523
|
281 |
+
#: bws_functions.php:576
|
282 |
+
#: bws_menu.php:669
|
283 |
+
#: bws_menu.php:691
|
284 |
+
#: bws_menu.php:718
|
285 |
+
#: bws_menu.php:748
|
286 |
+
#: bws_menu.php:794
|
287 |
#, fuzzy
|
288 |
msgid "Learn more"
|
289 |
msgstr "Pročitaj više"
|
290 |
|
291 |
+
#: bws_functions.php:533
|
292 |
#, php-format
|
293 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: bws_functions.php:535
|
297 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: bws_functions.php:538
|
301 |
+
msgid "The Pro Trial license will expire on"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: bws_functions.php:576
|
305 |
msgid "You license for"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: bws_functions.php:576
|
309 |
msgid "expires on"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: bws_functions.php:576
|
313 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: bws_functions.php:626
|
317 |
+
#, fuzzy
|
318 |
+
msgid "Thank you for installing"
|
319 |
+
msgstr "Hvala što ste nas kontaktirali"
|
320 |
+
|
321 |
+
#: bws_functions.php:627
|
322 |
+
msgid "Let's get started"
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: bws_functions.php:628
|
326 |
+
#, fuzzy
|
327 |
+
msgid "Configure Settings"
|
328 |
+
msgstr "na stranici za podešavanje modula ("
|
329 |
+
|
330 |
+
#: bws_functions.php:631
|
331 |
+
msgid "Add New"
|
332 |
+
msgstr "Ajouter"
|
333 |
+
|
334 |
+
#: bws_functions.php:635
|
335 |
+
msgid "Close notice"
|
336 |
+
msgstr ""
|
337 |
+
|
338 |
+
#: bws_functions.php:648
|
339 |
+
msgid "Notice"
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
#: bws_functions.php:648
|
343 |
+
msgid "The plugin's settings have been changed."
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
+
#: bws_functions.php:649
|
347 |
+
msgid "Save Changes"
|
348 |
+
msgstr "Sačuvaj izmene"
|
349 |
+
|
350 |
+
#: bws_functions.php:694
|
351 |
+
msgid "Add BWS Plugins Shortcode"
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#: bws_functions.php:738
|
355 |
msgid "Close"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: bws_functions.php:829
|
|
|
359 |
msgid "Restore all plugin settings to defaults"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: bws_functions.php:831
|
|
|
363 |
#, fuzzy
|
364 |
msgid "Restore settings"
|
365 |
msgstr "na stranici za podešavanje modula ("
|
366 |
|
367 |
+
#: bws_functions.php:842
|
368 |
msgid "Are you sure you want to restore all settings by default?"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: bws_functions.php:845
|
372 |
msgid "Yes, restore all settings"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: bws_functions.php:846
|
376 |
#, fuzzy
|
377 |
msgid "No, go back to the settings page"
|
378 |
msgstr "na stranici za podešavanje modula ("
|
379 |
|
380 |
+
#: bws_functions.php:890
|
381 |
+
#, fuzzy
|
382 |
+
msgid "Plugin"
|
383 |
+
msgstr "Pro moduli"
|
384 |
+
|
385 |
+
#: bws_functions.php:899
|
386 |
+
#, fuzzy
|
387 |
+
msgid "Shortcode settings"
|
388 |
+
msgstr "na stranici za podešavanje modula ("
|
389 |
+
|
390 |
+
#: bws_functions.php:904
|
391 |
+
msgid "The shortcode will be inserted"
|
392 |
+
msgstr ""
|
393 |
+
|
394 |
+
#: bws_functions.php:909
|
395 |
+
msgid "Insert"
|
396 |
+
msgstr ""
|
397 |
+
|
398 |
+
#: bws_menu.php:506
|
399 |
msgid "Not set"
|
400 |
msgstr "Nije podešeno"
|
401 |
|
402 |
+
#: bws_menu.php:508
|
403 |
+
#: bws_menu.php:509
|
404 |
msgid "On"
|
405 |
msgstr "Uključeno"
|
406 |
|
407 |
+
#: bws_menu.php:508
|
408 |
+
#: bws_menu.php:509
|
409 |
msgid "Off"
|
410 |
msgstr "Isključeno"
|
411 |
|
412 |
+
#: bws_menu.php:510
|
413 |
+
#: bws_menu.php:511
|
414 |
+
#: bws_menu.php:512
|
415 |
+
#: bws_menu.php:513
|
416 |
+
#: bws_menu.php:514
|
417 |
+
#: bws_menu.php:526
|
418 |
msgid "N/A"
|
419 |
msgstr "N/A"
|
420 |
|
421 |
+
#: bws_menu.php:514
|
422 |
msgid " Mb"
|
423 |
msgstr " Mb"
|
424 |
|
425 |
+
#: bws_menu.php:515
|
426 |
+
#: bws_menu.php:516
|
427 |
+
#: bws_menu.php:517
|
428 |
+
#: bws_menu.php:522
|
429 |
msgid "Yes"
|
430 |
msgstr "Da"
|
431 |
|
432 |
+
#: bws_menu.php:515
|
433 |
+
#: bws_menu.php:516
|
434 |
+
#: bws_menu.php:517
|
435 |
+
#: bws_menu.php:524
|
436 |
msgid "No"
|
437 |
msgstr "Ne"
|
438 |
|
439 |
+
#: bws_menu.php:534
|
440 |
msgid "Operating System"
|
441 |
msgstr "Operativni Sistem"
|
442 |
|
443 |
+
#: bws_menu.php:535
|
444 |
msgid "Server"
|
445 |
msgstr "Server"
|
446 |
|
447 |
+
#: bws_menu.php:536
|
448 |
msgid "Memory usage"
|
449 |
msgstr "Upotreba memorije"
|
450 |
|
451 |
+
#: bws_menu.php:537
|
452 |
msgid "MYSQL Version"
|
453 |
msgstr "MYSQL Verzija"
|
454 |
|
455 |
+
#: bws_menu.php:538
|
456 |
msgid "SQL Mode"
|
457 |
msgstr "SQL način"
|
458 |
|
459 |
+
#: bws_menu.php:539
|
460 |
msgid "PHP Version"
|
461 |
msgstr "PHP Verzija"
|
462 |
|
463 |
+
#: bws_menu.php:540
|
464 |
msgid "PHP Safe Mode"
|
465 |
msgstr "PHP Sigurni način"
|
466 |
|
467 |
+
#: bws_menu.php:541
|
468 |
msgid "PHP Allow URL fopen"
|
469 |
msgstr "PHP Dozvoli URL fopen"
|
470 |
|
471 |
+
#: bws_menu.php:542
|
472 |
msgid "PHP Memory Limit"
|
473 |
msgstr "PHP Ograničenje memorije"
|
474 |
|
475 |
+
#: bws_menu.php:543
|
476 |
#, fuzzy
|
477 |
msgid "PHP Max Upload Size"
|
478 |
msgstr "Envoi de fichier"
|
479 |
|
480 |
+
#: bws_menu.php:544
|
481 |
msgid "PHP Max Post Size"
|
482 |
msgstr "PHP Max veličina za učitavanje"
|
483 |
|
484 |
+
#: bws_menu.php:545
|
485 |
msgid "PHP Max Script Execute Time"
|
486 |
msgstr "PHP Max veličina posta"
|
487 |
|
488 |
+
#: bws_menu.php:546
|
489 |
msgid "PHP Exif support"
|
490 |
msgstr "PHP Exif podrška"
|
491 |
|
492 |
+
#: bws_menu.php:547
|
493 |
msgid "PHP IPTC support"
|
494 |
msgstr "PHP IPTC podrška"
|
495 |
|
496 |
+
#: bws_menu.php:548
|
497 |
msgid "PHP XML support"
|
498 |
msgstr "PHP XML podrška"
|
499 |
|
500 |
+
#: bws_menu.php:549
|
501 |
#, fuzzy
|
502 |
msgid "Site URL"
|
503 |
msgstr "URL du lien"
|
504 |
|
505 |
+
#: bws_menu.php:550
|
506 |
msgid "Home URL"
|
507 |
msgstr "URL naslovne"
|
508 |
|
509 |
+
#: bws_menu.php:553
|
510 |
msgid "WordPress Version"
|
511 |
msgstr "WordPress Verzija"
|
512 |
|
513 |
+
#: bws_menu.php:554
|
514 |
msgid "WordPress DB Version"
|
515 |
msgstr "WordPress DB Verzija"
|
516 |
|
517 |
+
#: bws_menu.php:555
|
518 |
msgid "Multisite"
|
519 |
msgstr "Višenamenski sajt"
|
520 |
|
521 |
+
#: bws_menu.php:556
|
522 |
msgid "Active Theme"
|
523 |
msgstr "Aktivna tema"
|
524 |
|
525 |
+
#: bws_menu.php:571
|
526 |
msgid "Please enter a valid email address."
|
527 |
msgstr "Molimo unesite važeću mejl adresu"
|
528 |
|
529 |
+
#: bws_menu.php:575
|
530 |
msgid "Email with system info is sent to "
|
531 |
msgstr "Mejl sa sistemskim informacijama je poslat na"
|
532 |
|
533 |
+
#: bws_menu.php:579
|
534 |
msgid "Thank you for contacting us."
|
535 |
msgstr "Hvala što ste nas kontaktirali"
|
536 |
|
537 |
+
#: bws_menu.php:612
|
538 |
msgid "Sorry, email message could not be delivered."
|
539 |
msgstr "Nažalost mejl poruka nije prosleđena"
|
540 |
|
541 |
+
#: bws_menu.php:620
|
542 |
msgid "Need help?"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: bws_menu.php:621
|
546 |
msgid "Client area"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: bws_menu.php:622
|
550 |
+
#: bws_menu.php:933
|
551 |
msgid "System status"
|
552 |
msgstr "Sistemski status"
|
553 |
|
554 |
+
#: bws_menu.php:627
|
555 |
#, fuzzy
|
556 |
msgid "Plugins"
|
557 |
msgstr "Pro moduli"
|
558 |
|
559 |
+
#: bws_menu.php:629
|
560 |
msgid "Themes"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: bws_menu.php:634
|
564 |
msgid "All"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: bws_menu.php:635
|
568 |
#, fuzzy
|
569 |
msgid "Installed"
|
570 |
msgstr "Instalacija %s"
|
571 |
|
572 |
+
#: bws_menu.php:636
|
573 |
#, fuzzy
|
574 |
msgid "Recommended"
|
575 |
msgstr "Preporučeni moduli"
|
576 |
|
577 |
+
#: bws_menu.php:640
|
578 |
msgid "Installed plugins"
|
579 |
msgstr "Instalirani moduli"
|
580 |
|
581 |
+
#: bws_menu.php:672
|
582 |
+
#: bws_menu.php:721
|
583 |
msgid "Settings"
|
584 |
msgstr "Podešavanja"
|
585 |
|
586 |
+
#: bws_menu.php:693
|
587 |
+
#: bws_menu.php:750
|
588 |
#, fuzzy
|
589 |
msgid "Activate this plugin"
|
590 |
msgstr "Aktivirani moduli"
|
591 |
|
592 |
+
#: bws_menu.php:708
|
593 |
+
#: bws_menu.php:738
|
594 |
+
#: bws_menu.php:784
|
595 |
msgid "Go"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: bws_menu.php:712
|
599 |
+
#: bws_menu.php:742
|
600 |
+
#: bws_menu.php:788
|
601 |
msgid "DONATE"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: bws_menu.php:758
|
605 |
msgid "Recommended plugins"
|
606 |
msgstr "Preporučeni moduli"
|
607 |
|
608 |
+
#: bws_menu.php:796
|
609 |
#, fuzzy
|
610 |
msgid "Install now"
|
611 |
msgstr "Instalacija %s"
|
612 |
|
613 |
+
#: bws_menu.php:817
|
614 |
msgid "Try again"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: bws_menu.php:835
|
618 |
#, php-format
|
619 |
msgid "Preview “%s”"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: bws_menu.php:866
|
623 |
#, php-format
|
624 |
msgid "Install %s"
|
625 |
msgstr "Instalacija %s"
|
626 |
|
627 |
+
#: bws_menu.php:866
|
628 |
#, fuzzy
|
629 |
msgid "Install Now"
|
630 |
msgstr "Instalacija %s"
|
631 |
|
632 |
+
#: bws_menu.php:869
|
633 |
#, php-format
|
634 |
msgid "Update to version %s"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: bws_menu.php:869
|
638 |
#, fuzzy
|
639 |
msgid "Update"
|
640 |
msgstr "date"
|
641 |
|
642 |
+
#: bws_menu.php:876
|
643 |
#, php-format
|
644 |
msgid "Preview %s"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: bws_menu.php:876
|
648 |
msgid "Preview"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: bws_menu.php:882
|
652 |
+
#: bws_menu.php:914
|
653 |
#, php-format
|
654 |
msgid "By %s"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: bws_menu.php:888
|
658 |
msgid "Details"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: bws_menu.php:920
|
662 |
#, fuzzy
|
663 |
msgid "Already Installed"
|
664 |
msgstr "Instalacija %s"
|
665 |
|
666 |
+
#: bws_menu.php:936
|
667 |
msgid "Environment"
|
668 |
msgstr "Okruženje"
|
669 |
|
670 |
+
#: bws_menu.php:947
|
671 |
#, fuzzy
|
672 |
msgid "Active Plugins"
|
673 |
msgstr "Extensions activées"
|
674 |
|
675 |
+
#: bws_menu.php:960
|
676 |
#, fuzzy
|
677 |
msgid "Inactive Plugins"
|
678 |
msgstr "Extensions activées"
|
679 |
|
680 |
+
#: bws_menu.php:976
|
681 |
#, fuzzy
|
682 |
msgid "Send to support"
|
683 |
msgstr "Soutien"
|
684 |
|
685 |
+
#: bws_menu.php:983
|
686 |
msgid "Send to custom email »"
|
687 |
msgstr "Pošalji na korisnički mejl »"
|
688 |
|
1040 |
#~ msgid "Google +1"
|
1041 |
#~ msgstr "Google +1"
|
1042 |
|
|
|
|
|
|
|
1043 |
#~ msgid "FAQ"
|
1044 |
#~ msgstr "FAQ"
|
1045 |
|
1055 |
#~ msgid "Image"
|
1056 |
#~ msgstr "Slika"
|
1057 |
|
|
|
|
|
|
|
1058 |
#~ msgid "Search Galleries"
|
1059 |
#~ msgstr "Rechercher une galerie"
|
1060 |
|
bws_menu/languages/bestwebsoft-sv_SE.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-sv_SE.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Christer Rönningborg, Blittan <blittan@xbmc.org>\n"
|
9 |
"Language: sv_SE\n"
|
@@ -16,603 +16,663 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: bws_functions.php:
|
|
|
20 |
msgid "requires"
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: bws_functions.php:
|
24 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: bws_functions.php:
|
28 |
msgid "Back to the WordPress"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: bws_functions.php:
|
32 |
#, fuzzy
|
33 |
msgid "Plugins page"
|
34 |
msgstr "Betaltillägg"
|
35 |
|
36 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
37 |
msgid "It’s time to upgrade your"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: bws_functions.php:
|
41 |
#, fuzzy
|
42 |
msgid "to"
|
43 |
msgstr "två"
|
44 |
|
45 |
-
#: bws_functions.php:
|
46 |
#, fuzzy
|
47 |
msgid "version!"
|
48 |
msgstr "PHP-version"
|
49 |
|
50 |
-
#: bws_functions.php:
|
51 |
msgid "Extend standard plugin functionality with new great options."
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: bws_functions.php:
|
55 |
-
#: bws_functions.php:
|
56 |
#, fuzzy
|
57 |
msgid "Learn More"
|
58 |
msgstr "Läs mer"
|
59 |
|
60 |
-
#: bws_functions.php:
|
61 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: bws_functions.php:
|
65 |
#, fuzzy
|
66 |
msgid "Rate the plugin"
|
67 |
msgstr "Aktiverade tillägg"
|
68 |
|
69 |
-
#: bws_functions.php:
|
70 |
#, fuzzy
|
71 |
msgid "If there is something wrong about it, please contact us"
|
72 |
msgstr "Om du har några frågor, kontakta oss via"
|
73 |
|
74 |
-
#: bws_functions.php:
|
75 |
-
#: bws_functions.php:
|
76 |
msgid "Wrong license key"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: bws_functions.php:
|
80 |
-
#: bws_functions.php:
|
81 |
-
#: bws_functions.php:
|
82 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: bws_functions.php:
|
86 |
-
#: bws_functions.php:
|
87 |
-
#: bws_functions.php:
|
88 |
msgid "We are sorry for inconvenience."
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: bws_functions.php:
|
92 |
msgid "This license key is bind to another site"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: bws_functions.php:
|
96 |
-
#: bws_functions.php:
|
97 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: bws_functions.php:
|
101 |
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: bws_functions.php:
|
105 |
-
msgid "Unfortunately, the
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: bws_functions.php:
|
109 |
-
#: bws_functions.php:
|
110 |
-
#: bws_functions.php:
|
111 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: bws_functions.php:
|
115 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: bws_functions.php:
|
119 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: bws_functions.php:
|
123 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: bws_functions.php:
|
127 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: bws_functions.php:
|
131 |
msgid "Please, enter Your license key"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: bws_functions.php:
|
135 |
-
msgid "Congratulations! The
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: bws_functions.php:
|
139 |
-
#: bws_functions.php:
|
140 |
msgid "Please, go to"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: bws_functions.php:
|
144 |
-
#: bws_functions.php:
|
145 |
msgid "the setting page"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: bws_functions.php:
|
149 |
-
#: bws_functions.php:
|
150 |
msgid "You will be redirected automatically in 5 seconds."
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: bws_functions.php:
|
154 |
msgid "You can download and activate"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: bws_functions.php:
|
158 |
msgid "version of this plugin by entering Your license key."
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: bws_functions.php:
|
162 |
-
#: bws_functions.php:
|
163 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: bws_functions.php:
|
167 |
-
#: bws_functions.php:
|
168 |
msgid "(your username is the email you specify when purchasing the product)."
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: bws_functions.php:
|
|
|
172 |
#, fuzzy
|
173 |
msgid "or"
|
174 |
msgstr "fyra"
|
175 |
|
176 |
-
#: bws_functions.php:
|
177 |
#, php-format
|
178 |
msgid "Start Your Free %s-Day Trial Now"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: bws_functions.php:
|
182 |
-
#: bws_functions.php:
|
183 |
-
#: bws_functions.php:
|
184 |
-
#: bws_functions.php:
|
185 |
-
#: bws_menu.php:
|
186 |
-
#: bws_menu.php:
|
187 |
#, fuzzy
|
188 |
msgid "Activate"
|
189 |
msgstr "Aktiverade tillägg"
|
190 |
|
191 |
-
#: bws_functions.php:
|
192 |
-
#: bws_functions.php:
|
193 |
#, php-format
|
194 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: bws_functions.php:
|
198 |
msgid "After that you can activate it by entering your license key."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: bws_functions.php:
|
202 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: bws_functions.php:
|
206 |
-
msgid "Congratulations! The
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: bws_functions.php:
|
210 |
msgid "Wrong license key."
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: bws_functions.php:
|
214 |
msgid "This license key is bind to another site."
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: bws_functions.php:
|
218 |
msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: bws_functions.php:
|
222 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: bws_functions.php:
|
226 |
-
msgid "Unfortunately, the
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: bws_functions.php:
|
230 |
-
msgid "The
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: bws_functions.php:
|
234 |
msgid "The license key is valid."
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: bws_functions.php:
|
238 |
msgid "Your license will expire on"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: bws_functions.php:
|
242 |
msgid "Please, enter your license key"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: bws_functions.php:
|
246 |
msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: bws_functions.php:
|
250 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: bws_functions.php:
|
254 |
msgid "Check license key"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: bws_functions.php:
|
258 |
msgid "WARNING: Illegal use notification"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: bws_functions.php:
|
262 |
msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: bws_functions.php:
|
266 |
-
msgid "Notice: Your
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: bws_functions.php:
|
270 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: bws_functions.php:
|
274 |
-
#: bws_functions.php:
|
275 |
-
#: bws_menu.php:
|
276 |
-
#: bws_menu.php:
|
277 |
-
#: bws_menu.php:
|
278 |
-
#: bws_menu.php:
|
279 |
-
#: bws_menu.php:
|
280 |
#, fuzzy
|
281 |
msgid "Learn more"
|
282 |
msgstr "Läs mer"
|
283 |
|
284 |
-
#: bws_functions.php:
|
285 |
#, php-format
|
286 |
-
msgid "Notice: You are using the
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: bws_functions.php:
|
290 |
-
msgid "Notice: You are using the
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: bws_functions.php:
|
294 |
-
msgid "The
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: bws_functions.php:
|
298 |
msgid "You license for"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: bws_functions.php:
|
302 |
msgid "expires on"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: bws_functions.php:
|
306 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
310 |
msgid "Close"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: bws_functions.php:
|
314 |
-
#: bws_functions.php:784
|
315 |
msgid "Restore all plugin settings to defaults"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: bws_functions.php:
|
319 |
-
#: bws_functions.php:786
|
320 |
msgid "Restore settings"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: bws_functions.php:
|
324 |
msgid "Are you sure you want to restore all settings by default?"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: bws_functions.php:
|
328 |
msgid "Yes, restore all settings"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: bws_functions.php:
|
332 |
msgid "No, go back to the settings page"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
336 |
msgid "Not set"
|
337 |
msgstr "Inte angiven"
|
338 |
|
339 |
-
#: bws_menu.php:
|
340 |
-
#: bws_menu.php:
|
341 |
msgid "On"
|
342 |
msgstr "På"
|
343 |
|
344 |
-
#: bws_menu.php:
|
345 |
-
#: bws_menu.php:
|
346 |
msgid "Off"
|
347 |
msgstr "Av"
|
348 |
|
349 |
-
#: bws_menu.php:
|
350 |
-
#: bws_menu.php:
|
351 |
-
#: bws_menu.php:
|
352 |
-
#: bws_menu.php:
|
353 |
-
#: bws_menu.php:
|
354 |
-
#: bws_menu.php:
|
355 |
msgid "N/A"
|
356 |
msgstr "Finns ej"
|
357 |
|
358 |
-
#: bws_menu.php:
|
359 |
msgid " Mb"
|
360 |
msgstr " Mb"
|
361 |
|
362 |
-
#: bws_menu.php:
|
363 |
-
#: bws_menu.php:
|
364 |
-
#: bws_menu.php:
|
365 |
-
#: bws_menu.php:
|
366 |
msgid "Yes"
|
367 |
msgstr "Ja"
|
368 |
|
369 |
-
#: bws_menu.php:
|
370 |
-
#: bws_menu.php:
|
371 |
-
#: bws_menu.php:
|
372 |
-
#: bws_menu.php:
|
373 |
msgid "No"
|
374 |
msgstr "Nej"
|
375 |
|
376 |
-
#: bws_menu.php:
|
377 |
msgid "Operating System"
|
378 |
msgstr "Operativsystem"
|
379 |
|
380 |
-
#: bws_menu.php:
|
381 |
msgid "Server"
|
382 |
msgstr "Server"
|
383 |
|
384 |
-
#: bws_menu.php:
|
385 |
msgid "Memory usage"
|
386 |
msgstr "Minnesanvändning"
|
387 |
|
388 |
-
#: bws_menu.php:
|
389 |
msgid "MYSQL Version"
|
390 |
msgstr "MySQL-version"
|
391 |
|
392 |
-
#: bws_menu.php:
|
393 |
msgid "SQL Mode"
|
394 |
msgstr "SQL-läge"
|
395 |
|
396 |
-
#: bws_menu.php:
|
397 |
msgid "PHP Version"
|
398 |
msgstr "PHP-version"
|
399 |
|
400 |
-
#: bws_menu.php:
|
401 |
msgid "PHP Safe Mode"
|
402 |
msgstr "PHP säkert läge"
|
403 |
|
404 |
-
#: bws_menu.php:
|
405 |
msgid "PHP Allow URL fopen"
|
406 |
msgstr "PHP tillåt URL fopen"
|
407 |
|
408 |
-
#: bws_menu.php:
|
409 |
msgid "PHP Memory Limit"
|
410 |
msgstr "PHP Minnesgräns"
|
411 |
|
412 |
-
#: bws_menu.php:
|
413 |
msgid "PHP Max Upload Size"
|
414 |
msgstr "PHP Max uppladdningstorlek"
|
415 |
|
416 |
-
#: bws_menu.php:
|
417 |
msgid "PHP Max Post Size"
|
418 |
msgstr "PHP Max poststorlek"
|
419 |
|
420 |
-
#: bws_menu.php:
|
421 |
msgid "PHP Max Script Execute Time"
|
422 |
msgstr "PHP Max skriptexekverinstid"
|
423 |
|
424 |
-
#: bws_menu.php:
|
425 |
msgid "PHP Exif support"
|
426 |
msgstr "PHP Exifstöd"
|
427 |
|
428 |
-
#: bws_menu.php:
|
429 |
msgid "PHP IPTC support"
|
430 |
msgstr "PHP ITPC-stöd"
|
431 |
|
432 |
-
#: bws_menu.php:
|
433 |
msgid "PHP XML support"
|
434 |
msgstr "PHP XML-stöd"
|
435 |
|
436 |
-
#: bws_menu.php:
|
437 |
msgid "Site URL"
|
438 |
msgstr "SajtURL"
|
439 |
|
440 |
-
#: bws_menu.php:
|
441 |
msgid "Home URL"
|
442 |
msgstr "HemURL"
|
443 |
|
444 |
-
#: bws_menu.php:
|
445 |
msgid "WordPress Version"
|
446 |
msgstr "WordPress-version"
|
447 |
|
448 |
-
#: bws_menu.php:
|
449 |
msgid "WordPress DB Version"
|
450 |
msgstr "WordPress-DB-version"
|
451 |
|
452 |
-
#: bws_menu.php:
|
453 |
msgid "Multisite"
|
454 |
msgstr "Multisajt"
|
455 |
|
456 |
-
#: bws_menu.php:
|
457 |
msgid "Active Theme"
|
458 |
msgstr "Aktivt tema"
|
459 |
|
460 |
-
#: bws_menu.php:
|
461 |
msgid "Please enter a valid email address."
|
462 |
msgstr "Var god ange en giltig epost-adress."
|
463 |
|
464 |
-
#: bws_menu.php:
|
465 |
msgid "Email with system info is sent to "
|
466 |
msgstr "Epost med systeminfo är skickat till"
|
467 |
|
468 |
-
#: bws_menu.php:
|
469 |
msgid "Thank you for contacting us."
|
470 |
msgstr "Tack för att du kontaktade oss."
|
471 |
|
472 |
-
#: bws_menu.php:
|
473 |
msgid "Sorry, email message could not be delivered."
|
474 |
msgstr "Ledsen, eposten kunde inte levereras."
|
475 |
|
476 |
-
#: bws_menu.php:
|
477 |
msgid "Need help?"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: bws_menu.php:
|
481 |
msgid "Client area"
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: bws_menu.php:
|
485 |
-
#: bws_menu.php:
|
486 |
msgid "System status"
|
487 |
msgstr "Systemstatus"
|
488 |
|
489 |
-
#: bws_menu.php:
|
490 |
#, fuzzy
|
491 |
msgid "Plugins"
|
492 |
msgstr "Betaltillägg"
|
493 |
|
494 |
-
#: bws_menu.php:
|
495 |
msgid "Themes"
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: bws_menu.php:
|
499 |
msgid "All"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: bws_menu.php:
|
503 |
#, fuzzy
|
504 |
msgid "Installed"
|
505 |
msgstr "Installera %s"
|
506 |
|
507 |
-
#: bws_menu.php:
|
508 |
#, fuzzy
|
509 |
msgid "Recommended"
|
510 |
msgstr "Rekommenderade tillägg"
|
511 |
|
512 |
-
#: bws_menu.php:
|
513 |
msgid "Installed plugins"
|
514 |
msgstr "Installerade tillägg"
|
515 |
|
516 |
-
#: bws_menu.php:
|
517 |
-
#: bws_menu.php:
|
518 |
msgid "Settings"
|
519 |
msgstr "Inställningar"
|
520 |
|
521 |
-
#: bws_menu.php:
|
522 |
-
#: bws_menu.php:
|
523 |
#, fuzzy
|
524 |
msgid "Activate this plugin"
|
525 |
msgstr "Aktiverade tillägg"
|
526 |
|
527 |
-
#: bws_menu.php:
|
528 |
-
#: bws_menu.php:
|
529 |
-
#: bws_menu.php:
|
530 |
msgid "Go"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: bws_menu.php:
|
534 |
-
#: bws_menu.php:
|
535 |
-
#: bws_menu.php:
|
536 |
msgid "DONATE"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: bws_menu.php:
|
540 |
msgid "Recommended plugins"
|
541 |
msgstr "Rekommenderade tillägg"
|
542 |
|
543 |
-
#: bws_menu.php:
|
544 |
#, fuzzy
|
545 |
msgid "Install now"
|
546 |
msgstr "Установить сейчас"
|
547 |
|
548 |
-
#: bws_menu.php:
|
549 |
msgid "Try again"
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: bws_menu.php:
|
553 |
#, php-format
|
554 |
msgid "Preview “%s”"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: bws_menu.php:
|
558 |
#, php-format
|
559 |
msgid "Install %s"
|
560 |
msgstr "Installera %s"
|
561 |
|
562 |
-
#: bws_menu.php:
|
563 |
msgid "Install Now"
|
564 |
msgstr "Установить сейчас"
|
565 |
|
566 |
-
#: bws_menu.php:
|
567 |
#, php-format
|
568 |
msgid "Update to version %s"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: bws_menu.php:
|
572 |
msgid "Update"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: bws_menu.php:
|
576 |
#, php-format
|
577 |
msgid "Preview %s"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: bws_menu.php:
|
581 |
msgid "Preview"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: bws_menu.php:
|
585 |
-
#: bws_menu.php:
|
586 |
#, php-format
|
587 |
msgid "By %s"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: bws_menu.php:
|
591 |
msgid "Details"
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: bws_menu.php:
|
595 |
#, fuzzy
|
596 |
msgid "Already Installed"
|
597 |
msgstr "Installera %s"
|
598 |
|
599 |
-
#: bws_menu.php:
|
600 |
msgid "Environment"
|
601 |
msgstr "Miljövariabler"
|
602 |
|
603 |
-
#: bws_menu.php:
|
604 |
msgid "Active Plugins"
|
605 |
msgstr "Aktiverade tillägg"
|
606 |
|
607 |
-
#: bws_menu.php:
|
608 |
msgid "Inactive Plugins"
|
609 |
msgstr "Inaktiverade tillägg"
|
610 |
|
611 |
-
#: bws_menu.php:
|
612 |
msgid "Send to support"
|
613 |
msgstr "Skicka till support"
|
614 |
|
615 |
-
#: bws_menu.php:
|
616 |
msgid "Send to custom email »"
|
617 |
msgstr "Skicka till anpassad epost »"
|
618 |
|
@@ -750,9 +810,6 @@ msgstr "Skicka till anpassad epost »"
|
|
750 |
#~ msgid "CAPTCHA complexity level"
|
751 |
#~ msgstr "CAPTCHA-svårighetsgrad"
|
752 |
|
753 |
-
#~ msgid "Save Changes"
|
754 |
-
#~ msgstr "Spara ändringar"
|
755 |
-
|
756 |
#~ msgid "ERROR"
|
757 |
#~ msgstr "FEL"
|
758 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-17 16:00+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-09-17 16:00+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Christer Rönningborg, Blittan <blittan@xbmc.org>\n"
|
9 |
"Language: sv_SE\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: bws_functions.php:29
|
20 |
+
#: bws_functions.php:53
|
21 |
msgid "requires"
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: bws_functions.php:31
|
25 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: bws_functions.php:32
|
29 |
msgid "Back to the WordPress"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: bws_functions.php:34
|
33 |
#, fuzzy
|
34 |
msgid "Plugins page"
|
35 |
msgstr "Betaltillägg"
|
36 |
|
37 |
+
#: bws_functions.php:55
|
38 |
+
msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: bws_functions.php:112
|
42 |
msgid "It’s time to upgrade your"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: bws_functions.php:112
|
46 |
#, fuzzy
|
47 |
msgid "to"
|
48 |
msgstr "två"
|
49 |
|
50 |
+
#: bws_functions.php:112
|
51 |
#, fuzzy
|
52 |
msgid "version!"
|
53 |
msgstr "PHP-version"
|
54 |
|
55 |
+
#: bws_functions.php:113
|
56 |
msgid "Extend standard plugin functionality with new great options."
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: bws_functions.php:116
|
60 |
+
#: bws_functions.php:513
|
61 |
#, fuzzy
|
62 |
msgid "Learn More"
|
63 |
msgstr "Läs mer"
|
64 |
|
65 |
+
#: bws_functions.php:133
|
66 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: bws_functions.php:134
|
70 |
#, fuzzy
|
71 |
msgid "Rate the plugin"
|
72 |
msgstr "Aktiverade tillägg"
|
73 |
|
74 |
+
#: bws_functions.php:137
|
75 |
#, fuzzy
|
76 |
msgid "If there is something wrong about it, please contact us"
|
77 |
msgstr "Om du har några frågor, kontakta oss via"
|
78 |
|
79 |
+
#: bws_functions.php:154
|
80 |
+
#: bws_functions.php:190
|
81 |
msgid "Wrong license key"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: bws_functions.php:184
|
85 |
+
#: bws_functions.php:426
|
86 |
+
#: bws_functions.php:477
|
87 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: bws_functions.php:184
|
91 |
+
#: bws_functions.php:426
|
92 |
+
#: bws_functions.php:477
|
93 |
msgid "We are sorry for inconvenience."
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: bws_functions.php:192
|
97 |
msgid "This license key is bind to another site"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: bws_functions.php:194
|
101 |
+
#: bws_functions.php:336
|
102 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: bws_functions.php:196
|
106 |
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: bws_functions.php:198
|
110 |
+
msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: bws_functions.php:219
|
114 |
+
#: bws_functions.php:241
|
115 |
+
#: bws_functions.php:263
|
116 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: bws_functions.php:231
|
120 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: bws_functions.php:237
|
124 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: bws_functions.php:244
|
128 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: bws_functions.php:267
|
132 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: bws_functions.php:292
|
136 |
msgid "Please, enter Your license key"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: bws_functions.php:309
|
140 |
+
msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: bws_functions.php:311
|
144 |
+
#: bws_functions.php:393
|
145 |
msgid "Please, go to"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: bws_functions.php:311
|
149 |
+
#: bws_functions.php:393
|
150 |
msgid "the setting page"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: bws_functions.php:312
|
154 |
+
#: bws_functions.php:394
|
155 |
msgid "You will be redirected automatically in 5 seconds."
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: bws_functions.php:317
|
159 |
msgid "You can download and activate"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: bws_functions.php:319
|
163 |
msgid "version of this plugin by entering Your license key."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: bws_functions.php:321
|
167 |
+
#: bws_functions.php:362
|
168 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: bws_functions.php:323
|
172 |
+
#: bws_functions.php:364
|
173 |
msgid "(your username is the email you specify when purchasing the product)."
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: bws_functions.php:327
|
177 |
+
#: bws_functions.php:630
|
178 |
#, fuzzy
|
179 |
msgid "or"
|
180 |
msgstr "fyra"
|
181 |
|
182 |
+
#: bws_functions.php:327
|
183 |
#, php-format
|
184 |
msgid "Start Your Free %s-Day Trial Now"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: bws_functions.php:333
|
188 |
+
#: bws_functions.php:342
|
189 |
+
#: bws_functions.php:372
|
190 |
+
#: bws_functions.php:380
|
191 |
+
#: bws_menu.php:693
|
192 |
+
#: bws_menu.php:750
|
193 |
#, fuzzy
|
194 |
msgid "Activate"
|
195 |
msgstr "Aktiverade tillägg"
|
196 |
|
197 |
+
#: bws_functions.php:359
|
198 |
+
#: bws_functions.php:452
|
199 |
#, php-format
|
200 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: bws_functions.php:360
|
204 |
msgid "After that you can activate it by entering your license key."
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: bws_functions.php:374
|
208 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: bws_functions.php:391
|
212 |
+
msgid "Congratulations! The Pro license of the plugin is successfully activated."
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: bws_functions.php:432
|
216 |
msgid "Wrong license key."
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: bws_functions.php:434
|
220 |
msgid "This license key is bind to another site."
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: bws_functions.php:436
|
224 |
msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: bws_functions.php:438
|
228 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: bws_functions.php:440
|
232 |
+
msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: bws_functions.php:444
|
236 |
+
msgid "The Pro Trial license key is valid."
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: bws_functions.php:446
|
240 |
msgid "The license key is valid."
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: bws_functions.php:449
|
244 |
msgid "Your license will expire on"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: bws_functions.php:482
|
248 |
msgid "Please, enter your license key"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: bws_functions.php:495
|
252 |
msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: bws_functions.php:495
|
256 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: bws_functions.php:499
|
260 |
msgid "Check license key"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: bws_functions.php:513
|
264 |
msgid "WARNING: Illegal use notification"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: bws_functions.php:513
|
268 |
msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: bws_functions.php:521
|
272 |
+
msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: bws_functions.php:523
|
276 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: bws_functions.php:523
|
280 |
+
#: bws_functions.php:576
|
281 |
+
#: bws_menu.php:669
|
282 |
+
#: bws_menu.php:691
|
283 |
+
#: bws_menu.php:718
|
284 |
+
#: bws_menu.php:748
|
285 |
+
#: bws_menu.php:794
|
286 |
#, fuzzy
|
287 |
msgid "Learn more"
|
288 |
msgstr "Läs mer"
|
289 |
|
290 |
+
#: bws_functions.php:533
|
291 |
#, php-format
|
292 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: bws_functions.php:535
|
296 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: bws_functions.php:538
|
300 |
+
msgid "The Pro Trial license will expire on"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: bws_functions.php:576
|
304 |
msgid "You license for"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: bws_functions.php:576
|
308 |
msgid "expires on"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: bws_functions.php:576
|
312 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: bws_functions.php:626
|
316 |
+
#, fuzzy
|
317 |
+
msgid "Thank you for installing"
|
318 |
+
msgstr "Tack för att du kontaktade oss."
|
319 |
+
|
320 |
+
#: bws_functions.php:627
|
321 |
+
msgid "Let's get started"
|
322 |
+
msgstr ""
|
323 |
+
|
324 |
+
#: bws_functions.php:628
|
325 |
+
#, fuzzy
|
326 |
+
msgid "Configure Settings"
|
327 |
+
msgstr "Inställningar"
|
328 |
+
|
329 |
+
#: bws_functions.php:631
|
330 |
+
msgid "Add New"
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
#: bws_functions.php:635
|
334 |
+
msgid "Close notice"
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: bws_functions.php:648
|
338 |
+
msgid "Notice"
|
339 |
+
msgstr ""
|
340 |
+
|
341 |
+
#: bws_functions.php:648
|
342 |
+
msgid "The plugin's settings have been changed."
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
#: bws_functions.php:649
|
346 |
+
msgid "Save Changes"
|
347 |
+
msgstr "Spara ändringar"
|
348 |
+
|
349 |
+
#: bws_functions.php:694
|
350 |
+
msgid "Add BWS Plugins Shortcode"
|
351 |
+
msgstr ""
|
352 |
+
|
353 |
+
#: bws_functions.php:738
|
354 |
msgid "Close"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: bws_functions.php:829
|
|
|
358 |
msgid "Restore all plugin settings to defaults"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: bws_functions.php:831
|
|
|
362 |
msgid "Restore settings"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: bws_functions.php:842
|
366 |
msgid "Are you sure you want to restore all settings by default?"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: bws_functions.php:845
|
370 |
msgid "Yes, restore all settings"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: bws_functions.php:846
|
374 |
msgid "No, go back to the settings page"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: bws_functions.php:890
|
378 |
+
#, fuzzy
|
379 |
+
msgid "Plugin"
|
380 |
+
msgstr "Betaltillägg"
|
381 |
+
|
382 |
+
#: bws_functions.php:899
|
383 |
+
#, fuzzy
|
384 |
+
msgid "Shortcode settings"
|
385 |
+
msgstr "Inställningar"
|
386 |
+
|
387 |
+
#: bws_functions.php:904
|
388 |
+
msgid "The shortcode will be inserted"
|
389 |
+
msgstr ""
|
390 |
+
|
391 |
+
#: bws_functions.php:909
|
392 |
+
msgid "Insert"
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#: bws_menu.php:506
|
396 |
msgid "Not set"
|
397 |
msgstr "Inte angiven"
|
398 |
|
399 |
+
#: bws_menu.php:508
|
400 |
+
#: bws_menu.php:509
|
401 |
msgid "On"
|
402 |
msgstr "På"
|
403 |
|
404 |
+
#: bws_menu.php:508
|
405 |
+
#: bws_menu.php:509
|
406 |
msgid "Off"
|
407 |
msgstr "Av"
|
408 |
|
409 |
+
#: bws_menu.php:510
|
410 |
+
#: bws_menu.php:511
|
411 |
+
#: bws_menu.php:512
|
412 |
+
#: bws_menu.php:513
|
413 |
+
#: bws_menu.php:514
|
414 |
+
#: bws_menu.php:526
|
415 |
msgid "N/A"
|
416 |
msgstr "Finns ej"
|
417 |
|
418 |
+
#: bws_menu.php:514
|
419 |
msgid " Mb"
|
420 |
msgstr " Mb"
|
421 |
|
422 |
+
#: bws_menu.php:515
|
423 |
+
#: bws_menu.php:516
|
424 |
+
#: bws_menu.php:517
|
425 |
+
#: bws_menu.php:522
|
426 |
msgid "Yes"
|
427 |
msgstr "Ja"
|
428 |
|
429 |
+
#: bws_menu.php:515
|
430 |
+
#: bws_menu.php:516
|
431 |
+
#: bws_menu.php:517
|
432 |
+
#: bws_menu.php:524
|
433 |
msgid "No"
|
434 |
msgstr "Nej"
|
435 |
|
436 |
+
#: bws_menu.php:534
|
437 |
msgid "Operating System"
|
438 |
msgstr "Operativsystem"
|
439 |
|
440 |
+
#: bws_menu.php:535
|
441 |
msgid "Server"
|
442 |
msgstr "Server"
|
443 |
|
444 |
+
#: bws_menu.php:536
|
445 |
msgid "Memory usage"
|
446 |
msgstr "Minnesanvändning"
|
447 |
|
448 |
+
#: bws_menu.php:537
|
449 |
msgid "MYSQL Version"
|
450 |
msgstr "MySQL-version"
|
451 |
|
452 |
+
#: bws_menu.php:538
|
453 |
msgid "SQL Mode"
|
454 |
msgstr "SQL-läge"
|
455 |
|
456 |
+
#: bws_menu.php:539
|
457 |
msgid "PHP Version"
|
458 |
msgstr "PHP-version"
|
459 |
|
460 |
+
#: bws_menu.php:540
|
461 |
msgid "PHP Safe Mode"
|
462 |
msgstr "PHP säkert läge"
|
463 |
|
464 |
+
#: bws_menu.php:541
|
465 |
msgid "PHP Allow URL fopen"
|
466 |
msgstr "PHP tillåt URL fopen"
|
467 |
|
468 |
+
#: bws_menu.php:542
|
469 |
msgid "PHP Memory Limit"
|
470 |
msgstr "PHP Minnesgräns"
|
471 |
|
472 |
+
#: bws_menu.php:543
|
473 |
msgid "PHP Max Upload Size"
|
474 |
msgstr "PHP Max uppladdningstorlek"
|
475 |
|
476 |
+
#: bws_menu.php:544
|
477 |
msgid "PHP Max Post Size"
|
478 |
msgstr "PHP Max poststorlek"
|
479 |
|
480 |
+
#: bws_menu.php:545
|
481 |
msgid "PHP Max Script Execute Time"
|
482 |
msgstr "PHP Max skriptexekverinstid"
|
483 |
|
484 |
+
#: bws_menu.php:546
|
485 |
msgid "PHP Exif support"
|
486 |
msgstr "PHP Exifstöd"
|
487 |
|
488 |
+
#: bws_menu.php:547
|
489 |
msgid "PHP IPTC support"
|
490 |
msgstr "PHP ITPC-stöd"
|
491 |
|
492 |
+
#: bws_menu.php:548
|
493 |
msgid "PHP XML support"
|
494 |
msgstr "PHP XML-stöd"
|
495 |
|
496 |
+
#: bws_menu.php:549
|
497 |
msgid "Site URL"
|
498 |
msgstr "SajtURL"
|
499 |
|
500 |
+
#: bws_menu.php:550
|
501 |
msgid "Home URL"
|
502 |
msgstr "HemURL"
|
503 |
|
504 |
+
#: bws_menu.php:553
|
505 |
msgid "WordPress Version"
|
506 |
msgstr "WordPress-version"
|
507 |
|
508 |
+
#: bws_menu.php:554
|
509 |
msgid "WordPress DB Version"
|
510 |
msgstr "WordPress-DB-version"
|
511 |
|
512 |
+
#: bws_menu.php:555
|
513 |
msgid "Multisite"
|
514 |
msgstr "Multisajt"
|
515 |
|
516 |
+
#: bws_menu.php:556
|
517 |
msgid "Active Theme"
|
518 |
msgstr "Aktivt tema"
|
519 |
|
520 |
+
#: bws_menu.php:571
|
521 |
msgid "Please enter a valid email address."
|
522 |
msgstr "Var god ange en giltig epost-adress."
|
523 |
|
524 |
+
#: bws_menu.php:575
|
525 |
msgid "Email with system info is sent to "
|
526 |
msgstr "Epost med systeminfo är skickat till"
|
527 |
|
528 |
+
#: bws_menu.php:579
|
529 |
msgid "Thank you for contacting us."
|
530 |
msgstr "Tack för att du kontaktade oss."
|
531 |
|
532 |
+
#: bws_menu.php:612
|
533 |
msgid "Sorry, email message could not be delivered."
|
534 |
msgstr "Ledsen, eposten kunde inte levereras."
|
535 |
|
536 |
+
#: bws_menu.php:620
|
537 |
msgid "Need help?"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: bws_menu.php:621
|
541 |
msgid "Client area"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: bws_menu.php:622
|
545 |
+
#: bws_menu.php:933
|
546 |
msgid "System status"
|
547 |
msgstr "Systemstatus"
|
548 |
|
549 |
+
#: bws_menu.php:627
|
550 |
#, fuzzy
|
551 |
msgid "Plugins"
|
552 |
msgstr "Betaltillägg"
|
553 |
|
554 |
+
#: bws_menu.php:629
|
555 |
msgid "Themes"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: bws_menu.php:634
|
559 |
msgid "All"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: bws_menu.php:635
|
563 |
#, fuzzy
|
564 |
msgid "Installed"
|
565 |
msgstr "Installera %s"
|
566 |
|
567 |
+
#: bws_menu.php:636
|
568 |
#, fuzzy
|
569 |
msgid "Recommended"
|
570 |
msgstr "Rekommenderade tillägg"
|
571 |
|
572 |
+
#: bws_menu.php:640
|
573 |
msgid "Installed plugins"
|
574 |
msgstr "Installerade tillägg"
|
575 |
|
576 |
+
#: bws_menu.php:672
|
577 |
+
#: bws_menu.php:721
|
578 |
msgid "Settings"
|
579 |
msgstr "Inställningar"
|
580 |
|
581 |
+
#: bws_menu.php:693
|
582 |
+
#: bws_menu.php:750
|
583 |
#, fuzzy
|
584 |
msgid "Activate this plugin"
|
585 |
msgstr "Aktiverade tillägg"
|
586 |
|
587 |
+
#: bws_menu.php:708
|
588 |
+
#: bws_menu.php:738
|
589 |
+
#: bws_menu.php:784
|
590 |
msgid "Go"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: bws_menu.php:712
|
594 |
+
#: bws_menu.php:742
|
595 |
+
#: bws_menu.php:788
|
596 |
msgid "DONATE"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: bws_menu.php:758
|
600 |
msgid "Recommended plugins"
|
601 |
msgstr "Rekommenderade tillägg"
|
602 |
|
603 |
+
#: bws_menu.php:796
|
604 |
#, fuzzy
|
605 |
msgid "Install now"
|
606 |
msgstr "Установить сейчас"
|
607 |
|
608 |
+
#: bws_menu.php:817
|
609 |
msgid "Try again"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: bws_menu.php:835
|
613 |
#, php-format
|
614 |
msgid "Preview “%s”"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: bws_menu.php:866
|
618 |
#, php-format
|
619 |
msgid "Install %s"
|
620 |
msgstr "Installera %s"
|
621 |
|
622 |
+
#: bws_menu.php:866
|
623 |
msgid "Install Now"
|
624 |
msgstr "Установить сейчас"
|
625 |
|
626 |
+
#: bws_menu.php:869
|
627 |
#, php-format
|
628 |
msgid "Update to version %s"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: bws_menu.php:869
|
632 |
msgid "Update"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: bws_menu.php:876
|
636 |
#, php-format
|
637 |
msgid "Preview %s"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: bws_menu.php:876
|
641 |
msgid "Preview"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: bws_menu.php:882
|
645 |
+
#: bws_menu.php:914
|
646 |
#, php-format
|
647 |
msgid "By %s"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: bws_menu.php:888
|
651 |
msgid "Details"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: bws_menu.php:920
|
655 |
#, fuzzy
|
656 |
msgid "Already Installed"
|
657 |
msgstr "Installera %s"
|
658 |
|
659 |
+
#: bws_menu.php:936
|
660 |
msgid "Environment"
|
661 |
msgstr "Miljövariabler"
|
662 |
|
663 |
+
#: bws_menu.php:947
|
664 |
msgid "Active Plugins"
|
665 |
msgstr "Aktiverade tillägg"
|
666 |
|
667 |
+
#: bws_menu.php:960
|
668 |
msgid "Inactive Plugins"
|
669 |
msgstr "Inaktiverade tillägg"
|
670 |
|
671 |
+
#: bws_menu.php:976
|
672 |
msgid "Send to support"
|
673 |
msgstr "Skicka till support"
|
674 |
|
675 |
+
#: bws_menu.php:983
|
676 |
msgid "Send to custom email »"
|
677 |
msgstr "Skicka till anpassad epost »"
|
678 |
|
810 |
#~ msgid "CAPTCHA complexity level"
|
811 |
#~ msgstr "CAPTCHA-svårighetsgrad"
|
812 |
|
|
|
|
|
|
|
813 |
#~ msgid "ERROR"
|
814 |
#~ msgstr "FEL"
|
815 |
|
bws_menu/languages/bestwebsoft-uk.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-uk.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
@@ -16,588 +16,644 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: bws_functions.php:
|
|
|
20 |
msgid "requires"
|
21 |
msgstr "потребує"
|
22 |
|
23 |
-
#: bws_functions.php:
|
24 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
25 |
msgstr "чи вище, тому його було деактивовано! Будь ласка оновіть WordPress та спробуйте ще раз."
|
26 |
|
27 |
-
#: bws_functions.php:
|
28 |
msgid "Back to the WordPress"
|
29 |
msgstr "Повернутися на WordPress на"
|
30 |
|
31 |
-
#: bws_functions.php:
|
32 |
msgid "Plugins page"
|
33 |
msgstr "Сторінку Плагінів"
|
34 |
|
35 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
36 |
msgid "It’s time to upgrade your"
|
37 |
msgstr "Настав час модернізувати Ваш"
|
38 |
|
39 |
-
#: bws_functions.php:
|
40 |
msgid "to"
|
41 |
msgstr "до"
|
42 |
|
43 |
-
#: bws_functions.php:
|
44 |
msgid "version!"
|
45 |
msgstr "версії!"
|
46 |
|
47 |
-
#: bws_functions.php:
|
48 |
msgid "Extend standard plugin functionality with new great options."
|
49 |
msgstr "Розширює можливості стандартного функціоналу плагіна."
|
50 |
|
51 |
-
#: bws_functions.php:
|
52 |
-
#: bws_functions.php:
|
53 |
msgid "Learn More"
|
54 |
msgstr "Дізнатись більше"
|
55 |
|
56 |
-
#: bws_functions.php:
|
57 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
58 |
msgstr "Якщо вам сподобався плагін, будь ласка, поставте нам 5 зірочок на WordPress"
|
59 |
|
60 |
-
#: bws_functions.php:
|
61 |
msgid "Rate the plugin"
|
62 |
msgstr "Оцінити плагін"
|
63 |
|
64 |
-
#: bws_functions.php:
|
65 |
msgid "If there is something wrong about it, please contact us"
|
66 |
msgstr "Якщо щось не так, будь ласка, повідомте нам"
|
67 |
|
68 |
-
#: bws_functions.php:
|
69 |
-
#: bws_functions.php:
|
70 |
msgid "Wrong license key"
|
71 |
msgstr "Невірний ключ ліцензії"
|
72 |
|
73 |
-
#: bws_functions.php:
|
74 |
-
#: bws_functions.php:
|
75 |
-
#: bws_functions.php:
|
76 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
77 |
msgstr "Щось не так, спробуйте пізніше. Якщо помилка повториться, будь ласка, повідомте нам"
|
78 |
|
79 |
-
#: bws_functions.php:
|
80 |
-
#: bws_functions.php:
|
81 |
-
#: bws_functions.php:
|
82 |
msgid "We are sorry for inconvenience."
|
83 |
msgstr "Просимо вибачення за незручності."
|
84 |
|
85 |
-
#: bws_functions.php:
|
86 |
msgid "This license key is bind to another site"
|
87 |
msgstr "Цей ліцензійний ключ прив'язано до іншого сайту"
|
88 |
|
89 |
-
#: bws_functions.php:
|
90 |
-
#: bws_functions.php:
|
91 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
92 |
msgstr "На жаль, ви перевищили кількість доступних спроб на день. Будь ласка, завантажте плагін вручну"
|
93 |
|
94 |
-
#: bws_functions.php:
|
95 |
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
96 |
msgstr "На жаль, ваша ліцензія скінчилась. Для того, щоб і надалі отримувати першочергову техпідтримку і оновлення, будь ласка, продовжте ліцензію"
|
97 |
|
98 |
-
#: bws_functions.php:
|
99 |
-
msgid "Unfortunately, the
|
100 |
-
msgstr "На жаль,
|
101 |
|
102 |
-
#: bws_functions.php:
|
103 |
-
#: bws_functions.php:
|
104 |
-
#: bws_functions.php:
|
105 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
106 |
msgstr "Помилка при завантаженні zip-архіву. Будь ласка, завантажте плагін вручну"
|
107 |
|
108 |
-
#: bws_functions.php:
|
109 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
110 |
msgstr "Помилка при відкритті zip-архіву. Будь ласка, завантажте плагін вручну"
|
111 |
|
112 |
-
#: bws_functions.php:
|
113 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
114 |
msgstr "Ваш сервер не підтримує формати Zip і Phar. Будь ласка, завантажте плагін вручну"
|
115 |
|
116 |
-
#: bws_functions.php:
|
117 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
118 |
msgstr "Немає доступу до теки завантажень WordPress. Будь ласка, завантажте плагін вручну"
|
119 |
|
120 |
-
#: bws_functions.php:
|
121 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
122 |
msgstr "Виникли певні проблеми. Спробуйте ще раз пізніше або завантажте плагін вручну. Просимо вибачення за незручності."
|
123 |
|
124 |
-
#: bws_functions.php:
|
125 |
msgid "Please, enter Your license key"
|
126 |
msgstr "Будь ласка, впишіть ваш ліцензійний ключ"
|
127 |
|
128 |
-
#: bws_functions.php:
|
129 |
-
msgid "Congratulations! The
|
130 |
-
msgstr "Вітаємо!
|
131 |
|
132 |
-
#: bws_functions.php:
|
133 |
-
#: bws_functions.php:
|
134 |
msgid "Please, go to"
|
135 |
msgstr "Будь ласка, перейдіть на"
|
136 |
|
137 |
-
#: bws_functions.php:
|
138 |
-
#: bws_functions.php:
|
139 |
msgid "the setting page"
|
140 |
msgstr "сторінку установок"
|
141 |
|
142 |
-
#: bws_functions.php:
|
143 |
-
#: bws_functions.php:
|
144 |
msgid "You will be redirected automatically in 5 seconds."
|
145 |
msgstr "Вас буде перенаправлено автоматично через 5 секунд."
|
146 |
|
147 |
-
#: bws_functions.php:
|
148 |
msgid "You can download and activate"
|
149 |
msgstr "Ви можете завантажити та активувати"
|
150 |
|
151 |
-
#: bws_functions.php:
|
152 |
msgid "version of this plugin by entering Your license key."
|
153 |
msgstr "версію цього плагіну, якщо впишете ваш ліцензійний ключ."
|
154 |
|
155 |
-
#: bws_functions.php:
|
156 |
-
#: bws_functions.php:
|
157 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
158 |
msgstr "Ви можете знайти ваш ліцензійний ключ на вашій персональній сторінці у Client area, перейшовши за посиланням"
|
159 |
|
160 |
-
#: bws_functions.php:
|
161 |
-
#: bws_functions.php:
|
162 |
msgid "(your username is the email you specify when purchasing the product)."
|
163 |
msgstr "(ваше ім'я - це емейл, який ви вказували при купівлі плагіну)"
|
164 |
|
165 |
-
#: bws_functions.php:
|
|
|
166 |
msgid "or"
|
167 |
msgstr "або"
|
168 |
|
169 |
-
#: bws_functions.php:
|
170 |
#, php-format
|
171 |
msgid "Start Your Free %s-Day Trial Now"
|
172 |
msgstr "Спробуйте %s-денну тріал версію безкоштовно"
|
173 |
|
174 |
-
#: bws_functions.php:
|
175 |
-
#: bws_functions.php:
|
176 |
-
#: bws_functions.php:
|
177 |
-
#: bws_functions.php:
|
178 |
-
#: bws_menu.php:
|
179 |
-
#: bws_menu.php:
|
180 |
msgid "Activate"
|
181 |
msgstr "Активувати"
|
182 |
|
183 |
-
#: bws_functions.php:
|
184 |
-
#: bws_functions.php:
|
185 |
#, php-format
|
186 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
187 |
msgstr "Щоб продовжити користуватись плагіном, потрібно придбати %s ліцензію."
|
188 |
|
189 |
-
#: bws_functions.php:
|
190 |
msgid "After that you can activate it by entering your license key."
|
191 |
msgstr "Після цього ви зможете активувати його ввівши ліцензійний ключ."
|
192 |
|
193 |
-
#: bws_functions.php:
|
194 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
195 |
msgstr "На жаль, ви перевищили кількість допустимих спроб."
|
196 |
|
197 |
-
#: bws_functions.php:
|
198 |
-
msgid "Congratulations! The
|
199 |
-
msgstr "Вітаємо!
|
200 |
|
201 |
-
#: bws_functions.php:
|
202 |
msgid "Wrong license key."
|
203 |
msgstr "Неправильний ліцензійний ключ."
|
204 |
|
205 |
-
#: bws_functions.php:
|
206 |
msgid "This license key is bind to another site."
|
207 |
msgstr "Цей ліцензійний ключ прив'язано до іншого сайту."
|
208 |
|
209 |
-
#: bws_functions.php:
|
210 |
msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
|
211 |
msgstr "Даний ліцензійний ключ дійсний, але строк вашої ліцензії витік. Якщо ви хочете оновлювати наш плагін у майбутньому, вам слід подовжити ліцензію."
|
212 |
|
213 |
-
#: bws_functions.php:
|
214 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
215 |
msgstr "На жаль, ви перевищили кількість допустимих спроб."
|
216 |
|
217 |
-
#: bws_functions.php:
|
218 |
-
msgid "Unfortunately, the
|
219 |
-
msgstr "На жаль, тріал
|
220 |
|
221 |
-
#: bws_functions.php:
|
222 |
-
msgid "The
|
223 |
-
msgstr "Ключ тріал
|
224 |
|
225 |
-
#: bws_functions.php:
|
226 |
msgid "The license key is valid."
|
227 |
msgstr "Ліцензійний ключ дійсний."
|
228 |
|
229 |
-
#: bws_functions.php:
|
230 |
msgid "Your license will expire on"
|
231 |
msgstr "Ваша ліцензія закінчується"
|
232 |
|
233 |
-
#: bws_functions.php:
|
234 |
msgid "Please, enter your license key"
|
235 |
msgstr "Будь ласка, введіть ваш ліцензійний ключ"
|
236 |
|
237 |
-
#: bws_functions.php:
|
238 |
msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
|
239 |
msgstr "При необхідності ви можете перевірити правильність вашого ліцензійного ключа або знову ввести його у полі, що знаходиться нижче. Ви можете знайти свій ліцензійний ключ на вашій персональній сторінці - Client area - на нашому сайті."
|
240 |
|
241 |
-
#: bws_functions.php:
|
242 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
243 |
msgstr "(ім'я користувача - це електронна адреса, яку ви вказуєте при купівлі продукту). При необхідності, будь ласка, відправте запит на відновлення вашого паролю."
|
244 |
|
245 |
-
#: bws_functions.php:
|
246 |
msgid "Check license key"
|
247 |
msgstr "Перевірте ліцензійний ключ"
|
248 |
|
249 |
-
#: bws_functions.php:
|
250 |
msgid "WARNING: Illegal use notification"
|
251 |
msgstr "УВАГА: виявлено несанкціоноване використання плагіну"
|
252 |
|
253 |
-
#: bws_functions.php:
|
254 |
msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
|
255 |
msgstr "Ви можете використовувати одну ліцензію Про-плагіну для одного домену. Будь ласка, переконайтесь, що інформацію щодо ліцензії і домену введено вірно, у вкладці Client Area. Ми настійливо рекомендуємо Вам вирішити це питання протягом 24 годин, інакше плагін буде деактивовано."
|
256 |
|
257 |
-
#: bws_functions.php:
|
258 |
-
msgid "Notice: Your
|
259 |
-
msgstr "Увага: Термін дії тріал періоду
|
260 |
|
261 |
-
#: bws_functions.php:
|
262 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
263 |
msgstr "Строк вашої ліцензії витік. Якщо ви хочете оновлювати наш плагін у майбутньому, вам слід подовжити ліцензію."
|
264 |
|
265 |
-
#: bws_functions.php:
|
266 |
-
#: bws_functions.php:
|
267 |
-
#: bws_menu.php:
|
268 |
-
#: bws_menu.php:
|
269 |
-
#: bws_menu.php:
|
270 |
-
#: bws_menu.php:
|
271 |
-
#: bws_menu.php:
|
272 |
msgid "Learn more"
|
273 |
msgstr "Дізнатись більше"
|
274 |
|
275 |
-
#: bws_functions.php:
|
276 |
#, php-format
|
277 |
-
msgid "Notice: You are using the
|
278 |
-
msgstr "Увага: Ви використовуєте тріал
|
279 |
|
280 |
-
#: bws_functions.php:
|
281 |
-
msgid "Notice: You are using the
|
282 |
-
msgstr "Увага: Ви використовуєте тріал
|
283 |
|
284 |
-
#: bws_functions.php:
|
285 |
-
msgid "The
|
286 |
-
msgstr "Тріал період
|
287 |
|
288 |
-
#: bws_functions.php:
|
289 |
msgid "You license for"
|
290 |
msgstr "Ваша ліцензія для"
|
291 |
|
292 |
-
#: bws_functions.php:
|
293 |
msgid "expires on"
|
294 |
msgstr "витікає"
|
295 |
|
296 |
-
#: bws_functions.php:
|
297 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
298 |
msgstr "та ви більше не будете отримувати першочергову технічну підтримку та оновлення."
|
299 |
|
300 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
301 |
msgid "Close"
|
302 |
msgstr "Закрити"
|
303 |
|
304 |
-
#: bws_functions.php:
|
305 |
-
#: bws_functions.php:784
|
306 |
msgid "Restore all plugin settings to defaults"
|
307 |
msgstr "Скинути налаштування плагіну до стандартних"
|
308 |
|
309 |
-
#: bws_functions.php:
|
310 |
-
#: bws_functions.php:786
|
311 |
msgid "Restore settings"
|
312 |
msgstr "Скинути налаштування"
|
313 |
|
314 |
-
#: bws_functions.php:
|
315 |
msgid "Are you sure you want to restore all settings by default?"
|
316 |
msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
|
317 |
|
318 |
-
#: bws_functions.php:
|
319 |
msgid "Yes, restore all settings"
|
320 |
msgstr "Так, скинути налаштування"
|
321 |
|
322 |
-
#: bws_functions.php:
|
323 |
msgid "No, go back to the settings page"
|
324 |
msgstr "Ні, повернутись назад на сторінку налаштувань"
|
325 |
|
326 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
327 |
msgid "Not set"
|
328 |
msgstr "Не задано"
|
329 |
|
330 |
-
#: bws_menu.php:
|
331 |
-
#: bws_menu.php:
|
332 |
msgid "On"
|
333 |
msgstr "Увімк."
|
334 |
|
335 |
-
#: bws_menu.php:
|
336 |
-
#: bws_menu.php:
|
337 |
msgid "Off"
|
338 |
msgstr "Вимк."
|
339 |
|
340 |
-
#: bws_menu.php:
|
341 |
-
#: bws_menu.php:
|
342 |
-
#: bws_menu.php:
|
343 |
-
#: bws_menu.php:
|
344 |
-
#: bws_menu.php:
|
345 |
-
#: bws_menu.php:
|
346 |
msgid "N/A"
|
347 |
msgstr "Невідомо"
|
348 |
|
349 |
-
#: bws_menu.php:
|
350 |
msgid " Mb"
|
351 |
msgstr "Мб"
|
352 |
|
353 |
-
#: bws_menu.php:
|
354 |
-
#: bws_menu.php:
|
355 |
-
#: bws_menu.php:
|
356 |
-
#: bws_menu.php:
|
357 |
msgid "Yes"
|
358 |
msgstr "Так"
|
359 |
|
360 |
-
#: bws_menu.php:
|
361 |
-
#: bws_menu.php:
|
362 |
-
#: bws_menu.php:
|
363 |
-
#: bws_menu.php:
|
364 |
msgid "No"
|
365 |
msgstr "Ні"
|
366 |
|
367 |
-
#: bws_menu.php:
|
368 |
msgid "Operating System"
|
369 |
msgstr "Операційна система"
|
370 |
|
371 |
-
#: bws_menu.php:
|
372 |
msgid "Server"
|
373 |
msgstr "Тип серверу"
|
374 |
|
375 |
-
#: bws_menu.php:
|
376 |
msgid "Memory usage"
|
377 |
msgstr "Пам’яті використано"
|
378 |
|
379 |
-
#: bws_menu.php:
|
380 |
msgid "MYSQL Version"
|
381 |
msgstr "Версія MYSQL"
|
382 |
|
383 |
-
#: bws_menu.php:
|
384 |
msgid "SQL Mode"
|
385 |
msgstr "Режим SQL"
|
386 |
|
387 |
-
#: bws_menu.php:
|
388 |
msgid "PHP Version"
|
389 |
msgstr "Версія PHP"
|
390 |
|
391 |
-
#: bws_menu.php:
|
392 |
msgid "PHP Safe Mode"
|
393 |
msgstr "PHP Безпечний режим"
|
394 |
|
395 |
-
#: bws_menu.php:
|
396 |
msgid "PHP Allow URL fopen"
|
397 |
msgstr "Дозволити PHP URL fopen"
|
398 |
|
399 |
-
#: bws_menu.php:
|
400 |
msgid "PHP Memory Limit"
|
401 |
msgstr "Ліміт пам’яті"
|
402 |
|
403 |
-
#: bws_menu.php:
|
404 |
msgid "PHP Max Upload Size"
|
405 |
msgstr "Макс. розмір файлу, що завантажується"
|
406 |
|
407 |
-
#: bws_menu.php:
|
408 |
msgid "PHP Max Post Size"
|
409 |
msgstr "Макс. розмір посту"
|
410 |
|
411 |
-
#: bws_menu.php:
|
412 |
msgid "PHP Max Script Execute Time"
|
413 |
msgstr "Макс. час виконання сценарію"
|
414 |
|
415 |
-
#: bws_menu.php:
|
416 |
msgid "PHP Exif support"
|
417 |
msgstr "Підтримка PHP Exif"
|
418 |
|
419 |
-
#: bws_menu.php:
|
420 |
msgid "PHP IPTC support"
|
421 |
msgstr "Підтримка PHP IPTC"
|
422 |
|
423 |
-
#: bws_menu.php:
|
424 |
msgid "PHP XML support"
|
425 |
msgstr "Підтримка PHP XML"
|
426 |
|
427 |
-
#: bws_menu.php:
|
428 |
msgid "Site URL"
|
429 |
msgstr "Адреса сайту"
|
430 |
|
431 |
-
#: bws_menu.php:
|
432 |
msgid "Home URL"
|
433 |
msgstr "Адреса домашньої сторінки"
|
434 |
|
435 |
-
#: bws_menu.php:
|
436 |
msgid "WordPress Version"
|
437 |
msgstr "Версія WordPress"
|
438 |
|
439 |
-
#: bws_menu.php:
|
440 |
msgid "WordPress DB Version"
|
441 |
msgstr "Версія бази даних WordPress"
|
442 |
|
443 |
-
#: bws_menu.php:
|
444 |
msgid "Multisite"
|
445 |
msgstr "Мультисайт"
|
446 |
|
447 |
-
#: bws_menu.php:
|
448 |
msgid "Active Theme"
|
449 |
msgstr "Активна тема"
|
450 |
|
451 |
-
#: bws_menu.php:
|
452 |
msgid "Please enter a valid email address."
|
453 |
msgstr "Будь ласка, введіть коректний емейл."
|
454 |
|
455 |
-
#: bws_menu.php:
|
456 |
msgid "Email with system info is sent to "
|
457 |
msgstr "Емейл з системною інформацією надіслано на"
|
458 |
|
459 |
-
#: bws_menu.php:
|
460 |
msgid "Thank you for contacting us."
|
461 |
msgstr "Дякуємо, що звернулись до нас."
|
462 |
|
463 |
-
#: bws_menu.php:
|
464 |
msgid "Sorry, email message could not be delivered."
|
465 |
msgstr "Вибачте, ваше емейл не може бути доставлено"
|
466 |
|
467 |
-
#: bws_menu.php:
|
468 |
msgid "Need help?"
|
469 |
msgstr "Потрібна допомога?"
|
470 |
|
471 |
-
#: bws_menu.php:
|
472 |
msgid "Client area"
|
473 |
msgstr "Клієнтам"
|
474 |
|
475 |
-
#: bws_menu.php:
|
476 |
-
#: bws_menu.php:
|
477 |
msgid "System status"
|
478 |
msgstr "Системна інформація"
|
479 |
|
480 |
-
#: bws_menu.php:
|
481 |
msgid "Plugins"
|
482 |
msgstr "Плагіни"
|
483 |
|
484 |
-
#: bws_menu.php:
|
485 |
msgid "Themes"
|
486 |
msgstr "Теми"
|
487 |
|
488 |
-
#: bws_menu.php:
|
489 |
msgid "All"
|
490 |
msgstr "Всі"
|
491 |
|
492 |
-
#: bws_menu.php:
|
493 |
msgid "Installed"
|
494 |
msgstr "Встановлені"
|
495 |
|
496 |
-
#: bws_menu.php:
|
497 |
msgid "Recommended"
|
498 |
msgstr "Рекомендовані "
|
499 |
|
500 |
-
#: bws_menu.php:
|
501 |
msgid "Installed plugins"
|
502 |
msgstr "Встановлені плагіни"
|
503 |
|
504 |
-
#: bws_menu.php:
|
505 |
-
#: bws_menu.php:
|
506 |
msgid "Settings"
|
507 |
msgstr "Налаштування"
|
508 |
|
509 |
-
#: bws_menu.php:
|
510 |
-
#: bws_menu.php:
|
511 |
msgid "Activate this plugin"
|
512 |
msgstr "Активувати плагін"
|
513 |
|
514 |
-
#: bws_menu.php:
|
515 |
-
#: bws_menu.php:
|
516 |
-
#: bws_menu.php:
|
517 |
msgid "Go"
|
518 |
msgstr "Перейти"
|
519 |
|
520 |
-
#: bws_menu.php:
|
521 |
-
#: bws_menu.php:
|
522 |
-
#: bws_menu.php:
|
523 |
msgid "DONATE"
|
524 |
msgstr "Підтримати нас"
|
525 |
|
526 |
-
#: bws_menu.php:
|
527 |
msgid "Recommended plugins"
|
528 |
msgstr "Рекомендовані плагіни"
|
529 |
|
530 |
-
#: bws_menu.php:
|
531 |
msgid "Install now"
|
532 |
msgstr "Встановити"
|
533 |
|
534 |
-
#: bws_menu.php:
|
535 |
msgid "Try again"
|
536 |
msgstr "Спробувати ще раз"
|
537 |
|
538 |
-
#: bws_menu.php:
|
539 |
#, php-format
|
540 |
msgid "Preview “%s”"
|
541 |
msgstr "Попередній перегляд “%s”"
|
542 |
|
543 |
-
#: bws_menu.php:
|
544 |
#, php-format
|
545 |
msgid "Install %s"
|
546 |
msgstr "Встановити %s"
|
547 |
|
548 |
-
#: bws_menu.php:
|
549 |
msgid "Install Now"
|
550 |
msgstr "Встановити"
|
551 |
|
552 |
-
#: bws_menu.php:
|
553 |
#, php-format
|
554 |
msgid "Update to version %s"
|
555 |
msgstr "Оновити до версії %s"
|
556 |
|
557 |
-
#: bws_menu.php:
|
558 |
msgid "Update"
|
559 |
msgstr "Оновити"
|
560 |
|
561 |
-
#: bws_menu.php:
|
562 |
#, php-format
|
563 |
msgid "Preview %s"
|
564 |
msgstr "Попередній перегляд %s"
|
565 |
|
566 |
-
#: bws_menu.php:
|
567 |
msgid "Preview"
|
568 |
msgstr "Попередній перегляд"
|
569 |
|
570 |
-
#: bws_menu.php:
|
571 |
-
#: bws_menu.php:
|
572 |
#, php-format
|
573 |
msgid "By %s"
|
574 |
msgstr "За %s"
|
575 |
|
576 |
-
#: bws_menu.php:
|
577 |
msgid "Details"
|
578 |
msgstr "Деталі"
|
579 |
|
580 |
-
#: bws_menu.php:
|
581 |
msgid "Already Installed"
|
582 |
msgstr "Уже встановлено %s"
|
583 |
|
584 |
-
#: bws_menu.php:
|
585 |
msgid "Environment"
|
586 |
msgstr "Системне оточення"
|
587 |
|
588 |
-
#: bws_menu.php:
|
589 |
msgid "Active Plugins"
|
590 |
msgstr "Активні плагіни"
|
591 |
|
592 |
-
#: bws_menu.php:
|
593 |
msgid "Inactive Plugins"
|
594 |
msgstr "Не активні плагіни"
|
595 |
|
596 |
-
#: bws_menu.php:
|
597 |
msgid "Send to support"
|
598 |
msgstr "Відправити службі тех. підтримки"
|
599 |
|
600 |
-
#: bws_menu.php:
|
601 |
msgid "Send to custom email »"
|
602 |
msgstr "Відправити на електронну адресу »"
|
603 |
|
@@ -741,9 +797,6 @@ msgstr "Відправити на електронну адресу »"
|
|
741 |
#~ msgid "CAPTCHA complexity level"
|
742 |
#~ msgstr "Уровень сложности КАПЧИ"
|
743 |
|
744 |
-
#~ msgid "Save Changes"
|
745 |
-
#~ msgstr "Сохранить изменения"
|
746 |
-
|
747 |
#~ msgid "ERROR"
|
748 |
#~ msgstr "Ошибка"
|
749 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-17 16:00+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-09-17 16:02+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: bws_functions.php:29
|
20 |
+
#: bws_functions.php:53
|
21 |
msgid "requires"
|
22 |
msgstr "потребує"
|
23 |
|
24 |
+
#: bws_functions.php:31
|
25 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
26 |
msgstr "чи вище, тому його було деактивовано! Будь ласка оновіть WordPress та спробуйте ще раз."
|
27 |
|
28 |
+
#: bws_functions.php:32
|
29 |
msgid "Back to the WordPress"
|
30 |
msgstr "Повернутися на WordPress на"
|
31 |
|
32 |
+
#: bws_functions.php:34
|
33 |
msgid "Plugins page"
|
34 |
msgstr "Сторінку Плагінів"
|
35 |
|
36 |
+
#: bws_functions.php:55
|
37 |
+
msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
|
38 |
+
msgstr "чи вище! Ми не гарантуємо, що наш плагін буде працювати правильно. Будь ласка, оновіть WordPress до останньої версії."
|
39 |
+
|
40 |
+
#: bws_functions.php:112
|
41 |
msgid "It’s time to upgrade your"
|
42 |
msgstr "Настав час модернізувати Ваш"
|
43 |
|
44 |
+
#: bws_functions.php:112
|
45 |
msgid "to"
|
46 |
msgstr "до"
|
47 |
|
48 |
+
#: bws_functions.php:112
|
49 |
msgid "version!"
|
50 |
msgstr "версії!"
|
51 |
|
52 |
+
#: bws_functions.php:113
|
53 |
msgid "Extend standard plugin functionality with new great options."
|
54 |
msgstr "Розширює можливості стандартного функціоналу плагіна."
|
55 |
|
56 |
+
#: bws_functions.php:116
|
57 |
+
#: bws_functions.php:513
|
58 |
msgid "Learn More"
|
59 |
msgstr "Дізнатись більше"
|
60 |
|
61 |
+
#: bws_functions.php:133
|
62 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
63 |
msgstr "Якщо вам сподобався плагін, будь ласка, поставте нам 5 зірочок на WordPress"
|
64 |
|
65 |
+
#: bws_functions.php:134
|
66 |
msgid "Rate the plugin"
|
67 |
msgstr "Оцінити плагін"
|
68 |
|
69 |
+
#: bws_functions.php:137
|
70 |
msgid "If there is something wrong about it, please contact us"
|
71 |
msgstr "Якщо щось не так, будь ласка, повідомте нам"
|
72 |
|
73 |
+
#: bws_functions.php:154
|
74 |
+
#: bws_functions.php:190
|
75 |
msgid "Wrong license key"
|
76 |
msgstr "Невірний ключ ліцензії"
|
77 |
|
78 |
+
#: bws_functions.php:184
|
79 |
+
#: bws_functions.php:426
|
80 |
+
#: bws_functions.php:477
|
81 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
82 |
msgstr "Щось не так, спробуйте пізніше. Якщо помилка повториться, будь ласка, повідомте нам"
|
83 |
|
84 |
+
#: bws_functions.php:184
|
85 |
+
#: bws_functions.php:426
|
86 |
+
#: bws_functions.php:477
|
87 |
msgid "We are sorry for inconvenience."
|
88 |
msgstr "Просимо вибачення за незручності."
|
89 |
|
90 |
+
#: bws_functions.php:192
|
91 |
msgid "This license key is bind to another site"
|
92 |
msgstr "Цей ліцензійний ключ прив'язано до іншого сайту"
|
93 |
|
94 |
+
#: bws_functions.php:194
|
95 |
+
#: bws_functions.php:336
|
96 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
97 |
msgstr "На жаль, ви перевищили кількість доступних спроб на день. Будь ласка, завантажте плагін вручну"
|
98 |
|
99 |
+
#: bws_functions.php:196
|
100 |
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
101 |
msgstr "На жаль, ваша ліцензія скінчилась. Для того, щоб і надалі отримувати першочергову техпідтримку і оновлення, будь ласка, продовжте ліцензію"
|
102 |
|
103 |
+
#: bws_functions.php:198
|
104 |
+
msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
|
105 |
+
msgstr "На жаль, Pro ліцензія уже використовувалась на цьому домені. Тріал Pro версії плагіну можна використати лише один раз."
|
106 |
|
107 |
+
#: bws_functions.php:219
|
108 |
+
#: bws_functions.php:241
|
109 |
+
#: bws_functions.php:263
|
110 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
111 |
msgstr "Помилка при завантаженні zip-архіву. Будь ласка, завантажте плагін вручну"
|
112 |
|
113 |
+
#: bws_functions.php:231
|
114 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
115 |
msgstr "Помилка при відкритті zip-архіву. Будь ласка, завантажте плагін вручну"
|
116 |
|
117 |
+
#: bws_functions.php:237
|
118 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
119 |
msgstr "Ваш сервер не підтримує формати Zip і Phar. Будь ласка, завантажте плагін вручну"
|
120 |
|
121 |
+
#: bws_functions.php:244
|
122 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
123 |
msgstr "Немає доступу до теки завантажень WordPress. Будь ласка, завантажте плагін вручну"
|
124 |
|
125 |
+
#: bws_functions.php:267
|
126 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
127 |
msgstr "Виникли певні проблеми. Спробуйте ще раз пізніше або завантажте плагін вручну. Просимо вибачення за незручності."
|
128 |
|
129 |
+
#: bws_functions.php:292
|
130 |
msgid "Please, enter Your license key"
|
131 |
msgstr "Будь ласка, впишіть ваш ліцензійний ключ"
|
132 |
|
133 |
+
#: bws_functions.php:309
|
134 |
+
msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
|
135 |
+
msgstr "Вітаємо! Pro версію плагіну успішно завантажено та активовано."
|
136 |
|
137 |
+
#: bws_functions.php:311
|
138 |
+
#: bws_functions.php:393
|
139 |
msgid "Please, go to"
|
140 |
msgstr "Будь ласка, перейдіть на"
|
141 |
|
142 |
+
#: bws_functions.php:311
|
143 |
+
#: bws_functions.php:393
|
144 |
msgid "the setting page"
|
145 |
msgstr "сторінку установок"
|
146 |
|
147 |
+
#: bws_functions.php:312
|
148 |
+
#: bws_functions.php:394
|
149 |
msgid "You will be redirected automatically in 5 seconds."
|
150 |
msgstr "Вас буде перенаправлено автоматично через 5 секунд."
|
151 |
|
152 |
+
#: bws_functions.php:317
|
153 |
msgid "You can download and activate"
|
154 |
msgstr "Ви можете завантажити та активувати"
|
155 |
|
156 |
+
#: bws_functions.php:319
|
157 |
msgid "version of this plugin by entering Your license key."
|
158 |
msgstr "версію цього плагіну, якщо впишете ваш ліцензійний ключ."
|
159 |
|
160 |
+
#: bws_functions.php:321
|
161 |
+
#: bws_functions.php:362
|
162 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
163 |
msgstr "Ви можете знайти ваш ліцензійний ключ на вашій персональній сторінці у Client area, перейшовши за посиланням"
|
164 |
|
165 |
+
#: bws_functions.php:323
|
166 |
+
#: bws_functions.php:364
|
167 |
msgid "(your username is the email you specify when purchasing the product)."
|
168 |
msgstr "(ваше ім'я - це емейл, який ви вказували при купівлі плагіну)"
|
169 |
|
170 |
+
#: bws_functions.php:327
|
171 |
+
#: bws_functions.php:630
|
172 |
msgid "or"
|
173 |
msgstr "або"
|
174 |
|
175 |
+
#: bws_functions.php:327
|
176 |
#, php-format
|
177 |
msgid "Start Your Free %s-Day Trial Now"
|
178 |
msgstr "Спробуйте %s-денну тріал версію безкоштовно"
|
179 |
|
180 |
+
#: bws_functions.php:333
|
181 |
+
#: bws_functions.php:342
|
182 |
+
#: bws_functions.php:372
|
183 |
+
#: bws_functions.php:380
|
184 |
+
#: bws_menu.php:693
|
185 |
+
#: bws_menu.php:750
|
186 |
msgid "Activate"
|
187 |
msgstr "Активувати"
|
188 |
|
189 |
+
#: bws_functions.php:359
|
190 |
+
#: bws_functions.php:452
|
191 |
#, php-format
|
192 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
193 |
msgstr "Щоб продовжити користуватись плагіном, потрібно придбати %s ліцензію."
|
194 |
|
195 |
+
#: bws_functions.php:360
|
196 |
msgid "After that you can activate it by entering your license key."
|
197 |
msgstr "Після цього ви зможете активувати його ввівши ліцензійний ключ."
|
198 |
|
199 |
+
#: bws_functions.php:374
|
200 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
201 |
msgstr "На жаль, ви перевищили кількість допустимих спроб."
|
202 |
|
203 |
+
#: bws_functions.php:391
|
204 |
+
msgid "Congratulations! The Pro license of the plugin is successfully activated."
|
205 |
+
msgstr "Вітаємо! Pro версію плагіну успішно активовано."
|
206 |
|
207 |
+
#: bws_functions.php:432
|
208 |
msgid "Wrong license key."
|
209 |
msgstr "Неправильний ліцензійний ключ."
|
210 |
|
211 |
+
#: bws_functions.php:434
|
212 |
msgid "This license key is bind to another site."
|
213 |
msgstr "Цей ліцензійний ключ прив'язано до іншого сайту."
|
214 |
|
215 |
+
#: bws_functions.php:436
|
216 |
msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
|
217 |
msgstr "Даний ліцензійний ключ дійсний, але строк вашої ліцензії витік. Якщо ви хочете оновлювати наш плагін у майбутньому, вам слід подовжити ліцензію."
|
218 |
|
219 |
+
#: bws_functions.php:438
|
220 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
221 |
msgstr "На жаль, ви перевищили кількість допустимих спроб."
|
222 |
|
223 |
+
#: bws_functions.php:440
|
224 |
+
msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
|
225 |
+
msgstr "На жаль, тріал Pro версія плагіну уже встановлювалась на цей домен. Тріал Pro версію можна встановлювати лише один раз."
|
226 |
|
227 |
+
#: bws_functions.php:444
|
228 |
+
msgid "The Pro Trial license key is valid."
|
229 |
+
msgstr "Ключ тріал Pro версії вірний."
|
230 |
|
231 |
+
#: bws_functions.php:446
|
232 |
msgid "The license key is valid."
|
233 |
msgstr "Ліцензійний ключ дійсний."
|
234 |
|
235 |
+
#: bws_functions.php:449
|
236 |
msgid "Your license will expire on"
|
237 |
msgstr "Ваша ліцензія закінчується"
|
238 |
|
239 |
+
#: bws_functions.php:482
|
240 |
msgid "Please, enter your license key"
|
241 |
msgstr "Будь ласка, введіть ваш ліцензійний ключ"
|
242 |
|
243 |
+
#: bws_functions.php:495
|
244 |
msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
|
245 |
msgstr "При необхідності ви можете перевірити правильність вашого ліцензійного ключа або знову ввести його у полі, що знаходиться нижче. Ви можете знайти свій ліцензійний ключ на вашій персональній сторінці - Client area - на нашому сайті."
|
246 |
|
247 |
+
#: bws_functions.php:495
|
248 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
249 |
msgstr "(ім'я користувача - це електронна адреса, яку ви вказуєте при купівлі продукту). При необхідності, будь ласка, відправте запит на відновлення вашого паролю."
|
250 |
|
251 |
+
#: bws_functions.php:499
|
252 |
msgid "Check license key"
|
253 |
msgstr "Перевірте ліцензійний ключ"
|
254 |
|
255 |
+
#: bws_functions.php:513
|
256 |
msgid "WARNING: Illegal use notification"
|
257 |
msgstr "УВАГА: виявлено несанкціоноване використання плагіну"
|
258 |
|
259 |
+
#: bws_functions.php:513
|
260 |
msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
|
261 |
msgstr "Ви можете використовувати одну ліцензію Про-плагіну для одного домену. Будь ласка, переконайтесь, що інформацію щодо ліцензії і домену введено вірно, у вкладці Client Area. Ми настійливо рекомендуємо Вам вирішити це питання протягом 24 годин, інакше плагін буде деактивовано."
|
262 |
|
263 |
+
#: bws_functions.php:521
|
264 |
+
msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
|
265 |
+
msgstr "Увага: Термін дії тріал періоду Pro версії плагіну скінчився. Щоб продовжити користуватись плагіном, будь ласка, придбайте ліцензію Pro"
|
266 |
|
267 |
+
#: bws_functions.php:523
|
268 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
269 |
msgstr "Строк вашої ліцензії витік. Якщо ви хочете оновлювати наш плагін у майбутньому, вам слід подовжити ліцензію."
|
270 |
|
271 |
+
#: bws_functions.php:523
|
272 |
+
#: bws_functions.php:576
|
273 |
+
#: bws_menu.php:669
|
274 |
+
#: bws_menu.php:691
|
275 |
+
#: bws_menu.php:718
|
276 |
+
#: bws_menu.php:748
|
277 |
+
#: bws_menu.php:794
|
278 |
msgid "Learn more"
|
279 |
msgstr "Дізнатись більше"
|
280 |
|
281 |
+
#: bws_functions.php:533
|
282 |
#, php-format
|
283 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
284 |
+
msgstr "Увага: Ви використовуєте тріал Pro версію плагіну %s."
|
285 |
|
286 |
+
#: bws_functions.php:535
|
287 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
288 |
+
msgstr "Увага: Ви використовуєте тріал Pro версію плагіну."
|
289 |
|
290 |
+
#: bws_functions.php:538
|
291 |
+
msgid "The Pro Trial license will expire on"
|
292 |
+
msgstr "Тріал період Pro версії плагіну закінчується"
|
293 |
|
294 |
+
#: bws_functions.php:576
|
295 |
msgid "You license for"
|
296 |
msgstr "Ваша ліцензія для"
|
297 |
|
298 |
+
#: bws_functions.php:576
|
299 |
msgid "expires on"
|
300 |
msgstr "витікає"
|
301 |
|
302 |
+
#: bws_functions.php:576
|
303 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
304 |
msgstr "та ви більше не будете отримувати першочергову технічну підтримку та оновлення."
|
305 |
|
306 |
+
#: bws_functions.php:626
|
307 |
+
msgid "Thank you for installing"
|
308 |
+
msgstr "Дякуємо, що встановили"
|
309 |
+
|
310 |
+
#: bws_functions.php:627
|
311 |
+
msgid "Let's get started"
|
312 |
+
msgstr "Розпочнемо"
|
313 |
+
|
314 |
+
#: bws_functions.php:628
|
315 |
+
msgid "Configure Settings"
|
316 |
+
msgstr "Налаштувати плагін"
|
317 |
+
|
318 |
+
#: bws_functions.php:631
|
319 |
+
msgid "Add New"
|
320 |
+
msgstr "Додати"
|
321 |
+
|
322 |
+
#: bws_functions.php:635
|
323 |
+
msgid "Close notice"
|
324 |
+
msgstr "Закрити"
|
325 |
+
|
326 |
+
#: bws_functions.php:648
|
327 |
+
msgid "Notice"
|
328 |
+
msgstr "Зауважте"
|
329 |
+
|
330 |
+
#: bws_functions.php:648
|
331 |
+
msgid "The plugin's settings have been changed."
|
332 |
+
msgstr "Налаштування плагіну змінено."
|
333 |
+
|
334 |
+
#: bws_functions.php:649
|
335 |
+
msgid "Save Changes"
|
336 |
+
msgstr "Сохранить изменения"
|
337 |
+
|
338 |
+
#: bws_functions.php:694
|
339 |
+
msgid "Add BWS Plugins Shortcode"
|
340 |
+
msgstr "Додати BWS шорткод"
|
341 |
+
|
342 |
+
#: bws_functions.php:738
|
343 |
msgid "Close"
|
344 |
msgstr "Закрити"
|
345 |
|
346 |
+
#: bws_functions.php:829
|
|
|
347 |
msgid "Restore all plugin settings to defaults"
|
348 |
msgstr "Скинути налаштування плагіну до стандартних"
|
349 |
|
350 |
+
#: bws_functions.php:831
|
|
|
351 |
msgid "Restore settings"
|
352 |
msgstr "Скинути налаштування"
|
353 |
|
354 |
+
#: bws_functions.php:842
|
355 |
msgid "Are you sure you want to restore all settings by default?"
|
356 |
msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
|
357 |
|
358 |
+
#: bws_functions.php:845
|
359 |
msgid "Yes, restore all settings"
|
360 |
msgstr "Так, скинути налаштування"
|
361 |
|
362 |
+
#: bws_functions.php:846
|
363 |
msgid "No, go back to the settings page"
|
364 |
msgstr "Ні, повернутись назад на сторінку налаштувань"
|
365 |
|
366 |
+
#: bws_functions.php:890
|
367 |
+
msgid "Plugin"
|
368 |
+
msgstr "Плагін"
|
369 |
+
|
370 |
+
#: bws_functions.php:899
|
371 |
+
msgid "Shortcode settings"
|
372 |
+
msgstr "Налаштування шорткоду"
|
373 |
+
|
374 |
+
#: bws_functions.php:904
|
375 |
+
msgid "The shortcode will be inserted"
|
376 |
+
msgstr "Буде вставлено шорткод"
|
377 |
+
|
378 |
+
#: bws_functions.php:909
|
379 |
+
msgid "Insert"
|
380 |
+
msgstr "Вставити"
|
381 |
+
|
382 |
+
#: bws_menu.php:506
|
383 |
msgid "Not set"
|
384 |
msgstr "Не задано"
|
385 |
|
386 |
+
#: bws_menu.php:508
|
387 |
+
#: bws_menu.php:509
|
388 |
msgid "On"
|
389 |
msgstr "Увімк."
|
390 |
|
391 |
+
#: bws_menu.php:508
|
392 |
+
#: bws_menu.php:509
|
393 |
msgid "Off"
|
394 |
msgstr "Вимк."
|
395 |
|
396 |
+
#: bws_menu.php:510
|
397 |
+
#: bws_menu.php:511
|
398 |
+
#: bws_menu.php:512
|
399 |
+
#: bws_menu.php:513
|
400 |
+
#: bws_menu.php:514
|
401 |
+
#: bws_menu.php:526
|
402 |
msgid "N/A"
|
403 |
msgstr "Невідомо"
|
404 |
|
405 |
+
#: bws_menu.php:514
|
406 |
msgid " Mb"
|
407 |
msgstr "Мб"
|
408 |
|
409 |
+
#: bws_menu.php:515
|
410 |
+
#: bws_menu.php:516
|
411 |
+
#: bws_menu.php:517
|
412 |
+
#: bws_menu.php:522
|
413 |
msgid "Yes"
|
414 |
msgstr "Так"
|
415 |
|
416 |
+
#: bws_menu.php:515
|
417 |
+
#: bws_menu.php:516
|
418 |
+
#: bws_menu.php:517
|
419 |
+
#: bws_menu.php:524
|
420 |
msgid "No"
|
421 |
msgstr "Ні"
|
422 |
|
423 |
+
#: bws_menu.php:534
|
424 |
msgid "Operating System"
|
425 |
msgstr "Операційна система"
|
426 |
|
427 |
+
#: bws_menu.php:535
|
428 |
msgid "Server"
|
429 |
msgstr "Тип серверу"
|
430 |
|
431 |
+
#: bws_menu.php:536
|
432 |
msgid "Memory usage"
|
433 |
msgstr "Пам’яті використано"
|
434 |
|
435 |
+
#: bws_menu.php:537
|
436 |
msgid "MYSQL Version"
|
437 |
msgstr "Версія MYSQL"
|
438 |
|
439 |
+
#: bws_menu.php:538
|
440 |
msgid "SQL Mode"
|
441 |
msgstr "Режим SQL"
|
442 |
|
443 |
+
#: bws_menu.php:539
|
444 |
msgid "PHP Version"
|
445 |
msgstr "Версія PHP"
|
446 |
|
447 |
+
#: bws_menu.php:540
|
448 |
msgid "PHP Safe Mode"
|
449 |
msgstr "PHP Безпечний режим"
|
450 |
|
451 |
+
#: bws_menu.php:541
|
452 |
msgid "PHP Allow URL fopen"
|
453 |
msgstr "Дозволити PHP URL fopen"
|
454 |
|
455 |
+
#: bws_menu.php:542
|
456 |
msgid "PHP Memory Limit"
|
457 |
msgstr "Ліміт пам’яті"
|
458 |
|
459 |
+
#: bws_menu.php:543
|
460 |
msgid "PHP Max Upload Size"
|
461 |
msgstr "Макс. розмір файлу, що завантажується"
|
462 |
|
463 |
+
#: bws_menu.php:544
|
464 |
msgid "PHP Max Post Size"
|
465 |
msgstr "Макс. розмір посту"
|
466 |
|
467 |
+
#: bws_menu.php:545
|
468 |
msgid "PHP Max Script Execute Time"
|
469 |
msgstr "Макс. час виконання сценарію"
|
470 |
|
471 |
+
#: bws_menu.php:546
|
472 |
msgid "PHP Exif support"
|
473 |
msgstr "Підтримка PHP Exif"
|
474 |
|
475 |
+
#: bws_menu.php:547
|
476 |
msgid "PHP IPTC support"
|
477 |
msgstr "Підтримка PHP IPTC"
|
478 |
|
479 |
+
#: bws_menu.php:548
|
480 |
msgid "PHP XML support"
|
481 |
msgstr "Підтримка PHP XML"
|
482 |
|
483 |
+
#: bws_menu.php:549
|
484 |
msgid "Site URL"
|
485 |
msgstr "Адреса сайту"
|
486 |
|
487 |
+
#: bws_menu.php:550
|
488 |
msgid "Home URL"
|
489 |
msgstr "Адреса домашньої сторінки"
|
490 |
|
491 |
+
#: bws_menu.php:553
|
492 |
msgid "WordPress Version"
|
493 |
msgstr "Версія WordPress"
|
494 |
|
495 |
+
#: bws_menu.php:554
|
496 |
msgid "WordPress DB Version"
|
497 |
msgstr "Версія бази даних WordPress"
|
498 |
|
499 |
+
#: bws_menu.php:555
|
500 |
msgid "Multisite"
|
501 |
msgstr "Мультисайт"
|
502 |
|
503 |
+
#: bws_menu.php:556
|
504 |
msgid "Active Theme"
|
505 |
msgstr "Активна тема"
|
506 |
|
507 |
+
#: bws_menu.php:571
|
508 |
msgid "Please enter a valid email address."
|
509 |
msgstr "Будь ласка, введіть коректний емейл."
|
510 |
|
511 |
+
#: bws_menu.php:575
|
512 |
msgid "Email with system info is sent to "
|
513 |
msgstr "Емейл з системною інформацією надіслано на"
|
514 |
|
515 |
+
#: bws_menu.php:579
|
516 |
msgid "Thank you for contacting us."
|
517 |
msgstr "Дякуємо, що звернулись до нас."
|
518 |
|
519 |
+
#: bws_menu.php:612
|
520 |
msgid "Sorry, email message could not be delivered."
|
521 |
msgstr "Вибачте, ваше емейл не може бути доставлено"
|
522 |
|
523 |
+
#: bws_menu.php:620
|
524 |
msgid "Need help?"
|
525 |
msgstr "Потрібна допомога?"
|
526 |
|
527 |
+
#: bws_menu.php:621
|
528 |
msgid "Client area"
|
529 |
msgstr "Клієнтам"
|
530 |
|
531 |
+
#: bws_menu.php:622
|
532 |
+
#: bws_menu.php:933
|
533 |
msgid "System status"
|
534 |
msgstr "Системна інформація"
|
535 |
|
536 |
+
#: bws_menu.php:627
|
537 |
msgid "Plugins"
|
538 |
msgstr "Плагіни"
|
539 |
|
540 |
+
#: bws_menu.php:629
|
541 |
msgid "Themes"
|
542 |
msgstr "Теми"
|
543 |
|
544 |
+
#: bws_menu.php:634
|
545 |
msgid "All"
|
546 |
msgstr "Всі"
|
547 |
|
548 |
+
#: bws_menu.php:635
|
549 |
msgid "Installed"
|
550 |
msgstr "Встановлені"
|
551 |
|
552 |
+
#: bws_menu.php:636
|
553 |
msgid "Recommended"
|
554 |
msgstr "Рекомендовані "
|
555 |
|
556 |
+
#: bws_menu.php:640
|
557 |
msgid "Installed plugins"
|
558 |
msgstr "Встановлені плагіни"
|
559 |
|
560 |
+
#: bws_menu.php:672
|
561 |
+
#: bws_menu.php:721
|
562 |
msgid "Settings"
|
563 |
msgstr "Налаштування"
|
564 |
|
565 |
+
#: bws_menu.php:693
|
566 |
+
#: bws_menu.php:750
|
567 |
msgid "Activate this plugin"
|
568 |
msgstr "Активувати плагін"
|
569 |
|
570 |
+
#: bws_menu.php:708
|
571 |
+
#: bws_menu.php:738
|
572 |
+
#: bws_menu.php:784
|
573 |
msgid "Go"
|
574 |
msgstr "Перейти"
|
575 |
|
576 |
+
#: bws_menu.php:712
|
577 |
+
#: bws_menu.php:742
|
578 |
+
#: bws_menu.php:788
|
579 |
msgid "DONATE"
|
580 |
msgstr "Підтримати нас"
|
581 |
|
582 |
+
#: bws_menu.php:758
|
583 |
msgid "Recommended plugins"
|
584 |
msgstr "Рекомендовані плагіни"
|
585 |
|
586 |
+
#: bws_menu.php:796
|
587 |
msgid "Install now"
|
588 |
msgstr "Встановити"
|
589 |
|
590 |
+
#: bws_menu.php:817
|
591 |
msgid "Try again"
|
592 |
msgstr "Спробувати ще раз"
|
593 |
|
594 |
+
#: bws_menu.php:835
|
595 |
#, php-format
|
596 |
msgid "Preview “%s”"
|
597 |
msgstr "Попередній перегляд “%s”"
|
598 |
|
599 |
+
#: bws_menu.php:866
|
600 |
#, php-format
|
601 |
msgid "Install %s"
|
602 |
msgstr "Встановити %s"
|
603 |
|
604 |
+
#: bws_menu.php:866
|
605 |
msgid "Install Now"
|
606 |
msgstr "Встановити"
|
607 |
|
608 |
+
#: bws_menu.php:869
|
609 |
#, php-format
|
610 |
msgid "Update to version %s"
|
611 |
msgstr "Оновити до версії %s"
|
612 |
|
613 |
+
#: bws_menu.php:869
|
614 |
msgid "Update"
|
615 |
msgstr "Оновити"
|
616 |
|
617 |
+
#: bws_menu.php:876
|
618 |
#, php-format
|
619 |
msgid "Preview %s"
|
620 |
msgstr "Попередній перегляд %s"
|
621 |
|
622 |
+
#: bws_menu.php:876
|
623 |
msgid "Preview"
|
624 |
msgstr "Попередній перегляд"
|
625 |
|
626 |
+
#: bws_menu.php:882
|
627 |
+
#: bws_menu.php:914
|
628 |
#, php-format
|
629 |
msgid "By %s"
|
630 |
msgstr "За %s"
|
631 |
|
632 |
+
#: bws_menu.php:888
|
633 |
msgid "Details"
|
634 |
msgstr "Деталі"
|
635 |
|
636 |
+
#: bws_menu.php:920
|
637 |
msgid "Already Installed"
|
638 |
msgstr "Уже встановлено %s"
|
639 |
|
640 |
+
#: bws_menu.php:936
|
641 |
msgid "Environment"
|
642 |
msgstr "Системне оточення"
|
643 |
|
644 |
+
#: bws_menu.php:947
|
645 |
msgid "Active Plugins"
|
646 |
msgstr "Активні плагіни"
|
647 |
|
648 |
+
#: bws_menu.php:960
|
649 |
msgid "Inactive Plugins"
|
650 |
msgstr "Не активні плагіни"
|
651 |
|
652 |
+
#: bws_menu.php:976
|
653 |
msgid "Send to support"
|
654 |
msgstr "Відправити службі тех. підтримки"
|
655 |
|
656 |
+
#: bws_menu.php:983
|
657 |
msgid "Send to custom email »"
|
658 |
msgstr "Відправити на електронну адресу »"
|
659 |
|
797 |
#~ msgid "CAPTCHA complexity level"
|
798 |
#~ msgstr "Уровень сложности КАПЧИ"
|
799 |
|
|
|
|
|
|
|
800 |
#~ msgid "ERROR"
|
801 |
#~ msgstr "Ошибка"
|
802 |
|
css/style.css
CHANGED
@@ -1,7 +1,3 @@
|
|
1 |
-
.gglstmp_span {
|
2 |
-
color: #888888;
|
3 |
-
font-size: 10px;
|
4 |
-
}
|
5 |
#gglstmp_authorization_button {
|
6 |
margin: 20px 0;
|
7 |
display: inline-block;
|
|
|
|
|
|
|
|
|
1 |
#gglstmp_authorization_button {
|
2 |
margin: 20px 0;
|
3 |
display: inline-block;
|
google-sitemap-plugin.php
CHANGED
@@ -4,7 +4,9 @@ Plugin Name: Google Sitemap by BestWebSoft
|
|
4 |
Plugin URI: http://bestwebsoft.com/products/
|
5 |
Description: Plugin to add google sitemap file in Google Webmaster Tools account.
|
6 |
Author: BestWebSoft
|
7 |
-
|
|
|
|
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
@@ -30,7 +32,7 @@ License: GPLv2 or later
|
|
30 |
if ( ! function_exists( 'gglstmp_admin_menu' ) ) {
|
31 |
function gglstmp_admin_menu() {
|
32 |
bws_add_general_menu( plugin_basename( __FILE__ ) );
|
33 |
-
add_submenu_page( 'bws_plugins', __( 'Google Sitemap Settings', 'sitemap' ), 'Google Sitemap', 'manage_options',
|
34 |
|
35 |
global $gglstmppr_url_home, $gglstmppr_url, $gglstmppr_url_send, $gglstmppr_url_send_sitemap;
|
36 |
$gglstmppr_url_home = home_url( "/" );
|
@@ -40,13 +42,17 @@ if ( ! function_exists( 'gglstmp_admin_menu' ) ) {
|
|
40 |
}
|
41 |
}
|
42 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
/* Function adds language files */
|
44 |
if ( ! function_exists( 'gglstmp_init' ) ) {
|
45 |
function gglstmp_init() {
|
46 |
-
global $gglstmp_plugin_info;
|
47 |
-
|
48 |
-
/* Internationalization */
|
49 |
-
load_plugin_textdomain( 'sitemap', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
50 |
|
51 |
if ( empty( $gglstmp_plugin_info ) ) {
|
52 |
if ( ! function_exists( 'get_plugin_data' ) )
|
@@ -55,9 +61,11 @@ if ( ! function_exists( 'gglstmp_init' ) ) {
|
|
55 |
}
|
56 |
|
57 |
/* add general functions */
|
58 |
-
require_once( dirname( __FILE__ ) . '/bws_menu/
|
|
|
59 |
|
60 |
-
|
|
|
61 |
|
62 |
/* Get options from the database */
|
63 |
if ( ! is_admin() || ( isset( $_GET['page'] ) && "google-sitemap-plugin.php" == $_GET['page'] ) ) {
|
@@ -90,10 +98,12 @@ if ( ! function_exists( 'gglstmp_register_settings' ) ) {
|
|
90 |
global $gglstmp_settings, $gglstmp_plugin_info, $gglstmp_option_defaults;
|
91 |
|
92 |
$gglstmp_option_defaults = array(
|
93 |
-
'plugin_option_version'
|
94 |
-
'post_type'
|
95 |
-
'taxonomy'
|
96 |
-
'sitemap'
|
|
|
|
|
97 |
);
|
98 |
|
99 |
if ( ! get_option( 'gglstmp_settings' ) )
|
@@ -105,6 +115,7 @@ if ( ! function_exists( 'gglstmp_register_settings' ) ) {
|
|
105 |
if ( ! isset( $gglstmp_settings['post_type'] ) && is_array( $gglstmp_settings ) )
|
106 |
$gglstmp_settings['post_type'] = $gglstmp_settings;
|
107 |
|
|
|
108 |
$gglstmp_settings = array_merge( $gglstmp_option_defaults, $gglstmp_settings );
|
109 |
$gglstmp_settings['plugin_option_version'] = $gglstmp_plugin_info["Version"];
|
110 |
update_option( 'gglstmp_settings', $gglstmp_settings );
|
@@ -277,7 +288,7 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
|
|
277 |
file_put_contents( $gglstmppr_url_robot, $file_content );
|
278 |
}
|
279 |
} else {
|
280 |
-
$error = __( 'Cannot edit "robots.txt". Check your permissions.', 'sitemap' );
|
281 |
$gglstmp_robots_flag = 0;
|
282 |
}
|
283 |
}
|
@@ -288,12 +299,12 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
|
|
288 |
$gglstmp_robots = get_option( 'gglstmp_robots' );
|
289 |
update_option( 'gglstmp_settings', $gglstmp_settings );
|
290 |
if ( ! isset( $_POST['gglstmp_authorize'] ) && ! isset( $_POST['gglstmp_logout'] ) && ! isset( $_POST['gglstmp_menu'] ) ) {
|
291 |
-
$message .= " " . __( "Settings saved." , 'sitemap' );
|
292 |
}
|
293 |
}
|
294 |
|
295 |
if ( isset( $_POST['gglstmp_new'] ) && check_admin_referer( $plugin_basename, 'gglstmp_nonce_name' ) ) {
|
296 |
-
$message = __( "Your Sitemap file is created in the site root directory.", 'sitemap' );
|
297 |
gglstmp_sitemapcreate();
|
298 |
}
|
299 |
|
@@ -328,7 +339,7 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
|
|
328 |
file_put_contents( $gglstmppr_url_robot, $file_content );
|
329 |
}
|
330 |
} else {
|
331 |
-
$error = __( 'Cannot edit "robot.txt". Check your permissions.', 'sitemap' );
|
332 |
}
|
333 |
}
|
334 |
if ( false === get_option( 'gglstmp_robots' ) )
|
@@ -337,24 +348,24 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
|
|
337 |
update_option( 'gglstmp_robots', 0 );
|
338 |
$gglstmp_robots = get_option( 'gglstmp_robots' );
|
339 |
update_option( 'gglstmp_settings', $gglstmp_settings );
|
340 |
-
$message = __( 'All plugin settings were restored.', 'sitemap' );
|
341 |
} ?>
|
342 |
<div class="wrap">
|
343 |
<div class="icon32 icon32-bws" id="icon-options-general"></div>
|
344 |
-
<h2><?php _e( "Google Sitemap Settings", 'sitemap' ); ?></h2>
|
345 |
<h2 class="nav-tab-wrapper">
|
346 |
-
<a class="nav-tab<?php if ( !isset( $_GET['action'] ) ) echo ' nav-tab-active'; ?>" href="admin.php?page=google-sitemap-plugin.php"><?php _e( 'Settings', 'sitemap' ); ?></a>
|
347 |
-
<a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'extra' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=google-sitemap-plugin.php&action=extra"><?php _e( 'Extra settings', 'sitemap' ); ?></a>
|
348 |
-
<a class="nav-tab" href="http://bestwebsoft.com/products/google-sitemap/faq/" target="_blank"><?php _e( 'FAQ', 'sitemap' ); ?></a>
|
349 |
-
<a class="nav-tab bws_go_pro_tab<?php if ( isset( $_GET['action'] ) && 'go_pro' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=google-sitemap-plugin.php&action=go_pro"><?php _e( 'Go PRO', 'sitemap' ); ?></a>
|
350 |
</h2>
|
351 |
<?php if ( ! isset( $_GET['action'] ) && is_multisite() && ! is_subdomain_install() ) { ?>
|
352 |
<div id="gglstmp_check_sitemap_block" class="error">
|
353 |
<p>
|
354 |
<?php printf( '<strong>%s</strong> %s',
|
355 |
-
__( 'Warning:', 'sitemap' ),
|
356 |
sprintf(
|
357 |
-
__( 'To have an access to subsites XML files, please add the following rule %s to your %s file in %s after line %s.', 'sitemap' ),
|
358 |
'<code>RewriteRule ([^/]+\.xml)$ $1 [L]</code>',
|
359 |
'<strong>.htaccess</strong>',
|
360 |
sprintf( '<strong>"%s"</strong>', ABSPATH ),
|
@@ -364,7 +375,7 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
|
|
364 |
</p>
|
365 |
<div style="margin: .5em 0; padding: 2px;">
|
366 |
<form action="admin.php?page=google-sitemap-plugin.php" method='post' id="gglstmp_check_sitemap">
|
367 |
-
<input type="submit" class="button-secondary" name="gglstmp_check_sitemap" value="<?php _e( 'Сheck Access', 'sitemap' ) ?>" />
|
368 |
<?php wp_nonce_field( $plugin_basename, 'gglstmp_nonce_sitemap' ); ?>
|
369 |
</form>
|
370 |
<?php if ( isset( $_POST['gglstmp_check_sitemap'] ) && check_admin_referer( $plugin_basename, 'gglstmp_nonce_sitemap' ) ) {
|
@@ -379,58 +390,58 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
|
|
379 |
} ?>
|
380 |
</div>
|
381 |
</div>
|
382 |
-
<?php }
|
383 |
-
|
384 |
<div class="updated fade" <?php if ( "" != $error || $message == "" ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
|
385 |
<div class="error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
|
386 |
<?php if ( ! isset( $_GET['action'] ) ) {
|
387 |
if ( isset( $_REQUEST['bws_restore_default'] ) && check_admin_referer( $plugin_basename, 'bws_settings_nonce_name' ) ) {
|
388 |
bws_form_restore_default_confirm( $plugin_basename );
|
389 |
} else { ?>
|
390 |
-
<form action="admin.php?page=google-sitemap-plugin.php" method='post'
|
391 |
<?php /*=============================== Creating sitemap file ====================================*/
|
392 |
if ( file_exists( $gglstmppr_url_sitemap ) ) {
|
393 |
if ( is_multisite() ) {
|
394 |
-
echo '<p><a href="' . $gglstmppr_url_home . "sitemap_" . $home_url . '.xml" target="_new">' . __( "The Sitemap file", 'sitemap' ) . "</a> " . __( "already exists. If you would like to replace it with a new one, please choose the necessary box below.", 'sitemap' ) . "</p>";
|
395 |
} else {
|
396 |
-
echo '<p><a href="' . $gglstmppr_url_home . 'sitemap.xml" target="_new">' . __( "The Sitemap file", 'sitemap' ) . "</a> " . __( "already exists. If you would like to replace it with a new one, please choose the necessary box below.", 'sitemap' ) . "</p>";
|
397 |
}
|
398 |
} else {
|
399 |
gglstmp_sitemapcreate();
|
400 |
if ( is_multisite() ) {
|
401 |
-
echo '<p><a href="' . $gglstmppr_url_home . "sitemap_" . $home_url . '.xml" target="_new">' . __( "Your Sitemap file", 'sitemap' ) . "</a> " . __( "is created in the site root directory.", 'sitemap' ) . "</p>";
|
402 |
} else {
|
403 |
-
echo '<p><a href="' . $gglstmppr_url_home . 'sitemap.xml" target="_new">' . __( "Your Sitemap file", 'sitemap' ) . "</a> " . __( "is created in the site root directory.", 'sitemap' ) . "</p>";
|
404 |
}
|
405 |
}
|
406 |
/*========================================== Recreating sitemap file ====================================*/
|
407 |
if ( is_multisite() ) {
|
408 |
-
echo '<p>' . __( "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using", 'sitemap' ) . " <a href=\"https://www.google.com/webmasters/tools/home?hl=en\">". __( "this", 'sitemap' ) . "</a> ". __( "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field", 'sitemap' ) . " - '" . $gglstmppr_url_home . "sitemap_" . $home_url . ".xml'.</p>";
|
409 |
} else {
|
410 |
-
echo '<p>' . __( "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using", 'sitemap' ) . " <a href=\"https://www.google.com/webmasters/tools/home?hl=en\">". __( "this", 'sitemap' ) . "</a> ". __( "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field", 'sitemap' ) . " - '" . $gglstmppr_url_home . "sitemap.xml'.</p>";
|
411 |
} ?>
|
412 |
<table class="form-table">
|
413 |
<tr valign="top">
|
414 |
<td colspan="2">
|
415 |
-
<label><input type='checkbox' name='gglstmp_new' value="1" /> <?php _e( "I want to create a new sitemap file or update the existing one", 'sitemap' ); ?></label>
|
416 |
</td>
|
417 |
</tr>
|
418 |
<?php if ( is_multisite() ) { ?>
|
419 |
<tr valign="top">
|
420 |
<td colspan="2">
|
421 |
-
<label><input type='checkbox' disabled="disabled" name='gglstmp_checkbox' value="1" <?php if ( 1 == $gglstmp_robots ) echo 'checked="checked"'; ?> /> <?php _e( "I want to add sitemap file path in robots.txt", 'sitemap' );?></label>
|
422 |
-
<p style="color:red"><?php _e( "Since you are using multisiting, the plugin does not allow to add a sitemap to robots.txt", 'sitemap' ); ?></div>
|
423 |
</td>
|
424 |
</tr>
|
425 |
<?php } else { ?>
|
426 |
<tr valign="top">
|
427 |
<td colspan="2">
|
428 |
-
<label><input type='checkbox' name='gglstmp_checkbox' value="1" <?php if ( 1 == $gglstmp_robots ) echo 'checked="checked"'; ?> /> <?php _e( "I want to add sitemap file path in", 'sitemap' ); ?> <a href="<?php echo $gglstmppr_url_home; ?>robots.txt" target="_new">robots.txt</a></label>
|
429 |
</td>
|
430 |
</tr>
|
431 |
<?php } ?>
|
432 |
<tr valign="top">
|
433 |
-
<th scope="row" colspan="2"><?php _e( 'Please choose the necessary post types and taxonomies the links to which are to be added to the sitemap:', 'sitemap' ); ?> </th>
|
434 |
</tr>
|
435 |
<tr valign="top">
|
436 |
<td colspan="2">
|
@@ -456,30 +467,27 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
|
|
456 |
<div class="bws_table_bg"></div>
|
457 |
<table class="form-table bws_pro_version">
|
458 |
<tr valign="top">
|
459 |
-
<th><?php _e( 'XML Sitemap "Change Frequency" parameter', 'sitemap' ); ?></th>
|
460 |
<td>
|
461 |
<select name="gglstmp_sitemap_change_frequency">
|
462 |
-
<option value="always"><?php _e( 'Always', 'sitemap' ); ?></option>
|
463 |
-
<option value="hourly"><?php _e( 'Hourly', 'sitemap' ); ?></option>
|
464 |
-
<option value="daily"><?php _e( 'Daily', 'sitemap' ); ?></option>
|
465 |
-
<option value="weekly"><?php _e( 'Weekly', 'sitemap' ); ?></option>
|
466 |
-
<option selected value="monthly"><?php _e( 'Monthly', 'sitemap' ); ?></option>
|
467 |
-
<option value="yearly"><?php _e( 'Yearly', 'sitemap' ); ?></option>
|
468 |
-
<option value="never"><?php _e( 'Never', 'sitemap' ); ?></option>
|
469 |
</select><br />
|
470 |
-
<span style="color: #888888;font-size: 10px;"><?php _e( 'This value is used in the sitemap file and provides general information to search engines. The sitemap itself is generated once and will be re-generated when you create or update any post or page.', 'sitemap' ); ?></span>
|
471 |
</td>
|
472 |
</tr>
|
473 |
</table>
|
474 |
</div>
|
475 |
<div class="bws_pro_version_tooltip">
|
476 |
<div class="bws_info">
|
477 |
-
<?php _e( 'Unlock premium options by upgrading to
|
478 |
-
<a href="http://bestwebsoft.com/products/google-sitemap/?k=28d4cf0b4ab6f56e703f46f60d34d039&pn=83&v=<?php echo $gglstmp_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Google Sitemap Pro"><?php _e( 'Learn More', 'sitemap' ); ?></a>
|
479 |
</div>
|
480 |
-
<a class="bws_button" href="http://bestwebsoft.com/products/google-sitemap
|
481 |
-
<?php _e( 'Go', 'sitemap' ); ?> <strong>PRO</strong>
|
482 |
-
</a>
|
483 |
<div class="clear"></div>
|
484 |
</div>
|
485 |
</div>
|
@@ -487,12 +495,12 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
|
|
487 |
<?php if ( ! function_exists( 'curl_init' ) ) { ?>
|
488 |
<tr valign="top">
|
489 |
<td colspan="2" class="gglstmp_error">
|
490 |
-
<?php _e( "This hosting does not support сURL, so you cannot add a sitemap file automatically.", 'sitemap' ); ?>
|
491 |
</td>
|
492 |
</tr>
|
493 |
<?php } else { ?>
|
494 |
<tr id="gglstmp_google_webmaster" valign="top">
|
495 |
-
<th scope="row"><?php _e( 'Remote work with Google Webmaster Tools', 'sitemap' ); ?></th>
|
496 |
<td>
|
497 |
<?php $gglstmp_client = gglstmp_client();
|
498 |
$gglstmp_blog_prefix = '_' . get_current_blog_id();
|
@@ -516,18 +524,18 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
|
|
516 |
}
|
517 |
if ( $gglstmp_client->getAccessToken() ) { ?>
|
518 |
<div id="gglstmp_logout_button">
|
519 |
-
<input class="button-secondary" name="gglstmp_logout" type="submit" value="<?php _e( 'Log out from Google Webmaster Tools', 'sitemap' ); ?>" />
|
520 |
</div>
|
521 |
-
<?php $gglstmp_menu_ad = __( "I want to add this site to Google Webmaster Tools", 'sitemap' );
|
522 |
-
$gglstmp_menu_del = __( "I want to delete this site from Google Webmaster Tools", 'sitemap' );
|
523 |
-
$gglstmp_menu_inf = __( "I want to get info about this site in Google Webmaster Tools", 'sitemap' ); ?>
|
524 |
<fieldset>
|
525 |
<label><input type='radio' name='gglstmp_menu' value="ad" /> <?php echo $gglstmp_menu_ad; ?></label><br />
|
526 |
<label><input type='radio' name='gglstmp_menu' value="del" /> <?php echo $gglstmp_menu_del; ?></label><br />
|
527 |
<label><input type='radio' name='gglstmp_menu' value="inf" /> <?php echo $gglstmp_menu_inf; ?></label><br />
|
528 |
-
<span class="
|
529 |
-
<?php _e( 'In case you failed to add a sitemap to Google automatically using this plugin, it is possible to do it manually', 'sitemap' ); ?>:
|
530 |
-
<a target="_blank" href="https://docs.google.com/document/d/1VOJx_OaasVskCqi9fsAbUmxfsckoagPU5Py97yjha9w/edit"><?php _e( 'View the Instruction', 'sitemap' ); ?></a>
|
531 |
</span>
|
532 |
</fieldset>
|
533 |
<?php if ( isset( $_POST['gglstmp_menu'] ) && check_admin_referer( $plugin_basename, 'gglstmp_nonce_name' ) ) {
|
@@ -552,14 +560,14 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
|
|
552 |
$gglstmp_client->setState( $gglstmp_state );
|
553 |
$_SESSION[ 'gglstmp_state' . $gglstmp_blog_prefix ] = $gglstmp_client;
|
554 |
$gglstmp_auth_url = $gglstmp_client->createAuthUrl(); ?>
|
555 |
-
<p><?php _e( "Please authorize via your Google Account in order to add or delete a site and a sitemap file automatically or get information about this site in Google Webmaster Tools.", 'sitemap' ); ?></p>
|
556 |
-
<a id="gglstmp_authorization_button" class="button-primary" 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', 'sitemap' ); ?></a>
|
557 |
<div id="gglstmp_authorization_form">
|
558 |
<input id="gglstmp_authorization_code" name="gglstmp_authorization_code" type="text" autocomplete="off" maxlength="100" />
|
559 |
-
<input id="gglstmp_authorize" class="button-primary" name="gglstmp_authorize" type="submit" value="<?php _e( 'Authorize', 'sitemap' ); ?>">
|
560 |
</div>
|
561 |
<?php if ( isset( $_POST['gglstmp_authorization_code'] ) && isset( $_POST['gglstmp_authorize'] ) && check_admin_referer( $plugin_basename, 'gglstmp_nonce_name' ) ) { ?>
|
562 |
-
<div id="gglstmp_authorize_error"><?php _e( 'Invalid authorization code. Please, try again.', 'sitemap' ); ?></div>
|
563 |
<?php }
|
564 |
} ?>
|
565 |
</td>
|
@@ -568,7 +576,7 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
|
|
568 |
</table>
|
569 |
<input type="hidden" name="gglstmp_submit" value="submit" />
|
570 |
<p class="submit">
|
571 |
-
<input type="submit" class="button-primary" value="<?php _e( 'Save Changes', 'sitemap' ); ?>" />
|
572 |
</p>
|
573 |
<?php wp_nonce_field( $plugin_basename, 'gglstmp_nonce_name' ); ?>
|
574 |
</form>
|
@@ -582,37 +590,34 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
|
|
582 |
<table class="form-table bws_pro_version">
|
583 |
<tr valign="top">
|
584 |
<td colspan="2">
|
585 |
-
<?php _e( 'Please choose the necessary post types and taxonomies the links to which are to be added to the sitemap:', 'sitemap' ); ?>
|
586 |
</td>
|
587 |
</tr>
|
588 |
<tr valign="top">
|
589 |
<td colspan="2">
|
590 |
<label>
|
591 |
<input disabled="disabled" checked="checked" id="gglstmp_jstree_url" type="checkbox" name="gglstmp_jstree_url" value="1" />
|
592 |
-
<?php _e( "Show URL for pages", 'sitemap' );?>
|
593 |
</label>
|
594 |
</td>
|
595 |
</tr>
|
596 |
<tr valign="top">
|
597 |
<td colspan="2">
|
598 |
-
<img src="<?php echo plugins_url( 'images/pro_screen_1.png', __FILE__ ); ?>" alt="<?php _e( "Example of site pages' tree", 'sitemap' ); ?>" title="<?php _e( "Example of site pages' tree", 'sitemap' ); ?>" />
|
599 |
</td>
|
600 |
</tr>
|
601 |
<tr valign="top">
|
602 |
<td colspan="2">
|
603 |
-
<input disabled="disabled" type="submit" class="button-primary" value="<?php _e( 'Save Changes', 'sitemap' ); ?>" />
|
604 |
</td>
|
605 |
</tr>
|
606 |
</table>
|
607 |
</div>
|
608 |
<div class="bws_pro_version_tooltip">
|
609 |
<div class="bws_info">
|
610 |
-
<?php _e( 'Unlock premium options by upgrading to
|
611 |
-
<a href="http://bestwebsoft.com/products/google-sitemap/?k=28d4cf0b4ab6f56e703f46f60d34d039&pn=83&v=<?php echo $gglstmp_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Google Sitemap Pro"><?php _e( 'Learn More', 'sitemap' ); ?></a>
|
612 |
</div>
|
613 |
-
<a class="bws_button" href="http://bestwebsoft.com/products/google-sitemap
|
614 |
-
<?php _e( 'Go', 'sitemap' ); ?> <strong>PRO</strong>
|
615 |
-
</a>
|
616 |
<div class="clear"></div>
|
617 |
</div>
|
618 |
</div>
|
@@ -646,7 +651,6 @@ if ( ! function_exists( 'gglstmp_robots_add_sitemap' ) ) {
|
|
646 |
if ( ! function_exists( 'gglstmp_add_plugin_stylesheet' ) ) {
|
647 |
function gglstmp_add_plugin_stylesheet() {
|
648 |
if ( isset( $_GET['page'] ) && "google-sitemap-plugin.php" == $_GET['page'] ) {
|
649 |
-
wp_enqueue_script( 'gglstmp_script', plugins_url( 'js/script.js' , __FILE__ ) );
|
650 |
wp_enqueue_style( 'gglstmp_stylesheet', plugins_url( 'css/style.css', __FILE__ ) );
|
651 |
}
|
652 |
}
|
@@ -660,7 +664,7 @@ if ( ! function_exists( 'gglstmp_info_site' ) ) {
|
|
660 |
$gglstmp_instruction_url = 'https://docs.google.com/document/d/1VOJx_OaasVskCqi9fsAbUmxfsckoagPU5Py97yjha9w/edit';
|
661 |
$gglstmp_wmt_sites_arr = $gglstmp_wmt_sitemaps_arr = array();
|
662 |
|
663 |
-
printf( '<h4>' . __( 'I want to get info about site %s in Google Webmaster Tools', 'sitemap' ) . ':</h4>', sprintf( '<a href="%1$s">%1$s</a>', $gglstmppr_url_home ) );
|
664 |
echo '<div class="gglstmp_wmt_content">';
|
665 |
|
666 |
$gglstmp_wmt_sites = $gglstmp_wmt->sites->listSites()->getSiteEntry();
|
@@ -669,13 +673,13 @@ if ( ! function_exists( 'gglstmp_info_site' ) ) {
|
|
669 |
}
|
670 |
|
671 |
if ( ! array_key_exists( $gglstmppr_url_home, $gglstmp_wmt_sites_arr ) ) {
|
672 |
-
printf( '<div>%s</div>', __( 'This site is not added to the Google Webmaster Tools.', 'sitemap') );
|
673 |
echo '</div><!-- .gglstmp_wmt_content -->';
|
674 |
return;
|
675 |
} else {
|
676 |
-
printf( '<div>%s</div>', __( 'This site is added to the Google Webmaster Tools.', 'sitemap' ) );
|
677 |
-
printf( '<div><strong>%s</strong> <a href="%s" target="_blank">%2$s</a></div>', __( 'Site URL:', 'sitemap'), $gglstmppr_url_home );
|
678 |
-
printf( '<div><strong>%s</strong> %s</div>', __( 'Site verification:', 'sitemap'), ( $gglstmp_wmt_sites_arr[ $gglstmppr_url_home ] == 'siteOwner' ) ? __( 'verified', 'sitemap' ) : __( 'not verified', 'sitemap' ) );
|
679 |
|
680 |
try {
|
681 |
$gglstmp_wmt_sitemaps = $gglstmp_wmt->sitemaps->listSitemaps( $gglstmppr_url_home )->getSitemap();
|
@@ -684,9 +688,9 @@ if ( ! function_exists( 'gglstmp_info_site' ) ) {
|
|
684 |
if ( isset( $getErrors[0]['message'] ) ) {
|
685 |
printf( '<div>%s</div>', $getErrors[0]['message'] );
|
686 |
} else {
|
687 |
-
printf( '<div>%s</div>', __( 'An unexpected error occurred when verifying site in the Google Webmaster Tools.', 'sitemap' ) );
|
688 |
}
|
689 |
-
printf( '<div>%s - <a target="_blank" href="%s">%s</a></div>', __( "The site couldn't be verified. Please, verify the site manually", 'sitemap' ), $gglstmp_instruction_url, __( 'View the Instruction', 'sitemap' ) );
|
690 |
echo '</div><!-- .gglstmp_wmt_content -->';
|
691 |
return;
|
692 |
}
|
@@ -699,17 +703,17 @@ if ( ! function_exists( 'gglstmp_info_site' ) ) {
|
|
699 |
if ( isset( $gglstmp_settings['sitemap']['loc'] ) ) {
|
700 |
$gglstmppr_url_sitemap = $gglstmp_settings['sitemap']['loc'];
|
701 |
if ( ! array_key_exists( $gglstmppr_url_sitemap, $gglstmp_wmt_sitemaps_arr ) ) {
|
702 |
-
printf( '<div>%s</div>', __( 'The sitemap file is not added to the Google Webmaster Tools.', 'sitemap') );
|
703 |
} else {
|
704 |
if( ! $gglstmp_wmt_sitemaps_arr[ $gglstmppr_url_sitemap ] ) {
|
705 |
-
printf( '<div>%s</div>', __( 'The sitemap file is added to the Google Webmaster Tools.', 'sitemap') );
|
706 |
} else {
|
707 |
-
printf( '<div class="gglstmp_wmt_error">%s <a href="%s">%s</a></div>', __( 'The sitemap file is added to the Google Webmaster Tools, but has some errors or warnings.', 'sitemap' ), sprintf( 'https://www.google.com/webmasters/tools/sitemap-details?hl=en&siteUrl=%s&sitemapUrl=%s#ISSUE_FILTER=-1', urlencode( $gglstmppr_url_home ), urlencode( $gglstmppr_url_sitemap ) ), __( 'Please, see them in the Google Webmaster Tools.', 'sitemap' ) );
|
708 |
}
|
709 |
}
|
710 |
-
printf( '<div><strong>%s</strong> <a href="%s" target="_blank">%2$s</a></div></div>', __( 'Sitemap URL:', 'sitemap'), $gglstmppr_url_sitemap );
|
711 |
} else {
|
712 |
-
printf( '<div>%s - <a target="_blank" href="%s">%s</a></div>', __( 'When checking the sitemap file an unexpected error occurred. Please, check the sitemap file manually', 'sitemap' ), $gglstmp_instruction_url, __( 'View the Instruction', 'sitemap' ) );
|
713 |
}
|
714 |
}
|
715 |
echo '</div><!-- .gglstmp_wmt_content -->';
|
@@ -721,7 +725,7 @@ if ( ! function_exists( 'gglstmp_del_site' ) ) {
|
|
721 |
function gglstmp_del_site( $gglstmp_wmt, $gglstmp_sv ) {
|
722 |
global $gglstmp_settings, $gglstmppr_url_home;
|
723 |
|
724 |
-
printf( '<h4>' . __( 'I want to delete site %s from Google Webmaster Tools', 'sitemap' ) . '</h4>', sprintf( '<a href="%1$s">%1$s</a>', $gglstmppr_url_home ) );
|
725 |
echo '<div class="gglstmp_wmt_content">';
|
726 |
|
727 |
try {
|
@@ -734,12 +738,12 @@ if ( ! function_exists( 'gglstmp_del_site' ) ) {
|
|
734 |
} catch ( Google_Service_Exception $e ) {}
|
735 |
try {
|
736 |
$gglstmp_wmt->sites->delete( $gglstmppr_url_home );
|
737 |
-
printf( '<div>%s</div>', __( 'This site has been successfully deleted from Google Webmaster Tools', 'sitemap' ) );
|
738 |
unset( $gglstmp_settings['site_vererification_code'] );
|
739 |
update_option( 'gglstmp_settings', $gglstmp_settings );
|
740 |
|
741 |
} catch ( Google_Service_Exception $e ) {
|
742 |
-
printf( '<div>%s</div>', __( 'This site is not added to the Google Webmaster Tools.', 'sitemap') );
|
743 |
}
|
744 |
echo '</div><!-- .gglstmp_wmt_content -->';
|
745 |
}
|
@@ -753,20 +757,20 @@ if ( ! function_exists( 'gglstmp_add_site' ) ) {
|
|
753 |
$gglstmp_sv_type = 'SITE';
|
754 |
$gglstmp_instruction_url = 'https://docs.google.com/document/d/1VOJx_OaasVskCqi9fsAbUmxfsckoagPU5Py97yjha9w/edit';
|
755 |
|
756 |
-
printf( '<h4>' . __( 'I want to add site %s in Google Webmaster Tools', 'sitemap' ) . '</h4>', sprintf( '<a href="%1$s">%1$s</a>', $gglstmppr_url_home ) );
|
757 |
echo '<div class="gglstmp_wmt_content">';
|
758 |
|
759 |
try {
|
760 |
$gglstmp_wmt->sites->add( $gglstmppr_url_home );
|
761 |
-
printf( '<div>%s</div>', __( 'The site is added to the Google Webmaster Tools.', 'sitemap' ) );
|
762 |
} catch ( Google_Service_Exception $e ) {
|
763 |
$gglstmp_wmt_error = $e->getErrors();
|
764 |
if ( isset( $gglstmp_wmt_error[0]['message'] ) ) {
|
765 |
printf( '<div>%s</div>', $gglstmp_wmt_error[0]['message'] );
|
766 |
} else {
|
767 |
-
printf( '<div>%s</div>', __( 'When you add a site in the Google Webmaster Tools unexpected error occurred.', 'sitemap' ) );
|
768 |
}
|
769 |
-
printf( '<div>%s - <a target="_blank" href="%s">%s</a></div>', __( "The site couldn't be added. Please, add the site manually", 'sitemap' ), $gglstmp_instruction_url, __( 'View the Instruction', 'sitemap' ) );
|
770 |
echo '</div><!-- .gglstmp_wmt_content -->';
|
771 |
return;
|
772 |
}
|
@@ -782,18 +786,18 @@ if ( ! function_exists( 'gglstmp_add_site' ) ) {
|
|
782 |
$gglstmp_settings['site_vererification_code'] = htmlspecialchars( $gglstmp_getToken['token'] );
|
783 |
if ( preg_match( '|^<meta name="google-site-verification" content="(.*)" />$|', $gglstmp_settings['site_vererification_code'] ) ) {
|
784 |
update_option( 'gglstmp_settings', $gglstmp_settings );
|
785 |
-
printf( '<div>%s</div>', __( 'Verification code has been successfully received and added to the site.', 'sitemap' ) );
|
786 |
} else {
|
787 |
-
printf( '<div>%s</div>', __( 'Verification code has been successfully received but has not been added to the site.', 'sitemap' ) );
|
788 |
}
|
789 |
} catch ( Google_Service_Exception $e ) {
|
790 |
$getErrors = $e->getErrors();
|
791 |
if ( isset( $getErrors[0]['message'] ) ) {
|
792 |
printf( '<div>%s</div>', $getErrors[0]['message'] );
|
793 |
} else {
|
794 |
-
printf( '<div>%s</div>', __( 'An error has occurred when receiving the verification code site in the Google Webmaster.', 'sitemap' ) );
|
795 |
}
|
796 |
-
printf( '<div>%s - <a target="_blank" href="%s">%s</a></div>', __( "The site couldn't be verified. Please, verify the site manually", 'sitemap' ), $gglstmp_instruction_url, __( 'View the Instruction', 'sitemap' ) );
|
797 |
echo '</div><!-- .gglstmp_wmt_content -->';
|
798 |
return;
|
799 |
}
|
@@ -805,15 +809,15 @@ if ( ! function_exists( 'gglstmp_add_site' ) ) {
|
|
805 |
$gglstmp_wmt_resource = new Google_Service_SiteVerification_SiteVerificationWebResourceResource;
|
806 |
$gglstmp_wmt_resource->setSite( $gglstmp_wmt_resource_site );
|
807 |
$gglstmp_sv->webResource->insert( $gglstmp_sv_method, $gglstmp_wmt_resource );
|
808 |
-
printf( '<div>%s</div>', __( 'The site has been successfully verified in the Google Webmaster Tools.', 'sitemap' ) );
|
809 |
} catch ( Google_Service_Exception $e ) {
|
810 |
$getErrors = $e->getErrors();
|
811 |
if ( isset( $getErrors[0]['message'] ) ) {
|
812 |
printf( '<div>%s</div>', $getErrors[0]['message'] );
|
813 |
} else {
|
814 |
-
printf( '<div>%s</div>', __( 'An unexpected error occurred when verifying site in the Google Webmaster Tools.', 'sitemap' ) );
|
815 |
}
|
816 |
-
printf( '<div>%s - <a target="_blank" href="%s">%s</a></div>', __( "The site couldn't be verified. Please, verify the site manually", 'sitemap' ), $gglstmp_instruction_url, __( 'View the Instruction', 'sitemap' ) );
|
817 |
echo '</div><!-- .gglstmp_wmt_content -->';
|
818 |
return;
|
819 |
}
|
@@ -824,21 +828,21 @@ if ( ! function_exists( 'gglstmp_add_site' ) ) {
|
|
824 |
if ( $gglstmp_check_sitemap['code'] == 200 ) {
|
825 |
try {
|
826 |
$gglstmp_wmt->sitemaps->submit( $gglstmppr_url_home, $gglstmppr_url_sitemap );
|
827 |
-
printf( '<div>%s</div>', __( 'The sitemap file has been successfully added to the Google Webmaster Tools.', 'sitemap' ) );
|
828 |
} catch ( Google_Service_Exception $e ) {
|
829 |
$gglstmp_wmt_error = $e->getErrors();
|
830 |
if ( isset( $gglstmp_wmt_error[0]['message'] ) ) {
|
831 |
printf( '<div>%s</div>', $gglstmp_wmt_error[0]['message'] );
|
832 |
} else {
|
833 |
-
printf( '<div>%s</div>', __( 'When you add a sitemap file in the Google Webmaster Tools unexpected error occurred.', 'sitemap' ) );
|
834 |
}
|
835 |
-
printf( '<div>%s - <a target="_blank" href="%s">%s</a></div>', __( "The sitemap file couldn't be added. Please, add the sitemap file manually", 'sitemap' ), $gglstmp_instruction_url, __( 'View the Instruction', 'sitemap' ) );
|
836 |
}
|
837 |
} else {
|
838 |
-
printf( '<div>%s</div>', sprintf( __( 'Error 404. The sitemap file %s not found.', 'sitemap' ), sprintf( '(<a href="%s">%s</a>)', $gglstmp_settings['sitemap']['loc'], $gglstmp_settings['sitemap']['file'] ) ) );
|
839 |
}
|
840 |
} else {
|
841 |
-
printf( '<div>%s</div>', __( 'The sitemap file not found.', 'sitemap' ) );
|
842 |
}
|
843 |
echo '</div><!-- .gglstmp_wmt_content -->';
|
844 |
}
|
@@ -891,7 +895,7 @@ if ( ! function_exists( 'gglstmp_action_links' ) ) {
|
|
891 |
if ( ! $this_plugin )
|
892 |
$this_plugin = plugin_basename( __FILE__ );
|
893 |
if ( $file == $this_plugin ) {
|
894 |
-
$settings_link = '<a href="admin.php?page=google-sitemap-plugin.php">' . __( 'Settings', 'sitemap' ) . '</a>';
|
895 |
array_unshift( $links, $settings_link );
|
896 |
}
|
897 |
}
|
@@ -904,9 +908,9 @@ if ( ! function_exists( 'gglstmp_links' ) ) {
|
|
904 |
$base = plugin_basename( __FILE__ );
|
905 |
if ( $file == $base ) {
|
906 |
if ( ! is_network_admin() )
|
907 |
-
$links[] = '<a href="admin.php?page=google-sitemap-plugin.php">' . __( 'Settings','sitemap' ) . '</a>';
|
908 |
-
$links[] = '<a href="http://wordpress.org/plugins/google-sitemap-plugin/faq/" target="_blank">' . __( 'FAQ','sitemap' ) . '</a>';
|
909 |
-
$links[] = '<a href="http://support.bestwebsoft.com">' . __( 'Support','sitemap' ) . '</a>';
|
910 |
}
|
911 |
return $links;
|
912 |
}
|
@@ -916,8 +920,11 @@ if ( ! function_exists ( 'gglstmp_plugin_banner' ) ) {
|
|
916 |
function gglstmp_plugin_banner() {
|
917 |
global $hook_suffix;
|
918 |
if ( 'plugins.php' == $hook_suffix ) {
|
919 |
-
global $gglstmp_plugin_info;
|
920 |
-
|
|
|
|
|
|
|
921 |
}
|
922 |
}
|
923 |
}
|
@@ -925,8 +932,21 @@ if ( ! function_exists ( 'gglstmp_plugin_banner' ) ) {
|
|
925 |
/*============================================ Function for delete of the plugin settings on register_activation_hook ====================*/
|
926 |
if ( ! function_exists( 'gglstmp_delete_settings' ) ) {
|
927 |
function gglstmp_delete_settings() {
|
928 |
-
|
929 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
930 |
}
|
931 |
}
|
932 |
|
@@ -935,6 +955,9 @@ add_action( 'admin_menu', 'gglstmp_admin_menu' );
|
|
935 |
add_action( 'init', 'gglstmp_init' );
|
936 |
add_action( 'admin_init', 'gglstmp_admin_init' );
|
937 |
|
|
|
|
|
|
|
938 |
add_action( 'admin_enqueue_scripts', 'gglstmp_add_plugin_stylesheet' );
|
939 |
|
940 |
add_action( 'transition_post_status', 'gglstmp_check_post_status', 10, 3 );
|
@@ -951,4 +974,4 @@ add_filter( 'plugin_row_meta', 'gglstmp_links', 10, 2 );
|
|
951 |
|
952 |
add_action( 'admin_notices', 'gglstmp_plugin_banner' );
|
953 |
|
954 |
-
register_uninstall_hook( __FILE__, 'gglstmp_delete_settings'); /* uninstall plugin */
|
4 |
Plugin URI: http://bestwebsoft.com/products/
|
5 |
Description: Plugin to add google sitemap file in Google Webmaster Tools account.
|
6 |
Author: BestWebSoft
|
7 |
+
Text Domain: google-sitemap-plugin
|
8 |
+
Domain Path: /languages
|
9 |
+
Version: 3.0.1
|
10 |
Author URI: http://bestwebsoft.com/
|
11 |
License: GPLv2 or later
|
12 |
*/
|
32 |
if ( ! function_exists( 'gglstmp_admin_menu' ) ) {
|
33 |
function gglstmp_admin_menu() {
|
34 |
bws_add_general_menu( plugin_basename( __FILE__ ) );
|
35 |
+
add_submenu_page( 'bws_plugins', __( 'Google Sitemap Settings', 'google-sitemap-plugin' ), 'Google Sitemap', 'manage_options', 'google-sitemap-plugin.php', 'gglstmp_settings_page' );
|
36 |
|
37 |
global $gglstmppr_url_home, $gglstmppr_url, $gglstmppr_url_send, $gglstmppr_url_send_sitemap;
|
38 |
$gglstmppr_url_home = home_url( "/" );
|
42 |
}
|
43 |
}
|
44 |
|
45 |
+
if ( ! function_exists( 'gglstmp_plugins_loaded' ) ) {
|
46 |
+
function gglstmp_plugins_loaded() {
|
47 |
+
/* Internationalization */
|
48 |
+
load_plugin_textdomain( 'google-sitemap-plugin', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
49 |
+
}
|
50 |
+
}
|
51 |
+
|
52 |
/* Function adds language files */
|
53 |
if ( ! function_exists( 'gglstmp_init' ) ) {
|
54 |
function gglstmp_init() {
|
55 |
+
global $gglstmp_plugin_info;
|
|
|
|
|
|
|
56 |
|
57 |
if ( empty( $gglstmp_plugin_info ) ) {
|
58 |
if ( ! function_exists( 'get_plugin_data' ) )
|
61 |
}
|
62 |
|
63 |
/* add general functions */
|
64 |
+
require_once( dirname( __FILE__ ) . '/bws_menu/bws_include.php' );
|
65 |
+
bws_include_init( plugin_basename( __FILE__ ) );
|
66 |
|
67 |
+
/* check compatible with current WP version */
|
68 |
+
bws_wp_min_version_check( plugin_basename( __FILE__ ), $gglstmp_plugin_info, '3.8', '3.1' );
|
69 |
|
70 |
/* Get options from the database */
|
71 |
if ( ! is_admin() || ( isset( $_GET['page'] ) && "google-sitemap-plugin.php" == $_GET['page'] ) ) {
|
98 |
global $gglstmp_settings, $gglstmp_plugin_info, $gglstmp_option_defaults;
|
99 |
|
100 |
$gglstmp_option_defaults = array(
|
101 |
+
'plugin_option_version' => $gglstmp_plugin_info['Version'],
|
102 |
+
'post_type' => array( 'page', 'post' ),
|
103 |
+
'taxonomy' => array(),
|
104 |
+
'sitemap' => array(),
|
105 |
+
'first_install' => strtotime( "now" ),
|
106 |
+
'display_settings_notice' => 1
|
107 |
);
|
108 |
|
109 |
if ( ! get_option( 'gglstmp_settings' ) )
|
115 |
if ( ! isset( $gglstmp_settings['post_type'] ) && is_array( $gglstmp_settings ) )
|
116 |
$gglstmp_settings['post_type'] = $gglstmp_settings;
|
117 |
|
118 |
+
$gglstmp_option_defaults['display_settings_notice'] = 0;
|
119 |
$gglstmp_settings = array_merge( $gglstmp_option_defaults, $gglstmp_settings );
|
120 |
$gglstmp_settings['plugin_option_version'] = $gglstmp_plugin_info["Version"];
|
121 |
update_option( 'gglstmp_settings', $gglstmp_settings );
|
288 |
file_put_contents( $gglstmppr_url_robot, $file_content );
|
289 |
}
|
290 |
} else {
|
291 |
+
$error = __( 'Cannot edit "robots.txt". Check your permissions.', 'google-sitemap-plugin' );
|
292 |
$gglstmp_robots_flag = 0;
|
293 |
}
|
294 |
}
|
299 |
$gglstmp_robots = get_option( 'gglstmp_robots' );
|
300 |
update_option( 'gglstmp_settings', $gglstmp_settings );
|
301 |
if ( ! isset( $_POST['gglstmp_authorize'] ) && ! isset( $_POST['gglstmp_logout'] ) && ! isset( $_POST['gglstmp_menu'] ) ) {
|
302 |
+
$message .= " " . __( "Settings saved." , 'google-sitemap-plugin' );
|
303 |
}
|
304 |
}
|
305 |
|
306 |
if ( isset( $_POST['gglstmp_new'] ) && check_admin_referer( $plugin_basename, 'gglstmp_nonce_name' ) ) {
|
307 |
+
$message = __( "Your Sitemap file is created in the site root directory.", 'google-sitemap-plugin' );
|
308 |
gglstmp_sitemapcreate();
|
309 |
}
|
310 |
|
339 |
file_put_contents( $gglstmppr_url_robot, $file_content );
|
340 |
}
|
341 |
} else {
|
342 |
+
$error = __( 'Cannot edit "robot.txt". Check your permissions.', 'google-sitemap-plugin' );
|
343 |
}
|
344 |
}
|
345 |
if ( false === get_option( 'gglstmp_robots' ) )
|
348 |
update_option( 'gglstmp_robots', 0 );
|
349 |
$gglstmp_robots = get_option( 'gglstmp_robots' );
|
350 |
update_option( 'gglstmp_settings', $gglstmp_settings );
|
351 |
+
$message = __( 'All plugin settings were restored.', 'google-sitemap-plugin' );
|
352 |
} ?>
|
353 |
<div class="wrap">
|
354 |
<div class="icon32 icon32-bws" id="icon-options-general"></div>
|
355 |
+
<h2><?php _e( "Google Sitemap Settings", 'google-sitemap-plugin' ); ?></h2>
|
356 |
<h2 class="nav-tab-wrapper">
|
357 |
+
<a class="nav-tab<?php if ( !isset( $_GET['action'] ) ) echo ' nav-tab-active'; ?>" href="admin.php?page=google-sitemap-plugin.php"><?php _e( 'Settings', 'google-sitemap-plugin' ); ?></a>
|
358 |
+
<a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'extra' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=google-sitemap-plugin.php&action=extra"><?php _e( 'Extra settings', 'google-sitemap-plugin' ); ?></a>
|
359 |
+
<a class="nav-tab" href="http://bestwebsoft.com/products/google-sitemap/faq/" target="_blank"><?php _e( 'FAQ', 'google-sitemap-plugin' ); ?></a>
|
360 |
+
<a class="nav-tab bws_go_pro_tab<?php if ( isset( $_GET['action'] ) && 'go_pro' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=google-sitemap-plugin.php&action=go_pro"><?php _e( 'Go PRO', 'google-sitemap-plugin' ); ?></a>
|
361 |
</h2>
|
362 |
<?php if ( ! isset( $_GET['action'] ) && is_multisite() && ! is_subdomain_install() ) { ?>
|
363 |
<div id="gglstmp_check_sitemap_block" class="error">
|
364 |
<p>
|
365 |
<?php printf( '<strong>%s</strong> %s',
|
366 |
+
__( 'Warning:', 'google-sitemap-plugin' ),
|
367 |
sprintf(
|
368 |
+
__( 'To have an access to subsites XML files, please add the following rule %s to your %s file in %s after line %s.', 'google-sitemap-plugin' ),
|
369 |
'<code>RewriteRule ([^/]+\.xml)$ $1 [L]</code>',
|
370 |
'<strong>.htaccess</strong>',
|
371 |
sprintf( '<strong>"%s"</strong>', ABSPATH ),
|
375 |
</p>
|
376 |
<div style="margin: .5em 0; padding: 2px;">
|
377 |
<form action="admin.php?page=google-sitemap-plugin.php" method='post' id="gglstmp_check_sitemap">
|
378 |
+
<input type="submit" class="button-secondary" name="gglstmp_check_sitemap" value="<?php _e( 'Сheck Access', 'google-sitemap-plugin' ) ?>" />
|
379 |
<?php wp_nonce_field( $plugin_basename, 'gglstmp_nonce_sitemap' ); ?>
|
380 |
</form>
|
381 |
<?php if ( isset( $_POST['gglstmp_check_sitemap'] ) && check_admin_referer( $plugin_basename, 'gglstmp_nonce_sitemap' ) ) {
|
390 |
} ?>
|
391 |
</div>
|
392 |
</div>
|
393 |
+
<?php }
|
394 |
+
bws_show_settings_notice(); ?>
|
395 |
<div class="updated fade" <?php if ( "" != $error || $message == "" ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
|
396 |
<div class="error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
|
397 |
<?php if ( ! isset( $_GET['action'] ) ) {
|
398 |
if ( isset( $_REQUEST['bws_restore_default'] ) && check_admin_referer( $plugin_basename, 'bws_settings_nonce_name' ) ) {
|
399 |
bws_form_restore_default_confirm( $plugin_basename );
|
400 |
} else { ?>
|
401 |
+
<form class="bws_form" action="admin.php?page=google-sitemap-plugin.php" method='post' name="gglstmp_auth">
|
402 |
<?php /*=============================== Creating sitemap file ====================================*/
|
403 |
if ( file_exists( $gglstmppr_url_sitemap ) ) {
|
404 |
if ( is_multisite() ) {
|
405 |
+
echo '<p><a href="' . $gglstmppr_url_home . "sitemap_" . $home_url . '.xml" target="_new">' . __( "The Sitemap file", 'google-sitemap-plugin' ) . "</a> " . __( "already exists. If you would like to replace it with a new one, please choose the necessary box below.", 'google-sitemap-plugin' ) . "</p>";
|
406 |
} else {
|
407 |
+
echo '<p><a href="' . $gglstmppr_url_home . 'sitemap.xml" target="_new">' . __( "The Sitemap file", 'google-sitemap-plugin' ) . "</a> " . __( "already exists. If you would like to replace it with a new one, please choose the necessary box below.", 'google-sitemap-plugin' ) . "</p>";
|
408 |
}
|
409 |
} else {
|
410 |
gglstmp_sitemapcreate();
|
411 |
if ( is_multisite() ) {
|
412 |
+
echo '<p><a href="' . $gglstmppr_url_home . "sitemap_" . $home_url . '.xml" target="_new">' . __( "Your Sitemap file", 'google-sitemap-plugin' ) . "</a> " . __( "is created in the site root directory.", 'google-sitemap-plugin' ) . "</p>";
|
413 |
} else {
|
414 |
+
echo '<p><a href="' . $gglstmppr_url_home . 'sitemap.xml" target="_new">' . __( "Your Sitemap file", 'google-sitemap-plugin' ) . "</a> " . __( "is created in the site root directory.", 'google-sitemap-plugin' ) . "</p>";
|
415 |
}
|
416 |
}
|
417 |
/*========================================== Recreating sitemap file ====================================*/
|
418 |
if ( is_multisite() ) {
|
419 |
+
echo '<p>' . __( "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using", 'google-sitemap-plugin' ) . " <a href=\"https://www.google.com/webmasters/tools/home?hl=en\">". __( "this", 'google-sitemap-plugin' ) . "</a> ". __( "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field", 'google-sitemap-plugin' ) . " - '" . $gglstmppr_url_home . "sitemap_" . $home_url . ".xml'.</p>";
|
420 |
} else {
|
421 |
+
echo '<p>' . __( "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using", 'google-sitemap-plugin' ) . " <a href=\"https://www.google.com/webmasters/tools/home?hl=en\">". __( "this", 'google-sitemap-plugin' ) . "</a> ". __( "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field", 'google-sitemap-plugin' ) . " - '" . $gglstmppr_url_home . "sitemap.xml'.</p>";
|
422 |
} ?>
|
423 |
<table class="form-table">
|
424 |
<tr valign="top">
|
425 |
<td colspan="2">
|
426 |
+
<label><input type='checkbox' name='gglstmp_new' value="1" /> <?php _e( "I want to create a new sitemap file or update the existing one", 'google-sitemap-plugin' ); ?></label>
|
427 |
</td>
|
428 |
</tr>
|
429 |
<?php if ( is_multisite() ) { ?>
|
430 |
<tr valign="top">
|
431 |
<td colspan="2">
|
432 |
+
<label><input type='checkbox' disabled="disabled" name='gglstmp_checkbox' value="1" <?php if ( 1 == $gglstmp_robots ) echo 'checked="checked"'; ?> /> <?php _e( "I want to add sitemap file path in robots.txt", 'google-sitemap-plugin' );?></label>
|
433 |
+
<p style="color:red"><?php _e( "Since you are using multisiting, the plugin does not allow to add a sitemap to robots.txt", 'google-sitemap-plugin' ); ?></div>
|
434 |
</td>
|
435 |
</tr>
|
436 |
<?php } else { ?>
|
437 |
<tr valign="top">
|
438 |
<td colspan="2">
|
439 |
+
<label><input type='checkbox' name='gglstmp_checkbox' value="1" <?php if ( 1 == $gglstmp_robots ) echo 'checked="checked"'; ?> /> <?php _e( "I want to add sitemap file path in", 'google-sitemap-plugin' ); ?> <a href="<?php echo $gglstmppr_url_home; ?>robots.txt" target="_new">robots.txt</a></label>
|
440 |
</td>
|
441 |
</tr>
|
442 |
<?php } ?>
|
443 |
<tr valign="top">
|
444 |
+
<th scope="row" colspan="2"><?php _e( 'Please choose the necessary post types and taxonomies the links to which are to be added to the sitemap:', 'google-sitemap-plugin' ); ?> </th>
|
445 |
</tr>
|
446 |
<tr valign="top">
|
447 |
<td colspan="2">
|
467 |
<div class="bws_table_bg"></div>
|
468 |
<table class="form-table bws_pro_version">
|
469 |
<tr valign="top">
|
470 |
+
<th><?php _e( 'XML Sitemap "Change Frequency" parameter', 'google-sitemap-plugin' ); ?></th>
|
471 |
<td>
|
472 |
<select name="gglstmp_sitemap_change_frequency">
|
473 |
+
<option value="always"><?php _e( 'Always', 'google-sitemap-plugin' ); ?></option>
|
474 |
+
<option value="hourly"><?php _e( 'Hourly', 'google-sitemap-plugin' ); ?></option>
|
475 |
+
<option value="daily"><?php _e( 'Daily', 'google-sitemap-plugin' ); ?></option>
|
476 |
+
<option value="weekly"><?php _e( 'Weekly', 'google-sitemap-plugin' ); ?></option>
|
477 |
+
<option selected value="monthly"><?php _e( 'Monthly', 'google-sitemap-plugin' ); ?></option>
|
478 |
+
<option value="yearly"><?php _e( 'Yearly', 'google-sitemap-plugin' ); ?></option>
|
479 |
+
<option value="never"><?php _e( 'Never', 'google-sitemap-plugin' ); ?></option>
|
480 |
</select><br />
|
481 |
+
<span style="color: #888888;font-size: 10px;"><?php _e( 'This value is used in the sitemap file and provides general information to search engines. The sitemap itself is generated once and will be re-generated when you create or update any post or page.', 'google-sitemap-plugin' ); ?></span>
|
482 |
</td>
|
483 |
</tr>
|
484 |
</table>
|
485 |
</div>
|
486 |
<div class="bws_pro_version_tooltip">
|
487 |
<div class="bws_info">
|
488 |
+
<?php _e( 'Unlock premium options by upgrading to Pro version', 'google-sitemap-plugin' ); ?>
|
|
|
489 |
</div>
|
490 |
+
<a class="bws_button" href="http://bestwebsoft.com/products/google-sitemap/?k=28d4cf0b4ab6f56e703f46f60d34d039&pn=83&v=<?php echo $gglstmp_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Google Sitemap Pro"><?php _e( 'Learn More', 'google-sitemap-plugin' ); ?></a>
|
|
|
|
|
491 |
<div class="clear"></div>
|
492 |
</div>
|
493 |
</div>
|
495 |
<?php if ( ! function_exists( 'curl_init' ) ) { ?>
|
496 |
<tr valign="top">
|
497 |
<td colspan="2" class="gglstmp_error">
|
498 |
+
<?php _e( "This hosting does not support сURL, so you cannot add a sitemap file automatically.", 'google-sitemap-plugin' ); ?>
|
499 |
</td>
|
500 |
</tr>
|
501 |
<?php } else { ?>
|
502 |
<tr id="gglstmp_google_webmaster" valign="top">
|
503 |
+
<th scope="row"><?php _e( 'Remote work with Google Webmaster Tools', 'google-sitemap-plugin' ); ?></th>
|
504 |
<td>
|
505 |
<?php $gglstmp_client = gglstmp_client();
|
506 |
$gglstmp_blog_prefix = '_' . get_current_blog_id();
|
524 |
}
|
525 |
if ( $gglstmp_client->getAccessToken() ) { ?>
|
526 |
<div id="gglstmp_logout_button">
|
527 |
+
<input class="button-secondary" name="gglstmp_logout" type="submit" value="<?php _e( 'Log out from Google Webmaster Tools', 'google-sitemap-plugin' ); ?>" />
|
528 |
</div>
|
529 |
+
<?php $gglstmp_menu_ad = __( "I want to add this site to Google Webmaster Tools", 'google-sitemap-plugin' );
|
530 |
+
$gglstmp_menu_del = __( "I want to delete this site from Google Webmaster Tools", 'google-sitemap-plugin' );
|
531 |
+
$gglstmp_menu_inf = __( "I want to get info about this site in Google Webmaster Tools", 'google-sitemap-plugin' ); ?>
|
532 |
<fieldset>
|
533 |
<label><input type='radio' name='gglstmp_menu' value="ad" /> <?php echo $gglstmp_menu_ad; ?></label><br />
|
534 |
<label><input type='radio' name='gglstmp_menu' value="del" /> <?php echo $gglstmp_menu_del; ?></label><br />
|
535 |
<label><input type='radio' name='gglstmp_menu' value="inf" /> <?php echo $gglstmp_menu_inf; ?></label><br />
|
536 |
+
<span class="bws_info">
|
537 |
+
<?php _e( 'In case you failed to add a sitemap to Google automatically using this plugin, it is possible to do it manually', 'google-sitemap-plugin' ); ?>:
|
538 |
+
<a target="_blank" href="https://docs.google.com/document/d/1VOJx_OaasVskCqi9fsAbUmxfsckoagPU5Py97yjha9w/edit"><?php _e( 'View the Instruction', 'google-sitemap-plugin' ); ?></a>
|
539 |
</span>
|
540 |
</fieldset>
|
541 |
<?php if ( isset( $_POST['gglstmp_menu'] ) && check_admin_referer( $plugin_basename, 'gglstmp_nonce_name' ) ) {
|
560 |
$gglstmp_client->setState( $gglstmp_state );
|
561 |
$_SESSION[ 'gglstmp_state' . $gglstmp_blog_prefix ] = $gglstmp_client;
|
562 |
$gglstmp_auth_url = $gglstmp_client->createAuthUrl(); ?>
|
563 |
+
<p><?php _e( "Please authorize via your Google Account in order to add or delete a site and a sitemap file automatically or get information about this site in Google Webmaster Tools.", 'google-sitemap-plugin' ); ?></p>
|
564 |
+
<a id="gglstmp_authorization_button" class="button-primary" 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>
|
565 |
<div id="gglstmp_authorization_form">
|
566 |
<input id="gglstmp_authorization_code" name="gglstmp_authorization_code" type="text" autocomplete="off" maxlength="100" />
|
567 |
+
<input id="gglstmp_authorize" class="button-primary" name="gglstmp_authorize" type="submit" value="<?php _e( 'Authorize', 'google-sitemap-plugin' ); ?>">
|
568 |
</div>
|
569 |
<?php if ( isset( $_POST['gglstmp_authorization_code'] ) && isset( $_POST['gglstmp_authorize'] ) && check_admin_referer( $plugin_basename, 'gglstmp_nonce_name' ) ) { ?>
|
570 |
+
<div id="gglstmp_authorize_error"><?php _e( 'Invalid authorization code. Please, try again.', 'google-sitemap-plugin' ); ?></div>
|
571 |
<?php }
|
572 |
} ?>
|
573 |
</td>
|
576 |
</table>
|
577 |
<input type="hidden" name="gglstmp_submit" value="submit" />
|
578 |
<p class="submit">
|
579 |
+
<input id="bws-submit-button" type="submit" class="button-primary" value="<?php _e( 'Save Changes', 'google-sitemap-plugin' ); ?>" />
|
580 |
</p>
|
581 |
<?php wp_nonce_field( $plugin_basename, 'gglstmp_nonce_name' ); ?>
|
582 |
</form>
|
590 |
<table class="form-table bws_pro_version">
|
591 |
<tr valign="top">
|
592 |
<td colspan="2">
|
593 |
+
<?php _e( 'Please choose the necessary post types and taxonomies the links to which are to be added to the sitemap:', 'google-sitemap-plugin' ); ?>
|
594 |
</td>
|
595 |
</tr>
|
596 |
<tr valign="top">
|
597 |
<td colspan="2">
|
598 |
<label>
|
599 |
<input disabled="disabled" checked="checked" id="gglstmp_jstree_url" type="checkbox" name="gglstmp_jstree_url" value="1" />
|
600 |
+
<?php _e( "Show URL for pages", 'google-sitemap-plugin' );?>
|
601 |
</label>
|
602 |
</td>
|
603 |
</tr>
|
604 |
<tr valign="top">
|
605 |
<td colspan="2">
|
606 |
+
<img src="<?php echo plugins_url( 'images/pro_screen_1.png', __FILE__ ); ?>" alt="<?php _e( "Example of site pages' tree", 'google-sitemap-plugin' ); ?>" title="<?php _e( "Example of site pages' tree", 'google-sitemap-plugin' ); ?>" />
|
607 |
</td>
|
608 |
</tr>
|
609 |
<tr valign="top">
|
610 |
<td colspan="2">
|
611 |
+
<input disabled="disabled" type="submit" class="button-primary" value="<?php _e( 'Save Changes', 'google-sitemap-plugin' ); ?>" />
|
612 |
</td>
|
613 |
</tr>
|
614 |
</table>
|
615 |
</div>
|
616 |
<div class="bws_pro_version_tooltip">
|
617 |
<div class="bws_info">
|
618 |
+
<?php _e( 'Unlock premium options by upgrading to Pro version', 'google-sitemap-plugin' ); ?>
|
|
|
619 |
</div>
|
620 |
+
<a class="bws_button" href="http://bestwebsoft.com/products/google-sitemap/?k=28d4cf0b4ab6f56e703f46f60d34d039&pn=83&v=<?php echo $gglstmp_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Google Sitemap Pro"><?php _e( 'Learn More', 'google-sitemap-plugin' ); ?></a>
|
|
|
|
|
621 |
<div class="clear"></div>
|
622 |
</div>
|
623 |
</div>
|
651 |
if ( ! function_exists( 'gglstmp_add_plugin_stylesheet' ) ) {
|
652 |
function gglstmp_add_plugin_stylesheet() {
|
653 |
if ( isset( $_GET['page'] ) && "google-sitemap-plugin.php" == $_GET['page'] ) {
|
|
|
654 |
wp_enqueue_style( 'gglstmp_stylesheet', plugins_url( 'css/style.css', __FILE__ ) );
|
655 |
}
|
656 |
}
|
664 |
$gglstmp_instruction_url = 'https://docs.google.com/document/d/1VOJx_OaasVskCqi9fsAbUmxfsckoagPU5Py97yjha9w/edit';
|
665 |
$gglstmp_wmt_sites_arr = $gglstmp_wmt_sitemaps_arr = array();
|
666 |
|
667 |
+
printf( '<h4>' . __( 'I want to get info about site %s in Google Webmaster Tools', 'google-sitemap-plugin' ) . ':</h4>', sprintf( '<a href="%1$s">%1$s</a>', $gglstmppr_url_home ) );
|
668 |
echo '<div class="gglstmp_wmt_content">';
|
669 |
|
670 |
$gglstmp_wmt_sites = $gglstmp_wmt->sites->listSites()->getSiteEntry();
|
673 |
}
|
674 |
|
675 |
if ( ! array_key_exists( $gglstmppr_url_home, $gglstmp_wmt_sites_arr ) ) {
|
676 |
+
printf( '<div>%s</div>', __( 'This site is not added to the Google Webmaster Tools.', 'google-sitemap-plugin') );
|
677 |
echo '</div><!-- .gglstmp_wmt_content -->';
|
678 |
return;
|
679 |
} else {
|
680 |
+
printf( '<div>%s</div>', __( 'This site is added to the Google Webmaster Tools.', 'google-sitemap-plugin' ) );
|
681 |
+
printf( '<div><strong>%s</strong> <a href="%s" target="_blank">%2$s</a></div>', __( 'Site URL:', 'google-sitemap-plugin'), $gglstmppr_url_home );
|
682 |
+
printf( '<div><strong>%s</strong> %s</div>', __( 'Site verification:', 'google-sitemap-plugin' ), ( $gglstmp_wmt_sites_arr[ $gglstmppr_url_home ] == 'siteOwner' ) ? __( 'verified', 'google-sitemap-plugin' ) : __( 'not verified', 'google-sitemap-plugin' ) );
|
683 |
|
684 |
try {
|
685 |
$gglstmp_wmt_sitemaps = $gglstmp_wmt->sitemaps->listSitemaps( $gglstmppr_url_home )->getSitemap();
|
688 |
if ( isset( $getErrors[0]['message'] ) ) {
|
689 |
printf( '<div>%s</div>', $getErrors[0]['message'] );
|
690 |
} else {
|
691 |
+
printf( '<div>%s</div>', __( 'An unexpected error occurred when verifying site in the Google Webmaster Tools.', 'google-sitemap-plugin' ) );
|
692 |
}
|
693 |
+
printf( '<div>%s - <a target="_blank" href="%s">%s</a></div>', __( "The site couldn't be verified. Please, verify the site manually", 'google-sitemap-plugin' ), $gglstmp_instruction_url, __( 'View the Instruction', 'google-sitemap-plugin' ) );
|
694 |
echo '</div><!-- .gglstmp_wmt_content -->';
|
695 |
return;
|
696 |
}
|
703 |
if ( isset( $gglstmp_settings['sitemap']['loc'] ) ) {
|
704 |
$gglstmppr_url_sitemap = $gglstmp_settings['sitemap']['loc'];
|
705 |
if ( ! array_key_exists( $gglstmppr_url_sitemap, $gglstmp_wmt_sitemaps_arr ) ) {
|
706 |
+
printf( '<div>%s</div>', __( 'The sitemap file is not added to the Google Webmaster Tools.', 'google-sitemap-plugin') );
|
707 |
} else {
|
708 |
if( ! $gglstmp_wmt_sitemaps_arr[ $gglstmppr_url_sitemap ] ) {
|
709 |
+
printf( '<div>%s</div>', __( 'The sitemap file is added to the Google Webmaster Tools.', 'google-sitemap-plugin') );
|
710 |
} else {
|
711 |
+
printf( '<div class="gglstmp_wmt_error">%s <a href="%s">%s</a></div>', __( 'The sitemap file is added to the Google Webmaster Tools, but has some errors or warnings.', 'google-sitemap-plugin' ), sprintf( 'https://www.google.com/webmasters/tools/sitemap-details?hl=en&siteUrl=%s&sitemapUrl=%s#ISSUE_FILTER=-1', urlencode( $gglstmppr_url_home ), urlencode( $gglstmppr_url_sitemap ) ), __( 'Please, see them in the Google Webmaster Tools.', 'google-sitemap-plugin' ) );
|
712 |
}
|
713 |
}
|
714 |
+
printf( '<div><strong>%s</strong> <a href="%s" target="_blank">%2$s</a></div></div>', __( 'Sitemap URL:', 'google-sitemap-plugin'), $gglstmppr_url_sitemap );
|
715 |
} else {
|
716 |
+
printf( '<div>%s - <a target="_blank" href="%s">%s</a></div>', __( 'When checking the sitemap file an unexpected error occurred. Please, check the sitemap file manually', 'google-sitemap-plugin' ), $gglstmp_instruction_url, __( 'View the Instruction', 'google-sitemap-plugin' ) );
|
717 |
}
|
718 |
}
|
719 |
echo '</div><!-- .gglstmp_wmt_content -->';
|
725 |
function gglstmp_del_site( $gglstmp_wmt, $gglstmp_sv ) {
|
726 |
global $gglstmp_settings, $gglstmppr_url_home;
|
727 |
|
728 |
+
printf( '<h4>' . __( 'I want to delete site %s from Google Webmaster Tools', 'google-sitemap-plugin' ) . '</h4>', sprintf( '<a href="%1$s">%1$s</a>', $gglstmppr_url_home ) );
|
729 |
echo '<div class="gglstmp_wmt_content">';
|
730 |
|
731 |
try {
|
738 |
} catch ( Google_Service_Exception $e ) {}
|
739 |
try {
|
740 |
$gglstmp_wmt->sites->delete( $gglstmppr_url_home );
|
741 |
+
printf( '<div>%s</div>', __( 'This site has been successfully deleted from Google Webmaster Tools', 'google-sitemap-plugin' ) );
|
742 |
unset( $gglstmp_settings['site_vererification_code'] );
|
743 |
update_option( 'gglstmp_settings', $gglstmp_settings );
|
744 |
|
745 |
} catch ( Google_Service_Exception $e ) {
|
746 |
+
printf( '<div>%s</div>', __( 'This site is not added to the Google Webmaster Tools.', 'google-sitemap-plugin') );
|
747 |
}
|
748 |
echo '</div><!-- .gglstmp_wmt_content -->';
|
749 |
}
|
757 |
$gglstmp_sv_type = 'SITE';
|
758 |
$gglstmp_instruction_url = 'https://docs.google.com/document/d/1VOJx_OaasVskCqi9fsAbUmxfsckoagPU5Py97yjha9w/edit';
|
759 |
|
760 |
+
printf( '<h4>' . __( 'I want to add site %s in Google Webmaster Tools', 'google-sitemap-plugin' ) . '</h4>', sprintf( '<a href="%1$s">%1$s</a>', $gglstmppr_url_home ) );
|
761 |
echo '<div class="gglstmp_wmt_content">';
|
762 |
|
763 |
try {
|
764 |
$gglstmp_wmt->sites->add( $gglstmppr_url_home );
|
765 |
+
printf( '<div>%s</div>', __( 'The site is added to the Google Webmaster Tools.', 'google-sitemap-plugin' ) );
|
766 |
} catch ( Google_Service_Exception $e ) {
|
767 |
$gglstmp_wmt_error = $e->getErrors();
|
768 |
if ( isset( $gglstmp_wmt_error[0]['message'] ) ) {
|
769 |
printf( '<div>%s</div>', $gglstmp_wmt_error[0]['message'] );
|
770 |
} else {
|
771 |
+
printf( '<div>%s</div>', __( 'When you add a site in the Google Webmaster Tools unexpected error occurred.', 'google-sitemap-plugin' ) );
|
772 |
}
|
773 |
+
printf( '<div>%s - <a target="_blank" href="%s">%s</a></div>', __( "The site couldn't be added. Please, add the site manually", 'google-sitemap-plugin' ), $gglstmp_instruction_url, __( 'View the Instruction', 'google-sitemap-plugin' ) );
|
774 |
echo '</div><!-- .gglstmp_wmt_content -->';
|
775 |
return;
|
776 |
}
|
786 |
$gglstmp_settings['site_vererification_code'] = htmlspecialchars( $gglstmp_getToken['token'] );
|
787 |
if ( preg_match( '|^<meta name="google-site-verification" content="(.*)" />$|', $gglstmp_settings['site_vererification_code'] ) ) {
|
788 |
update_option( 'gglstmp_settings', $gglstmp_settings );
|
789 |
+
printf( '<div>%s</div>', __( 'Verification code has been successfully received and added to the site.', 'google-sitemap-plugin' ) );
|
790 |
} else {
|
791 |
+
printf( '<div>%s</div>', __( 'Verification code has been successfully received but has not been added to the site.', 'google-sitemap-plugin' ) );
|
792 |
}
|
793 |
} catch ( Google_Service_Exception $e ) {
|
794 |
$getErrors = $e->getErrors();
|
795 |
if ( isset( $getErrors[0]['message'] ) ) {
|
796 |
printf( '<div>%s</div>', $getErrors[0]['message'] );
|
797 |
} else {
|
798 |
+
printf( '<div>%s</div>', __( 'An error has occurred when receiving the verification code site in the Google Webmaster.', 'google-sitemap-plugin' ) );
|
799 |
}
|
800 |
+
printf( '<div>%s - <a target="_blank" href="%s">%s</a></div>', __( "The site couldn't be verified. Please, verify the site manually", 'google-sitemap-plugin' ), $gglstmp_instruction_url, __( 'View the Instruction', 'google-sitemap-plugin' ) );
|
801 |
echo '</div><!-- .gglstmp_wmt_content -->';
|
802 |
return;
|
803 |
}
|
809 |
$gglstmp_wmt_resource = new Google_Service_SiteVerification_SiteVerificationWebResourceResource;
|
810 |
$gglstmp_wmt_resource->setSite( $gglstmp_wmt_resource_site );
|
811 |
$gglstmp_sv->webResource->insert( $gglstmp_sv_method, $gglstmp_wmt_resource );
|
812 |
+
printf( '<div>%s</div>', __( 'The site has been successfully verified in the Google Webmaster Tools.', 'google-sitemap-plugin' ) );
|
813 |
} catch ( Google_Service_Exception $e ) {
|
814 |
$getErrors = $e->getErrors();
|
815 |
if ( isset( $getErrors[0]['message'] ) ) {
|
816 |
printf( '<div>%s</div>', $getErrors[0]['message'] );
|
817 |
} else {
|
818 |
+
printf( '<div>%s</div>', __( 'An unexpected error occurred when verifying site in the Google Webmaster Tools.', 'google-sitemap-plugin' ) );
|
819 |
}
|
820 |
+
printf( '<div>%s - <a target="_blank" href="%s">%s</a></div>', __( "The site couldn't be verified. Please, verify the site manually", 'google-sitemap-plugin' ), $gglstmp_instruction_url, __( 'View the Instruction', 'google-sitemap-plugin' ) );
|
821 |
echo '</div><!-- .gglstmp_wmt_content -->';
|
822 |
return;
|
823 |
}
|
828 |
if ( $gglstmp_check_sitemap['code'] == 200 ) {
|
829 |
try {
|
830 |
$gglstmp_wmt->sitemaps->submit( $gglstmppr_url_home, $gglstmppr_url_sitemap );
|
831 |
+
printf( '<div>%s</div>', __( 'The sitemap file has been successfully added to the Google Webmaster Tools.', 'google-sitemap-plugin' ) );
|
832 |
} catch ( Google_Service_Exception $e ) {
|
833 |
$gglstmp_wmt_error = $e->getErrors();
|
834 |
if ( isset( $gglstmp_wmt_error[0]['message'] ) ) {
|
835 |
printf( '<div>%s</div>', $gglstmp_wmt_error[0]['message'] );
|
836 |
} else {
|
837 |
+
printf( '<div>%s</div>', __( 'When you add a sitemap file in the Google Webmaster Tools unexpected error occurred.', 'google-sitemap-plugin' ) );
|
838 |
}
|
839 |
+
printf( '<div>%s - <a target="_blank" href="%s">%s</a></div>', __( "The sitemap file couldn't be added. Please, add the sitemap file manually", 'google-sitemap-plugin' ), $gglstmp_instruction_url, __( 'View the Instruction', 'google-sitemap-plugin' ) );
|
840 |
}
|
841 |
} else {
|
842 |
+
printf( '<div>%s</div>', sprintf( __( 'Error 404. The sitemap file %s not found.', 'google-sitemap-plugin' ), sprintf( '(<a href="%s">%s</a>)', $gglstmp_settings['sitemap']['loc'], $gglstmp_settings['sitemap']['file'] ) ) );
|
843 |
}
|
844 |
} else {
|
845 |
+
printf( '<div>%s</div>', __( 'The sitemap file not found.', 'google-sitemap-plugin' ) );
|
846 |
}
|
847 |
echo '</div><!-- .gglstmp_wmt_content -->';
|
848 |
}
|
895 |
if ( ! $this_plugin )
|
896 |
$this_plugin = plugin_basename( __FILE__ );
|
897 |
if ( $file == $this_plugin ) {
|
898 |
+
$settings_link = '<a href="admin.php?page=google-sitemap-plugin.php">' . __( 'Settings', 'google-sitemap-plugin' ) . '</a>';
|
899 |
array_unshift( $links, $settings_link );
|
900 |
}
|
901 |
}
|
908 |
$base = plugin_basename( __FILE__ );
|
909 |
if ( $file == $base ) {
|
910 |
if ( ! is_network_admin() )
|
911 |
+
$links[] = '<a href="admin.php?page=google-sitemap-plugin.php">' . __( 'Settings', 'google-sitemap-plugin' ) . '</a>';
|
912 |
+
$links[] = '<a href="http://wordpress.org/plugins/google-sitemap-plugin/faq/" target="_blank">' . __( 'FAQ', 'google-sitemap-plugin' ) . '</a>';
|
913 |
+
$links[] = '<a href="http://support.bestwebsoft.com">' . __( 'Support', 'google-sitemap-plugin' ) . '</a>';
|
914 |
}
|
915 |
return $links;
|
916 |
}
|
920 |
function gglstmp_plugin_banner() {
|
921 |
global $hook_suffix;
|
922 |
if ( 'plugins.php' == $hook_suffix ) {
|
923 |
+
global $gglstmp_plugin_info, $gglstmp_setting;
|
924 |
+
if ( isset( $gglstmp_setting['first_install'] ) && strtotime( '-1 week' ) > $gglstmp_setting['first_install'] )
|
925 |
+
bws_plugin_banner( $gglstmp_plugin_info, 'gglstmp', 'google-sitemap', '8fbb5d23fd00bdcb213d6c0985d16ec5', '83', '//ps.w.org/google-sitemap-plugin/assets/icon-128x128.png' );
|
926 |
+
|
927 |
+
bws_plugin_banner_to_settings( $gglstmp_plugin_info, 'gglstmp_setting', 'google-sitemap-plugin', 'admin.php?page=google-sitemap-plugin.php' );
|
928 |
}
|
929 |
}
|
930 |
}
|
932 |
/*============================================ Function for delete of the plugin settings on register_activation_hook ====================*/
|
933 |
if ( ! function_exists( 'gglstmp_delete_settings' ) ) {
|
934 |
function gglstmp_delete_settings() {
|
935 |
+
global $wpdb;
|
936 |
+
if ( function_exists( 'is_multisite' ) && is_multisite() ) {
|
937 |
+
$old_blog = $wpdb->blogid;
|
938 |
+
/* Get all blog ids */
|
939 |
+
$blogids = $wpdb->get_col( "SELECT `blog_id` FROM $wpdb->blogs" );
|
940 |
+
foreach ( $blogids as $blog_id ) {
|
941 |
+
switch_to_blog( $blog_id );
|
942 |
+
delete_option( 'gglstmp_settings' );
|
943 |
+
delete_option( 'gglstmp_robots' );
|
944 |
+
}
|
945 |
+
switch_to_blog( $old_blog );
|
946 |
+
} else {
|
947 |
+
delete_option( 'gglstmp_settings' );
|
948 |
+
delete_option( 'gglstmp_robots' );
|
949 |
+
}
|
950 |
}
|
951 |
}
|
952 |
|
955 |
add_action( 'init', 'gglstmp_init' );
|
956 |
add_action( 'admin_init', 'gglstmp_admin_init' );
|
957 |
|
958 |
+
/* initialization */
|
959 |
+
add_action( 'plugins_loaded', 'gglstmp_plugins_loaded' );
|
960 |
+
|
961 |
add_action( 'admin_enqueue_scripts', 'gglstmp_add_plugin_stylesheet' );
|
962 |
|
963 |
add_action( 'transition_post_status', 'gglstmp_check_post_status', 10, 3 );
|
974 |
|
975 |
add_action( 'admin_notices', 'gglstmp_plugin_banner' );
|
976 |
|
977 |
+
register_uninstall_hook( __FILE__, 'gglstmp_delete_settings' ); /* uninstall plugin */
|
js/script.js
DELETED
@@ -1,10 +0,0 @@
|
|
1 |
-
(function($) {
|
2 |
-
$(document).ready( function() {
|
3 |
-
$( '#gglstmp_auth input' ).bind( "change click select", function() {
|
4 |
-
if ( $( this ).attr( 'type' ) == 'checkbox' ) {
|
5 |
-
$( '.updated.fade' ).css( 'display', 'none' );
|
6 |
-
$( '#gglstmp_settings_notice' ).css( 'display', 'block' );
|
7 |
-
};
|
8 |
-
});
|
9 |
-
});
|
10 |
-
})(jQuery);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/google-sitemap-plugin-ru_RU.mo
ADDED
Binary file
|
languages/{sitemap-ru_RU.po → google-sitemap-plugin-ru_RU.po}
RENAMED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google-sitemap-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
@@ -16,377 +16,377 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: google-sitemap-plugin.php:
|
20 |
-
#: google-sitemap-plugin.php:
|
21 |
msgid "Google Sitemap Settings"
|
22 |
msgstr "Настройки Google Sitemap"
|
23 |
|
24 |
-
#: google-sitemap-plugin.php:
|
25 |
msgid "Cannot edit \"robots.txt\". Check your permissions."
|
26 |
msgstr "Невозможно отредактировать файл \"robots.txt\". Проверьте свои права."
|
27 |
|
28 |
-
#: google-sitemap-plugin.php:
|
29 |
msgid "Settings saved."
|
30 |
msgstr "Настройки сохранены."
|
31 |
|
32 |
-
#: google-sitemap-plugin.php:
|
33 |
msgid "Your Sitemap file is created in the site root directory."
|
34 |
msgstr "Файл Sitemap создан в корне основной директории."
|
35 |
|
36 |
-
#: google-sitemap-plugin.php:
|
37 |
msgid "Cannot edit \"robot.txt\". Check your permissions."
|
38 |
msgstr "Невозможно отредактировать файл \"robot.txt\". Проверьте свои права."
|
39 |
|
40 |
-
#: google-sitemap-plugin.php:
|
41 |
msgid "All plugin settings were restored."
|
42 |
msgstr "Настройки плагина были восстановлены."
|
43 |
|
44 |
-
#: google-sitemap-plugin.php:
|
45 |
-
#: google-sitemap-plugin.php:
|
46 |
-
#: google-sitemap-plugin.php:
|
47 |
msgid "Settings"
|
48 |
msgstr "Настройки"
|
49 |
|
50 |
-
#: google-sitemap-plugin.php:
|
51 |
msgid "Extra settings"
|
52 |
msgstr "Экстра настройки"
|
53 |
|
54 |
-
#: google-sitemap-plugin.php:
|
55 |
-
#: google-sitemap-plugin.php:
|
56 |
msgid "FAQ"
|
57 |
msgstr "FAQ"
|
58 |
|
59 |
-
#: google-sitemap-plugin.php:
|
60 |
msgid "Go PRO"
|
61 |
msgstr "Перейти на PRO версию"
|
62 |
|
63 |
-
#: google-sitemap-plugin.php:
|
64 |
msgid "Warning:"
|
65 |
msgstr "Внимание:"
|
66 |
|
67 |
-
#: google-sitemap-plugin.php:
|
68 |
#, php-format
|
69 |
msgid "To have an access to subsites XML files, please add the following rule %s to your %s file in %s after line %s."
|
70 |
msgstr "Чтобы иметь доступ к XML файлам подсайта, пожалуйста, добавьте следующее правило %s в ваш %s файл %s после строчки %s."
|
71 |
|
72 |
-
#: google-sitemap-plugin.php:
|
73 |
msgid "Сheck Access"
|
74 |
msgstr "Проверить Доступ"
|
75 |
|
76 |
-
#: google-sitemap-plugin.php:
|
77 |
-
|
78 |
-
msgstr "Внимание:"
|
79 |
-
|
80 |
-
#: google-sitemap-plugin.php:383
|
81 |
-
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
82 |
-
msgstr "Настройки плагина были изменены. Для того, чтобы сохранить их, пожалуйста, не забудьте нажать кнопку \"Сохранить\"."
|
83 |
-
|
84 |
-
#: google-sitemap-plugin.php:394
|
85 |
-
#: google-sitemap-plugin.php:396
|
86 |
msgid "The Sitemap file"
|
87 |
msgstr "Файл Sitemap"
|
88 |
|
89 |
-
#: google-sitemap-plugin.php:
|
90 |
-
#: google-sitemap-plugin.php:
|
91 |
msgid "already exists. If you would like to replace it with a new one, please choose the necessary box below."
|
92 |
msgstr "уже существует. Если вы хотите изменить его на новый, выберите соответствующее действие внизу."
|
93 |
|
94 |
-
#: google-sitemap-plugin.php:
|
95 |
-
#: google-sitemap-plugin.php:
|
96 |
msgid "Your Sitemap file"
|
97 |
msgstr "Ваш файл Sitemap"
|
98 |
|
99 |
-
#: google-sitemap-plugin.php:
|
100 |
-
#: google-sitemap-plugin.php:
|
101 |
msgid "is created in the site root directory."
|
102 |
msgstr "создана в корне основной директории."
|
103 |
|
104 |
-
#: google-sitemap-plugin.php:
|
105 |
-
#: google-sitemap-plugin.php:
|
106 |
msgid "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using"
|
107 |
msgstr "Если вы не хотите добавить файл sitemap автоматически в Google Webmaster Tools, Вы можете сделать это через"
|
108 |
|
109 |
-
#: google-sitemap-plugin.php:
|
110 |
-
#: google-sitemap-plugin.php:
|
111 |
msgid "this"
|
112 |
msgstr "эту"
|
113 |
|
114 |
-
#: google-sitemap-plugin.php:
|
115 |
-
#: google-sitemap-plugin.php:
|
116 |
msgid "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field"
|
117 |
msgstr "ссылку, залогиниться, выбрать сайт, выбрать 'Sitemaps' и заполнить обязательное поле"
|
118 |
|
119 |
-
#: google-sitemap-plugin.php:
|
120 |
msgid "I want to create a new sitemap file or update the existing one"
|
121 |
msgstr "Я хочу создать новый файл sitemap или обновить существующий"
|
122 |
|
123 |
-
#: google-sitemap-plugin.php:
|
124 |
msgid "I want to add sitemap file path in robots.txt"
|
125 |
msgstr "Я хочу добавить путь файла sitemap в robots.txt"
|
126 |
|
127 |
-
#: google-sitemap-plugin.php:
|
128 |
msgid "Since you are using multisiting, the plugin does not allow to add a sitemap to robots.txt"
|
129 |
msgstr "Т.к. вы используете мультисайтинг, плагин не имеет возможности добавить sitemap в robots.txt"
|
130 |
|
131 |
-
#: google-sitemap-plugin.php:
|
132 |
msgid "I want to add sitemap file path in"
|
133 |
msgstr "Я хочу добавить путь файла sitemap в"
|
134 |
|
135 |
-
#: google-sitemap-plugin.php:
|
136 |
-
#: google-sitemap-plugin.php:
|
137 |
msgid "Please choose the necessary post types and taxonomies the links to which are to be added to the sitemap:"
|
138 |
msgstr "Пожалуйста, выберите необходимые типы постов и таксономии, ссылки на которые будут добавлены в sitemap:"
|
139 |
|
140 |
-
#: google-sitemap-plugin.php:
|
141 |
msgid "XML Sitemap \"Change Frequency\" parameter"
|
142 |
msgstr "Параметр XML Sitemap \"Change Frequency\""
|
143 |
|
144 |
-
#: google-sitemap-plugin.php:
|
145 |
msgid "Always"
|
146 |
msgstr "Всегда"
|
147 |
|
148 |
-
#: google-sitemap-plugin.php:
|
149 |
msgid "Hourly"
|
150 |
msgstr "Ежечасно"
|
151 |
|
152 |
-
#: google-sitemap-plugin.php:
|
153 |
msgid "Daily"
|
154 |
msgstr "Ежедневно"
|
155 |
|
156 |
-
#: google-sitemap-plugin.php:
|
157 |
msgid "Weekly"
|
158 |
msgstr "Еженедельно"
|
159 |
|
160 |
-
#: google-sitemap-plugin.php:
|
161 |
msgid "Monthly"
|
162 |
msgstr "Ежемесячно"
|
163 |
|
164 |
-
#: google-sitemap-plugin.php:
|
165 |
msgid "Yearly"
|
166 |
msgstr "Ежегодно"
|
167 |
|
168 |
-
#: google-sitemap-plugin.php:
|
169 |
msgid "Never"
|
170 |
msgstr "Никогда"
|
171 |
|
172 |
-
#: google-sitemap-plugin.php:
|
173 |
msgid "This value is used in the sitemap file and provides general information to search engines. The sitemap itself is generated once and will be re-generated when you create or update any post or page."
|
174 |
msgstr "Это значение используется в файле sitemap и предоставляет общую информацию для поисковых систем. Sitemap создается один раз и будет перезаписана вновь при создании или обновлении какой-либо страницы или поста."
|
175 |
|
176 |
-
#: google-sitemap-plugin.php:
|
177 |
-
#: google-sitemap-plugin.php:
|
178 |
-
msgid "Unlock premium options by upgrading to
|
179 |
-
msgstr "Активируйте премиум опции обновившись до
|
180 |
|
181 |
-
#: google-sitemap-plugin.php:
|
182 |
-
#: google-sitemap-plugin.php:
|
183 |
msgid "Learn More"
|
184 |
msgstr "Подробнее"
|
185 |
|
186 |
-
#: google-sitemap-plugin.php:
|
187 |
-
#: google-sitemap-plugin.php:614
|
188 |
-
msgid "Go"
|
189 |
-
msgstr "Перейти на"
|
190 |
-
|
191 |
-
#: google-sitemap-plugin.php:490
|
192 |
msgid "This hosting does not support сURL, so you cannot add a sitemap file automatically."
|
193 |
msgstr "Ваш хостинг не поддерживает сURL, поэтому вы не можете добавить sitemap в Google аккаунт автоматически."
|
194 |
|
195 |
-
#: google-sitemap-plugin.php:
|
196 |
msgid "Remote work with Google Webmaster Tools"
|
197 |
msgstr "Удаленная работа с Google Webmaster Tools"
|
198 |
|
199 |
-
#: google-sitemap-plugin.php:
|
200 |
msgid "Log out from Google Webmaster Tools"
|
201 |
msgstr "Выйти из Google Webmaster Tools"
|
202 |
|
203 |
-
#: google-sitemap-plugin.php:
|
204 |
msgid "I want to add this site to Google Webmaster Tools"
|
205 |
msgstr "Я хочу добавить этот сайт в Google Webmaster Tools"
|
206 |
|
207 |
-
#: google-sitemap-plugin.php:
|
208 |
msgid "I want to delete this site from Google Webmaster Tools"
|
209 |
msgstr "Я хочу удалить этот сайт из Google Webmaster Tools"
|
210 |
|
211 |
-
#: google-sitemap-plugin.php:
|
212 |
msgid "I want to get info about this site in Google Webmaster Tools"
|
213 |
msgstr "Я хочу получить информацию об этом сайте из Google Webmaster Tools"
|
214 |
|
215 |
-
#: google-sitemap-plugin.php:
|
216 |
msgid "In case you failed to add a sitemap to Google automatically using this plugin, it is possible to do it manually"
|
217 |
msgstr "В случае ошибки при добавлении sitemap в Google автоматически с помощью этого плагина, Вы можете сделать это вручную"
|
218 |
|
219 |
-
#: google-sitemap-plugin.php:
|
220 |
-
#: google-sitemap-plugin.php:
|
221 |
-
#: google-sitemap-plugin.php:
|
222 |
-
#: google-sitemap-plugin.php:
|
223 |
-
#: google-sitemap-plugin.php:
|
224 |
-
#: google-sitemap-plugin.php:
|
225 |
-
#: google-sitemap-plugin.php:
|
226 |
msgid "View the Instruction"
|
227 |
msgstr "Просмотреть Инструкцию"
|
228 |
|
229 |
-
#: google-sitemap-plugin.php:
|
230 |
msgid "Please authorize via your Google Account in order to add or delete a site and a sitemap file automatically or get information about this site in Google Webmaster Tools."
|
231 |
msgstr "Пожалуйста, авторизуйтесь используя ваш Google аккаунт, чтобы иметь возможность добавлять или удалять сайты и файл sitemap автоматически или получать информацию из Google Webmaster Tools."
|
232 |
|
233 |
-
#: google-sitemap-plugin.php:
|
234 |
msgid "Get Authorization Code"
|
235 |
msgstr "Получить код авторизации"
|
236 |
|
237 |
-
#: google-sitemap-plugin.php:
|
238 |
msgid "Authorize"
|
239 |
msgstr "Авторизироваться"
|
240 |
|
241 |
-
#: google-sitemap-plugin.php:
|
242 |
msgid "Invalid authorization code. Please, try again."
|
243 |
msgstr "Неверный код авторизации. Пожалуйста, попробуйте еще раз."
|
244 |
|
245 |
-
#: google-sitemap-plugin.php:
|
246 |
-
#: google-sitemap-plugin.php:
|
247 |
msgid "Save Changes"
|
248 |
msgstr "Сохранить изменения"
|
249 |
|
250 |
-
#: google-sitemap-plugin.php:
|
251 |
msgid "Show URL for pages"
|
252 |
msgstr "Отображать URL для страниц"
|
253 |
|
254 |
-
#: google-sitemap-plugin.php:
|
255 |
msgid "Example of site pages' tree"
|
256 |
msgstr "Пример дерева страниц сайта"
|
257 |
|
258 |
-
#: google-sitemap-plugin.php:
|
259 |
#, php-format
|
260 |
msgid "I want to get info about site %s in Google Webmaster Tools"
|
261 |
msgstr "Я хочу получить информацию об сайте %s из Google Webmaster Tools"
|
262 |
|
263 |
-
#: google-sitemap-plugin.php:
|
264 |
-
#: google-sitemap-plugin.php:
|
265 |
msgid "This site is not added to the Google Webmaster Tools."
|
266 |
msgstr "Этот сайт не добавлен в Google Webmaster Tools."
|
267 |
|
268 |
-
#: google-sitemap-plugin.php:
|
269 |
msgid "This site is added to the Google Webmaster Tools."
|
270 |
msgstr "Этот сайт добавлен в Google Webmaster Tools."
|
271 |
|
272 |
-
#: google-sitemap-plugin.php:
|
273 |
msgid "Site URL:"
|
274 |
msgstr "URL сайта:"
|
275 |
|
276 |
-
#: google-sitemap-plugin.php:
|
277 |
msgid "Site verification:"
|
278 |
msgstr "Верификация сайта:"
|
279 |
|
280 |
-
#: google-sitemap-plugin.php:
|
281 |
msgid "verified"
|
282 |
msgstr "верифицрован"
|
283 |
|
284 |
-
#: google-sitemap-plugin.php:
|
285 |
msgid "not verified"
|
286 |
msgstr "не верифицирован"
|
287 |
|
288 |
-
#: google-sitemap-plugin.php:
|
289 |
-
#: google-sitemap-plugin.php:
|
290 |
msgid "An unexpected error occurred when verifying site in the Google Webmaster Tools."
|
291 |
msgstr "Ошибка при верификации сайта в Google Webmaster Tools."
|
292 |
|
293 |
-
#: google-sitemap-plugin.php:
|
294 |
-
#: google-sitemap-plugin.php:
|
295 |
-
#: google-sitemap-plugin.php:
|
296 |
msgid "The site couldn't be verified. Please, verify the site manually"
|
297 |
msgstr "Сайт не может быть верифицрован. Пожалуйста, верифицируйте сайт вручную"
|
298 |
|
299 |
-
#: google-sitemap-plugin.php:
|
300 |
msgid "The sitemap file is not added to the Google Webmaster Tools."
|
301 |
msgstr "Этот файл sitemap не добавлен в Google Webmaster Tools."
|
302 |
|
303 |
-
#: google-sitemap-plugin.php:
|
304 |
msgid "The sitemap file is added to the Google Webmaster Tools."
|
305 |
msgstr "Этот файл sitemap добавлен в Google Webmaster Tools."
|
306 |
|
307 |
-
#: google-sitemap-plugin.php:
|
308 |
msgid "The sitemap file is added to the Google Webmaster Tools, but has some errors or warnings."
|
309 |
msgstr "Этот файл sitemap добавлен в Google Webmaster Tools, но при добавлении возникли ошибки."
|
310 |
|
311 |
-
#: google-sitemap-plugin.php:
|
312 |
msgid "Please, see them in the Google Webmaster Tools."
|
313 |
msgstr "Посмотреть ошибки в Google Webmaster Tools."
|
314 |
|
315 |
-
#: google-sitemap-plugin.php:
|
316 |
msgid "Sitemap URL:"
|
317 |
msgstr "URL Sitemap:"
|
318 |
|
319 |
-
#: google-sitemap-plugin.php:
|
320 |
msgid "When checking the sitemap file an unexpected error occurred. Please, check the sitemap file manually"
|
321 |
msgstr "При проверке обнаружена ошибка файла sitemap. Пожалуйста, проверьте файл вручную"
|
322 |
|
323 |
-
#: google-sitemap-plugin.php:
|
324 |
#, php-format
|
325 |
msgid "I want to delete site %s from Google Webmaster Tools"
|
326 |
msgstr "Я хочу удалить сайт %s из Google Webmaster Tools"
|
327 |
|
328 |
-
#: google-sitemap-plugin.php:
|
329 |
msgid "This site has been successfully deleted from Google Webmaster Tools"
|
330 |
msgstr "Этот сайт был успешно удален из Google Webmaster Tools"
|
331 |
|
332 |
-
#: google-sitemap-plugin.php:
|
333 |
#, php-format
|
334 |
msgid "I want to add site %s in Google Webmaster Tools"
|
335 |
msgstr "Я хочу добавить сайт %s в Google Webmaster Tools"
|
336 |
|
337 |
-
#: google-sitemap-plugin.php:
|
338 |
msgid "The site is added to the Google Webmaster Tools."
|
339 |
msgstr "Этот сайт добавлен в Google Webmaster Tools."
|
340 |
|
341 |
-
#: google-sitemap-plugin.php:
|
342 |
msgid "When you add a site in the Google Webmaster Tools unexpected error occurred."
|
343 |
msgstr "Ошибка при добавлении сайта в Google Webmaster Tools."
|
344 |
|
345 |
-
#: google-sitemap-plugin.php:
|
346 |
msgid "The site couldn't be added. Please, add the site manually"
|
347 |
msgstr "Сайт не может быть добавлен. Пожалуйста, добавьте сайт вручную"
|
348 |
|
349 |
-
#: google-sitemap-plugin.php:
|
350 |
msgid "Verification code has been successfully received and added to the site."
|
351 |
msgstr "Код верификации получен и добавлен на сайт."
|
352 |
|
353 |
-
#: google-sitemap-plugin.php:
|
354 |
msgid "Verification code has been successfully received but has not been added to the site."
|
355 |
msgstr "Код верификации получен, но не добавлен на сайт."
|
356 |
|
357 |
-
#: google-sitemap-plugin.php:
|
358 |
msgid "An error has occurred when receiving the verification code site in the Google Webmaster."
|
359 |
msgstr "Ошибка Google Webmaster при получении кода верификации."
|
360 |
|
361 |
-
#: google-sitemap-plugin.php:
|
362 |
msgid "The site has been successfully verified in the Google Webmaster Tools."
|
363 |
msgstr "Этот сайт был успешно верифицирован в Google Webmaster Tools."
|
364 |
|
365 |
-
#: google-sitemap-plugin.php:
|
366 |
msgid "The sitemap file has been successfully added to the Google Webmaster Tools."
|
367 |
msgstr "Файл sitemap был успешно добавлен в Google Webmaster Tools."
|
368 |
|
369 |
-
#: google-sitemap-plugin.php:
|
370 |
msgid "When you add a sitemap file in the Google Webmaster Tools unexpected error occurred."
|
371 |
msgstr "Ошибка при добавлении файла sitemap в Google Webmaster Tools."
|
372 |
|
373 |
-
#: google-sitemap-plugin.php:
|
374 |
msgid "The sitemap file couldn't be added. Please, add the sitemap file manually"
|
375 |
msgstr "Файл sitemap не может быть добавлен. Пожалуйста, добавьте файл вручную"
|
376 |
|
377 |
-
#: google-sitemap-plugin.php:
|
378 |
#, php-format
|
379 |
msgid "Error 404. The sitemap file %s not found."
|
380 |
msgstr "Ошибка 404. Файл sitemap %s не найден."
|
381 |
|
382 |
-
#: google-sitemap-plugin.php:
|
383 |
msgid "The sitemap file not found."
|
384 |
msgstr "Файл sitemap не найден."
|
385 |
|
386 |
-
#: google-sitemap-plugin.php:
|
387 |
msgid "Support"
|
388 |
msgstr "Тех.поддержка"
|
389 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
390 |
#~ msgid "Post categories"
|
391 |
#~ msgstr "Рубрики записей"
|
392 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google-sitemap-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-21 10:41+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-09-21 10:41+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: google-sitemap-plugin.php:35
|
20 |
+
#: google-sitemap-plugin.php:355
|
21 |
msgid "Google Sitemap Settings"
|
22 |
msgstr "Настройки Google Sitemap"
|
23 |
|
24 |
+
#: google-sitemap-plugin.php:291
|
25 |
msgid "Cannot edit \"robots.txt\". Check your permissions."
|
26 |
msgstr "Невозможно отредактировать файл \"robots.txt\". Проверьте свои права."
|
27 |
|
28 |
+
#: google-sitemap-plugin.php:302
|
29 |
msgid "Settings saved."
|
30 |
msgstr "Настройки сохранены."
|
31 |
|
32 |
+
#: google-sitemap-plugin.php:307
|
33 |
msgid "Your Sitemap file is created in the site root directory."
|
34 |
msgstr "Файл Sitemap создан в корне основной директории."
|
35 |
|
36 |
+
#: google-sitemap-plugin.php:342
|
37 |
msgid "Cannot edit \"robot.txt\". Check your permissions."
|
38 |
msgstr "Невозможно отредактировать файл \"robot.txt\". Проверьте свои права."
|
39 |
|
40 |
+
#: google-sitemap-plugin.php:351
|
41 |
msgid "All plugin settings were restored."
|
42 |
msgstr "Настройки плагина были восстановлены."
|
43 |
|
44 |
+
#: google-sitemap-plugin.php:357
|
45 |
+
#: google-sitemap-plugin.php:898
|
46 |
+
#: google-sitemap-plugin.php:911
|
47 |
msgid "Settings"
|
48 |
msgstr "Настройки"
|
49 |
|
50 |
+
#: google-sitemap-plugin.php:358
|
51 |
msgid "Extra settings"
|
52 |
msgstr "Экстра настройки"
|
53 |
|
54 |
+
#: google-sitemap-plugin.php:359
|
55 |
+
#: google-sitemap-plugin.php:912
|
56 |
msgid "FAQ"
|
57 |
msgstr "FAQ"
|
58 |
|
59 |
+
#: google-sitemap-plugin.php:360
|
60 |
msgid "Go PRO"
|
61 |
msgstr "Перейти на PRO версию"
|
62 |
|
63 |
+
#: google-sitemap-plugin.php:366
|
64 |
msgid "Warning:"
|
65 |
msgstr "Внимание:"
|
66 |
|
67 |
+
#: google-sitemap-plugin.php:368
|
68 |
#, php-format
|
69 |
msgid "To have an access to subsites XML files, please add the following rule %s to your %s file in %s after line %s."
|
70 |
msgstr "Чтобы иметь доступ к XML файлам подсайта, пожалуйста, добавьте следующее правило %s в ваш %s файл %s после строчки %s."
|
71 |
|
72 |
+
#: google-sitemap-plugin.php:378
|
73 |
msgid "Сheck Access"
|
74 |
msgstr "Проверить Доступ"
|
75 |
|
76 |
+
#: google-sitemap-plugin.php:405
|
77 |
+
#: google-sitemap-plugin.php:407
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
msgid "The Sitemap file"
|
79 |
msgstr "Файл Sitemap"
|
80 |
|
81 |
+
#: google-sitemap-plugin.php:405
|
82 |
+
#: google-sitemap-plugin.php:407
|
83 |
msgid "already exists. If you would like to replace it with a new one, please choose the necessary box below."
|
84 |
msgstr "уже существует. Если вы хотите изменить его на новый, выберите соответствующее действие внизу."
|
85 |
|
86 |
+
#: google-sitemap-plugin.php:412
|
87 |
+
#: google-sitemap-plugin.php:414
|
88 |
msgid "Your Sitemap file"
|
89 |
msgstr "Ваш файл Sitemap"
|
90 |
|
91 |
+
#: google-sitemap-plugin.php:412
|
92 |
+
#: google-sitemap-plugin.php:414
|
93 |
msgid "is created in the site root directory."
|
94 |
msgstr "создана в корне основной директории."
|
95 |
|
96 |
+
#: google-sitemap-plugin.php:419
|
97 |
+
#: google-sitemap-plugin.php:421
|
98 |
msgid "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using"
|
99 |
msgstr "Если вы не хотите добавить файл sitemap автоматически в Google Webmaster Tools, Вы можете сделать это через"
|
100 |
|
101 |
+
#: google-sitemap-plugin.php:419
|
102 |
+
#: google-sitemap-plugin.php:421
|
103 |
msgid "this"
|
104 |
msgstr "эту"
|
105 |
|
106 |
+
#: google-sitemap-plugin.php:419
|
107 |
+
#: google-sitemap-plugin.php:421
|
108 |
msgid "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field"
|
109 |
msgstr "ссылку, залогиниться, выбрать сайт, выбрать 'Sitemaps' и заполнить обязательное поле"
|
110 |
|
111 |
+
#: google-sitemap-plugin.php:426
|
112 |
msgid "I want to create a new sitemap file or update the existing one"
|
113 |
msgstr "Я хочу создать новый файл sitemap или обновить существующий"
|
114 |
|
115 |
+
#: google-sitemap-plugin.php:432
|
116 |
msgid "I want to add sitemap file path in robots.txt"
|
117 |
msgstr "Я хочу добавить путь файла sitemap в robots.txt"
|
118 |
|
119 |
+
#: google-sitemap-plugin.php:433
|
120 |
msgid "Since you are using multisiting, the plugin does not allow to add a sitemap to robots.txt"
|
121 |
msgstr "Т.к. вы используете мультисайтинг, плагин не имеет возможности добавить sitemap в robots.txt"
|
122 |
|
123 |
+
#: google-sitemap-plugin.php:439
|
124 |
msgid "I want to add sitemap file path in"
|
125 |
msgstr "Я хочу добавить путь файла sitemap в"
|
126 |
|
127 |
+
#: google-sitemap-plugin.php:444
|
128 |
+
#: google-sitemap-plugin.php:593
|
129 |
msgid "Please choose the necessary post types and taxonomies the links to which are to be added to the sitemap:"
|
130 |
msgstr "Пожалуйста, выберите необходимые типы постов и таксономии, ссылки на которые будут добавлены в sitemap:"
|
131 |
|
132 |
+
#: google-sitemap-plugin.php:470
|
133 |
msgid "XML Sitemap \"Change Frequency\" parameter"
|
134 |
msgstr "Параметр XML Sitemap \"Change Frequency\""
|
135 |
|
136 |
+
#: google-sitemap-plugin.php:473
|
137 |
msgid "Always"
|
138 |
msgstr "Всегда"
|
139 |
|
140 |
+
#: google-sitemap-plugin.php:474
|
141 |
msgid "Hourly"
|
142 |
msgstr "Ежечасно"
|
143 |
|
144 |
+
#: google-sitemap-plugin.php:475
|
145 |
msgid "Daily"
|
146 |
msgstr "Ежедневно"
|
147 |
|
148 |
+
#: google-sitemap-plugin.php:476
|
149 |
msgid "Weekly"
|
150 |
msgstr "Еженедельно"
|
151 |
|
152 |
+
#: google-sitemap-plugin.php:477
|
153 |
msgid "Monthly"
|
154 |
msgstr "Ежемесячно"
|
155 |
|
156 |
+
#: google-sitemap-plugin.php:478
|
157 |
msgid "Yearly"
|
158 |
msgstr "Ежегодно"
|
159 |
|
160 |
+
#: google-sitemap-plugin.php:479
|
161 |
msgid "Never"
|
162 |
msgstr "Никогда"
|
163 |
|
164 |
+
#: google-sitemap-plugin.php:481
|
165 |
msgid "This value is used in the sitemap file and provides general information to search engines. The sitemap itself is generated once and will be re-generated when you create or update any post or page."
|
166 |
msgstr "Это значение используется в файле sitemap и предоставляет общую информацию для поисковых систем. Sitemap создается один раз и будет перезаписана вновь при создании или обновлении какой-либо страницы или поста."
|
167 |
|
168 |
+
#: google-sitemap-plugin.php:488
|
169 |
+
#: google-sitemap-plugin.php:618
|
170 |
+
msgid "Unlock premium options by upgrading to Pro version"
|
171 |
+
msgstr "Активируйте премиум опции обновившись до Pro версии"
|
172 |
|
173 |
+
#: google-sitemap-plugin.php:490
|
174 |
+
#: google-sitemap-plugin.php:620
|
175 |
msgid "Learn More"
|
176 |
msgstr "Подробнее"
|
177 |
|
178 |
+
#: google-sitemap-plugin.php:498
|
|
|
|
|
|
|
|
|
|
|
179 |
msgid "This hosting does not support сURL, so you cannot add a sitemap file automatically."
|
180 |
msgstr "Ваш хостинг не поддерживает сURL, поэтому вы не можете добавить sitemap в Google аккаунт автоматически."
|
181 |
|
182 |
+
#: google-sitemap-plugin.php:503
|
183 |
msgid "Remote work with Google Webmaster Tools"
|
184 |
msgstr "Удаленная работа с Google Webmaster Tools"
|
185 |
|
186 |
+
#: google-sitemap-plugin.php:527
|
187 |
msgid "Log out from Google Webmaster Tools"
|
188 |
msgstr "Выйти из Google Webmaster Tools"
|
189 |
|
190 |
+
#: google-sitemap-plugin.php:529
|
191 |
msgid "I want to add this site to Google Webmaster Tools"
|
192 |
msgstr "Я хочу добавить этот сайт в Google Webmaster Tools"
|
193 |
|
194 |
+
#: google-sitemap-plugin.php:530
|
195 |
msgid "I want to delete this site from Google Webmaster Tools"
|
196 |
msgstr "Я хочу удалить этот сайт из Google Webmaster Tools"
|
197 |
|
198 |
+
#: google-sitemap-plugin.php:531
|
199 |
msgid "I want to get info about this site in Google Webmaster Tools"
|
200 |
msgstr "Я хочу получить информацию об этом сайте из Google Webmaster Tools"
|
201 |
|
202 |
+
#: google-sitemap-plugin.php:537
|
203 |
msgid "In case you failed to add a sitemap to Google automatically using this plugin, it is possible to do it manually"
|
204 |
msgstr "В случае ошибки при добавлении sitemap в Google автоматически с помощью этого плагина, Вы можете сделать это вручную"
|
205 |
|
206 |
+
#: google-sitemap-plugin.php:538
|
207 |
+
#: google-sitemap-plugin.php:693
|
208 |
+
#: google-sitemap-plugin.php:716
|
209 |
+
#: google-sitemap-plugin.php:773
|
210 |
+
#: google-sitemap-plugin.php:800
|
211 |
+
#: google-sitemap-plugin.php:820
|
212 |
+
#: google-sitemap-plugin.php:839
|
213 |
msgid "View the Instruction"
|
214 |
msgstr "Просмотреть Инструкцию"
|
215 |
|
216 |
+
#: google-sitemap-plugin.php:563
|
217 |
msgid "Please authorize via your Google Account in order to add or delete a site and a sitemap file automatically or get information about this site in Google Webmaster Tools."
|
218 |
msgstr "Пожалуйста, авторизуйтесь используя ваш Google аккаунт, чтобы иметь возможность добавлять или удалять сайты и файл sitemap автоматически или получать информацию из Google Webmaster Tools."
|
219 |
|
220 |
+
#: google-sitemap-plugin.php:564
|
221 |
msgid "Get Authorization Code"
|
222 |
msgstr "Получить код авторизации"
|
223 |
|
224 |
+
#: google-sitemap-plugin.php:567
|
225 |
msgid "Authorize"
|
226 |
msgstr "Авторизироваться"
|
227 |
|
228 |
+
#: google-sitemap-plugin.php:570
|
229 |
msgid "Invalid authorization code. Please, try again."
|
230 |
msgstr "Неверный код авторизации. Пожалуйста, попробуйте еще раз."
|
231 |
|
232 |
+
#: google-sitemap-plugin.php:579
|
233 |
+
#: google-sitemap-plugin.php:611
|
234 |
msgid "Save Changes"
|
235 |
msgstr "Сохранить изменения"
|
236 |
|
237 |
+
#: google-sitemap-plugin.php:600
|
238 |
msgid "Show URL for pages"
|
239 |
msgstr "Отображать URL для страниц"
|
240 |
|
241 |
+
#: google-sitemap-plugin.php:606
|
242 |
msgid "Example of site pages' tree"
|
243 |
msgstr "Пример дерева страниц сайта"
|
244 |
|
245 |
+
#: google-sitemap-plugin.php:667
|
246 |
#, php-format
|
247 |
msgid "I want to get info about site %s in Google Webmaster Tools"
|
248 |
msgstr "Я хочу получить информацию об сайте %s из Google Webmaster Tools"
|
249 |
|
250 |
+
#: google-sitemap-plugin.php:676
|
251 |
+
#: google-sitemap-plugin.php:746
|
252 |
msgid "This site is not added to the Google Webmaster Tools."
|
253 |
msgstr "Этот сайт не добавлен в Google Webmaster Tools."
|
254 |
|
255 |
+
#: google-sitemap-plugin.php:680
|
256 |
msgid "This site is added to the Google Webmaster Tools."
|
257 |
msgstr "Этот сайт добавлен в Google Webmaster Tools."
|
258 |
|
259 |
+
#: google-sitemap-plugin.php:681
|
260 |
msgid "Site URL:"
|
261 |
msgstr "URL сайта:"
|
262 |
|
263 |
+
#: google-sitemap-plugin.php:682
|
264 |
msgid "Site verification:"
|
265 |
msgstr "Верификация сайта:"
|
266 |
|
267 |
+
#: google-sitemap-plugin.php:682
|
268 |
msgid "verified"
|
269 |
msgstr "верифицрован"
|
270 |
|
271 |
+
#: google-sitemap-plugin.php:682
|
272 |
msgid "not verified"
|
273 |
msgstr "не верифицирован"
|
274 |
|
275 |
+
#: google-sitemap-plugin.php:691
|
276 |
+
#: google-sitemap-plugin.php:818
|
277 |
msgid "An unexpected error occurred when verifying site in the Google Webmaster Tools."
|
278 |
msgstr "Ошибка при верификации сайта в Google Webmaster Tools."
|
279 |
|
280 |
+
#: google-sitemap-plugin.php:693
|
281 |
+
#: google-sitemap-plugin.php:800
|
282 |
+
#: google-sitemap-plugin.php:820
|
283 |
msgid "The site couldn't be verified. Please, verify the site manually"
|
284 |
msgstr "Сайт не может быть верифицрован. Пожалуйста, верифицируйте сайт вручную"
|
285 |
|
286 |
+
#: google-sitemap-plugin.php:706
|
287 |
msgid "The sitemap file is not added to the Google Webmaster Tools."
|
288 |
msgstr "Этот файл sitemap не добавлен в Google Webmaster Tools."
|
289 |
|
290 |
+
#: google-sitemap-plugin.php:709
|
291 |
msgid "The sitemap file is added to the Google Webmaster Tools."
|
292 |
msgstr "Этот файл sitemap добавлен в Google Webmaster Tools."
|
293 |
|
294 |
+
#: google-sitemap-plugin.php:711
|
295 |
msgid "The sitemap file is added to the Google Webmaster Tools, but has some errors or warnings."
|
296 |
msgstr "Этот файл sitemap добавлен в Google Webmaster Tools, но при добавлении возникли ошибки."
|
297 |
|
298 |
+
#: google-sitemap-plugin.php:711
|
299 |
msgid "Please, see them in the Google Webmaster Tools."
|
300 |
msgstr "Посмотреть ошибки в Google Webmaster Tools."
|
301 |
|
302 |
+
#: google-sitemap-plugin.php:714
|
303 |
msgid "Sitemap URL:"
|
304 |
msgstr "URL Sitemap:"
|
305 |
|
306 |
+
#: google-sitemap-plugin.php:716
|
307 |
msgid "When checking the sitemap file an unexpected error occurred. Please, check the sitemap file manually"
|
308 |
msgstr "При проверке обнаружена ошибка файла sitemap. Пожалуйста, проверьте файл вручную"
|
309 |
|
310 |
+
#: google-sitemap-plugin.php:728
|
311 |
#, php-format
|
312 |
msgid "I want to delete site %s from Google Webmaster Tools"
|
313 |
msgstr "Я хочу удалить сайт %s из Google Webmaster Tools"
|
314 |
|
315 |
+
#: google-sitemap-plugin.php:741
|
316 |
msgid "This site has been successfully deleted from Google Webmaster Tools"
|
317 |
msgstr "Этот сайт был успешно удален из Google Webmaster Tools"
|
318 |
|
319 |
+
#: google-sitemap-plugin.php:760
|
320 |
#, php-format
|
321 |
msgid "I want to add site %s in Google Webmaster Tools"
|
322 |
msgstr "Я хочу добавить сайт %s в Google Webmaster Tools"
|
323 |
|
324 |
+
#: google-sitemap-plugin.php:765
|
325 |
msgid "The site is added to the Google Webmaster Tools."
|
326 |
msgstr "Этот сайт добавлен в Google Webmaster Tools."
|
327 |
|
328 |
+
#: google-sitemap-plugin.php:771
|
329 |
msgid "When you add a site in the Google Webmaster Tools unexpected error occurred."
|
330 |
msgstr "Ошибка при добавлении сайта в Google Webmaster Tools."
|
331 |
|
332 |
+
#: google-sitemap-plugin.php:773
|
333 |
msgid "The site couldn't be added. Please, add the site manually"
|
334 |
msgstr "Сайт не может быть добавлен. Пожалуйста, добавьте сайт вручную"
|
335 |
|
336 |
+
#: google-sitemap-plugin.php:789
|
337 |
msgid "Verification code has been successfully received and added to the site."
|
338 |
msgstr "Код верификации получен и добавлен на сайт."
|
339 |
|
340 |
+
#: google-sitemap-plugin.php:791
|
341 |
msgid "Verification code has been successfully received but has not been added to the site."
|
342 |
msgstr "Код верификации получен, но не добавлен на сайт."
|
343 |
|
344 |
+
#: google-sitemap-plugin.php:798
|
345 |
msgid "An error has occurred when receiving the verification code site in the Google Webmaster."
|
346 |
msgstr "Ошибка Google Webmaster при получении кода верификации."
|
347 |
|
348 |
+
#: google-sitemap-plugin.php:812
|
349 |
msgid "The site has been successfully verified in the Google Webmaster Tools."
|
350 |
msgstr "Этот сайт был успешно верифицирован в Google Webmaster Tools."
|
351 |
|
352 |
+
#: google-sitemap-plugin.php:831
|
353 |
msgid "The sitemap file has been successfully added to the Google Webmaster Tools."
|
354 |
msgstr "Файл sitemap был успешно добавлен в Google Webmaster Tools."
|
355 |
|
356 |
+
#: google-sitemap-plugin.php:837
|
357 |
msgid "When you add a sitemap file in the Google Webmaster Tools unexpected error occurred."
|
358 |
msgstr "Ошибка при добавлении файла sitemap в Google Webmaster Tools."
|
359 |
|
360 |
+
#: google-sitemap-plugin.php:839
|
361 |
msgid "The sitemap file couldn't be added. Please, add the sitemap file manually"
|
362 |
msgstr "Файл sitemap не может быть добавлен. Пожалуйста, добавьте файл вручную"
|
363 |
|
364 |
+
#: google-sitemap-plugin.php:842
|
365 |
#, php-format
|
366 |
msgid "Error 404. The sitemap file %s not found."
|
367 |
msgstr "Ошибка 404. Файл sitemap %s не найден."
|
368 |
|
369 |
+
#: google-sitemap-plugin.php:845
|
370 |
msgid "The sitemap file not found."
|
371 |
msgstr "Файл sitemap не найден."
|
372 |
|
373 |
+
#: google-sitemap-plugin.php:913
|
374 |
msgid "Support"
|
375 |
msgstr "Тех.поддержка"
|
376 |
|
377 |
+
#~ msgid "Notice:"
|
378 |
+
#~ msgstr "Внимание:"
|
379 |
+
|
380 |
+
#~ msgid ""
|
381 |
+
#~ "The plugin's settings have been changed. In order to save them please "
|
382 |
+
#~ "don't forget to click the 'Save Changes' button."
|
383 |
+
#~ msgstr ""
|
384 |
+
#~ "Настройки плагина были изменены. Для того, чтобы сохранить их, "
|
385 |
+
#~ "пожалуйста, не забудьте нажать кнопку \"Сохранить\"."
|
386 |
+
|
387 |
+
#~ msgid "Go"
|
388 |
+
#~ msgstr "Перейти на"
|
389 |
+
|
390 |
#~ msgid "Post categories"
|
391 |
#~ msgstr "Рубрики записей"
|
392 |
|
languages/google-sitemap-plugin-uk.mo
ADDED
Binary file
|
languages/{sitemap-uk.po → google-sitemap-plugin-uk.po}
RENAMED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google-sitemap-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
@@ -16,377 +16,377 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: google-sitemap-plugin.php:
|
20 |
-
#: google-sitemap-plugin.php:
|
21 |
msgid "Google Sitemap Settings"
|
22 |
msgstr "Налаштування Google Sitemap"
|
23 |
|
24 |
-
#: google-sitemap-plugin.php:
|
25 |
msgid "Cannot edit \"robots.txt\". Check your permissions."
|
26 |
msgstr "Неможливо відредагувати файл \"robots.txt\". Перевірте свої права."
|
27 |
|
28 |
-
#: google-sitemap-plugin.php:
|
29 |
msgid "Settings saved."
|
30 |
msgstr "Налаштування збережено."
|
31 |
|
32 |
-
#: google-sitemap-plugin.php:
|
33 |
msgid "Your Sitemap file is created in the site root directory."
|
34 |
msgstr "Файл Sitemap створено у кореневій директорії сайту."
|
35 |
|
36 |
-
#: google-sitemap-plugin.php:
|
37 |
msgid "Cannot edit \"robot.txt\". Check your permissions."
|
38 |
msgstr "Неможливо відредагувати файл \"robot.txt\". Перевірте свої права."
|
39 |
|
40 |
-
#: google-sitemap-plugin.php:
|
41 |
msgid "All plugin settings were restored."
|
42 |
msgstr "Налаштування плагіну були відновлені."
|
43 |
|
44 |
-
#: google-sitemap-plugin.php:
|
45 |
-
#: google-sitemap-plugin.php:
|
46 |
-
#: google-sitemap-plugin.php:
|
47 |
msgid "Settings"
|
48 |
msgstr "Налаштування"
|
49 |
|
50 |
-
#: google-sitemap-plugin.php:
|
51 |
msgid "Extra settings"
|
52 |
msgstr "Додаткові налаштування"
|
53 |
|
54 |
-
#: google-sitemap-plugin.php:
|
55 |
-
#: google-sitemap-plugin.php:
|
56 |
msgid "FAQ"
|
57 |
msgstr "FAQ"
|
58 |
|
59 |
-
#: google-sitemap-plugin.php:
|
60 |
msgid "Go PRO"
|
61 |
msgstr "Перейти на PRO"
|
62 |
|
63 |
-
#: google-sitemap-plugin.php:
|
64 |
msgid "Warning:"
|
65 |
msgstr "Увага:"
|
66 |
|
67 |
-
#: google-sitemap-plugin.php:
|
68 |
#, php-format
|
69 |
msgid "To have an access to subsites XML files, please add the following rule %s to your %s file in %s after line %s."
|
70 |
msgstr "Щоб мати доступ до XML файлів підсайту, будь ласка, додайте наступне правило %s у ваш %s файл %s після строчки %s."
|
71 |
|
72 |
-
#: google-sitemap-plugin.php:
|
73 |
msgid "Сheck Access"
|
74 |
msgstr "Перевірити Доступ"
|
75 |
|
76 |
-
#: google-sitemap-plugin.php:
|
77 |
-
|
78 |
-
msgstr "Зауважте:"
|
79 |
-
|
80 |
-
#: google-sitemap-plugin.php:383
|
81 |
-
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
82 |
-
msgstr "Налаштування плагіну змінено. Щоб зберегти їх, будь ласка, не забудьте клікнути \"Зберегти зміни\"."
|
83 |
-
|
84 |
-
#: google-sitemap-plugin.php:394
|
85 |
-
#: google-sitemap-plugin.php:396
|
86 |
msgid "The Sitemap file"
|
87 |
msgstr "Файл Sitemap"
|
88 |
|
89 |
-
#: google-sitemap-plugin.php:
|
90 |
-
#: google-sitemap-plugin.php:
|
91 |
msgid "already exists. If you would like to replace it with a new one, please choose the necessary box below."
|
92 |
msgstr "вже існує. Якщо ви хочете замінити його на новий, виберіть потрібну дію внизу."
|
93 |
|
94 |
-
#: google-sitemap-plugin.php:
|
95 |
-
#: google-sitemap-plugin.php:
|
96 |
msgid "Your Sitemap file"
|
97 |
msgstr "Ваш файл Sitemap"
|
98 |
|
99 |
-
#: google-sitemap-plugin.php:
|
100 |
-
#: google-sitemap-plugin.php:
|
101 |
msgid "is created in the site root directory."
|
102 |
msgstr "створений у кореневій директорії сайту."
|
103 |
|
104 |
-
#: google-sitemap-plugin.php:
|
105 |
-
#: google-sitemap-plugin.php:
|
106 |
msgid "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using"
|
107 |
msgstr "Якщо ви не хочете додати файл sitemap до Google Webmaster Tools автоматично, ви можете зробити це через"
|
108 |
|
109 |
-
#: google-sitemap-plugin.php:
|
110 |
-
#: google-sitemap-plugin.php:
|
111 |
msgid "this"
|
112 |
msgstr "це"
|
113 |
|
114 |
-
#: google-sitemap-plugin.php:
|
115 |
-
#: google-sitemap-plugin.php:
|
116 |
msgid "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field"
|
117 |
msgstr "посилання. Авторизуйтеся, виберіть сайт, виберіть 'Sitemaps' та заповніть потрібне поле"
|
118 |
|
119 |
-
#: google-sitemap-plugin.php:
|
120 |
msgid "I want to create a new sitemap file or update the existing one"
|
121 |
msgstr "Я хочу створити новий файл sitemap або оновити існуючий"
|
122 |
|
123 |
-
#: google-sitemap-plugin.php:
|
124 |
msgid "I want to add sitemap file path in robots.txt"
|
125 |
msgstr "Я хочу додати шлях до файлу sitemap у robots.txt"
|
126 |
|
127 |
-
#: google-sitemap-plugin.php:
|
128 |
msgid "Since you are using multisiting, the plugin does not allow to add a sitemap to robots.txt"
|
129 |
msgstr "Оскільки ви використовуєте мультисайтинг, плагін не може додати файл sitemap до robots.txt"
|
130 |
|
131 |
-
#: google-sitemap-plugin.php:
|
132 |
msgid "I want to add sitemap file path in"
|
133 |
msgstr "Я хочу додати шлях файлу sitemap у"
|
134 |
|
135 |
-
#: google-sitemap-plugin.php:
|
136 |
-
#: google-sitemap-plugin.php:
|
137 |
msgid "Please choose the necessary post types and taxonomies the links to which are to be added to the sitemap:"
|
138 |
msgstr "Будь ласка виберіть необхідні типи постів і таксономії, посилання на які мають бути додані до файлу sitemap:"
|
139 |
|
140 |
-
#: google-sitemap-plugin.php:
|
141 |
msgid "XML Sitemap \"Change Frequency\" parameter"
|
142 |
msgstr "Параметр XML Sitemap \"Change Frequency\""
|
143 |
|
144 |
-
#: google-sitemap-plugin.php:
|
145 |
msgid "Always"
|
146 |
msgstr "завжди"
|
147 |
|
148 |
-
#: google-sitemap-plugin.php:
|
149 |
msgid "Hourly"
|
150 |
msgstr "щогодини"
|
151 |
|
152 |
-
#: google-sitemap-plugin.php:
|
153 |
msgid "Daily"
|
154 |
msgstr "щодня"
|
155 |
|
156 |
-
#: google-sitemap-plugin.php:
|
157 |
msgid "Weekly"
|
158 |
msgstr "щотижня"
|
159 |
|
160 |
-
#: google-sitemap-plugin.php:
|
161 |
msgid "Monthly"
|
162 |
msgstr "щомісяця"
|
163 |
|
164 |
-
#: google-sitemap-plugin.php:
|
165 |
msgid "Yearly"
|
166 |
msgstr "щороку"
|
167 |
|
168 |
-
#: google-sitemap-plugin.php:
|
169 |
msgid "Never"
|
170 |
msgstr "ніколи"
|
171 |
|
172 |
-
#: google-sitemap-plugin.php:
|
173 |
msgid "This value is used in the sitemap file and provides general information to search engines. The sitemap itself is generated once and will be re-generated when you create or update any post or page."
|
174 |
msgstr "Це значення використовується у файлі sitemap та надає загальну інформацію для пошукових систем. Сам файл генерується один раз і буде регенеруватись при створенні або оновленні будь-якого посту чи сторінки."
|
175 |
|
176 |
-
#: google-sitemap-plugin.php:
|
177 |
-
#: google-sitemap-plugin.php:
|
178 |
-
msgid "Unlock premium options by upgrading to
|
179 |
-
msgstr "Відкрити додаткові опції, перейшовши на
|
180 |
|
181 |
-
#: google-sitemap-plugin.php:
|
182 |
-
#: google-sitemap-plugin.php:
|
183 |
msgid "Learn More"
|
184 |
msgstr "Дізнатись більше"
|
185 |
|
186 |
-
#: google-sitemap-plugin.php:
|
187 |
-
#: google-sitemap-plugin.php:614
|
188 |
-
msgid "Go"
|
189 |
-
msgstr "Перейти"
|
190 |
-
|
191 |
-
#: google-sitemap-plugin.php:490
|
192 |
msgid "This hosting does not support сURL, so you cannot add a sitemap file automatically."
|
193 |
msgstr "Цей хостинг не підтримує сURL, тому ви не можете автоматично додати файл sitemap."
|
194 |
|
195 |
-
#: google-sitemap-plugin.php:
|
196 |
msgid "Remote work with Google Webmaster Tools"
|
197 |
msgstr "Віддалена робота з Google Webmaster Tools"
|
198 |
|
199 |
-
#: google-sitemap-plugin.php:
|
200 |
msgid "Log out from Google Webmaster Tools"
|
201 |
msgstr "Вийти з Google Webmaster Tools"
|
202 |
|
203 |
-
#: google-sitemap-plugin.php:
|
204 |
msgid "I want to add this site to Google Webmaster Tools"
|
205 |
msgstr "Я хочу додати цей сайт до Google Webmaster Tools"
|
206 |
|
207 |
-
#: google-sitemap-plugin.php:
|
208 |
msgid "I want to delete this site from Google Webmaster Tools"
|
209 |
msgstr "Я хочу видалити цей сайт з Google Webmaster Tools"
|
210 |
|
211 |
-
#: google-sitemap-plugin.php:
|
212 |
msgid "I want to get info about this site in Google Webmaster Tools"
|
213 |
msgstr "Я хочу отримувати інформацію про цей сайт з Google Webmaster Tools"
|
214 |
|
215 |
-
#: google-sitemap-plugin.php:
|
216 |
msgid "In case you failed to add a sitemap to Google automatically using this plugin, it is possible to do it manually"
|
217 |
msgstr "Якщо ви не зможете автоматично додати sitemap файл в Google за допомогою цього плагіну, ви завжди зможете зробити це вручну"
|
218 |
|
219 |
-
#: google-sitemap-plugin.php:
|
220 |
-
#: google-sitemap-plugin.php:
|
221 |
-
#: google-sitemap-plugin.php:
|
222 |
-
#: google-sitemap-plugin.php:
|
223 |
-
#: google-sitemap-plugin.php:
|
224 |
-
#: google-sitemap-plugin.php:
|
225 |
-
#: google-sitemap-plugin.php:
|
226 |
msgid "View the Instruction"
|
227 |
msgstr "Переглянути інструкцію"
|
228 |
|
229 |
-
#: google-sitemap-plugin.php:
|
230 |
msgid "Please authorize via your Google Account in order to add or delete a site and a sitemap file automatically or get information about this site in Google Webmaster Tools."
|
231 |
msgstr "Будь ласка, авторизуйтесь використовуючи ваш Google акаунт, щоб мати можливість додавати або видаляти сайти та файл sitemap у вашому акаунті автоматично або отримувати інформацію про цей сайт з Google Webmaster Tools."
|
232 |
|
233 |
-
#: google-sitemap-plugin.php:
|
234 |
msgid "Get Authorization Code"
|
235 |
msgstr "Отримати Код Авторизації"
|
236 |
|
237 |
-
#: google-sitemap-plugin.php:
|
238 |
msgid "Authorize"
|
239 |
msgstr "Авторизуватись"
|
240 |
|
241 |
-
#: google-sitemap-plugin.php:
|
242 |
msgid "Invalid authorization code. Please, try again."
|
243 |
msgstr "Невірний код авторизації. Будь ласка, спробуйте ще раз."
|
244 |
|
245 |
-
#: google-sitemap-plugin.php:
|
246 |
-
#: google-sitemap-plugin.php:
|
247 |
msgid "Save Changes"
|
248 |
msgstr "Зберегти зміни"
|
249 |
|
250 |
-
#: google-sitemap-plugin.php:
|
251 |
msgid "Show URL for pages"
|
252 |
msgstr "Показати посилання для сторінок"
|
253 |
|
254 |
-
#: google-sitemap-plugin.php:
|
255 |
msgid "Example of site pages' tree"
|
256 |
msgstr "Приклад дерева сторінок сайту"
|
257 |
|
258 |
-
#: google-sitemap-plugin.php:
|
259 |
#, php-format
|
260 |
msgid "I want to get info about site %s in Google Webmaster Tools"
|
261 |
msgstr "Я хочу отримати інформацію про сайт %s в Google Webmaster Tools"
|
262 |
|
263 |
-
#: google-sitemap-plugin.php:
|
264 |
-
#: google-sitemap-plugin.php:
|
265 |
msgid "This site is not added to the Google Webmaster Tools."
|
266 |
msgstr "Даний сайт не додано до Google Webmaster Tools."
|
267 |
|
268 |
-
#: google-sitemap-plugin.php:
|
269 |
msgid "This site is added to the Google Webmaster Tools."
|
270 |
msgstr "Цей сайт додано до Google Webmaster Tools."
|
271 |
|
272 |
-
#: google-sitemap-plugin.php:
|
273 |
msgid "Site URL:"
|
274 |
msgstr "URL сайту:"
|
275 |
|
276 |
-
#: google-sitemap-plugin.php:
|
277 |
msgid "Site verification:"
|
278 |
msgstr "Верифікація сайту:"
|
279 |
|
280 |
-
#: google-sitemap-plugin.php:
|
281 |
msgid "verified"
|
282 |
msgstr "верифіковано"
|
283 |
|
284 |
-
#: google-sitemap-plugin.php:
|
285 |
msgid "not verified"
|
286 |
msgstr "не верифіковано"
|
287 |
|
288 |
-
#: google-sitemap-plugin.php:
|
289 |
-
#: google-sitemap-plugin.php:
|
290 |
msgid "An unexpected error occurred when verifying site in the Google Webmaster Tools."
|
291 |
msgstr "Помилка при перевірці сайту в Google Webmaster Tools."
|
292 |
|
293 |
-
#: google-sitemap-plugin.php:
|
294 |
-
#: google-sitemap-plugin.php:
|
295 |
-
#: google-sitemap-plugin.php:
|
296 |
msgid "The site couldn't be verified. Please, verify the site manually"
|
297 |
msgstr "Сайт неможна перевірити. Будь ласка, перевірте його вручну"
|
298 |
|
299 |
-
#: google-sitemap-plugin.php:
|
300 |
msgid "The sitemap file is not added to the Google Webmaster Tools."
|
301 |
msgstr "Файл sitemap не додано до Google Webmaster Tools."
|
302 |
|
303 |
-
#: google-sitemap-plugin.php:
|
304 |
msgid "The sitemap file is added to the Google Webmaster Tools."
|
305 |
msgstr "Файл sitemap додано до Google Webmaster Tools."
|
306 |
|
307 |
-
#: google-sitemap-plugin.php:
|
308 |
msgid "The sitemap file is added to the Google Webmaster Tools, but has some errors or warnings."
|
309 |
msgstr "Файл sitemap додано до акаунту Google Webmaster Tools, але під час додавання виникли помилки."
|
310 |
|
311 |
-
#: google-sitemap-plugin.php:
|
312 |
msgid "Please, see them in the Google Webmaster Tools."
|
313 |
msgstr "Перегляньте їх в Google Webmaster Tools."
|
314 |
|
315 |
-
#: google-sitemap-plugin.php:
|
316 |
msgid "Sitemap URL:"
|
317 |
msgstr "URL Sitemap:"
|
318 |
|
319 |
-
#: google-sitemap-plugin.php:
|
320 |
msgid "When checking the sitemap file an unexpected error occurred. Please, check the sitemap file manually"
|
321 |
msgstr "Помилка при перевірці файлу sitemap. Будь ласка, перевірте файл вручну"
|
322 |
|
323 |
-
#: google-sitemap-plugin.php:
|
324 |
#, php-format
|
325 |
msgid "I want to delete site %s from Google Webmaster Tools"
|
326 |
msgstr "Я хочу видалити сайт %s з Google Webmaster Tools"
|
327 |
|
328 |
-
#: google-sitemap-plugin.php:
|
329 |
msgid "This site has been successfully deleted from Google Webmaster Tools"
|
330 |
msgstr "Даний сайт було видалено з Google Webmaster Tools"
|
331 |
|
332 |
-
#: google-sitemap-plugin.php:
|
333 |
#, php-format
|
334 |
msgid "I want to add site %s in Google Webmaster Tools"
|
335 |
msgstr "Я хочу додати сайт %s до Google Webmaster Tools"
|
336 |
|
337 |
-
#: google-sitemap-plugin.php:
|
338 |
msgid "The site is added to the Google Webmaster Tools."
|
339 |
msgstr "Сайт додано до Google Webmaster Tools."
|
340 |
|
341 |
-
#: google-sitemap-plugin.php:
|
342 |
msgid "When you add a site in the Google Webmaster Tools unexpected error occurred."
|
343 |
msgstr "Помилка при додаванні сайту до Google Webmaster Tools."
|
344 |
|
345 |
-
#: google-sitemap-plugin.php:
|
346 |
msgid "The site couldn't be added. Please, add the site manually"
|
347 |
msgstr "Неможна додати сайт. Будь ласка, додайте його вручну"
|
348 |
|
349 |
-
#: google-sitemap-plugin.php:
|
350 |
msgid "Verification code has been successfully received and added to the site."
|
351 |
msgstr "Код верифікації успішно отримано та додано на сайт."
|
352 |
|
353 |
-
#: google-sitemap-plugin.php:
|
354 |
msgid "Verification code has been successfully received but has not been added to the site."
|
355 |
msgstr "Код верифікації успішно отримано, але не додано на сайт."
|
356 |
|
357 |
-
#: google-sitemap-plugin.php:
|
358 |
msgid "An error has occurred when receiving the verification code site in the Google Webmaster."
|
359 |
msgstr "Помилка при отриманні верифікаційного коду Google Webmaster."
|
360 |
|
361 |
-
#: google-sitemap-plugin.php:
|
362 |
msgid "The site has been successfully verified in the Google Webmaster Tools."
|
363 |
msgstr "Сайт успішно перевірено в Google Webmaster Tools."
|
364 |
|
365 |
-
#: google-sitemap-plugin.php:
|
366 |
msgid "The sitemap file has been successfully added to the Google Webmaster Tools."
|
367 |
msgstr "Файл sitemap успішно додано до Google Webmaster Tools."
|
368 |
|
369 |
-
#: google-sitemap-plugin.php:
|
370 |
msgid "When you add a sitemap file in the Google Webmaster Tools unexpected error occurred."
|
371 |
msgstr "Помилка при додаванні файлу sitemap до Google Webmaster Tools."
|
372 |
|
373 |
-
#: google-sitemap-plugin.php:
|
374 |
msgid "The sitemap file couldn't be added. Please, add the sitemap file manually"
|
375 |
msgstr "Файл sitemap не може бути доданий. Будь ласка, додайте його вручну"
|
376 |
|
377 |
-
#: google-sitemap-plugin.php:
|
378 |
#, php-format
|
379 |
msgid "Error 404. The sitemap file %s not found."
|
380 |
msgstr "Помилка 404. Файл sitemap %s не знайдено."
|
381 |
|
382 |
-
#: google-sitemap-plugin.php:
|
383 |
msgid "The sitemap file not found."
|
384 |
msgstr "Файл sitemap не знайдено."
|
385 |
|
386 |
-
#: google-sitemap-plugin.php:
|
387 |
msgid "Support"
|
388 |
msgstr "Підтримка"
|
389 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
390 |
#~ msgid "Post categories"
|
391 |
#~ msgstr "Категорії публікацій"
|
392 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google-sitemap-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-21 10:41+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-09-21 10:41+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: google-sitemap-plugin.php:35
|
20 |
+
#: google-sitemap-plugin.php:355
|
21 |
msgid "Google Sitemap Settings"
|
22 |
msgstr "Налаштування Google Sitemap"
|
23 |
|
24 |
+
#: google-sitemap-plugin.php:291
|
25 |
msgid "Cannot edit \"robots.txt\". Check your permissions."
|
26 |
msgstr "Неможливо відредагувати файл \"robots.txt\". Перевірте свої права."
|
27 |
|
28 |
+
#: google-sitemap-plugin.php:302
|
29 |
msgid "Settings saved."
|
30 |
msgstr "Налаштування збережено."
|
31 |
|
32 |
+
#: google-sitemap-plugin.php:307
|
33 |
msgid "Your Sitemap file is created in the site root directory."
|
34 |
msgstr "Файл Sitemap створено у кореневій директорії сайту."
|
35 |
|
36 |
+
#: google-sitemap-plugin.php:342
|
37 |
msgid "Cannot edit \"robot.txt\". Check your permissions."
|
38 |
msgstr "Неможливо відредагувати файл \"robot.txt\". Перевірте свої права."
|
39 |
|
40 |
+
#: google-sitemap-plugin.php:351
|
41 |
msgid "All plugin settings were restored."
|
42 |
msgstr "Налаштування плагіну були відновлені."
|
43 |
|
44 |
+
#: google-sitemap-plugin.php:357
|
45 |
+
#: google-sitemap-plugin.php:898
|
46 |
+
#: google-sitemap-plugin.php:911
|
47 |
msgid "Settings"
|
48 |
msgstr "Налаштування"
|
49 |
|
50 |
+
#: google-sitemap-plugin.php:358
|
51 |
msgid "Extra settings"
|
52 |
msgstr "Додаткові налаштування"
|
53 |
|
54 |
+
#: google-sitemap-plugin.php:359
|
55 |
+
#: google-sitemap-plugin.php:912
|
56 |
msgid "FAQ"
|
57 |
msgstr "FAQ"
|
58 |
|
59 |
+
#: google-sitemap-plugin.php:360
|
60 |
msgid "Go PRO"
|
61 |
msgstr "Перейти на PRO"
|
62 |
|
63 |
+
#: google-sitemap-plugin.php:366
|
64 |
msgid "Warning:"
|
65 |
msgstr "Увага:"
|
66 |
|
67 |
+
#: google-sitemap-plugin.php:368
|
68 |
#, php-format
|
69 |
msgid "To have an access to subsites XML files, please add the following rule %s to your %s file in %s after line %s."
|
70 |
msgstr "Щоб мати доступ до XML файлів підсайту, будь ласка, додайте наступне правило %s у ваш %s файл %s після строчки %s."
|
71 |
|
72 |
+
#: google-sitemap-plugin.php:378
|
73 |
msgid "Сheck Access"
|
74 |
msgstr "Перевірити Доступ"
|
75 |
|
76 |
+
#: google-sitemap-plugin.php:405
|
77 |
+
#: google-sitemap-plugin.php:407
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
msgid "The Sitemap file"
|
79 |
msgstr "Файл Sitemap"
|
80 |
|
81 |
+
#: google-sitemap-plugin.php:405
|
82 |
+
#: google-sitemap-plugin.php:407
|
83 |
msgid "already exists. If you would like to replace it with a new one, please choose the necessary box below."
|
84 |
msgstr "вже існує. Якщо ви хочете замінити його на новий, виберіть потрібну дію внизу."
|
85 |
|
86 |
+
#: google-sitemap-plugin.php:412
|
87 |
+
#: google-sitemap-plugin.php:414
|
88 |
msgid "Your Sitemap file"
|
89 |
msgstr "Ваш файл Sitemap"
|
90 |
|
91 |
+
#: google-sitemap-plugin.php:412
|
92 |
+
#: google-sitemap-plugin.php:414
|
93 |
msgid "is created in the site root directory."
|
94 |
msgstr "створений у кореневій директорії сайту."
|
95 |
|
96 |
+
#: google-sitemap-plugin.php:419
|
97 |
+
#: google-sitemap-plugin.php:421
|
98 |
msgid "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using"
|
99 |
msgstr "Якщо ви не хочете додати файл sitemap до Google Webmaster Tools автоматично, ви можете зробити це через"
|
100 |
|
101 |
+
#: google-sitemap-plugin.php:419
|
102 |
+
#: google-sitemap-plugin.php:421
|
103 |
msgid "this"
|
104 |
msgstr "це"
|
105 |
|
106 |
+
#: google-sitemap-plugin.php:419
|
107 |
+
#: google-sitemap-plugin.php:421
|
108 |
msgid "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field"
|
109 |
msgstr "посилання. Авторизуйтеся, виберіть сайт, виберіть 'Sitemaps' та заповніть потрібне поле"
|
110 |
|
111 |
+
#: google-sitemap-plugin.php:426
|
112 |
msgid "I want to create a new sitemap file or update the existing one"
|
113 |
msgstr "Я хочу створити новий файл sitemap або оновити існуючий"
|
114 |
|
115 |
+
#: google-sitemap-plugin.php:432
|
116 |
msgid "I want to add sitemap file path in robots.txt"
|
117 |
msgstr "Я хочу додати шлях до файлу sitemap у robots.txt"
|
118 |
|
119 |
+
#: google-sitemap-plugin.php:433
|
120 |
msgid "Since you are using multisiting, the plugin does not allow to add a sitemap to robots.txt"
|
121 |
msgstr "Оскільки ви використовуєте мультисайтинг, плагін не може додати файл sitemap до robots.txt"
|
122 |
|
123 |
+
#: google-sitemap-plugin.php:439
|
124 |
msgid "I want to add sitemap file path in"
|
125 |
msgstr "Я хочу додати шлях файлу sitemap у"
|
126 |
|
127 |
+
#: google-sitemap-plugin.php:444
|
128 |
+
#: google-sitemap-plugin.php:593
|
129 |
msgid "Please choose the necessary post types and taxonomies the links to which are to be added to the sitemap:"
|
130 |
msgstr "Будь ласка виберіть необхідні типи постів і таксономії, посилання на які мають бути додані до файлу sitemap:"
|
131 |
|
132 |
+
#: google-sitemap-plugin.php:470
|
133 |
msgid "XML Sitemap \"Change Frequency\" parameter"
|
134 |
msgstr "Параметр XML Sitemap \"Change Frequency\""
|
135 |
|
136 |
+
#: google-sitemap-plugin.php:473
|
137 |
msgid "Always"
|
138 |
msgstr "завжди"
|
139 |
|
140 |
+
#: google-sitemap-plugin.php:474
|
141 |
msgid "Hourly"
|
142 |
msgstr "щогодини"
|
143 |
|
144 |
+
#: google-sitemap-plugin.php:475
|
145 |
msgid "Daily"
|
146 |
msgstr "щодня"
|
147 |
|
148 |
+
#: google-sitemap-plugin.php:476
|
149 |
msgid "Weekly"
|
150 |
msgstr "щотижня"
|
151 |
|
152 |
+
#: google-sitemap-plugin.php:477
|
153 |
msgid "Monthly"
|
154 |
msgstr "щомісяця"
|
155 |
|
156 |
+
#: google-sitemap-plugin.php:478
|
157 |
msgid "Yearly"
|
158 |
msgstr "щороку"
|
159 |
|
160 |
+
#: google-sitemap-plugin.php:479
|
161 |
msgid "Never"
|
162 |
msgstr "ніколи"
|
163 |
|
164 |
+
#: google-sitemap-plugin.php:481
|
165 |
msgid "This value is used in the sitemap file and provides general information to search engines. The sitemap itself is generated once and will be re-generated when you create or update any post or page."
|
166 |
msgstr "Це значення використовується у файлі sitemap та надає загальну інформацію для пошукових систем. Сам файл генерується один раз і буде регенеруватись при створенні або оновленні будь-якого посту чи сторінки."
|
167 |
|
168 |
+
#: google-sitemap-plugin.php:488
|
169 |
+
#: google-sitemap-plugin.php:618
|
170 |
+
msgid "Unlock premium options by upgrading to Pro version"
|
171 |
+
msgstr "Відкрити додаткові опції, перейшовши на Pro версію"
|
172 |
|
173 |
+
#: google-sitemap-plugin.php:490
|
174 |
+
#: google-sitemap-plugin.php:620
|
175 |
msgid "Learn More"
|
176 |
msgstr "Дізнатись більше"
|
177 |
|
178 |
+
#: google-sitemap-plugin.php:498
|
|
|
|
|
|
|
|
|
|
|
179 |
msgid "This hosting does not support сURL, so you cannot add a sitemap file automatically."
|
180 |
msgstr "Цей хостинг не підтримує сURL, тому ви не можете автоматично додати файл sitemap."
|
181 |
|
182 |
+
#: google-sitemap-plugin.php:503
|
183 |
msgid "Remote work with Google Webmaster Tools"
|
184 |
msgstr "Віддалена робота з Google Webmaster Tools"
|
185 |
|
186 |
+
#: google-sitemap-plugin.php:527
|
187 |
msgid "Log out from Google Webmaster Tools"
|
188 |
msgstr "Вийти з Google Webmaster Tools"
|
189 |
|
190 |
+
#: google-sitemap-plugin.php:529
|
191 |
msgid "I want to add this site to Google Webmaster Tools"
|
192 |
msgstr "Я хочу додати цей сайт до Google Webmaster Tools"
|
193 |
|
194 |
+
#: google-sitemap-plugin.php:530
|
195 |
msgid "I want to delete this site from Google Webmaster Tools"
|
196 |
msgstr "Я хочу видалити цей сайт з Google Webmaster Tools"
|
197 |
|
198 |
+
#: google-sitemap-plugin.php:531
|
199 |
msgid "I want to get info about this site in Google Webmaster Tools"
|
200 |
msgstr "Я хочу отримувати інформацію про цей сайт з Google Webmaster Tools"
|
201 |
|
202 |
+
#: google-sitemap-plugin.php:537
|
203 |
msgid "In case you failed to add a sitemap to Google automatically using this plugin, it is possible to do it manually"
|
204 |
msgstr "Якщо ви не зможете автоматично додати sitemap файл в Google за допомогою цього плагіну, ви завжди зможете зробити це вручну"
|
205 |
|
206 |
+
#: google-sitemap-plugin.php:538
|
207 |
+
#: google-sitemap-plugin.php:693
|
208 |
+
#: google-sitemap-plugin.php:716
|
209 |
+
#: google-sitemap-plugin.php:773
|
210 |
+
#: google-sitemap-plugin.php:800
|
211 |
+
#: google-sitemap-plugin.php:820
|
212 |
+
#: google-sitemap-plugin.php:839
|
213 |
msgid "View the Instruction"
|
214 |
msgstr "Переглянути інструкцію"
|
215 |
|
216 |
+
#: google-sitemap-plugin.php:563
|
217 |
msgid "Please authorize via your Google Account in order to add or delete a site and a sitemap file automatically or get information about this site in Google Webmaster Tools."
|
218 |
msgstr "Будь ласка, авторизуйтесь використовуючи ваш Google акаунт, щоб мати можливість додавати або видаляти сайти та файл sitemap у вашому акаунті автоматично або отримувати інформацію про цей сайт з Google Webmaster Tools."
|
219 |
|
220 |
+
#: google-sitemap-plugin.php:564
|
221 |
msgid "Get Authorization Code"
|
222 |
msgstr "Отримати Код Авторизації"
|
223 |
|
224 |
+
#: google-sitemap-plugin.php:567
|
225 |
msgid "Authorize"
|
226 |
msgstr "Авторизуватись"
|
227 |
|
228 |
+
#: google-sitemap-plugin.php:570
|
229 |
msgid "Invalid authorization code. Please, try again."
|
230 |
msgstr "Невірний код авторизації. Будь ласка, спробуйте ще раз."
|
231 |
|
232 |
+
#: google-sitemap-plugin.php:579
|
233 |
+
#: google-sitemap-plugin.php:611
|
234 |
msgid "Save Changes"
|
235 |
msgstr "Зберегти зміни"
|
236 |
|
237 |
+
#: google-sitemap-plugin.php:600
|
238 |
msgid "Show URL for pages"
|
239 |
msgstr "Показати посилання для сторінок"
|
240 |
|
241 |
+
#: google-sitemap-plugin.php:606
|
242 |
msgid "Example of site pages' tree"
|
243 |
msgstr "Приклад дерева сторінок сайту"
|
244 |
|
245 |
+
#: google-sitemap-plugin.php:667
|
246 |
#, php-format
|
247 |
msgid "I want to get info about site %s in Google Webmaster Tools"
|
248 |
msgstr "Я хочу отримати інформацію про сайт %s в Google Webmaster Tools"
|
249 |
|
250 |
+
#: google-sitemap-plugin.php:676
|
251 |
+
#: google-sitemap-plugin.php:746
|
252 |
msgid "This site is not added to the Google Webmaster Tools."
|
253 |
msgstr "Даний сайт не додано до Google Webmaster Tools."
|
254 |
|
255 |
+
#: google-sitemap-plugin.php:680
|
256 |
msgid "This site is added to the Google Webmaster Tools."
|
257 |
msgstr "Цей сайт додано до Google Webmaster Tools."
|
258 |
|
259 |
+
#: google-sitemap-plugin.php:681
|
260 |
msgid "Site URL:"
|
261 |
msgstr "URL сайту:"
|
262 |
|
263 |
+
#: google-sitemap-plugin.php:682
|
264 |
msgid "Site verification:"
|
265 |
msgstr "Верифікація сайту:"
|
266 |
|
267 |
+
#: google-sitemap-plugin.php:682
|
268 |
msgid "verified"
|
269 |
msgstr "верифіковано"
|
270 |
|
271 |
+
#: google-sitemap-plugin.php:682
|
272 |
msgid "not verified"
|
273 |
msgstr "не верифіковано"
|
274 |
|
275 |
+
#: google-sitemap-plugin.php:691
|
276 |
+
#: google-sitemap-plugin.php:818
|
277 |
msgid "An unexpected error occurred when verifying site in the Google Webmaster Tools."
|
278 |
msgstr "Помилка при перевірці сайту в Google Webmaster Tools."
|
279 |
|
280 |
+
#: google-sitemap-plugin.php:693
|
281 |
+
#: google-sitemap-plugin.php:800
|
282 |
+
#: google-sitemap-plugin.php:820
|
283 |
msgid "The site couldn't be verified. Please, verify the site manually"
|
284 |
msgstr "Сайт неможна перевірити. Будь ласка, перевірте його вручну"
|
285 |
|
286 |
+
#: google-sitemap-plugin.php:706
|
287 |
msgid "The sitemap file is not added to the Google Webmaster Tools."
|
288 |
msgstr "Файл sitemap не додано до Google Webmaster Tools."
|
289 |
|
290 |
+
#: google-sitemap-plugin.php:709
|
291 |
msgid "The sitemap file is added to the Google Webmaster Tools."
|
292 |
msgstr "Файл sitemap додано до Google Webmaster Tools."
|
293 |
|
294 |
+
#: google-sitemap-plugin.php:711
|
295 |
msgid "The sitemap file is added to the Google Webmaster Tools, but has some errors or warnings."
|
296 |
msgstr "Файл sitemap додано до акаунту Google Webmaster Tools, але під час додавання виникли помилки."
|
297 |
|
298 |
+
#: google-sitemap-plugin.php:711
|
299 |
msgid "Please, see them in the Google Webmaster Tools."
|
300 |
msgstr "Перегляньте їх в Google Webmaster Tools."
|
301 |
|
302 |
+
#: google-sitemap-plugin.php:714
|
303 |
msgid "Sitemap URL:"
|
304 |
msgstr "URL Sitemap:"
|
305 |
|
306 |
+
#: google-sitemap-plugin.php:716
|
307 |
msgid "When checking the sitemap file an unexpected error occurred. Please, check the sitemap file manually"
|
308 |
msgstr "Помилка при перевірці файлу sitemap. Будь ласка, перевірте файл вручну"
|
309 |
|
310 |
+
#: google-sitemap-plugin.php:728
|
311 |
#, php-format
|
312 |
msgid "I want to delete site %s from Google Webmaster Tools"
|
313 |
msgstr "Я хочу видалити сайт %s з Google Webmaster Tools"
|
314 |
|
315 |
+
#: google-sitemap-plugin.php:741
|
316 |
msgid "This site has been successfully deleted from Google Webmaster Tools"
|
317 |
msgstr "Даний сайт було видалено з Google Webmaster Tools"
|
318 |
|
319 |
+
#: google-sitemap-plugin.php:760
|
320 |
#, php-format
|
321 |
msgid "I want to add site %s in Google Webmaster Tools"
|
322 |
msgstr "Я хочу додати сайт %s до Google Webmaster Tools"
|
323 |
|
324 |
+
#: google-sitemap-plugin.php:765
|
325 |
msgid "The site is added to the Google Webmaster Tools."
|
326 |
msgstr "Сайт додано до Google Webmaster Tools."
|
327 |
|
328 |
+
#: google-sitemap-plugin.php:771
|
329 |
msgid "When you add a site in the Google Webmaster Tools unexpected error occurred."
|
330 |
msgstr "Помилка при додаванні сайту до Google Webmaster Tools."
|
331 |
|
332 |
+
#: google-sitemap-plugin.php:773
|
333 |
msgid "The site couldn't be added. Please, add the site manually"
|
334 |
msgstr "Неможна додати сайт. Будь ласка, додайте його вручну"
|
335 |
|
336 |
+
#: google-sitemap-plugin.php:789
|
337 |
msgid "Verification code has been successfully received and added to the site."
|
338 |
msgstr "Код верифікації успішно отримано та додано на сайт."
|
339 |
|
340 |
+
#: google-sitemap-plugin.php:791
|
341 |
msgid "Verification code has been successfully received but has not been added to the site."
|
342 |
msgstr "Код верифікації успішно отримано, але не додано на сайт."
|
343 |
|
344 |
+
#: google-sitemap-plugin.php:798
|
345 |
msgid "An error has occurred when receiving the verification code site in the Google Webmaster."
|
346 |
msgstr "Помилка при отриманні верифікаційного коду Google Webmaster."
|
347 |
|
348 |
+
#: google-sitemap-plugin.php:812
|
349 |
msgid "The site has been successfully verified in the Google Webmaster Tools."
|
350 |
msgstr "Сайт успішно перевірено в Google Webmaster Tools."
|
351 |
|
352 |
+
#: google-sitemap-plugin.php:831
|
353 |
msgid "The sitemap file has been successfully added to the Google Webmaster Tools."
|
354 |
msgstr "Файл sitemap успішно додано до Google Webmaster Tools."
|
355 |
|
356 |
+
#: google-sitemap-plugin.php:837
|
357 |
msgid "When you add a sitemap file in the Google Webmaster Tools unexpected error occurred."
|
358 |
msgstr "Помилка при додаванні файлу sitemap до Google Webmaster Tools."
|
359 |
|
360 |
+
#: google-sitemap-plugin.php:839
|
361 |
msgid "The sitemap file couldn't be added. Please, add the sitemap file manually"
|
362 |
msgstr "Файл sitemap не може бути доданий. Будь ласка, додайте його вручну"
|
363 |
|
364 |
+
#: google-sitemap-plugin.php:842
|
365 |
#, php-format
|
366 |
msgid "Error 404. The sitemap file %s not found."
|
367 |
msgstr "Помилка 404. Файл sitemap %s не знайдено."
|
368 |
|
369 |
+
#: google-sitemap-plugin.php:845
|
370 |
msgid "The sitemap file not found."
|
371 |
msgstr "Файл sitemap не знайдено."
|
372 |
|
373 |
+
#: google-sitemap-plugin.php:913
|
374 |
msgid "Support"
|
375 |
msgstr "Підтримка"
|
376 |
|
377 |
+
#~ msgid "Notice:"
|
378 |
+
#~ msgstr "Зауважте:"
|
379 |
+
|
380 |
+
#~ msgid ""
|
381 |
+
#~ "The plugin's settings have been changed. In order to save them please "
|
382 |
+
#~ "don't forget to click the 'Save Changes' button."
|
383 |
+
#~ msgstr ""
|
384 |
+
#~ "Налаштування плагіну змінено. Щоб зберегти їх, будь ласка, не забудьте "
|
385 |
+
#~ "клікнути \"Зберегти зміни\"."
|
386 |
+
|
387 |
+
#~ msgid "Go"
|
388 |
+
#~ msgstr "Перейти"
|
389 |
+
|
390 |
#~ msgid "Post categories"
|
391 |
#~ msgstr "Категорії публікацій"
|
392 |
|
languages/sitemap-ru_RU.mo
DELETED
Binary file
|
languages/sitemap-uk.mo
DELETED
Binary file
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Google Sitemap by BestWebSoft ===
|
2 |
Contributors: bestwebsoft
|
3 |
Donate link: http://bestwebsoft.com/donate/
|
4 |
-
Tags: add
|
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 |
|
@@ -16,13 +16,13 @@ With the Google Sitemap Plugin you can create and add a Sitemap file to Google W
|
|
16 |
|
17 |
http://www.youtube.com/watch?v=3Qv-ad_aEPg
|
18 |
|
19 |
-
<a href="http://www.youtube.com/watch?v=NKlAnFTzNrQ" target="_blank">Video instruction on Installation</a>
|
20 |
|
21 |
-
<a href="http://wordpress.org/plugins/google-sitemap-plugin/faq/" target="_blank">FAQ</a>
|
22 |
|
23 |
-
<a href="http://support.bestwebsoft.com" target="_blank">Support</a>
|
24 |
|
25 |
-
<a href="http://bestwebsoft.com/products/google-sitemap/?k=8b735c0f7ca51187b5062d5e4f40058b" target="_blank">Upgrade to Pro
|
26 |
|
27 |
= Recommended Plugins =
|
28 |
|
@@ -102,6 +102,10 @@ Please make sure that the problem hasn't been discussed yet on our forum (http:/
|
|
102 |
|
103 |
== Changelog ==
|
104 |
|
|
|
|
|
|
|
|
|
105 |
= V3.0.0 - 18.08.2015 =
|
106 |
* Update : We updated all functionality for wordpress 4.2.4.
|
107 |
* Update : BWS plugins section was updated.
|
@@ -245,6 +249,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (http:/
|
|
245 |
|
246 |
== Upgrade Notice ==
|
247 |
|
|
|
|
|
|
|
248 |
= V3.0.0 =
|
249 |
We updated all functionality for wordpress 4.2.4. BWS plugins section was updated.
|
250 |
|
1 |
=== Google Sitemap by BestWebSoft ===
|
2 |
Contributors: bestwebsoft
|
3 |
Donate link: http://bestwebsoft.com/donate/
|
4 |
+
Tags: add page to sitemap, add post to sitemap, add pages to sitemap, add posts to sitemap, add site to google webmaster tools, add sitemap, best sitemap plugin, best google sitemap plugin, create a map, free google sitemap plugin, free sitemap plugin, gogle, gogole, googel, googgle, google, google sitemap, google sitemap plugin, google webmaster tools, simple sitemap plugin, simple site map plugin, site map, site mep, sitemap, sitemap file path, sitemaps, sitemep, update sitemap, webmaster tools, wp plugin, wordpress plugin, wp sitemap plugin, wordpress sitemap plugin, wp google sitemap plugin, wordpress google sitemap plugin
|
5 |
+
Requires at least: 3.8
|
6 |
+
Tested up to: 4.3.1
|
7 |
+
Stable tag: 3.0.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
16 |
|
17 |
http://www.youtube.com/watch?v=3Qv-ad_aEPg
|
18 |
|
19 |
+
<a href="http://www.youtube.com/watch?v=NKlAnFTzNrQ" target="_blank">Google Sitemap by BestWebSoft Video instruction on Installation</a>
|
20 |
|
21 |
+
<a href="http://wordpress.org/plugins/google-sitemap-plugin/faq/" target="_blank">Google Sitemap by BestWebSoft FAQ</a>
|
22 |
|
23 |
+
<a href="http://support.bestwebsoft.com" target="_blank">Google Sitemap by BestWebSoft Support</a>
|
24 |
|
25 |
+
<a href="http://bestwebsoft.com/products/google-sitemap/?k=8b735c0f7ca51187b5062d5e4f40058b" target="_blank">Upgrade to Google Sitemap Pro by BestWebSoft</a>
|
26 |
|
27 |
= Recommended Plugins =
|
28 |
|
102 |
|
103 |
== Changelog ==
|
104 |
|
105 |
+
= V3.0.1 - 21.09.2015 =
|
106 |
+
* Update : Textdomain was changed.
|
107 |
+
* Update : We updated all functionality for wordpress 4.3.1.
|
108 |
+
|
109 |
= V3.0.0 - 18.08.2015 =
|
110 |
* Update : We updated all functionality for wordpress 4.2.4.
|
111 |
* Update : BWS plugins section was updated.
|
249 |
|
250 |
== Upgrade Notice ==
|
251 |
|
252 |
+
= V3.0.1 =
|
253 |
+
Textdomain was changed. We updated all functionality for wordpress 4.3.1.
|
254 |
+
|
255 |
= V3.0.0 =
|
256 |
We updated all functionality for wordpress 4.2.4. BWS plugins section was updated.
|
257 |
|