Version Description
- 15.09.2015 =
- Update : We updated all functionality for wordpress 4.3.
- Update : Text Domain was changed.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | ![]() |
Version | 3.94 |
Comparing to | |
See all releases |
Code changes from version 3.93 to 3.94
- bws_menu/bws_functions.php +195 -80
- bws_menu/bws_include.php +83 -0
- bws_menu/bws_menu.php +49 -21
- bws_menu/css/general_style.css +99 -2
- bws_menu/css/general_style_wp_before_3.8.css +89 -2
- bws_menu/icons/error-log-viewer.png +0 -0
- bws_menu/icons/profile-extra-fields.png +0 -0
- bws_menu/images/help.png +0 -0
- bws_menu/images/shortcode-icon.png +0 -0
- bws_menu/images/tooltip_icons.png +0 -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 +239 -192
- bws_menu/languages/bestwebsoft-fr_FR.mo +0 -0
- bws_menu/languages/bestwebsoft-fr_FR.po +245 -199
- bws_menu/languages/bestwebsoft-it_IT.mo +0 -0
- bws_menu/languages/bestwebsoft-it_IT.po +241 -192
- bws_menu/languages/bestwebsoft-ja.mo +0 -0
- bws_menu/languages/bestwebsoft-ja.po +236 -198
- bws_menu/languages/bestwebsoft-pt_BR.mo +0 -0
- bws_menu/languages/bestwebsoft-pt_BR.po +239 -192
- bws_menu/languages/bestwebsoft-ru_RU.mo +0 -0
- bws_menu/languages/bestwebsoft-ru_RU.po +249 -207
- bws_menu/languages/bestwebsoft-sr_RS.mo +0 -0
- bws_menu/languages/bestwebsoft-sr_RS.po +235 -195
- bws_menu/languages/bestwebsoft-sv_SE.mo +0 -0
- bws_menu/languages/bestwebsoft-sv_SE.po +235 -192
- bws_menu/languages/bestwebsoft-uk.mo +0 -0
- bws_menu/languages/bestwebsoft-uk.po +240 -201
- contact_form.php +307 -297
- languages/{contact_form-af_ZA.mo → contact-form-plugin-af_ZA.mo} +0 -0
- languages/{contact_form-af_ZA.po → contact-form-plugin-af_ZA.po} +214 -214
- languages/{contact_form-ca.mo → contact-form-plugin-ca.mo} +0 -0
- languages/{contact_form-ca.po → contact-form-plugin-ca.po} +214 -214
- languages/{contact_form-de_DE.mo → contact-form-plugin-de_DE.mo} +0 -0
- languages/{contact_form-de_DE.po → contact-form-plugin-de_DE.po} +214 -214
- languages/{contact_form-el.mo → contact-form-plugin-el.mo} +0 -0
- languages/{contact_form-el.po → contact-form-plugin-el.po} +214 -214
- languages/{contact_form-es_ES.mo → contact-form-plugin-es_ES.mo} +0 -0
- languages/{contact_form-es_ES.po → contact-form-plugin-es_ES.po} +214 -214
- languages/{contact_form-et.mo → contact-form-plugin-et.mo} +0 -0
- languages/{contact_form-et.po → contact-form-plugin-et.po} +214 -214
- languages/{contact_form-fr_FR.mo → contact-form-plugin-fr_FR.mo} +0 -0
- languages/{contact_form-fr_FR.po → contact-form-plugin-fr_FR.po} +214 -214
- languages/{contact_form-ja.mo → contact-form-plugin-ja.mo} +0 -0
- languages/{contact_form-ja.po → contact-form-plugin-ja.po} +214 -214
- languages/{contact_form-nb_NO.mo → contact-form-plugin-nb_NO.mo} +0 -0
- languages/{contact_form-nb_NO.po → contact-form-plugin-nb_NO.po} +214 -214
- languages/{contact_form-pt_BR.mo → contact-form-plugin-pt_BR.mo} +0 -0
- languages/{contact_form-pt_BR.po → contact-form-plugin-pt_BR.po} +214 -214
- languages/{contact_form-ru_RU.mo → contact-form-plugin-ru_RU.mo} +0 -0
- languages/{contact_form-ru_RU.po → contact-form-plugin-ru_RU.po} +214 -214
- languages/{contact_form-sk_SK.mo → contact-form-plugin-sk_SK.mo} +0 -0
- languages/{contact_form-sk_SK.po → contact-form-plugin-sk_SK.po} +214 -214
- languages/{contact_form-sv_SE.mo → contact-form-plugin-sv_SE.mo} +0 -0
- languages/{contact_form-sv_SE.po → contact-form-plugin-sv_SE.po} +214 -214
- languages/{contact_form-tr.mo → contact-form-plugin-tr.mo} +0 -0
- languages/{contact_form-tr.po → contact-form-plugin-tr.po} +214 -214
- languages/{contact_form-uk.mo → contact-form-plugin-uk.mo} +0 -0
- languages/{contact_form-uk.po → contact-form-plugin-uk.po} +214 -214
- languages/{contact_form-vi.mo → contact-form-plugin-vi.mo} +0 -0
- languages/{contact_form-vi.po → contact-form-plugin-vi.po} +214 -214
- languages/{contact_form-zh_CN.mo → contact-form-plugin-zh_CN.mo} +0 -0
- languages/{contact_form-zh_CN.po → contact-form-plugin-zh_CN.po} +1 -1
- readme.txt +9 -2
bws_menu/bws_functions.php
CHANGED
@@ -1,75 +1,15 @@
|
|
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
|
@@ -148,7 +88,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 +174,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'] ) ) {
|
@@ -243,7 +183,17 @@ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
|
|
243 |
$url = 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/downloads/?bws_first_download=' . $bws_license_plugin . '&bws_license_key=' . $bws_license_key . '&download_from=5';
|
244 |
$uploadDir = wp_upload_dir();
|
245 |
$zip_name = explode( '/', $bws_license_plugin );
|
246 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
247 |
if ( ! $received_content ) {
|
248 |
$result['error'] = __( "Failed to download the zip archive. Please, upload the plugin manually", 'bestwebsoft' );
|
249 |
} else {
|
@@ -335,7 +285,7 @@ if ( ! function_exists( 'bws_go_pro_tab' ) ) {
|
|
335 |
window.location.href = 'admin.php?page=<?php echo $pro_page; ?>';
|
336 |
}, 5000 );
|
337 |
</script>
|
338 |
-
<p><?php _e( "Congratulations! The
|
339 |
<p>
|
340 |
<?php _e( "Please, go to", 'bestwebsoft' ); ?> <a href="admin.php?page=<?php echo $pro_page; ?>"><?php _e( 'the setting page', 'bestwebsoft' ); ?></a>
|
341 |
(<?php _e( "You will be redirected automatically in 5 seconds.", 'bestwebsoft' ); ?>)
|
@@ -344,7 +294,7 @@ if ( ! function_exists( 'bws_go_pro_tab' ) ) {
|
|
344 |
<form method="post" action="admin.php?page=<?php echo $page; ?>&action=go_pro">
|
345 |
<p>
|
346 |
<?php _e( 'You can download and activate', 'bestwebsoft' ); ?>
|
347 |
-
<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">
|
348 |
<?php _e( 'version of this plugin by entering Your license key.', 'bestwebsoft' ); ?><br />
|
349 |
<span class="bws_info">
|
350 |
<?php _e( 'You can find your license key on your personal page Client area, by clicking on the link', 'bestwebsoft' ); ?>
|
@@ -385,7 +335,7 @@ if ( ! function_exists( 'bws_go_pro_from_trial_tab' ) ) {
|
|
385 |
if ( $trial_license_is_set ) { ?>
|
386 |
<form method="post" action="admin.php?page=<?php echo $page; ?>&action=go_pro">
|
387 |
<p>
|
388 |
-
<?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"] . '">
|
389 |
_e( 'After that you can activate it by entering your license key.', 'bestwebsoft' ); ?><br />
|
390 |
<span class="bws_info">
|
391 |
<?php _e( 'You can find your license key on your personal page Client area, by clicking on the link', 'bestwebsoft' ); ?>
|
@@ -417,7 +367,7 @@ if ( ! function_exists( 'bws_go_pro_from_trial_tab' ) ) {
|
|
417 |
window.location.href = 'admin.php?page=<?php echo $page; ?>';
|
418 |
}, 5000 );
|
419 |
</script>
|
420 |
-
<p><?php _e( "Congratulations! The
|
421 |
<p>
|
422 |
<?php _e( "Please, go to", 'bestwebsoft' ); ?> <a href="admin.php?page=<?php echo $page; ?>"><?php _e( 'the setting page', 'bestwebsoft' ); ?></a>
|
423 |
(<?php _e( "You will be redirected automatically in 5 seconds.", 'bestwebsoft' ); ?>)
|
@@ -466,11 +416,11 @@ if ( ! function_exists( 'bws_check_pro_license' ) ) {
|
|
466 |
} elseif ( "you_are_banned" == $value->package ) {
|
467 |
$result['error'] = __( "Unfortunately, you have exceeded the number of available tries.", 'bestwebsoft' );
|
468 |
} elseif ( "duplicate_domen_for_trial" == $value->package ) {
|
469 |
-
$result['error'] = __( "Unfortunately, the
|
470 |
}
|
471 |
if ( empty( $result['message'] ) && empty( $result['error'] ) ) {
|
472 |
if ( isset( $value->trial ) )
|
473 |
-
$result['message'] = __( 'The
|
474 |
else
|
475 |
$result['message'] = __( 'The license key is valid.', 'bestwebsoft' );
|
476 |
|
@@ -478,7 +428,7 @@ if ( ! function_exists( 'bws_check_pro_license' ) ) {
|
|
478 |
$result['message'] .= ' ' . __( 'Your license will expire on', 'bestwebsoft' ) . ' ' . $value->time_out . '.';
|
479 |
|
480 |
if ( isset( $value->trial ) && $trial_plugin != false )
|
481 |
-
$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'] . '">
|
482 |
|
483 |
if ( isset( $value->trial ) ) {
|
484 |
$bstwbsftwppdtplgns_options['trial'][ $plugin_basename ] = 1;
|
@@ -547,7 +497,7 @@ if ( ! function_exists ( 'bws_plugin_update_row' ) ) {
|
|
547 |
<td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
|
548 |
<div class="update-message" style="color: #8C0000;">';
|
549 |
if ( isset( $bstwbsftwppdtplgns_options['trial'][ $plugin_key ] ) && $link_slug != false ) {
|
550 |
-
echo __( 'Notice: Your
|
551 |
} else {
|
552 |
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>';
|
553 |
}
|
@@ -559,12 +509,12 @@ if ( ! function_exists ( 'bws_plugin_update_row' ) ) {
|
|
559 |
<td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
|
560 |
<div class="update-message" style="color: #8C0000;">';
|
561 |
if ( $free_plugin_name != false ) {
|
562 |
-
echo sprintf( __( 'Notice: You are using the
|
563 |
} else {
|
564 |
-
_e( 'Notice: You are using the
|
565 |
}
|
566 |
if ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) )
|
567 |
-
echo ' ' . __( "The
|
568 |
echo '</div>
|
569 |
</td>
|
570 |
</tr>';
|
@@ -609,10 +559,73 @@ if ( ! function_exists ( 'bws_plugin_banner_timeout' ) ) {
|
|
609 |
}
|
610 |
}
|
611 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
612 |
if ( ! function_exists ( 'bws_plugin_init' ) ) {
|
613 |
function bws_plugin_init() {
|
614 |
/* Internationalization, first(!) */
|
615 |
load_plugin_textdomain( 'bestwebsoft', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
|
|
|
|
616 |
}
|
617 |
}
|
618 |
|
@@ -637,6 +650,7 @@ if ( ! function_exists ( 'bws_admin_add_scripts' ) ) {
|
|
637 |
|
638 |
if ( ! function_exists ( 'bws_admin_head' ) ) {
|
639 |
function bws_admin_head() {
|
|
|
640 |
if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_plugins" ) { ?>
|
641 |
<noscript>
|
642 |
<style type="text/css">
|
@@ -645,8 +659,25 @@ if ( ! function_exists ( 'bws_admin_head' ) ) {
|
|
645 |
}
|
646 |
</style>
|
647 |
</noscript>
|
648 |
-
<?php }
|
649 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
650 |
}
|
651 |
|
652 |
/**
|
@@ -793,6 +824,90 @@ if ( ! function_exists ( 'bws_form_restore_default_confirm' ) ) {
|
|
793 |
<?php }
|
794 |
}
|
795 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
796 |
add_action( 'admin_init', 'bws_plugin_init' );
|
797 |
add_action( 'admin_enqueue_scripts', 'bws_admin_add_scripts' );
|
798 |
-
add_action( 'admin_head', 'bws_admin_head' );
|
|
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
|
15 |
* @return void
|
88 |
<img title="" src="<?php echo esc_attr( $banner_url_or_slug ); ?>" alt="" />
|
89 |
</div>
|
90 |
<div class="text"><?php
|
91 |
+
_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 />
|
92 |
<span><?php _e( 'Extend standard plugin functionality with new great options.', 'bestwebsoft' ); ?></span>
|
93 |
</div>
|
94 |
<div class="button_div">
|
174 |
} elseif ( "time_out" == $value->package ) {
|
175 |
$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>';
|
176 |
} elseif ( "duplicate_domen_for_trial" == $value->package ) {
|
177 |
+
$result['error'] = __( "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once.", 'bestwebsoft' );
|
178 |
}
|
179 |
}
|
180 |
if ( empty( $result['error'] ) ) {
|
183 |
$url = 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/downloads/?bws_first_download=' . $bws_license_plugin . '&bws_license_key=' . $bws_license_key . '&download_from=5';
|
184 |
$uploadDir = wp_upload_dir();
|
185 |
$zip_name = explode( '/', $bws_license_plugin );
|
186 |
+
|
187 |
+
if ( !function_exists( 'curl_init' ) ) {
|
188 |
+
$received_content = file_get_contents( $url );
|
189 |
+
} else {
|
190 |
+
$ch = curl_init();
|
191 |
+
curl_setopt( $ch, CURLOPT_URL, $url );
|
192 |
+
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );
|
193 |
+
$received_content = curl_exec( $ch );
|
194 |
+
curl_close( $ch );
|
195 |
+
}
|
196 |
+
|
197 |
if ( ! $received_content ) {
|
198 |
$result['error'] = __( "Failed to download the zip archive. Please, upload the plugin manually", 'bestwebsoft' );
|
199 |
} else {
|
285 |
window.location.href = 'admin.php?page=<?php echo $pro_page; ?>';
|
286 |
}, 5000 );
|
287 |
</script>
|
288 |
+
<p><?php _e( "Congratulations! The Pro version of the plugin is successfully download and activated.", 'bestwebsoft' ); ?></p>
|
289 |
<p>
|
290 |
<?php _e( "Please, go to", 'bestwebsoft' ); ?> <a href="admin.php?page=<?php echo $pro_page; ?>"><?php _e( 'the setting page', 'bestwebsoft' ); ?></a>
|
291 |
(<?php _e( "You will be redirected automatically in 5 seconds.", 'bestwebsoft' ); ?>)
|
294 |
<form method="post" action="admin.php?page=<?php echo $page; ?>&action=go_pro">
|
295 |
<p>
|
296 |
<?php _e( 'You can download and activate', 'bestwebsoft' ); ?>
|
297 |
+
<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>
|
298 |
<?php _e( 'version of this plugin by entering Your license key.', 'bestwebsoft' ); ?><br />
|
299 |
<span class="bws_info">
|
300 |
<?php _e( 'You can find your license key on your personal page Client area, by clicking on the link', 'bestwebsoft' ); ?>
|
335 |
if ( $trial_license_is_set ) { ?>
|
336 |
<form method="post" action="admin.php?page=<?php echo $page; ?>&action=go_pro">
|
337 |
<p>
|
338 |
+
<?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>' ) . ' ';
|
339 |
_e( 'After that you can activate it by entering your license key.', 'bestwebsoft' ); ?><br />
|
340 |
<span class="bws_info">
|
341 |
<?php _e( 'You can find your license key on your personal page Client area, by clicking on the link', 'bestwebsoft' ); ?>
|
367 |
window.location.href = 'admin.php?page=<?php echo $page; ?>';
|
368 |
}, 5000 );
|
369 |
</script>
|
370 |
+
<p><?php _e( "Congratulations! The Pro license of the plugin is successfully activated.", 'bestwebsoft' ); ?></p>
|
371 |
<p>
|
372 |
<?php _e( "Please, go to", 'bestwebsoft' ); ?> <a href="admin.php?page=<?php echo $page; ?>"><?php _e( 'the setting page', 'bestwebsoft' ); ?></a>
|
373 |
(<?php _e( "You will be redirected automatically in 5 seconds.", 'bestwebsoft' ); ?>)
|
416 |
} elseif ( "you_are_banned" == $value->package ) {
|
417 |
$result['error'] = __( "Unfortunately, you have exceeded the number of available tries.", 'bestwebsoft' );
|
418 |
} elseif ( "duplicate_domen_for_trial" == $value->package ) {
|
419 |
+
$result['error'] = __( "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once.", 'bestwebsoft' );
|
420 |
}
|
421 |
if ( empty( $result['message'] ) && empty( $result['error'] ) ) {
|
422 |
if ( isset( $value->trial ) )
|
423 |
+
$result['message'] = __( 'The Pro Trial license key is valid.', 'bestwebsoft' );
|
424 |
else
|
425 |
$result['message'] = __( 'The license key is valid.', 'bestwebsoft' );
|
426 |
|
428 |
$result['message'] .= ' ' . __( 'Your license will expire on', 'bestwebsoft' ) . ' ' . $value->time_out . '.';
|
429 |
|
430 |
if ( isset( $value->trial ) && $trial_plugin != false )
|
431 |
+
$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>' );
|
432 |
|
433 |
if ( isset( $value->trial ) ) {
|
434 |
$bstwbsftwppdtplgns_options['trial'][ $plugin_basename ] = 1;
|
497 |
<td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
|
498 |
<div class="update-message" style="color: #8C0000;">';
|
499 |
if ( isset( $bstwbsftwppdtplgns_options['trial'][ $plugin_key ] ) && $link_slug != false ) {
|
500 |
+
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>';
|
501 |
} else {
|
502 |
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>';
|
503 |
}
|
509 |
<td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
|
510 |
<div class="update-message" style="color: #8C0000;">';
|
511 |
if ( $free_plugin_name != false ) {
|
512 |
+
echo sprintf( __( 'Notice: You are using the Pro Trial license of %s plugin.', 'bestwebsoft' ), $free_plugin_name );
|
513 |
} else {
|
514 |
+
_e( 'Notice: You are using the Pro Trial license of plugin.', 'bestwebsoft' );
|
515 |
}
|
516 |
if ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) )
|
517 |
+
echo ' ' . __( "The Pro Trial license will expire on", 'bestwebsoft' ) . ' ' . $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] . '.';
|
518 |
echo '</div>
|
519 |
</td>
|
520 |
</tr>';
|
559 |
}
|
560 |
}
|
561 |
|
562 |
+
if ( ! function_exists( 'bws_plugin_banner_to_settings' ) ) {
|
563 |
+
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 ) {
|
564 |
+
global $wp_version;
|
565 |
+
|
566 |
+
$plugin_options = get_option( $plugin_options_name );
|
567 |
+
|
568 |
+
if ( isset( $plugin_options['display_settings_notice'] ) && 0 == $plugin_options['display_settings_notice'] )
|
569 |
+
return;
|
570 |
+
|
571 |
+
if ( isset( $_POST['bws_hide_settings_notice_' . $plugin_options_name ] ) && check_admin_referer( $plugin_info['Name'], 'bws_settings_nonce_name' ) ) {
|
572 |
+
$plugin_options['display_settings_notice'] = 0;
|
573 |
+
update_option( $plugin_options_name, $plugin_options );
|
574 |
+
return;
|
575 |
+
}
|
576 |
+
|
577 |
+
if ( false == strrpos( $banner_url_or_slug, '/' ) ) {
|
578 |
+
$banner_url_or_slug = '//ps.w.org/' . $banner_url_or_slug . '/assets/icon-128x128.png';
|
579 |
+
}
|
580 |
+
|
581 |
+
if ( 4.2 > $wp_version ) {
|
582 |
+
$plugin_dir_array = explode( '/', plugin_basename( __FILE__ ) );
|
583 |
+
$plugin_dir = $plugin_dir_array[0]; ?>
|
584 |
+
<style type="text/css">
|
585 |
+
.bws_hide_settings_notice {
|
586 |
+
width: 11px;
|
587 |
+
height: 11px;
|
588 |
+
border: none;
|
589 |
+
background: url("<?php echo plugins_url( $plugin_dir . '/bws_menu/images/close_banner.png' ); ?>") no-repeat center center;
|
590 |
+
box-shadow: none;
|
591 |
+
float: right;
|
592 |
+
margin: 8px;
|
593 |
+
}
|
594 |
+
.bws_hide_settings_notice:hover {
|
595 |
+
cursor: pointer;
|
596 |
+
}
|
597 |
+
</style>
|
598 |
+
<?php } ?>
|
599 |
+
<div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
|
600 |
+
<div class="bws_banner_on_plugin_page">
|
601 |
+
<div class="icon">
|
602 |
+
<img title="" src="<?php echo esc_attr( $banner_url_or_slug ); ?>" alt="" />
|
603 |
+
</div>
|
604 |
+
<div class="text">
|
605 |
+
<strong><?php _e( 'Thank you for installing', 'bestwebsoft' ); ?> <?php echo $plugin_info['Name']; ?> plugin!</strong><br />
|
606 |
+
<?php _e( "Let's get started", 'bestwebsoft' ); ?>:
|
607 |
+
<a target="_blank" href="<?php echo $settings_url; ?>"><?php _e( 'Configure Settings', 'bestwebsoft' ); ?></a>
|
608 |
+
<?php if ( false != $post_type_url && false != $post_type_name ) { ?>
|
609 |
+
<?php _e( 'or', 'bestwebsoft' ); ?>
|
610 |
+
<a target="_blank" href="<?php echo $post_type_url; ?>"><?php _e( 'Add New', 'bestwebsoft' ); ?> <?php echo $post_type_name; ?></a>
|
611 |
+
<?php } ?>
|
612 |
+
</div>
|
613 |
+
<form action="" method="post">
|
614 |
+
<button class="notice-dismiss bws_hide_settings_notice" title="<?php _e( 'Close notice', 'bestwebsoft' ); ?>"></button>
|
615 |
+
<input type="hidden" name="bws_hide_settings_notice_<?php echo $plugin_options_name; ?>" value="hide" />
|
616 |
+
<?php wp_nonce_field( $plugin_info['Name'], 'bws_settings_nonce_name' ); ?>
|
617 |
+
</form>
|
618 |
+
</div>
|
619 |
+
</div>
|
620 |
+
<?php }
|
621 |
+
}
|
622 |
+
|
623 |
if ( ! function_exists ( 'bws_plugin_init' ) ) {
|
624 |
function bws_plugin_init() {
|
625 |
/* Internationalization, first(!) */
|
626 |
load_plugin_textdomain( 'bestwebsoft', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
627 |
+
|
628 |
+
bws_add_editor_buttons();
|
629 |
}
|
630 |
}
|
631 |
|
650 |
|
651 |
if ( ! function_exists ( 'bws_admin_head' ) ) {
|
652 |
function bws_admin_head() {
|
653 |
+
global $bws_shortcode_list, $wp_version;
|
654 |
if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_plugins" ) { ?>
|
655 |
<noscript>
|
656 |
<style type="text/css">
|
659 |
}
|
660 |
</style>
|
661 |
</noscript>
|
662 |
+
<?php }
|
663 |
+
if ( ! empty( $bws_shortcode_list ) ) { ?>
|
664 |
+
<!-- TinyMCE Shortcode Plugin -->
|
665 |
+
<script type='text/javascript'>
|
666 |
+
var bws_shortcode_button = {
|
667 |
+
'title': '<?php _e( "Add BWS shortcode", "bestwebsoft" ); ?>',
|
668 |
+
'function_name': [
|
669 |
+
<?php foreach ( $bws_shortcode_list as $key => $value ) {
|
670 |
+
if ( isset( $value['js_function'] ) )
|
671 |
+
echo "'" . $value['js_function'] . "',";
|
672 |
+
} ?>
|
673 |
+
],
|
674 |
+
'icon_url': '<?php echo plugins_url( "images/shortcode-icon.png" , __FILE__ ); ?>',
|
675 |
+
'wp_version' : '<?php echo $wp_version; ?>'
|
676 |
+
};
|
677 |
+
</script>
|
678 |
+
<!-- TinyMCE Shortcode Plugin -->
|
679 |
+
<?php }
|
680 |
+
}
|
681 |
}
|
682 |
|
683 |
/**
|
824 |
<?php }
|
825 |
}
|
826 |
|
827 |
+
/* shortcode */
|
828 |
+
if ( ! function_exists( 'bws_add_editor_buttons' ) ) {
|
829 |
+
function bws_add_editor_buttons() {
|
830 |
+
global $bws_shortcode_list, $wp_version;
|
831 |
+
if ( $wp_version < '3.3' )
|
832 |
+
return;
|
833 |
+
if ( ! empty( $bws_shortcode_list ) && current_user_can( 'edit_posts' ) && current_user_can( 'edit_pages' ) ) {
|
834 |
+
add_filter( 'mce_external_plugins', 'bws_add_buttons' );
|
835 |
+
add_filter( 'mce_buttons', 'bws_register_buttons' );
|
836 |
+
}
|
837 |
+
}
|
838 |
+
}
|
839 |
+
if ( ! function_exists( 'bws_add_buttons' ) ){
|
840 |
+
function bws_add_buttons( $plugin_array ) {
|
841 |
+
$plugin_array['add_bws_shortcode'] = plugins_url( 'js/shortcode-button.js', __FILE__ );
|
842 |
+
return $plugin_array;
|
843 |
+
}
|
844 |
+
}
|
845 |
+
if ( ! function_exists( 'bws_register_buttons' ) ) {
|
846 |
+
function bws_register_buttons( $buttons ) {
|
847 |
+
array_push( $buttons, 'add_bws_shortcode' ); /* dropcap', 'recentposts */
|
848 |
+
return $buttons;
|
849 |
+
}
|
850 |
+
}
|
851 |
+
|
852 |
+
/* Generate inline content for the popup window when the "bws shortcode" button is clicked */
|
853 |
+
if ( ! function_exists( 'bws_shortcode_media_button_popup' ) ) {
|
854 |
+
function bws_shortcode_media_button_popup() {
|
855 |
+
global $bws_shortcode_list, $wp_version;
|
856 |
+
if ( $wp_version < '3.3' )
|
857 |
+
return;
|
858 |
+
|
859 |
+
if ( ! empty( $bws_shortcode_list ) ) { ?>
|
860 |
+
<div id="bws_shortcode_popup" style="display:none;">
|
861 |
+
<div id="bws_shortcode_popup_block">
|
862 |
+
<div id="bws_shortcode_select_plugin">
|
863 |
+
<h4><?php _e( 'Plugin', 'bestwebsoft' ); ?></h4>
|
864 |
+
<select name="bws_shortcode_select" id="bws_shortcode_select">
|
865 |
+
<?php foreach ( $bws_shortcode_list as $key => $value ) { ?>
|
866 |
+
<option value="<?php echo $key; ?>"><?php echo $value['name']; ?></option>
|
867 |
+
<?php } ?>
|
868 |
+
</select>
|
869 |
+
</div>
|
870 |
+
<div class="clear"></div>
|
871 |
+
<div id="bws_shortcode_content">
|
872 |
+
<h4><?php _e( 'Shortcode settings', 'bestwebsoft' ); ?></h4>
|
873 |
+
<?php echo apply_filters( 'bws_shortcode_button_content', '' ); ?>
|
874 |
+
</div>
|
875 |
+
<div class="clear"></div>
|
876 |
+
<div id="bws_shortcode_content_bottom">
|
877 |
+
<p><?php _e( 'The shortcode will be inserted', 'bestwebsoft' ); ?></p>
|
878 |
+
<div id="bws_shortcode_block"><div id="bws_shortcode_display"></div></div>
|
879 |
+
</div>
|
880 |
+
<?php if ( $wp_version < '3.9' ) { ?>
|
881 |
+
<p>
|
882 |
+
<button class="button-primary primary bws_shortcode_insert"><?php _e( 'Insert', 'bestwebsoft' ); ?></button>
|
883 |
+
</p>
|
884 |
+
<?php } ?>
|
885 |
+
</div>
|
886 |
+
</div>
|
887 |
+
<?php }
|
888 |
+
if ( $wp_version < '3.9' ) { ?>
|
889 |
+
<script type="text/javascript">
|
890 |
+
(function($){
|
891 |
+
$( '.bws_shortcode_insert' ).on( 'click',function() {
|
892 |
+
var shortcode = $( '#TB_ajaxContent #bws_shortcode_display' ).text();
|
893 |
+
if ( '' != shortcode ) {
|
894 |
+
/* insert shortcode to tinymce */
|
895 |
+
if ( !tinyMCE.activeEditor || tinyMCE.activeEditor.isHidden() ) {
|
896 |
+
$( 'textarea#content' ).val( shortcode );
|
897 |
+
} else {
|
898 |
+
tinyMCE.execCommand( 'mceInsertContent', false, shortcode );
|
899 |
+
}
|
900 |
+
}
|
901 |
+
/* close the thickbox after adding shortcode to editor */
|
902 |
+
self.parent.tb_remove();
|
903 |
+
});
|
904 |
+
})(jQuery);
|
905 |
+
</script>
|
906 |
+
<?php }
|
907 |
+
}
|
908 |
+
}
|
909 |
+
|
910 |
add_action( 'admin_init', 'bws_plugin_init' );
|
911 |
add_action( 'admin_enqueue_scripts', 'bws_admin_add_scripts' );
|
912 |
+
add_action( 'admin_head', 'bws_admin_head' );
|
913 |
+
add_action( 'admin_footer','bws_shortcode_media_button_popup' );
|
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 ( 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 ( 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 ( 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 ( 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' ) )
|
@@ -89,12 +89,15 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
89 |
'pro_settings' => 'admin.php?page=gallery-plugin-pro.php'
|
90 |
),
|
91 |
'adsense-plugin/adsense-plugin.php'=> array(
|
92 |
-
'name' => 'Google AdSense
|
93 |
'description' => 'Allows Google AdSense implementation to your website.',
|
94 |
'link' => 'http://bestwebsoft.com/products/google-adsense/?k=60e3979921e354feb0347e88e7d7b73d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
95 |
'download' => 'http://bestwebsoft.com/products/google-adsense/download/?k=60e3979921e354feb0347e88e7d7b73d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
96 |
'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Adsense+Plugin+bestwebsoft&plugin-search-input=Search+Plugins',
|
97 |
-
'settings' => 'admin.php?page=adsense-plugin.php'
|
|
|
|
|
|
|
98 |
),
|
99 |
'custom-search-plugin/custom-search-plugin.php'=> array(
|
100 |
'name' => 'Custom Search',
|
@@ -116,7 +119,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
116 |
'settings' => 'admin.php?page=quotes-and-tips.php'
|
117 |
),
|
118 |
'google-sitemap-plugin/google-sitemap-plugin.php'=> array(
|
119 |
-
'name' => 'Google Sitemap
|
120 |
'description' => 'Allows you to add sitemap file to Google Webmaster Tools.',
|
121 |
'link' => 'http://bestwebsoft.com/products/google-sitemap/?k=5202b2f5ce2cf85daee5e5f79a51d806&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
122 |
'download' => 'http://bestwebsoft.com/products/google-sitemap/download/?k=5202b2f5ce2cf85daee5e5f79a51d806&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
@@ -146,7 +149,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
146 |
'settings' => 'admin.php?page=custom_fields_search.php'
|
147 |
),
|
148 |
'google-one/google-plus-one.php' => array(
|
149 |
-
'name' => 'Google +1
|
150 |
'description' => 'Allows you to see how many times your page has been liked on Google Search Engine as well as who has liked the article.',
|
151 |
'link' => 'http://bestwebsoft.com/products/google-plus-one/?k=ce7a88837f0a857b3a2bb142f470853c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
152 |
'download' => 'http://bestwebsoft.com/products/google-plus-one/download/?k=ce7a88837f0a857b3a2bb142f470853c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
@@ -165,7 +168,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
165 |
'settings' => 'admin.php?page=related-posts-plugin.php'
|
166 |
),
|
167 |
'contact-form-to-db/contact_form_to_db.php' => array(
|
168 |
-
'name' => 'Contact Form
|
169 |
'description' => 'Allows you to manage the messages that have been sent from your site.',
|
170 |
'link' => 'http://bestwebsoft.com/products/contact-form-to-db/?k=ba3747d317c2692e4136ca096a8989d6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
171 |
'download' => 'http://bestwebsoft.com/products/contact-form-to-db/download/?k=ba3747d317c2692e4136ca096a8989d6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
@@ -195,7 +198,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
195 |
'settings' => 'admin.php?page=donate.php'
|
196 |
),
|
197 |
'post-to-csv/post-to-csv.php' => array(
|
198 |
-
'name' => 'Post
|
199 |
'description' => 'The plugin allows to export posts of any types to a csv file.',
|
200 |
'link' => 'http://bestwebsoft.com/products/post-to-csv/?k=653aa55518ae17409293a7a894268b8f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
201 |
'download' => 'http://bestwebsoft.com/products/post-to-csv/download/?k=653aa55518ae17409293a7a894268b8f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
@@ -203,7 +206,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
203 |
'settings' => 'admin.php?page=post-to-csv.php'
|
204 |
),
|
205 |
'google-shortlink/google-shortlink.php' => array(
|
206 |
-
'name' => 'Google Shortlink
|
207 |
'description' => 'Allows you to get short links from goo.gl servise without leaving your site.',
|
208 |
'link' => 'http://bestwebsoft.com/products/google-shortlink/?k=afcf3eaed021bbbbeea1090e16bc22db&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
209 |
'download' => 'http://bestwebsoft.com/products/google-shortlink/download/?k=afcf3eaed021bbbbeea1090e16bc22db&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
@@ -222,12 +225,15 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
222 |
'pro_settings' => 'admin.php?page=htaccess-pro.php'
|
223 |
),
|
224 |
'google-captcha/google-captcha.php' => array(
|
225 |
-
'name' => 'Google Captcha (reCAPTCHA)
|
226 |
'description' => 'Plugin intended to prove that the visitor is a human being and not a spam robot.',
|
227 |
'link' => 'http://bestwebsoft.com/products/google-captcha/?k=7b59fbe542acf950b29f3e020d5ad735&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
228 |
'download' => 'http://bestwebsoft.com/products/google-captcha/download/?k=7b59fbe542acf950b29f3e020d5ad735&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
229 |
'wp_install' => $admin_url . 'plugin-install.php?tab=search&s=Google+Captcha+Bestwebsoft&plugin-search-input=Search+Plugins',
|
230 |
-
'settings' => 'admin.php?page=google-captcha.php'
|
|
|
|
|
|
|
231 |
),
|
232 |
'sender/sender.php' => array(
|
233 |
'name' => 'Sender',
|
@@ -263,7 +269,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
263 |
'pro_settings' => ''
|
264 |
),
|
265 |
'bws-google-maps/bws-google-maps.php' => array(
|
266 |
-
'name' => 'Google Maps
|
267 |
'description' => 'Easy to set up and insert Google Maps to your website.',
|
268 |
'link' => 'http://bestwebsoft.com/products/bws-google-maps/?k=d8fac412d7359ebaa4ff53b46572f9f7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
269 |
'download' => 'http://bestwebsoft.com/products/bws-google-maps/download/?k=d8fac412d7359ebaa4ff53b46572f9f7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
@@ -274,7 +280,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
274 |
'pro_settings' => 'admin.php?page=bws-google-maps-pro.php'
|
275 |
),
|
276 |
'bws-google-analytics/bws-google-analytics.php' => array(
|
277 |
-
'name' => 'Google Analytics
|
278 |
'description' => 'Allows you to retrieve basic stats from Google Analytics account and add the tracking code to your blog.',
|
279 |
'link' => 'http://bestwebsoft.com/products/bws-google-analytics/?k=261c74cad753fb279cdf5a5db63fbd43&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
280 |
'download' => 'http://bestwebsoft.com/products/bws-google-analytics/download/?k=261c74cad753fb279cdf5a5db63fbd43&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
@@ -285,7 +291,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
285 |
'pro_settings' => 'admin.php?page=bws-google-analytics-pro.php'
|
286 |
),
|
287 |
'db-manager/db-manager.php' => array(
|
288 |
-
'name' => 'DB
|
289 |
'description' => 'Allows you to download the latest version of PhpMyadmin and Dumper and manage your site.',
|
290 |
'link' => 'http://bestwebsoft.com/products/db-manager/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
291 |
'download' => 'http://bestwebsoft.com/products/db-manager/download/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
@@ -323,7 +329,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
323 |
'pro_settings' => 'admin.php?page=limit-attempts-pro.php'
|
324 |
),
|
325 |
'job-board/job-board.php' => array(
|
326 |
-
'name' => 'Job
|
327 |
'description' => 'Allows to create a job-board page on your site.',
|
328 |
'link' => 'http://bestwebsoft.com/products/job-board/?k=b0c504c9ce6edd6692e04222af3fed6f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
329 |
'download' => 'http://bestwebsoft.com/products/job-board/download/?k=b0c504c9ce6edd6692e04222af3fed6f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
@@ -336,10 +342,13 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
336 |
'link' => 'http://bestwebsoft.com/products/multilanguage/?k=7d68c7bfec2486dc350c67fff57ad433&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
337 |
'download' => 'http://bestwebsoft.com/products/multilanguage/download/?k=7d68c7bfec2486dc350c67fff57ad433&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
338 |
'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Multilanguage+BestWebSoft&plugin-search-input=Search+Plugins',
|
339 |
-
'settings' => 'admin.php?page=mltlngg_settings'
|
|
|
|
|
|
|
340 |
),
|
341 |
'bws-popular-posts/bws-popular-posts.php' => array(
|
342 |
-
'name' => 'Popular Posts
|
343 |
'description' => 'This plugin will help you can display the most popular posts on your blog in the widget.',
|
344 |
'link' => 'http://bestwebsoft.com/products/popular-posts/?k=4d529f116d2b7f7df3a78018c383f975&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
345 |
'download' => 'http://bestwebsoft.com/products/popular-posts/download/?k=4d529f116d2b7f7df3a78018c383f975&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
@@ -347,7 +356,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
347 |
'settings' => 'admin.php?page=popular-posts.php'
|
348 |
),
|
349 |
'bws-testimonials/bws-testimonials.php' => array(
|
350 |
-
'name' => 'Testimonials
|
351 |
'description' => 'Allows creating and displaying a Testimonial on your website.',
|
352 |
'link' => 'http://bestwebsoft.com/products/testimonials/?k=3fe4bb89dc901c98e43a113e08f8db73&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
353 |
'download' => 'http://bestwebsoft.com/products/testimonials/download/?k=3fe4bb89dc901c98e43a113e08f8db73&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
@@ -355,7 +364,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
355 |
'settings' => 'admin.php?page=testimonials.php'
|
356 |
),
|
357 |
'bws-featured-posts/bws-featured-posts.php' => array(
|
358 |
-
'name' => 'Featured Posts
|
359 |
'description' => 'Displays featured posts randomly on any website page.',
|
360 |
'link' => 'http://bestwebsoft.com/products/featured-posts/?k=f0afb31185ba7c7d6d598528d69f6d97&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
361 |
'download' => 'http://bestwebsoft.com/products/featured-posts/download/?k=f0afb31185ba7c7d6d598528d69f6d97&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
@@ -379,7 +388,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
379 |
'settings' => 'admin.php?page=re-attacher.php'
|
380 |
),
|
381 |
'bws-smtp/bws-smtp.php' => array(
|
382 |
-
'name' => 'SMTP
|
383 |
'description' => 'This plugin introduces an easy way to configure sending email messages via SMTP.',
|
384 |
'link' => 'http://bestwebsoft.com/products/bws-smtp/?k=0546419f962704429ad2d9b88567752f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
385 |
'download' => 'http://bestwebsoft.com/products/bws-smtp/download/?k=0546419f962704429ad2d9b88567752f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
@@ -433,7 +442,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
433 |
'settings' => 'admin.php?page=pagination.php'
|
434 |
),
|
435 |
'visitors-online/visitors-online.php' => array(
|
436 |
-
'name' => 'Visitors
|
437 |
'description' => 'See how many users, guests and bots are online at the website.',
|
438 |
'link' => 'http://bestwebsoft.com/products/visitors-online/?k=93c28013a4f830671b3bba9502ed5177&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
439 |
'download' => 'http://bestwebsoft.com/products/visitors-online/download/?k=93c28013a4f830671b3bba9502ed5177&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
@@ -442,7 +451,23 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
442 |
'pro_version' => 'visitors-online-pro/visitors-online-pro.php',
|
443 |
'purchase' => 'http://bestwebsoft.com/products/visitors-online/buy/?k=f9a746075ff8a0a6cb192cb46526afd2&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
444 |
'pro_settings' => 'admin.php?page=visitors-online-pro.php'
|
445 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
446 |
);
|
447 |
|
448 |
$all_plugins = get_plugins();
|
@@ -970,6 +995,9 @@ if ( ! function_exists( 'bws_get_banner_array' ) ) {
|
|
970 |
function bws_get_banner_array() {
|
971 |
global $bstwbsftwppdtplgns_banner_array;
|
972 |
$bstwbsftwppdtplgns_banner_array = array(
|
|
|
|
|
|
|
973 |
array( 'vstrsnln_hide_banner_on_plugin_page', 'visitors-online/visitors-online.php', '0.2' ),
|
974 |
array( 'cstmsrch_hide_banner_on_plugin_page', 'custom-search-plugin/custom-search-plugin.php', '1.28' ),
|
975 |
array( 'prtfl_hide_banner_on_plugin_page', 'portfolio/portfolio.php', '2.33' ),
|
1 |
<?php
|
2 |
/*
|
3 |
* Function for displaying BestWebSoft menu
|
4 |
+
* Version: 1.7.3
|
5 |
*/
|
6 |
|
7 |
if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
|
89 |
'pro_settings' => 'admin.php?page=gallery-plugin-pro.php'
|
90 |
),
|
91 |
'adsense-plugin/adsense-plugin.php'=> array(
|
92 |
+
'name' => 'Google AdSense',
|
93 |
'description' => 'Allows Google AdSense implementation to your website.',
|
94 |
'link' => 'http://bestwebsoft.com/products/google-adsense/?k=60e3979921e354feb0347e88e7d7b73d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
95 |
'download' => 'http://bestwebsoft.com/products/google-adsense/download/?k=60e3979921e354feb0347e88e7d7b73d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
96 |
'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Adsense+Plugin+bestwebsoft&plugin-search-input=Search+Plugins',
|
97 |
+
'settings' => 'admin.php?page=adsense-plugin.php',
|
98 |
+
'pro_version' => 'adsense-pro/adsense-pro.php',
|
99 |
+
'purchase' => 'http://bestwebsoft.com/products/google-adsense/buy/?k=c23889b293d62aa1ad2c96513405f0e1&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
100 |
+
'pro_settings' => 'admin.php?page=adsense-pro.php'
|
101 |
),
|
102 |
'custom-search-plugin/custom-search-plugin.php'=> array(
|
103 |
'name' => 'Custom Search',
|
119 |
'settings' => 'admin.php?page=quotes-and-tips.php'
|
120 |
),
|
121 |
'google-sitemap-plugin/google-sitemap-plugin.php'=> array(
|
122 |
+
'name' => 'Google Sitemap',
|
123 |
'description' => 'Allows you to add sitemap file to Google Webmaster Tools.',
|
124 |
'link' => 'http://bestwebsoft.com/products/google-sitemap/?k=5202b2f5ce2cf85daee5e5f79a51d806&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
125 |
'download' => 'http://bestwebsoft.com/products/google-sitemap/download/?k=5202b2f5ce2cf85daee5e5f79a51d806&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
149 |
'settings' => 'admin.php?page=custom_fields_search.php'
|
150 |
),
|
151 |
'google-one/google-plus-one.php' => array(
|
152 |
+
'name' => 'Google +1',
|
153 |
'description' => 'Allows you to see how many times your page has been liked on Google Search Engine as well as who has liked the article.',
|
154 |
'link' => 'http://bestwebsoft.com/products/google-plus-one/?k=ce7a88837f0a857b3a2bb142f470853c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
155 |
'download' => 'http://bestwebsoft.com/products/google-plus-one/download/?k=ce7a88837f0a857b3a2bb142f470853c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
168 |
'settings' => 'admin.php?page=related-posts-plugin.php'
|
169 |
),
|
170 |
'contact-form-to-db/contact_form_to_db.php' => array(
|
171 |
+
'name' => 'Contact Form to DB',
|
172 |
'description' => 'Allows you to manage the messages that have been sent from your site.',
|
173 |
'link' => 'http://bestwebsoft.com/products/contact-form-to-db/?k=ba3747d317c2692e4136ca096a8989d6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
174 |
'download' => 'http://bestwebsoft.com/products/contact-form-to-db/download/?k=ba3747d317c2692e4136ca096a8989d6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
198 |
'settings' => 'admin.php?page=donate.php'
|
199 |
),
|
200 |
'post-to-csv/post-to-csv.php' => array(
|
201 |
+
'name' => 'Post to CSV',
|
202 |
'description' => 'The plugin allows to export posts of any types to a csv file.',
|
203 |
'link' => 'http://bestwebsoft.com/products/post-to-csv/?k=653aa55518ae17409293a7a894268b8f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
204 |
'download' => 'http://bestwebsoft.com/products/post-to-csv/download/?k=653aa55518ae17409293a7a894268b8f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
206 |
'settings' => 'admin.php?page=post-to-csv.php'
|
207 |
),
|
208 |
'google-shortlink/google-shortlink.php' => array(
|
209 |
+
'name' => 'Google Shortlink',
|
210 |
'description' => 'Allows you to get short links from goo.gl servise without leaving your site.',
|
211 |
'link' => 'http://bestwebsoft.com/products/google-shortlink/?k=afcf3eaed021bbbbeea1090e16bc22db&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
212 |
'download' => 'http://bestwebsoft.com/products/google-shortlink/download/?k=afcf3eaed021bbbbeea1090e16bc22db&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
225 |
'pro_settings' => 'admin.php?page=htaccess-pro.php'
|
226 |
),
|
227 |
'google-captcha/google-captcha.php' => array(
|
228 |
+
'name' => 'Google Captcha (reCAPTCHA)',
|
229 |
'description' => 'Plugin intended to prove that the visitor is a human being and not a spam robot.',
|
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',
|
269 |
'pro_settings' => ''
|
270 |
),
|
271 |
'bws-google-maps/bws-google-maps.php' => array(
|
272 |
+
'name' => 'Google Maps',
|
273 |
'description' => 'Easy to set up and insert Google Maps to your website.',
|
274 |
'link' => 'http://bestwebsoft.com/products/bws-google-maps/?k=d8fac412d7359ebaa4ff53b46572f9f7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
275 |
'download' => 'http://bestwebsoft.com/products/bws-google-maps/download/?k=d8fac412d7359ebaa4ff53b46572f9f7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
280 |
'pro_settings' => 'admin.php?page=bws-google-maps-pro.php'
|
281 |
),
|
282 |
'bws-google-analytics/bws-google-analytics.php' => array(
|
283 |
+
'name' => 'Google Analytics',
|
284 |
'description' => 'Allows you to retrieve basic stats from Google Analytics account and add the tracking code to your blog.',
|
285 |
'link' => 'http://bestwebsoft.com/products/bws-google-analytics/?k=261c74cad753fb279cdf5a5db63fbd43&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
286 |
'download' => 'http://bestwebsoft.com/products/bws-google-analytics/download/?k=261c74cad753fb279cdf5a5db63fbd43&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
291 |
'pro_settings' => 'admin.php?page=bws-google-analytics-pro.php'
|
292 |
),
|
293 |
'db-manager/db-manager.php' => array(
|
294 |
+
'name' => 'DB Manager',
|
295 |
'description' => 'Allows you to download the latest version of PhpMyadmin and Dumper and manage your site.',
|
296 |
'link' => 'http://bestwebsoft.com/products/db-manager/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
297 |
'download' => 'http://bestwebsoft.com/products/db-manager/download/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
329 |
'pro_settings' => 'admin.php?page=limit-attempts-pro.php'
|
330 |
),
|
331 |
'job-board/job-board.php' => array(
|
332 |
+
'name' => 'Job Board',
|
333 |
'description' => 'Allows to create a job-board page on your site.',
|
334 |
'link' => 'http://bestwebsoft.com/products/job-board/?k=b0c504c9ce6edd6692e04222af3fed6f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
335 |
'download' => 'http://bestwebsoft.com/products/job-board/download/?k=b0c504c9ce6edd6692e04222af3fed6f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
342 |
'link' => 'http://bestwebsoft.com/products/multilanguage/?k=7d68c7bfec2486dc350c67fff57ad433&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
343 |
'download' => 'http://bestwebsoft.com/products/multilanguage/download/?k=7d68c7bfec2486dc350c67fff57ad433&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
344 |
'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Multilanguage+BestWebSoft&plugin-search-input=Search+Plugins',
|
345 |
+
'settings' => 'admin.php?page=mltlngg_settings',
|
346 |
+
'pro_version' => 'multilanguage-pro/multilanguage-pro.php',
|
347 |
+
'purchase' => 'http://bestwebsoft.com/products/multilanguage/buy/?k=2d1121cd9a5ced583fc29eefd51bdf57&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
348 |
+
'pro_settings' => 'admin.php?page=mltlnggpr_settings'
|
349 |
),
|
350 |
'bws-popular-posts/bws-popular-posts.php' => array(
|
351 |
+
'name' => 'Popular Posts',
|
352 |
'description' => 'This plugin will help you can display the most popular posts on your blog in the widget.',
|
353 |
'link' => 'http://bestwebsoft.com/products/popular-posts/?k=4d529f116d2b7f7df3a78018c383f975&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
354 |
'download' => 'http://bestwebsoft.com/products/popular-posts/download/?k=4d529f116d2b7f7df3a78018c383f975&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
356 |
'settings' => 'admin.php?page=popular-posts.php'
|
357 |
),
|
358 |
'bws-testimonials/bws-testimonials.php' => array(
|
359 |
+
'name' => 'Testimonials',
|
360 |
'description' => 'Allows creating and displaying a Testimonial on your website.',
|
361 |
'link' => 'http://bestwebsoft.com/products/testimonials/?k=3fe4bb89dc901c98e43a113e08f8db73&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
362 |
'download' => 'http://bestwebsoft.com/products/testimonials/download/?k=3fe4bb89dc901c98e43a113e08f8db73&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
364 |
'settings' => 'admin.php?page=testimonials.php'
|
365 |
),
|
366 |
'bws-featured-posts/bws-featured-posts.php' => array(
|
367 |
+
'name' => 'Featured Posts',
|
368 |
'description' => 'Displays featured posts randomly on any website page.',
|
369 |
'link' => 'http://bestwebsoft.com/products/featured-posts/?k=f0afb31185ba7c7d6d598528d69f6d97&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
370 |
'download' => 'http://bestwebsoft.com/products/featured-posts/download/?k=f0afb31185ba7c7d6d598528d69f6d97&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
388 |
'settings' => 'admin.php?page=re-attacher.php'
|
389 |
),
|
390 |
'bws-smtp/bws-smtp.php' => array(
|
391 |
+
'name' => 'SMTP',
|
392 |
'description' => 'This plugin introduces an easy way to configure sending email messages via SMTP.',
|
393 |
'link' => 'http://bestwebsoft.com/products/bws-smtp/?k=0546419f962704429ad2d9b88567752f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
394 |
'download' => 'http://bestwebsoft.com/products/bws-smtp/download/?k=0546419f962704429ad2d9b88567752f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
442 |
'settings' => 'admin.php?page=pagination.php'
|
443 |
),
|
444 |
'visitors-online/visitors-online.php' => array(
|
445 |
+
'name' => 'Visitors Online',
|
446 |
'description' => 'See how many users, guests and bots are online at the website.',
|
447 |
'link' => 'http://bestwebsoft.com/products/visitors-online/?k=93c28013a4f830671b3bba9502ed5177&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
448 |
'download' => 'http://bestwebsoft.com/products/visitors-online/download/?k=93c28013a4f830671b3bba9502ed5177&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
451 |
'pro_version' => 'visitors-online-pro/visitors-online-pro.php',
|
452 |
'purchase' => 'http://bestwebsoft.com/products/visitors-online/buy/?k=f9a746075ff8a0a6cb192cb46526afd2&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
453 |
'pro_settings' => 'admin.php?page=visitors-online-pro.php'
|
454 |
+
),
|
455 |
+
'profile-extra-fields/profile-extra-fields.php' => array(
|
456 |
+
'name' => 'Profile Extra Fields',
|
457 |
+
'description' => "Add additional fields on the user's profile page",
|
458 |
+
'link' => 'http://bestwebsoft.com/products/profile-extra-fields/?k=fe3b6c3dbc80bd4b1cf9a27a2f339820&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
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 |
|
473 |
$all_plugins = get_plugins();
|
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' ),
|
1002 |
array( 'cstmsrch_hide_banner_on_plugin_page', 'custom-search-plugin/custom-search-plugin.php', '1.28' ),
|
1003 |
array( 'prtfl_hide_banner_on_plugin_page', 'portfolio/portfolio.php', '2.33' ),
|
bws_menu/css/general_style.css
CHANGED
@@ -69,6 +69,7 @@ td.bws_pro_version_tooltip {
|
|
69 |
margin: 5px 0;
|
70 |
border: 1px solid #AAAAAA;
|
71 |
max-width: 800px;
|
|
|
72 |
}
|
73 |
.bws_table_bg {
|
74 |
background: #f8e268 url("../images/pattern.png");
|
@@ -165,7 +166,7 @@ a.bws_plugin_pro_version {
|
|
165 |
float: none;
|
166 |
}
|
167 |
/* #### Mobile Phones Portrait or Landscape #### */
|
168 |
-
@media screen and (max-device-width:
|
169 |
.bws_pro_version_tooltip {
|
170 |
padding: 10px;
|
171 |
text-align: center;
|
@@ -252,7 +253,7 @@ div.bws_banner_on_plugin_page .icon {
|
|
252 |
cursor: pointer;
|
253 |
}
|
254 |
/* #### Mobile Phones Portrait or Landscape #### */
|
255 |
-
@media screen and (max-device-width:
|
256 |
.bws_banner_on_plugin_page .text,
|
257 |
.bws_banner_on_plugin_page .icon,
|
258 |
.bws_banner_on_plugin_page .button_div,
|
@@ -265,4 +266,100 @@ div.bws_banner_on_plugin_page .icon {
|
|
265 |
position: relative;
|
266 |
left: 8px;
|
267 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
268 |
}
|
69 |
margin: 5px 0;
|
70 |
border: 1px solid #AAAAAA;
|
71 |
max-width: 800px;
|
72 |
+
overflow: hidden;
|
73 |
}
|
74 |
.bws_table_bg {
|
75 |
background: #f8e268 url("../images/pattern.png");
|
166 |
float: none;
|
167 |
}
|
168 |
/* #### Mobile Phones Portrait or Landscape #### */
|
169 |
+
@media screen and (max-device-width: 768px) {
|
170 |
.bws_pro_version_tooltip {
|
171 |
padding: 10px;
|
172 |
text-align: center;
|
253 |
cursor: pointer;
|
254 |
}
|
255 |
/* #### Mobile Phones Portrait or Landscape #### */
|
256 |
+
@media screen and (max-device-width: 768px) {
|
257 |
.bws_banner_on_plugin_page .text,
|
258 |
.bws_banner_on_plugin_page .icon,
|
259 |
.bws_banner_on_plugin_page .button_div,
|
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_hidden_help_text {
|
292 |
+
background: #F4F4F4;
|
293 |
+
border: 1px solid #DCDCDC;
|
294 |
+
border-radius: 4px;
|
295 |
+
left: 40px;
|
296 |
+
padding: 5px 10px;
|
297 |
+
position: absolute;
|
298 |
+
width: auto;
|
299 |
+
line-height: 1.5;
|
300 |
+
display: none;
|
301 |
+
}
|
302 |
+
.bws_hidden_help_text:before {
|
303 |
+
content: url("../images/help.png");
|
304 |
+
left: -10px;
|
305 |
+
position: absolute;
|
306 |
+
top: 7px;
|
307 |
+
direction: ltr;
|
308 |
+
}
|
309 |
+
.bws_help_box:hover .bws_hidden_help_text {
|
310 |
+
display: block;
|
311 |
+
z-index: 10;
|
312 |
+
}
|
313 |
+
/* RTL styles */
|
314 |
+
.bws_help_box_right .bws_hidden_help_text,
|
315 |
+
.rtl .bws_hidden_help_text {
|
316 |
+
left: auto;
|
317 |
+
right: 40px;
|
318 |
+
}
|
319 |
+
.bws_help_box_right .bws_hidden_help_text:before,
|
320 |
+
.rtl .bws_hidden_help_text:before {
|
321 |
+
top: 0;
|
322 |
+
left: auto;
|
323 |
+
right: -10px;
|
324 |
+
-webkit-transform: rotate(180deg); /* Chrome y Safari */
|
325 |
+
-moz-transform: rotate(180deg); /* Firefox */
|
326 |
+
-o-transform: rotate(180deg); /* Opera */
|
327 |
+
transform: rotate(180deg);
|
328 |
+
}
|
329 |
+
|
330 |
+
/* bws shortcode insert */
|
331 |
+
#bws_shortcode_content,
|
332 |
+
#bws_shortcode_select_plugin {
|
333 |
+
margin-bottom: 10px;
|
334 |
+
}
|
335 |
+
#bws_shortcode_popup_block h4 {
|
336 |
+
padding: 0;
|
337 |
+
line-height: 2.5;
|
338 |
+
text-transform: uppercase;
|
339 |
+
}
|
340 |
+
#bws_shortcode_content_bottom p {
|
341 |
+
font-style: italic;
|
342 |
+
color: #666;
|
343 |
+
}
|
344 |
+
#bws_shortcode_block {
|
345 |
+
background-color: #fdfdfd;
|
346 |
+
border: 1px solid #dfdfdf;
|
347 |
+
overflow: auto;
|
348 |
+
padding: 10px;
|
349 |
+
}
|
350 |
+
#bws_shortcode_display {
|
351 |
+
margin: 0 auto;
|
352 |
+
}
|
353 |
+
#bws_shortcode_content fieldset label {
|
354 |
+
margin-top: 5px;
|
355 |
+
display: inline-block;
|
356 |
+
}
|
357 |
+
#bws_shortcode_content .title {
|
358 |
+
margin-right: 5px;
|
359 |
+
margin-left: 5px;
|
360 |
+
line-height: 2.5;
|
361 |
+
}
|
362 |
+
#bws_shortcode_content .title,
|
363 |
+
#bws_shortcode_content .checkbox-title {
|
364 |
+
white-space: normal;
|
365 |
}
|
bws_menu/css/general_style_wp_before_3.8.css
CHANGED
@@ -71,6 +71,7 @@ td.bws_pro_version_tooltip {
|
|
71 |
margin: 5px 0;
|
72 |
border: 1px solid #AAAAAA;
|
73 |
max-width: 800px;
|
|
|
74 |
}
|
75 |
.bws_table_bg {
|
76 |
background: #f8e268 url("../images/pattern.png");
|
@@ -167,7 +168,7 @@ a.bws_plugin_pro_version {
|
|
167 |
float: none;
|
168 |
}
|
169 |
/* #### Mobile Phones Portrait or Landscape #### */
|
170 |
-
@media screen and (max-device-width:
|
171 |
.bws_pro_version_tooltip {
|
172 |
padding: 10px;
|
173 |
text-align: center;
|
@@ -259,7 +260,7 @@ div.bws_banner_on_plugin_page .icon {
|
|
259 |
cursor: pointer;
|
260 |
}
|
261 |
/* #### Mobile Phones Portrait or Landscape #### */
|
262 |
-
@media screen and (max-device-width:
|
263 |
.bws_banner_on_plugin_page .text,
|
264 |
.bws_banner_on_plugin_page .icon,
|
265 |
.bws_banner_on_plugin_page .button_div,
|
@@ -271,4 +272,90 @@ div.bws_banner_on_plugin_page .icon {
|
|
271 |
position: relative;
|
272 |
left: 8px;
|
273 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
274 |
}
|
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");
|
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;
|
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,
|
272 |
position: relative;
|
273 |
left: 8px;
|
274 |
}
|
275 |
+
}
|
276 |
+
/* display shortcodes */
|
277 |
+
span.bws_code {
|
278 |
+
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.07);
|
279 |
+
font-size: 13px;
|
280 |
+
margin: 0 1px;
|
281 |
+
padding: 3px 5px 2px;
|
282 |
+
}
|
283 |
+
/*
|
284 |
+
* styles help tooltips
|
285 |
+
*/
|
286 |
+
.bws_help_box {
|
287 |
+
background-image: url("../images/tooltip_icons.png");
|
288 |
+
background-repeat: no-repeat;
|
289 |
+
cursor: pointer;
|
290 |
+
height: 28px;
|
291 |
+
position: relative;
|
292 |
+
margin: 3px 5px;
|
293 |
+
width: 28px;
|
294 |
+
display: inline-block;
|
295 |
+
vertical-align: middle;
|
296 |
+
}
|
297 |
+
.bws_hidden_help_text {
|
298 |
+
background: #F4F4F4;
|
299 |
+
border: 1px solid #DCDCDC;
|
300 |
+
border-radius: 4px;
|
301 |
+
left: 40px;
|
302 |
+
padding: 5px 10px;
|
303 |
+
position: absolute;
|
304 |
+
width: auto;
|
305 |
+
line-height: 1.5;
|
306 |
+
display: none;
|
307 |
+
}
|
308 |
+
.bws_hidden_help_text:before {
|
309 |
+
content: url("../images/help.png");
|
310 |
+
left: -10px;
|
311 |
+
position: absolute;
|
312 |
+
top: 7px;
|
313 |
+
direction: ltr;
|
314 |
+
}
|
315 |
+
.bws_help_box:hover .bws_hidden_help_text {
|
316 |
+
display: block;
|
317 |
+
z-index: 10;
|
318 |
+
}
|
319 |
+
/* RTL styles */
|
320 |
+
.rtl .bws_hidden_help_text {
|
321 |
+
left: auto;
|
322 |
+
right: 40px;
|
323 |
+
}
|
324 |
+
.rtl .bws_hidden_help_text:before {
|
325 |
+
top: 0;
|
326 |
+
left: auto;
|
327 |
+
right: -10px;
|
328 |
+
-webkit-transform: rotate(180deg); /* Chrome y Safari */
|
329 |
+
-moz-transform: rotate(180deg); /* Firefox */
|
330 |
+
-o-transform: rotate(180deg); /* Opera */
|
331 |
+
transform: rotate(180deg);
|
332 |
+
}
|
333 |
+
|
334 |
+
/* bws shortcode insert */
|
335 |
+
#bws_shortcode_popup_block h4 {
|
336 |
+
padding: 0;
|
337 |
+
line-height: 2.5;
|
338 |
+
text-transform: uppercase;
|
339 |
+
}
|
340 |
+
#bws_shortcode_content_bottom p {
|
341 |
+
font-style: italic;
|
342 |
+
color: #666;
|
343 |
+
}
|
344 |
+
#bws_shortcode_block {
|
345 |
+
background-color: #fdfdfd;
|
346 |
+
border: 1px solid #dfdfdf;
|
347 |
+
overflow: auto;
|
348 |
+
padding: 10px;
|
349 |
+
}
|
350 |
+
#bws_shortcode_display {
|
351 |
+
margin: 0 auto;
|
352 |
+
}
|
353 |
+
#bws_shortcode_content fieldset label {
|
354 |
+
margin-top: 5px;
|
355 |
+
display: inline-block;
|
356 |
+
}
|
357 |
+
#bws_shortcode_content .title {
|
358 |
+
margin-right: 5px;
|
359 |
+
margin-left: 5px;
|
360 |
+
line-height: 2.5;
|
361 |
}
|
bws_menu/icons/error-log-viewer.png
ADDED
Binary file
|
bws_menu/icons/profile-extra-fields.png
ADDED
Binary file
|
bws_menu/images/help.png
ADDED
Binary file
|
bws_menu/images/shortcode-icon.png
ADDED
Binary file
|
bws_menu/images/tooltip_icons.png
ADDED
Binary file
|
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,705 @@ 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-07 13:10+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-09-07 13:10+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 |
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 |
# @ captcha
|
34 |
+
#: bws_functions.php:34
|
35 |
#, fuzzy
|
36 |
msgid "Plugins page"
|
37 |
msgstr "BWS Plugins"
|
38 |
|
39 |
+
#: bws_functions.php:91
|
40 |
msgid "It’s time to upgrade your"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: bws_functions.php:91
|
44 |
msgid "to"
|
45 |
msgstr ""
|
46 |
|
47 |
# @ captcha
|
48 |
+
#: bws_functions.php:91
|
49 |
#, fuzzy
|
50 |
msgid "version!"
|
51 |
msgstr "PHP Version"
|
52 |
|
53 |
+
#: bws_functions.php:92
|
54 |
msgid "Extend standard plugin functionality with new great options."
|
55 |
msgstr ""
|
56 |
|
57 |
# @ captcha
|
58 |
+
#: bws_functions.php:95
|
59 |
+
#: bws_functions.php:492
|
60 |
#, fuzzy
|
61 |
msgid "Learn More"
|
62 |
msgstr "Lesen Sie mehr"
|
63 |
|
64 |
+
#: bws_functions.php:112
|
65 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
66 |
msgstr ""
|
67 |
|
68 |
# @ captcha
|
69 |
+
#: bws_functions.php:113
|
70 |
#, fuzzy
|
71 |
msgid "Rate the plugin"
|
72 |
msgstr "Aktivierte Plugins"
|
73 |
|
74 |
# @ captcha
|
75 |
+
#: bws_functions.php:116
|
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:133
|
81 |
+
#: bws_functions.php:169
|
82 |
msgid "Wrong license key"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: bws_functions.php:163
|
86 |
+
#: bws_functions.php:405
|
87 |
+
#: bws_functions.php:456
|
88 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: bws_functions.php:163
|
92 |
+
#: bws_functions.php:405
|
93 |
+
#: bws_functions.php:456
|
94 |
msgid "We are sorry for inconvenience."
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: bws_functions.php:171
|
98 |
msgid "This license key is bind to another site"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: bws_functions.php:173
|
102 |
+
#: bws_functions.php:315
|
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:175
|
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:177
|
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:198
|
115 |
+
#: bws_functions.php:220
|
116 |
+
#: bws_functions.php:242
|
117 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: bws_functions.php:210
|
121 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: bws_functions.php:216
|
125 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: bws_functions.php:223
|
129 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: bws_functions.php:246
|
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:271
|
137 |
msgid "Please, enter Your license key"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: bws_functions.php:288
|
141 |
+
msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: bws_functions.php:290
|
145 |
+
#: bws_functions.php:372
|
146 |
msgid "Please, go to"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: bws_functions.php:290
|
150 |
+
#: bws_functions.php:372
|
151 |
msgid "the setting page"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: bws_functions.php:291
|
155 |
+
#: bws_functions.php:373
|
156 |
msgid "You will be redirected automatically in 5 seconds."
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: bws_functions.php:296
|
160 |
msgid "You can download and activate"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: bws_functions.php:298
|
164 |
msgid "version of this plugin by entering Your license key."
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: bws_functions.php:300
|
168 |
+
#: bws_functions.php:341
|
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:302
|
173 |
+
#: bws_functions.php:343
|
174 |
msgid "(your username is the email you specify when purchasing the product)."
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: bws_functions.php:306
|
178 |
+
#: bws_functions.php:609
|
179 |
msgid "or"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: bws_functions.php:306
|
183 |
#, php-format
|
184 |
msgid "Start Your Free %s-Day Trial Now"
|
185 |
msgstr ""
|
186 |
|
187 |
# @ captcha
|
188 |
+
#: bws_functions.php:312
|
189 |
+
#: bws_functions.php:321
|
190 |
+
#: bws_functions.php:351
|
191 |
+
#: bws_functions.php:359
|
192 |
+
#: bws_menu.php:685
|
193 |
+
#: bws_menu.php:742
|
194 |
#, fuzzy
|
195 |
msgid "Activate"
|
196 |
msgstr "Aktivierte Plugins"
|
197 |
|
198 |
+
#: bws_functions.php:338
|
199 |
+
#: bws_functions.php:431
|
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:339
|
205 |
msgid "After that you can activate it by entering your license key."
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: bws_functions.php:353
|
209 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: bws_functions.php:370
|
213 |
+
msgid "Congratulations! The Pro license of the plugin is successfully activated."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: bws_functions.php:411
|
217 |
msgid "Wrong license key."
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: bws_functions.php:413
|
221 |
msgid "This license key is bind to another site."
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: bws_functions.php:415
|
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:417
|
229 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: bws_functions.php:419
|
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:423
|
237 |
+
msgid "The Pro Trial license key is valid."
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: bws_functions.php:425
|
241 |
msgid "The license key is valid."
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: bws_functions.php:428
|
245 |
msgid "Your license will expire on"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: bws_functions.php:461
|
249 |
msgid "Please, enter your license key"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: bws_functions.php:474
|
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:474
|
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:478
|
261 |
msgid "Check license key"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: bws_functions.php:492
|
265 |
msgid "WARNING: Illegal use notification"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: bws_functions.php:492
|
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:500
|
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:502
|
277 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
278 |
msgstr ""
|
279 |
|
280 |
# @ captcha
|
281 |
+
#: bws_functions.php:502
|
282 |
+
#: bws_functions.php:555
|
283 |
+
#: bws_menu.php:661
|
284 |
+
#: bws_menu.php:683
|
285 |
+
#: bws_menu.php:710
|
286 |
+
#: bws_menu.php:740
|
287 |
+
#: bws_menu.php:786
|
288 |
#, fuzzy
|
289 |
msgid "Learn more"
|
290 |
msgstr "Lesen Sie mehr"
|
291 |
|
292 |
+
#: bws_functions.php:512
|
293 |
#, php-format
|
294 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: bws_functions.php:514
|
298 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: bws_functions.php:517
|
302 |
+
msgid "The Pro Trial license will expire on"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: bws_functions.php:555
|
306 |
msgid "You license for"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: bws_functions.php:555
|
310 |
msgid "expires on"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: bws_functions.php:555
|
314 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
315 |
msgstr ""
|
316 |
|
317 |
+
# @ captcha
|
318 |
+
#: bws_functions.php:605
|
319 |
+
#, fuzzy
|
320 |
+
msgid "Thank you for installing"
|
321 |
+
msgstr "Vielen Dank für Ihre Kontaktaufnahme."
|
322 |
+
|
323 |
+
#: bws_functions.php:606
|
324 |
+
msgid "Let's get started"
|
325 |
+
msgstr ""
|
326 |
+
|
327 |
+
# @ captcha
|
328 |
+
#: bws_functions.php:607
|
329 |
+
#, fuzzy
|
330 |
+
msgid "Configure Settings"
|
331 |
+
msgstr "Einstellungen"
|
332 |
+
|
333 |
+
#: bws_functions.php:610
|
334 |
+
msgid "Add New"
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: bws_functions.php:614
|
338 |
+
msgid "Close notice"
|
339 |
+
msgstr ""
|
340 |
+
|
341 |
+
#: bws_functions.php:667
|
342 |
+
msgid "Add BWS shortcode"
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
#: bws_functions.php:711
|
346 |
msgid "Close"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: bws_functions.php:802
|
|
|
350 |
msgid "Restore all plugin settings to defaults"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: bws_functions.php:804
|
|
|
354 |
msgid "Restore settings"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: bws_functions.php:815
|
358 |
msgid "Are you sure you want to restore all settings by default?"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: bws_functions.php:818
|
362 |
msgid "Yes, restore all settings"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: bws_functions.php:819
|
366 |
msgid "No, go back to the settings page"
|
367 |
msgstr ""
|
368 |
|
369 |
# @ captcha
|
370 |
+
#: bws_functions.php:863
|
371 |
+
#, fuzzy
|
372 |
+
msgid "Plugin"
|
373 |
+
msgstr "BWS Plugins"
|
374 |
+
|
375 |
+
# @ captcha
|
376 |
+
#: bws_functions.php:872
|
377 |
+
#, fuzzy
|
378 |
+
msgid "Shortcode settings"
|
379 |
+
msgstr "Einstellungen"
|
380 |
+
|
381 |
+
#: bws_functions.php:877
|
382 |
+
msgid "The shortcode will be inserted"
|
383 |
+
msgstr ""
|
384 |
+
|
385 |
+
#: bws_functions.php:882
|
386 |
+
msgid "Insert"
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
+
# @ captcha
|
390 |
+
#: bws_menu.php:498
|
391 |
msgid "Not set"
|
392 |
msgstr "Nicht festgelegt"
|
393 |
|
394 |
# @ captcha
|
395 |
+
#: bws_menu.php:500
|
396 |
+
#: bws_menu.php:501
|
397 |
msgid "On"
|
398 |
msgstr "Ein"
|
399 |
|
400 |
# @ captcha
|
401 |
+
#: bws_menu.php:500
|
402 |
+
#: bws_menu.php:501
|
403 |
msgid "Off"
|
404 |
msgstr "Ausgeschaltet"
|
405 |
|
406 |
# @ captcha
|
407 |
+
#: bws_menu.php:502
|
408 |
+
#: bws_menu.php:503
|
409 |
+
#: bws_menu.php:504
|
410 |
+
#: bws_menu.php:505
|
411 |
+
#: bws_menu.php:506
|
412 |
+
#: bws_menu.php:518
|
413 |
msgid "N/A"
|
414 |
msgstr "keine Angaben"
|
415 |
|
416 |
# @ captcha
|
417 |
+
#: bws_menu.php:506
|
418 |
msgid " Mb"
|
419 |
msgstr " Mb"
|
420 |
|
421 |
# @ captcha
|
422 |
+
#: bws_menu.php:507
|
423 |
+
#: bws_menu.php:508
|
424 |
+
#: bws_menu.php:509
|
425 |
+
#: bws_menu.php:514
|
426 |
msgid "Yes"
|
427 |
msgstr "Ja"
|
428 |
|
429 |
# @ captcha
|
430 |
+
#: bws_menu.php:507
|
431 |
+
#: bws_menu.php:508
|
432 |
+
#: bws_menu.php:509
|
433 |
+
#: bws_menu.php:516
|
434 |
msgid "No"
|
435 |
msgstr "Nein"
|
436 |
|
437 |
# @ captcha
|
438 |
+
#: bws_menu.php:526
|
439 |
msgid "Operating System"
|
440 |
msgstr "Betriebs-System"
|
441 |
|
442 |
# @ captcha
|
443 |
+
#: bws_menu.php:527
|
444 |
msgid "Server"
|
445 |
msgstr "Server"
|
446 |
|
447 |
# @ captcha
|
448 |
+
#: bws_menu.php:528
|
449 |
msgid "Memory usage"
|
450 |
msgstr "Speichernutzung"
|
451 |
|
452 |
# @ captcha
|
453 |
+
#: bws_menu.php:529
|
454 |
msgid "MYSQL Version"
|
455 |
msgstr "MYSQL Version"
|
456 |
|
457 |
# @ captcha
|
458 |
+
#: bws_menu.php:530
|
459 |
msgid "SQL Mode"
|
460 |
msgstr "SQL Modus"
|
461 |
|
462 |
# @ captcha
|
463 |
+
#: bws_menu.php:531
|
464 |
msgid "PHP Version"
|
465 |
msgstr "PHP Version"
|
466 |
|
467 |
# @ captcha
|
468 |
+
#: bws_menu.php:532
|
469 |
msgid "PHP Safe Mode"
|
470 |
msgstr "PHP Gesicherter Modus"
|
471 |
|
472 |
# @ captcha
|
473 |
+
#: bws_menu.php:533
|
474 |
msgid "PHP Allow URL fopen"
|
475 |
msgstr "PHP Erlaubet URL zu öffnen (fopen)"
|
476 |
|
477 |
# @ captcha
|
478 |
+
#: bws_menu.php:534
|
479 |
msgid "PHP Memory Limit"
|
480 |
msgstr "PHP Speicher-Grenze"
|
481 |
|
482 |
# @ captcha
|
483 |
+
#: bws_menu.php:535
|
484 |
msgid "PHP Max Upload Size"
|
485 |
msgstr "PHP Maximale Upload Größe"
|
486 |
|
487 |
# @ captcha
|
488 |
+
#: bws_menu.php:536
|
489 |
msgid "PHP Max Post Size"
|
490 |
msgstr "PHP Maximale Beitrags-Größe"
|
491 |
|
492 |
# @ captcha
|
493 |
+
#: bws_menu.php:537
|
494 |
msgid "PHP Max Script Execute Time"
|
495 |
msgstr "PHP Maximale Script Ausführungszeit"
|
496 |
|
497 |
# @ captcha
|
498 |
+
#: bws_menu.php:538
|
499 |
msgid "PHP Exif support"
|
500 |
msgstr "PHP Exif Support"
|
501 |
|
502 |
# @ captcha
|
503 |
+
#: bws_menu.php:539
|
504 |
msgid "PHP IPTC support"
|
505 |
msgstr "PHP IPTC Support"
|
506 |
|
507 |
# @ captcha
|
508 |
+
#: bws_menu.php:540
|
509 |
msgid "PHP XML support"
|
510 |
msgstr "PHP XML Support"
|
511 |
|
512 |
# @ captcha
|
513 |
+
#: bws_menu.php:541
|
514 |
msgid "Site URL"
|
515 |
msgstr "Site URL"
|
516 |
|
517 |
# @ captcha
|
518 |
+
#: bws_menu.php:542
|
519 |
msgid "Home URL"
|
520 |
msgstr "Home URL"
|
521 |
|
522 |
# @ captcha
|
523 |
+
#: bws_menu.php:545
|
524 |
msgid "WordPress Version"
|
525 |
msgstr "WordPress Version"
|
526 |
|
527 |
# @ captcha
|
528 |
+
#: bws_menu.php:546
|
529 |
msgid "WordPress DB Version"
|
530 |
msgstr "WordPress DB Version"
|
531 |
|
532 |
# @ captcha
|
533 |
+
#: bws_menu.php:547
|
534 |
msgid "Multisite"
|
535 |
msgstr "Multisite"
|
536 |
|
537 |
# @ captcha
|
538 |
+
#: bws_menu.php:548
|
539 |
msgid "Active Theme"
|
540 |
msgstr "Actives Theme"
|
541 |
|
542 |
# @ captcha
|
543 |
+
#: bws_menu.php:563
|
544 |
msgid "Please enter a valid email address."
|
545 |
msgstr "Bitte geben Sie eine gültige E-Mail-Adresse ein."
|
546 |
|
547 |
# @ captcha
|
548 |
+
#: bws_menu.php:567
|
549 |
msgid "Email with system info is sent to "
|
550 |
msgstr "E-Mail-mit System Informationen wird gesendet an "
|
551 |
|
552 |
# @ captcha
|
553 |
+
#: bws_menu.php:571
|
554 |
msgid "Thank you for contacting us."
|
555 |
msgstr "Vielen Dank für Ihre Kontaktaufnahme."
|
556 |
|
557 |
# @ captcha
|
558 |
+
#: bws_menu.php:604
|
559 |
msgid "Sorry, email message could not be delivered."
|
560 |
msgstr "Sorry, E-Mail konnte nicht zugestellt werden."
|
561 |
|
562 |
+
#: bws_menu.php:612
|
563 |
msgid "Need help?"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: bws_menu.php:613
|
567 |
msgid "Client area"
|
568 |
msgstr ""
|
569 |
|
570 |
# @ captcha
|
571 |
+
#: bws_menu.php:614
|
572 |
+
#: bws_menu.php:925
|
573 |
msgid "System status"
|
574 |
msgstr "System Status"
|
575 |
|
576 |
# @ captcha
|
577 |
+
#: bws_menu.php:619
|
578 |
#, fuzzy
|
579 |
msgid "Plugins"
|
580 |
msgstr "BWS Plugins"
|
581 |
|
582 |
+
#: bws_menu.php:621
|
583 |
msgid "Themes"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: bws_menu.php:626
|
587 |
msgid "All"
|
588 |
msgstr ""
|
589 |
|
590 |
# @ default
|
591 |
+
#: bws_menu.php:627
|
592 |
#, fuzzy
|
593 |
msgid "Installed"
|
594 |
msgstr "Installiere %s"
|
595 |
|
596 |
# @ captcha
|
597 |
+
#: bws_menu.php:628
|
598 |
#, fuzzy
|
599 |
msgid "Recommended"
|
600 |
msgstr "Empfohlene Plugins"
|
601 |
|
602 |
# @ captcha
|
603 |
+
#: bws_menu.php:632
|
604 |
msgid "Installed plugins"
|
605 |
msgstr "Installierte Plugins"
|
606 |
|
607 |
# @ captcha
|
608 |
+
#: bws_menu.php:664
|
609 |
+
#: bws_menu.php:713
|
610 |
msgid "Settings"
|
611 |
msgstr "Einstellungen"
|
612 |
|
613 |
# @ captcha
|
614 |
+
#: bws_menu.php:685
|
615 |
+
#: bws_menu.php:742
|
616 |
#, fuzzy
|
617 |
msgid "Activate this plugin"
|
618 |
msgstr "Aktivierte Plugins"
|
619 |
|
620 |
+
#: bws_menu.php:700
|
621 |
+
#: bws_menu.php:730
|
622 |
+
#: bws_menu.php:776
|
623 |
msgid "Go"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: bws_menu.php:704
|
627 |
+
#: bws_menu.php:734
|
628 |
+
#: bws_menu.php:780
|
629 |
msgid "DONATE"
|
630 |
msgstr ""
|
631 |
|
632 |
# @ captcha
|
633 |
+
#: bws_menu.php:750
|
634 |
msgid "Recommended plugins"
|
635 |
msgstr "Empfohlene Plugins"
|
636 |
|
637 |
# @ default
|
638 |
+
#: bws_menu.php:788
|
639 |
#, fuzzy
|
640 |
msgid "Install now"
|
641 |
msgstr "Installiere %s"
|
642 |
|
643 |
+
#: bws_menu.php:809
|
644 |
msgid "Try again"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: bws_menu.php:827
|
648 |
#, php-format
|
649 |
msgid "Preview “%s”"
|
650 |
msgstr ""
|
651 |
|
652 |
# @ default
|
653 |
+
#: bws_menu.php:858
|
654 |
#, php-format
|
655 |
msgid "Install %s"
|
656 |
msgstr "Installiere %s"
|
657 |
|
658 |
# @ default
|
659 |
+
#: bws_menu.php:858
|
660 |
#, fuzzy
|
661 |
msgid "Install Now"
|
662 |
msgstr "Installiere %s"
|
663 |
|
664 |
+
#: bws_menu.php:861
|
665 |
#, php-format
|
666 |
msgid "Update to version %s"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: bws_menu.php:861
|
670 |
msgid "Update"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: bws_menu.php:868
|
674 |
#, php-format
|
675 |
msgid "Preview %s"
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: bws_menu.php:868
|
679 |
msgid "Preview"
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: bws_menu.php:874
|
683 |
+
#: bws_menu.php:906
|
684 |
#, php-format
|
685 |
msgid "By %s"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: bws_menu.php:880
|
689 |
msgid "Details"
|
690 |
msgstr ""
|
691 |
|
692 |
# @ default
|
693 |
+
#: bws_menu.php:912
|
694 |
#, fuzzy
|
695 |
msgid "Already Installed"
|
696 |
msgstr "Installiere %s"
|
697 |
|
698 |
# @ captcha
|
699 |
+
#: bws_menu.php:928
|
700 |
msgid "Environment"
|
701 |
msgstr "Umgebungsvariable"
|
702 |
|
703 |
# @ captcha
|
704 |
+
#: bws_menu.php:939
|
705 |
msgid "Active Plugins"
|
706 |
msgstr "Aktivierte Plugins"
|
707 |
|
708 |
# @ captcha
|
709 |
+
#: bws_menu.php:952
|
710 |
msgid "Inactive Plugins"
|
711 |
msgstr "Inactive Plugins"
|
712 |
|
713 |
# @ captcha
|
714 |
+
#: bws_menu.php:968
|
715 |
msgid "Send to support"
|
716 |
msgstr "Sende zuzm Support"
|
717 |
|
718 |
# @ captcha
|
719 |
+
#: bws_menu.php:975
|
720 |
msgid "Send to custom email »"
|
721 |
msgstr "Senden Sie eine benutzerdefinierte E-Mail zu »"
|
722 |
|
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,643 @@ 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 +714,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 +1002,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 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-07 13:11+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-09-07 13:11+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 |
msgid "requires"
|
22 |
msgstr "obligatoire"
|
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 "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:32
|
29 |
msgid "Back to the WordPress"
|
30 |
msgstr "Retour à WordPress"
|
31 |
|
32 |
+
#: bws_functions.php:34
|
33 |
msgid "Plugins page"
|
34 |
msgstr "Page des extensions"
|
35 |
|
36 |
+
#: bws_functions.php:91
|
37 |
msgid "It’s time to upgrade your"
|
38 |
msgstr "C'est le moment de mettre à jour votre "
|
39 |
|
40 |
+
#: bws_functions.php:91
|
41 |
msgid "to"
|
42 |
msgstr "à"
|
43 |
|
44 |
+
#: bws_functions.php:91
|
45 |
msgid "version!"
|
46 |
msgstr "version"
|
47 |
|
48 |
+
#: bws_functions.php:92
|
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:95
|
53 |
+
#: bws_functions.php:492
|
54 |
msgid "Learn More"
|
55 |
msgstr "En savoir plus"
|
56 |
|
57 |
+
#: bws_functions.php:112
|
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:113
|
62 |
msgid "Rate the plugin"
|
63 |
msgstr "Voter pour l'extension"
|
64 |
|
65 |
+
#: bws_functions.php:116
|
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:133
|
70 |
+
#: bws_functions.php:169
|
71 |
msgid "Wrong license key"
|
72 |
msgstr "Clé de licence incorrecte"
|
73 |
|
74 |
+
#: bws_functions.php:163
|
75 |
+
#: bws_functions.php:405
|
76 |
+
#: bws_functions.php:456
|
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:163
|
81 |
+
#: bws_functions.php:405
|
82 |
+
#: bws_functions.php:456
|
83 |
msgid "We are sorry for inconvenience."
|
84 |
msgstr "Nous sommes désolés pour le désagrément."
|
85 |
|
86 |
+
#: bws_functions.php:171
|
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:173
|
91 |
+
#: bws_functions.php:315
|
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:175
|
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:177
|
100 |
+
#, fuzzy
|
101 |
+
msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
|
102 |
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."
|
103 |
|
104 |
+
#: bws_functions.php:198
|
105 |
+
#: bws_functions.php:220
|
106 |
+
#: bws_functions.php:242
|
107 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
108 |
msgstr "Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension manuellement."
|
109 |
|
110 |
+
#: bws_functions.php:210
|
111 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
112 |
msgstr "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension manuellement."
|
113 |
|
114 |
+
#: bws_functions.php:216
|
115 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
116 |
msgstr "Votre server n'a pas le support du format des archives ZIP ou Phar. Merci de télécharger l'extension manuellement."
|
117 |
|
118 |
+
#: bws_functions.php:223
|
119 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
120 |
msgstr "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension manuellement."
|
121 |
|
122 |
+
#: bws_functions.php:246
|
123 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
124 |
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."
|
125 |
|
126 |
+
#: bws_functions.php:271
|
127 |
msgid "Please, enter Your license key"
|
128 |
msgstr "Merci de saisir votre clé de licence"
|
129 |
|
130 |
+
#: bws_functions.php:288
|
131 |
+
#, fuzzy
|
132 |
+
msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
|
133 |
msgstr "Félicitations! La version PRO de cette extension a été téléchargée et activée avec succès."
|
134 |
|
135 |
+
#: bws_functions.php:290
|
136 |
+
#: bws_functions.php:372
|
137 |
msgid "Please, go to"
|
138 |
msgstr "Merci d'allez à"
|
139 |
|
140 |
+
#: bws_functions.php:290
|
141 |
+
#: bws_functions.php:372
|
142 |
msgid "the setting page"
|
143 |
msgstr "Options supplémentaires"
|
144 |
|
145 |
+
#: bws_functions.php:291
|
146 |
+
#: bws_functions.php:373
|
147 |
msgid "You will be redirected automatically in 5 seconds."
|
148 |
msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
|
149 |
|
150 |
+
#: bws_functions.php:296
|
151 |
msgid "You can download and activate"
|
152 |
msgstr "Vous pouvez télécharger et activer la version "
|
153 |
|
154 |
+
#: bws_functions.php:298
|
155 |
msgid "version of this plugin by entering Your license key."
|
156 |
msgstr " de cette extension en donnant votre clé de licence."
|
157 |
|
158 |
+
#: bws_functions.php:300
|
159 |
+
#: bws_functions.php:341
|
160 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
161 |
msgstr "Vous pouvez trouver votre clé de licence sur votre page personnelle dans la zone cliente en cliquant sur le lien"
|
162 |
|
163 |
+
#: bws_functions.php:302
|
164 |
+
#: bws_functions.php:343
|
165 |
msgid "(your username is the email you specify when purchasing the product)."
|
166 |
msgstr "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de l'achat de l'extension)."
|
167 |
|
168 |
+
#: bws_functions.php:306
|
169 |
+
#: bws_functions.php:609
|
170 |
msgid "or"
|
171 |
msgstr "ou"
|
172 |
|
173 |
+
#: bws_functions.php:306
|
174 |
#, php-format
|
175 |
msgid "Start Your Free %s-Day Trial Now"
|
176 |
msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
|
177 |
|
178 |
+
#: bws_functions.php:312
|
179 |
+
#: bws_functions.php:321
|
180 |
+
#: bws_functions.php:351
|
181 |
+
#: bws_functions.php:359
|
182 |
+
#: bws_menu.php:685
|
183 |
+
#: bws_menu.php:742
|
184 |
msgid "Activate"
|
185 |
msgstr "Activé"
|
186 |
|
187 |
+
#: bws_functions.php:338
|
188 |
+
#: bws_functions.php:431
|
189 |
#, php-format
|
190 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
191 |
msgstr "Afin de pouvoir continuer à utiliser cette extension il est nécessaire d'acheter une licence %s."
|
192 |
|
193 |
+
#: bws_functions.php:339
|
194 |
msgid "After that you can activate it by entering your license key."
|
195 |
msgstr " Après vous pouvez activer cette extension en donnant votre clé de licence."
|
196 |
|
197 |
+
#: bws_functions.php:353
|
198 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
199 |
msgstr "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de télécharger l'extension manuellement."
|
200 |
|
201 |
+
#: bws_functions.php:370
|
202 |
+
#, fuzzy
|
203 |
+
msgid "Congratulations! The Pro license of the plugin is successfully activated."
|
204 |
msgstr "Félicitations! La version PRO de cette extension a été téléchargée et activée avec succès."
|
205 |
|
206 |
+
#: bws_functions.php:411
|
207 |
msgid "Wrong license key."
|
208 |
msgstr "Clé de licence incorrecte."
|
209 |
|
210 |
+
#: bws_functions.php:413
|
211 |
msgid "This license key is bind to another site."
|
212 |
msgstr "La clé de licence correspond à un autre site."
|
213 |
|
214 |
+
#: bws_functions.php:415
|
215 |
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."
|
216 |
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."
|
217 |
|
218 |
+
#: bws_functions.php:417
|
219 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
220 |
msgstr "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de télécharger l'extension manuellement."
|
221 |
|
222 |
+
#: bws_functions.php:419
|
223 |
+
#, fuzzy
|
224 |
+
msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
|
225 |
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."
|
226 |
|
227 |
+
#: bws_functions.php:423
|
228 |
+
#, fuzzy
|
229 |
+
msgid "The Pro Trial license key is valid."
|
230 |
msgstr "La clé de licence d'évaluation est valide."
|
231 |
|
232 |
+
#: bws_functions.php:425
|
233 |
msgid "The license key is valid."
|
234 |
msgstr "La clé de licence est valide."
|
235 |
|
236 |
+
#: bws_functions.php:428
|
237 |
msgid "Your license will expire on"
|
238 |
msgstr "Votre licence se termine le "
|
239 |
|
240 |
+
#: bws_functions.php:461
|
241 |
msgid "Please, enter your license key"
|
242 |
msgstr "Merci de saisir votre clé de licence"
|
243 |
|
244 |
+
#: bws_functions.php:474
|
245 |
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"
|
246 |
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."
|
247 |
|
248 |
+
#: bws_functions.php:474
|
249 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
250 |
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."
|
251 |
|
252 |
+
#: bws_functions.php:478
|
253 |
msgid "Check license key"
|
254 |
msgstr "Vérifier la clé de licence"
|
255 |
|
256 |
+
#: bws_functions.php:492
|
257 |
msgid "WARNING: Illegal use notification"
|
258 |
msgstr "AVERTISSEMENT : Notification d'utilisation abusive"
|
259 |
|
260 |
+
#: bws_functions.php:492
|
261 |
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."
|
262 |
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"
|
263 |
|
264 |
+
#: bws_functions.php:500
|
265 |
+
#, fuzzy
|
266 |
+
msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
|
267 |
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."
|
268 |
|
269 |
+
#: bws_functions.php:502
|
270 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
271 |
msgstr "Votre licence est terminée. Pour continuer à disposer du support rapide et des mises à jour de l'extension vous devez la renouveller."
|
272 |
|
273 |
+
#: bws_functions.php:502
|
274 |
+
#: bws_functions.php:555
|
275 |
+
#: bws_menu.php:661
|
276 |
+
#: bws_menu.php:683
|
277 |
+
#: bws_menu.php:710
|
278 |
+
#: bws_menu.php:740
|
279 |
+
#: bws_menu.php:786
|
280 |
msgid "Learn more"
|
281 |
msgstr "En savoir plus"
|
282 |
|
283 |
+
#: bws_functions.php:512
|
284 |
+
#, fuzzy, php-format
|
285 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
286 |
msgstr "Avertissement : vous utilisez la version d'évaluation de l'extension %s."
|
287 |
|
288 |
+
#: bws_functions.php:514
|
289 |
+
#, fuzzy
|
290 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
291 |
msgstr "Avertissement : vous utilisez la version d'évaluation de l'extension."
|
292 |
|
293 |
+
#: bws_functions.php:517
|
294 |
+
#, fuzzy
|
295 |
+
msgid "The Pro Trial license will expire on"
|
296 |
msgstr "Votre licence se termine le "
|
297 |
|
298 |
+
#: bws_functions.php:555
|
299 |
msgid "You license for"
|
300 |
msgstr "Votre licence pour"
|
301 |
|
302 |
+
#: bws_functions.php:555
|
303 |
msgid "expires on"
|
304 |
msgstr "se termine le"
|
305 |
|
306 |
+
#: bws_functions.php:555
|
307 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
308 |
msgstr "et vous ne diposerez plus du support rapide et des mises à jour."
|
309 |
|
310 |
+
#: bws_functions.php:605
|
311 |
+
#, fuzzy
|
312 |
+
msgid "Thank you for installing"
|
313 |
+
msgstr "Merci de nous avoir contacté."
|
314 |
+
|
315 |
+
#: bws_functions.php:606
|
316 |
+
msgid "Let's get started"
|
317 |
+
msgstr ""
|
318 |
+
|
319 |
+
#: bws_functions.php:607
|
320 |
+
#, fuzzy
|
321 |
+
msgid "Configure Settings"
|
322 |
+
msgstr "Options du formulaire de Contact"
|
323 |
+
|
324 |
+
#: bws_functions.php:610
|
325 |
+
msgid "Add New"
|
326 |
+
msgstr ""
|
327 |
+
|
328 |
+
#: bws_functions.php:614
|
329 |
+
msgid "Close notice"
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
+
#: bws_functions.php:667
|
333 |
+
#, fuzzy
|
334 |
+
msgid "Add BWS shortcode"
|
335 |
+
msgstr "Utiliser le code court"
|
336 |
+
|
337 |
+
#: bws_functions.php:711
|
338 |
msgid "Close"
|
339 |
msgstr "Fermer"
|
340 |
|
341 |
+
#: bws_functions.php:802
|
|
|
342 |
msgid "Restore all plugin settings to defaults"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: bws_functions.php:804
|
|
|
346 |
#, fuzzy
|
347 |
msgid "Restore settings"
|
348 |
msgstr "Options supplémentaires"
|
349 |
|
350 |
+
#: bws_functions.php:815
|
351 |
#, fuzzy
|
352 |
msgid "Are you sure you want to restore all settings by default?"
|
353 |
msgstr "Etes vous sûr de vouloir supprimer cette langue ?"
|
354 |
|
355 |
+
#: bws_functions.php:818
|
356 |
msgid "Yes, restore all settings"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: bws_functions.php:819
|
360 |
#, fuzzy
|
361 |
msgid "No, go back to the settings page"
|
362 |
msgstr "Options supplémentaires"
|
363 |
|
364 |
+
#: bws_functions.php:863
|
365 |
+
#, fuzzy
|
366 |
+
msgid "Plugin"
|
367 |
+
msgstr "Extensions"
|
368 |
+
|
369 |
+
#: bws_functions.php:872
|
370 |
+
#, fuzzy
|
371 |
+
msgid "Shortcode settings"
|
372 |
+
msgstr "Options supplémentaires"
|
373 |
+
|
374 |
+
#: bws_functions.php:877
|
375 |
+
msgid "The shortcode will be inserted"
|
376 |
+
msgstr ""
|
377 |
+
|
378 |
+
#: bws_functions.php:882
|
379 |
+
msgid "Insert"
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: bws_menu.php:498
|
383 |
msgid "Not set"
|
384 |
msgstr "Not set"
|
385 |
|
386 |
+
#: bws_menu.php:500
|
387 |
+
#: bws_menu.php:501
|
388 |
msgid "On"
|
389 |
msgstr "On"
|
390 |
|
391 |
+
#: bws_menu.php:500
|
392 |
+
#: bws_menu.php:501
|
393 |
msgid "Off"
|
394 |
msgstr "Off"
|
395 |
|
396 |
+
#: bws_menu.php:502
|
397 |
+
#: bws_menu.php:503
|
398 |
+
#: bws_menu.php:504
|
399 |
+
#: bws_menu.php:505
|
400 |
+
#: bws_menu.php:506
|
401 |
+
#: bws_menu.php:518
|
402 |
msgid "N/A"
|
403 |
msgstr "N/A"
|
404 |
|
405 |
+
#: bws_menu.php:506
|
406 |
msgid " Mb"
|
407 |
msgstr " Mb"
|
408 |
|
409 |
+
#: bws_menu.php:507
|
410 |
+
#: bws_menu.php:508
|
411 |
+
#: bws_menu.php:509
|
412 |
+
#: bws_menu.php:514
|
413 |
msgid "Yes"
|
414 |
msgstr "Yes"
|
415 |
|
416 |
+
#: bws_menu.php:507
|
417 |
+
#: bws_menu.php:508
|
418 |
+
#: bws_menu.php:509
|
419 |
+
#: bws_menu.php:516
|
420 |
msgid "No"
|
421 |
msgstr "No"
|
422 |
|
423 |
+
#: bws_menu.php:526
|
424 |
msgid "Operating System"
|
425 |
msgstr "Operating System"
|
426 |
|
427 |
+
#: bws_menu.php:527
|
428 |
msgid "Server"
|
429 |
msgstr "Server"
|
430 |
|
431 |
+
#: bws_menu.php:528
|
432 |
msgid "Memory usage"
|
433 |
msgstr "Memory usage"
|
434 |
|
435 |
+
#: bws_menu.php:529
|
436 |
msgid "MYSQL Version"
|
437 |
msgstr "MYSQL Version"
|
438 |
|
439 |
+
#: bws_menu.php:530
|
440 |
msgid "SQL Mode"
|
441 |
msgstr "SQL Mode"
|
442 |
|
443 |
+
#: bws_menu.php:531
|
444 |
msgid "PHP Version"
|
445 |
msgstr "PHP Version"
|
446 |
|
447 |
+
#: bws_menu.php:532
|
448 |
msgid "PHP Safe Mode"
|
449 |
msgstr "PHP Safe Mode"
|
450 |
|
451 |
+
#: bws_menu.php:533
|
452 |
msgid "PHP Allow URL fopen"
|
453 |
msgstr "PHP Allow URL fopen"
|
454 |
|
455 |
+
#: bws_menu.php:534
|
456 |
msgid "PHP Memory Limit"
|
457 |
msgstr "PHP Memory Limit"
|
458 |
|
459 |
+
#: bws_menu.php:535
|
460 |
msgid "PHP Max Upload Size"
|
461 |
msgstr "PHP Max Upload Size"
|
462 |
|
463 |
+
#: bws_menu.php:536
|
464 |
msgid "PHP Max Post Size"
|
465 |
msgstr "PHP Max Post Size"
|
466 |
|
467 |
+
#: bws_menu.php:537
|
468 |
msgid "PHP Max Script Execute Time"
|
469 |
msgstr "PHP Max Script Execute Time"
|
470 |
|
471 |
+
#: bws_menu.php:538
|
472 |
msgid "PHP Exif support"
|
473 |
msgstr "PHP Exif support"
|
474 |
|
475 |
+
#: bws_menu.php:539
|
476 |
msgid "PHP IPTC support"
|
477 |
msgstr "PHP IPTC support"
|
478 |
|
479 |
+
#: bws_menu.php:540
|
480 |
msgid "PHP XML support"
|
481 |
msgstr "PHP XML support"
|
482 |
|
483 |
+
#: bws_menu.php:541
|
484 |
msgid "Site URL"
|
485 |
msgstr "Site URL"
|
486 |
|
487 |
+
#: bws_menu.php:542
|
488 |
msgid "Home URL"
|
489 |
msgstr "Home URL"
|
490 |
|
491 |
+
#: bws_menu.php:545
|
492 |
msgid "WordPress Version"
|
493 |
msgstr "WordPress Version"
|
494 |
|
495 |
+
#: bws_menu.php:546
|
496 |
msgid "WordPress DB Version"
|
497 |
msgstr "WordPress DB Version"
|
498 |
|
499 |
+
#: bws_menu.php:547
|
500 |
msgid "Multisite"
|
501 |
msgstr "Multisite"
|
502 |
|
503 |
+
#: bws_menu.php:548
|
504 |
msgid "Active Theme"
|
505 |
msgstr "Active Theme"
|
506 |
|
507 |
+
#: bws_menu.php:563
|
508 |
msgid "Please enter a valid email address."
|
509 |
msgstr "Merci de saisir une adresse e-mail valide."
|
510 |
|
511 |
+
#: bws_menu.php:567
|
512 |
msgid "Email with system info is sent to "
|
513 |
msgstr "Le courriel avec les informations système est envoyé à"
|
514 |
|
515 |
+
#: bws_menu.php:571
|
516 |
msgid "Thank you for contacting us."
|
517 |
msgstr "Merci de nous avoir contacté."
|
518 |
|
519 |
+
#: bws_menu.php:604
|
520 |
msgid "Sorry, email message could not be delivered."
|
521 |
msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
|
522 |
|
523 |
+
#: bws_menu.php:612
|
524 |
msgid "Need help?"
|
525 |
msgstr "Besoin d'aide ?"
|
526 |
|
527 |
+
#: bws_menu.php:613
|
528 |
msgid "Client area"
|
529 |
msgstr "Espace client"
|
530 |
|
531 |
+
#: bws_menu.php:614
|
532 |
+
#: bws_menu.php:925
|
533 |
msgid "System status"
|
534 |
msgstr "System status"
|
535 |
|
536 |
+
#: bws_menu.php:619
|
537 |
msgid "Plugins"
|
538 |
msgstr "Extensions"
|
539 |
|
540 |
+
#: bws_menu.php:621
|
541 |
msgid "Themes"
|
542 |
msgstr "Thèmes"
|
543 |
|
544 |
+
#: bws_menu.php:626
|
545 |
msgid "All"
|
546 |
msgstr "Tous"
|
547 |
|
548 |
+
#: bws_menu.php:627
|
549 |
msgid "Installed"
|
550 |
msgstr "Installé"
|
551 |
|
552 |
+
#: bws_menu.php:628
|
553 |
msgid "Recommended"
|
554 |
msgstr "Recommandé"
|
555 |
|
556 |
+
#: bws_menu.php:632
|
557 |
msgid "Installed plugins"
|
558 |
msgstr "Plugin installé"
|
559 |
|
560 |
+
#: bws_menu.php:664
|
561 |
+
#: bws_menu.php:713
|
562 |
msgid "Settings"
|
563 |
msgstr "Réglages"
|
564 |
|
565 |
+
#: bws_menu.php:685
|
566 |
+
#: bws_menu.php:742
|
567 |
msgid "Activate this plugin"
|
568 |
msgstr "Activer cette extension"
|
569 |
|
570 |
+
#: bws_menu.php:700
|
571 |
+
#: bws_menu.php:730
|
572 |
+
#: bws_menu.php:776
|
573 |
msgid "Go"
|
574 |
msgstr "Passez"
|
575 |
|
576 |
+
#: bws_menu.php:704
|
577 |
+
#: bws_menu.php:734
|
578 |
+
#: bws_menu.php:780
|
579 |
msgid "DONATE"
|
580 |
msgstr "Faire un don"
|
581 |
|
582 |
+
#: bws_menu.php:750
|
583 |
msgid "Recommended plugins"
|
584 |
msgstr "Plugin recommandé"
|
585 |
|
586 |
+
#: bws_menu.php:788
|
587 |
msgid "Install now"
|
588 |
msgstr "Installer maintenant"
|
589 |
|
590 |
+
#: bws_menu.php:809
|
591 |
msgid "Try again"
|
592 |
msgstr "Essayer de nouveau"
|
593 |
|
594 |
+
#: bws_menu.php:827
|
595 |
#, php-format
|
596 |
msgid "Preview “%s”"
|
597 |
msgstr "Pré-visualiser “%s”"
|
598 |
|
599 |
+
#: bws_menu.php:858
|
600 |
#, php-format
|
601 |
msgid "Install %s"
|
602 |
msgstr "%s installé"
|
603 |
|
604 |
+
#: bws_menu.php:858
|
605 |
msgid "Install Now"
|
606 |
msgstr "Installa Ora"
|
607 |
|
608 |
+
#: bws_menu.php:861
|
609 |
#, php-format
|
610 |
msgid "Update to version %s"
|
611 |
msgstr "Mettre à jour pour la version %s"
|
612 |
|
613 |
+
#: bws_menu.php:861
|
614 |
msgid "Update"
|
615 |
msgstr "Mettre à jour"
|
616 |
|
617 |
+
#: bws_menu.php:868
|
618 |
#, php-format
|
619 |
msgid "Preview %s"
|
620 |
msgstr "Pré-visualiser %s"
|
621 |
|
622 |
+
#: bws_menu.php:868
|
623 |
msgid "Preview"
|
624 |
msgstr "Pré-visualiser"
|
625 |
|
626 |
+
#: bws_menu.php:874
|
627 |
+
#: bws_menu.php:906
|
628 |
#, php-format
|
629 |
msgid "By %s"
|
630 |
msgstr "Par %s"
|
631 |
|
632 |
+
#: bws_menu.php:880
|
633 |
msgid "Details"
|
634 |
msgstr "Détails"
|
635 |
|
636 |
+
#: bws_menu.php:912
|
637 |
msgid "Already Installed"
|
638 |
msgstr "Déjà installé"
|
639 |
|
640 |
+
#: bws_menu.php:928
|
641 |
msgid "Environment"
|
642 |
msgstr "Environment"
|
643 |
|
644 |
+
#: bws_menu.php:939
|
645 |
msgid "Active Plugins"
|
646 |
msgstr "Plugin actifs"
|
647 |
|
648 |
+
#: bws_menu.php:952
|
649 |
msgid "Inactive Plugins"
|
650 |
msgstr "Plugin inactifs"
|
651 |
|
652 |
+
#: bws_menu.php:968
|
653 |
msgid "Send to support"
|
654 |
msgstr "Envoyé au support"
|
655 |
|
656 |
+
#: bws_menu.php:975
|
657 |
msgid "Send to custom email »"
|
658 |
msgstr "Envoyer un e-mail spécifique »"
|
659 |
|
714 |
#~ msgid "installed"
|
715 |
#~ msgstr "%s installé"
|
716 |
|
|
|
|
|
|
|
717 |
#~ msgid "Contact Form"
|
718 |
#~ msgstr "Formulaire de Contact"
|
719 |
|
1002 |
#~ msgid "Error message for the whole form"
|
1003 |
#~ msgstr "Message d'erreur demandant à compléter les champs manquants"
|
1004 |
|
|
|
|
|
|
|
1005 |
#~ msgid "for this language"
|
1006 |
#~ msgstr "pour cette langue"
|
1007 |
|
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,712 @@ 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 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-07 13:11+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-09-07 13:11+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 |
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 |
# @ bestwebsoft
|
34 |
+
#: bws_functions.php:34
|
35 |
#, fuzzy
|
36 |
msgid "Plugins page"
|
37 |
msgstr "Plugin Pro"
|
38 |
|
39 |
+
#: bws_functions.php:91
|
40 |
msgid "It’s time to upgrade your"
|
41 |
msgstr ""
|
42 |
|
43 |
# @ captcha
|
44 |
+
#: bws_functions.php:91
|
45 |
#, fuzzy
|
46 |
msgid "to"
|
47 |
msgstr "due"
|
48 |
|
49 |
# @ bestwebsoft
|
50 |
+
#: bws_functions.php:91
|
51 |
#, fuzzy
|
52 |
msgid "version!"
|
53 |
msgstr "Versione PHP"
|
54 |
|
55 |
+
#: bws_functions.php:92
|
56 |
msgid "Extend standard plugin functionality with new great options."
|
57 |
msgstr ""
|
58 |
|
59 |
# @ bestwebsoft
|
60 |
+
#: bws_functions.php:95
|
61 |
+
#: bws_functions.php:492
|
62 |
#, fuzzy
|
63 |
msgid "Learn More"
|
64 |
msgstr "Leggi tutto"
|
65 |
|
66 |
+
#: bws_functions.php:112
|
67 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
68 |
msgstr ""
|
69 |
|
70 |
# @ bestwebsoft
|
71 |
+
#: bws_functions.php:113
|
72 |
#, fuzzy
|
73 |
msgid "Rate the plugin"
|
74 |
msgstr "Plugin attivi"
|
75 |
|
76 |
# @ bestwebsoft
|
77 |
+
#: bws_functions.php:116
|
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:133
|
83 |
+
#: bws_functions.php:169
|
84 |
msgid "Wrong license key"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: bws_functions.php:163
|
88 |
+
#: bws_functions.php:405
|
89 |
+
#: bws_functions.php:456
|
90 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: bws_functions.php:163
|
94 |
+
#: bws_functions.php:405
|
95 |
+
#: bws_functions.php:456
|
96 |
msgid "We are sorry for inconvenience."
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: bws_functions.php:171
|
100 |
msgid "This license key is bind to another site"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: bws_functions.php:173
|
104 |
+
#: bws_functions.php:315
|
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:175
|
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:177
|
113 |
+
msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: bws_functions.php:198
|
117 |
+
#: bws_functions.php:220
|
118 |
+
#: bws_functions.php:242
|
119 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: bws_functions.php:210
|
123 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: bws_functions.php:216
|
127 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: bws_functions.php:223
|
131 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: bws_functions.php:246
|
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:271
|
139 |
msgid "Please, enter Your license key"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: bws_functions.php:288
|
143 |
+
msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: bws_functions.php:290
|
147 |
+
#: bws_functions.php:372
|
148 |
msgid "Please, go to"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: bws_functions.php:290
|
152 |
+
#: bws_functions.php:372
|
153 |
msgid "the setting page"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: bws_functions.php:291
|
157 |
+
#: bws_functions.php:373
|
158 |
msgid "You will be redirected automatically in 5 seconds."
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: bws_functions.php:296
|
162 |
msgid "You can download and activate"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: bws_functions.php:298
|
166 |
msgid "version of this plugin by entering Your license key."
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: bws_functions.php:300
|
170 |
+
#: bws_functions.php:341
|
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:302
|
175 |
+
#: bws_functions.php:343
|
176 |
msgid "(your username is the email you specify when purchasing the product)."
|
177 |
msgstr ""
|
178 |
|
179 |
# @ captcha
|
180 |
+
#: bws_functions.php:306
|
181 |
+
#: bws_functions.php:609
|
182 |
#, fuzzy
|
183 |
msgid "or"
|
184 |
msgstr "quattro"
|
185 |
|
186 |
+
#: bws_functions.php:306
|
187 |
#, php-format
|
188 |
msgid "Start Your Free %s-Day Trial Now"
|
189 |
msgstr ""
|
190 |
|
191 |
# @ bestwebsoft
|
192 |
+
#: bws_functions.php:312
|
193 |
+
#: bws_functions.php:321
|
194 |
+
#: bws_functions.php:351
|
195 |
+
#: bws_functions.php:359
|
196 |
+
#: bws_menu.php:685
|
197 |
+
#: bws_menu.php:742
|
198 |
#, fuzzy
|
199 |
msgid "Activate"
|
200 |
msgstr "Plugin attivi"
|
201 |
|
202 |
+
#: bws_functions.php:338
|
203 |
+
#: bws_functions.php:431
|
204 |
#, php-format
|
205 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: bws_functions.php:339
|
209 |
msgid "After that you can activate it by entering your license key."
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: bws_functions.php:353
|
213 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: bws_functions.php:370
|
217 |
+
msgid "Congratulations! The Pro license of the plugin is successfully activated."
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: bws_functions.php:411
|
221 |
msgid "Wrong license key."
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: bws_functions.php:413
|
225 |
msgid "This license key is bind to another site."
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: bws_functions.php:415
|
229 |
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."
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: bws_functions.php:417
|
233 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: bws_functions.php:419
|
237 |
+
msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: bws_functions.php:423
|
241 |
+
msgid "The Pro Trial license key is valid."
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: bws_functions.php:425
|
245 |
msgid "The license key is valid."
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: bws_functions.php:428
|
249 |
msgid "Your license will expire on"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: bws_functions.php:461
|
253 |
msgid "Please, enter your license key"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: bws_functions.php:474
|
257 |
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"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: bws_functions.php:474
|
261 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: bws_functions.php:478
|
265 |
msgid "Check license key"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: bws_functions.php:492
|
269 |
msgid "WARNING: Illegal use notification"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: bws_functions.php:492
|
273 |
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."
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: bws_functions.php:500
|
277 |
+
msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: bws_functions.php:502
|
281 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
282 |
msgstr ""
|
283 |
|
284 |
# @ bestwebsoft
|
285 |
+
#: bws_functions.php:502
|
286 |
+
#: bws_functions.php:555
|
287 |
+
#: bws_menu.php:661
|
288 |
+
#: bws_menu.php:683
|
289 |
+
#: bws_menu.php:710
|
290 |
+
#: bws_menu.php:740
|
291 |
+
#: bws_menu.php:786
|
292 |
#, fuzzy
|
293 |
msgid "Learn more"
|
294 |
msgstr "Leggi tutto"
|
295 |
|
296 |
+
#: bws_functions.php:512
|
297 |
#, php-format
|
298 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: bws_functions.php:514
|
302 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: bws_functions.php:517
|
306 |
+
msgid "The Pro Trial license will expire on"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: bws_functions.php:555
|
310 |
msgid "You license for"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: bws_functions.php:555
|
314 |
msgid "expires on"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: bws_functions.php:555
|
318 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
319 |
msgstr ""
|
320 |
|
321 |
+
# @ bestwebsoft
|
322 |
+
#: bws_functions.php:605
|
323 |
+
#, fuzzy
|
324 |
+
msgid "Thank you for installing"
|
325 |
+
msgstr "Grazie per averci contattato."
|
326 |
+
|
327 |
+
#: bws_functions.php:606
|
328 |
+
msgid "Let's get started"
|
329 |
+
msgstr ""
|
330 |
+
|
331 |
+
# @ bestwebsoft
|
332 |
+
# @ captcha
|
333 |
+
#: bws_functions.php:607
|
334 |
+
#, fuzzy
|
335 |
+
msgid "Configure Settings"
|
336 |
+
msgstr "Impostazioni"
|
337 |
+
|
338 |
+
#: bws_functions.php:610
|
339 |
+
msgid "Add New"
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
#: bws_functions.php:614
|
343 |
+
msgid "Close notice"
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
+
#: bws_functions.php:667
|
347 |
+
msgid "Add BWS shortcode"
|
348 |
+
msgstr ""
|
349 |
+
|
350 |
+
#: bws_functions.php:711
|
351 |
msgid "Close"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: bws_functions.php:802
|
|
|
355 |
msgid "Restore all plugin settings to defaults"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: bws_functions.php:804
|
|
|
359 |
msgid "Restore settings"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: bws_functions.php:815
|
363 |
msgid "Are you sure you want to restore all settings by default?"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: bws_functions.php:818
|
367 |
msgid "Yes, restore all settings"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: bws_functions.php:819
|
371 |
msgid "No, go back to the settings page"
|
372 |
msgstr ""
|
373 |
|
374 |
# @ bestwebsoft
|
375 |
+
#: bws_functions.php:863
|
376 |
+
#, fuzzy
|
377 |
+
msgid "Plugin"
|
378 |
+
msgstr "Plugin Pro"
|
379 |
+
|
380 |
+
# @ bestwebsoft
|
381 |
+
# @ captcha
|
382 |
+
#: bws_functions.php:872
|
383 |
+
#, fuzzy
|
384 |
+
msgid "Shortcode settings"
|
385 |
+
msgstr "Impostazioni"
|
386 |
+
|
387 |
+
#: bws_functions.php:877
|
388 |
+
msgid "The shortcode will be inserted"
|
389 |
+
msgstr ""
|
390 |
+
|
391 |
+
#: bws_functions.php:882
|
392 |
+
msgid "Insert"
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
# @ bestwebsoft
|
396 |
+
#: bws_menu.php:498
|
397 |
msgid "Not set"
|
398 |
msgstr "Non impostato"
|
399 |
|
400 |
# @ bestwebsoft
|
401 |
+
#: bws_menu.php:500
|
402 |
+
#: bws_menu.php:501
|
403 |
msgid "On"
|
404 |
msgstr "Abilitato"
|
405 |
|
406 |
# @ bestwebsoft
|
407 |
+
#: bws_menu.php:500
|
408 |
+
#: bws_menu.php:501
|
409 |
msgid "Off"
|
410 |
msgstr "Disabilitato"
|
411 |
|
412 |
# @ bestwebsoft
|
413 |
+
#: bws_menu.php:502
|
414 |
+
#: bws_menu.php:503
|
415 |
+
#: bws_menu.php:504
|
416 |
+
#: bws_menu.php:505
|
417 |
+
#: bws_menu.php:506
|
418 |
+
#: bws_menu.php:518
|
419 |
msgid "N/A"
|
420 |
msgstr "Non disponibile"
|
421 |
|
422 |
# @ bestwebsoft
|
423 |
+
#: bws_menu.php:506
|
424 |
msgid " Mb"
|
425 |
msgstr "Mb"
|
426 |
|
427 |
# @ bestwebsoft
|
428 |
+
#: bws_menu.php:507
|
429 |
+
#: bws_menu.php:508
|
430 |
+
#: bws_menu.php:509
|
431 |
+
#: bws_menu.php:514
|
432 |
msgid "Yes"
|
433 |
msgstr "Sì"
|
434 |
|
435 |
# @ bestwebsoft
|
436 |
+
#: bws_menu.php:507
|
437 |
+
#: bws_menu.php:508
|
438 |
+
#: bws_menu.php:509
|
439 |
+
#: bws_menu.php:516
|
440 |
msgid "No"
|
441 |
msgstr "No"
|
442 |
|
443 |
# @ bestwebsoft
|
444 |
+
#: bws_menu.php:526
|
445 |
msgid "Operating System"
|
446 |
msgstr "Sistema operativo"
|
447 |
|
448 |
# @ bestwebsoft
|
449 |
+
#: bws_menu.php:527
|
450 |
msgid "Server"
|
451 |
msgstr "Server"
|
452 |
|
453 |
# @ bestwebsoft
|
454 |
+
#: bws_menu.php:528
|
455 |
msgid "Memory usage"
|
456 |
msgstr "Utilizzo memoria"
|
457 |
|
458 |
# @ bestwebsoft
|
459 |
+
#: bws_menu.php:529
|
460 |
msgid "MYSQL Version"
|
461 |
msgstr "Versione MYSQL"
|
462 |
|
463 |
# @ bestwebsoft
|
464 |
+
#: bws_menu.php:530
|
465 |
msgid "SQL Mode"
|
466 |
msgstr "Modalità SQL"
|
467 |
|
468 |
# @ bestwebsoft
|
469 |
+
#: bws_menu.php:531
|
470 |
msgid "PHP Version"
|
471 |
msgstr "Versione PHP"
|
472 |
|
473 |
# @ bestwebsoft
|
474 |
+
#: bws_menu.php:532
|
475 |
msgid "PHP Safe Mode"
|
476 |
msgstr "Safe Mode PHP"
|
477 |
|
478 |
# @ bestwebsoft
|
479 |
+
#: bws_menu.php:533
|
480 |
msgid "PHP Allow URL fopen"
|
481 |
msgstr "Consenti URL fopen PHP"
|
482 |
|
483 |
# @ bestwebsoft
|
484 |
+
#: bws_menu.php:534
|
485 |
msgid "PHP Memory Limit"
|
486 |
msgstr "Limite di memoria PHP"
|
487 |
|
488 |
# @ bestwebsoft
|
489 |
+
#: bws_menu.php:535
|
490 |
msgid "PHP Max Upload Size"
|
491 |
msgstr "Dimensione upload massima PHP"
|
492 |
|
493 |
# @ bestwebsoft
|
494 |
+
#: bws_menu.php:536
|
495 |
msgid "PHP Max Post Size"
|
496 |
msgstr "Dimensione massima Post PHP"
|
497 |
|
498 |
# @ bestwebsoft
|
499 |
+
#: bws_menu.php:537
|
500 |
msgid "PHP Max Script Execute Time"
|
501 |
msgstr "Tempo massimo di esecuzione PHP"
|
502 |
|
503 |
# @ bestwebsoft
|
504 |
+
#: bws_menu.php:538
|
505 |
msgid "PHP Exif support"
|
506 |
msgstr "Supporto Exif PHP"
|
507 |
|
508 |
# @ bestwebsoft
|
509 |
+
#: bws_menu.php:539
|
510 |
msgid "PHP IPTC support"
|
511 |
msgstr "Supporto IPTC PHP"
|
512 |
|
513 |
# @ bestwebsoft
|
514 |
+
#: bws_menu.php:540
|
515 |
msgid "PHP XML support"
|
516 |
msgstr "Supporto XML PHP"
|
517 |
|
518 |
# @ bestwebsoft
|
519 |
+
#: bws_menu.php:541
|
520 |
msgid "Site URL"
|
521 |
msgstr "URL sito"
|
522 |
|
523 |
# @ bestwebsoft
|
524 |
+
#: bws_menu.php:542
|
525 |
msgid "Home URL"
|
526 |
msgstr "URL home"
|
527 |
|
528 |
# @ bestwebsoft
|
529 |
+
#: bws_menu.php:545
|
530 |
msgid "WordPress Version"
|
531 |
msgstr "Versione WordPress"
|
532 |
|
533 |
# @ bestwebsoft
|
534 |
+
#: bws_menu.php:546
|
535 |
msgid "WordPress DB Version"
|
536 |
msgstr "Versione DB WordPress"
|
537 |
|
538 |
# @ bestwebsoft
|
539 |
+
#: bws_menu.php:547
|
540 |
msgid "Multisite"
|
541 |
msgstr "Multisito"
|
542 |
|
543 |
# @ bestwebsoft
|
544 |
+
#: bws_menu.php:548
|
545 |
msgid "Active Theme"
|
546 |
msgstr "Tema attivo"
|
547 |
|
548 |
# @ bestwebsoft
|
549 |
+
#: bws_menu.php:563
|
550 |
msgid "Please enter a valid email address."
|
551 |
msgstr "Per favore inserisci un indirizzo e-mail valido."
|
552 |
|
553 |
# @ bestwebsoft
|
554 |
+
#: bws_menu.php:567
|
555 |
msgid "Email with system info is sent to "
|
556 |
msgstr "Email con informazioni di sistema spedita a "
|
557 |
|
558 |
# @ bestwebsoft
|
559 |
+
#: bws_menu.php:571
|
560 |
msgid "Thank you for contacting us."
|
561 |
msgstr "Grazie per averci contattato."
|
562 |
|
563 |
# @ bestwebsoft
|
564 |
+
#: bws_menu.php:604
|
565 |
msgid "Sorry, email message could not be delivered."
|
566 |
msgstr "Spiacenti, il messaggio email non può essere inviato."
|
567 |
|
568 |
+
#: bws_menu.php:612
|
569 |
msgid "Need help?"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: bws_menu.php:613
|
573 |
msgid "Client area"
|
574 |
msgstr ""
|
575 |
|
576 |
# @ bestwebsoft
|
577 |
+
#: bws_menu.php:614
|
578 |
+
#: bws_menu.php:925
|
579 |
msgid "System status"
|
580 |
msgstr "Stato sistema"
|
581 |
|
582 |
# @ bestwebsoft
|
583 |
+
#: bws_menu.php:619
|
584 |
#, fuzzy
|
585 |
msgid "Plugins"
|
586 |
msgstr "Plugin Pro"
|
587 |
|
588 |
+
#: bws_menu.php:621
|
589 |
msgid "Themes"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: bws_menu.php:626
|
593 |
msgid "All"
|
594 |
msgstr ""
|
595 |
|
596 |
# @ default
|
597 |
+
#: bws_menu.php:627
|
598 |
#, fuzzy
|
599 |
msgid "Installed"
|
600 |
msgstr "Installa %s"
|
601 |
|
602 |
# @ bestwebsoft
|
603 |
+
#: bws_menu.php:628
|
604 |
#, fuzzy
|
605 |
msgid "Recommended"
|
606 |
msgstr "Plugin raccomandati"
|
607 |
|
608 |
# @ bestwebsoft
|
609 |
+
#: bws_menu.php:632
|
610 |
msgid "Installed plugins"
|
611 |
msgstr "Plugin installati"
|
612 |
|
613 |
# @ bestwebsoft
|
614 |
# @ captcha
|
615 |
+
#: bws_menu.php:664
|
616 |
+
#: bws_menu.php:713
|
617 |
msgid "Settings"
|
618 |
msgstr "Impostazioni"
|
619 |
|
620 |
# @ bestwebsoft
|
621 |
+
#: bws_menu.php:685
|
622 |
+
#: bws_menu.php:742
|
623 |
#, fuzzy
|
624 |
msgid "Activate this plugin"
|
625 |
msgstr "Plugin attivi"
|
626 |
|
627 |
+
#: bws_menu.php:700
|
628 |
+
#: bws_menu.php:730
|
629 |
+
#: bws_menu.php:776
|
630 |
msgid "Go"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: bws_menu.php:704
|
634 |
+
#: bws_menu.php:734
|
635 |
+
#: bws_menu.php:780
|
636 |
msgid "DONATE"
|
637 |
msgstr ""
|
638 |
|
639 |
# @ bestwebsoft
|
640 |
+
#: bws_menu.php:750
|
641 |
msgid "Recommended plugins"
|
642 |
msgstr "Plugin raccomandati"
|
643 |
|
644 |
# @ default
|
645 |
+
#: bws_menu.php:788
|
646 |
#, fuzzy
|
647 |
msgid "Install now"
|
648 |
msgstr "Installa %s"
|
649 |
|
650 |
+
#: bws_menu.php:809
|
651 |
msgid "Try again"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: bws_menu.php:827
|
655 |
#, php-format
|
656 |
msgid "Preview “%s”"
|
657 |
msgstr ""
|
658 |
|
659 |
# @ default
|
660 |
+
#: bws_menu.php:858
|
661 |
#, php-format
|
662 |
msgid "Install %s"
|
663 |
msgstr "Installa %s"
|
664 |
|
665 |
# @ default
|
666 |
+
#: bws_menu.php:858
|
667 |
#, fuzzy
|
668 |
msgid "Install Now"
|
669 |
msgstr "Installa %s"
|
670 |
|
671 |
+
#: bws_menu.php:861
|
672 |
#, php-format
|
673 |
msgid "Update to version %s"
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: bws_menu.php:861
|
677 |
msgid "Update"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: bws_menu.php:868
|
681 |
#, php-format
|
682 |
msgid "Preview %s"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: bws_menu.php:868
|
686 |
msgid "Preview"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: bws_menu.php:874
|
690 |
+
#: bws_menu.php:906
|
691 |
#, php-format
|
692 |
msgid "By %s"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: bws_menu.php:880
|
696 |
msgid "Details"
|
697 |
msgstr ""
|
698 |
|
699 |
# @ default
|
700 |
+
#: bws_menu.php:912
|
701 |
#, fuzzy
|
702 |
msgid "Already Installed"
|
703 |
msgstr "Installa %s"
|
704 |
|
705 |
# @ bestwebsoft
|
706 |
+
#: bws_menu.php:928
|
707 |
msgid "Environment"
|
708 |
msgstr "Ambiente"
|
709 |
|
710 |
# @ bestwebsoft
|
711 |
+
#: bws_menu.php:939
|
712 |
msgid "Active Plugins"
|
713 |
msgstr "Plugin attivi"
|
714 |
|
715 |
# @ bestwebsoft
|
716 |
+
#: bws_menu.php:952
|
717 |
msgid "Inactive Plugins"
|
718 |
msgstr "Plugin inattivi"
|
719 |
|
720 |
# @ bestwebsoft
|
721 |
+
#: bws_menu.php:968
|
722 |
msgid "Send to support"
|
723 |
msgstr "Invia al supporto"
|
724 |
|
725 |
# @ bestwebsoft
|
726 |
+
#: bws_menu.php:975
|
727 |
msgid "Send to custom email »"
|
728 |
msgstr "Invia a una email personalizzata »"
|
729 |
|
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,652 @@ 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 +702,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 +987,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 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-07 13:11+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-09-07 13:11+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 |
#, fuzzy
|
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 "Pro Plugins"
|
36 |
|
37 |
+
#: bws_functions.php:91
|
38 |
msgid "It’s time to upgrade your"
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: bws_functions.php:91
|
42 |
msgid "to"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: bws_functions.php:91
|
46 |
#, fuzzy
|
47 |
msgid "version!"
|
48 |
msgstr "PHP バージョン"
|
49 |
|
50 |
+
#: bws_functions.php:92
|
51 |
msgid "Extend standard plugin functionality with new great options."
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: bws_functions.php:95
|
55 |
+
#: bws_functions.php:492
|
56 |
#, fuzzy
|
57 |
msgid "Learn More"
|
58 |
msgstr "もっと読む"
|
59 |
|
60 |
+
#: bws_functions.php:112
|
61 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: bws_functions.php:113
|
65 |
#, fuzzy
|
66 |
msgid "Rate the plugin"
|
67 |
msgstr "有効なプラグイン"
|
68 |
|
69 |
+
#: bws_functions.php:116
|
70 |
#, fuzzy
|
71 |
msgid "If there is something wrong about it, please contact us"
|
72 |
msgstr "もそご質問がある場合は、以下の方法でご連絡下さい:"
|
73 |
|
74 |
+
#: bws_functions.php:133
|
75 |
+
#: bws_functions.php:169
|
76 |
msgid "Wrong license key"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: bws_functions.php:163
|
80 |
+
#: bws_functions.php:405
|
81 |
+
#: bws_functions.php:456
|
82 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: bws_functions.php:163
|
86 |
+
#: bws_functions.php:405
|
87 |
+
#: bws_functions.php:456
|
88 |
msgid "We are sorry for inconvenience."
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: bws_functions.php:171
|
92 |
msgid "This license key is bind to another site"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: bws_functions.php:173
|
96 |
+
#: bws_functions.php:315
|
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:175
|
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:177
|
105 |
+
msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: bws_functions.php:198
|
109 |
+
#: bws_functions.php:220
|
110 |
+
#: bws_functions.php:242
|
111 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: bws_functions.php:210
|
115 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: bws_functions.php:216
|
119 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: bws_functions.php:223
|
123 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: bws_functions.php:246
|
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:271
|
131 |
#, fuzzy
|
132 |
msgid "Please, enter Your license key"
|
133 |
msgstr "メッセージを入力して下さい..."
|
134 |
|
135 |
+
#: bws_functions.php:288
|
136 |
+
msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: bws_functions.php:290
|
140 |
+
#: bws_functions.php:372
|
141 |
msgid "Please, go to"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: bws_functions.php:290
|
145 |
+
#: bws_functions.php:372
|
146 |
#, fuzzy
|
147 |
msgid "the setting page"
|
148 |
msgstr "追加設定"
|
149 |
|
150 |
+
#: bws_functions.php:291
|
151 |
+
#: bws_functions.php:373
|
152 |
msgid "You will be redirected automatically in 5 seconds."
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: bws_functions.php:296
|
156 |
msgid "You can download and activate"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: bws_functions.php:298
|
160 |
msgid "version of this plugin by entering Your license key."
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: bws_functions.php:300
|
164 |
+
#: bws_functions.php:341
|
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:302
|
169 |
+
#: bws_functions.php:343
|
170 |
msgid "(your username is the email you specify when purchasing the product)."
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: bws_functions.php:306
|
174 |
+
#: bws_functions.php:609
|
175 |
msgid "or"
|
176 |
msgstr "又は"
|
177 |
|
178 |
+
#: bws_functions.php:306
|
179 |
#, php-format
|
180 |
msgid "Start Your Free %s-Day Trial Now"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: bws_functions.php:312
|
184 |
+
#: bws_functions.php:321
|
185 |
+
#: bws_functions.php:351
|
186 |
+
#: bws_functions.php:359
|
187 |
+
#: bws_menu.php:685
|
188 |
+
#: bws_menu.php:742
|
189 |
#, fuzzy
|
190 |
msgid "Activate"
|
191 |
msgstr "有効なcaptcha"
|
192 |
|
193 |
+
#: bws_functions.php:338
|
194 |
+
#: bws_functions.php:431
|
195 |
#, php-format
|
196 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: bws_functions.php:339
|
200 |
msgid "After that you can activate it by entering your license key."
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: bws_functions.php:353
|
204 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: bws_functions.php:370
|
208 |
+
msgid "Congratulations! The Pro license of the plugin is successfully activated."
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: bws_functions.php:411
|
212 |
msgid "Wrong license key."
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: bws_functions.php:413
|
216 |
msgid "This license key is bind to another site."
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: bws_functions.php:415
|
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 ""
|
222 |
|
223 |
+
#: bws_functions.php:417
|
224 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: bws_functions.php:419
|
228 |
+
msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: bws_functions.php:423
|
232 |
+
msgid "The Pro Trial license key is valid."
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: bws_functions.php:425
|
236 |
msgid "The license key is valid."
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: bws_functions.php:428
|
240 |
msgid "Your license will expire on"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: bws_functions.php:461
|
244 |
#, fuzzy
|
245 |
msgid "Please, enter your license key"
|
246 |
msgstr "メッセージを入力して下さい..."
|
247 |
|
248 |
+
#: bws_functions.php:474
|
249 |
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"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: bws_functions.php:474
|
253 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: bws_functions.php:478
|
257 |
msgid "Check license key"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: bws_functions.php:492
|
261 |
msgid "WARNING: Illegal use notification"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: bws_functions.php:492
|
265 |
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."
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: bws_functions.php:500
|
269 |
+
msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: bws_functions.php:502
|
273 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: bws_functions.php:502
|
277 |
+
#: bws_functions.php:555
|
278 |
+
#: bws_menu.php:661
|
279 |
+
#: bws_menu.php:683
|
280 |
+
#: bws_menu.php:710
|
281 |
+
#: bws_menu.php:740
|
282 |
+
#: bws_menu.php:786
|
283 |
#, fuzzy
|
284 |
msgid "Learn more"
|
285 |
msgstr "もっと読む"
|
286 |
|
287 |
+
#: bws_functions.php:512
|
288 |
#, php-format
|
289 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: bws_functions.php:514
|
293 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: bws_functions.php:517
|
297 |
+
msgid "The Pro Trial license will expire on"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: bws_functions.php:555
|
301 |
msgid "You license for"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: bws_functions.php:555
|
305 |
msgid "expires on"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: bws_functions.php:555
|
309 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: bws_functions.php:605
|
313 |
+
#, fuzzy
|
314 |
+
msgid "Thank you for installing"
|
315 |
+
msgstr "ご連絡ありがとうございます"
|
316 |
+
|
317 |
+
#: bws_functions.php:606
|
318 |
+
msgid "Let's get started"
|
319 |
+
msgstr ""
|
320 |
+
|
321 |
+
#: bws_functions.php:607
|
322 |
+
#, fuzzy
|
323 |
+
msgid "Configure Settings"
|
324 |
+
msgstr "コンタクトフォーム設定"
|
325 |
+
|
326 |
+
#: bws_functions.php:610
|
327 |
+
msgid "Add New"
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
#: bws_functions.php:614
|
331 |
+
msgid "Close notice"
|
332 |
+
msgstr ""
|
333 |
+
|
334 |
+
#: bws_functions.php:667
|
335 |
+
#, fuzzy
|
336 |
+
msgid "Add BWS shortcode"
|
337 |
+
msgstr "短いコードの利用"
|
338 |
+
|
339 |
+
#: bws_functions.php:711
|
340 |
msgid "Close"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: bws_functions.php:802
|
|
|
344 |
msgid "Restore all plugin settings to defaults"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: bws_functions.php:804
|
|
|
348 |
#, fuzzy
|
349 |
msgid "Restore settings"
|
350 |
msgstr "追加設定"
|
351 |
|
352 |
+
#: bws_functions.php:815
|
353 |
#, fuzzy
|
354 |
msgid "Are you sure you want to restore all settings by default?"
|
355 |
msgstr "本当に、この言語データを削除しますか?"
|
356 |
|
357 |
+
#: bws_functions.php:818
|
358 |
msgid "Yes, restore all settings"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: bws_functions.php:819
|
362 |
#, fuzzy
|
363 |
msgid "No, go back to the settings page"
|
364 |
msgstr "追加設定"
|
365 |
|
366 |
+
#: bws_functions.php:863
|
367 |
+
#, fuzzy
|
368 |
+
msgid "Plugin"
|
369 |
+
msgstr "Pro Plugins"
|
370 |
+
|
371 |
+
#: bws_functions.php:872
|
372 |
+
#, fuzzy
|
373 |
+
msgid "Shortcode settings"
|
374 |
+
msgstr "追加設定"
|
375 |
+
|
376 |
+
#: bws_functions.php:877
|
377 |
+
msgid "The shortcode will be inserted"
|
378 |
+
msgstr ""
|
379 |
+
|
380 |
+
#: bws_functions.php:882
|
381 |
+
msgid "Insert"
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
+
#: bws_menu.php:498
|
385 |
msgid "Not set"
|
386 |
msgstr "未設定"
|
387 |
|
388 |
+
#: bws_menu.php:500
|
389 |
+
#: bws_menu.php:501
|
390 |
msgid "On"
|
391 |
msgstr "On"
|
392 |
|
393 |
+
#: bws_menu.php:500
|
394 |
+
#: bws_menu.php:501
|
395 |
msgid "Off"
|
396 |
msgstr "Off"
|
397 |
|
398 |
+
#: bws_menu.php:502
|
399 |
+
#: bws_menu.php:503
|
400 |
+
#: bws_menu.php:504
|
401 |
+
#: bws_menu.php:505
|
402 |
+
#: bws_menu.php:506
|
403 |
+
#: bws_menu.php:518
|
404 |
msgid "N/A"
|
405 |
msgstr "該当なし"
|
406 |
|
407 |
+
#: bws_menu.php:506
|
408 |
msgid " Mb"
|
409 |
msgstr " Mb"
|
410 |
|
411 |
+
#: bws_menu.php:507
|
412 |
+
#: bws_menu.php:508
|
413 |
+
#: bws_menu.php:509
|
414 |
+
#: bws_menu.php:514
|
415 |
msgid "Yes"
|
416 |
msgstr "はい"
|
417 |
|
418 |
+
#: bws_menu.php:507
|
419 |
+
#: bws_menu.php:508
|
420 |
+
#: bws_menu.php:509
|
421 |
+
#: bws_menu.php:516
|
422 |
msgid "No"
|
423 |
msgstr "いいえ"
|
424 |
|
425 |
+
#: bws_menu.php:526
|
426 |
msgid "Operating System"
|
427 |
msgstr "オペレーション・システム"
|
428 |
|
429 |
+
#: bws_menu.php:527
|
430 |
msgid "Server"
|
431 |
msgstr "サーバ"
|
432 |
|
433 |
+
#: bws_menu.php:528
|
434 |
msgid "Memory usage"
|
435 |
msgstr "メモリー使用"
|
436 |
|
437 |
+
#: bws_menu.php:529
|
438 |
msgid "MYSQL Version"
|
439 |
msgstr "MYSQL バージョン"
|
440 |
|
441 |
+
#: bws_menu.php:530
|
442 |
msgid "SQL Mode"
|
443 |
msgstr "SQLモード"
|
444 |
|
445 |
+
#: bws_menu.php:531
|
446 |
msgid "PHP Version"
|
447 |
msgstr "PHP バージョン"
|
448 |
|
449 |
+
#: bws_menu.php:532
|
450 |
msgid "PHP Safe Mode"
|
451 |
msgstr "PHP Safe Mode"
|
452 |
|
453 |
+
#: bws_menu.php:533
|
454 |
msgid "PHP Allow URL fopen"
|
455 |
msgstr "PHP Allow URL fopen"
|
456 |
|
457 |
+
#: bws_menu.php:534
|
458 |
msgid "PHP Memory Limit"
|
459 |
msgstr "PHP Memory Limit"
|
460 |
|
461 |
+
#: bws_menu.php:535
|
462 |
msgid "PHP Max Upload Size"
|
463 |
msgstr "PHP Max Upload Size"
|
464 |
|
465 |
+
#: bws_menu.php:536
|
466 |
msgid "PHP Max Post Size"
|
467 |
msgstr "PHP Max Post Size"
|
468 |
|
469 |
+
#: bws_menu.php:537
|
470 |
msgid "PHP Max Script Execute Time"
|
471 |
msgstr "PHP Max Script Execute Time"
|
472 |
|
473 |
+
#: bws_menu.php:538
|
474 |
msgid "PHP Exif support"
|
475 |
msgstr "PHP Exif サポート"
|
476 |
|
477 |
+
#: bws_menu.php:539
|
478 |
msgid "PHP IPTC support"
|
479 |
msgstr "PHP IPTC サポート"
|
480 |
|
481 |
+
#: bws_menu.php:540
|
482 |
msgid "PHP XML support"
|
483 |
msgstr "PHP XML サポート"
|
484 |
|
485 |
+
#: bws_menu.php:541
|
486 |
msgid "Site URL"
|
487 |
msgstr "サイトURL"
|
488 |
|
489 |
+
#: bws_menu.php:542
|
490 |
msgid "Home URL"
|
491 |
msgstr "ホームURL"
|
492 |
|
493 |
+
#: bws_menu.php:545
|
494 |
msgid "WordPress Version"
|
495 |
msgstr "WordPress バージョン"
|
496 |
|
497 |
+
#: bws_menu.php:546
|
498 |
msgid "WordPress DB Version"
|
499 |
msgstr "WordPress データベース バージョン"
|
500 |
|
501 |
+
#: bws_menu.php:547
|
502 |
msgid "Multisite"
|
503 |
msgstr "複数サイト"
|
504 |
|
505 |
+
#: bws_menu.php:548
|
506 |
msgid "Active Theme"
|
507 |
msgstr "有効なテーマ"
|
508 |
|
509 |
+
#: bws_menu.php:563
|
510 |
msgid "Please enter a valid email address."
|
511 |
msgstr "正確なEメール・アドレスを入力して下さい。"
|
512 |
|
513 |
+
#: bws_menu.php:567
|
514 |
msgid "Email with system info is sent to "
|
515 |
msgstr "システム情報をメールで送信:"
|
516 |
|
517 |
+
#: bws_menu.php:571
|
518 |
msgid "Thank you for contacting us."
|
519 |
msgstr "ご連絡ありがとうございます"
|
520 |
|
521 |
+
#: bws_menu.php:604
|
522 |
msgid "Sorry, email message could not be delivered."
|
523 |
msgstr "申し訳ございませんが、貴方のemailは配信できませんでした。"
|
524 |
|
525 |
+
#: bws_menu.php:612
|
526 |
msgid "Need help?"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: bws_menu.php:613
|
530 |
msgid "Client area"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: bws_menu.php:614
|
534 |
+
#: bws_menu.php:925
|
535 |
msgid "System status"
|
536 |
msgstr "システム状況"
|
537 |
|
538 |
+
#: bws_menu.php:619
|
539 |
#, fuzzy
|
540 |
msgid "Plugins"
|
541 |
msgstr "Pro Plugins"
|
542 |
|
543 |
+
#: bws_menu.php:621
|
544 |
msgid "Themes"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: bws_menu.php:626
|
548 |
msgid "All"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: bws_menu.php:627
|
552 |
#, fuzzy
|
553 |
msgid "Installed"
|
554 |
msgstr "%s 導入"
|
555 |
|
556 |
+
#: bws_menu.php:628
|
557 |
#, fuzzy
|
558 |
msgid "Recommended"
|
559 |
msgstr "推奨プラグイン"
|
560 |
|
561 |
+
#: bws_menu.php:632
|
562 |
msgid "Installed plugins"
|
563 |
msgstr "導入済みプラグイン"
|
564 |
|
565 |
+
#: bws_menu.php:664
|
566 |
+
#: bws_menu.php:713
|
567 |
msgid "Settings"
|
568 |
msgstr "設定"
|
569 |
|
570 |
+
#: bws_menu.php:685
|
571 |
+
#: bws_menu.php:742
|
572 |
#, fuzzy
|
573 |
msgid "Activate this plugin"
|
574 |
msgstr "有効なプラグイン"
|
575 |
|
576 |
+
#: bws_menu.php:700
|
577 |
+
#: bws_menu.php:730
|
578 |
+
#: bws_menu.php:776
|
579 |
msgid "Go"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: bws_menu.php:704
|
583 |
+
#: bws_menu.php:734
|
584 |
+
#: bws_menu.php:780
|
585 |
msgid "DONATE"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: bws_menu.php:750
|
589 |
msgid "Recommended plugins"
|
590 |
msgstr "推奨プラグイン"
|
591 |
|
592 |
+
#: bws_menu.php:788
|
593 |
#, fuzzy
|
594 |
msgid "Install now"
|
595 |
msgstr "Installa Ora"
|
596 |
|
597 |
+
#: bws_menu.php:809
|
598 |
msgid "Try again"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: bws_menu.php:827
|
602 |
#, php-format
|
603 |
msgid "Preview “%s”"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: bws_menu.php:858
|
607 |
#, php-format
|
608 |
msgid "Install %s"
|
609 |
msgstr "%s 導入"
|
610 |
|
611 |
+
#: bws_menu.php:858
|
612 |
msgid "Install Now"
|
613 |
msgstr "Installa Ora"
|
614 |
|
615 |
+
#: bws_menu.php:861
|
616 |
#, php-format
|
617 |
msgid "Update to version %s"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: bws_menu.php:861
|
621 |
msgid "Update"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: bws_menu.php:868
|
625 |
#, php-format
|
626 |
msgid "Preview %s"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: bws_menu.php:868
|
630 |
msgid "Preview"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: bws_menu.php:874
|
634 |
+
#: bws_menu.php:906
|
635 |
#, php-format
|
636 |
msgid "By %s"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: bws_menu.php:880
|
640 |
msgid "Details"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: bws_menu.php:912
|
644 |
#, fuzzy
|
645 |
msgid "Already Installed"
|
646 |
msgstr "%s 導入"
|
647 |
|
648 |
+
#: bws_menu.php:928
|
649 |
msgid "Environment"
|
650 |
msgstr "環境"
|
651 |
|
652 |
+
#: bws_menu.php:939
|
653 |
msgid "Active Plugins"
|
654 |
msgstr "有効なプラグイン"
|
655 |
|
656 |
+
#: bws_menu.php:952
|
657 |
msgid "Inactive Plugins"
|
658 |
msgstr "無効なプラグイン"
|
659 |
|
660 |
+
#: bws_menu.php:968
|
661 |
msgid "Send to support"
|
662 |
msgstr "サポートに送信"
|
663 |
|
664 |
+
#: bws_menu.php:975
|
665 |
msgid "Send to custom email »"
|
666 |
msgstr "カスタムEメールに送信»"
|
667 |
|
702 |
#~ msgid "installed"
|
703 |
#~ msgstr "%s 導入"
|
704 |
|
|
|
|
|
|
|
705 |
#~ msgid "Contact Form"
|
706 |
#~ msgstr "コンタクトフォーム"
|
707 |
|
987 |
#~ msgid "Error message for the whole form"
|
988 |
#~ msgstr "全体フォーム用のエラーメッセージ"
|
989 |
|
|
|
|
|
|
|
990 |
#~ msgid "for this language"
|
991 |
#~ msgstr "この言語用"
|
992 |
|
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,705 @@ 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-07 13:11+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-09-07 13:11+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 |
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 |
# @ captcha
|
34 |
+
#: bws_functions.php:34
|
35 |
#, fuzzy
|
36 |
msgid "Plugins page"
|
37 |
msgstr "Plugins Pro"
|
38 |
|
39 |
+
#: bws_functions.php:91
|
40 |
msgid "It’s time to upgrade your"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: bws_functions.php:91
|
44 |
msgid "to"
|
45 |
msgstr ""
|
46 |
|
47 |
# @ captcha
|
48 |
+
#: bws_functions.php:91
|
49 |
#, fuzzy
|
50 |
msgid "version!"
|
51 |
msgstr "Versão do PHP"
|
52 |
|
53 |
+
#: bws_functions.php:92
|
54 |
msgid "Extend standard plugin functionality with new great options."
|
55 |
msgstr ""
|
56 |
|
57 |
# @ captcha
|
58 |
+
#: bws_functions.php:95
|
59 |
+
#: bws_functions.php:492
|
60 |
#, fuzzy
|
61 |
msgid "Learn More"
|
62 |
msgstr "Leia Mais"
|
63 |
|
64 |
+
#: bws_functions.php:112
|
65 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
66 |
msgstr ""
|
67 |
|
68 |
# @ captcha
|
69 |
+
#: bws_functions.php:113
|
70 |
#, fuzzy
|
71 |
msgid "Rate the plugin"
|
72 |
msgstr "Plugins ativados"
|
73 |
|
74 |
# @ captcha
|
75 |
+
#: bws_functions.php:116
|
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:133
|
81 |
+
#: bws_functions.php:169
|
82 |
msgid "Wrong license key"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: bws_functions.php:163
|
86 |
+
#: bws_functions.php:405
|
87 |
+
#: bws_functions.php:456
|
88 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: bws_functions.php:163
|
92 |
+
#: bws_functions.php:405
|
93 |
+
#: bws_functions.php:456
|
94 |
msgid "We are sorry for inconvenience."
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: bws_functions.php:171
|
98 |
msgid "This license key is bind to another site"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: bws_functions.php:173
|
102 |
+
#: bws_functions.php:315
|
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:175
|
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:177
|
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:198
|
115 |
+
#: bws_functions.php:220
|
116 |
+
#: bws_functions.php:242
|
117 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: bws_functions.php:210
|
121 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: bws_functions.php:216
|
125 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: bws_functions.php:223
|
129 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: bws_functions.php:246
|
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:271
|
137 |
msgid "Please, enter Your license key"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: bws_functions.php:288
|
141 |
+
msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: bws_functions.php:290
|
145 |
+
#: bws_functions.php:372
|
146 |
msgid "Please, go to"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: bws_functions.php:290
|
150 |
+
#: bws_functions.php:372
|
151 |
msgid "the setting page"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: bws_functions.php:291
|
155 |
+
#: bws_functions.php:373
|
156 |
msgid "You will be redirected automatically in 5 seconds."
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: bws_functions.php:296
|
160 |
msgid "You can download and activate"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: bws_functions.php:298
|
164 |
msgid "version of this plugin by entering Your license key."
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: bws_functions.php:300
|
168 |
+
#: bws_functions.php:341
|
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:302
|
173 |
+
#: bws_functions.php:343
|
174 |
msgid "(your username is the email you specify when purchasing the product)."
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: bws_functions.php:306
|
178 |
+
#: bws_functions.php:609
|
179 |
msgid "or"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: bws_functions.php:306
|
183 |
#, php-format
|
184 |
msgid "Start Your Free %s-Day Trial Now"
|
185 |
msgstr ""
|
186 |
|
187 |
# @ captcha
|
188 |
+
#: bws_functions.php:312
|
189 |
+
#: bws_functions.php:321
|
190 |
+
#: bws_functions.php:351
|
191 |
+
#: bws_functions.php:359
|
192 |
+
#: bws_menu.php:685
|
193 |
+
#: bws_menu.php:742
|
194 |
#, fuzzy
|
195 |
msgid "Activate"
|
196 |
msgstr "Plugins ativados"
|
197 |
|
198 |
+
#: bws_functions.php:338
|
199 |
+
#: bws_functions.php:431
|
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:339
|
205 |
msgid "After that you can activate it by entering your license key."
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: bws_functions.php:353
|
209 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: bws_functions.php:370
|
213 |
+
msgid "Congratulations! The Pro license of the plugin is successfully activated."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: bws_functions.php:411
|
217 |
msgid "Wrong license key."
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: bws_functions.php:413
|
221 |
msgid "This license key is bind to another site."
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: bws_functions.php:415
|
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:417
|
229 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: bws_functions.php:419
|
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:423
|
237 |
+
msgid "The Pro Trial license key is valid."
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: bws_functions.php:425
|
241 |
msgid "The license key is valid."
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: bws_functions.php:428
|
245 |
msgid "Your license will expire on"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: bws_functions.php:461
|
249 |
msgid "Please, enter your license key"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: bws_functions.php:474
|
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:474
|
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:478
|
261 |
msgid "Check license key"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: bws_functions.php:492
|
265 |
msgid "WARNING: Illegal use notification"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: bws_functions.php:492
|
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:500
|
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:502
|
277 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
278 |
msgstr ""
|
279 |
|
280 |
# @ captcha
|
281 |
+
#: bws_functions.php:502
|
282 |
+
#: bws_functions.php:555
|
283 |
+
#: bws_menu.php:661
|
284 |
+
#: bws_menu.php:683
|
285 |
+
#: bws_menu.php:710
|
286 |
+
#: bws_menu.php:740
|
287 |
+
#: bws_menu.php:786
|
288 |
#, fuzzy
|
289 |
msgid "Learn more"
|
290 |
msgstr "Leia Mais"
|
291 |
|
292 |
+
#: bws_functions.php:512
|
293 |
#, php-format
|
294 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: bws_functions.php:514
|
298 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: bws_functions.php:517
|
302 |
+
msgid "The Pro Trial license will expire on"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: bws_functions.php:555
|
306 |
msgid "You license for"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: bws_functions.php:555
|
310 |
msgid "expires on"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: bws_functions.php:555
|
314 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
315 |
msgstr ""
|
316 |
|
317 |
+
# @ captcha
|
318 |
+
#: bws_functions.php:605
|
319 |
+
#, fuzzy
|
320 |
+
msgid "Thank you for installing"
|
321 |
+
msgstr "Obrigado por nos contatar."
|
322 |
+
|
323 |
+
#: bws_functions.php:606
|
324 |
+
msgid "Let's get started"
|
325 |
+
msgstr ""
|
326 |
+
|
327 |
+
# @ captcha
|
328 |
+
#: bws_functions.php:607
|
329 |
+
#, fuzzy
|
330 |
+
msgid "Configure Settings"
|
331 |
+
msgstr "Configurações"
|
332 |
+
|
333 |
+
#: bws_functions.php:610
|
334 |
+
msgid "Add New"
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: bws_functions.php:614
|
338 |
+
msgid "Close notice"
|
339 |
+
msgstr ""
|
340 |
+
|
341 |
+
#: bws_functions.php:667
|
342 |
+
msgid "Add BWS shortcode"
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
#: bws_functions.php:711
|
346 |
msgid "Close"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: bws_functions.php:802
|
|
|
350 |
msgid "Restore all plugin settings to defaults"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: bws_functions.php:804
|
|
|
354 |
msgid "Restore settings"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: bws_functions.php:815
|
358 |
msgid "Are you sure you want to restore all settings by default?"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: bws_functions.php:818
|
362 |
msgid "Yes, restore all settings"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: bws_functions.php:819
|
366 |
msgid "No, go back to the settings page"
|
367 |
msgstr ""
|
368 |
|
369 |
# @ captcha
|
370 |
+
#: bws_functions.php:863
|
371 |
+
#, fuzzy
|
372 |
+
msgid "Plugin"
|
373 |
+
msgstr "Plugins Pro"
|
374 |
+
|
375 |
+
# @ captcha
|
376 |
+
#: bws_functions.php:872
|
377 |
+
#, fuzzy
|
378 |
+
msgid "Shortcode settings"
|
379 |
+
msgstr "Configurações"
|
380 |
+
|
381 |
+
#: bws_functions.php:877
|
382 |
+
msgid "The shortcode will be inserted"
|
383 |
+
msgstr ""
|
384 |
+
|
385 |
+
#: bws_functions.php:882
|
386 |
+
msgid "Insert"
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
+
# @ captcha
|
390 |
+
#: bws_menu.php:498
|
391 |
msgid "Not set"
|
392 |
msgstr "Não definido"
|
393 |
|
394 |
# @ captcha
|
395 |
+
#: bws_menu.php:500
|
396 |
+
#: bws_menu.php:501
|
397 |
msgid "On"
|
398 |
msgstr "Ligado"
|
399 |
|
400 |
# @ captcha
|
401 |
+
#: bws_menu.php:500
|
402 |
+
#: bws_menu.php:501
|
403 |
msgid "Off"
|
404 |
msgstr "Desligado"
|
405 |
|
406 |
# @ captcha
|
407 |
+
#: bws_menu.php:502
|
408 |
+
#: bws_menu.php:503
|
409 |
+
#: bws_menu.php:504
|
410 |
+
#: bws_menu.php:505
|
411 |
+
#: bws_menu.php:506
|
412 |
+
#: bws_menu.php:518
|
413 |
msgid "N/A"
|
414 |
msgstr "N/D"
|
415 |
|
416 |
# @ captcha
|
417 |
+
#: bws_menu.php:506
|
418 |
msgid " Mb"
|
419 |
msgstr " Mb"
|
420 |
|
421 |
# @ captcha
|
422 |
+
#: bws_menu.php:507
|
423 |
+
#: bws_menu.php:508
|
424 |
+
#: bws_menu.php:509
|
425 |
+
#: bws_menu.php:514
|
426 |
msgid "Yes"
|
427 |
msgstr "Sim"
|
428 |
|
429 |
# @ captcha
|
430 |
+
#: bws_menu.php:507
|
431 |
+
#: bws_menu.php:508
|
432 |
+
#: bws_menu.php:509
|
433 |
+
#: bws_menu.php:516
|
434 |
msgid "No"
|
435 |
msgstr "Não"
|
436 |
|
437 |
# @ captcha
|
438 |
+
#: bws_menu.php:526
|
439 |
msgid "Operating System"
|
440 |
msgstr "Sistema Operacional"
|
441 |
|
442 |
# @ captcha
|
443 |
+
#: bws_menu.php:527
|
444 |
msgid "Server"
|
445 |
msgstr "Servidor"
|
446 |
|
447 |
# @ captcha
|
448 |
+
#: bws_menu.php:528
|
449 |
msgid "Memory usage"
|
450 |
msgstr "Uso de memória"
|
451 |
|
452 |
# @ captcha
|
453 |
+
#: bws_menu.php:529
|
454 |
msgid "MYSQL Version"
|
455 |
msgstr "Versão do MySQL"
|
456 |
|
457 |
# @ captcha
|
458 |
+
#: bws_menu.php:530
|
459 |
msgid "SQL Mode"
|
460 |
msgstr "Modo SQL"
|
461 |
|
462 |
# @ captcha
|
463 |
+
#: bws_menu.php:531
|
464 |
msgid "PHP Version"
|
465 |
msgstr "Versão do PHP"
|
466 |
|
467 |
# @ captcha
|
468 |
+
#: bws_menu.php:532
|
469 |
msgid "PHP Safe Mode"
|
470 |
msgstr "Modo de Segurança do PHP"
|
471 |
|
472 |
# @ captcha
|
473 |
+
#: bws_menu.php:533
|
474 |
msgid "PHP Allow URL fopen"
|
475 |
msgstr "Permissão de fopen de URL do PHP"
|
476 |
|
477 |
# @ captcha
|
478 |
+
#: bws_menu.php:534
|
479 |
msgid "PHP Memory Limit"
|
480 |
msgstr "Limite de Memória do PHP"
|
481 |
|
482 |
# @ captcha
|
483 |
+
#: bws_menu.php:535
|
484 |
msgid "PHP Max Upload Size"
|
485 |
msgstr "Tamanho Máximo de Upload no PHP"
|
486 |
|
487 |
# @ captcha
|
488 |
+
#: bws_menu.php:536
|
489 |
msgid "PHP Max Post Size"
|
490 |
msgstr "Tamanho Máximo de Envio do PHP"
|
491 |
|
492 |
# @ captcha
|
493 |
+
#: bws_menu.php:537
|
494 |
msgid "PHP Max Script Execute Time"
|
495 |
msgstr "Tempo de Execução Máximo do PHP"
|
496 |
|
497 |
# @ captcha
|
498 |
+
#: bws_menu.php:538
|
499 |
msgid "PHP Exif support"
|
500 |
msgstr "Suporte a Exif no PHP"
|
501 |
|
502 |
# @ captcha
|
503 |
+
#: bws_menu.php:539
|
504 |
msgid "PHP IPTC support"
|
505 |
msgstr "Suporte da IPTC no PHP"
|
506 |
|
507 |
# @ captcha
|
508 |
+
#: bws_menu.php:540
|
509 |
msgid "PHP XML support"
|
510 |
msgstr "Suporte a XML no PHP"
|
511 |
|
512 |
# @ captcha
|
513 |
+
#: bws_menu.php:541
|
514 |
msgid "Site URL"
|
515 |
msgstr "URL do Site"
|
516 |
|
517 |
# @ captcha
|
518 |
+
#: bws_menu.php:542
|
519 |
msgid "Home URL"
|
520 |
msgstr "URL da Página Inicial"
|
521 |
|
522 |
# @ captcha
|
523 |
+
#: bws_menu.php:545
|
524 |
msgid "WordPress Version"
|
525 |
msgstr "Versão do WordPress"
|
526 |
|
527 |
# @ captcha
|
528 |
+
#: bws_menu.php:546
|
529 |
msgid "WordPress DB Version"
|
530 |
msgstr "Versão do DB do WordPress"
|
531 |
|
532 |
# @ captcha
|
533 |
+
#: bws_menu.php:547
|
534 |
msgid "Multisite"
|
535 |
msgstr "Multisite"
|
536 |
|
537 |
# @ captcha
|
538 |
+
#: bws_menu.php:548
|
539 |
msgid "Active Theme"
|
540 |
msgstr "Tema Ativo"
|
541 |
|
542 |
# @ captcha
|
543 |
+
#: bws_menu.php:563
|
544 |
msgid "Please enter a valid email address."
|
545 |
msgstr "Por favor, informe um endereço de email válido."
|
546 |
|
547 |
# @ captcha
|
548 |
+
#: bws_menu.php:567
|
549 |
msgid "Email with system info is sent to "
|
550 |
msgstr "Email com informações do sistema é enviado para "
|
551 |
|
552 |
# @ captcha
|
553 |
+
#: bws_menu.php:571
|
554 |
msgid "Thank you for contacting us."
|
555 |
msgstr "Obrigado por nos contatar."
|
556 |
|
557 |
# @ captcha
|
558 |
+
#: bws_menu.php:604
|
559 |
msgid "Sorry, email message could not be delivered."
|
560 |
msgstr "Desculpe, a mensagem de email não pôde ser enviada."
|
561 |
|
562 |
+
#: bws_menu.php:612
|
563 |
msgid "Need help?"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: bws_menu.php:613
|
567 |
msgid "Client area"
|
568 |
msgstr ""
|
569 |
|
570 |
# @ captcha
|
571 |
+
#: bws_menu.php:614
|
572 |
+
#: bws_menu.php:925
|
573 |
msgid "System status"
|
574 |
msgstr "Status do sistema"
|
575 |
|
576 |
# @ captcha
|
577 |
+
#: bws_menu.php:619
|
578 |
#, fuzzy
|
579 |
msgid "Plugins"
|
580 |
msgstr "Plugins Pro"
|
581 |
|
582 |
+
#: bws_menu.php:621
|
583 |
msgid "Themes"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: bws_menu.php:626
|
587 |
msgid "All"
|
588 |
msgstr ""
|
589 |
|
590 |
# @ default
|
591 |
+
#: bws_menu.php:627
|
592 |
#, fuzzy
|
593 |
msgid "Installed"
|
594 |
msgstr "Instalar %s"
|
595 |
|
596 |
# @ captcha
|
597 |
+
#: bws_menu.php:628
|
598 |
#, fuzzy
|
599 |
msgid "Recommended"
|
600 |
msgstr "Plugins Recomendados"
|
601 |
|
602 |
# @ captcha
|
603 |
+
#: bws_menu.php:632
|
604 |
msgid "Installed plugins"
|
605 |
msgstr "Plugins Instalados"
|
606 |
|
607 |
# @ captcha
|
608 |
+
#: bws_menu.php:664
|
609 |
+
#: bws_menu.php:713
|
610 |
msgid "Settings"
|
611 |
msgstr "Configurações"
|
612 |
|
613 |
# @ captcha
|
614 |
+
#: bws_menu.php:685
|
615 |
+
#: bws_menu.php:742
|
616 |
#, fuzzy
|
617 |
msgid "Activate this plugin"
|
618 |
msgstr "Plugins ativados"
|
619 |
|
620 |
+
#: bws_menu.php:700
|
621 |
+
#: bws_menu.php:730
|
622 |
+
#: bws_menu.php:776
|
623 |
msgid "Go"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: bws_menu.php:704
|
627 |
+
#: bws_menu.php:734
|
628 |
+
#: bws_menu.php:780
|
629 |
msgid "DONATE"
|
630 |
msgstr ""
|
631 |
|
632 |
# @ captcha
|
633 |
+
#: bws_menu.php:750
|
634 |
msgid "Recommended plugins"
|
635 |
msgstr "Plugins Recomendados"
|
636 |
|
637 |
# @ default
|
638 |
+
#: bws_menu.php:788
|
639 |
#, fuzzy
|
640 |
msgid "Install now"
|
641 |
msgstr "Instalar %s"
|
642 |
|
643 |
+
#: bws_menu.php:809
|
644 |
msgid "Try again"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: bws_menu.php:827
|
648 |
#, php-format
|
649 |
msgid "Preview “%s”"
|
650 |
msgstr ""
|
651 |
|
652 |
# @ default
|
653 |
+
#: bws_menu.php:858
|
654 |
#, php-format
|
655 |
msgid "Install %s"
|
656 |
msgstr "Instalar %s"
|
657 |
|
658 |
# @ default
|
659 |
+
#: bws_menu.php:858
|
660 |
#, fuzzy
|
661 |
msgid "Install Now"
|
662 |
msgstr "Instalar %s"
|
663 |
|
664 |
+
#: bws_menu.php:861
|
665 |
#, php-format
|
666 |
msgid "Update to version %s"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: bws_menu.php:861
|
670 |
msgid "Update"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: bws_menu.php:868
|
674 |
#, php-format
|
675 |
msgid "Preview %s"
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: bws_menu.php:868
|
679 |
msgid "Preview"
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: bws_menu.php:874
|
683 |
+
#: bws_menu.php:906
|
684 |
#, php-format
|
685 |
msgid "By %s"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: bws_menu.php:880
|
689 |
msgid "Details"
|
690 |
msgstr ""
|
691 |
|
692 |
# @ default
|
693 |
+
#: bws_menu.php:912
|
694 |
#, fuzzy
|
695 |
msgid "Already Installed"
|
696 |
msgstr "Instalar %s"
|
697 |
|
698 |
# @ captcha
|
699 |
+
#: bws_menu.php:928
|
700 |
msgid "Environment"
|
701 |
msgstr "Ambiente"
|
702 |
|
703 |
# @ captcha
|
704 |
+
#: bws_menu.php:939
|
705 |
msgid "Active Plugins"
|
706 |
msgstr "Plugins Ativos"
|
707 |
|
708 |
# @ captcha
|
709 |
+
#: bws_menu.php:952
|
710 |
msgid "Inactive Plugins"
|
711 |
msgstr "Plugins Inativos"
|
712 |
|
713 |
# @ captcha
|
714 |
+
#: bws_menu.php:968
|
715 |
msgid "Send to support"
|
716 |
msgstr "Enviar para o suporte"
|
717 |
|
718 |
# @ captcha
|
719 |
+
#: bws_menu.php:975
|
720 |
msgid "Send to custom email »"
|
721 |
msgstr "Enviar para email personalizado »"
|
722 |
|
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,633 @@ 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 |
-
#: bws_menu.php:
|
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-07 13:11+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-09-07 13:11+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 |
msgid "requires"
|
21 |
msgstr "требует"
|
22 |
|
23 |
+
#: bws_functions.php:31
|
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:32
|
28 |
msgid "Back to the WordPress"
|
29 |
msgstr "Вернуться к WordPress на"
|
30 |
|
31 |
+
#: bws_functions.php:34
|
32 |
msgid "Plugins page"
|
33 |
msgstr "Страницу плагинов"
|
34 |
|
35 |
+
#: bws_functions.php:91
|
36 |
msgid "It’s time to upgrade your"
|
37 |
msgstr "Настало время обновить Ваш"
|
38 |
|
39 |
+
#: bws_functions.php:91
|
40 |
msgid "to"
|
41 |
msgstr "до"
|
42 |
|
43 |
+
#: bws_functions.php:91
|
44 |
msgid "version!"
|
45 |
msgstr "версии!"
|
46 |
|
47 |
+
#: bws_functions.php:92
|
48 |
msgid "Extend standard plugin functionality with new great options."
|
49 |
msgstr "Расширяет возможности стандартного функционала плагина."
|
50 |
|
51 |
+
#: bws_functions.php:95
|
52 |
+
#: bws_functions.php:492
|
53 |
msgid "Learn More"
|
54 |
msgstr "Подробнее"
|
55 |
|
56 |
+
#: bws_functions.php:112
|
57 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
58 |
msgstr "Если вам понравился плагин, пожалуйста, поставьте нам 5 звезд на WordPress"
|
59 |
|
60 |
+
#: bws_functions.php:113
|
61 |
msgid "Rate the plugin"
|
62 |
msgstr "Оценить плагин"
|
63 |
|
64 |
+
#: bws_functions.php:116
|
65 |
msgid "If there is something wrong about it, please contact us"
|
66 |
msgstr "Если у вас есть какие-то вопросы, обращайтесь"
|
67 |
|
68 |
+
#: bws_functions.php:133
|
69 |
+
#: bws_functions.php:169
|
70 |
msgid "Wrong license key"
|
71 |
msgstr "Неправильный лицензионный ключ"
|
72 |
|
73 |
+
#: bws_functions.php:163
|
74 |
+
#: bws_functions.php:405
|
75 |
+
#: bws_functions.php:456
|
76 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
77 |
msgstr "Что-то пошло не так. Повторите попытку позже. Если ошибка появится снова, пожалуйста, свяжитесь с нами"
|
78 |
|
79 |
+
#: bws_functions.php:163
|
80 |
+
#: bws_functions.php:405
|
81 |
+
#: bws_functions.php:456
|
82 |
msgid "We are sorry for inconvenience."
|
83 |
msgstr "Приносим извинения за неудобства."
|
84 |
|
85 |
+
#: bws_functions.php:171
|
86 |
msgid "This license key is bind to another site"
|
87 |
msgstr "Этот лицензионный ключ привязан к другому сайту"
|
88 |
|
89 |
+
#: bws_functions.php:173
|
90 |
+
#: bws_functions.php:315
|
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:175
|
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:177
|
99 |
+
msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
|
100 |
+
msgstr "К сожалению, Pro лицензия уже была установлена на этом доменен. Pro Trial лицензия может быть установлена только один раз."
|
101 |
|
102 |
+
#: bws_functions.php:198
|
103 |
+
#: bws_functions.php:220
|
104 |
+
#: bws_functions.php:242
|
105 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
106 |
msgstr "Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
|
107 |
|
108 |
+
#: bws_functions.php:210
|
109 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
110 |
msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
|
111 |
|
112 |
+
#: bws_functions.php:216
|
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:223
|
117 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
118 |
msgstr "Папка загрузки не доступна для записи. Пожалуйста, загрузите плагин вручную"
|
119 |
|
120 |
+
#: bws_functions.php:246
|
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:271
|
125 |
msgid "Please, enter Your license key"
|
126 |
msgstr "Пожалуйста, введите ваш лицензионный ключ"
|
127 |
|
128 |
+
#: bws_functions.php:288
|
129 |
+
msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
|
130 |
+
msgstr "Поздравляем! Pro версия плагина была успешно загружена и активирована."
|
131 |
|
132 |
+
#: bws_functions.php:290
|
133 |
+
#: bws_functions.php:372
|
134 |
msgid "Please, go to"
|
135 |
msgstr "Пожалуйста, перейдите на"
|
136 |
|
137 |
+
#: bws_functions.php:290
|
138 |
+
#: bws_functions.php:372
|
139 |
msgid "the setting page"
|
140 |
msgstr "страницу настроек"
|
141 |
|
142 |
+
#: bws_functions.php:291
|
143 |
+
#: bws_functions.php:373
|
144 |
msgid "You will be redirected automatically in 5 seconds."
|
145 |
msgstr "Вы будете перенаправлены автоматически через 5 секунд."
|
146 |
|
147 |
+
#: bws_functions.php:296
|
148 |
msgid "You can download and activate"
|
149 |
msgstr "Вы можете скачать и активировать"
|
150 |
|
151 |
+
#: bws_functions.php:298
|
152 |
msgid "version of this plugin by entering Your license key."
|
153 |
msgstr "версию этого плагина, введя ваш лицензионный ключ."
|
154 |
|
155 |
+
#: bws_functions.php:300
|
156 |
+
#: bws_functions.php:341
|
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:302
|
161 |
+
#: bws_functions.php:343
|
162 |
msgid "(your username is the email you specify when purchasing the product)."
|
163 |
msgstr "(ваше имя пользователя - это электронный адрес, указанный при покупке продукта)."
|
164 |
|
165 |
+
#: bws_functions.php:306
|
166 |
+
#: bws_functions.php:609
|
167 |
msgid "or"
|
168 |
msgstr "или"
|
169 |
|
170 |
+
#: bws_functions.php:306
|
171 |
#, php-format
|
172 |
msgid "Start Your Free %s-Day Trial Now"
|
173 |
msgstr "Попробуйте %s-дневную Trial версию бесплатно"
|
174 |
|
175 |
+
#: bws_functions.php:312
|
176 |
+
#: bws_functions.php:321
|
177 |
+
#: bws_functions.php:351
|
178 |
+
#: bws_functions.php:359
|
179 |
+
#: bws_menu.php:685
|
180 |
+
#: bws_menu.php:742
|
181 |
msgid "Activate"
|
182 |
msgstr "Активировать"
|
183 |
|
184 |
+
#: bws_functions.php:338
|
185 |
+
#: bws_functions.php:431
|
186 |
#, php-format
|
187 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
188 |
msgstr "Чтобы продолжить пользоваться плагином, необходимо приобрести %s лицензию."
|
189 |
|
190 |
+
#: bws_functions.php:339
|
191 |
msgid "After that you can activate it by entering your license key."
|
192 |
msgstr "После этого вы сможете активировать его введя лицензионный ключ."
|
193 |
|
194 |
+
#: bws_functions.php:353
|
195 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
196 |
msgstr "К сожалению, вы превысили количество доступных попыток."
|
197 |
|
198 |
+
#: bws_functions.php:370
|
199 |
+
msgid "Congratulations! The Pro license of the plugin is successfully activated."
|
200 |
+
msgstr "Поздравляем! Pro версия плагина была успешно активирована."
|
201 |
|
202 |
+
#: bws_functions.php:411
|
203 |
msgid "Wrong license key."
|
204 |
msgstr "Неправильный лицензионный ключ."
|
205 |
|
206 |
+
#: bws_functions.php:413
|
207 |
msgid "This license key is bind to another site."
|
208 |
msgstr "Этот лицензионный ключ привязан к другому сайту."
|
209 |
|
210 |
+
#: bws_functions.php:415
|
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 "Лицензионный ключ принят, но срок действия лицензии истек. Если вы хотите обновлять плагин в будущем, вы должны продлить лицензию."
|
213 |
|
214 |
+
#: bws_functions.php:417
|
215 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
216 |
msgstr "К сожалению, вы превысили количество доступных попыток."
|
217 |
|
218 |
+
#: bws_functions.php:419
|
219 |
+
msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
|
220 |
+
msgstr "К сожалению, Pro Trial версия плагина уже устанавливалась на этот домен. Pro Trial версию можно устанавливать лишь один раз."
|
221 |
|
222 |
+
#: bws_functions.php:423
|
223 |
+
msgid "The Pro Trial license key is valid."
|
224 |
+
msgstr "Ключ Pro Trial версии действителен."
|
225 |
|
226 |
+
#: bws_functions.php:425
|
227 |
msgid "The license key is valid."
|
228 |
msgstr "Лицензионный ключ действителен."
|
229 |
|
230 |
+
#: bws_functions.php:428
|
231 |
msgid "Your license will expire on"
|
232 |
msgstr "Ваша лицензия истечет"
|
233 |
|
234 |
+
#: bws_functions.php:461
|
235 |
msgid "Please, enter your license key"
|
236 |
msgstr "Пожалуйста, введите Ваш лицензионный ключ"
|
237 |
|
238 |
+
#: bws_functions.php:474
|
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 "При необходимости вы можете проверить валидность лицензионного ключа или повторно ввести его в поле ниже. Вы можете найти ваш лицензионный ключ на своей личной странице - Client area - на нашем сайте"
|
241 |
|
242 |
+
#: bws_functions.php:474
|
243 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
244 |
+
msgstr "(ваш пользователь это емейл, который вы указывали при покупке продукта). При необходимости нажмите \"Забыли пароль?\"."
|
245 |
|
246 |
+
#: bws_functions.php:478
|
247 |
msgid "Check license key"
|
248 |
msgstr "Проверка лицензионного ключа"
|
249 |
|
250 |
+
#: bws_functions.php:492
|
251 |
msgid "WARNING: Illegal use notification"
|
252 |
msgstr "ВНИМАНИЕ: уведомление о незаконном использовании"
|
253 |
|
254 |
+
#: bws_functions.php:492
|
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 "Вы можете использовать одну лицензию Pro плагина только для одного домена. Пожалуйста, проверьте и отредактируйте при необходимости лицензию или домен, используя Ваш личный Client Area. Мы настоятельно рекомендуем вам решить проблему в течение 24 часов, в противном случае плагин будет деактивирован."
|
257 |
|
258 |
+
#: bws_functions.php:500
|
259 |
+
msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
|
260 |
+
msgstr "Внимание: Срок действия Pro Trial версии истек. Чтобы продолжить пользоваться плагином, пожалуйста, приобретите лицензию Pro"
|
261 |
|
262 |
+
#: bws_functions.php:502
|
263 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
264 |
msgstr "Время использования вашей лицензии истекло. Если вы хотите обновлять ваш плагин в дальнейшем и иметь приоритетную тех.поддержку, то вам нужно продлить лицензию."
|
265 |
|
266 |
+
#: bws_functions.php:502
|
267 |
+
#: bws_functions.php:555
|
268 |
+
#: bws_menu.php:661
|
269 |
+
#: bws_menu.php:683
|
270 |
+
#: bws_menu.php:710
|
271 |
+
#: bws_menu.php:740
|
272 |
+
#: bws_menu.php:786
|
273 |
msgid "Learn more"
|
274 |
msgstr "Подробнее"
|
275 |
|
276 |
+
#: bws_functions.php:512
|
277 |
#, php-format
|
278 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
279 |
+
msgstr "Внимание: Вы используете Pro Trial версию плагина %s."
|
280 |
|
281 |
+
#: bws_functions.php:514
|
282 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
283 |
+
msgstr "Внимание: Вы используете Pro Trial версию плагина."
|
284 |
|
285 |
+
#: bws_functions.php:517
|
286 |
+
msgid "The Pro Trial license will expire on"
|
287 |
+
msgstr "Ваша лицензия Pro Trial версии плагина истекает"
|
288 |
|
289 |
+
#: bws_functions.php:555
|
290 |
msgid "You license for"
|
291 |
msgstr "Ваш лицензионный ключ для"
|
292 |
|
293 |
+
#: bws_functions.php:555
|
294 |
msgid "expires on"
|
295 |
msgstr "истекает"
|
296 |
|
297 |
+
#: bws_functions.php:555
|
298 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
299 |
msgstr "и вы не будете получать приоритетную тех.поддержку или обновления."
|
300 |
|
301 |
+
#: bws_functions.php:605
|
302 |
+
msgid "Thank you for installing"
|
303 |
+
msgstr "Спасибо за установку"
|
304 |
+
|
305 |
+
#: bws_functions.php:606
|
306 |
+
msgid "Let's get started"
|
307 |
+
msgstr "Давайте начнем"
|
308 |
+
|
309 |
+
#: bws_functions.php:607
|
310 |
+
msgid "Configure Settings"
|
311 |
+
msgstr "Настройка параметров"
|
312 |
+
|
313 |
+
#: bws_functions.php:610
|
314 |
+
msgid "Add New"
|
315 |
+
msgstr "Добавить"
|
316 |
+
|
317 |
+
#: bws_functions.php:614
|
318 |
+
msgid "Close notice"
|
319 |
+
msgstr "Закрыть"
|
320 |
+
|
321 |
+
#: bws_functions.php:667
|
322 |
+
msgid "Add BWS shortcode"
|
323 |
+
msgstr "Добавить BWS шорткод"
|
324 |
+
|
325 |
+
#: bws_functions.php:711
|
326 |
msgid "Close"
|
327 |
msgstr "Закрыть"
|
328 |
|
329 |
+
#: bws_functions.php:802
|
|
|
330 |
msgid "Restore all plugin settings to defaults"
|
331 |
+
msgstr "Восстановить все настройки плагина к настройкам по умолчанию"
|
332 |
|
333 |
+
#: bws_functions.php:804
|
|
|
334 |
msgid "Restore settings"
|
335 |
msgstr "Восстановить настройки"
|
336 |
|
337 |
+
#: bws_functions.php:815
|
338 |
msgid "Are you sure you want to restore all settings by default?"
|
339 |
+
msgstr "Вы уверены что хотите восстановить все настройки плагина к настройкам по умолчанию?"
|
340 |
|
341 |
+
#: bws_functions.php:818
|
342 |
msgid "Yes, restore all settings"
|
343 |
msgstr "Да, восстановить все настройки"
|
344 |
|
345 |
+
#: bws_functions.php:819
|
346 |
msgid "No, go back to the settings page"
|
347 |
+
msgstr "Нет, вернуться на страницу настроек"
|
348 |
+
|
349 |
+
#: bws_functions.php:863
|
350 |
+
msgid "Plugin"
|
351 |
+
msgstr "Плагин"
|
352 |
+
|
353 |
+
#: bws_functions.php:872
|
354 |
+
msgid "Shortcode settings"
|
355 |
+
msgstr "Настройки шорткода"
|
356 |
+
|
357 |
+
#: bws_functions.php:877
|
358 |
+
msgid "The shortcode will be inserted"
|
359 |
+
msgstr "Будет вставлен шорткод"
|
360 |
+
|
361 |
+
#: bws_functions.php:882
|
362 |
+
msgid "Insert"
|
363 |
+
msgstr "Вставить"
|
364 |
|
365 |
+
#: bws_menu.php:498
|
366 |
msgid "Not set"
|
367 |
msgstr "Не задан"
|
368 |
|
369 |
+
#: bws_menu.php:500
|
370 |
+
#: bws_menu.php:501
|
371 |
msgid "On"
|
372 |
msgstr "Вкл"
|
373 |
|
374 |
+
#: bws_menu.php:500
|
375 |
+
#: bws_menu.php:501
|
376 |
msgid "Off"
|
377 |
msgstr "Выкл"
|
378 |
|
379 |
+
#: bws_menu.php:502
|
380 |
+
#: bws_menu.php:503
|
381 |
+
#: bws_menu.php:504
|
382 |
+
#: bws_menu.php:505
|
383 |
+
#: bws_menu.php:506
|
384 |
+
#: bws_menu.php:518
|
385 |
msgid "N/A"
|
386 |
msgstr "Неизвестно"
|
387 |
|
388 |
+
#: bws_menu.php:506
|
389 |
msgid " Mb"
|
390 |
msgstr "Mb"
|
391 |
|
392 |
+
#: bws_menu.php:507
|
393 |
+
#: bws_menu.php:508
|
394 |
+
#: bws_menu.php:509
|
395 |
+
#: bws_menu.php:514
|
396 |
msgid "Yes"
|
397 |
msgstr "Да"
|
398 |
|
399 |
+
#: bws_menu.php:507
|
400 |
+
#: bws_menu.php:508
|
401 |
+
#: bws_menu.php:509
|
402 |
+
#: bws_menu.php:516
|
403 |
msgid "No"
|
404 |
msgstr "Нет"
|
405 |
|
406 |
+
#: bws_menu.php:526
|
407 |
msgid "Operating System"
|
408 |
msgstr "Операционная система"
|
409 |
|
410 |
+
#: bws_menu.php:527
|
411 |
msgid "Server"
|
412 |
msgstr "Тип сервера"
|
413 |
|
414 |
+
#: bws_menu.php:528
|
415 |
msgid "Memory usage"
|
416 |
msgstr "Памяти использовано"
|
417 |
|
418 |
+
#: bws_menu.php:529
|
419 |
msgid "MYSQL Version"
|
420 |
msgstr "Версия MYSQL"
|
421 |
|
422 |
+
#: bws_menu.php:530
|
423 |
msgid "SQL Mode"
|
424 |
msgstr "Режим SQL"
|
425 |
|
426 |
+
#: bws_menu.php:531
|
427 |
msgid "PHP Version"
|
428 |
msgstr "Версия PHP"
|
429 |
|
430 |
+
#: bws_menu.php:532
|
431 |
msgid "PHP Safe Mode"
|
432 |
msgstr "PHP Safe Mode"
|
433 |
|
434 |
+
#: bws_menu.php:533
|
435 |
msgid "PHP Allow URL fopen"
|
436 |
msgstr "PHP Allow URL fopen"
|
437 |
|
438 |
+
#: bws_menu.php:534
|
439 |
msgid "PHP Memory Limit"
|
440 |
msgstr "Лимит памяти"
|
441 |
|
442 |
+
#: bws_menu.php:535
|
443 |
msgid "PHP Max Upload Size"
|
444 |
msgstr "Макс. размер загружаемого файла"
|
445 |
|
446 |
+
#: bws_menu.php:536
|
447 |
msgid "PHP Max Post Size"
|
448 |
msgstr "Макс. размер записи"
|
449 |
|
450 |
+
#: bws_menu.php:537
|
451 |
msgid "PHP Max Script Execute Time"
|
452 |
msgstr "Макс. время выполнения сценария"
|
453 |
|
454 |
+
#: bws_menu.php:538
|
455 |
msgid "PHP Exif support"
|
456 |
msgstr "Поддержка PHP Exif"
|
457 |
|
458 |
+
#: bws_menu.php:539
|
459 |
msgid "PHP IPTC support"
|
460 |
msgstr "Поддержка PHP IPTC"
|
461 |
|
462 |
+
#: bws_menu.php:540
|
463 |
msgid "PHP XML support"
|
464 |
msgstr "Поддержка PHP XML"
|
465 |
|
466 |
+
#: bws_menu.php:541
|
467 |
msgid "Site URL"
|
468 |
msgstr "Адрес сайта"
|
469 |
|
470 |
+
#: bws_menu.php:542
|
471 |
msgid "Home URL"
|
472 |
msgstr "Основной адрес сайта"
|
473 |
|
474 |
+
#: bws_menu.php:545
|
475 |
msgid "WordPress Version"
|
476 |
msgstr "Версия WordPress"
|
477 |
|
478 |
+
#: bws_menu.php:546
|
479 |
msgid "WordPress DB Version"
|
480 |
msgstr "Версия базы данных WordPress"
|
481 |
|
482 |
+
#: bws_menu.php:547
|
483 |
msgid "Multisite"
|
484 |
msgstr "Мультиблог"
|
485 |
|
486 |
+
#: bws_menu.php:548
|
487 |
msgid "Active Theme"
|
488 |
msgstr "Текущая тема"
|
489 |
|
490 |
+
#: bws_menu.php:563
|
491 |
msgid "Please enter a valid email address."
|
492 |
msgstr "Пожалуйста, введите валидный емайл."
|
493 |
|
494 |
+
#: bws_menu.php:567
|
495 |
msgid "Email with system info is sent to "
|
496 |
+
msgstr "Емейл с системной информацией отправлен на"
|
497 |
|
498 |
+
#: bws_menu.php:571
|
499 |
msgid "Thank you for contacting us."
|
500 |
msgstr "Спасибо что связались с нами."
|
501 |
|
502 |
+
#: bws_menu.php:604
|
503 |
msgid "Sorry, email message could not be delivered."
|
504 |
+
msgstr "Извините, ваш емейл не может быть отправлен."
|
505 |
|
506 |
+
#: bws_menu.php:612
|
507 |
msgid "Need help?"
|
508 |
msgstr "Нужна помощь?"
|
509 |
|
510 |
+
#: bws_menu.php:613
|
511 |
msgid "Client area"
|
512 |
msgstr "Client area"
|
513 |
|
514 |
+
#: bws_menu.php:614
|
515 |
+
#: bws_menu.php:925
|
516 |
msgid "System status"
|
517 |
msgstr "Системная информация"
|
518 |
|
519 |
+
#: bws_menu.php:619
|
520 |
msgid "Plugins"
|
521 |
msgstr "Плагины"
|
522 |
|
523 |
+
#: bws_menu.php:621
|
524 |
msgid "Themes"
|
525 |
msgstr "Темы"
|
526 |
|
527 |
+
#: bws_menu.php:626
|
528 |
msgid "All"
|
529 |
msgstr "Все"
|
530 |
|
531 |
+
#: bws_menu.php:627
|
532 |
msgid "Installed"
|
533 |
msgstr "Установленные"
|
534 |
|
535 |
+
#: bws_menu.php:628
|
536 |
msgid "Recommended"
|
537 |
msgstr "Рекомендованные"
|
538 |
|
539 |
+
#: bws_menu.php:632
|
540 |
msgid "Installed plugins"
|
541 |
msgstr "Установленные плагины"
|
542 |
|
543 |
+
#: bws_menu.php:664
|
544 |
+
#: bws_menu.php:713
|
545 |
msgid "Settings"
|
546 |
msgstr "Настройки"
|
547 |
|
548 |
+
#: bws_menu.php:685
|
549 |
+
#: bws_menu.php:742
|
550 |
msgid "Activate this plugin"
|
551 |
msgstr "Активировать плагин"
|
552 |
|
553 |
+
#: bws_menu.php:700
|
554 |
+
#: bws_menu.php:730
|
555 |
+
#: bws_menu.php:776
|
556 |
msgid "Go"
|
557 |
msgstr "Перейти на"
|
558 |
|
559 |
+
#: bws_menu.php:704
|
560 |
+
#: bws_menu.php:734
|
561 |
+
#: bws_menu.php:780
|
562 |
msgid "DONATE"
|
563 |
msgstr "Пожертвовать"
|
564 |
|
565 |
+
#: bws_menu.php:750
|
566 |
msgid "Recommended plugins"
|
567 |
msgstr "Рекомендованные к установке плагины"
|
568 |
|
569 |
+
#: bws_menu.php:788
|
570 |
msgid "Install now"
|
571 |
msgstr "Установить"
|
572 |
|
573 |
+
#: bws_menu.php:809
|
574 |
msgid "Try again"
|
575 |
msgstr "Попробовать снова"
|
576 |
|
577 |
+
#: bws_menu.php:827
|
578 |
#, php-format
|
579 |
msgid "Preview “%s”"
|
580 |
msgstr "Просмотр “%s”"
|
581 |
|
582 |
+
#: bws_menu.php:858
|
583 |
#, php-format
|
584 |
msgid "Install %s"
|
585 |
msgstr "Установлено %s"
|
586 |
|
587 |
+
#: bws_menu.php:858
|
588 |
msgid "Install Now"
|
589 |
msgstr "Установить"
|
590 |
|
591 |
+
#: bws_menu.php:861
|
592 |
#, php-format
|
593 |
msgid "Update to version %s"
|
594 |
msgstr "Обновить до версии %s"
|
595 |
|
596 |
+
#: bws_menu.php:861
|
597 |
msgid "Update"
|
598 |
msgstr "Обновить"
|
599 |
|
600 |
+
#: bws_menu.php:868
|
601 |
#, php-format
|
602 |
msgid "Preview %s"
|
603 |
msgstr "Просмотр %s"
|
604 |
|
605 |
+
#: bws_menu.php:868
|
606 |
msgid "Preview"
|
607 |
msgstr "Просмотр"
|
608 |
|
609 |
+
#: bws_menu.php:874
|
610 |
+
#: bws_menu.php:906
|
611 |
#, php-format
|
612 |
msgid "By %s"
|
613 |
msgstr "%s"
|
614 |
|
615 |
+
#: bws_menu.php:880
|
616 |
msgid "Details"
|
617 |
msgstr "Детали"
|
618 |
|
619 |
+
#: bws_menu.php:912
|
620 |
msgid "Already Installed"
|
621 |
msgstr "Уже установлена"
|
622 |
|
623 |
+
#: bws_menu.php:928
|
624 |
msgid "Environment"
|
625 |
msgstr "Системная среда"
|
626 |
|
627 |
+
#: bws_menu.php:939
|
628 |
msgid "Active Plugins"
|
629 |
msgstr "Активированные плагины"
|
630 |
|
631 |
+
#: bws_menu.php:952
|
632 |
msgid "Inactive Plugins"
|
633 |
msgstr "Неактивированные плагины"
|
634 |
|
635 |
+
#: bws_menu.php:968
|
636 |
msgid "Send to support"
|
637 |
msgstr "Отправить в тех. поддержку"
|
638 |
|
639 |
+
#: bws_menu.php:975
|
640 |
msgid "Send to custom email »"
|
641 |
msgstr "Отправить на емейл »"
|
642 |
|
643 |
+
#~ msgid "Select Plugin"
|
644 |
+
#~ msgstr "Выберите плагин"
|
645 |
+
|
646 |
#~ msgid ""
|
647 |
#~ "(your username is the email you specify when purchasing the product), "
|
648 |
#~ "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,655 @@ 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 |
|
@@ -998,9 +1041,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-07 13:11+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-09-07 13:11+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 |
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 "Pro moduli"
|
36 |
|
37 |
+
#: bws_functions.php:91
|
38 |
msgid "It’s time to upgrade your"
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: bws_functions.php:91
|
42 |
#, fuzzy
|
43 |
msgid "to"
|
44 |
msgstr "vrh"
|
45 |
|
46 |
+
#: bws_functions.php:91
|
47 |
#, fuzzy
|
48 |
msgid "version!"
|
49 |
msgstr "PHP Verzija"
|
50 |
|
51 |
+
#: bws_functions.php:92
|
52 |
msgid "Extend standard plugin functionality with new great options."
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: bws_functions.php:95
|
56 |
+
#: bws_functions.php:492
|
57 |
#, fuzzy
|
58 |
msgid "Learn More"
|
59 |
msgstr "Pročitaj više"
|
60 |
|
61 |
+
#: bws_functions.php:112
|
62 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: bws_functions.php:113
|
66 |
#, fuzzy
|
67 |
msgid "Rate the plugin"
|
68 |
msgstr "Aktivirani moduli"
|
69 |
|
70 |
+
#: bws_functions.php:116
|
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:133
|
76 |
+
#: bws_functions.php:169
|
77 |
msgid "Wrong license key"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: bws_functions.php:163
|
81 |
+
#: bws_functions.php:405
|
82 |
+
#: bws_functions.php:456
|
83 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: bws_functions.php:163
|
87 |
+
#: bws_functions.php:405
|
88 |
+
#: bws_functions.php:456
|
89 |
msgid "We are sorry for inconvenience."
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: bws_functions.php:171
|
93 |
msgid "This license key is bind to another site"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: bws_functions.php:173
|
97 |
+
#: bws_functions.php:315
|
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:175
|
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:177
|
106 |
+
msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: bws_functions.php:198
|
110 |
+
#: bws_functions.php:220
|
111 |
+
#: bws_functions.php:242
|
112 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: bws_functions.php:210
|
116 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: bws_functions.php:216
|
120 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: bws_functions.php:223
|
124 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: bws_functions.php:246
|
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:271
|
132 |
msgid "Please, enter Your license key"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: bws_functions.php:288
|
136 |
+
msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: bws_functions.php:290
|
140 |
+
#: bws_functions.php:372
|
141 |
msgid "Please, go to"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: bws_functions.php:290
|
145 |
+
#: bws_functions.php:372
|
146 |
#, fuzzy
|
147 |
msgid "the setting page"
|
148 |
msgstr "na stranici za podešavanje modula ("
|
149 |
|
150 |
+
#: bws_functions.php:291
|
151 |
+
#: bws_functions.php:373
|
152 |
msgid "You will be redirected automatically in 5 seconds."
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: bws_functions.php:296
|
156 |
msgid "You can download and activate"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: bws_functions.php:298
|
160 |
msgid "version of this plugin by entering Your license key."
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: bws_functions.php:300
|
164 |
+
#: bws_functions.php:341
|
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:302
|
169 |
+
#: bws_functions.php:343
|
170 |
msgid "(your username is the email you specify when purchasing the product)."
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: bws_functions.php:306
|
174 |
+
#: bws_functions.php:609
|
175 |
msgid "or"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: bws_functions.php:306
|
179 |
#, php-format
|
180 |
msgid "Start Your Free %s-Day Trial Now"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: bws_functions.php:312
|
184 |
+
#: bws_functions.php:321
|
185 |
+
#: bws_functions.php:351
|
186 |
+
#: bws_functions.php:359
|
187 |
+
#: bws_menu.php:685
|
188 |
+
#: bws_menu.php:742
|
189 |
#, fuzzy
|
190 |
msgid "Activate"
|
191 |
msgstr "Aktivirani moduli"
|
192 |
|
193 |
+
#: bws_functions.php:338
|
194 |
+
#: bws_functions.php:431
|
195 |
#, php-format
|
196 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: bws_functions.php:339
|
200 |
msgid "After that you can activate it by entering your license key."
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: bws_functions.php:353
|
204 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: bws_functions.php:370
|
208 |
+
msgid "Congratulations! The Pro license of the plugin is successfully activated."
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: bws_functions.php:411
|
212 |
msgid "Wrong license key."
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: bws_functions.php:413
|
216 |
msgid "This license key is bind to another site."
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: bws_functions.php:415
|
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 ""
|
222 |
|
223 |
+
#: bws_functions.php:417
|
224 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: bws_functions.php:419
|
228 |
+
msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: bws_functions.php:423
|
232 |
+
msgid "The Pro Trial license key is valid."
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: bws_functions.php:425
|
236 |
msgid "The license key is valid."
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: bws_functions.php:428
|
240 |
msgid "Your license will expire on"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: bws_functions.php:461
|
244 |
msgid "Please, enter your license key"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: bws_functions.php:474
|
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:474
|
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:478
|
256 |
msgid "Check license key"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: bws_functions.php:492
|
260 |
msgid "WARNING: Illegal use notification"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: bws_functions.php:492
|
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:500
|
268 |
+
msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: bws_functions.php:502
|
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:502
|
276 |
+
#: bws_functions.php:555
|
277 |
+
#: bws_menu.php:661
|
278 |
+
#: bws_menu.php:683
|
279 |
+
#: bws_menu.php:710
|
280 |
+
#: bws_menu.php:740
|
281 |
+
#: bws_menu.php:786
|
282 |
#, fuzzy
|
283 |
msgid "Learn more"
|
284 |
msgstr "Pročitaj više"
|
285 |
|
286 |
+
#: bws_functions.php:512
|
287 |
#, php-format
|
288 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: bws_functions.php:514
|
292 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: bws_functions.php:517
|
296 |
+
msgid "The Pro Trial license will expire on"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: bws_functions.php:555
|
300 |
msgid "You license for"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: bws_functions.php:555
|
304 |
msgid "expires on"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: bws_functions.php:555
|
308 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: bws_functions.php:605
|
312 |
+
#, fuzzy
|
313 |
+
msgid "Thank you for installing"
|
314 |
+
msgstr "Hvala što ste nas kontaktirali"
|
315 |
+
|
316 |
+
#: bws_functions.php:606
|
317 |
+
msgid "Let's get started"
|
318 |
+
msgstr ""
|
319 |
+
|
320 |
+
#: bws_functions.php:607
|
321 |
+
#, fuzzy
|
322 |
+
msgid "Configure Settings"
|
323 |
+
msgstr "na stranici za podešavanje modula ("
|
324 |
+
|
325 |
+
#: bws_functions.php:610
|
326 |
+
msgid "Add New"
|
327 |
+
msgstr "Ajouter"
|
328 |
+
|
329 |
+
#: bws_functions.php:614
|
330 |
+
msgid "Close notice"
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
#: bws_functions.php:667
|
334 |
+
msgid "Add BWS shortcode"
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: bws_functions.php:711
|
338 |
msgid "Close"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: bws_functions.php:802
|
|
|
342 |
msgid "Restore all plugin settings to defaults"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: bws_functions.php:804
|
|
|
346 |
#, fuzzy
|
347 |
msgid "Restore settings"
|
348 |
msgstr "na stranici za podešavanje modula ("
|
349 |
|
350 |
+
#: bws_functions.php:815
|
351 |
msgid "Are you sure you want to restore all settings by default?"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: bws_functions.php:818
|
355 |
msgid "Yes, restore all settings"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: bws_functions.php:819
|
359 |
#, fuzzy
|
360 |
msgid "No, go back to the settings page"
|
361 |
msgstr "na stranici za podešavanje modula ("
|
362 |
|
363 |
+
#: bws_functions.php:863
|
364 |
+
#, fuzzy
|
365 |
+
msgid "Plugin"
|
366 |
+
msgstr "Pro moduli"
|
367 |
+
|
368 |
+
#: bws_functions.php:872
|
369 |
+
#, fuzzy
|
370 |
+
msgid "Shortcode settings"
|
371 |
+
msgstr "na stranici za podešavanje modula ("
|
372 |
+
|
373 |
+
#: bws_functions.php:877
|
374 |
+
msgid "The shortcode will be inserted"
|
375 |
+
msgstr ""
|
376 |
+
|
377 |
+
#: bws_functions.php:882
|
378 |
+
msgid "Insert"
|
379 |
+
msgstr ""
|
380 |
+
|
381 |
+
#: bws_menu.php:498
|
382 |
msgid "Not set"
|
383 |
msgstr "Nije podešeno"
|
384 |
|
385 |
+
#: bws_menu.php:500
|
386 |
+
#: bws_menu.php:501
|
387 |
msgid "On"
|
388 |
msgstr "Uključeno"
|
389 |
|
390 |
+
#: bws_menu.php:500
|
391 |
+
#: bws_menu.php:501
|
392 |
msgid "Off"
|
393 |
msgstr "Isključeno"
|
394 |
|
395 |
+
#: bws_menu.php:502
|
396 |
+
#: bws_menu.php:503
|
397 |
+
#: bws_menu.php:504
|
398 |
+
#: bws_menu.php:505
|
399 |
+
#: bws_menu.php:506
|
400 |
+
#: bws_menu.php:518
|
401 |
msgid "N/A"
|
402 |
msgstr "N/A"
|
403 |
|
404 |
+
#: bws_menu.php:506
|
405 |
msgid " Mb"
|
406 |
msgstr " Mb"
|
407 |
|
408 |
+
#: bws_menu.php:507
|
409 |
+
#: bws_menu.php:508
|
410 |
+
#: bws_menu.php:509
|
411 |
+
#: bws_menu.php:514
|
412 |
msgid "Yes"
|
413 |
msgstr "Da"
|
414 |
|
415 |
+
#: bws_menu.php:507
|
416 |
+
#: bws_menu.php:508
|
417 |
+
#: bws_menu.php:509
|
418 |
+
#: bws_menu.php:516
|
419 |
msgid "No"
|
420 |
msgstr "Ne"
|
421 |
|
422 |
+
#: bws_menu.php:526
|
423 |
msgid "Operating System"
|
424 |
msgstr "Operativni Sistem"
|
425 |
|
426 |
+
#: bws_menu.php:527
|
427 |
msgid "Server"
|
428 |
msgstr "Server"
|
429 |
|
430 |
+
#: bws_menu.php:528
|
431 |
msgid "Memory usage"
|
432 |
msgstr "Upotreba memorije"
|
433 |
|
434 |
+
#: bws_menu.php:529
|
435 |
msgid "MYSQL Version"
|
436 |
msgstr "MYSQL Verzija"
|
437 |
|
438 |
+
#: bws_menu.php:530
|
439 |
msgid "SQL Mode"
|
440 |
msgstr "SQL način"
|
441 |
|
442 |
+
#: bws_menu.php:531
|
443 |
msgid "PHP Version"
|
444 |
msgstr "PHP Verzija"
|
445 |
|
446 |
+
#: bws_menu.php:532
|
447 |
msgid "PHP Safe Mode"
|
448 |
msgstr "PHP Sigurni način"
|
449 |
|
450 |
+
#: bws_menu.php:533
|
451 |
msgid "PHP Allow URL fopen"
|
452 |
msgstr "PHP Dozvoli URL fopen"
|
453 |
|
454 |
+
#: bws_menu.php:534
|
455 |
msgid "PHP Memory Limit"
|
456 |
msgstr "PHP Ograničenje memorije"
|
457 |
|
458 |
+
#: bws_menu.php:535
|
459 |
#, fuzzy
|
460 |
msgid "PHP Max Upload Size"
|
461 |
msgstr "Envoi de fichier"
|
462 |
|
463 |
+
#: bws_menu.php:536
|
464 |
msgid "PHP Max Post Size"
|
465 |
msgstr "PHP Max veličina za učitavanje"
|
466 |
|
467 |
+
#: bws_menu.php:537
|
468 |
msgid "PHP Max Script Execute Time"
|
469 |
msgstr "PHP Max veličina posta"
|
470 |
|
471 |
+
#: bws_menu.php:538
|
472 |
msgid "PHP Exif support"
|
473 |
msgstr "PHP Exif podrška"
|
474 |
|
475 |
+
#: bws_menu.php:539
|
476 |
msgid "PHP IPTC support"
|
477 |
msgstr "PHP IPTC podrška"
|
478 |
|
479 |
+
#: bws_menu.php:540
|
480 |
msgid "PHP XML support"
|
481 |
msgstr "PHP XML podrška"
|
482 |
|
483 |
+
#: bws_menu.php:541
|
484 |
#, fuzzy
|
485 |
msgid "Site URL"
|
486 |
msgstr "URL du lien"
|
487 |
|
488 |
+
#: bws_menu.php:542
|
489 |
msgid "Home URL"
|
490 |
msgstr "URL naslovne"
|
491 |
|
492 |
+
#: bws_menu.php:545
|
493 |
msgid "WordPress Version"
|
494 |
msgstr "WordPress Verzija"
|
495 |
|
496 |
+
#: bws_menu.php:546
|
497 |
msgid "WordPress DB Version"
|
498 |
msgstr "WordPress DB Verzija"
|
499 |
|
500 |
+
#: bws_menu.php:547
|
501 |
msgid "Multisite"
|
502 |
msgstr "Višenamenski sajt"
|
503 |
|
504 |
+
#: bws_menu.php:548
|
505 |
msgid "Active Theme"
|
506 |
msgstr "Aktivna tema"
|
507 |
|
508 |
+
#: bws_menu.php:563
|
509 |
msgid "Please enter a valid email address."
|
510 |
msgstr "Molimo unesite važeću mejl adresu"
|
511 |
|
512 |
+
#: bws_menu.php:567
|
513 |
msgid "Email with system info is sent to "
|
514 |
msgstr "Mejl sa sistemskim informacijama je poslat na"
|
515 |
|
516 |
+
#: bws_menu.php:571
|
517 |
msgid "Thank you for contacting us."
|
518 |
msgstr "Hvala što ste nas kontaktirali"
|
519 |
|
520 |
+
#: bws_menu.php:604
|
521 |
msgid "Sorry, email message could not be delivered."
|
522 |
msgstr "Nažalost mejl poruka nije prosleđena"
|
523 |
|
524 |
+
#: bws_menu.php:612
|
525 |
msgid "Need help?"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: bws_menu.php:613
|
529 |
msgid "Client area"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: bws_menu.php:614
|
533 |
+
#: bws_menu.php:925
|
534 |
msgid "System status"
|
535 |
msgstr "Sistemski status"
|
536 |
|
537 |
+
#: bws_menu.php:619
|
538 |
#, fuzzy
|
539 |
msgid "Plugins"
|
540 |
msgstr "Pro moduli"
|
541 |
|
542 |
+
#: bws_menu.php:621
|
543 |
msgid "Themes"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: bws_menu.php:626
|
547 |
msgid "All"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: bws_menu.php:627
|
551 |
#, fuzzy
|
552 |
msgid "Installed"
|
553 |
msgstr "Instalacija %s"
|
554 |
|
555 |
+
#: bws_menu.php:628
|
556 |
#, fuzzy
|
557 |
msgid "Recommended"
|
558 |
msgstr "Preporučeni moduli"
|
559 |
|
560 |
+
#: bws_menu.php:632
|
561 |
msgid "Installed plugins"
|
562 |
msgstr "Instalirani moduli"
|
563 |
|
564 |
+
#: bws_menu.php:664
|
565 |
+
#: bws_menu.php:713
|
566 |
msgid "Settings"
|
567 |
msgstr "Podešavanja"
|
568 |
|
569 |
+
#: bws_menu.php:685
|
570 |
+
#: bws_menu.php:742
|
571 |
#, fuzzy
|
572 |
msgid "Activate this plugin"
|
573 |
msgstr "Aktivirani moduli"
|
574 |
|
575 |
+
#: bws_menu.php:700
|
576 |
+
#: bws_menu.php:730
|
577 |
+
#: bws_menu.php:776
|
578 |
msgid "Go"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: bws_menu.php:704
|
582 |
+
#: bws_menu.php:734
|
583 |
+
#: bws_menu.php:780
|
584 |
msgid "DONATE"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: bws_menu.php:750
|
588 |
msgid "Recommended plugins"
|
589 |
msgstr "Preporučeni moduli"
|
590 |
|
591 |
+
#: bws_menu.php:788
|
592 |
#, fuzzy
|
593 |
msgid "Install now"
|
594 |
msgstr "Instalacija %s"
|
595 |
|
596 |
+
#: bws_menu.php:809
|
597 |
msgid "Try again"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: bws_menu.php:827
|
601 |
#, php-format
|
602 |
msgid "Preview “%s”"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: bws_menu.php:858
|
606 |
#, php-format
|
607 |
msgid "Install %s"
|
608 |
msgstr "Instalacija %s"
|
609 |
|
610 |
+
#: bws_menu.php:858
|
611 |
#, fuzzy
|
612 |
msgid "Install Now"
|
613 |
msgstr "Instalacija %s"
|
614 |
|
615 |
+
#: bws_menu.php:861
|
616 |
#, php-format
|
617 |
msgid "Update to version %s"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: bws_menu.php:861
|
621 |
#, fuzzy
|
622 |
msgid "Update"
|
623 |
msgstr "date"
|
624 |
|
625 |
+
#: bws_menu.php:868
|
626 |
#, php-format
|
627 |
msgid "Preview %s"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: bws_menu.php:868
|
631 |
msgid "Preview"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: bws_menu.php:874
|
635 |
+
#: bws_menu.php:906
|
636 |
#, php-format
|
637 |
msgid "By %s"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: bws_menu.php:880
|
641 |
msgid "Details"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: bws_menu.php:912
|
645 |
#, fuzzy
|
646 |
msgid "Already Installed"
|
647 |
msgstr "Instalacija %s"
|
648 |
|
649 |
+
#: bws_menu.php:928
|
650 |
msgid "Environment"
|
651 |
msgstr "Okruženje"
|
652 |
|
653 |
+
#: bws_menu.php:939
|
654 |
#, fuzzy
|
655 |
msgid "Active Plugins"
|
656 |
msgstr "Extensions activées"
|
657 |
|
658 |
+
#: bws_menu.php:952
|
659 |
#, fuzzy
|
660 |
msgid "Inactive Plugins"
|
661 |
msgstr "Extensions activées"
|
662 |
|
663 |
+
#: bws_menu.php:968
|
664 |
#, fuzzy
|
665 |
msgid "Send to support"
|
666 |
msgstr "Soutien"
|
667 |
|
668 |
+
#: bws_menu.php:975
|
669 |
msgid "Send to custom email »"
|
670 |
msgstr "Pošalji na korisnički mejl »"
|
671 |
|
1041 |
#~ msgid "Image"
|
1042 |
#~ msgstr "Slika"
|
1043 |
|
|
|
|
|
|
|
1044 |
#~ msgid "Search Galleries"
|
1045 |
#~ msgstr "Rechercher une galerie"
|
1046 |
|
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,646 @@ 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 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-07 13:12+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-09-07 13:12+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 |
msgid "requires"
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: bws_functions.php:31
|
24 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: bws_functions.php:32
|
28 |
msgid "Back to the WordPress"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: bws_functions.php:34
|
32 |
#, fuzzy
|
33 |
msgid "Plugins page"
|
34 |
msgstr "Betaltillägg"
|
35 |
|
36 |
+
#: bws_functions.php:91
|
37 |
msgid "It’s time to upgrade your"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: bws_functions.php:91
|
41 |
#, fuzzy
|
42 |
msgid "to"
|
43 |
msgstr "två"
|
44 |
|
45 |
+
#: bws_functions.php:91
|
46 |
#, fuzzy
|
47 |
msgid "version!"
|
48 |
msgstr "PHP-version"
|
49 |
|
50 |
+
#: bws_functions.php:92
|
51 |
msgid "Extend standard plugin functionality with new great options."
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: bws_functions.php:95
|
55 |
+
#: bws_functions.php:492
|
56 |
#, fuzzy
|
57 |
msgid "Learn More"
|
58 |
msgstr "Läs mer"
|
59 |
|
60 |
+
#: bws_functions.php:112
|
61 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: bws_functions.php:113
|
65 |
#, fuzzy
|
66 |
msgid "Rate the plugin"
|
67 |
msgstr "Aktiverade tillägg"
|
68 |
|
69 |
+
#: bws_functions.php:116
|
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:133
|
75 |
+
#: bws_functions.php:169
|
76 |
msgid "Wrong license key"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: bws_functions.php:163
|
80 |
+
#: bws_functions.php:405
|
81 |
+
#: bws_functions.php:456
|
82 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: bws_functions.php:163
|
86 |
+
#: bws_functions.php:405
|
87 |
+
#: bws_functions.php:456
|
88 |
msgid "We are sorry for inconvenience."
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: bws_functions.php:171
|
92 |
msgid "This license key is bind to another site"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: bws_functions.php:173
|
96 |
+
#: bws_functions.php:315
|
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:175
|
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:177
|
105 |
+
msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: bws_functions.php:198
|
109 |
+
#: bws_functions.php:220
|
110 |
+
#: bws_functions.php:242
|
111 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: bws_functions.php:210
|
115 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: bws_functions.php:216
|
119 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: bws_functions.php:223
|
123 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: bws_functions.php:246
|
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:271
|
131 |
msgid "Please, enter Your license key"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: bws_functions.php:288
|
135 |
+
msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: bws_functions.php:290
|
139 |
+
#: bws_functions.php:372
|
140 |
msgid "Please, go to"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: bws_functions.php:290
|
144 |
+
#: bws_functions.php:372
|
145 |
msgid "the setting page"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: bws_functions.php:291
|
149 |
+
#: bws_functions.php:373
|
150 |
msgid "You will be redirected automatically in 5 seconds."
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: bws_functions.php:296
|
154 |
msgid "You can download and activate"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: bws_functions.php:298
|
158 |
msgid "version of this plugin by entering Your license key."
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: bws_functions.php:300
|
162 |
+
#: bws_functions.php:341
|
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:302
|
167 |
+
#: bws_functions.php:343
|
168 |
msgid "(your username is the email you specify when purchasing the product)."
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: bws_functions.php:306
|
172 |
+
#: bws_functions.php:609
|
173 |
#, fuzzy
|
174 |
msgid "or"
|
175 |
msgstr "fyra"
|
176 |
|
177 |
+
#: bws_functions.php:306
|
178 |
#, php-format
|
179 |
msgid "Start Your Free %s-Day Trial Now"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: bws_functions.php:312
|
183 |
+
#: bws_functions.php:321
|
184 |
+
#: bws_functions.php:351
|
185 |
+
#: bws_functions.php:359
|
186 |
+
#: bws_menu.php:685
|
187 |
+
#: bws_menu.php:742
|
188 |
#, fuzzy
|
189 |
msgid "Activate"
|
190 |
msgstr "Aktiverade tillägg"
|
191 |
|
192 |
+
#: bws_functions.php:338
|
193 |
+
#: bws_functions.php:431
|
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:339
|
199 |
msgid "After that you can activate it by entering your license key."
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: bws_functions.php:353
|
203 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: bws_functions.php:370
|
207 |
+
msgid "Congratulations! The Pro license of the plugin is successfully activated."
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: bws_functions.php:411
|
211 |
msgid "Wrong license key."
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: bws_functions.php:413
|
215 |
msgid "This license key is bind to another site."
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: bws_functions.php:415
|
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:417
|
223 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: bws_functions.php:419
|
227 |
+
msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: bws_functions.php:423
|
231 |
+
msgid "The Pro Trial license key is valid."
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: bws_functions.php:425
|
235 |
msgid "The license key is valid."
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: bws_functions.php:428
|
239 |
msgid "Your license will expire on"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: bws_functions.php:461
|
243 |
msgid "Please, enter your license key"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: bws_functions.php:474
|
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:474
|
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:478
|
255 |
msgid "Check license key"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: bws_functions.php:492
|
259 |
msgid "WARNING: Illegal use notification"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: bws_functions.php:492
|
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:500
|
267 |
+
msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: bws_functions.php:502
|
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:502
|
275 |
+
#: bws_functions.php:555
|
276 |
+
#: bws_menu.php:661
|
277 |
+
#: bws_menu.php:683
|
278 |
+
#: bws_menu.php:710
|
279 |
+
#: bws_menu.php:740
|
280 |
+
#: bws_menu.php:786
|
281 |
#, fuzzy
|
282 |
msgid "Learn more"
|
283 |
msgstr "Läs mer"
|
284 |
|
285 |
+
#: bws_functions.php:512
|
286 |
#, php-format
|
287 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: bws_functions.php:514
|
291 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: bws_functions.php:517
|
295 |
+
msgid "The Pro Trial license will expire on"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: bws_functions.php:555
|
299 |
msgid "You license for"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: bws_functions.php:555
|
303 |
msgid "expires on"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: bws_functions.php:555
|
307 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: bws_functions.php:605
|
311 |
+
#, fuzzy
|
312 |
+
msgid "Thank you for installing"
|
313 |
+
msgstr "Tack för att du kontaktade oss."
|
314 |
+
|
315 |
+
#: bws_functions.php:606
|
316 |
+
msgid "Let's get started"
|
317 |
+
msgstr ""
|
318 |
+
|
319 |
+
#: bws_functions.php:607
|
320 |
+
#, fuzzy
|
321 |
+
msgid "Configure Settings"
|
322 |
+
msgstr "Inställningar"
|
323 |
+
|
324 |
+
#: bws_functions.php:610
|
325 |
+
msgid "Add New"
|
326 |
+
msgstr ""
|
327 |
+
|
328 |
+
#: bws_functions.php:614
|
329 |
+
msgid "Close notice"
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
+
#: bws_functions.php:667
|
333 |
+
msgid "Add BWS shortcode"
|
334 |
+
msgstr ""
|
335 |
+
|
336 |
+
#: bws_functions.php:711
|
337 |
msgid "Close"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: bws_functions.php:802
|
|
|
341 |
msgid "Restore all plugin settings to defaults"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: bws_functions.php:804
|
|
|
345 |
msgid "Restore settings"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: bws_functions.php:815
|
349 |
msgid "Are you sure you want to restore all settings by default?"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: bws_functions.php:818
|
353 |
msgid "Yes, restore all settings"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: bws_functions.php:819
|
357 |
msgid "No, go back to the settings page"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: bws_functions.php:863
|
361 |
+
#, fuzzy
|
362 |
+
msgid "Plugin"
|
363 |
+
msgstr "Betaltillägg"
|
364 |
+
|
365 |
+
#: bws_functions.php:872
|
366 |
+
#, fuzzy
|
367 |
+
msgid "Shortcode settings"
|
368 |
+
msgstr "Inställningar"
|
369 |
+
|
370 |
+
#: bws_functions.php:877
|
371 |
+
msgid "The shortcode will be inserted"
|
372 |
+
msgstr ""
|
373 |
+
|
374 |
+
#: bws_functions.php:882
|
375 |
+
msgid "Insert"
|
376 |
+
msgstr ""
|
377 |
+
|
378 |
+
#: bws_menu.php:498
|
379 |
msgid "Not set"
|
380 |
msgstr "Inte angiven"
|
381 |
|
382 |
+
#: bws_menu.php:500
|
383 |
+
#: bws_menu.php:501
|
384 |
msgid "On"
|
385 |
msgstr "På"
|
386 |
|
387 |
+
#: bws_menu.php:500
|
388 |
+
#: bws_menu.php:501
|
389 |
msgid "Off"
|
390 |
msgstr "Av"
|
391 |
|
392 |
+
#: bws_menu.php:502
|
393 |
+
#: bws_menu.php:503
|
394 |
+
#: bws_menu.php:504
|
395 |
+
#: bws_menu.php:505
|
396 |
+
#: bws_menu.php:506
|
397 |
+
#: bws_menu.php:518
|
398 |
msgid "N/A"
|
399 |
msgstr "Finns ej"
|
400 |
|
401 |
+
#: bws_menu.php:506
|
402 |
msgid " Mb"
|
403 |
msgstr " Mb"
|
404 |
|
405 |
+
#: bws_menu.php:507
|
406 |
+
#: bws_menu.php:508
|
407 |
+
#: bws_menu.php:509
|
408 |
+
#: bws_menu.php:514
|
409 |
msgid "Yes"
|
410 |
msgstr "Ja"
|
411 |
|
412 |
+
#: bws_menu.php:507
|
413 |
+
#: bws_menu.php:508
|
414 |
+
#: bws_menu.php:509
|
415 |
+
#: bws_menu.php:516
|
416 |
msgid "No"
|
417 |
msgstr "Nej"
|
418 |
|
419 |
+
#: bws_menu.php:526
|
420 |
msgid "Operating System"
|
421 |
msgstr "Operativsystem"
|
422 |
|
423 |
+
#: bws_menu.php:527
|
424 |
msgid "Server"
|
425 |
msgstr "Server"
|
426 |
|
427 |
+
#: bws_menu.php:528
|
428 |
msgid "Memory usage"
|
429 |
msgstr "Minnesanvändning"
|
430 |
|
431 |
+
#: bws_menu.php:529
|
432 |
msgid "MYSQL Version"
|
433 |
msgstr "MySQL-version"
|
434 |
|
435 |
+
#: bws_menu.php:530
|
436 |
msgid "SQL Mode"
|
437 |
msgstr "SQL-läge"
|
438 |
|
439 |
+
#: bws_menu.php:531
|
440 |
msgid "PHP Version"
|
441 |
msgstr "PHP-version"
|
442 |
|
443 |
+
#: bws_menu.php:532
|
444 |
msgid "PHP Safe Mode"
|
445 |
msgstr "PHP säkert läge"
|
446 |
|
447 |
+
#: bws_menu.php:533
|
448 |
msgid "PHP Allow URL fopen"
|
449 |
msgstr "PHP tillåt URL fopen"
|
450 |
|
451 |
+
#: bws_menu.php:534
|
452 |
msgid "PHP Memory Limit"
|
453 |
msgstr "PHP Minnesgräns"
|
454 |
|
455 |
+
#: bws_menu.php:535
|
456 |
msgid "PHP Max Upload Size"
|
457 |
msgstr "PHP Max uppladdningstorlek"
|
458 |
|
459 |
+
#: bws_menu.php:536
|
460 |
msgid "PHP Max Post Size"
|
461 |
msgstr "PHP Max poststorlek"
|
462 |
|
463 |
+
#: bws_menu.php:537
|
464 |
msgid "PHP Max Script Execute Time"
|
465 |
msgstr "PHP Max skriptexekverinstid"
|
466 |
|
467 |
+
#: bws_menu.php:538
|
468 |
msgid "PHP Exif support"
|
469 |
msgstr "PHP Exifstöd"
|
470 |
|
471 |
+
#: bws_menu.php:539
|
472 |
msgid "PHP IPTC support"
|
473 |
msgstr "PHP ITPC-stöd"
|
474 |
|
475 |
+
#: bws_menu.php:540
|
476 |
msgid "PHP XML support"
|
477 |
msgstr "PHP XML-stöd"
|
478 |
|
479 |
+
#: bws_menu.php:541
|
480 |
msgid "Site URL"
|
481 |
msgstr "SajtURL"
|
482 |
|
483 |
+
#: bws_menu.php:542
|
484 |
msgid "Home URL"
|
485 |
msgstr "HemURL"
|
486 |
|
487 |
+
#: bws_menu.php:545
|
488 |
msgid "WordPress Version"
|
489 |
msgstr "WordPress-version"
|
490 |
|
491 |
+
#: bws_menu.php:546
|
492 |
msgid "WordPress DB Version"
|
493 |
msgstr "WordPress-DB-version"
|
494 |
|
495 |
+
#: bws_menu.php:547
|
496 |
msgid "Multisite"
|
497 |
msgstr "Multisajt"
|
498 |
|
499 |
+
#: bws_menu.php:548
|
500 |
msgid "Active Theme"
|
501 |
msgstr "Aktivt tema"
|
502 |
|
503 |
+
#: bws_menu.php:563
|
504 |
msgid "Please enter a valid email address."
|
505 |
msgstr "Var god ange en giltig epost-adress."
|
506 |
|
507 |
+
#: bws_menu.php:567
|
508 |
msgid "Email with system info is sent to "
|
509 |
msgstr "Epost med systeminfo är skickat till"
|
510 |
|
511 |
+
#: bws_menu.php:571
|
512 |
msgid "Thank you for contacting us."
|
513 |
msgstr "Tack för att du kontaktade oss."
|
514 |
|
515 |
+
#: bws_menu.php:604
|
516 |
msgid "Sorry, email message could not be delivered."
|
517 |
msgstr "Ledsen, eposten kunde inte levereras."
|
518 |
|
519 |
+
#: bws_menu.php:612
|
520 |
msgid "Need help?"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: bws_menu.php:613
|
524 |
msgid "Client area"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: bws_menu.php:614
|
528 |
+
#: bws_menu.php:925
|
529 |
msgid "System status"
|
530 |
msgstr "Systemstatus"
|
531 |
|
532 |
+
#: bws_menu.php:619
|
533 |
#, fuzzy
|
534 |
msgid "Plugins"
|
535 |
msgstr "Betaltillägg"
|
536 |
|
537 |
+
#: bws_menu.php:621
|
538 |
msgid "Themes"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: bws_menu.php:626
|
542 |
msgid "All"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: bws_menu.php:627
|
546 |
#, fuzzy
|
547 |
msgid "Installed"
|
548 |
msgstr "Installera %s"
|
549 |
|
550 |
+
#: bws_menu.php:628
|
551 |
#, fuzzy
|
552 |
msgid "Recommended"
|
553 |
msgstr "Rekommenderade tillägg"
|
554 |
|
555 |
+
#: bws_menu.php:632
|
556 |
msgid "Installed plugins"
|
557 |
msgstr "Installerade tillägg"
|
558 |
|
559 |
+
#: bws_menu.php:664
|
560 |
+
#: bws_menu.php:713
|
561 |
msgid "Settings"
|
562 |
msgstr "Inställningar"
|
563 |
|
564 |
+
#: bws_menu.php:685
|
565 |
+
#: bws_menu.php:742
|
566 |
#, fuzzy
|
567 |
msgid "Activate this plugin"
|
568 |
msgstr "Aktiverade tillägg"
|
569 |
|
570 |
+
#: bws_menu.php:700
|
571 |
+
#: bws_menu.php:730
|
572 |
+
#: bws_menu.php:776
|
573 |
msgid "Go"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: bws_menu.php:704
|
577 |
+
#: bws_menu.php:734
|
578 |
+
#: bws_menu.php:780
|
579 |
msgid "DONATE"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: bws_menu.php:750
|
583 |
msgid "Recommended plugins"
|
584 |
msgstr "Rekommenderade tillägg"
|
585 |
|
586 |
+
#: bws_menu.php:788
|
587 |
#, fuzzy
|
588 |
msgid "Install now"
|
589 |
msgstr "Установить сейчас"
|
590 |
|
591 |
+
#: bws_menu.php:809
|
592 |
msgid "Try again"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: bws_menu.php:827
|
596 |
#, php-format
|
597 |
msgid "Preview “%s”"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: bws_menu.php:858
|
601 |
#, php-format
|
602 |
msgid "Install %s"
|
603 |
msgstr "Installera %s"
|
604 |
|
605 |
+
#: bws_menu.php:858
|
606 |
msgid "Install Now"
|
607 |
msgstr "Установить сейчас"
|
608 |
|
609 |
+
#: bws_menu.php:861
|
610 |
#, php-format
|
611 |
msgid "Update to version %s"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: bws_menu.php:861
|
615 |
msgid "Update"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: bws_menu.php:868
|
619 |
#, php-format
|
620 |
msgid "Preview %s"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: bws_menu.php:868
|
624 |
msgid "Preview"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: bws_menu.php:874
|
628 |
+
#: bws_menu.php:906
|
629 |
#, php-format
|
630 |
msgid "By %s"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: bws_menu.php:880
|
634 |
msgid "Details"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: bws_menu.php:912
|
638 |
#, fuzzy
|
639 |
msgid "Already Installed"
|
640 |
msgstr "Installera %s"
|
641 |
|
642 |
+
#: bws_menu.php:928
|
643 |
msgid "Environment"
|
644 |
msgstr "Miljövariabler"
|
645 |
|
646 |
+
#: bws_menu.php:939
|
647 |
msgid "Active Plugins"
|
648 |
msgstr "Aktiverade tillägg"
|
649 |
|
650 |
+
#: bws_menu.php:952
|
651 |
msgid "Inactive Plugins"
|
652 |
msgstr "Inaktiverade tillägg"
|
653 |
|
654 |
+
#: bws_menu.php:968
|
655 |
msgid "Send to support"
|
656 |
msgstr "Skicka till support"
|
657 |
|
658 |
+
#: bws_menu.php:975
|
659 |
msgid "Send to custom email »"
|
660 |
msgstr "Skicka till anpassad epost »"
|
661 |
|
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,627 @@ 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 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-07 13:12+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-09-07 13:15+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 |
msgid "requires"
|
21 |
msgstr "потребує"
|
22 |
|
23 |
+
#: bws_functions.php:31
|
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:32
|
28 |
msgid "Back to the WordPress"
|
29 |
msgstr "Повернутися на WordPress на"
|
30 |
|
31 |
+
#: bws_functions.php:34
|
32 |
msgid "Plugins page"
|
33 |
msgstr "Сторінку Плагінів"
|
34 |
|
35 |
+
#: bws_functions.php:91
|
36 |
msgid "It’s time to upgrade your"
|
37 |
msgstr "Настав час модернізувати Ваш"
|
38 |
|
39 |
+
#: bws_functions.php:91
|
40 |
msgid "to"
|
41 |
msgstr "до"
|
42 |
|
43 |
+
#: bws_functions.php:91
|
44 |
msgid "version!"
|
45 |
msgstr "версії!"
|
46 |
|
47 |
+
#: bws_functions.php:92
|
48 |
msgid "Extend standard plugin functionality with new great options."
|
49 |
msgstr "Розширює можливості стандартного функціоналу плагіна."
|
50 |
|
51 |
+
#: bws_functions.php:95
|
52 |
+
#: bws_functions.php:492
|
53 |
msgid "Learn More"
|
54 |
msgstr "Дізнатись більше"
|
55 |
|
56 |
+
#: bws_functions.php:112
|
57 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
58 |
msgstr "Якщо вам сподобався плагін, будь ласка, поставте нам 5 зірочок на WordPress"
|
59 |
|
60 |
+
#: bws_functions.php:113
|
61 |
msgid "Rate the plugin"
|
62 |
msgstr "Оцінити плагін"
|
63 |
|
64 |
+
#: bws_functions.php:116
|
65 |
msgid "If there is something wrong about it, please contact us"
|
66 |
msgstr "Якщо щось не так, будь ласка, повідомте нам"
|
67 |
|
68 |
+
#: bws_functions.php:133
|
69 |
+
#: bws_functions.php:169
|
70 |
msgid "Wrong license key"
|
71 |
msgstr "Невірний ключ ліцензії"
|
72 |
|
73 |
+
#: bws_functions.php:163
|
74 |
+
#: bws_functions.php:405
|
75 |
+
#: bws_functions.php:456
|
76 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
77 |
msgstr "Щось не так, спробуйте пізніше. Якщо помилка повториться, будь ласка, повідомте нам"
|
78 |
|
79 |
+
#: bws_functions.php:163
|
80 |
+
#: bws_functions.php:405
|
81 |
+
#: bws_functions.php:456
|
82 |
msgid "We are sorry for inconvenience."
|
83 |
msgstr "Просимо вибачення за незручності."
|
84 |
|
85 |
+
#: bws_functions.php:171
|
86 |
msgid "This license key is bind to another site"
|
87 |
msgstr "Цей ліцензійний ключ прив'язано до іншого сайту"
|
88 |
|
89 |
+
#: bws_functions.php:173
|
90 |
+
#: bws_functions.php:315
|
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:175
|
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:177
|
99 |
+
msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
|
100 |
+
msgstr "На жаль, Pro ліцензія уже використовувалась на цьому домені. Тріал Pro версії плагіну можна використати лише один раз."
|
101 |
|
102 |
+
#: bws_functions.php:198
|
103 |
+
#: bws_functions.php:220
|
104 |
+
#: bws_functions.php:242
|
105 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
106 |
msgstr "Помилка при завантаженні zip-архіву. Будь ласка, завантажте плагін вручну"
|
107 |
|
108 |
+
#: bws_functions.php:210
|
109 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
110 |
msgstr "Помилка при відкритті zip-архіву. Будь ласка, завантажте плагін вручну"
|
111 |
|
112 |
+
#: bws_functions.php:216
|
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:223
|
117 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
118 |
msgstr "Немає доступу до теки завантажень WordPress. Будь ласка, завантажте плагін вручну"
|
119 |
|
120 |
+
#: bws_functions.php:246
|
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:271
|
125 |
msgid "Please, enter Your license key"
|
126 |
msgstr "Будь ласка, впишіть ваш ліцензійний ключ"
|
127 |
|
128 |
+
#: bws_functions.php:288
|
129 |
+
msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
|
130 |
+
msgstr "Вітаємо! Pro версію плагіну успішно завантажено та активовано."
|
131 |
|
132 |
+
#: bws_functions.php:290
|
133 |
+
#: bws_functions.php:372
|
134 |
msgid "Please, go to"
|
135 |
msgstr "Будь ласка, перейдіть на"
|
136 |
|
137 |
+
#: bws_functions.php:290
|
138 |
+
#: bws_functions.php:372
|
139 |
msgid "the setting page"
|
140 |
msgstr "сторінку установок"
|
141 |
|
142 |
+
#: bws_functions.php:291
|
143 |
+
#: bws_functions.php:373
|
144 |
msgid "You will be redirected automatically in 5 seconds."
|
145 |
msgstr "Вас буде перенаправлено автоматично через 5 секунд."
|
146 |
|
147 |
+
#: bws_functions.php:296
|
148 |
msgid "You can download and activate"
|
149 |
msgstr "Ви можете завантажити та активувати"
|
150 |
|
151 |
+
#: bws_functions.php:298
|
152 |
msgid "version of this plugin by entering Your license key."
|
153 |
msgstr "версію цього плагіну, якщо впишете ваш ліцензійний ключ."
|
154 |
|
155 |
+
#: bws_functions.php:300
|
156 |
+
#: bws_functions.php:341
|
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:302
|
161 |
+
#: bws_functions.php:343
|
162 |
msgid "(your username is the email you specify when purchasing the product)."
|
163 |
msgstr "(ваше ім'я - це емейл, який ви вказували при купівлі плагіну)"
|
164 |
|
165 |
+
#: bws_functions.php:306
|
166 |
+
#: bws_functions.php:609
|
167 |
msgid "or"
|
168 |
msgstr "або"
|
169 |
|
170 |
+
#: bws_functions.php:306
|
171 |
#, php-format
|
172 |
msgid "Start Your Free %s-Day Trial Now"
|
173 |
msgstr "Спробуйте %s-денну тріал версію безкоштовно"
|
174 |
|
175 |
+
#: bws_functions.php:312
|
176 |
+
#: bws_functions.php:321
|
177 |
+
#: bws_functions.php:351
|
178 |
+
#: bws_functions.php:359
|
179 |
+
#: bws_menu.php:685
|
180 |
+
#: bws_menu.php:742
|
181 |
msgid "Activate"
|
182 |
msgstr "Активувати"
|
183 |
|
184 |
+
#: bws_functions.php:338
|
185 |
+
#: bws_functions.php:431
|
186 |
#, php-format
|
187 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
188 |
msgstr "Щоб продовжити користуватись плагіном, потрібно придбати %s ліцензію."
|
189 |
|
190 |
+
#: bws_functions.php:339
|
191 |
msgid "After that you can activate it by entering your license key."
|
192 |
msgstr "Після цього ви зможете активувати його ввівши ліцензійний ключ."
|
193 |
|
194 |
+
#: bws_functions.php:353
|
195 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
196 |
msgstr "На жаль, ви перевищили кількість допустимих спроб."
|
197 |
|
198 |
+
#: bws_functions.php:370
|
199 |
+
msgid "Congratulations! The Pro license of the plugin is successfully activated."
|
200 |
+
msgstr "Вітаємо! Pro версію плагіну успішно активовано."
|
201 |
|
202 |
+
#: bws_functions.php:411
|
203 |
msgid "Wrong license key."
|
204 |
msgstr "Неправильний ліцензійний ключ."
|
205 |
|
206 |
+
#: bws_functions.php:413
|
207 |
msgid "This license key is bind to another site."
|
208 |
msgstr "Цей ліцензійний ключ прив'язано до іншого сайту."
|
209 |
|
210 |
+
#: bws_functions.php:415
|
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 "Даний ліцензійний ключ дійсний, але строк вашої ліцензії витік. Якщо ви хочете оновлювати наш плагін у майбутньому, вам слід подовжити ліцензію."
|
213 |
|
214 |
+
#: bws_functions.php:417
|
215 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
216 |
msgstr "На жаль, ви перевищили кількість допустимих спроб."
|
217 |
|
218 |
+
#: bws_functions.php:419
|
219 |
+
msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
|
220 |
+
msgstr "На жаль, тріал Pro версія плагіну уже встановлювалась на цей домен. Тріал Pro версію можна встановлювати лише один раз."
|
221 |
|
222 |
+
#: bws_functions.php:423
|
223 |
+
msgid "The Pro Trial license key is valid."
|
224 |
+
msgstr "Ключ тріал Pro версії вірний."
|
225 |
|
226 |
+
#: bws_functions.php:425
|
227 |
msgid "The license key is valid."
|
228 |
msgstr "Ліцензійний ключ дійсний."
|
229 |
|
230 |
+
#: bws_functions.php:428
|
231 |
msgid "Your license will expire on"
|
232 |
msgstr "Ваша ліцензія закінчується"
|
233 |
|
234 |
+
#: bws_functions.php:461
|
235 |
msgid "Please, enter your license key"
|
236 |
msgstr "Будь ласка, введіть ваш ліцензійний ключ"
|
237 |
|
238 |
+
#: bws_functions.php:474
|
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 "При необхідності ви можете перевірити правильність вашого ліцензійного ключа або знову ввести його у полі, що знаходиться нижче. Ви можете знайти свій ліцензійний ключ на вашій персональній сторінці - Client area - на нашому сайті."
|
241 |
|
242 |
+
#: bws_functions.php:474
|
243 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
244 |
msgstr "(ім'я користувача - це електронна адреса, яку ви вказуєте при купівлі продукту). При необхідності, будь ласка, відправте запит на відновлення вашого паролю."
|
245 |
|
246 |
+
#: bws_functions.php:478
|
247 |
msgid "Check license key"
|
248 |
msgstr "Перевірте ліцензійний ключ"
|
249 |
|
250 |
+
#: bws_functions.php:492
|
251 |
msgid "WARNING: Illegal use notification"
|
252 |
msgstr "УВАГА: виявлено несанкціоноване використання плагіну"
|
253 |
|
254 |
+
#: bws_functions.php:492
|
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 "Ви можете використовувати одну ліцензію Про-плагіну для одного домену. Будь ласка, переконайтесь, що інформацію щодо ліцензії і домену введено вірно, у вкладці Client Area. Ми настійливо рекомендуємо Вам вирішити це питання протягом 24 годин, інакше плагін буде деактивовано."
|
257 |
|
258 |
+
#: bws_functions.php:500
|
259 |
+
msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
|
260 |
+
msgstr "Увага: Термін дії тріал періоду Pro версії плагіну скінчився. Щоб продовжити користуватись плагіном, будь ласка, придбайте ліцензію Pro"
|
261 |
|
262 |
+
#: bws_functions.php:502
|
263 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
264 |
msgstr "Строк вашої ліцензії витік. Якщо ви хочете оновлювати наш плагін у майбутньому, вам слід подовжити ліцензію."
|
265 |
|
266 |
+
#: bws_functions.php:502
|
267 |
+
#: bws_functions.php:555
|
268 |
+
#: bws_menu.php:661
|
269 |
+
#: bws_menu.php:683
|
270 |
+
#: bws_menu.php:710
|
271 |
+
#: bws_menu.php:740
|
272 |
+
#: bws_menu.php:786
|
273 |
msgid "Learn more"
|
274 |
msgstr "Дізнатись більше"
|
275 |
|
276 |
+
#: bws_functions.php:512
|
277 |
#, php-format
|
278 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
279 |
+
msgstr "Увага: Ви використовуєте тріал Pro версію плагіну %s."
|
280 |
|
281 |
+
#: bws_functions.php:514
|
282 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
283 |
+
msgstr "Увага: Ви використовуєте тріал Pro версію плагіну."
|
284 |
|
285 |
+
#: bws_functions.php:517
|
286 |
+
msgid "The Pro Trial license will expire on"
|
287 |
+
msgstr "Тріал період Pro версії плагіну закінчується"
|
288 |
|
289 |
+
#: bws_functions.php:555
|
290 |
msgid "You license for"
|
291 |
msgstr "Ваша ліцензія для"
|
292 |
|
293 |
+
#: bws_functions.php:555
|
294 |
msgid "expires on"
|
295 |
msgstr "витікає"
|
296 |
|
297 |
+
#: bws_functions.php:555
|
298 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
299 |
msgstr "та ви більше не будете отримувати першочергову технічну підтримку та оновлення."
|
300 |
|
301 |
+
#: bws_functions.php:605
|
302 |
+
msgid "Thank you for installing"
|
303 |
+
msgstr "Дякуємо, що встановили"
|
304 |
+
|
305 |
+
#: bws_functions.php:606
|
306 |
+
msgid "Let's get started"
|
307 |
+
msgstr "Розпочнемо"
|
308 |
+
|
309 |
+
#: bws_functions.php:607
|
310 |
+
msgid "Configure Settings"
|
311 |
+
msgstr "Налаштувати плагін"
|
312 |
+
|
313 |
+
#: bws_functions.php:610
|
314 |
+
msgid "Add New"
|
315 |
+
msgstr "Додати"
|
316 |
+
|
317 |
+
#: bws_functions.php:614
|
318 |
+
msgid "Close notice"
|
319 |
+
msgstr "Закрити"
|
320 |
+
|
321 |
+
#: bws_functions.php:667
|
322 |
+
msgid "Add BWS shortcode"
|
323 |
+
msgstr "Додати BWS шорткод"
|
324 |
+
|
325 |
+
#: bws_functions.php:711
|
326 |
msgid "Close"
|
327 |
msgstr "Закрити"
|
328 |
|
329 |
+
#: bws_functions.php:802
|
|
|
330 |
msgid "Restore all plugin settings to defaults"
|
331 |
msgstr "Скинути налаштування плагіну до стандартних"
|
332 |
|
333 |
+
#: bws_functions.php:804
|
|
|
334 |
msgid "Restore settings"
|
335 |
msgstr "Скинути налаштування"
|
336 |
|
337 |
+
#: bws_functions.php:815
|
338 |
msgid "Are you sure you want to restore all settings by default?"
|
339 |
msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
|
340 |
|
341 |
+
#: bws_functions.php:818
|
342 |
msgid "Yes, restore all settings"
|
343 |
msgstr "Так, скинути налаштування"
|
344 |
|
345 |
+
#: bws_functions.php:819
|
346 |
msgid "No, go back to the settings page"
|
347 |
msgstr "Ні, повернутись назад на сторінку налаштувань"
|
348 |
|
349 |
+
#: bws_functions.php:863
|
350 |
+
msgid "Plugin"
|
351 |
+
msgstr "Плагін"
|
352 |
+
|
353 |
+
#: bws_functions.php:872
|
354 |
+
msgid "Shortcode settings"
|
355 |
+
msgstr "Налаштування шорткоду"
|
356 |
+
|
357 |
+
#: bws_functions.php:877
|
358 |
+
msgid "The shortcode will be inserted"
|
359 |
+
msgstr "Буде вставлено шорткод"
|
360 |
+
|
361 |
+
#: bws_functions.php:882
|
362 |
+
msgid "Insert"
|
363 |
+
msgstr "Вставити"
|
364 |
+
|
365 |
+
#: bws_menu.php:498
|
366 |
msgid "Not set"
|
367 |
msgstr "Не задано"
|
368 |
|
369 |
+
#: bws_menu.php:500
|
370 |
+
#: bws_menu.php:501
|
371 |
msgid "On"
|
372 |
msgstr "Увімк."
|
373 |
|
374 |
+
#: bws_menu.php:500
|
375 |
+
#: bws_menu.php:501
|
376 |
msgid "Off"
|
377 |
msgstr "Вимк."
|
378 |
|
379 |
+
#: bws_menu.php:502
|
380 |
+
#: bws_menu.php:503
|
381 |
+
#: bws_menu.php:504
|
382 |
+
#: bws_menu.php:505
|
383 |
+
#: bws_menu.php:506
|
384 |
+
#: bws_menu.php:518
|
385 |
msgid "N/A"
|
386 |
msgstr "Невідомо"
|
387 |
|
388 |
+
#: bws_menu.php:506
|
389 |
msgid " Mb"
|
390 |
msgstr "Мб"
|
391 |
|
392 |
+
#: bws_menu.php:507
|
393 |
+
#: bws_menu.php:508
|
394 |
+
#: bws_menu.php:509
|
395 |
+
#: bws_menu.php:514
|
396 |
msgid "Yes"
|
397 |
msgstr "Так"
|
398 |
|
399 |
+
#: bws_menu.php:507
|
400 |
+
#: bws_menu.php:508
|
401 |
+
#: bws_menu.php:509
|
402 |
+
#: bws_menu.php:516
|
403 |
msgid "No"
|
404 |
msgstr "Ні"
|
405 |
|
406 |
+
#: bws_menu.php:526
|
407 |
msgid "Operating System"
|
408 |
msgstr "Операційна система"
|
409 |
|
410 |
+
#: bws_menu.php:527
|
411 |
msgid "Server"
|
412 |
msgstr "Тип серверу"
|
413 |
|
414 |
+
#: bws_menu.php:528
|
415 |
msgid "Memory usage"
|
416 |
msgstr "Пам’яті використано"
|
417 |
|
418 |
+
#: bws_menu.php:529
|
419 |
msgid "MYSQL Version"
|
420 |
msgstr "Версія MYSQL"
|
421 |
|
422 |
+
#: bws_menu.php:530
|
423 |
msgid "SQL Mode"
|
424 |
msgstr "Режим SQL"
|
425 |
|
426 |
+
#: bws_menu.php:531
|
427 |
msgid "PHP Version"
|
428 |
msgstr "Версія PHP"
|
429 |
|
430 |
+
#: bws_menu.php:532
|
431 |
msgid "PHP Safe Mode"
|
432 |
msgstr "PHP Безпечний режим"
|
433 |
|
434 |
+
#: bws_menu.php:533
|
435 |
msgid "PHP Allow URL fopen"
|
436 |
msgstr "Дозволити PHP URL fopen"
|
437 |
|
438 |
+
#: bws_menu.php:534
|
439 |
msgid "PHP Memory Limit"
|
440 |
msgstr "Ліміт пам’яті"
|
441 |
|
442 |
+
#: bws_menu.php:535
|
443 |
msgid "PHP Max Upload Size"
|
444 |
msgstr "Макс. розмір файлу, що завантажується"
|
445 |
|
446 |
+
#: bws_menu.php:536
|
447 |
msgid "PHP Max Post Size"
|
448 |
msgstr "Макс. розмір посту"
|
449 |
|
450 |
+
#: bws_menu.php:537
|
451 |
msgid "PHP Max Script Execute Time"
|
452 |
msgstr "Макс. час виконання сценарію"
|
453 |
|
454 |
+
#: bws_menu.php:538
|
455 |
msgid "PHP Exif support"
|
456 |
msgstr "Підтримка PHP Exif"
|
457 |
|
458 |
+
#: bws_menu.php:539
|
459 |
msgid "PHP IPTC support"
|
460 |
msgstr "Підтримка PHP IPTC"
|
461 |
|
462 |
+
#: bws_menu.php:540
|
463 |
msgid "PHP XML support"
|
464 |
msgstr "Підтримка PHP XML"
|
465 |
|
466 |
+
#: bws_menu.php:541
|
467 |
msgid "Site URL"
|
468 |
msgstr "Адреса сайту"
|
469 |
|
470 |
+
#: bws_menu.php:542
|
471 |
msgid "Home URL"
|
472 |
msgstr "Адреса домашньої сторінки"
|
473 |
|
474 |
+
#: bws_menu.php:545
|
475 |
msgid "WordPress Version"
|
476 |
msgstr "Версія WordPress"
|
477 |
|
478 |
+
#: bws_menu.php:546
|
479 |
msgid "WordPress DB Version"
|
480 |
msgstr "Версія бази даних WordPress"
|
481 |
|
482 |
+
#: bws_menu.php:547
|
483 |
msgid "Multisite"
|
484 |
msgstr "Мультисайт"
|
485 |
|
486 |
+
#: bws_menu.php:548
|
487 |
msgid "Active Theme"
|
488 |
msgstr "Активна тема"
|
489 |
|
490 |
+
#: bws_menu.php:563
|
491 |
msgid "Please enter a valid email address."
|
492 |
msgstr "Будь ласка, введіть коректний емейл."
|
493 |
|
494 |
+
#: bws_menu.php:567
|
495 |
msgid "Email with system info is sent to "
|
496 |
msgstr "Емейл з системною інформацією надіслано на"
|
497 |
|
498 |
+
#: bws_menu.php:571
|
499 |
msgid "Thank you for contacting us."
|
500 |
msgstr "Дякуємо, що звернулись до нас."
|
501 |
|
502 |
+
#: bws_menu.php:604
|
503 |
msgid "Sorry, email message could not be delivered."
|
504 |
msgstr "Вибачте, ваше емейл не може бути доставлено"
|
505 |
|
506 |
+
#: bws_menu.php:612
|
507 |
msgid "Need help?"
|
508 |
msgstr "Потрібна допомога?"
|
509 |
|
510 |
+
#: bws_menu.php:613
|
511 |
msgid "Client area"
|
512 |
msgstr "Клієнтам"
|
513 |
|
514 |
+
#: bws_menu.php:614
|
515 |
+
#: bws_menu.php:925
|
516 |
msgid "System status"
|
517 |
msgstr "Системна інформація"
|
518 |
|
519 |
+
#: bws_menu.php:619
|
520 |
msgid "Plugins"
|
521 |
msgstr "Плагіни"
|
522 |
|
523 |
+
#: bws_menu.php:621
|
524 |
msgid "Themes"
|
525 |
msgstr "Теми"
|
526 |
|
527 |
+
#: bws_menu.php:626
|
528 |
msgid "All"
|
529 |
msgstr "Всі"
|
530 |
|
531 |
+
#: bws_menu.php:627
|
532 |
msgid "Installed"
|
533 |
msgstr "Встановлені"
|
534 |
|
535 |
+
#: bws_menu.php:628
|
536 |
msgid "Recommended"
|
537 |
msgstr "Рекомендовані "
|
538 |
|
539 |
+
#: bws_menu.php:632
|
540 |
msgid "Installed plugins"
|
541 |
msgstr "Встановлені плагіни"
|
542 |
|
543 |
+
#: bws_menu.php:664
|
544 |
+
#: bws_menu.php:713
|
545 |
msgid "Settings"
|
546 |
msgstr "Налаштування"
|
547 |
|
548 |
+
#: bws_menu.php:685
|
549 |
+
#: bws_menu.php:742
|
550 |
msgid "Activate this plugin"
|
551 |
msgstr "Активувати плагін"
|
552 |
|
553 |
+
#: bws_menu.php:700
|
554 |
+
#: bws_menu.php:730
|
555 |
+
#: bws_menu.php:776
|
556 |
msgid "Go"
|
557 |
msgstr "Перейти"
|
558 |
|
559 |
+
#: bws_menu.php:704
|
560 |
+
#: bws_menu.php:734
|
561 |
+
#: bws_menu.php:780
|
562 |
msgid "DONATE"
|
563 |
msgstr "Підтримати нас"
|
564 |
|
565 |
+
#: bws_menu.php:750
|
566 |
msgid "Recommended plugins"
|
567 |
msgstr "Рекомендовані плагіни"
|
568 |
|
569 |
+
#: bws_menu.php:788
|
570 |
msgid "Install now"
|
571 |
msgstr "Встановити"
|
572 |
|
573 |
+
#: bws_menu.php:809
|
574 |
msgid "Try again"
|
575 |
msgstr "Спробувати ще раз"
|
576 |
|
577 |
+
#: bws_menu.php:827
|
578 |
#, php-format
|
579 |
msgid "Preview “%s”"
|
580 |
msgstr "Попередній перегляд “%s”"
|
581 |
|
582 |
+
#: bws_menu.php:858
|
583 |
#, php-format
|
584 |
msgid "Install %s"
|
585 |
msgstr "Встановити %s"
|
586 |
|
587 |
+
#: bws_menu.php:858
|
588 |
msgid "Install Now"
|
589 |
msgstr "Встановити"
|
590 |
|
591 |
+
#: bws_menu.php:861
|
592 |
#, php-format
|
593 |
msgid "Update to version %s"
|
594 |
msgstr "Оновити до версії %s"
|
595 |
|
596 |
+
#: bws_menu.php:861
|
597 |
msgid "Update"
|
598 |
msgstr "Оновити"
|
599 |
|
600 |
+
#: bws_menu.php:868
|
601 |
#, php-format
|
602 |
msgid "Preview %s"
|
603 |
msgstr "Попередній перегляд %s"
|
604 |
|
605 |
+
#: bws_menu.php:868
|
606 |
msgid "Preview"
|
607 |
msgstr "Попередній перегляд"
|
608 |
|
609 |
+
#: bws_menu.php:874
|
610 |
+
#: bws_menu.php:906
|
611 |
#, php-format
|
612 |
msgid "By %s"
|
613 |
msgstr "За %s"
|
614 |
|
615 |
+
#: bws_menu.php:880
|
616 |
msgid "Details"
|
617 |
msgstr "Деталі"
|
618 |
|
619 |
+
#: bws_menu.php:912
|
620 |
msgid "Already Installed"
|
621 |
msgstr "Уже встановлено %s"
|
622 |
|
623 |
+
#: bws_menu.php:928
|
624 |
msgid "Environment"
|
625 |
msgstr "Системне оточення"
|
626 |
|
627 |
+
#: bws_menu.php:939
|
628 |
msgid "Active Plugins"
|
629 |
msgstr "Активні плагіни"
|
630 |
|
631 |
+
#: bws_menu.php:952
|
632 |
msgid "Inactive Plugins"
|
633 |
msgstr "Не активні плагіни"
|
634 |
|
635 |
+
#: bws_menu.php:968
|
636 |
msgid "Send to support"
|
637 |
msgstr "Відправити службі тех. підтримки"
|
638 |
|
639 |
+
#: bws_menu.php:975
|
640 |
msgid "Send to custom email »"
|
641 |
msgstr "Відправити на електронну адресу »"
|
642 |
|
contact_form.php
CHANGED
@@ -4,7 +4,9 @@ Plugin Name: Contact Form by BestWebSoft
|
|
4 |
Plugin URI: http://bestwebsoft.com/products/
|
5 |
Description: Plugin for Contact Form.
|
6 |
Author: BestWebSoft
|
7 |
-
|
|
|
|
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
@@ -32,20 +34,19 @@ License: GPLv2 or later
|
|
32 |
if ( ! function_exists( 'cntctfrm_admin_menu' ) ) {
|
33 |
function cntctfrm_admin_menu() {
|
34 |
bws_add_general_menu( plugin_basename( __FILE__ ) );
|
35 |
-
add_submenu_page( 'bws_plugins', __( 'Contact Form Settings', '
|
36 |
}
|
37 |
}
|
38 |
|
39 |
if ( ! function_exists ( 'cntctfrm_init' ) ) {
|
40 |
function cntctfrm_init() {
|
41 |
global $bws_plugin_info, $cntctfrm_plugin_info;
|
42 |
-
|
43 |
if ( ! session_id() )
|
44 |
@session_start();
|
45 |
|
46 |
-
|
47 |
-
|
48 |
-
require_once( dirname( __FILE__ ) . '/bws_menu/bws_functions.php' );
|
49 |
|
50 |
if ( empty( $cntctfrm_plugin_info ) ) {
|
51 |
if ( ! function_exists( 'get_plugin_data' ) )
|
@@ -74,6 +75,14 @@ if ( ! function_exists ( 'cntctfrm_admin_init' ) ) {
|
|
74 |
}
|
75 |
}
|
76 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
/* Register settings for plugin */
|
78 |
if ( ! function_exists( 'cntctfrm_settings' ) ) {
|
79 |
function cntctfrm_settings() {
|
@@ -120,30 +129,30 @@ if ( ! function_exists( 'cntctfrm_settings' ) ) {
|
|
120 |
'cntctfrm_display_user_agent' => 1,
|
121 |
'cntctfrm_language' => array(),
|
122 |
'cntctfrm_change_label' => 0,
|
123 |
-
'cntctfrm_name_label' => array( 'en' => __( "Name:", '
|
124 |
-
'cntctfrm_address_label' => array( 'en' => __( "Address:", '
|
125 |
-
'cntctfrm_email_label' => array( 'en' => __( "Email Address:", '
|
126 |
-
'cntctfrm_phone_label' => array( 'en' => __( "Phone number:", '
|
127 |
-
'cntctfrm_subject_label' => array( 'en' => __( "Subject:", '
|
128 |
-
'cntctfrm_message_label' => array( 'en' => __( "Message:", '
|
129 |
-
'cntctfrm_attachment_label' => array( 'en' => __( "Attachment:", '
|
130 |
-
'cntctfrm_attachment_tooltip' => array( 'en' => __( "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB", '
|
131 |
-
'cntctfrm_send_copy_label' => array( 'en' => __( "Send me a copy", '
|
132 |
-
'cntctfrm_submit_label' => array( 'en' => __( "Submit", '
|
133 |
-
'cntctfrm_name_error' => array( 'en' => __( "Your name is required.", '
|
134 |
-
'cntctfrm_address_error' => array( 'en' => __( "Address is required.", '
|
135 |
-
'cntctfrm_email_error' => array( 'en' => __( "A valid email address is required.", '
|
136 |
-
'cntctfrm_phone_error' => array( 'en' => __( "Phone number is required.", '
|
137 |
-
'cntctfrm_subject_error' => array( 'en' => __( "Subject is required.", '
|
138 |
-
'cntctfrm_message_error' => array( 'en' => __( "Message text is required.", '
|
139 |
-
'cntctfrm_attachment_error' => array( 'en' => __( "File format is not valid.", '
|
140 |
-
'cntctfrm_attachment_upload_error' => array( 'en' => __( "File upload error.", '
|
141 |
-
'cntctfrm_attachment_move_error' => array( 'en' => __( "The file could not be uploaded.", '
|
142 |
-
'cntctfrm_attachment_size_error' => array( 'en' => __( "This file is too large.", '
|
143 |
-
'cntctfrm_captcha_error' => array( 'en' => __( "Please fill out the CAPTCHA.", '
|
144 |
-
'cntctfrm_form_error' => array( 'en' => __( "Please make corrections below and try again.", '
|
145 |
'cntctfrm_action_after_send' => 1,
|
146 |
-
'cntctfrm_thank_text' => array( 'en' => __( "Thank you for contacting us.", '
|
147 |
'cntctfrm_redirect_url' => '',
|
148 |
'cntctfrm_delete_attached_file' => '0',
|
149 |
'cntctfrm_html_email' => 1,
|
@@ -543,7 +552,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
543 |
/* if 'FROM' field was changed */
|
544 |
if ( ( 'custom' == $cntctfrm_options['cntctfrm_from_email'] && 'custom' != $cntctfrm_options_submit['cntctfrm_from_email'] ) ||
|
545 |
( 'custom' == $cntctfrm_options_submit['cntctfrm_from_email'] && $cntctfrm_options['cntctfrm_custom_from_email'] != $cntctfrm_options_submit['cntctfrm_custom_from_email'] ) ) {
|
546 |
-
$notice = __( "Email 'FROM' field option was changed, which may cause email messages being moved to the spam folder or email delivery failures.", '
|
547 |
}
|
548 |
|
549 |
$cntctfrm_options_submit['cntctfrm_action_after_send'] = $_POST['cntctfrm_action_after_send'];
|
@@ -553,7 +562,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
553 |
if ( 0 == $cntctfrm_options_submit['cntctfrm_action_after_send']
|
554 |
&& ( "" == trim( $cntctfrm_options_submit['cntctfrm_redirect_url'] )
|
555 |
|| ! filter_var( $cntctfrm_options_submit['cntctfrm_redirect_url'], FILTER_VALIDATE_URL) ) ) {
|
556 |
-
$error .=__( "If the 'Redirect to page' option is selected then the URL field should be in the following format", '
|
557 |
$cntctfrm_options['cntctfrm_action_after_send'] = 1;
|
558 |
}
|
559 |
if ( 'user' == $cntctfrm_options_submit['cntctfrm_select_email'] ) {
|
@@ -562,7 +571,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
562 |
} else if ( false !== get_user_by( 'login', $cntctfrm_options_submit['cntctfrm_user_email'] ) ) {
|
563 |
//
|
564 |
} else {
|
565 |
-
$error .= __( "Such user does not exist.", '
|
566 |
}
|
567 |
} else {
|
568 |
if ( preg_match( '|,|', $cntctfrm_options_submit['cntctfrm_custom_email'] ) ) {
|
@@ -572,7 +581,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
572 |
}
|
573 |
foreach ( $cntctfrm_custom_emails as $cntctfrm_custom_email ) {
|
574 |
if ( $cntctfrm_custom_email == "" || ! is_email( trim( $cntctfrm_custom_email ) ) ) {
|
575 |
-
$error .= __( "Please enter a valid email address in the 'Use this email address' field.", '
|
576 |
break;
|
577 |
}
|
578 |
}
|
@@ -580,7 +589,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
580 |
if ( 'custom' == $cntctfrm_options_submit['cntctfrm_from_email'] ) {
|
581 |
if ( "" == $cntctfrm_options_submit['cntctfrm_custom_from_email']
|
582 |
|| ! is_email( trim( $cntctfrm_options_submit['cntctfrm_custom_from_email'] ) ) ) {
|
583 |
-
$error .= __( "Please enter a valid email address in the 'FROM' field.", '
|
584 |
}
|
585 |
}
|
586 |
|
@@ -603,9 +612,9 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
603 |
} else {
|
604 |
update_option( 'cntctfrm_options', $cntctfrm_options );
|
605 |
}
|
606 |
-
$message = __( "Settings saved.", '
|
607 |
} else {
|
608 |
-
$error .= ' ' . __( "Settings are not saved.", '
|
609 |
}
|
610 |
}
|
611 |
|
@@ -643,7 +652,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
643 |
if ( isset( $_REQUEST['bws_restore_confirm'] ) && check_admin_referer( $plugin_basename, 'bws_settings_nonce_name' ) ) {
|
644 |
$cntctfrm_options = $cntctfrm_option_defaults;
|
645 |
update_option( 'cntctfrm_options', $cntctfrm_options );
|
646 |
-
$message = __( 'All plugin settings were restored.', '
|
647 |
} /* end */
|
648 |
|
649 |
/* GO PRO */
|
@@ -654,18 +663,18 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
654 |
} ?>
|
655 |
<div class="wrap">
|
656 |
<div class="icon32 icon32-bws" id="icon-options-general"></div>
|
657 |
-
<h2><?php _e( "Contact Form Settings", '
|
658 |
<h2 class="nav-tab-wrapper">
|
659 |
-
<a class="nav-tab<?php if ( ! isset( $_GET['action'] ) ) echo ' nav-tab-active'; ?>" href="admin.php?page=contact_form.php"><?php _e( 'Settings', '
|
660 |
-
<a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'additional' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=contact_form.php&action=additional"><?php _e( 'Additional settings', '
|
661 |
-
<a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'appearance' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=contact_form.php&action=appearance"><?php _e( 'Appearance', '
|
662 |
-
<a class="nav-tab" href="http://bestwebsoft.com/products/contact-form/faq" target="_blank"><?php _e( 'FAQ', '
|
663 |
-
<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=contact_form.php&action=go_pro"><?php _e( 'Go PRO', '
|
664 |
</h2>
|
665 |
<div class="updated fade" <?php if ( $message == "" || "" != $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
|
666 |
-
<div id="cntctfrm_settings_notice" class="updated fade" style="display:none"><p><strong><?php _e( "Notice:", '
|
667 |
<?php if ( ! empty( $notice ) ) { ?>
|
668 |
-
<div class="error"><p><strong><?php _e( 'Notice:', '
|
669 |
<?php } ?>
|
670 |
<div class="error" <?php if ( "" == $error ) echo 'style="display:none"'; ?>><p><strong><?php echo $error; ?></strong></p></div>
|
671 |
<?php if ( ! isset( $_GET['action'] ) || 'additional' == $_GET['action'] ) {
|
@@ -676,29 +685,29 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
676 |
if ( ! isset( $contact_form_multi_active ) && ! isset( $contact_form_multi_pro_active ) ) { ?>
|
677 |
<h2 class="nav-tab-wrapper">
|
678 |
<li class="nav-tab nav-tab-active">NEW_FORM</li>
|
679 |
-
<a id="cntctfrm_show_multi_notice" class="nav-tab" target="_new" href="http://bestwebsoft.com/products/contact-form-multi/?k=747ca825fb44711e2d24e40697747bc6&pn=77&v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" title="<?php _e( "If you want to create multiple contact forms, please install the Contact Form Multi plugin.", '
|
680 |
</h2>
|
681 |
<?php }
|
682 |
$form_action = ( ! isset( $_GET['action'] ) ) ? 'admin.php?page=contact_form.php' : 'admin.php?page=contact_form.php&action=' . $_GET['action']; ?>
|
683 |
<form id="cntctfrm_settings_form" method="post" action="<?php echo $form_action ?>">
|
684 |
<span style="margin-bottom:15px;">
|
685 |
<?php if ( ! isset( $contact_form_multi_active ) && ! isset( $contact_form_multi_pro_active ) ) { ?>
|
686 |
-
<p><?php _e( "If you would like to add Contact Form to your website, just copy and paste this shortcode to your post or page or widget:", '
|
687 |
-
<?php _e( "If you have any problems with the standard shortcode [contact_form], you should use the shortcode", '
|
688 |
<?php } else { ?>
|
689 |
-
<p><?php _e( "If you would like to add the Contact Form to your website, just copy and paste this shortcode to your post or page or widget:", '
|
690 |
-
<?php _e( "If have any problems with the standard shortcode [contact_form], you should use the shortcode", '
|
691 |
<?php } ?>
|
692 |
</span>
|
693 |
<div <?php if ( isset( $_GET['action'] ) ) echo 'style="display: none;"'; ?> >
|
694 |
-
<p><?php _e( "If you leave the fields empty, the messages will be sent to the email address specified during registration.", '
|
695 |
<table class="form-table" style="width:auto;">
|
696 |
<tr valign="top">
|
697 |
-
<th scope="row"><?php _e( "The user's email address:", '
|
698 |
<td colspan="2">
|
699 |
<input type="radio" id="cntctfrm_select_email_user" name="cntctfrm_select_email" value="user" <?php if ( $cntctfrm_options['cntctfrm_select_email'] == 'user' ) echo 'checked="checked" '; ?>/>
|
700 |
<select name="cntctfrm_user_email">
|
701 |
-
<option disabled><?php _e( "Select a username", '
|
702 |
<?php foreach ( $userslogin as $key => $value ) {
|
703 |
if ( isset( $value->data ) ) {
|
704 |
if ( $value->data->user_email != '' ) { ?>
|
@@ -711,15 +720,15 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
711 |
}
|
712 |
} ?>
|
713 |
</select>
|
714 |
-
<span class="cntctfrm_info"><?php _e( "Enter a username of the person who should get the messages from the contact form.", '
|
715 |
</td>
|
716 |
</tr>
|
717 |
<tr valign="top">
|
718 |
-
<th scope="row"><?php _e( "Use this email address:", '
|
719 |
<td colspan="2">
|
720 |
<input type="radio" id="cntctfrm_select_email_custom" name="cntctfrm_select_email" value="custom" <?php if ( 'custom' == $cntctfrm_options['cntctfrm_select_email'] ) echo 'checked="checked" '; ?>/>
|
721 |
<input type="text" name="cntctfrm_custom_email" value="<?php echo $cntctfrm_options['cntctfrm_custom_email']; ?>" onfocus="document.getElementById('cntctfrm_select_email_custom').checked = true;" maxlength="500" />
|
722 |
-
<span class="cntctfrm_info"><?php _e( "Enter the email address you want the messages forwarded to.", '
|
723 |
</td>
|
724 |
</tr>
|
725 |
</table>
|
@@ -728,7 +737,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
728 |
<div class="bws_table_bg"></div>
|
729 |
<table class="form-table bws_pro_version">
|
730 |
<tr valign="top">
|
731 |
-
<th scope="row"><?php _e( "Add department selectbox to the contact form:", '
|
732 |
<td colspan="2">
|
733 |
<input type="radio" id="cntctfrmpr_select_email_department" name="cntctfrmpr_select_email" value="departments" disabled="disabled" />
|
734 |
<div class="cntctfrmpr_department_table"><img style="width:100%;" src="<?php echo plugins_url( 'images/pro_screen_1.png', __FILE__ ); ?>" alt="" /></div>
|
@@ -736,37 +745,37 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
736 |
</tr>
|
737 |
<tr valign="top">
|
738 |
<th scope="row" colspan="2">
|
739 |
-
* <?php _e( 'If you upgrade to Pro version all your settings will be saved.', '
|
740 |
</th>
|
741 |
</tr>
|
742 |
</table>
|
743 |
</div>
|
744 |
<div class="bws_pro_version_tooltip">
|
745 |
<div class="bws_info">
|
746 |
-
<?php _e( 'Unlock premium options by upgrading to PRO version.', '
|
747 |
-
<a href="http://bestwebsoft.com/products/contact-form/?k=697c5e74f39779ce77850e11dbe21962&pn=77&v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Contact Form Pro"><?php _e( 'Learn More', '
|
748 |
</div>
|
749 |
<a class="bws_button" href="http://bestwebsoft.com/products/contact-form/buy/?k=697c5e74f39779ce77850e11dbe21962&pn=77&v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Contact Form Pro">
|
750 |
-
<?php _e( 'Go', '
|
751 |
</a>
|
752 |
<div class="clear"></div>
|
753 |
</div>
|
754 |
</div>
|
755 |
<table class="form-table" style="width:auto;">
|
756 |
<tr valign="top">
|
757 |
-
<th scope="row"><?php _e( "Save emails to the database", '
|
758 |
<td colspan="2">
|
759 |
<?php if ( array_key_exists( 'contact-form-to-db/contact_form_to_db.php', $all_plugins ) || array_key_exists( 'contact-form-to-db-pro/contact_form_to_db_pro.php', $all_plugins ) ) {
|
760 |
if ( is_plugin_active( 'contact-form-to-db/contact_form_to_db.php' ) || is_plugin_active( 'contact-form-to-db-pro/contact_form_to_db_pro.php' ) ) { ?>
|
761 |
<input type="checkbox" name="cntctfrm_save_email_to_db" value="1" <?php if ( ( isset( $cntctfrmtdb_options ) && 1 == $cntctfrmtdb_options["cntctfrmtdb_save_messages_to_db"] ) || ( isset( $cntctfrmtdbpr_options ) && 1 == $cntctfrmtdbpr_options["save_messages_to_db"] ) ) echo 'checked="checked"'; ?> />
|
762 |
-
<span class="bws_info"> (<?php _e( 'Using', '
|
763 |
<?php } else { ?>
|
764 |
<input disabled="disabled" type="checkbox" name="cntctfrm_save_email_to_db" value="1" <?php if ( ( isset( $cntctfrmtdb_options ) && 1 == $cntctfrmtdb_options["cntctfrmtdb_save_messages_to_db"] ) || ( isset( $cntctfrmtdbpr_options ) && 1 == $cntctfrmtdbpr_options["save_messages_to_db"] ) ) echo 'checked="checked"'; ?> />
|
765 |
-
<span class="bws_info">(<?php _e( 'Using Contact Form to DB by BestWebSoft', '
|
766 |
<?php }
|
767 |
} else { ?>
|
768 |
<input disabled="disabled" type="checkbox" name="cntctfrm_save_email_to_db" value="1" />
|
769 |
-
<span class="bws_info">(<?php _e( 'Using Contact Form to DB by BestWebSoft', '
|
770 |
<?php } ?>
|
771 |
</td>
|
772 |
</tr>
|
@@ -776,60 +785,60 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
776 |
<div <?php if ( ! isset( $_GET['action'] ) ) echo 'style="display: none;"'; ?> >
|
777 |
<table class="form-table" style="width:auto;">
|
778 |
<tr>
|
779 |
-
<th scope="row"><?php _e( 'What to use?', '
|
780 |
<td colspan="2">
|
781 |
<fieldset>
|
782 |
<label>
|
783 |
<input type='radio' name='cntctfrm_mail_method' value='wp-mail' <?php if ( 'wp-mail' == $cntctfrm_options['cntctfrm_mail_method'] ) echo 'checked="checked" '; ?>/>
|
784 |
-
<?php _e( 'Wp-mail', '
|
785 |
</label>
|
786 |
-
<label><span class="cntctfrm_info">(<?php _e( 'You can use the wp_mail function for mailing', '
|
787 |
<label>
|
788 |
<input type='radio' name='cntctfrm_mail_method' value='mail' <?php if ( 'mail' == $cntctfrm_options['cntctfrm_mail_method'] ) echo 'checked="checked" '; ?>/>
|
789 |
-
<?php _e( 'Mail', '
|
790 |
</label>
|
791 |
-
<label><span class="cntctfrm_info">(<?php _e( 'To send mail you can use the php mail function', '
|
792 |
</fieldset>
|
793 |
</td>
|
794 |
</tr>
|
795 |
<tr valign="top">
|
796 |
-
<th scope="row"><?php _e( "'FROM' field", '
|
797 |
<td style="vertical-align: top;width: 210px;">
|
798 |
-
<div><?php _e( "Name", '
|
799 |
<div>
|
800 |
<label>
|
801 |
<input type="radio" id="cntctfrm_select_from_custom_field" name="cntctfrm_select_from_field" value="custom" <?php if ( 'custom' == $cntctfrm_options['cntctfrm_select_from_field'] ) echo 'checked="checked" '; ?> />
|
802 |
<input type="text" name="cntctfrm_from_field" value="<?php echo stripslashes( $cntctfrm_options['cntctfrm_from_field'] ); ?>" onfocus="document.getElementById('cntctfrm_select_from_custom_field').checked = true;" size="18" maxlength="100" />
|
803 |
</label><br/>
|
804 |
<div>
|
805 |
-
<label><input type="radio" id="cntctfrm_select_from_field" name="cntctfrm_select_from_field" value="user_name" <?php if ( 'user_name' == $cntctfrm_options['cntctfrm_select_from_field'] ) echo 'checked="checked" '; ?>/> <?php _e( "User name", '
|
806 |
<div class="cntctfrm_help_box">
|
807 |
-
<div class="cntctfrm_hidden_help_text"><?php echo __( "The name of the user who fills the form will be used in the field 'From'.", '
|
808 |
</div>
|
809 |
</div>
|
810 |
</div>
|
811 |
</td>
|
812 |
<td>
|
813 |
-
<div><?php _e( "Email", '
|
814 |
<div>
|
815 |
<div>
|
816 |
<input type="radio" id="cntctfrm_from_custom_email" name="cntctfrm_from_email" value="custom" <?php if ( 'custom' == $cntctfrm_options['cntctfrm_from_email'] ) echo 'checked="checked" '; ?>/>
|
817 |
<input type="text" name="cntctfrm_custom_from_email" value="<?php echo $cntctfrm_options['cntctfrm_custom_from_email']; ?>" onfocus="document.getElementById('cntctfrm_from_custom_email').checked = true;" maxlength="100" />
|
818 |
</div>
|
819 |
<div>
|
820 |
-
<label><input type="radio" id="cntctfrm_from_email" name="cntctfrm_from_email" value="user" <?php if ( 'user' == $cntctfrm_options['cntctfrm_from_email'] ) echo 'checked="checked" '; ?>/> <?php _e( "User email", '
|
821 |
<div class="cntctfrm_help_box">
|
822 |
-
<div class="cntctfrm_hidden_help_text"><?php echo __( "The email address of the user who fills the form will be used in the field 'From'.", '
|
823 |
</div>
|
824 |
</div>
|
825 |
<div>
|
826 |
-
<span class="cntctfrm_info">(<?php _e( "If this option is changed, email messages may be moved to the spam folder or email delivery failures may occur.", '
|
827 |
</div>
|
828 |
</div>
|
829 |
</td>
|
830 |
</tr>
|
831 |
<tr valign="top">
|
832 |
-
<th scope="row"><?php _e( "Required symbol", '
|
833 |
<td colspan="2">
|
834 |
<input type="text" id="cntctfrm_required_symbol" name="cntctfrm_required_symbol" value="<?php echo $cntctfrm_options['cntctfrm_required_symbol']; ?>" maxlength="100" />
|
835 |
</td>
|
@@ -839,17 +848,17 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
839 |
<table class="cntctfrm_settings_table" style="width:auto;">
|
840 |
<thead>
|
841 |
<tr valign="top">
|
842 |
-
<th scope="row" style="width: 210px;"><?php _e( "Fields", '
|
843 |
-
<th><?php _e( "Used", '
|
844 |
-
<th><?php _e( "Required", '
|
845 |
-
<th><?php _e( "Visible", '
|
846 |
-
<th><?php _e( "Disabled for editing", '
|
847 |
-
<th scope="row" ><?php _e( "Field's default value", '
|
848 |
</tr>
|
849 |
</thead>
|
850 |
<tbody>
|
851 |
<tr valign="top" >
|
852 |
-
<td><?php _e( "Department selectbox", '
|
853 |
<td class="bws_pro_version"></td>
|
854 |
<td class="bws_pro_version"><input disabled="disabled" type="checkbox" name="cntctfrm_required_department_field" value="1"/></td>
|
855 |
<td class="bws_pro_version"></td>
|
@@ -857,19 +866,19 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
857 |
<td class="bws_pro_version"></td>
|
858 |
</tr>
|
859 |
<tr valign="top">
|
860 |
-
<td><?php _e( "Name", '
|
861 |
<td><input type="checkbox" name="cntctfrm_display_name_field" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_display_name_field'] ) echo 'checked="checked" '; ?>/></td>
|
862 |
<td><input type="checkbox" id="cntctfrm_required_name_field" name="cntctfrm_required_name_field" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_required_name_field'] ) echo 'checked="checked" '; ?>/></td>
|
863 |
<td class="bws_pro_version"><input disabled="disabled" type="checkbox" name="cntctfrmpr_visible_name" value="1" checked="checked" /></td>
|
864 |
<td class="bws_pro_version"><input disabled="disabled" type="checkbox" name="cntctfrmpr_disabled_name" value="1" /></td>
|
865 |
<td class="bws_pro_version">
|
866 |
<input disabled="disabled" type="checkbox" name="cntctfrmpr_default_name" value="1" />
|
867 |
-
<?php _e( "Use User's name as a default value if the user is logged in.", '
|
868 |
-
<span class="cntctfrm_info">(<?php _e( "'Visible' and 'Disabled for editing' options will be applied only to logged-in users.", '
|
869 |
</td>
|
870 |
</tr>
|
871 |
<tr valign="top">
|
872 |
-
<td><?php _e( "Location selectbox", '
|
873 |
<td class="bws_pro_version"><input disabled="disabled" type="checkbox" name="cntctfrmpr_display_selectbox" value="1" /></td>
|
874 |
<td class="bws_pro_version"><input disabled="disabled" type="checkbox" name="cntctfrmpr_required_selectbox" value="1" /></td>
|
875 |
<td class="bws_pro_version"></td>
|
@@ -877,7 +886,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
877 |
<td class="bws_pro_version"><input disabled="disabled" type="file" name="cntctfrmpr_default_location"></td>
|
878 |
</tr>
|
879 |
<tr valign="top">
|
880 |
-
<td><?php _e( "Address", '
|
881 |
<td><input type="checkbox" id="cntctfrm_display_address_field" name="cntctfrm_display_address_field" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_display_address_field'] ) echo 'checked="checked" '; ?>/></td>
|
882 |
<td><input type="checkbox" id="cntctfrm_required_address_field" name="cntctfrm_required_address_field" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_required_address_field'] ) echo 'checked="checked" '; ?>/></td>
|
883 |
<td></td>
|
@@ -885,19 +894,19 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
885 |
<td></td>
|
886 |
</tr>
|
887 |
<tr valign="top">
|
888 |
-
<td><?php _e( "Email Address", '
|
889 |
<td></td>
|
890 |
<td><input type="checkbox" id="cntctfrm_required_email_field" name="cntctfrm_required_email_field" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_required_email_field'] ) echo 'checked="checked" '; ?>/></td>
|
891 |
<td class="bws_pro_version"><input disabled="disabled" type="checkbox" name="cntctfrmpr_visible_email" value="1" checked="checked" /></td>
|
892 |
<td class="bws_pro_version"><input disabled="disabled" type="checkbox" name="cntctfrmpr_disabled_email" value="1" /></td>
|
893 |
<td class="bws_pro_version">
|
894 |
<input disabled="disabled" type="checkbox" name="cntctfrmpr_default_email" value="1" />
|
895 |
-
<?php _e( "Use User's email as a default value if the user is logged in.", '
|
896 |
-
<span class="cntctfrm_info">(<?php _e( "'Visible' and 'Disabled for editing' options will be applied only to logged-in users.", '
|
897 |
</td>
|
898 |
</tr>
|
899 |
<tr valign="top">
|
900 |
-
<td><?php _e( "Phone number", '
|
901 |
<td><input type="checkbox" id="cntctfrm_display_phone_field" name="cntctfrm_display_phone_field" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_display_phone_field'] ) echo 'checked="checked" '; ?>/></td>
|
902 |
<td><input type="checkbox" id="cntctfrm_required_phone_field" name="cntctfrm_required_phone_field" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_required_phone_field'] ) echo 'checked="checked" '; ?>/></td>
|
903 |
<td></td>
|
@@ -905,7 +914,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
905 |
<td></td>
|
906 |
</tr>
|
907 |
<tr valign="top">
|
908 |
-
<td><?php _e( "Subject", '
|
909 |
<td></td>
|
910 |
<td><input type="checkbox" id="cntctfrm_required_subject_field" name="cntctfrm_required_subject_field" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_required_subject_field'] ) echo 'checked="checked" '; ?>/></td>
|
911 |
<td class="bws_pro_version"><input class="subject" disabled="disabled" type="checkbox" name="cntctfrmpr_visible_subject" value="1" checked="checked" /></td>
|
@@ -913,7 +922,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
913 |
<td class="bws_pro_version"><input class="subject" disabled="disabled" type="text" name="cntctfrmpr_default_subject" value="" /></td>
|
914 |
</tr>
|
915 |
<tr valign="top">
|
916 |
-
<td><?php _e( "Message", '
|
917 |
<td></td>
|
918 |
<td><input type="checkbox" id="cntctfrm_required_message_field" name="cntctfrm_required_message_field" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_required_message_field'] ) echo 'checked="checked" '; ?>/></td>
|
919 |
<td class="bws_pro_version"><input class="message" disabled="disabled" type="checkbox" name="cntctfrmpr_visible_message" value="1" checked="checked" /></td>
|
@@ -926,20 +935,20 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
926 |
<td></td>
|
927 |
<td colspan="3" class="bws_pro_version_tooltip">
|
928 |
<div class="bws_info">
|
929 |
-
<?php _e( 'Unlock premium options by upgrading to PRO version.', '
|
930 |
-
<a href="http://bestwebsoft.com/products/contact-form/?k=697c5e74f39779ce77850e11dbe21962&pn=77&v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Contact Form Pro"><?php _e( 'Learn More', '
|
931 |
</div>
|
932 |
<a class="bws_button" href="http://bestwebsoft.com/products/contact-form/buy/?k=697c5e74f39779ce77850e11dbe21962&pn=77&v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Contact Form Pro">
|
933 |
-
<?php _e( 'Go', '
|
934 |
</a>
|
935 |
<div class="clear"></div>
|
936 |
</td>
|
937 |
</tr>
|
938 |
<tr valign="top">
|
939 |
<td>
|
940 |
-
<?php _e( "Attachment block", '
|
941 |
<div class="cntctfrm_help_box">
|
942 |
-
<div class="cntctfrm_hidden_help_text"><?php echo __( "Users can attach the following file formats", '
|
943 |
</div>
|
944 |
</td>
|
945 |
<td><input type="checkbox" id="cntctfrm_attachment" name="cntctfrm_attachment" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_attachment'] ) echo 'checked="checked" '; ?>/></td>
|
@@ -952,12 +961,12 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
952 |
</table>
|
953 |
<table class="form-table" style="width:auto;">
|
954 |
<tr valign="top">
|
955 |
-
<th scope="row"><?php _e( "Add to the form", '
|
956 |
<td style="width:750px;" colspan="3">
|
957 |
<div>
|
958 |
<label>
|
959 |
<input type="checkbox" id="cntctfrm_attachment_explanations" name="cntctfrm_attachment_explanations" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_attachment_explanations'] && '1' == $cntctfrm_options['cntctfrm_attachment'] ) echo 'checked="checked" '; ?>/>
|
960 |
-
<?php _e( "Tips below the Attachment", '
|
961 |
</label>
|
962 |
<div class="cntctfrm_help_box">
|
963 |
<div class="cntctfrm_hidden_help_text"><img title="" src="<?php echo plugins_url( 'images/tooltip_attachment_tips.png', __FILE__ ); ?>" alt=""/></div>
|
@@ -966,7 +975,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
966 |
<div>
|
967 |
<label>
|
968 |
<input type="checkbox" id="cntctfrm_send_copy" name="cntctfrm_send_copy" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_send_copy'] ) echo 'checked="checked" '; ?>/>
|
969 |
-
<?php _e( "'Send me a copy' block", '
|
970 |
</label>
|
971 |
<div class="cntctfrm_help_box">
|
972 |
<div class="cntctfrm_hidden_help_text"><img title="" src="<?php echo plugins_url( 'images/tooltip_sendme_block.png', __FILE__ ); ?>" alt=""/></div>
|
@@ -979,11 +988,11 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
979 |
Captcha by BestWebSoft</label>
|
980 |
<?php } else { ?>
|
981 |
<label><input disabled="disabled" type="checkbox" name="cntctfrm_display_captcha" value="1" <?php if ( ( isset( $cptch_options ) && 1 == $cptch_options["cptch_contact_form"] ) || ( isset( $cptchpls_options ) && 1 == $cptchpls_options["cptchpls_contact_form"] ) || ( isset( $cptchpr_options ) && 1 == $cptchpr_options["cptchpr_contact_form"] ) ) echo 'checked="checked"'; ?> />
|
982 |
-
Captcha by BestWebSoft</label> <span class="bws_info"><a href="<?php echo bloginfo("url"); ?>/wp-admin/plugins.php"><?php _e( 'Activate captcha', '
|
983 |
<?php }
|
984 |
} else { ?>
|
985 |
<label><input disabled="disabled" type="checkbox" name="cntctfrm_display_captcha" value="1" />
|
986 |
-
Captcha by BestWebSoft</label> <span class="bws_info"><a href="http://bestwebsoft.com/products/captcha/?k=19ac1e9b23bea947cfc4a9b8e3326c03&pn=77&v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>"><?php _e( 'Download captcha', '
|
987 |
<?php } ?>
|
988 |
</div>
|
989 |
<div class="bws_pro_version_bloc">
|
@@ -991,18 +1000,18 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
991 |
<div class="bws_table_bg"></div>
|
992 |
<div class="bws_pro_version">
|
993 |
<fieldset>
|
994 |
-
<label><input disabled="disabled" type="checkbox" value="1" name="cntctfrmpr_display_privacy_check"> <?php _e( 'Agreement checkbox', '
|
995 |
-
<label><input disabled="disabled" type="checkbox" value="1" name="cntctfrmpr_display_optional_check"> <?php _e( 'Optional checkbox', '
|
996 |
</fieldset>
|
997 |
</div>
|
998 |
</div>
|
999 |
<div class="bws_pro_version_tooltip">
|
1000 |
<div class="bws_info">
|
1001 |
-
<?php _e( 'Unlock premium options by upgrading to PRO version.', '
|
1002 |
-
<a href="http://bestwebsoft.com/products/contact-form/?k=697c5e74f39779ce77850e11dbe21962&pn=77&v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Contact Form Pro"><?php _e( 'Learn More', '
|
1003 |
</div>
|
1004 |
<a class="bws_button" href="http://bestwebsoft.com/products/contact-form/buy/?k=697c5e74f39779ce77850e11dbe21962&pn=77&v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Contact Form Pro">
|
1005 |
-
<?php _e( 'Go', '
|
1006 |
</a>
|
1007 |
<div class="clear"></div>
|
1008 |
</div>
|
@@ -1010,31 +1019,31 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
1010 |
</td>
|
1011 |
</tr>
|
1012 |
<tr valign="top">
|
1013 |
-
<th scope="row"><?php _e( "Delete an attachment file from the server after the email is sent", '
|
1014 |
<td colspan="3">
|
1015 |
<input type="checkbox" id="cntctfrm_delete_attached_file" name="cntctfrm_delete_attached_file" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_delete_attached_file'] ) echo 'checked="checked" '; ?>/>
|
1016 |
</td>
|
1017 |
</tr>
|
1018 |
<tr valign="top">
|
1019 |
-
<th scope="row"><?php _e( "Email in HTML format sending", '
|
1020 |
<td colspan="2"><input type="checkbox" name="cntctfrm_html_email" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_html_email'] ) echo 'checked="checked" '; ?>/></td>
|
1021 |
</tr>
|
1022 |
<tr valign="top">
|
1023 |
-
<th scope="row"><?php _e( "Display additional info in the email", '
|
1024 |
<td style="width:15px;" class="cntctfrm_td_top_align">
|
1025 |
<input type="checkbox" id="cntctfrm_display_add_info" name="cntctfrm_display_add_info" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_display_add_info'] ) echo 'checked="checked" '; ?>/>
|
1026 |
</td>
|
1027 |
<td class="cntctfrm_display_add_info_block" <?php if ( '0' == $cntctfrm_options['cntctfrm_display_add_info'] ) echo 'style="display:none"'; ?>>
|
1028 |
<fieldset>
|
1029 |
-
<label><input type="checkbox" id="cntctfrm_display_sent_from" name="cntctfrm_display_sent_from" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_display_sent_from'] ) echo 'checked="checked" '; ?>/> <?php _e( "Sent from (ip address)", '
|
1030 |
-
<label><input type="checkbox" id="cntctfrm_display_date_time" name="cntctfrm_display_date_time" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_display_date_time'] ) echo 'checked="checked" '; ?>/> <?php _e( "Date/Time", '
|
1031 |
-
<label><input type="checkbox" id="cntctfrm_display_coming_from" name="cntctfrm_display_coming_from" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_display_coming_from'] ) echo 'checked="checked" '; ?>/> <?php _e( "Sent from (referer)", '
|
1032 |
-
<label><input type="checkbox" id="cntctfrm_display_user_agent" name="cntctfrm_display_user_agent" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_display_user_agent'] ) echo 'checked="checked" '; ?>/> <?php _e( "Using (user agent)", '
|
1033 |
</fieldset>
|
1034 |
</td>
|
1035 |
</tr>
|
1036 |
<tr valign="top">
|
1037 |
-
<th scope="row"><?php _e( "Language settings for the field names in the form", '
|
1038 |
<td colspan="2">
|
1039 |
<select name="cntctfrm_languages" id="cntctfrm_languages" style="width:300px;">
|
1040 |
<?php foreach ( $lang_codes as $key => $val ) {
|
@@ -1043,16 +1052,16 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
1043 |
echo '<option value="' . esc_attr( $key ) . '"> ' . esc_html( $val ) . '</option>';
|
1044 |
} ?>
|
1045 |
</select>
|
1046 |
-
<input type="button" class="button-primary" id="cntctfrm_add_language_button" value="<?php _e( 'Add a language', '
|
1047 |
</td>
|
1048 |
</tr>
|
1049 |
<tr valign="top">
|
1050 |
-
<th scope="row"><?php _e( "Change the names of the contact form fields and error messages", '
|
1051 |
<td style="width:15px;" class="cntctfrm_td_top_align">
|
1052 |
<input type="checkbox" id="cntctfrm_change_label" name="cntctfrm_change_label" value="1" <?php if ( $cntctfrm_options['cntctfrm_change_label'] == '1' ) echo 'checked="checked" '; ?>/>
|
1053 |
</td>
|
1054 |
<td class="cntctfrm_change_label_block" <?php if ( '0' == $cntctfrm_options['cntctfrm_change_label'] ) echo 'style="display:none"'; ?>>
|
1055 |
-
<div class="cntctfrm_label_language_tab cntctfrm_active" id="cntctfrm_label_en"><?php _e( 'English', '
|
1056 |
<?php if ( ! empty( $cntctfrm_options['cntctfrm_language'] ) ) {
|
1057 |
foreach ( $cntctfrm_options['cntctfrm_language'] as $val ) {
|
1058 |
echo '<div class="cntctfrm_label_language_tab" id="cntctfrm_label_' . $val . '">' . $lang_codes[ $val ] . ' <span class="cntctfrm_delete" rel="' . $val . '">X</span></div>';
|
@@ -1060,69 +1069,69 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
1060 |
} ?>
|
1061 |
<div class="clear"></div>
|
1062 |
<div class="cntctfrm_language_tab cntctfrm_tab_en">
|
1063 |
-
<div class="cntctfrm_language_tab_block_mini" style="display:none;"><?php _e( "click to expand/hide the list", '
|
1064 |
<div class="cntctfrm_language_tab_block">
|
1065 |
-
<input type="text" maxlength="250" name="cntctfrm_name_label[en]" value="<?php echo $cntctfrm_options['cntctfrm_name_label']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Name:", '
|
1066 |
-
<input type="text" maxlength="250" name="cntctfrm_address_label[en]" value="<?php echo $cntctfrm_options['cntctfrm_address_label']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Address:", '
|
1067 |
-
<input type="text" maxlength="250" name="cntctfrm_email_label[en]" value="<?php echo $cntctfrm_options['cntctfrm_email_label']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Email Address:", '
|
1068 |
-
<input type="text" maxlength="250" name="cntctfrm_phone_label[en]" value="<?php echo $cntctfrm_options['cntctfrm_phone_label']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Phone number:", '
|
1069 |
-
<input type="text" maxlength="250" name="cntctfrm_subject_label[en]" value="<?php echo $cntctfrm_options['cntctfrm_subject_label']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Subject:", '
|
1070 |
-
<input type="text" maxlength="250" name="cntctfrm_message_label[en]" value="<?php echo $cntctfrm_options['cntctfrm_message_label']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Message:", '
|
1071 |
-
<input type="text" maxlength="250" name="cntctfrm_attachment_label[en]" value="<?php echo $cntctfrm_options['cntctfrm_attachment_label']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Attachment:", '
|
1072 |
-
<input type="text" maxlength="250" name="cntctfrm_attachment_tooltip[en]" value="<?php echo $cntctfrm_options['cntctfrm_attachment_tooltip']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Tips below the Attachment block", '
|
1073 |
-
<input type="text" maxlength="250" name="cntctfrm_send_copy_label[en]" value="<?php echo $cntctfrm_options['cntctfrm_send_copy_label']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Send me a copy", '
|
1074 |
-
<input type="text" maxlength="250" name="cntctfrm_submit_label[en]" value="<?php echo $cntctfrm_options['cntctfrm_submit_label']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Submit", '
|
1075 |
-
<input type="text" maxlength="250" name="cntctfrm_name_error[en]" value="<?php echo $cntctfrm_options['cntctfrm_name_error']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for the Name field", '
|
1076 |
-
<input type="text" maxlength="250" name="cntctfrm_address_error[en]" value="<?php echo $cntctfrm_options['cntctfrm_address_error']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for the Address field", '
|
1077 |
-
<input type="text" maxlength="250" name="cntctfrm_email_error[en]" value="<?php echo $cntctfrm_options['cntctfrm_email_error']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for the Email field", '
|
1078 |
-
<input type="text" maxlength="250" name="cntctfrm_phone_error[en]" value="<?php echo $cntctfrm_options['cntctfrm_phone_error']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for the Phone field", '
|
1079 |
-
<input type="text" maxlength="250" name="cntctfrm_subject_error[en]" value="<?php echo $cntctfrm_options['cntctfrm_subject_error']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for the Subject field", '
|
1080 |
-
<input type="text" maxlength="250" name="cntctfrm_message_error[en]" value="<?php echo $cntctfrm_options['cntctfrm_message_error']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for the Message field", '
|
1081 |
-
<input type="text" maxlength="250" name="cntctfrm_attachment_error[en]" value="<?php echo $cntctfrm_options['cntctfrm_attachment_error']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message about the file type for the Attachment field", '
|
1082 |
-
<input type="text" maxlength="250" name="cntctfrm_attachment_upload_error[en]" value="<?php echo $cntctfrm_options['cntctfrm_attachment_upload_error']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message while uploading a file for the Attachment field to the server", '
|
1083 |
-
<input type="text" maxlength="250" name="cntctfrm_attachment_move_error[en]" value="<?php echo $cntctfrm_options['cntctfrm_attachment_move_error']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message while moving the file for the Attachment field", '
|
1084 |
-
<input type="text" maxlength="250" name="cntctfrm_attachment_size_error[en]" value="<?php echo $cntctfrm_options['cntctfrm_attachment_size_error']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message when file size limit for the Attachment field is exceeded", '
|
1085 |
-
<input type="text" maxlength="250" name="cntctfrm_captcha_error[en]" value="<?php echo $cntctfrm_options['cntctfrm_captcha_error']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for the Captcha field", '
|
1086 |
-
<input type="text" maxlength="250" name="cntctfrm_form_error[en]" value="<?php echo $cntctfrm_options['cntctfrm_form_error']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for the whole form", '
|
1087 |
</div>
|
1088 |
<?php if ( ! isset( $contact_form_multi_active ) && ! isset( $contact_form_multi_pro_active ) ) { ?>
|
1089 |
-
<span class="cntctfrm_info" style="margin-left: 5px;"><?php _e( "Use shortcode", '
|
1090 |
<?php } else { ?>
|
1091 |
-
<span class="cntctfrm_info" style="margin-left: 5px;"><?php _e( "Use shortcode", '
|
1092 |
<?php } ?>
|
1093 |
</div>
|
1094 |
<?php if ( ! empty( $cntctfrm_options['cntctfrm_language'] ) ) {
|
1095 |
foreach ( $cntctfrm_options['cntctfrm_language'] as $val ) { ?>
|
1096 |
<div class="cntctfrm_language_tab hidden cntctfrm_tab_<?php echo $val; ?>">
|
1097 |
-
<div class="cntctfrm_language_tab_block_mini" style="display:none;"><?php _e( "click to expand/hide the list", '
|
1098 |
<div class="cntctfrm_language_tab_block">
|
1099 |
-
<input type="text" maxlength="250" name="cntctfrm_name_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_name_label'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_name_label'][ $val ]; ?>" /> <span class="cntctfrm_info"><?php _e( "Name:", '
|
1100 |
-
<input type="text" maxlength="250" name="cntctfrm_address_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_address_label'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_address_label'][ $val ]; ?>" /> <span class="cntctfrm_info"><?php _e( "Address:", '
|
1101 |
-
<input type="text" maxlength="250" name="cntctfrm_email_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_email_label'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_email_label'][ $val ]; ?>" /> <span class="cntctfrm_info"><?php _e( "Email Address:", '
|
1102 |
-
<input type="text" maxlength="250" name="cntctfrm_phone_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_phone_label'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_phone_label'][ $val ]; ?>" /> <span class="cntctfrm_info"><?php _e( "Phone number:", '
|
1103 |
-
<input type="text" maxlength="250" name="cntctfrm_subject_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_subject_label'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_subject_label'][ $val ]; ?>" /> <span class="cntctfrm_info"><?php _e( "Subject:", '
|
1104 |
-
<input type="text" maxlength="250" name="cntctfrm_message_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_message_label'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_message_label'][ $val ]; ?>" /> <span class="cntctfrm_info"><?php _e( "Message:", '
|
1105 |
-
<input type="text" maxlength="250" name="cntctfrm_attachment_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_attachment_label'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_attachment_label'][ $val ]; ?>" /> <span class="cntctfrm_info"><?php _e( "Attachment:", '
|
1106 |
-
<input type="text" maxlength="250" name="cntctfrm_attachment_tooltip[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_attachment_tooltip'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_attachment_tooltip'][ $val ]; ?>" /> <span class="cntctfrm_info"><?php _e( "Tips below the Attachment block", '
|
1107 |
-
<input type="text" maxlength="250" name="cntctfrm_send_copy_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_send_copy_label'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_send_copy_label'][ $val ]; ?>" /> <span class="cntctfrm_info"><?php _e( "Send me a copy", '
|
1108 |
-
<input type="text" maxlength="250" name="cntctfrm_submit_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_submit_label'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_submit_label'][ $val ]; ?>" /> <span class="cntctfrm_info"><?php _e( "Submit", '
|
1109 |
-
<input type="text" maxlength="250" name="cntctfrm_name_error[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_name_error'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_name_error'][ $val ]; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for the Name field", '
|
1110 |
-
<input type="text" maxlength="250" name="cntctfrm_address_error[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_address_error'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_address_error'][ $val ]; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for the Address field", '
|
1111 |
-
<input type="text" maxlength="250" name="cntctfrm_email_error[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_email_error'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_email_error'][ $val ]; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for the Email field", '
|
1112 |
-
<input type="text" maxlength="250" name="cntctfrm_phone_error[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_phone_error'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_phone_error'][ $val ]; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for the Phone field", '
|
1113 |
-
<input type="text" maxlength="250" name="cntctfrm_subject_error[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_subject_error'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_subject_error'][ $val ]; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for the Subject field", '
|
1114 |
-
<input type="text" maxlength="250" name="cntctfrm_message_error[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_message_error'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_message_error'][ $val ]; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for the Message field", '
|
1115 |
-
<input type="text" maxlength="250" name="cntctfrm_attachment_error[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_attachment_error'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_attachment_error'][ $val ]; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message about the file type for the Attachment field", '
|
1116 |
-
<input type="text" maxlength="250" name="cntctfrm_attachment_upload_error[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_attachment_upload_error'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_attachment_upload_error'][ $val ]; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message while uploading a file for the Attachment field to the server", '
|
1117 |
-
<input type="text" maxlength="250" name="cntctfrm_attachment_move_error[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_attachment_move_error'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_attachment_move_error'][ $val ]; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message while moving the file for the Attachment field", '
|
1118 |
-
<input type="text" maxlength="250" name="cntctfrm_attachment_size_error[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_attachment_size_error'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_attachment_size_error'][ $val ]; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message when file size limit for the Attachment field is exceeded", '
|
1119 |
-
<input type="text" maxlength="250" name="cntctfrm_captcha_error[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_captcha_error'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_captcha_error'][ $val ]; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for the Captcha field", '
|
1120 |
-
<input type="text" maxlength="250" name="cntctfrm_form_error[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_form_error'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_form_error'][ $val ]; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for the whole form", '
|
1121 |
</div>
|
1122 |
<?php if ( ! isset( $contact_form_multi_active ) && ! isset( $contact_form_multi_pro_active ) ) { ?>
|
1123 |
-
<span class="cntctfrm_info" style="margin-left: 5px;"><?php _e( "Use shortcode", '
|
1124 |
<?php } else { ?>
|
1125 |
-
<span class="cntctfrm_info" style="margin-left: 5px;"><?php _e( "Use shortcode", '
|
1126 |
<?php } ?>
|
1127 |
</div>
|
1128 |
<?php }
|
@@ -1130,16 +1139,16 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
1130 |
</td>
|
1131 |
</tr>
|
1132 |
<tr valign="top">
|
1133 |
-
<th scope="row"><?php _e( 'Use the changed names of the contact form fields in the email', '
|
1134 |
<td colspan="2">
|
1135 |
<input type="checkbox" name="cntctfrm_change_label_in_email" value="1" <?php if ( $cntctfrm_options['cntctfrm_change_label_in_email'] == '1' ) echo 'checked="checked" '; ?>/>
|
1136 |
</td>
|
1137 |
</tr>
|
1138 |
<tr valign="top">
|
1139 |
-
<th scope="row"><?php _e( "Action after email is sent", '
|
1140 |
<td colspan="2" class="cntctfrm_action_after_send_block">
|
1141 |
-
<label><input type="radio" id="cntctfrm_action_after_send" name="cntctfrm_action_after_send" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_action_after_send'] ) echo 'checked="checked" '; ?>/> <?php _e( "Display text", '
|
1142 |
-
<div class="cntctfrm_label_language_tab cntctfrm_active" id="cntctfrm_text_en"><?php _e( 'English', '
|
1143 |
<?php if ( ! empty( $cntctfrm_options['cntctfrm_language'] ) ) {
|
1144 |
foreach ( $cntctfrm_options['cntctfrm_language'] as $val ) {
|
1145 |
echo '<div class="cntctfrm_label_language_tab" id="cntctfrm_text_' . $val . '">' . $lang_codes[ $val ] . ' <span class="cntctfrm_delete" rel="' . $val . '">X</span></div>';
|
@@ -1147,38 +1156,38 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
1147 |
} ?>
|
1148 |
<div class="clear"></div>
|
1149 |
<div class="cntctfrm_language_tab cntctfrm_tab_en" style=" padding: 5px 10px 5px 5px;">
|
1150 |
-
<input type="text" maxlength="250" name="cntctfrm_thank_text[en]" value="<?php echo $cntctfrm_options['cntctfrm_thank_text']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Text", '
|
1151 |
<?php if ( ! isset( $contact_form_multi_active ) && ! isset( $contact_form_multi_pro_active ) ) { ?>
|
1152 |
-
<span class="cntctfrm_info"><?php _e( "Use shortcode", '
|
1153 |
<?php } else { ?>
|
1154 |
-
<span class="cntctfrm_info"><?php _e( "Use shortcode", '
|
1155 |
<?php } ?>
|
1156 |
</div>
|
1157 |
<?php if ( ! empty( $cntctfrm_options['cntctfrm_language'] ) ) {
|
1158 |
foreach ( $cntctfrm_options['cntctfrm_language'] as $val ) { ?>
|
1159 |
<div class="cntctfrm_language_tab hidden cntctfrm_tab_<?php echo $val; ?>" style=" padding: 5px 10px 5px 5px;">
|
1160 |
-
<label><input type="text" maxlength="250" name="cntctfrm_thank_text[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_thank_text'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_thank_text'][ $val ]; ?>" /> <span class="cntctfrm_info"><?php _e( "Text", '
|
1161 |
<?php if ( ! isset( $contact_form_multi_active ) && ! isset( $contact_form_multi_pro_active ) ) { ?>
|
1162 |
-
<span class="cntctfrm_info"><?php _e( "Use shortcode", '
|
1163 |
<?php } else { ?>
|
1164 |
-
<span class="cntctfrm_info"><?php _e( "Use shortcode", '
|
1165 |
<?php } ?>
|
1166 |
</div>
|
1167 |
<?php }
|
1168 |
} ?>
|
1169 |
<div id="cntctfrm_before"></div>
|
1170 |
<br />
|
1171 |
-
<input type="radio" id="cntctfrm_action_after_send_url" name="cntctfrm_action_after_send" value="0" <?php if ( '0' == $cntctfrm_options['cntctfrm_action_after_send'] ) echo 'checked="checked" '; ?>/> <?php _e( "Redirect to the page", '
|
1172 |
-
<label><input type="text" maxlength="250" name="cntctfrm_redirect_url" value="<?php echo $cntctfrm_options['cntctfrm_redirect_url']; ?>" onfocus="document.getElementById('cntctfrm_action_after_send_url').checked = true;" /> <span class="cntctfrm_info"><?php _e( "Url", '
|
1173 |
</td>
|
1174 |
</tr>
|
1175 |
<tr valign="top">
|
1176 |
-
<th scope="row"><?php _e( 'The $_SERVER variable that is used to build a URL of the form', '
|
1177 |
<td colspan="2">
|
1178 |
<fieldset>
|
1179 |
<label><input type="radio" name="cntctfrm_site_name_parameter" value="SERVER_NAME" <?php if ( 'SERVER_NAME' == $cntctfrm_options['cntctfrm_site_name_parameter'] ) echo 'checked="checked" '; ?>/> SERVER_NAME</label><br />
|
1180 |
<label><input type="radio" name="cntctfrm_site_name_parameter" value="HTTP_HOST" <?php if ( 'HTTP_HOST' == $cntctfrm_options['cntctfrm_site_name_parameter'] ) echo 'checked="checked" '; ?>/> HTTP_HOST</label><br />
|
1181 |
-
<span class="cntctfrm_info"><?php _e( "If you are not sure whether to change this setting or not, please do not do that.", '
|
1182 |
</fieldset>
|
1183 |
</td>
|
1184 |
</tr>
|
@@ -1188,27 +1197,27 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
1188 |
<div class="bws_table_bg"></div>
|
1189 |
<table class="form-table bws_pro_version">
|
1190 |
<tr valign="top">
|
1191 |
-
<th scope="row"><?php _e( 'Auto Response', '
|
1192 |
<td colspan="2">
|
1193 |
<input disabled="disabled" type="checkbox" value="1" name="cntctfrm_auto_response" checked="checked"/>
|
1194 |
<textarea name="cntctfrm_auto_response_message" style="position: relative; margin-left: 20px; z-index: -1;">Dear %%NAME%%, Thank you for contacting us. We have received your message and will reply to it shortly. Regards, %%SITENAME%% Team.</textarea><br/>
|
1195 |
-
<span class="cntctfrm_info" style="margin-left: 45px"><?php _e( "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to display data from the Message field, as well as %%SITENAME%% to display blog name.", '
|
1196 |
</td>
|
1197 |
</tr>
|
1198 |
<tr valign="top">
|
1199 |
<th scope="row" colspan="2">
|
1200 |
-
* <?php _e( 'If you upgrade to Pro version all your settings will be saved.', '
|
1201 |
</th>
|
1202 |
</tr>
|
1203 |
</table>
|
1204 |
</div>
|
1205 |
<div class="bws_pro_version_tooltip">
|
1206 |
<div class="bws_info">
|
1207 |
-
<?php _e( 'Unlock premium options by upgrading to PRO version.', '
|
1208 |
-
<a href="http://bestwebsoft.com/products/contact-form/?k=697c5e74f39779ce77850e11dbe21962&pn=77&v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Contact Form Pro"><?php _e( 'Learn More', '
|
1209 |
</div>
|
1210 |
<a class="bws_button" href="http://bestwebsoft.com/products/contact-form/buy/?k=697c5e74f39779ce77850e11dbe21962&pn=77&v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Contact Form Pro">
|
1211 |
-
<?php _e( 'Go', '
|
1212 |
</a>
|
1213 |
<div class="clear"></div>
|
1214 |
</div>
|
@@ -1217,7 +1226,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
1217 |
<!-- end of 'Additional' settings -->
|
1218 |
<input type="hidden" name="cntctfrm_form_submit" value="submit" />
|
1219 |
<p class="submit">
|
1220 |
-
<input type="submit" class="button-primary" value="<?php _e( 'Save Changes', '
|
1221 |
</p>
|
1222 |
<?php wp_nonce_field( $plugin_basename, 'cntctfrm_nonce_name' ); ?>
|
1223 |
</form>
|
@@ -1230,56 +1239,56 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
1230 |
<div class="bws_table_bg"></div>
|
1231 |
<table class="form-table bws_pro_version">
|
1232 |
<tr valign="top">
|
1233 |
-
<th scope="row"><?php _e( "Errors output", '
|
1234 |
<td colspan="2">
|
1235 |
<select name="cntctfrmpr_error_displaying">
|
1236 |
-
<option value="labels"><?php _e( "Display error messages", '
|
1237 |
-
<option value="input_colors"><?php _e( "Color of the input field errors.", '
|
1238 |
-
<option value="both" selected="selected"><?php _e( "Display error messages & color of the input field errors", '
|
1239 |
</select>
|
1240 |
</td>
|
1241 |
</tr>
|
1242 |
<tr valign="top">
|
1243 |
-
<th scope="row"><?php _e( "Add placeholder to the input blocks", '
|
1244 |
<td colspan="2">
|
1245 |
<input disabled='disabled' type="checkbox" name="cntctfrmpr_placeholder" value="1" checked="checked"/>
|
1246 |
</td>
|
1247 |
</tr>
|
1248 |
<tr valign="top">
|
1249 |
-
<th scope="row"><?php _e( "Add tooltips", '
|
1250 |
<td colspan="2">
|
1251 |
<div>
|
1252 |
<input disabled='disabled' type="checkbox" name="cntctfrmpr_tooltip_display_name" value="1" checked="checked"/>
|
1253 |
-
<label class="cntctfrmpr_tooltip_label" for="cntctfrmpr_tooltip_display_name"><?php _e( "Name", '
|
1254 |
</div>
|
1255 |
<?php if ( '1' == $cntctfrm_options['cntctfrm_display_address_field'] ) { ?>
|
1256 |
<div>
|
1257 |
<input disabled='disabled' type="checkbox" name="cntctfrmpr_tooltip_display_address" value="1" checked="checked"/>
|
1258 |
-
<label class="cntctfrmpr_tooltip_label" for="cntctfrmpr_tooltip_display_address"><?php _e( "Address", '
|
1259 |
</div>
|
1260 |
<?php } ?>
|
1261 |
<div>
|
1262 |
<input disabled='disabled' type="checkbox" name="cntctfrmpr_tooltip_display_email" value="1" checked="checked"/>
|
1263 |
-
<label class="cntctfrmpr_tooltip_label" for="cntctfrmpr_tooltip_display_email"><?php _e( "Email address", '
|
1264 |
</div>
|
1265 |
<?php if ( '1' == $cntctfrm_options['cntctfrm_display_phone_field'] ) { ?>
|
1266 |
<div>
|
1267 |
<input disabled='disabled' type="checkbox" name="cntctfrmpr_tooltip_display_phone" value="1" checked="checked"/>
|
1268 |
-
<label class="cntctfrmpr_tooltip_label" for="cntctfrmpr_tooltip_display_phone"><?php _e( "Phone Number", '
|
1269 |
</div>
|
1270 |
<?php } ?>
|
1271 |
<div>
|
1272 |
<input disabled='disabled' type="checkbox" name="cntctfrmpr_tooltip_display_subject" value="1" checked="checked"/>
|
1273 |
-
<label class="cntctfrmpr_tooltip_label" for="cntctfrmpr_tooltip_display_subject"><?php _e( "Subject", '
|
1274 |
</div>
|
1275 |
<div>
|
1276 |
<input disabled='disabled' type="checkbox" name="cntctfrmpr_tooltip_display_message" value="1" checked="checked"/>
|
1277 |
-
<label class="cntctfrmpr_tooltip_label" for="cntctfrmpr_tooltip_display_message"><?php _e( "Message", '
|
1278 |
</div>
|
1279 |
<?php if ( '1' == $cntctfrm_options['cntctfrm_attachment_explanations'] ) { ?>
|
1280 |
<div>
|
1281 |
<input disabled='disabled' type="checkbox" name="cntctfrmpr_tooltip_display_attachment" value="1" checked="checked"/>
|
1282 |
-
<label class="cntctfrmpr_tooltip_label" for="cntctfrmpr_tooltip_display_attachment"><?php _e( "Attachment", '
|
1283 |
</div>
|
1284 |
<?php } ?>
|
1285 |
<div>
|
@@ -1289,123 +1298,123 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
1289 |
</td>
|
1290 |
</tr>
|
1291 |
<tr valign="top">
|
1292 |
-
<th colspan="3" scope="row"><input disabled='disabled' type="checkbox" id="cntctfrmpr_style_options" name="cntctfrmpr_style_options" value="1" checked="checked" /> <?php _e( "Style options", '
|
1293 |
</tr>
|
1294 |
<tr valign="top" class="cntctfrm_style_block">
|
1295 |
-
<th scope="row"><?php _e( "Text color", '
|
1296 |
<td colspan="2">
|
1297 |
<div>
|
1298 |
-
<input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" value="<?php _e('Default', '
|
1299 |
<input disabled='disabled' type="text" size="8" name="cntctfrmpr_label_color" value="" class="cntctfrmpr_colorPicker" />
|
1300 |
-
<div class="cntctfrm_label_block"><?php _e( 'Label text color', '
|
1301 |
</div>
|
1302 |
<div>
|
1303 |
-
<input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" value="<?php _e('Default', '
|
1304 |
<input disabled='disabled' type="text" size="8" name="cntctfrmpr_input_placeholder_color" value="" class="cntctfrmpr_colorPicker" />
|
1305 |
-
<div class="cntctfrm_label_block"><?php _e( "Placeholder color", '
|
1306 |
</div>
|
1307 |
</td>
|
1308 |
</tr>
|
1309 |
<tr valign="top" class="cntctfrm_style_block">
|
1310 |
-
<th scope="row"><?php _e( "Errors color", '
|
1311 |
<td colspan="2">
|
1312 |
<div>
|
1313 |
-
<input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" value="<?php _e('Default', '
|
1314 |
<input disabled='disabled' type="text" size="8" name="cntctfrmpr_error_color" value="" class="cntctfrmpr_colorPicker" />
|
1315 |
-
<div class="cntctfrm_label_block"><?php _e( 'Error text color', '
|
1316 |
</div>
|
1317 |
<div>
|
1318 |
-
<input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" value="<?php _e('Default', '
|
1319 |
<input disabled='disabled' type="text" size="8" name="cntctfrmpr_error_input_color" value="" class="cntctfrmpr_colorPicker" />
|
1320 |
-
<div class="cntctfrm_label_block"><?php _e( 'Background color of the input field errors', '
|
1321 |
</div>
|
1322 |
<div>
|
1323 |
-
<input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" value="<?php _e('Default', '
|
1324 |
<input disabled='disabled' type="text" size="8" name="cntctfrmpr_error_input_border_color" value="" class="cntctfrmpr_colorPicker" />
|
1325 |
-
<div class="cntctfrm_label_block"><?php _e( 'Border color of the input field errors', '
|
1326 |
</div>
|
1327 |
<div>
|
1328 |
-
<input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" id="" value="<?php _e('Default', '
|
1329 |
<input disabled='disabled' type="text" size="8" name="cntctfrmpr_input_placeholder_error_color" value="" class="cntctfrmpr_colorPicker " />
|
1330 |
-
<div class="cntctfrm_label_block"><?php _e( "Placeholder color of the input field errors", '
|
1331 |
</div>
|
1332 |
</td>
|
1333 |
</tr>
|
1334 |
<tr valign="top" class="cntctfrm_style_block">
|
1335 |
-
<th scope="row"><?php _e( "Input fields", '
|
1336 |
<td colspan="2">
|
1337 |
<div>
|
1338 |
-
<input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" id="" value="<?php _e('Default', '
|
1339 |
<input disabled='disabled' type="text" size="8" name="cntctfrmpr_input_background" value="" class="cntctfrmpr_colorPicker" />
|
1340 |
-
<div class="cntctfrm_label_block"><?php _e( "Input fields background color", '
|
1341 |
</div>
|
1342 |
<div>
|
1343 |
-
<input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" value="<?php _e('Default', '
|
1344 |
<input disabled='disabled' type="text" size="8" name="cntctfrmpr_input_color" value="" class="cntctfrmpr_colorPicker" />
|
1345 |
-
<div class="cntctfrm_label_block"><?php _e( "Text fields color", '
|
1346 |
</div>
|
1347 |
<div>
|
1348 |
<input disabled='disabled' size="8" type="text" value="" name="cntctfrmpr_border_input_width" />
|
1349 |
-
<div class="cntctfrm_label_block"><?php _e( 'Border width in px, numbers only', '
|
1350 |
</div>
|
1351 |
<div>
|
1352 |
-
<input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" value="<?php _e('Default', '
|
1353 |
<input disabled='disabled' type="text" size="8" name="cntctfrmpr_border_input_color" value="" class="cntctfrmpr_colorPicker" />
|
1354 |
-
<div class="cntctfrm_label_block"><?php _e( 'Border color', '
|
1355 |
</div>
|
1356 |
</td>
|
1357 |
</tr>
|
1358 |
<tr valign="top" class="cntctfrm_style_block">
|
1359 |
-
<th scope="row"><?php _e( "Submit button", '
|
1360 |
<td colspan="2">
|
1361 |
<div>
|
1362 |
<input disabled='disabled' size="8" type="text" value="" name="cntctfrmpr_button_width" />
|
1363 |
-
<div class="cntctfrm_label_block"><?php _e( 'Width in px, numbers only', '
|
1364 |
</div>
|
1365 |
<div>
|
1366 |
-
<input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" value="<?php _e('Default', '
|
1367 |
<input disabled='disabled' type="text" size="8" name="cntctfrmpr_button_backgroud" value="" class="cntctfrmpr_colorPicker" />
|
1368 |
-
<div class="cntctfrm_label_block"><?php _e( 'Button color', '
|
1369 |
</div>
|
1370 |
<div>
|
1371 |
-
<input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" value="<?php _e('Default', '
|
1372 |
<input disabled='disabled' type="text" size="8" name="cntctfrmpr_button_color" value="" class="cntctfrmpr_colorPicker" />
|
1373 |
-
<div class="cntctfrm_label_block"><?php _e( "Button text color", '
|
1374 |
</div>
|
1375 |
<div>
|
1376 |
-
<input disabled='disabled' type="button" class="cntctfrmpr_default button-small button" value="<?php _e('Default', '
|
1377 |
<input disabled='disabled' type="text" size="8" name="cntctfrmpr_border_button_color" value="" class="cntctfrmpr_colorPicker" />
|
1378 |
-
<div class="cntctfrm_label_block"><?php _e( 'Border color', '
|
1379 |
</div>
|
1380 |
</td>
|
1381 |
</tr>
|
1382 |
<tr valign="top">
|
1383 |
<th scope="row" colspan="2">
|
1384 |
-
* <?php _e( 'If you upgrade to Pro version all your settings will be saved.', '
|
1385 |
</th>
|
1386 |
</tr>
|
1387 |
</table>
|
1388 |
</div>
|
1389 |
<div class="bws_pro_version_tooltip">
|
1390 |
<div class="bws_info">
|
1391 |
-
<?php _e( 'Unlock premium options by upgrading to PRO version.', '
|
1392 |
-
<a href="http://bestwebsoft.com/products/contact-form/?k=697c5e74f39779ce77850e11dbe21962&pn=77&v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Contact Form Pro"><?php _e( 'Learn More', '
|
1393 |
</div>
|
1394 |
<a class="bws_button" href="http://bestwebsoft.com/products/contact-form/buy/?k=697c5e74f39779ce77850e11dbe21962&pn=77&v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Contact Form Pro">
|
1395 |
-
<?php _e( 'Go', '
|
1396 |
</a>
|
1397 |
<div class="clear"></div>
|
1398 |
</div>
|
1399 |
</div>
|
1400 |
<input type="hidden" name="cntctfrmpr_form_submit" value="submit" />
|
1401 |
<p class="submit">
|
1402 |
-
<input disabled='disabled' type="button" class="button-primary" value="<?php _e( 'Save Changes', '
|
1403 |
</p>
|
1404 |
</div>
|
1405 |
<div id="<?php echo is_rtl() ? 'cntctfrmpr_left_table' : 'cntctfrmpr_right_table' ?>">
|
1406 |
-
<h3><?php _e( "Contact Form Pro | Preview", '
|
1407 |
<div id="cntctfrmpr_show_errors_block">
|
1408 |
-
<input disabled="" type="checkbox" id="cntctfrmpr_show_errors" name="cntctfrmpr_show_errors" /> <?php _e( "Show with errors", '
|
1409 |
</div>
|
1410 |
<div id="cntctfrmpr_contact_form" class="cntctfrm_contact_form">
|
1411 |
<div class="cntctfrmpr_error_text hidden"><?php echo $cntctfrm_options['cntctfrm_form_error']['en']; ?></div>
|
@@ -1414,9 +1423,9 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
1414 |
</div>
|
1415 |
<div class="cntctfrmpr_error_text hidden"><?php echo $cntctfrm_options['cntctfrm_name_error']['en']; ?></div>
|
1416 |
<div class="cntctfrm_input cntctfrm_input_name">
|
1417 |
-
<input placeholder="<?php _e( "Please enter your full name...", '
|
1418 |
<div class="cntctfrmpr_help_box">
|
1419 |
-
<div class="cntctfrmpr_hidden_help_text"><?php _e( "Please enter your full name...", '
|
1420 |
</div>
|
1421 |
</div>
|
1422 |
<?php if ( 1 == $cntctfrm_options['cntctfrm_display_address_field'] ) { ?>
|
@@ -1427,9 +1436,9 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
1427 |
<div class="cntctfrmpr_error_text hidden"><?php echo $cntctfrm_options['cntctfrm_address_error']['en']; ?></div>
|
1428 |
<?php } ?>
|
1429 |
<div class="cntctfrm_input cntctfrm_input_address">
|
1430 |
-
<input placeholder="<?php _e( "Please enter your address...", '
|
1431 |
<div class="cntctfrmpr_help_box">
|
1432 |
-
<div class="cntctfrmpr_hidden_help_text"><?php _e( "Please enter your address...", '
|
1433 |
</div>
|
1434 |
</div>
|
1435 |
<?php } ?>
|
@@ -1438,9 +1447,9 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
1438 |
</div>
|
1439 |
<div class="cntctfrmpr_error_text hidden"><?php echo $cntctfrm_options['cntctfrm_email_error']['en']; ?></div>
|
1440 |
<div class="cntctfrm_input cntctfrm_input_email">
|
1441 |
-
<input placeholder="<?php _e( "Please enter your email address...", '
|
1442 |
<div class="cntctfrmpr_help_box">
|
1443 |
-
<div class="cntctfrmpr_hidden_help_text"><?php _e( "Please enter your email address...", '
|
1444 |
</div>
|
1445 |
</div>
|
1446 |
<?php if ( 1 == $cntctfrm_options['cntctfrm_display_phone_field'] ) { ?>
|
@@ -1449,9 +1458,9 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
1449 |
</div>
|
1450 |
<div class="cntctfrmpr_error_text hidden"><?php echo $cntctfrm_options['phone_error']['en']; ?></div>
|
1451 |
<div class="cntctfrm_input cntctfrm_input_phone">
|
1452 |
-
<input placeholder="<?php _e( "Please enter your phone number...", '
|
1453 |
<div class="cntctfrmpr_help_box">
|
1454 |
-
<div class="cntctfrmpr_hidden_help_text"><?php _e( "Please enter your phone number...", '
|
1455 |
</div>
|
1456 |
</div>
|
1457 |
<?php } ?>
|
@@ -1460,9 +1469,9 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
1460 |
</div>
|
1461 |
<div class="cntctfrmpr_error_text hidden"><?php echo $cntctfrm_options['cntctfrm_subject_error']['en']; ?></div>
|
1462 |
<div class="cntctfrm_input cntctfrm_input_subject">
|
1463 |
-
<input placeholder="<?php _e( "Please enter subject...", '
|
1464 |
<div class="cntctfrmpr_help_box">
|
1465 |
-
<div class="cntctfrmpr_hidden_help_text"><?php _e( "Please enter subject...", '
|
1466 |
</div>
|
1467 |
</div>
|
1468 |
<div class="cntctfrm_label cntctfrm_label_message">
|
@@ -1470,9 +1479,9 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
1470 |
</div>
|
1471 |
<div class="cntctfrmpr_error_text hidden"><?php echo $cntctfrm_options['cntctfrm_message_error']['en']; ?></div>
|
1472 |
<div class="cntctfrm_input cntctfrm_input_message">
|
1473 |
-
<textarea placeholder="<?php _e( "Please enter your message...", '
|
1474 |
<div class="cntctfrmpr_help_box">
|
1475 |
-
<div class="cntctfrmpr_hidden_help_text"><?php _e( "Please enter your message...", '
|
1476 |
</div>
|
1477 |
</div>
|
1478 |
<?php if ( 1 == $cntctfrm_options['cntctfrm_attachment'] ) { ?>
|
@@ -1498,7 +1507,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
1498 |
</div>
|
1499 |
</div>
|
1500 |
<div id="cntctfrmpr_shortcode">
|
1501 |
-
<?php _e( "If you would like to add the Contact Form to your website, just copy and paste this shortcode to your post or page or widget:", '
|
1502 |
<div>
|
1503 |
<div id="cntctfrmpr_shortcode_code">
|
1504 |
<span class="cntctfrm_shortcode">[bestwebsoft_contact_form]</span>
|
@@ -1583,7 +1592,7 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
|
|
1583 |
|
1584 |
} elseif ( false === $cntctfrm_result && $cntctfrm_form_count == $cntctfrm_form_submited ) {
|
1585 |
/* If email not be delivered */
|
1586 |
-
$error_message['error_form'] = __( "Sorry, email message could not be delivered.", '
|
1587 |
}
|
1588 |
|
1589 |
if ( true !== $cntctfrm_result || $cntctfrm_form_count != $cntctfrm_form_submited ) {
|
@@ -1964,67 +1973,67 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
|
|
1964 |
}
|
1965 |
if ( 1 == $cntctfrm_options['cntctfrm_display_sent_from'] ) {
|
1966 |
if ( 1 == $cntctfrm_options['cntctfrm_html_email'] )
|
1967 |
-
$user_info_string .= '<tr><td>' . __( 'Sent from (ip address)', '
|
1968 |
else
|
1969 |
-
$user_info_string .= __( 'Sent from (ip address)', '
|
1970 |
}
|
1971 |
if ( 1 == $cntctfrm_options['cntctfrm_display_date_time'] ) {
|
1972 |
if ( 1 == $cntctfrm_options['cntctfrm_html_email'] )
|
1973 |
-
$user_info_string .= '<tr><td>' . __('Date/Time', '
|
1974 |
else
|
1975 |
-
$user_info_string .= __( 'Date/Time', '
|
1976 |
}
|
1977 |
if ( 1 == $cntctfrm_options['cntctfrm_display_coming_from'] ) {
|
1978 |
if ( 1 == $cntctfrm_options['cntctfrm_html_email'] )
|
1979 |
-
$user_info_string .= '<tr><td>' . __( 'Sent from (referer)', '
|
1980 |
else
|
1981 |
-
$user_info_string .= __( 'Sent from (referer)', '
|
1982 |
}
|
1983 |
if ( 1 == $cntctfrm_options['cntctfrm_display_user_agent'] ) {
|
1984 |
if ( 1 == $cntctfrm_options['cntctfrm_html_email'] )
|
1985 |
-
$user_info_string .= '<tr><td>' . __( 'Using (user agent)', '
|
1986 |
else
|
1987 |
-
$user_info_string .= __( 'Using (user agent)', '
|
1988 |
}
|
1989 |
}
|
1990 |
/* Message */
|
1991 |
if ( 1 == $cntctfrm_options['cntctfrm_html_email'] ) {
|
1992 |
$message_text = '<html>
|
1993 |
<head>
|
1994 |
-
<title>' . __( "Contact from", '
|
1995 |
</head>
|
1996 |
<body>
|
1997 |
<table>';
|
1998 |
if ( 1 == $cntctfrm_options['cntctfrm_display_name_field'] ) {
|
1999 |
$message_text .= '<tr><td width="160">';
|
2000 |
-
$message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_name_label'][ $lang ] : __( "Name", '
|
2001 |
$message_text .= '</td><td>' . $name . '</td></tr>';
|
2002 |
}
|
2003 |
|
2004 |
if ( 1 == $cntctfrm_options['cntctfrm_display_address_field'] ) {
|
2005 |
$message_text .= '<tr><td>';
|
2006 |
-
$message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_address_label'][ $lang ] : __( "Address", '
|
2007 |
$message_text .= '</td><td>' . $address . '</td></tr>';
|
2008 |
}
|
2009 |
|
2010 |
$message_text .= '<tr><td>';
|
2011 |
-
$message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_email_label'][ $lang ] : __( "Email", '
|
2012 |
$message_text .= '</td><td>' . $email . '</td></tr>';
|
2013 |
|
2014 |
if ( 1 == $cntctfrm_options['cntctfrm_display_phone_field'] ) {
|
2015 |
$message_text .= '<tr><td>';
|
2016 |
-
$message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_phone_label'][ $lang ] : __( "Phone", '
|
2017 |
$message_text .= '</td><td>' . $phone . '</td></tr>';
|
2018 |
}
|
2019 |
|
2020 |
$message_text .= '<tr><td>';
|
2021 |
-
$message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_subject_label'][ $lang ] : __( "Subject", '
|
2022 |
$message_text .= '</td><td>' . $subject . '</td></tr>
|
2023 |
<tr><td>';
|
2024 |
-
$message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_message_label'][ $lang ] : __( "Message", '
|
2025 |
$message_text .= '</td><td>' . $message . '</td>
|
2026 |
</tr>
|
2027 |
-
<tr><td>' . __( "Site", '
|
2028 |
<tr>
|
2029 |
<td><br /></td><td><br /></td>
|
2030 |
</tr>';
|
@@ -2033,24 +2042,24 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
|
|
2033 |
} else {
|
2034 |
$message_text = '';
|
2035 |
if ( 1 == $cntctfrm_options['cntctfrm_display_name_field'] ) {
|
2036 |
-
$message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_name_label'][ $lang ] : __( "Name", '
|
2037 |
$message_text .= ': ' . $name . "\n";
|
2038 |
}
|
2039 |
if ( 1 == $cntctfrm_options['cntctfrm_display_address_field'] ) {
|
2040 |
-
$message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_address_label'][ $lang ] : __( "Address", '
|
2041 |
$message_text .= ': ' . $address . "\n";
|
2042 |
}
|
2043 |
-
$message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_email_label'][ $lang ] : __( "Email", '
|
2044 |
$message_text .= ': ' . $email . "\n";
|
2045 |
|