Version Description
- 21.10.2015 =
- NEW : We added 'Show Faces' option.
- NEW : We added 'Button layout' option.
- NEW : We added 'Layout width' option.
- NEW : We added 'Like button action' option.
- NEW : We added 'Color scheme' option.
- Update : Textdomain was changed.
- Update : We updated all functionality for wordpress 4.3.1.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Facebook Button by BestWebSoft |
Version | 2.44 |
Comparing to | |
See all releases |
Code changes from version 2.43 to 2.44
- bws_menu/bws_functions.php +355 -101
- bws_menu/bws_include.php +83 -0
- bws_menu/bws_menu.php +9 -1
- bws_menu/css/general_style.css +166 -0
- bws_menu/css/general_style_wp_before_3.8.css +0 -275
- bws_menu/icons/error-log-viewer.png +0 -0
- bws_menu/images/icon_16.png +0 -0
- bws_menu/images/icon_16_b.png +0 -0
- bws_menu/images/icon_16_c.png +0 -0
- bws_menu/images/icon_36.png +0 -0
- bws_menu/images/icon_36_b.png +0 -0
- bws_menu/images/shortcode-icon.png +0 -0
- bws_menu/images/tooltip_icons.png +0 -0
- bws_menu/js/bws_tooltip.js +13 -5
- bws_menu/js/general_script.js +23 -0
- bws_menu/js/shortcode-button.js +122 -0
- bws_menu/languages/bestwebsoft-de_DE.mo +0 -0
- bws_menu/languages/bestwebsoft-de_DE.po +300 -192
- bws_menu/languages/bestwebsoft-fr_FR.mo +0 -0
- bws_menu/languages/bestwebsoft-fr_FR.po +308 -208
- bws_menu/languages/bestwebsoft-it_IT.mo +0 -0
- bws_menu/languages/bestwebsoft-it_IT.po +304 -198
- bws_menu/languages/bestwebsoft-ja.mo +0 -0
- bws_menu/languages/bestwebsoft-ja.po +299 -207
- bws_menu/languages/bestwebsoft-pt_BR.mo +0 -0
- bws_menu/languages/bestwebsoft-pt_BR.po +300 -192
- bws_menu/languages/bestwebsoft-ru_RU.mo +0 -0
- bws_menu/languages/bestwebsoft-ru_RU.po +310 -207
- bws_menu/languages/bestwebsoft-sr_RS.mo +0 -0
- bws_menu/languages/bestwebsoft-sr_RS.po +297 -204
- bws_menu/languages/bestwebsoft-sv_SE.mo +0 -0
- bws_menu/languages/bestwebsoft-sv_SE.po +296 -198
- bws_menu/languages/bestwebsoft-uk.mo +0 -0
- bws_menu/languages/bestwebsoft-uk.po +301 -207
- css/style.css +25 -7
- facebook-button-plugin.php +416 -275
- images/preview.png +0 -0
- js/script.js +38 -14
- languages/facebook-button-plugin-fi_FI.mo +0 -0
- languages/{facebook-fi_FI.po → facebook-button-plugin-fi_FI.po} +164 -106
- languages/facebook-button-plugin-fr_FR.mo +0 -0
- languages/{facebook-fr_FR.po → facebook-button-plugin-fr_FR.po} +153 -105
- languages/facebook-button-plugin-id_ID.mo +0 -0
- languages/{facebook-id_ID.po → facebook-button-plugin-id_ID.po} +154 -106
- languages/facebook-button-plugin-ru_RU.mo +0 -0
- languages/{facebook-ru_RU.po → facebook-button-plugin-ru_RU.po} +191 -112
- languages/facebook-button-plugin-tr_TR.mo +0 -0
- languages/{facebook-tr_TR.po → facebook-button-plugin-tr_TR.po} +164 -106
- languages/facebook-button-plugin-uk.mo +0 -0
- languages/{facebook-uk.po → facebook-button-plugin-uk.po} +189 -109
- languages/facebook-fi_FI.mo +0 -0
- languages/facebook-fr_FR.mo +0 -0
- languages/facebook-id_ID.mo +0 -0
- languages/facebook-ru_RU.mo +0 -0
- languages/facebook-tr_TR.mo +0 -0
- languages/facebook-uk.mo +0 -0
- readme.txt +37 -22
- screenshot-1.png +0 -0
- screenshot-2.png +0 -0
- screenshot-3.png +0 -0
bws_menu/bws_functions.php
CHANGED
@@ -1,83 +1,33 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
* General functions for BestWebSoft plugins
|
4 |
-
* Version: 1.1.
|
5 |
*/
|
6 |
-
if ( ! function_exists ( 'bws_add_general_menu' ) ) {
|
7 |
-
function bws_add_general_menu( $base ) {
|
8 |
-
global $bstwbsftwppdtplgns_options, $bstwbsftwppdtplgns_added_menu;
|
9 |
-
$bws_menu_info = get_plugin_data( dirname( dirname( plugin_dir_path( __FILE__ ) ) ) . '/' . dirname( $base ) . '/bws_menu/bws_menu.php' );
|
10 |
-
$bws_menu_version = $bws_menu_info["Version"];
|
11 |
-
|
12 |
-
if ( ! isset( $bstwbsftwppdtplgns_options ) ) {
|
13 |
-
if ( is_multisite() ) {
|
14 |
-
if ( ! get_site_option( 'bstwbsftwppdtplgns_options' ) )
|
15 |
-
add_site_option( 'bstwbsftwppdtplgns_options', array() );
|
16 |
-
$bstwbsftwppdtplgns_options = get_site_option( 'bstwbsftwppdtplgns_options' );
|
17 |
-
} else {
|
18 |
-
if ( ! get_option( 'bstwbsftwppdtplgns_options' ) )
|
19 |
-
add_option( 'bstwbsftwppdtplgns_options', array() );
|
20 |
-
$bstwbsftwppdtplgns_options = get_option( 'bstwbsftwppdtplgns_options' );
|
21 |
-
}
|
22 |
-
}
|
23 |
|
24 |
-
|
25 |
-
|
26 |
-
unset( $bstwbsftwppdtplgns_options['bws_menu_version'] );
|
27 |
-
if ( is_multisite() )
|
28 |
-
update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
29 |
-
else
|
30 |
-
update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
31 |
-
require_once( dirname( __FILE__ ) . '/bws_menu.php' );
|
32 |
-
} else if ( ! isset( $bstwbsftwppdtplgns_options['bws_menu']['version'][ $base ] ) || $bstwbsftwppdtplgns_options['bws_menu']['version'][ $base ] < $bws_menu_version ) {
|
33 |
-
$bstwbsftwppdtplgns_options['bws_menu']['version'][ $base ] = $bws_menu_version;
|
34 |
-
if ( is_multisite() )
|
35 |
-
update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
36 |
-
else
|
37 |
-
update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
38 |
-
require_once( dirname( __FILE__ ) . '/bws_menu.php' );
|
39 |
-
} else if ( ! isset( $bstwbsftwppdtplgns_added_menu ) ) {
|
40 |
-
$all_plugins = get_plugins();
|
41 |
-
foreach ( $bstwbsftwppdtplgns_options['bws_menu']['version'] as $key => $value ) {
|
42 |
-
if ( array_key_exists( $key, $all_plugins ) ) {
|
43 |
-
if ( $bws_menu_version < $value && is_plugin_active( $base ) ) {
|
44 |
-
if ( ! isset( $plugin_with_newer_menu ) )
|
45 |
-
$plugin_with_newer_menu = $key;
|
46 |
-
elseif ( $bstwbsftwppdtplgns_options['bws_menu']['version'][ $plugin_with_newer_menu ] < $bstwbsftwppdtplgns_options['bws_menu']['version'][ $key ] )
|
47 |
-
$plugin_with_newer_menu = $key;
|
48 |
-
}
|
49 |
-
} else {
|
50 |
-
unset( $bstwbsftwppdtplgns_options['bws_menu']['version'][ $key ] );
|
51 |
-
if ( is_multisite() )
|
52 |
-
update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
53 |
-
else
|
54 |
-
update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
55 |
-
}
|
56 |
-
}
|
57 |
-
if ( ! isset( $plugin_with_newer_menu ) )
|
58 |
-
$plugin_with_newer_menu = $base;
|
59 |
-
$plugin_with_newer_menu = explode( '/', $plugin_with_newer_menu );
|
60 |
-
$wp_content_dir = defined( 'WP_CONTENT_DIR' ) ? basename( WP_CONTENT_DIR ) : 'wp-content';
|
61 |
-
|
62 |
-
if ( file_exists( ABSPATH . $wp_content_dir . '/plugins/' . $plugin_with_newer_menu[0] . '/bws_menu/bws_menu.php' ) )
|
63 |
-
require_once( ABSPATH . $wp_content_dir . '/plugins/' . $plugin_with_newer_menu[0] . '/bws_menu/bws_menu.php' );
|
64 |
-
else
|
65 |
-
require_once( dirname( __FILE__ ) . '/bws_menu.php' );
|
66 |
-
$bstwbsftwppdtplgns_added_menu = true;
|
67 |
-
}
|
68 |
add_menu_page( 'BWS Plugins', 'BWS Plugins', 'manage_options', 'bws_plugins', 'bws_add_menu_render', plugins_url( 'images/px.png', __FILE__ ), 1001 );
|
69 |
}
|
70 |
}
|
71 |
|
72 |
-
|
73 |
/**
|
74 |
-
* Function check if plugin is compatible with current WP version
|
75 |
* @return void
|
76 |
*/
|
77 |
if ( ! function_exists ( 'bws_wp_version_check' ) ) {
|
78 |
function bws_wp_version_check( $plugin_basename, $plugin_info, $require_wp ) {
|
79 |
-
|
80 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
82 |
if ( is_plugin_active( $plugin_basename ) ) {
|
83 |
deactivate_plugins( $plugin_basename );
|
@@ -95,6 +45,27 @@ if ( ! function_exists ( 'bws_wp_version_check' ) ) {
|
|
95 |
)
|
96 |
);
|
97 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
98 |
}
|
99 |
}
|
100 |
}
|
@@ -148,7 +119,7 @@ if ( ! function_exists( 'bws_plugin_banner' ) ) {
|
|
148 |
<img title="" src="<?php echo esc_attr( $banner_url_or_slug ); ?>" alt="" />
|
149 |
</div>
|
150 |
<div class="text"><?php
|
151 |
-
_e( 'It’s time to upgrade your', 'bestwebsoft' ); ?> <strong><?php echo $plugin_info['Name']; ?> plugin</strong> <?php _e( 'to', 'bestwebsoft' ); ?> <strong>
|
152 |
<span><?php _e( 'Extend standard plugin functionality with new great options.', 'bestwebsoft' ); ?></span>
|
153 |
</div>
|
154 |
<div class="button_div">
|
@@ -181,12 +152,34 @@ if ( ! function_exists( 'bws_plugin_reviews_block' ) ) {
|
|
181 |
}
|
182 |
|
183 |
if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
|
184 |
-
function bws_go_pro_tab_check( $plugin_basename ) {
|
185 |
-
global $wp_version, $bstwbsftwppdtplgns_options;
|
186 |
$result = array();
|
187 |
|
188 |
$bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : "";
|
189 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
190 |
if ( isset( $_POST['bws_license_submit'] ) && check_admin_referer( $plugin_basename, 'bws_license_nonce_name' ) ) {
|
191 |
if ( '' != $bws_license_key ) {
|
192 |
if ( strlen( $bws_license_key ) != 18 ) {
|
@@ -234,7 +227,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'] ) ) {
|
@@ -335,8 +328,15 @@ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
|
|
335 |
}
|
336 |
}
|
337 |
|
|
|
338 |
if ( ! function_exists( 'bws_go_pro_tab' ) ) {
|
339 |
function bws_go_pro_tab( $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated = false, $trial_days_number = false ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
340 |
global $wp_version, $bstwbsftwppdtplgns_options;
|
341 |
$bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : "";
|
342 |
if ( $pro_plugin_is_activated ) { ?>
|
@@ -345,16 +345,25 @@ if ( ! function_exists( 'bws_go_pro_tab' ) ) {
|
|
345 |
window.location.href = 'admin.php?page=<?php echo $pro_page; ?>';
|
346 |
}, 5000 );
|
347 |
</script>
|
348 |
-
<p><?php _e( "Congratulations! The
|
349 |
<p>
|
350 |
<?php _e( "Please, go to", 'bestwebsoft' ); ?> <a href="admin.php?page=<?php echo $pro_page; ?>"><?php _e( 'the setting page', 'bestwebsoft' ); ?></a>
|
351 |
(<?php _e( "You will be redirected automatically in 5 seconds.", 'bestwebsoft' ); ?>)
|
352 |
</p>
|
353 |
-
<?php } else {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
354 |
<form method="post" action="admin.php?page=<?php echo $page; ?>&action=go_pro">
|
355 |
<p>
|
356 |
<?php _e( 'You can download and activate', 'bestwebsoft' ); ?>
|
357 |
-
<a href="http://bestwebsoft.com/products/<?php echo $link_slug; ?>/?k=<?php echo $link_key; ?>&pn=<?php echo $link_pn; ?>&v=<?php echo $plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="<?php echo $plugin_info["Name"]; ?> Pro">
|
358 |
<?php _e( 'version of this plugin by entering Your license key.', 'bestwebsoft' ); ?><br />
|
359 |
<span class="bws_info">
|
360 |
<?php _e( 'You can find your license key on your personal page Client area, by clicking on the link', 'bestwebsoft' ); ?>
|
@@ -395,7 +404,7 @@ if ( ! function_exists( 'bws_go_pro_from_trial_tab' ) ) {
|
|
395 |
if ( $trial_license_is_set ) { ?>
|
396 |
<form method="post" action="admin.php?page=<?php echo $page; ?>&action=go_pro">
|
397 |
<p>
|
398 |
-
<?php echo sprintf( __( 'In order to continue using the plugin it is necessary to buy a %s license.', 'bestwebsoft' ), '<a href="http://bestwebsoft.com/products/' . $link_slug . '/?k=' . $link_key . '&pn=' . $link_pn . '&v=' . $plugin_info["Version"] . '&wp_v=' . $wp_version .'" target="_blank" title="' . $plugin_info["Name"] . '">
|
399 |
_e( 'After that you can activate it by entering your license key.', 'bestwebsoft' ); ?><br />
|
400 |
<span class="bws_info">
|
401 |
<?php _e( 'You can find your license key on your personal page Client area, by clicking on the link', 'bestwebsoft' ); ?>
|
@@ -427,7 +436,7 @@ if ( ! function_exists( 'bws_go_pro_from_trial_tab' ) ) {
|
|
427 |
window.location.href = 'admin.php?page=<?php echo $page; ?>';
|
428 |
}, 5000 );
|
429 |
</script>
|
430 |
-
<p><?php _e( "Congratulations! The
|
431 |
<p>
|
432 |
<?php _e( "Please, go to", 'bestwebsoft' ); ?> <a href="admin.php?page=<?php echo $page; ?>"><?php _e( 'the setting page', 'bestwebsoft' ); ?></a>
|
433 |
(<?php _e( "You will be redirected automatically in 5 seconds.", 'bestwebsoft' ); ?>)
|
@@ -476,11 +485,11 @@ if ( ! function_exists( 'bws_check_pro_license' ) ) {
|
|
476 |
} elseif ( "you_are_banned" == $value->package ) {
|
477 |
$result['error'] = __( "Unfortunately, you have exceeded the number of available tries.", 'bestwebsoft' );
|
478 |
} elseif ( "duplicate_domen_for_trial" == $value->package ) {
|
479 |
-
$result['error'] = __( "Unfortunately, the
|
480 |
}
|
481 |
if ( empty( $result['message'] ) && empty( $result['error'] ) ) {
|
482 |
if ( isset( $value->trial ) )
|
483 |
-
$result['message'] = __( 'The
|
484 |
else
|
485 |
$result['message'] = __( 'The license key is valid.', 'bestwebsoft' );
|
486 |
|
@@ -488,7 +497,7 @@ if ( ! function_exists( 'bws_check_pro_license' ) ) {
|
|
488 |
$result['message'] .= ' ' . __( 'Your license will expire on', 'bestwebsoft' ) . ' ' . $value->time_out . '.';
|
489 |
|
490 |
if ( isset( $value->trial ) && $trial_plugin != false )
|
491 |
-
$result['message'] .= ' ' . sprintf( __( 'In order to continue using the plugin it is necessary to buy a %s license.', 'bestwebsoft' ), '<a href="http://bestwebsoft.com/products/' . $trial_plugin['link_slug'] . '/?k=' . $trial_plugin['link_key'] . '&pn=' . $trial_plugin['link_pn'] . '&v=' . $trial_plugin['plugin_info']['Version'] . '&wp_v=' . $wp_version . '" target="_blank" title="' . $trial_plugin['plugin_info']['Name'] . '">
|
492 |
|
493 |
if ( isset( $value->trial ) ) {
|
494 |
$bstwbsftwppdtplgns_options['trial'][ $plugin_basename ] = 1;
|
@@ -557,7 +566,7 @@ if ( ! function_exists ( 'bws_plugin_update_row' ) ) {
|
|
557 |
<td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
|
558 |
<div class="update-message" style="color: #8C0000;">';
|
559 |
if ( isset( $bstwbsftwppdtplgns_options['trial'][ $plugin_key ] ) && $link_slug != false ) {
|
560 |
-
echo __( 'Notice: Your
|
561 |
} else {
|
562 |
echo __( 'Your license has expired. To continue getting top-priority support and plugin updates you should extend it.', 'bestwebsoft' ) . ' <a target="_new" href="http://support.bestwebsoft.com/entries/53487136">' . __( "Learn more", 'bestwebsoft' ) . '</a>';
|
563 |
}
|
@@ -569,12 +578,12 @@ if ( ! function_exists ( 'bws_plugin_update_row' ) ) {
|
|
569 |
<td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
|
570 |
<div class="update-message" style="color: #8C0000;">';
|
571 |
if ( $free_plugin_name != false ) {
|
572 |
-
echo sprintf( __( 'Notice: You are using the
|
573 |
} else {
|
574 |
-
_e( 'Notice: You are using the
|
575 |
}
|
576 |
if ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) )
|
577 |
-
echo ' ' . __( "The
|
578 |
echo '</div>
|
579 |
</td>
|
580 |
</tr>';
|
@@ -619,34 +628,112 @@ if ( ! function_exists ( 'bws_plugin_banner_timeout' ) ) {
|
|
619 |
}
|
620 |
}
|
621 |
|
622 |
-
if ( ! function_exists
|
623 |
-
function
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
624 |
/* Internationalization, first(!) */
|
625 |
load_plugin_textdomain( 'bestwebsoft', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
|
|
|
|
626 |
}
|
627 |
}
|
628 |
|
629 |
-
if ( ! function_exists ( '
|
630 |
-
function
|
631 |
global $wp_version;
|
632 |
-
|
633 |
-
|
634 |
-
else
|
635 |
-
wp_enqueue_style( 'bws-admin-style', plugins_url( 'css/general_style.css', __FILE__ ) );
|
636 |
|
637 |
if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_plugins" ) {
|
638 |
wp_enqueue_style( 'bws_menu_style', plugins_url( 'css/style.css', __FILE__ ) );
|
639 |
wp_enqueue_script( 'bws_menu_script', plugins_url( 'js/bws_menu.js' , __FILE__ ) );
|
640 |
-
|
641 |
-
wp_enqueue_script( 'theme-install' );
|
642 |
-
elseif ( $wp_version >= '3.4' )
|
643 |
-
wp_enqueue_script( 'theme' );
|
644 |
}
|
645 |
}
|
646 |
}
|
647 |
|
648 |
-
if ( ! function_exists ( '
|
649 |
-
function
|
|
|
650 |
if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_plugins" ) { ?>
|
651 |
<noscript>
|
652 |
<style type="text/css">
|
@@ -656,7 +743,65 @@ if ( ! function_exists ( 'bws_admin_head' ) ) {
|
|
656 |
</style>
|
657 |
</noscript>
|
658 |
<?php }
|
659 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
660 |
}
|
661 |
|
662 |
/**
|
@@ -696,7 +841,8 @@ if ( ! class_exists( 'BWS_admin_tooltip' ) ) {
|
|
696 |
'pos-left' => 0,
|
697 |
'pos-top' => 0,
|
698 |
'zindex' => 10000
|
699 |
-
),
|
|
|
700 |
);
|
701 |
$tooltip_args = array_merge( $tooltip_args_default, $tooltip_args );
|
702 |
/* Check that our merged array has default values */
|
@@ -803,6 +949,114 @@ if ( ! function_exists ( 'bws_form_restore_default_confirm' ) ) {
|
|
803 |
<?php }
|
804 |
}
|
805 |
|
806 |
-
|
807 |
-
|
808 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<?php
|
2 |
/*
|
3 |
* General functions for BestWebSoft plugins
|
4 |
+
* Version: 1.1.3
|
5 |
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
|
7 |
+
if ( ! function_exists ( 'bws_add_general_menu' ) ) {
|
8 |
+
function bws_add_general_menu() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
add_menu_page( 'BWS Plugins', 'BWS Plugins', 'manage_options', 'bws_plugins', 'bws_add_menu_render', plugins_url( 'images/px.png', __FILE__ ), 1001 );
|
10 |
}
|
11 |
}
|
12 |
|
|
|
13 |
/**
|
14 |
+
* Function check if plugin is compatible with current WP version - for old plugin version
|
15 |
* @return void
|
16 |
*/
|
17 |
if ( ! function_exists ( 'bws_wp_version_check' ) ) {
|
18 |
function bws_wp_version_check( $plugin_basename, $plugin_info, $require_wp ) {
|
19 |
+
bws_wp_min_version_check( $plugin_basename, $plugin_info, '3.8' , $require_wp );
|
20 |
+
}
|
21 |
+
}
|
22 |
+
|
23 |
+
/**
|
24 |
+
* Function check if plugin is compatible with current WP version
|
25 |
+
* @return void
|
26 |
+
*/
|
27 |
+
if ( ! function_exists ( 'bws_wp_min_version_check' ) ) {
|
28 |
+
function bws_wp_min_version_check( $plugin_basename, $plugin_info, $require_wp, $min_wp = false ) {
|
29 |
+
global $wp_version, $bws_versions_notice_array;
|
30 |
+
if ( false != $min_wp && version_compare( $wp_version, $min_wp, "<" ) ) {
|
31 |
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
32 |
if ( is_plugin_active( $plugin_basename ) ) {
|
33 |
deactivate_plugins( $plugin_basename );
|
45 |
)
|
46 |
);
|
47 |
}
|
48 |
+
} elseif ( version_compare( $wp_version, $require_wp, "<" ) ) {
|
49 |
+
$bws_versions_notice_array[] = array( 'name' => $plugin_info['Name'], 'version' => $require_wp );
|
50 |
+
}
|
51 |
+
}
|
52 |
+
}
|
53 |
+
|
54 |
+
if ( ! function_exists( 'bws_versions_notice' ) ) {
|
55 |
+
function bws_versions_notice() {
|
56 |
+
global $bws_versions_notice_array;
|
57 |
+
if ( ! empty( $bws_versions_notice_array ) ) {
|
58 |
+
foreach ( $bws_versions_notice_array as $key => $value ) { ?>
|
59 |
+
<div class="update-nag"><?php
|
60 |
+
echo sprintf(
|
61 |
+
"<strong>%s</strong> %s <strong>WordPress %s</strong> %s",
|
62 |
+
$value['name'],
|
63 |
+
__( 'requires', 'bestwebsoft' ),
|
64 |
+
$value['version'],
|
65 |
+
__( 'or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version.', 'bestwebsoft' )
|
66 |
+
);
|
67 |
+
?></div>
|
68 |
+
<?php }
|
69 |
}
|
70 |
}
|
71 |
}
|
119 |
<img title="" src="<?php echo esc_attr( $banner_url_or_slug ); ?>" alt="" />
|
120 |
</div>
|
121 |
<div class="text"><?php
|
122 |
+
_e( 'It’s time to upgrade your', 'bestwebsoft' ); ?> <strong><?php echo $plugin_info['Name']; ?> plugin</strong> <?php _e( 'to', 'bestwebsoft' ); ?> <strong>Pro</strong> <?php _e( 'version!', 'bestwebsoft' ); ?><br />
|
123 |
<span><?php _e( 'Extend standard plugin functionality with new great options.', 'bestwebsoft' ); ?></span>
|
124 |
</div>
|
125 |
<div class="button_div">
|
152 |
}
|
153 |
|
154 |
if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
|
155 |
+
function bws_go_pro_tab_check( $plugin_basename, $plugin_options_name = false, $is_network_option = false ) {
|
156 |
+
global $wp_version, $bstwbsftwppdtplgns_options, $current_user;
|
157 |
$result = array();
|
158 |
|
159 |
$bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : "";
|
160 |
|
161 |
+
if ( ! empty( $plugin_options_name ) && isset( $_POST['bws_hide_premium_options_submit'] ) && check_admin_referer( $plugin_basename, 'bws_license_nonce_name' ) ) {
|
162 |
+
if ( ! $current_user )
|
163 |
+
get_currentuserinfo();
|
164 |
+
|
165 |
+
$plugin_options = ( $is_network_option ) ? get_site_option( $plugin_options_name ) : get_option( $plugin_options_name );
|
166 |
+
|
167 |
+
if ( !empty( $plugin_options['hide_premium_options'] ) ) {
|
168 |
+
|
169 |
+
$key = array_search( $current_user->ID, $plugin_options['hide_premium_options'] );
|
170 |
+
if ( false !== $key ) {
|
171 |
+
unset( $plugin_options['hide_premium_options'][ $key ] );
|
172 |
+
}
|
173 |
+
|
174 |
+
if ( $is_network_option )
|
175 |
+
update_site_option( $plugin_options_name, $plugin_options );
|
176 |
+
else
|
177 |
+
update_option( $plugin_options_name, $plugin_options );
|
178 |
+
|
179 |
+
$result['message'] = __( 'Check premium options on the plugin settings page!', 'bestwebsoft' );
|
180 |
+
}
|
181 |
+
}
|
182 |
+
|
183 |
if ( isset( $_POST['bws_license_submit'] ) && check_admin_referer( $plugin_basename, 'bws_license_nonce_name' ) ) {
|
184 |
if ( '' != $bws_license_key ) {
|
185 |
if ( strlen( $bws_license_key ) != 18 ) {
|
227 |
} elseif ( "time_out" == $value->package ) {
|
228 |
$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>';
|
229 |
} elseif ( "duplicate_domen_for_trial" == $value->package ) {
|
230 |
+
$result['error'] = __( "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once.", 'bestwebsoft' );
|
231 |
}
|
232 |
}
|
233 |
if ( empty( $result['error'] ) ) {
|
328 |
}
|
329 |
}
|
330 |
|
331 |
+
/* compatibility function (Menu Version: 1.7.6) */
|
332 |
if ( ! function_exists( 'bws_go_pro_tab' ) ) {
|
333 |
function bws_go_pro_tab( $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated = false, $trial_days_number = false ) {
|
334 |
+
bws_go_pro_tab_show( false, $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated, $trial_days_number );
|
335 |
+
}
|
336 |
+
}
|
337 |
+
|
338 |
+
if ( ! function_exists( 'bws_go_pro_tab_show' ) ) {
|
339 |
+
function bws_go_pro_tab_show( $bws_hide_premium_options_check, $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated = false, $trial_days_number = false ) {
|
340 |
global $wp_version, $bstwbsftwppdtplgns_options;
|
341 |
$bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : "";
|
342 |
if ( $pro_plugin_is_activated ) { ?>
|
345 |
window.location.href = 'admin.php?page=<?php echo $pro_page; ?>';
|
346 |
}, 5000 );
|
347 |
</script>
|
348 |
+
<p><?php _e( "Congratulations! The Pro version of the plugin is successfully download and activated.", 'bestwebsoft' ); ?></p>
|
349 |
<p>
|
350 |
<?php _e( "Please, go to", 'bestwebsoft' ); ?> <a href="admin.php?page=<?php echo $pro_page; ?>"><?php _e( 'the setting page', 'bestwebsoft' ); ?></a>
|
351 |
(<?php _e( "You will be redirected automatically in 5 seconds.", 'bestwebsoft' ); ?>)
|
352 |
</p>
|
353 |
+
<?php } else {
|
354 |
+
if ( $bws_hide_premium_options_check ) { ?>
|
355 |
+
<form method="post" action="admin.php?page=<?php echo $page; ?>&action=go_pro">
|
356 |
+
<p>
|
357 |
+
<input type="hidden" name="bws_hide_premium_options_submit" value="submit" />
|
358 |
+
<input type="submit" class="button" value="<?php _e( 'Show Pro features', 'bestwebsoft' ); ?>" />
|
359 |
+
<?php wp_nonce_field( $plugin_basename, 'bws_license_nonce_name' ); ?>
|
360 |
+
</p>
|
361 |
+
</form>
|
362 |
+
<?php } ?>
|
363 |
<form method="post" action="admin.php?page=<?php echo $page; ?>&action=go_pro">
|
364 |
<p>
|
365 |
<?php _e( 'You can download and activate', 'bestwebsoft' ); ?>
|
366 |
+
<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>
|
367 |
<?php _e( 'version of this plugin by entering Your license key.', 'bestwebsoft' ); ?><br />
|
368 |
<span class="bws_info">
|
369 |
<?php _e( 'You can find your license key on your personal page Client area, by clicking on the link', 'bestwebsoft' ); ?>
|
404 |
if ( $trial_license_is_set ) { ?>
|
405 |
<form method="post" action="admin.php?page=<?php echo $page; ?>&action=go_pro">
|
406 |
<p>
|
407 |
+
<?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>' ) . ' ';
|
408 |
_e( 'After that you can activate it by entering your license key.', 'bestwebsoft' ); ?><br />
|
409 |
<span class="bws_info">
|
410 |
<?php _e( 'You can find your license key on your personal page Client area, by clicking on the link', 'bestwebsoft' ); ?>
|
436 |
window.location.href = 'admin.php?page=<?php echo $page; ?>';
|
437 |
}, 5000 );
|
438 |
</script>
|
439 |
+
<p><?php _e( "Congratulations! The Pro license of the plugin is successfully activated.", 'bestwebsoft' ); ?></p>
|
440 |
<p>
|
441 |
<?php _e( "Please, go to", 'bestwebsoft' ); ?> <a href="admin.php?page=<?php echo $page; ?>"><?php _e( 'the setting page', 'bestwebsoft' ); ?></a>
|
442 |
(<?php _e( "You will be redirected automatically in 5 seconds.", 'bestwebsoft' ); ?>)
|
485 |
} elseif ( "you_are_banned" == $value->package ) {
|
486 |
$result['error'] = __( "Unfortunately, you have exceeded the number of available tries.", 'bestwebsoft' );
|
487 |
} elseif ( "duplicate_domen_for_trial" == $value->package ) {
|
488 |
+
$result['error'] = __( "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once.", 'bestwebsoft' );
|
489 |
}
|
490 |
if ( empty( $result['message'] ) && empty( $result['error'] ) ) {
|
491 |
if ( isset( $value->trial ) )
|
492 |
+
$result['message'] = __( 'The Pro Trial license key is valid.', 'bestwebsoft' );
|
493 |
else
|
494 |
$result['message'] = __( 'The license key is valid.', 'bestwebsoft' );
|
495 |
|
497 |
$result['message'] .= ' ' . __( 'Your license will expire on', 'bestwebsoft' ) . ' ' . $value->time_out . '.';
|
498 |
|
499 |
if ( isset( $value->trial ) && $trial_plugin != false )
|
500 |
+
$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>' );
|
501 |
|
502 |
if ( isset( $value->trial ) ) {
|
503 |
$bstwbsftwppdtplgns_options['trial'][ $plugin_basename ] = 1;
|
566 |
<td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
|
567 |
<div class="update-message" style="color: #8C0000;">';
|
568 |
if ( isset( $bstwbsftwppdtplgns_options['trial'][ $plugin_key ] ) && $link_slug != false ) {
|
569 |
+
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>';
|
570 |
} else {
|
571 |
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>';
|
572 |
}
|
578 |
<td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
|
579 |
<div class="update-message" style="color: #8C0000;">';
|
580 |
if ( $free_plugin_name != false ) {
|
581 |
+
echo sprintf( __( 'Notice: You are using the Pro Trial license of %s plugin.', 'bestwebsoft' ), $free_plugin_name );
|
582 |
} else {
|
583 |
+
_e( 'Notice: You are using the Pro Trial license of plugin.', 'bestwebsoft' );
|
584 |
}
|
585 |
if ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) )
|
586 |
+
echo ' ' . __( "The Pro Trial license will expire on", 'bestwebsoft' ) . ' ' . $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] . '.';
|
587 |
echo '</div>
|
588 |
</td>
|
589 |
</tr>';
|
628 |
}
|
629 |
}
|
630 |
|
631 |
+
if ( ! function_exists( 'bws_plugin_banner_to_settings' ) ) {
|
632 |
+
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 ) {
|
633 |
+
global $wp_version;
|
634 |
+
|
635 |
+
$plugin_options = get_option( $plugin_options_name );
|
636 |
+
|
637 |
+
if ( isset( $plugin_options['display_settings_notice'] ) && 0 == $plugin_options['display_settings_notice'] )
|
638 |
+
return;
|
639 |
+
|
640 |
+
if ( isset( $_POST['bws_hide_settings_notice_' . $plugin_options_name ] ) && check_admin_referer( $plugin_info['Name'], 'bws_settings_nonce_name' ) ) {
|
641 |
+
$plugin_options['display_settings_notice'] = 0;
|
642 |
+
update_option( $plugin_options_name, $plugin_options );
|
643 |
+
return;
|
644 |
+
}
|
645 |
+
|
646 |
+
if ( false == strrpos( $banner_url_or_slug, '/' ) ) {
|
647 |
+
$banner_url_or_slug = '//ps.w.org/' . $banner_url_or_slug . '/assets/icon-128x128.png';
|
648 |
+
} ?>
|
649 |
+
<div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
|
650 |
+
<div class="bws_banner_on_plugin_page">
|
651 |
+
<div class="icon">
|
652 |
+
<img title="" src="<?php echo esc_attr( $banner_url_or_slug ); ?>" alt="" />
|
653 |
+
</div>
|
654 |
+
<div class="text">
|
655 |
+
<strong><?php _e( 'Thank you for installing', 'bestwebsoft' ); ?> <?php echo $plugin_info['Name']; ?> plugin!</strong><br />
|
656 |
+
<?php _e( "Let's get started", 'bestwebsoft' ); ?>:
|
657 |
+
<a target="_blank" href="<?php echo $settings_url; ?>"><?php _e( 'Configure Settings', 'bestwebsoft' ); ?></a>
|
658 |
+
<?php if ( false != $post_type_url && false != $post_type_name ) { ?>
|
659 |
+
<?php _e( 'or', 'bestwebsoft' ); ?>
|
660 |
+
<a target="_blank" href="<?php echo $post_type_url; ?>"><?php _e( 'Add New', 'bestwebsoft' ); ?> <?php echo $post_type_name; ?></a>
|
661 |
+
<?php } ?>
|
662 |
+
</div>
|
663 |
+
<form action="" method="post">
|
664 |
+
<button class="notice-dismiss bws_hide_settings_notice" title="<?php _e( 'Close notice', 'bestwebsoft' ); ?>"></button>
|
665 |
+
<input type="hidden" name="bws_hide_settings_notice_<?php echo $plugin_options_name; ?>" value="hide" />
|
666 |
+
<?php wp_nonce_field( $plugin_info['Name'], 'bws_settings_nonce_name' ); ?>
|
667 |
+
</form>
|
668 |
+
</div>
|
669 |
+
</div>
|
670 |
+
<?php }
|
671 |
+
}
|
672 |
+
|
673 |
+
if ( ! function_exists( 'bws_show_settings_notice' ) ) {
|
674 |
+
function bws_show_settings_notice() { ?>
|
675 |
+
<div id="bws_save_settings_notice" class="updated fade" style="display:none">
|
676 |
+
<p>
|
677 |
+
<strong><?php _e( 'Notice', 'bestwebsoft' ); ?></strong>: <?php _e( "The plugin's settings have been changed.", 'bestwebsoft' ); ?>
|
678 |
+
<a class="bws_save_anchor" href="#bws-submit-button"><?php _e( 'Save Changes', 'bestwebsoft' ); ?></a>
|
679 |
+
</p>
|
680 |
+
</div>
|
681 |
+
<?php }
|
682 |
+
}
|
683 |
+
|
684 |
+
if ( ! function_exists( 'bws_hide_premium_options' ) ) {
|
685 |
+
function bws_hide_premium_options( $options ) {
|
686 |
+
global $current_user;
|
687 |
+
if ( ! $current_user )
|
688 |
+
get_currentuserinfo();
|
689 |
+
|
690 |
+
$options['hide_premium_options'][] = $current_user->ID;
|
691 |
+
|
692 |
+
return array(
|
693 |
+
'message' => __( 'You can always look at premium options by clicking on the "Show Pro features" in the "Go PRO" tab', 'bestwebsoft' ),
|
694 |
+
'options' => $options );
|
695 |
+
}
|
696 |
+
}
|
697 |
+
|
698 |
+
if ( ! function_exists( 'bws_hide_premium_options_check' ) ) {
|
699 |
+
function bws_hide_premium_options_check( $options ) {
|
700 |
+
global $current_user;
|
701 |
+
if ( ! $current_user )
|
702 |
+
get_currentuserinfo();
|
703 |
+
|
704 |
+
if ( isset( $options['hide_premium_options'] ) && in_array( $current_user->ID, $options['hide_premium_options'] ) )
|
705 |
+
return true;
|
706 |
+
else
|
707 |
+
return false;
|
708 |
+
}
|
709 |
+
}
|
710 |
+
|
711 |
+
if ( ! function_exists ( 'bws_plugins_admin_init' ) ) {
|
712 |
+
function bws_plugins_admin_init() {
|
713 |
/* Internationalization, first(!) */
|
714 |
load_plugin_textdomain( 'bestwebsoft', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
715 |
+
|
716 |
+
bws_add_editor_buttons();
|
717 |
}
|
718 |
}
|
719 |
|
720 |
+
if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) ) {
|
721 |
+
function bws_admin_enqueue_scripts() {
|
722 |
global $wp_version;
|
723 |
+
wp_enqueue_style( 'bws-admin-css', plugins_url( 'css/general_style.css', __FILE__ ) );
|
724 |
+
wp_enqueue_script( 'bws-admin-scripts', plugins_url( 'js/general_script.js', __FILE__ ), array( 'jquery' ) );
|
|
|
|
|
725 |
|
726 |
if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_plugins" ) {
|
727 |
wp_enqueue_style( 'bws_menu_style', plugins_url( 'css/style.css', __FILE__ ) );
|
728 |
wp_enqueue_script( 'bws_menu_script', plugins_url( 'js/bws_menu.js' , __FILE__ ) );
|
729 |
+
wp_enqueue_script( 'theme-install' );
|
|
|
|
|
|
|
730 |
}
|
731 |
}
|
732 |
}
|
733 |
|
734 |
+
if ( ! function_exists ( 'bws_plugins_admin_head' ) ) {
|
735 |
+
function bws_plugins_admin_head() {
|
736 |
+
global $bws_shortcode_list, $wp_version, $post_type;
|
737 |
if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_plugins" ) { ?>
|
738 |
<noscript>
|
739 |
<style type="text/css">
|
743 |
</style>
|
744 |
</noscript>
|
745 |
<?php }
|
746 |
+
if ( 4.2 > $wp_version ) {
|
747 |
+
$plugin_dir_array = explode( '/', plugin_basename( __FILE__ ) );
|
748 |
+
$plugin_dir = $plugin_dir_array[0]; ?>
|
749 |
+
<style type="text/css">
|
750 |
+
.bws_hide_settings_notice,
|
751 |
+
.bws_hide_premium_options {
|
752 |
+
width: 11px;
|
753 |
+
height: 11px;
|
754 |
+
border: none;
|
755 |
+
background: url("<?php echo plugins_url( $plugin_dir . '/bws_menu/images/close_banner.png' ); ?>") no-repeat center center;
|
756 |
+
box-shadow: none;
|
757 |
+
float: right;
|
758 |
+
margin: 8px;
|
759 |
+
}
|
760 |
+
.bws_hide_settings_notice:hover,
|
761 |
+
.bws_hide_premium_options:hover {
|
762 |
+
cursor: pointer;
|
763 |
+
}
|
764 |
+
.bws_hide_premium_options {
|
765 |
+
position: relative;
|
766 |
+
}
|
767 |
+
</style>
|
768 |
+
<?php }
|
769 |
+
if ( ! empty( $bws_shortcode_list ) ) { ?>
|
770 |
+
<!-- TinyMCE Shortcode Plugin -->
|
771 |
+
<script type='text/javascript'>
|
772 |
+
var bws_shortcode_button = {
|
773 |
+
'title': '<?php _e( "Add BWS Plugins Shortcode", "bestwebsoft" ); ?>',
|
774 |
+
'function_name': [
|
775 |
+
<?php foreach ( $bws_shortcode_list as $key => $value ) {
|
776 |
+
if ( isset( $value['js_function'] ) )
|
777 |
+
echo "'" . $value['js_function'] . "',";
|
778 |
+
} ?>
|
779 |
+
],
|
780 |
+
'icon_url': '<?php echo plugins_url( "images/shortcode-icon.png" , __FILE__ ); ?>',
|
781 |
+
'wp_version' : '<?php echo $wp_version; ?>'
|
782 |
+
};
|
783 |
+
</script>
|
784 |
+
<!-- TinyMCE Shortcode Plugin -->
|
785 |
+
<?php if ( isset( $post_type ) && in_array( $post_type, array( 'post', 'page' ) ) ) {
|
786 |
+
$tooltip_args = array(
|
787 |
+
'tooltip_id' => 'bws_shortcode_button_tooltip',
|
788 |
+
'css_selector' => '.mce-bws_shortcode_button',
|
789 |
+
'actions' => array(
|
790 |
+
'click' => false,
|
791 |
+
'onload' => true
|
792 |
+
),
|
793 |
+
'content' => '<h3>' . __( 'Add shortcode', 'bestwebsoft' ) . '</h3><p>' . __( "Add BestWebSoft plugins' shortcodes using this button.", 'bestwebsoft' ) . '</p>',
|
794 |
+
'position' => array(
|
795 |
+
'edge' => 'right'
|
796 |
+
),
|
797 |
+
'set_timeout' => 2000
|
798 |
+
);
|
799 |
+
if ( $wp_version < '3.9' )
|
800 |
+
$tooltip_args['css_selector'] = '.mce_add_bws_shortcode';
|
801 |
+
bws_add_tooltip_in_admin( $tooltip_args );
|
802 |
+
}
|
803 |
+
}
|
804 |
+
}
|
805 |
}
|
806 |
|
807 |
/**
|
841 |
'pos-left' => 0,
|
842 |
'pos-top' => 0,
|
843 |
'zindex' => 10000
|
844 |
+
),
|
845 |
+
'set_timeout' => 0
|
846 |
);
|
847 |
$tooltip_args = array_merge( $tooltip_args_default, $tooltip_args );
|
848 |
/* Check that our merged array has default values */
|
949 |
<?php }
|
950 |
}
|
951 |
|
952 |
+
/* shortcode */
|
953 |
+
if ( ! function_exists( 'bws_add_editor_buttons' ) ) {
|
954 |
+
function bws_add_editor_buttons() {
|
955 |
+
global $bws_shortcode_list, $wp_version;
|
956 |
+
if ( $wp_version < '3.3' )
|
957 |
+
return;
|
958 |
+
if ( ! empty( $bws_shortcode_list ) && current_user_can( 'edit_posts' ) && current_user_can( 'edit_pages' ) ) {
|
959 |
+
add_filter( 'mce_external_plugins', 'bws_add_buttons' );
|
960 |
+
add_filter( 'mce_buttons', 'bws_register_buttons' );
|
961 |
+
}
|
962 |
+
}
|
963 |
+
}
|
964 |
+
if ( ! function_exists( 'bws_add_buttons' ) ){
|
965 |
+
function bws_add_buttons( $plugin_array ) {
|
966 |
+
$plugin_array['add_bws_shortcode'] = plugins_url( 'js/shortcode-button.js', __FILE__ );
|
967 |
+
return $plugin_array;
|
968 |
+
}
|
969 |
+
}
|
970 |
+
if ( ! function_exists( 'bws_register_buttons' ) ) {
|
971 |
+
function bws_register_buttons( $buttons ) {
|
972 |
+
array_push( $buttons, 'add_bws_shortcode' ); /* dropcap', 'recentposts */
|
973 |
+
return $buttons;
|
974 |
+
}
|
975 |
+
}
|
976 |
+
|
977 |
+
/* Generate inline content for the popup window when the "bws shortcode" button is clicked */
|
978 |
+
if ( ! function_exists( 'bws_shortcode_media_button_popup' ) ) {
|
979 |
+
function bws_shortcode_media_button_popup() {
|
980 |
+
global $bws_shortcode_list, $wp_version;
|
981 |
+
if ( $wp_version < '3.3' )
|
982 |
+
return;
|
983 |
+
|
984 |
+
if ( ! empty( $bws_shortcode_list ) ) { ?>
|
985 |
+
<div id="bws_shortcode_popup" style="display:none;">
|
986 |
+
<div id="bws_shortcode_popup_block">
|
987 |
+
<div id="bws_shortcode_select_plugin">
|
988 |
+
<h4><?php _e( 'Plugin', 'bestwebsoft' ); ?></h4>
|
989 |
+
<select name="bws_shortcode_select" id="bws_shortcode_select">
|
990 |
+
<?php foreach ( $bws_shortcode_list as $key => $value ) { ?>
|
991 |
+
<option value="<?php echo $key; ?>"><?php echo $value['name']; ?></option>
|
992 |
+
<?php } ?>
|
993 |
+
</select>
|
994 |
+
</div>
|
995 |
+
<div class="clear"></div>
|
996 |
+
<div id="bws_shortcode_content">
|
997 |
+
<h4><?php _e( 'Shortcode settings', 'bestwebsoft' ); ?></h4>
|
998 |
+
<?php echo apply_filters( 'bws_shortcode_button_content', '' ); ?>
|
999 |
+
</div>
|
1000 |
+
<div class="clear"></div>
|
1001 |
+
<div id="bws_shortcode_content_bottom">
|
1002 |
+
<p><?php _e( 'The shortcode will be inserted', 'bestwebsoft' ); ?></p>
|
1003 |
+
<div id="bws_shortcode_block"><div id="bws_shortcode_display"></div></div>
|
1004 |
+
</div>
|
1005 |
+
<?php if ( $wp_version < '3.9' ) { ?>
|
1006 |
+
<p>
|
1007 |
+
<button class="button-primary primary bws_shortcode_insert"><?php _e( 'Insert', 'bestwebsoft' ); ?></button>
|
1008 |
+
</p>
|
1009 |
+
<?php } ?>
|
1010 |
+
</div>
|
1011 |
+
</div>
|
1012 |
+
<?php }
|
1013 |
+
if ( $wp_version < '3.9' ) { ?>
|
1014 |
+
<script type="text/javascript">
|
1015 |
+
(function($){
|
1016 |
+
$( '.bws_shortcode_insert' ).on( 'click',function() {
|
1017 |
+
var shortcode = $( '#TB_ajaxContent #bws_shortcode_display' ).text();
|
1018 |
+
if ( '' != shortcode ) {
|
1019 |
+
/* insert shortcode to tinymce */
|
1020 |
+
if ( !tinyMCE.activeEditor || tinyMCE.activeEditor.isHidden() ) {
|
1021 |
+
$( 'textarea#content' ).val( shortcode );
|
1022 |
+
} else {
|
1023 |
+
tinyMCE.execCommand( 'mceInsertContent', false, shortcode );
|
1024 |
+
}
|
1025 |
+
}
|
1026 |
+
/* close the thickbox after adding shortcode to editor */
|
1027 |
+
self.parent.tb_remove();
|
1028 |
+
});
|
1029 |
+
})(jQuery);
|
1030 |
+
</script>
|
1031 |
+
<?php }
|
1032 |
+
}
|
1033 |
+
}
|
1034 |
+
|
1035 |
+
/* add help tab */
|
1036 |
+
if ( ! function_exists( 'bws_help_tab' ) ) {
|
1037 |
+
function bws_help_tab( $screen, $args ) {
|
1038 |
+
$content = '<p><a href="http://support.bestwebsoft.com/hc/en-us/sections/' . $args['section'] . '" target="_blank">' . __( 'Visit Help Center', 'bestwebsoft' ) . '</a></p>';
|
1039 |
+
|
1040 |
+
$screen->add_help_tab(
|
1041 |
+
array(
|
1042 |
+
'id' => $args['id'] . '_help_tab',
|
1043 |
+
'title' => __( 'FAQ', 'bestwebsoft' ),
|
1044 |
+
'content' => $content
|
1045 |
+
)
|
1046 |
+
);
|
1047 |
+
|
1048 |
+
$screen->set_help_sidebar(
|
1049 |
+
'<p><strong>' . __( 'For more information:', 'bestwebsoft' ) . '</strong></p>' .
|
1050 |
+
'<p><a href="https://drive.google.com/folderview?id=0B5l8lO-CaKt9VGh0a09vUjNFNjA&usp=sharing#list" target="_blank">' . __( 'Documentation', 'bestwebsoft' ) . '</a></p>' .
|
1051 |
+
'<p><a href="http://www.youtube.com/user/bestwebsoft/playlists?flow=grid&sort=da&view=1" target="_blank">' . __( 'Video Instructions', 'bestwebsoft' ) . '</a></p>' .
|
1052 |
+
'<p><a href="http://support.bestwebsoft.com/hc/en-us/requests/new" target="_blank">' . __( 'Submit a Request', 'bestwebsoft' ) . '</a></p>'
|
1053 |
+
);
|
1054 |
+
}
|
1055 |
+
}
|
1056 |
+
|
1057 |
+
add_action( 'admin_init', 'bws_plugins_admin_init' );
|
1058 |
+
add_action( 'admin_enqueue_scripts', 'bws_admin_enqueue_scripts' );
|
1059 |
+
add_action( 'admin_head', 'bws_plugins_admin_head' );
|
1060 |
+
add_action( 'admin_footer','bws_shortcode_media_button_popup' );
|
1061 |
+
|
1062 |
+
add_action( 'admin_notices', 'bws_versions_notice' );
|
bws_menu/bws_include.php
ADDED
@@ -0,0 +1,83 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/*
|
3 |
+
* Get latest version
|
4 |
+
* Version: 1.0.0
|
5 |
+
*/
|
6 |
+
|
7 |
+
if ( ! function_exists ( 'bws_include_init' ) ) {
|
8 |
+
function bws_include_init( $base ) {
|
9 |
+
global $bstwbsftwppdtplgns_options, $bstwbsftwppdtplgns_added_menu;
|
10 |
+
if ( ! function_exists( 'get_plugin_data' ) )
|
11 |
+
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
12 |
+
|
13 |
+
$bws_menu_info = get_plugin_data( dirname( dirname( plugin_dir_path( __FILE__ ) ) ) . '/' . dirname( $base ) . '/bws_menu/bws_menu.php' );
|
14 |
+
$bws_menu_version = $bws_menu_info["Version"];
|
15 |
+
|
16 |
+
if ( ! isset( $bstwbsftwppdtplgns_options ) ) {
|
17 |
+
if ( function_exists( 'is_multisite' ) && is_multisite() ) {
|
18 |
+
if ( ! get_site_option( 'bstwbsftwppdtplgns_options' ) )
|
19 |
+
add_site_option( 'bstwbsftwppdtplgns_options', array() );
|
20 |
+
$bstwbsftwppdtplgns_options = get_site_option( 'bstwbsftwppdtplgns_options' );
|
21 |
+
} else {
|
22 |
+
if ( ! get_option( 'bstwbsftwppdtplgns_options' ) )
|
23 |
+
add_option( 'bstwbsftwppdtplgns_options', array() );
|
24 |
+
$bstwbsftwppdtplgns_options = get_option( 'bstwbsftwppdtplgns_options' );
|
25 |
+
}
|
26 |
+
}
|
27 |
+
|
28 |
+
if ( isset( $bstwbsftwppdtplgns_options['bws_menu_version'] ) ) {
|
29 |
+
$bstwbsftwppdtplgns_options['bws_menu']['version'][ $base ] = $bws_menu_version;
|
30 |
+
unset( $bstwbsftwppdtplgns_options['bws_menu_version'] );
|
31 |
+
if ( function_exists( 'is_multisite' ) && is_multisite() )
|
32 |
+
update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
33 |
+
else
|
34 |
+
update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
35 |
+
require_once( dirname( __FILE__ ) . '/bws_menu.php' );
|
36 |
+
require_once( dirname( __FILE__ ) . '/bws_functions.php' );
|
37 |
+
} else if ( ! isset( $bstwbsftwppdtplgns_options['bws_menu']['version'][ $base ] ) || $bstwbsftwppdtplgns_options['bws_menu']['version'][ $base ] < $bws_menu_version ) {
|
38 |
+
$bstwbsftwppdtplgns_options['bws_menu']['version'][ $base ] = $bws_menu_version;
|
39 |
+
if ( function_exists( 'is_multisite' ) && is_multisite() )
|
40 |
+
update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
41 |
+
else
|
42 |
+
update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
43 |
+
require_once( dirname( __FILE__ ) . '/bws_menu.php' );
|
44 |
+
require_once( dirname( __FILE__ ) . '/bws_functions.php' );
|
45 |
+
} else if ( ! isset( $bstwbsftwppdtplgns_added_menu ) ) {
|
46 |
+
$all_plugins = get_plugins();
|
47 |
+
foreach ( $bstwbsftwppdtplgns_options['bws_menu']['version'] as $key => $value ) {
|
48 |
+
if ( array_key_exists( $key, $all_plugins ) ) {
|
49 |
+
if ( $bws_menu_version < $value && is_plugin_active( $base ) ) {
|
50 |
+
if ( ! isset( $plugin_with_newer_menu ) )
|
51 |
+
$plugin_with_newer_menu = $key;
|
52 |
+
elseif ( $bstwbsftwppdtplgns_options['bws_menu']['version'][ $plugin_with_newer_menu ] < $bstwbsftwppdtplgns_options['bws_menu']['version'][ $key ] )
|
53 |
+
$plugin_with_newer_menu = $key;
|
54 |
+
}
|
55 |
+
} else {
|
56 |
+
unset( $bstwbsftwppdtplgns_options['bws_menu']['version'][ $key ] );
|
57 |
+
if ( function_exists( 'is_multisite' ) && is_multisite() )
|
58 |
+
update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
59 |
+
else
|
60 |
+
update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
61 |
+
}
|
62 |
+
}
|
63 |
+
if ( ! isset( $plugin_with_newer_menu ) )
|
64 |
+
$plugin_with_newer_menu = $base;
|
65 |
+
$plugin_with_newer_menu = explode( '/', $plugin_with_newer_menu );
|
66 |
+
$wp_content_dir = defined( 'WP_CONTENT_DIR' ) ? basename( WP_CONTENT_DIR ) : 'wp-content';
|
67 |
+
|
68 |
+
if ( file_exists( ABSPATH . $wp_content_dir . '/plugins/' . $plugin_with_newer_menu[0] . '/bws_menu/bws_menu.php' ) ) {
|
69 |
+
require_once( ABSPATH . $wp_content_dir . '/plugins/' . $plugin_with_newer_menu[0] . '/bws_menu/bws_menu.php' );
|
70 |
+
} else {
|
71 |
+
require_once( dirname( __FILE__ ) . '/bws_menu.php' );
|
72 |
+
}
|
73 |
+
|
74 |
+
if ( file_exists( ABSPATH . $wp_content_dir . '/plugins/' . $plugin_with_newer_menu[0] . '/bws_menu/bws_functions.php' ) ) {
|
75 |
+
require_once( ABSPATH . $wp_content_dir . '/plugins/' . $plugin_with_newer_menu[0] . '/bws_menu/bws_functions.php' );
|
76 |
+
} else {
|
77 |
+
require_once( dirname( __FILE__ ) . '/bws_functions.php' );
|
78 |
+
}
|
79 |
+
|
80 |
+
$bstwbsftwppdtplgns_added_menu = true;
|
81 |
+
}
|
82 |
+
}
|
83 |
+
}
|
bws_menu/bws_menu.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
* Function for displaying BestWebSoft menu
|
4 |
-
* Version: 1.7.
|
5 |
*/
|
6 |
|
7 |
if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
|
@@ -459,6 +459,14 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
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 |
);
|
464 |
|
1 |
<?php
|
2 |
/*
|
3 |
* Function for displaying BestWebSoft menu
|
4 |
+
* Version: 1.7.7
|
5 |
*/
|
6 |
|
7 |
if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
|
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 |
|
bws_menu/css/general_style.css
CHANGED
@@ -81,6 +81,9 @@ td.bws_pro_version_tooltip {
|
|
81 |
position: absolute;
|
82 |
z-index: 1;
|
83 |
}
|
|
|
|
|
|
|
84 |
.bws_pro_version_table_bloc table.bws_pro_version {
|
85 |
background: transparent;
|
86 |
margin: 0;
|
@@ -252,6 +255,14 @@ div.bws_banner_on_plugin_page .icon {
|
|
252 |
margin: 8px;
|
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,
|
@@ -266,4 +277,159 @@ div.bws_banner_on_plugin_page .icon {
|
|
266 |
position: relative;
|
267 |
left: 8px;
|
268 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
269 |
}
|
81 |
position: absolute;
|
82 |
z-index: 1;
|
83 |
}
|
84 |
+
.bws_hide_premium_options {
|
85 |
+
z-index: 5;
|
86 |
+
}
|
87 |
.bws_pro_version_table_bloc table.bws_pro_version {
|
88 |
background: transparent;
|
89 |
margin: 0;
|
255 |
margin: 8px;
|
256 |
cursor: pointer;
|
257 |
}
|
258 |
+
.rtl .bws_banner_on_plugin_page .close_icon {
|
259 |
+
float: left;
|
260 |
+
}
|
261 |
+
.rtl div.bws_banner_on_plugin_page .icon,
|
262 |
+
.rtl div.bws_banner_on_plugin_page .button,
|
263 |
+
.rtl .bws_banner_on_plugin_page .text {
|
264 |
+
float: right;
|
265 |
+
}
|
266 |
/* #### Mobile Phones Portrait or Landscape #### */
|
267 |
@media screen and (max-device-width: 768px) {
|
268 |
.bws_banner_on_plugin_page .text,
|
277 |
position: relative;
|
278 |
left: 8px;
|
279 |
}
|
280 |
+
}
|
281 |
+
/* display shortcodes */
|
282 |
+
span.bws_code {
|
283 |
+
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.07);
|
284 |
+
font-size: 13px;
|
285 |
+
margin: 0 1px;
|
286 |
+
padding: 3px 5px 2px;
|
287 |
+
}
|
288 |
+
/*
|
289 |
+
* styles help tooltips
|
290 |
+
*/
|
291 |
+
.bws_help_box {
|
292 |
+
background-image: url("../images/tooltip_icons.png");
|
293 |
+
background-repeat: no-repeat;
|
294 |
+
cursor: pointer;
|
295 |
+
height: 28px;
|
296 |
+
position: relative;
|
297 |
+
margin: 3px 5px;
|
298 |
+
width: 28px;
|
299 |
+
display: inline-block;
|
300 |
+
}
|
301 |
+
.bws_help_box:not(.dashicons) {
|
302 |
+
vertical-align: middle;
|
303 |
+
}
|
304 |
+
.bws_help_box.dashicons-editor-help {
|
305 |
+
background: none;
|
306 |
+
color: #0074a2;
|
307 |
+
height: auto;
|
308 |
+
width: auto;
|
309 |
+
margin: 0;
|
310 |
+
}
|
311 |
+
.bws_help_box.dashicons-editor-help:hover {
|
312 |
+
color: #2ea2cc;
|
313 |
+
}
|
314 |
+
.bws_hidden_help_text {
|
315 |
+
background: #fff;
|
316 |
+
border: 1px solid #DCDCDC;
|
317 |
+
left: 40px;
|
318 |
+
padding: 5px;
|
319 |
+
position: absolute;
|
320 |
+
width: auto;
|
321 |
+
line-height: 1.5;
|
322 |
+
display: none;
|
323 |
+
color: #333;
|
324 |
+
font-size: 12px;
|
325 |
+
font-family: "Open Sans",sans-serif;
|
326 |
+
text-align: left;
|
327 |
+
}
|
328 |
+
.dashicons-editor-help .bws_hidden_help_text {
|
329 |
+
left: 30px;
|
330 |
+
top: -6px;
|
331 |
+
}
|
332 |
+
.bws_hidden_help_text:after,
|
333 |
+
.bws_hidden_help_text:before {
|
334 |
+
position: absolute;
|
335 |
+
content: "";
|
336 |
+
width: 0;
|
337 |
+
height: 0;
|
338 |
+
left: -10px;
|
339 |
+
top: 7px;
|
340 |
+
direction: ltr;
|
341 |
+
}
|
342 |
+
.bws_hidden_help_text:before {
|
343 |
+
border-top: 8px solid transparent;
|
344 |
+
border-bottom: 8px solid transparent;
|
345 |
+
border-right: 11px solid #DCDCDC;
|
346 |
+
z-index: -1;
|
347 |
+
margin-top: -1px;
|
348 |
+
margin-left: -2px;
|
349 |
+
}
|
350 |
+
.bws_hidden_help_text:after {
|
351 |
+
border-top: 7px solid transparent;
|
352 |
+
border-bottom: 7px solid transparent;
|
353 |
+
border-right: 10px solid #fff;
|
354 |
+
}
|
355 |
+
.bws_hidden_help_text:after {
|
356 |
+
border-top: 7px solid transparent;
|
357 |
+
border-bottom: 7px solid transparent;
|
358 |
+
border-right: 10px solid #fff;
|
359 |
+
}
|
360 |
+
.bws_hidden_help_text code {
|
361 |
+
padding: 2px 5px 1px;
|
362 |
+
}
|
363 |
+
.bws_help_box:hover .bws_hidden_help_text {
|
364 |
+
display: inline-block;
|
365 |
+
z-index: 1001;
|
366 |
+
}
|
367 |
+
/* RTL styles */
|
368 |
+
.bws_help_box_right .bws_hidden_help_text,
|
369 |
+
.rtl .bws_hidden_help_text {
|
370 |
+
left: auto;
|
371 |
+
right: 40px;
|
372 |
+
}
|
373 |
+
.bws_help_box_right.dashicons-editor-help .bws_hidden_help_text,
|
374 |
+
.rtl .dashicons-editor-help .bws_hidden_help_text {
|
375 |
+
right: 30px;
|
376 |
+
}
|
377 |
+
.bws_help_box_right .bws_hidden_help_text:before,
|
378 |
+
.rtl .bws_hidden_help_text:before,
|
379 |
+
.rtl .bws_hidden_help_text:after,
|
380 |
+
.bws_help_box_right .bws_hidden_help_text:after {
|
381 |
+
left: auto;
|
382 |
+
right: -10px;
|
383 |
+
-webkit-transform: rotate(180deg); /* Chrome y Safari */
|
384 |
+
-moz-transform: rotate(180deg); /* Firefox */
|
385 |
+
-o-transform: rotate(180deg); /* Opera */
|
386 |
+
transform: rotate(180deg);
|
387 |
+
}
|
388 |
+
.rtl .bws_hidden_help_text {
|
389 |
+
text-align: right;
|
390 |
+
}
|
391 |
+
.bws_help_box_right .bws_hidden_help_text:before,
|
392 |
+
.rtl .bws_hidden_help_text:before {
|
393 |
+
margin-right: -2px;
|
394 |
+
}
|
395 |
+
|
396 |
+
|
397 |
+
/* bws shortcode insert */
|
398 |
+
#bws_shortcode_content,
|
399 |
+
#bws_shortcode_select_plugin {
|
400 |
+
margin-bottom: 10px;
|
401 |
+
}
|
402 |
+
#bws_shortcode_content * {
|
403 |
+
white-space: normal;
|
404 |
+
}
|
405 |
+
#bws_shortcode_popup_block h4 {
|
406 |
+
padding: 0;
|
407 |
+
line-height: 2.5;
|
408 |
+
text-transform: uppercase;
|
409 |
+
}
|
410 |
+
#bws_shortcode_content_bottom p {
|
411 |
+
font-style: italic;
|
412 |
+
color: #666;
|
413 |
+
}
|
414 |
+
#bws_shortcode_block {
|
415 |
+
background-color: #fdfdfd;
|
416 |
+
border: 1px solid #dfdfdf;
|
417 |
+
overflow: auto;
|
418 |
+
padding: 10px;
|
419 |
+
}
|
420 |
+
#bws_shortcode_display {
|
421 |
+
margin: 0 auto;
|
422 |
+
}
|
423 |
+
#bws_shortcode_content fieldset label {
|
424 |
+
margin-top: 5px;
|
425 |
+
display: inline-block;
|
426 |
+
}
|
427 |
+
#bws_shortcode_content .title {
|
428 |
+
margin-right: 5px;
|
429 |
+
margin-left: 5px;
|
430 |
+
line-height: 2.5;
|
431 |
+
}
|
432 |
+
#bws_shortcode_content .title,
|
433 |
+
#bws_shortcode_content .checkbox-title {
|
434 |
+
white-space: normal;
|
435 |
}
|
bws_menu/css/general_style_wp_before_3.8.css
DELETED
@@ -1,275 +0,0 @@
|
|
1 |
-
#adminmenu #toplevel_page_bws_plugins div.wp-menu-image {
|
2 |
-
background: url("../images/icon_16.png") no-repeat scroll center center transparent;
|
3 |
-
}
|
4 |
-
#wpadminbar li#wp-admin-bar-pdfprnt-bar-menu a:hover span.admin-bar-menu-bws-icon {
|
5 |
-
background: url("../images/icon_16_c.png") no-repeat scroll center center transparent;
|
6 |
-
}
|
7 |
-
#adminmenu #toplevel_page_bws_plugins:hover div.wp-menu-image,
|
8 |
-
#adminmenu #toplevel_page_bws_plugins.wp-has-current-submenu div.wp-menu-image {
|
9 |
-
background: url("../images/icon_16_c.png") no-repeat scroll center center transparent;
|
10 |
-
}
|
11 |
-
.wrap #icon-options-general.icon32-bws {
|
12 |
-
background: url("../images/icon_36.png") no-repeat scroll left top transparent;
|
13 |
-
}
|
14 |
-
#toplevel_page_bws_plugins .wp-submenu .wp-first-item {
|
15 |
-
display: none;
|
16 |
-
}
|
17 |
-
.bws_info {
|
18 |
-
color: #888888;
|
19 |
-
font-size: 10px;
|
20 |
-
}
|
21 |
-
/*
|
22 |
-
* styles for rate-support div on the settings page
|
23 |
-
*/
|
24 |
-
.bws-plugin-reviews {
|
25 |
-
background: none repeat scroll 0 0 #BEE1F1;
|
26 |
-
border: 1px solid #70A8C2;
|
27 |
-
border-radius: 3px;
|
28 |
-
max-width: 700px;
|
29 |
-
}
|
30 |
-
.bws-plugin-reviews-rate {
|
31 |
-
padding: 10px;
|
32 |
-
border-bottom: 1px dashed #70A8C2;
|
33 |
-
}
|
34 |
-
.bws-plugin-reviews-support {
|
35 |
-
padding: 10px;
|
36 |
-
}
|
37 |
-
/*
|
38 |
-
* styles for Go PRO tab
|
39 |
-
*/
|
40 |
-
.bws_go_pro_tab {
|
41 |
-
background-color: #2A95C5;
|
42 |
-
border-color: #11688F;
|
43 |
-
color: #FFFFFF;
|
44 |
-
font-weight: normal !important;
|
45 |
-
text-shadow: none;
|
46 |
-
}
|
47 |
-
.bws_go_pro_tab:hover {
|
48 |
-
background-color: #2080AB;
|
49 |
-
color: #FFFFFF;
|
50 |
-
border-color: #11688F;
|
51 |
-
}
|
52 |
-
/*
|
53 |
-
* styles for pro_version settings and tooltip
|
54 |
-
*/
|
55 |
-
td.bws_pro_version,
|
56 |
-
tr.bws_pro_version,
|
57 |
-
.nav-tab.bws_plugin_menu_pro_version,
|
58 |
-
.nav-tab.bws_plugin_menu_pro_version:hover {
|
59 |
-
background: rgba(248, 226, 104, 0.11) url("../images/pattern_bg.png");
|
60 |
-
border: 1px solid #AAA;
|
61 |
-
}
|
62 |
-
.nav-tab.bws_plugin_menu_pro_version:hover {
|
63 |
-
color: #AAAAAA;
|
64 |
-
}
|
65 |
-
td.bws_pro_version_tooltip {
|
66 |
-
border: 1px solid #AAA;
|
67 |
-
position: inherit;
|
68 |
-
}
|
69 |
-
.bws_pro_version_bloc {
|
70 |
-
position: relative;
|
71 |
-
margin: 5px 0;
|
72 |
-
border: 1px solid #AAAAAA;
|
73 |
-
max-width: 800px;
|
74 |
-
overflow: hidden;
|
75 |
-
}
|
76 |
-
.bws_table_bg {
|
77 |
-
background: #f8e268 url("../images/pattern.png");
|
78 |
-
opacity: 0.11;
|
79 |
-
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=11); /* IE 5.5+*/
|
80 |
-
-moz-opacity: 0.11; /* Mozilla 1.6 и ниже */
|
81 |
-
width: 100%;
|
82 |
-
height: 100%;
|
83 |
-
position: absolute;
|
84 |
-
z-index: 1;
|
85 |
-
}
|
86 |
-
.bws_pro_version_table_bloc table.bws_pro_version {
|
87 |
-
background: transparent;
|
88 |
-
margin: 0;
|
89 |
-
border: none;
|
90 |
-
width: 100%;
|
91 |
-
}
|
92 |
-
table.bws_pro_version {
|
93 |
-
background: #E0E0E0;
|
94 |
-
border: 1px solid #AAA;
|
95 |
-
margin-bottom: 5px;
|
96 |
-
width: auto;
|
97 |
-
}
|
98 |
-
table.bws_pro_version tbody {
|
99 |
-
display: block;
|
100 |
-
}
|
101 |
-
table.bws_pro_version th,
|
102 |
-
table.bws_pro_version td {
|
103 |
-
padding-left: 10px;
|
104 |
-
}
|
105 |
-
.bws_pro_version_tooltip {
|
106 |
-
background: #FFF;
|
107 |
-
border-top: 1px solid #AAA;
|
108 |
-
position: relative;
|
109 |
-
z-index: 2;
|
110 |
-
padding: 10px;
|
111 |
-
font-size: 14px;
|
112 |
-
}
|
113 |
-
.bws_pro_version_tooltip .bws_button {
|
114 |
-
background: #dd5738;
|
115 |
-
border: none;
|
116 |
-
text-decoration: none;
|
117 |
-
color: #fff;
|
118 |
-
padding: 5px 17px;
|
119 |
-
border-radius: 2px;
|
120 |
-
margin: 5px 10px;
|
121 |
-
float: right;
|
122 |
-
}
|
123 |
-
.bws_pro_version_tooltip .bws_info {
|
124 |
-
float: left;
|
125 |
-
padding-top: 10px;
|
126 |
-
font-size: 14px;
|
127 |
-
color: #444;
|
128 |
-
}
|
129 |
-
.bws_pro_version_tooltip .bws_pro_links {
|
130 |
-
float: right;
|
131 |
-
}
|
132 |
-
.bws_pro_version_tooltip .bws_trial_info {
|
133 |
-
padding-top: 10px;
|
134 |
-
display: inline-block;
|
135 |
-
}
|
136 |
-
div.bws_pro_version {
|
137 |
-
padding: 5px 10px;
|
138 |
-
}
|
139 |
-
a.bws_plugin_pro_version {
|
140 |
-
display: block;
|
141 |
-
background: rgba(248, 226, 104, 0.11) url("../images/pattern_bg.png");
|
142 |
-
border: 1px solid #AAA;
|
143 |
-
padding: 5px;
|
144 |
-
text-decoration: none;
|
145 |
-
color: #666;
|
146 |
-
}
|
147 |
-
.bws_pro_version_single_link,
|
148 |
-
.bws_pro_version_single_link:hover {
|
149 |
-
text-decoration: none;
|
150 |
-
color: #666;
|
151 |
-
}
|
152 |
-
/* style for mini-block (ex. google map) */
|
153 |
-
.bws_pro_version_bloc_mini .bws_pro_version_table_bloc table.bws_pro_version {
|
154 |
-
width: auto;
|
155 |
-
}
|
156 |
-
.bws_pro_version_bloc_mini .bws_pro_version_tooltip {
|
157 |
-
padding: 10px 61px;
|
158 |
-
text-align: center;
|
159 |
-
width: 200px;
|
160 |
-
}
|
161 |
-
.bws_pro_version_bloc_mini .bws_pro_version_tooltip a {
|
162 |
-
display: inline-block;
|
163 |
-
line-height: 1.5;
|
164 |
-
}
|
165 |
-
.bws_pro_version_bloc_mini .bws_pro_version_tooltip .bws_button {
|
166 |
-
margin: 10px 10px 5px;
|
167 |
-
padding: 5px 50px;
|
168 |
-
float: none;
|
169 |
-
}
|
170 |
-
/* #### Mobile Phones Portrait or Landscape #### */
|
171 |
-
@media screen and (max-device-width: 768px) {
|
172 |
-
.bws_pro_version_tooltip {
|
173 |
-
padding: 10px;
|
174 |
-
text-align: center;
|
175 |
-
}
|
176 |
-
.bws_pro_version_tooltip .bws_info {
|
177 |
-
float: none;
|
178 |
-
text-align: center;
|
179 |
-
}
|
180 |
-
.bws_pro_version_tooltip a {
|
181 |
-
display: inline-block;
|
182 |
-
line-height: 1.5;
|
183 |
-
}
|
184 |
-
.bws_pro_version_tooltip .bws_info a {
|
185 |
-
display: block;
|
186 |
-
}
|
187 |
-
.bws_pro_version_tooltip .bws_button {
|
188 |
-
margin: 10px 10px 5px;
|
189 |
-
padding: 5px 50px;
|
190 |
-
float: none;
|
191 |
-
}
|
192 |
-
}
|
193 |
-
/*
|
194 |
-
* styles for banner
|
195 |
-
*/
|
196 |
-
.bws_banner_on_plugin_page {
|
197 |
-
border: 1px solid #d4d4d4;
|
198 |
-
background: #FFF;
|
199 |
-
position: relative;
|
200 |
-
overflow: hidden;
|
201 |
-
margin: 12px 0;
|
202 |
-
background: #ECECEC;
|
203 |
-
-moz-border-radius: 3px;
|
204 |
-
-webkit-border-radius: 3px;
|
205 |
-
border-radius: 3px;
|
206 |
-
}
|
207 |
-
.bws_banner_on_plugin_page .text {
|
208 |
-
color: #000;
|
209 |
-
font-size: 15px;
|
210 |
-
line-height: 26px;
|
211 |
-
margin: 18px 18px 14px;
|
212 |
-
float: left;
|
213 |
-
width: auto;
|
214 |
-
max-width: 80%;
|
215 |
-
}
|
216 |
-
.bws_banner_on_plugin_page .text span {
|
217 |
-
font-size: 12px;
|
218 |
-
opacity: 0.7;
|
219 |
-
}
|
220 |
-
div.bws_banner_on_plugin_page .button {
|
221 |
-
float: right;
|
222 |
-
border: none;
|
223 |
-
font-size: 14px;
|
224 |
-
margin: 18px 16px;
|
225 |
-
padding: 14px 29px;
|
226 |
-
color: #FFF;
|
227 |
-
text-shadow: none;
|
228 |
-
font-weight: bold;
|
229 |
-
background: #0074A2;
|
230 |
-
-moz-border-radius: 3px;
|
231 |
-
border-radius: 3px;
|
232 |
-
-webkit-border-radius: 3px;
|
233 |
-
text-decoration: none;
|
234 |
-
height: 50px;
|
235 |
-
text-align: center;
|
236 |
-
text-transform: uppercase;
|
237 |
-
box-shadow: none;
|
238 |
-
-moz-box-sizing: border-box;
|
239 |
-
-webkit-box-sizing: border-box;
|
240 |
-
box-sizing: border-box;
|
241 |
-
}
|
242 |
-
.bws_banner_on_plugin_page .button:hover,
|
243 |
-
.bws_banner_on_plugin_page .button:focus {
|
244 |
-
background: #222;
|
245 |
-
color: #FFF;
|
246 |
-
}
|
247 |
-
div.bws_banner_on_plugin_page .icon {
|
248 |
-
float: left;
|
249 |
-
margin: 12px 8px 8px 12px;
|
250 |
-
}
|
251 |
-
.bws_banner_on_plugin_page .icon img {
|
252 |
-
max-width: 60px;
|
253 |
-
}
|
254 |
-
.bws_banner_on_plugin_page .text + .icon {
|
255 |
-
display: none;
|
256 |
-
}
|
257 |
-
.bws_banner_on_plugin_page .close_icon {
|
258 |
-
float: right;
|
259 |
-
margin: 8px;
|
260 |
-
cursor: pointer;
|
261 |
-
}
|
262 |
-
/* #### Mobile Phones Portrait or Landscape #### */
|
263 |
-
@media screen and (max-device-width: 768px) {
|
264 |
-
.bws_banner_on_plugin_page .text,
|
265 |
-
.bws_banner_on_plugin_page .icon,
|
266 |
-
.bws_banner_on_plugin_page .button_div,
|
267 |
-
.bws_banner_on_plugin_page .button {
|
268 |
-
float: none;
|
269 |
-
text-align: center;
|
270 |
-
}
|
271 |
-
.bws_banner_on_plugin_page .icon {
|
272 |
-
position: relative;
|
273 |
-
left: 8px;
|
274 |
-
}
|
275 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bws_menu/icons/error-log-viewer.png
ADDED
Binary file
|
bws_menu/images/icon_16.png
DELETED
Binary file
|
bws_menu/images/icon_16_b.png
DELETED
Binary file
|
bws_menu/images/icon_16_c.png
DELETED
Binary file
|
bws_menu/images/icon_36.png
DELETED
Binary file
|
bws_menu/images/icon_36_b.png
DELETED
Binary file
|
bws_menu/images/shortcode-icon.png
ADDED
Binary file
|
bws_menu/images/tooltip_icons.png
ADDED
Binary file
|
bws_menu/js/bws_tooltip.js
CHANGED
@@ -7,11 +7,11 @@
|
|
7 |
jQuery.bwsTooltip = function( pointer_options ) {
|
8 |
var pointer_buttons = pointer_options['buttons'];
|
9 |
/* extend pointer options - add close button */
|
10 |
-
pointer_options = $.extend(pointer_options, {
|
11 |
buttons: function(event, t) {
|
12 |
var button;
|
13 |
/* check and add dismiss-type buttons */
|
14 |
-
for( var but in pointer_buttons ) {
|
15 |
if ( typeof pointer_buttons[ but ]['type'] != 'undefined' && pointer_buttons[ but ]['type'] == 'dismiss' && typeof pointer_buttons[ but ]['text'] != 'undefined' && pointer_buttons[ but ]['text'] != '' ) {
|
16 |
button += '<a style="margin:0px 5px 2px;" class="button-secondary">' + pointer_buttons[ but ]['text'] + '</a>';
|
17 |
}
|
@@ -37,8 +37,7 @@
|
|
37 |
cssSelector.pointer(pointer_options).pointer({
|
38 |
pointerClass: 'wp-pointer ' + pointer_options["tooltip_id"],
|
39 |
content: pointer_options['content'],
|
40 |
-
position:
|
41 |
-
{
|
42 |
edge: pointer_options['position']['edge'],
|
43 |
align: pointer_options['position']['align'],
|
44 |
},
|
@@ -64,10 +63,19 @@
|
|
64 |
$( "." + pointer_options["tooltip_id"] ).css({ "z-index": pointer_options['position']['zindex'] });
|
65 |
}
|
66 |
}
|
|
|
67 |
/* display pointer for the first time */
|
68 |
if ( pointer_options['actions']['onload'] ) {
|
69 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
}
|
|
|
71 |
/* display pointer when clicked on selector */
|
72 |
if ( pointer_options['actions']['click'] ) {
|
73 |
$( pointer_options['css_selector'] ).click( function () {
|
7 |
jQuery.bwsTooltip = function( pointer_options ) {
|
8 |
var pointer_buttons = pointer_options['buttons'];
|
9 |
/* extend pointer options - add close button */
|
10 |
+
pointer_options = $.extend( pointer_options, {
|
11 |
buttons: function(event, t) {
|
12 |
var button;
|
13 |
/* check and add dismiss-type buttons */
|
14 |
+
for ( var but in pointer_buttons ) {
|
15 |
if ( typeof pointer_buttons[ but ]['type'] != 'undefined' && pointer_buttons[ but ]['type'] == 'dismiss' && typeof pointer_buttons[ but ]['text'] != 'undefined' && pointer_buttons[ but ]['text'] != '' ) {
|
16 |
button += '<a style="margin:0px 5px 2px;" class="button-secondary">' + pointer_buttons[ but ]['text'] + '</a>';
|
17 |
}
|
37 |
cssSelector.pointer(pointer_options).pointer({
|
38 |
pointerClass: 'wp-pointer ' + pointer_options["tooltip_id"],
|
39 |
content: pointer_options['content'],
|
40 |
+
position: {
|
|
|
41 |
edge: pointer_options['position']['edge'],
|
42 |
align: pointer_options['position']['align'],
|
43 |
},
|
63 |
$( "." + pointer_options["tooltip_id"] ).css({ "z-index": pointer_options['position']['zindex'] });
|
64 |
}
|
65 |
}
|
66 |
+
|
67 |
/* display pointer for the first time */
|
68 |
if ( pointer_options['actions']['onload'] ) {
|
69 |
+
if ( pointer_options['set_timeout'] > 0 ) {
|
70 |
+
var settime = parseInt( pointer_options['set_timeout'] );
|
71 |
+
setTimeout( function() {
|
72 |
+
displayPointer( $( pointer_options['css_selector'] ) );
|
73 |
+
}, settime );
|
74 |
+
} else {
|
75 |
+
displayPointer( $( pointer_options['css_selector'] ) );
|
76 |
+
}
|
77 |
}
|
78 |
+
|
79 |
/* display pointer when clicked on selector */
|
80 |
if ( pointer_options['actions']['click'] ) {
|
81 |
$( pointer_options['css_selector'] ).click( function () {
|
bws_menu/js/general_script.js
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
function bws_show_settings_notice() {
|
2 |
+
(function($) {
|
3 |
+
$( '.updated.fade, .error' ).css( 'display', 'none' );
|
4 |
+
$( '#bws_save_settings_notice' ).css( 'display', 'block' );
|
5 |
+
})(jQuery);
|
6 |
+
}
|
7 |
+
|
8 |
+
(function($) {
|
9 |
+
$( document ).ready( function() {
|
10 |
+
/**
|
11 |
+
* add notice about changing on the settings page
|
12 |
+
*/
|
13 |
+
$( '.bws_form input, .bws_form textarea, .bws_form select' ).bind( "change paste select", function() {
|
14 |
+
if ( $( this ).attr( 'type' ) != 'submit' && ! $( this ).hasClass( 'bws_no_bind_notice' ) ) {
|
15 |
+
bws_show_settings_notice();
|
16 |
+
};
|
17 |
+
});
|
18 |
+
$( '.bws_save_anchor' ).on( "click", function( event ) {
|
19 |
+
event.preventDefault();
|
20 |
+
$( '.bws_form #bws-submit-button' ).click();
|
21 |
+
});
|
22 |
+
});
|
23 |
+
})(jQuery);
|
bws_menu/js/shortcode-button.js
ADDED
@@ -0,0 +1,122 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
classes: 'bws_shortcode_button widget btn',
|
16 |
+
image : bws_shortcode_button.icon_url,
|
17 |
+
onclick: function() {
|
18 |
+
if ( bws_shortcode_button.wp_version < '3.9' ) {
|
19 |
+
/* triggers the thickbox */
|
20 |
+
var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width;
|
21 |
+
W = W - 80;
|
22 |
+
H = H - 84;
|
23 |
+
tb_show( bws_shortcode_button.title, '#TB_inline?width=' + W + '&height=' + H + '&inlineId=bws_shortcode_popup' );
|
24 |
+
|
25 |
+
var current_object = '#TB_ajaxContent';
|
26 |
+
} else {
|
27 |
+
win = ed.windowManager.open( {
|
28 |
+
width: 400,
|
29 |
+
height: 400,
|
30 |
+
inline: true,
|
31 |
+
title: bws_shortcode_button.title,
|
32 |
+
body: {
|
33 |
+
id : 'bws-shortcode-content',
|
34 |
+
type: 'container',
|
35 |
+
classes: 'bws-shortcode',
|
36 |
+
html: $( '#bws_shortcode_popup' ).html()
|
37 |
+
},
|
38 |
+
buttons: [{
|
39 |
+
text: 'Insert',
|
40 |
+
classes: 'button-primary primary bws_shortcode_insert',
|
41 |
+
onclick: function( e ) {
|
42 |
+
var shortcode = $( '.mce-container-body #bws_shortcode_display' ).text();
|
43 |
+
if ( '' != shortcode ) {
|
44 |
+
/* insert shortcode to tinymce */
|
45 |
+
ed.insertContent( shortcode );
|
46 |
+
}
|
47 |
+
ed.windowManager.close();
|
48 |
+
},
|
49 |
+
},
|
50 |
+
{
|
51 |
+
text: 'Cancel',
|
52 |
+
onclick: 'close'
|
53 |
+
}],
|
54 |
+
|
55 |
+
});
|
56 |
+
var current_object = '.mce-container-body';
|
57 |
+
}
|
58 |
+
var select_count = $( current_object + ' select#bws_shortcode_select option').length;
|
59 |
+
if ( 1 == select_count ) {
|
60 |
+
$( current_object + ' #bws_shortcode_select_plugin' ).hide();
|
61 |
+
}
|
62 |
+
|
63 |
+
var plugin = $( current_object + ' #bws_shortcode_select option:selected' ).val();
|
64 |
+
$( current_object + ' #bws_shortcode_content > div' ).hide();
|
65 |
+
$( current_object + ' #bws_shortcode_content > #' + plugin ).show();
|
66 |
+
|
67 |
+
if ( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).length > 0 ) {
|
68 |
+
$( current_object + ' #bws_shortcode_display' ).text( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).val() );
|
69 |
+
}
|
70 |
+
|
71 |
+
$( current_object + ' #bws_shortcode_select' ).on( 'change',function() {
|
72 |
+
var plugin = $( current_object + ' #bws_shortcode_select option:selected' ).val();
|
73 |
+
$( current_object + ' #bws_shortcode_content > div' ).hide();
|
74 |
+
$( current_object + ' #bws_shortcode_content > #' + plugin ).show();
|
75 |
+
if ( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).length > 0 ) {
|
76 |
+
$( current_object + ' #bws_shortcode_display' ).text( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).val() );
|
77 |
+
} else {
|
78 |
+
$( current_object + ' #bws_shortcode_display' ).text( '' );
|
79 |
+
}
|
80 |
+
});
|
81 |
+
|
82 |
+
$.each( bws_shortcode_button.function_name, function( index, value ) {
|
83 |
+
eval( value + '();' );
|
84 |
+
});
|
85 |
+
}
|
86 |
+
});
|
87 |
+
},
|
88 |
+
|
89 |
+
/**
|
90 |
+
* Creates control instances based in the incomming name. This method is normally not
|
91 |
+
* needed since the addButton method of the tinymce.Editor class is a more easy way of adding buttons
|
92 |
+
* but you sometimes need to create more complex controls like listboxes, split buttons etc then this
|
93 |
+
* method can be used to create those.
|
94 |
+
*
|
95 |
+
* @param {String} n Name of the control to create.
|
96 |
+
* @param {tinymce.ControlManager} cm Control manager to use inorder to create new control.
|
97 |
+
* @return {tinymce.ui.Control} New control instance or null if no control was created.
|
98 |
+
*/
|
99 |
+
createControl : function(n, cm) {
|
100 |
+
return null;
|
101 |
+
},
|
102 |
+
|
103 |
+
/**
|
104 |
+
* Returns information about the plugin as a name/value array.
|
105 |
+
* The current keys are longname, author, authorurl, infourl and version.
|
106 |
+
*
|
107 |
+
* @return {Object} Name/value array containing information about the plugin.
|
108 |
+
*/
|
109 |
+
getInfo : function() {
|
110 |
+
return {
|
111 |
+
longname : 'BWS Shortcode Buttons',
|
112 |
+
author : 'BWS',
|
113 |
+
authorurl : 'http://bestwebsoft.com',
|
114 |
+
infourl : '',
|
115 |
+
version : "0.1"
|
116 |
+
};
|
117 |
+
}
|
118 |
+
});
|
119 |
+
|
120 |
+
/* Register plugin */
|
121 |
+
tinymce.PluginManager.add( 'add_bws_shortcode', tinymce.plugins.BWSButton );
|
122 |
+
})(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,766 @@ 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 |
-
|
|
|
|
|
|
|
|
|
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-10-09 14:42+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-10-09 14:42+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:39
|
22 |
+
#: bws_functions.php:63
|
23 |
msgid "requires"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: bws_functions.php:41
|
27 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: bws_functions.php:42
|
31 |
msgid "Back to the WordPress"
|
32 |
msgstr ""
|
33 |
|
34 |
# @ captcha
|
35 |
+
#: bws_functions.php:44
|
36 |
#, fuzzy
|
37 |
msgid "Plugins page"
|
38 |
msgstr "BWS Plugins"
|
39 |
|
40 |
+
#: bws_functions.php:65
|
41 |
+
msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
#: bws_functions.php:122
|
45 |
msgid "It’s time to upgrade your"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: bws_functions.php:122
|
49 |
msgid "to"
|
50 |
msgstr ""
|
51 |
|
52 |
# @ captcha
|
53 |
+
#: bws_functions.php:122
|
54 |
#, fuzzy
|
55 |
msgid "version!"
|
56 |
msgstr "PHP Version"
|
57 |
|
58 |
+
#: bws_functions.php:123
|
59 |
msgid "Extend standard plugin functionality with new great options."
|
60 |
msgstr ""
|
61 |
|
62 |
# @ captcha
|
63 |
+
#: bws_functions.php:126
|
64 |
+
#: bws_functions.php:561
|
65 |
#, fuzzy
|
66 |
msgid "Learn More"
|
67 |
msgstr "Lesen Sie mehr"
|
68 |
|
69 |
+
#: bws_functions.php:143
|
70 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
71 |
msgstr ""
|
72 |
|
73 |
# @ captcha
|
74 |
+
#: bws_functions.php:144
|
75 |
#, fuzzy
|
76 |
msgid "Rate the plugin"
|
77 |
msgstr "Aktivierte Plugins"
|
78 |
|
79 |
# @ captcha
|
80 |
+
#: bws_functions.php:147
|
81 |
#, fuzzy
|
82 |
msgid "If there is something wrong about it, please contact us"
|
83 |
msgstr "Wenn Sie irgendwelche Fragen haben, kontaktieren Sie uns bitte über"
|
84 |
|
85 |
+
#: bws_functions.php:179
|
86 |
+
msgid "Check premium options on the plugin settings page!"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: bws_functions.php:186
|
90 |
+
#: bws_functions.php:222
|
91 |
msgid "Wrong license key"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: bws_functions.php:216
|
95 |
+
#: bws_functions.php:474
|
96 |
+
#: bws_functions.php:525
|
97 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: bws_functions.php:216
|
101 |
+
#: bws_functions.php:474
|
102 |
+
#: bws_functions.php:525
|
103 |
msgid "We are sorry for inconvenience."
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: bws_functions.php:224
|
107 |
msgid "This license key is bind to another site"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: bws_functions.php:226
|
111 |
+
#: bws_functions.php:384
|
112 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: bws_functions.php:228
|
116 |
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: bws_functions.php:230
|
120 |
+
msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: bws_functions.php:251
|
124 |
+
#: bws_functions.php:273
|
125 |
+
#: bws_functions.php:295
|
126 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: bws_functions.php:263
|
130 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: bws_functions.php:269
|
134 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: bws_functions.php:276
|
138 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: bws_functions.php:299
|
142 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: bws_functions.php:324
|
146 |
msgid "Please, enter Your license key"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: bws_functions.php:348
|
150 |
+
msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: bws_functions.php:350
|
154 |
+
#: bws_functions.php:441
|
155 |
msgid "Please, go to"
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: bws_functions.php:350
|
159 |
+
#: bws_functions.php:441
|
160 |
msgid "the setting page"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: bws_functions.php:351
|
164 |
+
#: bws_functions.php:442
|
165 |
msgid "You will be redirected automatically in 5 seconds."
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: bws_functions.php:358
|
169 |
+
msgid "Show Pro features"
|
170 |
+
msgstr ""
|
171 |
+
|
172 |
+
#: bws_functions.php:365
|
173 |
msgid "You can download and activate"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: bws_functions.php:367
|
177 |
msgid "version of this plugin by entering Your license key."
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: bws_functions.php:369
|
181 |
+
#: bws_functions.php:410
|
182 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: bws_functions.php:371
|
186 |
+
#: bws_functions.php:412
|
187 |
msgid "(your username is the email you specify when purchasing the product)."
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: bws_functions.php:375
|
191 |
+
#: bws_functions.php:659
|
192 |
msgid "or"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: bws_functions.php:375
|
196 |
#, php-format
|
197 |
msgid "Start Your Free %s-Day Trial Now"
|
198 |
msgstr ""
|
199 |
|
200 |
# @ captcha
|
201 |
+
#: bws_functions.php:381
|
202 |
+
#: bws_functions.php:390
|
203 |
+
#: bws_functions.php:420
|
204 |
+
#: bws_functions.php:428
|
205 |
+
#: bws_menu.php:693
|
206 |
+
#: bws_menu.php:750
|
207 |
#, fuzzy
|
208 |
msgid "Activate"
|
209 |
msgstr "Aktivierte Plugins"
|
210 |
|
211 |
+
#: bws_functions.php:407
|
212 |
+
#: bws_functions.php:500
|
213 |
#, php-format
|
214 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: bws_functions.php:408
|
218 |
msgid "After that you can activate it by entering your license key."
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: bws_functions.php:422
|
222 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: bws_functions.php:439
|
226 |
+
msgid "Congratulations! The Pro license of the plugin is successfully activated."
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: bws_functions.php:480
|
230 |
msgid "Wrong license key."
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: bws_functions.php:482
|
234 |
msgid "This license key is bind to another site."
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: bws_functions.php:484
|
238 |
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."
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: bws_functions.php:486
|
242 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: bws_functions.php:488
|
246 |
+
msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: bws_functions.php:492
|
250 |
+
msgid "The Pro Trial license key is valid."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: bws_functions.php:494
|
254 |
msgid "The license key is valid."
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: bws_functions.php:497
|
258 |
msgid "Your license will expire on"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: bws_functions.php:530
|
262 |
msgid "Please, enter your license key"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: bws_functions.php:543
|
266 |
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"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: bws_functions.php:543
|
270 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: bws_functions.php:547
|
274 |
msgid "Check license key"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: bws_functions.php:561
|
278 |
msgid "WARNING: Illegal use notification"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: bws_functions.php:561
|
282 |
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."
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: bws_functions.php:569
|
286 |
+
msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: bws_functions.php:571
|
290 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
291 |
msgstr ""
|
292 |
|
293 |
# @ captcha
|
294 |
+
#: bws_functions.php:571
|
295 |
+
#: bws_functions.php:624
|
296 |
+
#: bws_menu.php:669
|
297 |
+
#: bws_menu.php:691
|
298 |
+
#: bws_menu.php:718
|
299 |
+
#: bws_menu.php:748
|
300 |
+
#: bws_menu.php:794
|
301 |
#, fuzzy
|
302 |
msgid "Learn more"
|
303 |
msgstr "Lesen Sie mehr"
|
304 |
|
305 |
+
#: bws_functions.php:581
|
306 |
#, php-format
|
307 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: bws_functions.php:583
|
311 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: bws_functions.php:586
|
315 |
+
msgid "The Pro Trial license will expire on"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: bws_functions.php:624
|
319 |
msgid "You license for"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: bws_functions.php:624
|
323 |
msgid "expires on"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: bws_functions.php:624
|
327 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
328 |
msgstr ""
|
329 |
|
330 |
+
# @ captcha
|
331 |
+
#: bws_functions.php:655
|
332 |
+
#, fuzzy
|
333 |
+
msgid "Thank you for installing"
|
334 |
+
msgstr "Vielen Dank für Ihre Kontaktaufnahme."
|
335 |
+
|
336 |
+
#: bws_functions.php:656
|
337 |
+
msgid "Let's get started"
|
338 |
+
msgstr ""
|
339 |
+
|
340 |
+
# @ captcha
|
341 |
+
#: bws_functions.php:657
|
342 |
+
#, fuzzy
|
343 |
+
msgid "Configure Settings"
|
344 |
+
msgstr "Einstellungen"
|
345 |
+
|
346 |
+
#: bws_functions.php:660
|
347 |
+
msgid "Add New"
|
348 |
+
msgstr ""
|
349 |
+
|
350 |
+
#: bws_functions.php:664
|
351 |
+
msgid "Close notice"
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#: bws_functions.php:677
|
355 |
+
msgid "Notice"
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: bws_functions.php:677
|
359 |
+
msgid "The plugin's settings have been changed."
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: bws_functions.php:678
|
363 |
+
msgid "Save Changes"
|
364 |
+
msgstr ""
|
365 |
+
|
366 |
+
#: bws_functions.php:693
|
367 |
+
msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
|
368 |
+
msgstr ""
|
369 |
+
|
370 |
+
#: bws_functions.php:773
|
371 |
+
msgid "Add BWS Plugins Shortcode"
|
372 |
+
msgstr ""
|
373 |
+
|
374 |
+
#: bws_functions.php:793
|
375 |
+
msgid "Add shortcode"
|
376 |
+
msgstr ""
|
377 |
+
|
378 |
+
#: bws_functions.php:793
|
379 |
+
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: bws_functions.php:833
|
383 |
msgid "Close"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: bws_functions.php:925
|
|
|
387 |
msgid "Restore all plugin settings to defaults"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: bws_functions.php:927
|
|
|
391 |
msgid "Restore settings"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: bws_functions.php:938
|
395 |
msgid "Are you sure you want to restore all settings by default?"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: bws_functions.php:941
|
399 |
msgid "Yes, restore all settings"
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: bws_functions.php:942
|
403 |
msgid "No, go back to the settings page"
|
404 |
msgstr ""
|
405 |
|
406 |
# @ captcha
|
407 |
+
#: bws_functions.php:986
|
408 |
+
#, fuzzy
|
409 |
+
msgid "Plugin"
|
410 |
+
msgstr "BWS Plugins"
|
411 |
+
|
412 |
+
# @ captcha
|
413 |
+
#: bws_functions.php:995
|
414 |
+
#, fuzzy
|
415 |
+
msgid "Shortcode settings"
|
416 |
+
msgstr "Einstellungen"
|
417 |
+
|
418 |
+
#: bws_functions.php:1000
|
419 |
+
msgid "The shortcode will be inserted"
|
420 |
+
msgstr ""
|
421 |
+
|
422 |
+
#: bws_functions.php:1005
|
423 |
+
msgid "Insert"
|
424 |
+
msgstr ""
|
425 |
+
|
426 |
+
#: bws_functions.php:1036
|
427 |
+
msgid "Visit Help Center"
|
428 |
+
msgstr ""
|
429 |
+
|
430 |
+
#: bws_functions.php:1041
|
431 |
+
msgid "FAQ"
|
432 |
+
msgstr ""
|
433 |
+
|
434 |
+
#: bws_functions.php:1047
|
435 |
+
msgid "For more information:"
|
436 |
+
msgstr ""
|
437 |
+
|
438 |
+
#: bws_functions.php:1048
|
439 |
+
msgid "Documentation"
|
440 |
+
msgstr ""
|
441 |
+
|
442 |
+
#: bws_functions.php:1049
|
443 |
+
msgid "Video Instructions"
|
444 |
+
msgstr ""
|
445 |
+
|
446 |
+
#: bws_functions.php:1050
|
447 |
+
msgid "Submit a Request"
|
448 |
+
msgstr ""
|
449 |
+
|
450 |
+
# @ captcha
|
451 |
+
#: bws_menu.php:506
|
452 |
msgid "Not set"
|
453 |
msgstr "Nicht festgelegt"
|
454 |
|
455 |
# @ captcha
|
456 |
+
#: bws_menu.php:508
|
457 |
+
#: bws_menu.php:509
|
458 |
msgid "On"
|
459 |
msgstr "Ein"
|
460 |
|
461 |
# @ captcha
|
462 |
+
#: bws_menu.php:508
|
463 |
+
#: bws_menu.php:509
|
464 |
msgid "Off"
|
465 |
msgstr "Ausgeschaltet"
|
466 |
|
467 |
# @ captcha
|
468 |
+
#: bws_menu.php:510
|
469 |
+
#: bws_menu.php:511
|
470 |
+
#: bws_menu.php:512
|
471 |
+
#: bws_menu.php:513
|
472 |
+
#: bws_menu.php:514
|
473 |
+
#: bws_menu.php:526
|
474 |
msgid "N/A"
|
475 |
msgstr "keine Angaben"
|
476 |
|
477 |
# @ captcha
|
478 |
+
#: bws_menu.php:514
|
479 |
msgid " Mb"
|
480 |
msgstr " Mb"
|
481 |
|
482 |
# @ captcha
|
483 |
+
#: bws_menu.php:515
|
484 |
+
#: bws_menu.php:516
|
485 |
+
#: bws_menu.php:517
|
486 |
+
#: bws_menu.php:522
|
487 |
msgid "Yes"
|
488 |
msgstr "Ja"
|
489 |
|
490 |
# @ captcha
|
491 |
+
#: bws_menu.php:515
|
492 |
+
#: bws_menu.php:516
|
493 |
+
#: bws_menu.php:517
|
494 |
+
#: bws_menu.php:524
|
495 |
msgid "No"
|
496 |
msgstr "Nein"
|
497 |
|
498 |
# @ captcha
|
499 |
+
#: bws_menu.php:534
|
500 |
msgid "Operating System"
|
501 |
msgstr "Betriebs-System"
|
502 |
|
503 |
# @ captcha
|
504 |
+
#: bws_menu.php:535
|
505 |
msgid "Server"
|
506 |
msgstr "Server"
|
507 |
|
508 |
# @ captcha
|
509 |
+
#: bws_menu.php:536
|
510 |
msgid "Memory usage"
|
511 |
msgstr "Speichernutzung"
|
512 |
|
513 |
# @ captcha
|
514 |
+
#: bws_menu.php:537
|
515 |
msgid "MYSQL Version"
|
516 |
msgstr "MYSQL Version"
|
517 |
|
518 |
# @ captcha
|
519 |
+
#: bws_menu.php:538
|
520 |
msgid "SQL Mode"
|
521 |
msgstr "SQL Modus"
|
522 |
|
523 |
# @ captcha
|
524 |
+
#: bws_menu.php:539
|
525 |
msgid "PHP Version"
|
526 |
msgstr "PHP Version"
|
527 |
|
528 |
# @ captcha
|
529 |
+
#: bws_menu.php:540
|
530 |
msgid "PHP Safe Mode"
|
531 |
msgstr "PHP Gesicherter Modus"
|
532 |
|
533 |
# @ captcha
|
534 |
+
#: bws_menu.php:541
|
535 |
msgid "PHP Allow URL fopen"
|
536 |
msgstr "PHP Erlaubet URL zu öffnen (fopen)"
|
537 |
|
538 |
# @ captcha
|
539 |
+
#: bws_menu.php:542
|
540 |
msgid "PHP Memory Limit"
|
541 |
msgstr "PHP Speicher-Grenze"
|
542 |
|
543 |
# @ captcha
|
544 |
+
#: bws_menu.php:543
|
545 |
msgid "PHP Max Upload Size"
|
546 |
msgstr "PHP Maximale Upload Größe"
|
547 |
|
548 |
# @ captcha
|
549 |
+
#: bws_menu.php:544
|
550 |
msgid "PHP Max Post Size"
|
551 |
msgstr "PHP Maximale Beitrags-Größe"
|
552 |
|
553 |
# @ captcha
|
554 |
+
#: bws_menu.php:545
|
555 |
msgid "PHP Max Script Execute Time"
|
556 |
msgstr "PHP Maximale Script Ausführungszeit"
|
557 |
|
558 |
# @ captcha
|
559 |
+
#: bws_menu.php:546
|
560 |
msgid "PHP Exif support"
|
561 |
msgstr "PHP Exif Support"
|
562 |
|
563 |
# @ captcha
|
564 |
+
#: bws_menu.php:547
|
565 |
msgid "PHP IPTC support"
|
566 |
msgstr "PHP IPTC Support"
|
567 |
|
568 |
# @ captcha
|
569 |
+
#: bws_menu.php:548
|
570 |
msgid "PHP XML support"
|
571 |
msgstr "PHP XML Support"
|
572 |
|
573 |
# @ captcha
|
574 |
+
#: bws_menu.php:549
|
575 |
msgid "Site URL"
|
576 |
msgstr "Site URL"
|
577 |
|
578 |
# @ captcha
|
579 |
+
#: bws_menu.php:550
|
580 |
msgid "Home URL"
|
581 |
msgstr "Home URL"
|
582 |
|
583 |
# @ captcha
|
584 |
+
#: bws_menu.php:553
|
585 |
msgid "WordPress Version"
|
586 |
msgstr "WordPress Version"
|
587 |
|
588 |
# @ captcha
|
589 |
+
#: bws_menu.php:554
|
590 |
msgid "WordPress DB Version"
|
591 |
msgstr "WordPress DB Version"
|
592 |
|
593 |
# @ captcha
|
594 |
+
#: bws_menu.php:555
|
595 |
msgid "Multisite"
|
596 |
msgstr "Multisite"
|
597 |
|
598 |
# @ captcha
|
599 |
+
#: bws_menu.php:556
|
600 |
msgid "Active Theme"
|
601 |
msgstr "Actives Theme"
|
602 |
|
603 |
# @ captcha
|
604 |
+
#: bws_menu.php:571
|
605 |
msgid "Please enter a valid email address."
|
606 |
msgstr "Bitte geben Sie eine gültige E-Mail-Adresse ein."
|
607 |
|
608 |
# @ captcha
|
609 |
+
#: bws_menu.php:575
|
610 |
msgid "Email with system info is sent to "
|
611 |
msgstr "E-Mail-mit System Informationen wird gesendet an "
|
612 |
|
613 |
# @ captcha
|
614 |
+
#: bws_menu.php:579
|
615 |
msgid "Thank you for contacting us."
|
616 |
msgstr "Vielen Dank für Ihre Kontaktaufnahme."
|
617 |
|
618 |
# @ captcha
|
619 |
+
#: bws_menu.php:612
|
620 |
msgid "Sorry, email message could not be delivered."
|
621 |
msgstr "Sorry, E-Mail konnte nicht zugestellt werden."
|
622 |
|
623 |
+
#: bws_menu.php:620
|
624 |
msgid "Need help?"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: bws_menu.php:621
|
628 |
msgid "Client area"
|
629 |
msgstr ""
|
630 |
|
631 |
# @ captcha
|
632 |
+
#: bws_menu.php:622
|
633 |
+
#: bws_menu.php:933
|
634 |
msgid "System status"
|
635 |
msgstr "System Status"
|
636 |
|
637 |
# @ captcha
|
638 |
+
#: bws_menu.php:627
|
639 |
#, fuzzy
|
640 |
msgid "Plugins"
|
641 |
msgstr "BWS Plugins"
|
642 |
|
643 |
+
#: bws_menu.php:629
|
644 |
msgid "Themes"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: bws_menu.php:634
|
648 |
msgid "All"
|
649 |
msgstr ""
|
650 |
|
651 |
# @ default
|
652 |
+
#: bws_menu.php:635
|
653 |
#, fuzzy
|
654 |
msgid "Installed"
|
655 |
msgstr "Installiere %s"
|
656 |
|
657 |
# @ captcha
|
658 |
+
#: bws_menu.php:636
|
659 |
#, fuzzy
|
660 |
msgid "Recommended"
|
661 |
msgstr "Empfohlene Plugins"
|
662 |
|
663 |
# @ captcha
|
664 |
+
#: bws_menu.php:640
|
665 |
msgid "Installed plugins"
|
666 |
msgstr "Installierte Plugins"
|
667 |
|
668 |
# @ captcha
|
669 |
+
#: bws_menu.php:672
|
670 |
+
#: bws_menu.php:721
|
671 |
msgid "Settings"
|
672 |
msgstr "Einstellungen"
|
673 |
|
674 |
# @ captcha
|
675 |
+
#: bws_menu.php:693
|
676 |
+
#: bws_menu.php:750
|
677 |
#, fuzzy
|
678 |
msgid "Activate this plugin"
|
679 |
msgstr "Aktivierte Plugins"
|
680 |
|
681 |
+
#: bws_menu.php:708
|
682 |
+
#: bws_menu.php:738
|
683 |
+
#: bws_menu.php:784
|
684 |
msgid "Go"
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: bws_menu.php:712
|
688 |
+
#: bws_menu.php:742
|
689 |
+
#: bws_menu.php:788
|
690 |
msgid "DONATE"
|
691 |
msgstr ""
|
692 |
|
693 |
# @ captcha
|
694 |
+
#: bws_menu.php:758
|
695 |
msgid "Recommended plugins"
|
696 |
msgstr "Empfohlene Plugins"
|
697 |
|
698 |
# @ default
|
699 |
+
#: bws_menu.php:796
|
700 |
#, fuzzy
|
701 |
msgid "Install now"
|
702 |
msgstr "Installiere %s"
|
703 |
|
704 |
+
#: bws_menu.php:817
|
705 |
msgid "Try again"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: bws_menu.php:835
|
709 |
#, php-format
|
710 |
msgid "Preview “%s”"
|
711 |
msgstr ""
|
712 |
|
713 |
# @ default
|
714 |
+
#: bws_menu.php:866
|
715 |
#, php-format
|
716 |
msgid "Install %s"
|
717 |
msgstr "Installiere %s"
|
718 |
|
719 |
# @ default
|
720 |
+
#: bws_menu.php:866
|
721 |
#, fuzzy
|
722 |
msgid "Install Now"
|
723 |
msgstr "Installiere %s"
|
724 |
|
725 |
+
#: bws_menu.php:869
|
726 |
#, php-format
|
727 |
msgid "Update to version %s"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: bws_menu.php:869
|
731 |
msgid "Update"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: bws_menu.php:876
|
735 |
#, php-format
|
736 |
msgid "Preview %s"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: bws_menu.php:876
|
740 |
msgid "Preview"
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: bws_menu.php:882
|
744 |
+
#: bws_menu.php:914
|
745 |
#, php-format
|
746 |
msgid "By %s"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: bws_menu.php:888
|
750 |
msgid "Details"
|
751 |
msgstr ""
|
752 |
|
753 |
# @ default
|
754 |
+
#: bws_menu.php:920
|
755 |
#, fuzzy
|
756 |
msgid "Already Installed"
|
757 |
msgstr "Installiere %s"
|
758 |
|
759 |
# @ captcha
|
760 |
+
#: bws_menu.php:936
|
761 |
msgid "Environment"
|
762 |
msgstr "Umgebungsvariable"
|
763 |
|
764 |
# @ captcha
|
765 |
+
#: bws_menu.php:947
|
766 |
msgid "Active Plugins"
|
767 |
msgstr "Aktivierte Plugins"
|
768 |
|
769 |
# @ captcha
|
770 |
+
#: bws_menu.php:960
|
771 |
msgid "Inactive Plugins"
|
772 |
msgstr "Inactive Plugins"
|
773 |
|
774 |
# @ captcha
|
775 |
+
#: bws_menu.php:976
|
776 |
msgid "Send to support"
|
777 |
msgstr "Sende zuzm Support"
|
778 |
|
779 |
# @ captcha
|
780 |
+
#: bws_menu.php:983
|
781 |
msgid "Send to custom email »"
|
782 |
msgstr "Senden Sie eine benutzerdefinierte E-Mail zu »"
|
783 |
|
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,706 @@ 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 |
-
|
|
|
|
|
|
|
|
|
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 +777,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 +1065,6 @@ msgstr "Envoyer un e-mail spécifique »"
|
|
953 |
#~ msgid "Error message for the whole form"
|
954 |
#~ msgstr "Message d'erreur demandant à compléter les champs manquants"
|
955 |
|
956 |
-
#~ msgid "Use shortcode"
|
957 |
-
#~ msgstr "Utiliser le code court"
|
958 |
-
|
959 |
#~ msgid "for this language"
|
960 |
#~ msgstr "pour cette langue"
|
961 |
|
@@ -974,9 +1083,6 @@ msgstr "Envoyer un e-mail spécifique »"
|
|
974 |
#~ msgid "Url"
|
975 |
#~ msgstr "Url"
|
976 |
|
977 |
-
#~ msgid "Save Changes"
|
978 |
-
#~ msgstr "Sauvegarder les modifications"
|
979 |
-
|
980 |
#~ msgid "Contact Form Pro | Extra Settings"
|
981 |
#~ msgstr "Formulaire Pro de Contact | Options supplémentaires"
|
982 |
|
@@ -1061,9 +1167,6 @@ msgstr "Envoyer un e-mail spécifique »"
|
|
1061 |
#~ msgid "Border color"
|
1062 |
#~ msgstr "Couleur des bordures"
|
1063 |
|
1064 |
-
#~ msgid "Submit button"
|
1065 |
-
#~ msgstr "Bouton Envoyer"
|
1066 |
-
|
1067 |
#~ msgid "Width in px, numbers only"
|
1068 |
#~ msgstr "Largeur en px, nombre seulement"
|
1069 |
|
@@ -1122,9 +1225,6 @@ msgstr "Envoyer un e-mail spécifique »"
|
|
1122 |
#~ "Si vous voyez ce MIME c'est que votre navigateur n'accepte pas ce type de "
|
1123 |
#~ "MIME !"
|
1124 |
|
1125 |
-
#~ msgid "FAQ"
|
1126 |
-
#~ msgstr "FAQ"
|
1127 |
-
|
1128 |
#~ msgid "Support"
|
1129 |
#~ msgstr "Support"
|
1130 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-10-09 14:42+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-10-09 14:42+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:39
|
21 |
+
#: bws_functions.php:63
|
22 |
msgid "requires"
|
23 |
msgstr "obligatoire"
|
24 |
|
25 |
+
#: bws_functions.php:41
|
26 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
27 |
msgstr "ou supérieure, c'est pourquoi il a été désactivé! Merci de faire la mise à jour de WordPress puis de ré-essayer."
|
28 |
|
29 |
+
#: bws_functions.php:42
|
30 |
msgid "Back to the WordPress"
|
31 |
msgstr "Retour à WordPress"
|
32 |
|
33 |
+
#: bws_functions.php:44
|
34 |
msgid "Plugins page"
|
35 |
msgstr "Page des extensions"
|
36 |
|
37 |
+
#: bws_functions.php:65
|
38 |
+
msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: bws_functions.php:122
|
42 |
msgid "It’s time to upgrade your"
|
43 |
msgstr "C'est le moment de mettre à jour votre "
|
44 |
|
45 |
+
#: bws_functions.php:122
|
46 |
msgid "to"
|
47 |
msgstr "à"
|
48 |
|
49 |
+
#: bws_functions.php:122
|
50 |
msgid "version!"
|
51 |
msgstr "version"
|
52 |
|
53 |
+
#: bws_functions.php:123
|
54 |
msgid "Extend standard plugin functionality with new great options."
|
55 |
msgstr "Etend les fonctionalités classiques de l'extension avec des nouvelles options."
|
56 |
|
57 |
+
#: bws_functions.php:126
|
58 |
+
#: bws_functions.php:561
|
59 |
msgid "Learn More"
|
60 |
msgstr "En savoir plus"
|
61 |
|
62 |
+
#: bws_functions.php:143
|
63 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
64 |
msgstr "Si notre extension vous satisfait, merci de la notée avec 5 étoiles dans Wordpress"
|
65 |
|
66 |
+
#: bws_functions.php:144
|
67 |
msgid "Rate the plugin"
|
68 |
msgstr "Voter pour l'extension"
|
69 |
|
70 |
+
#: bws_functions.php:147
|
71 |
msgid "If there is something wrong about it, please contact us"
|
72 |
msgstr "Si vous avez une question, n'hésitez pas à nous contacter"
|
73 |
|
74 |
+
#: bws_functions.php:179
|
75 |
+
msgid "Check premium options on the plugin settings page!"
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: bws_functions.php:186
|
79 |
+
#: bws_functions.php:222
|
80 |
msgid "Wrong license key"
|
81 |
msgstr "Clé de licence incorrecte"
|
82 |
|
83 |
+
#: bws_functions.php:216
|
84 |
+
#: bws_functions.php:474
|
85 |
+
#: bws_functions.php:525
|
86 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
87 |
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."
|
88 |
|
89 |
+
#: bws_functions.php:216
|
90 |
+
#: bws_functions.php:474
|
91 |
+
#: bws_functions.php:525
|
92 |
msgid "We are sorry for inconvenience."
|
93 |
msgstr "Nous sommes désolés pour le désagrément."
|
94 |
|
95 |
+
#: bws_functions.php:224
|
96 |
msgid "This license key is bind to another site"
|
97 |
msgstr "La clé de licence correspond à un autre site."
|
98 |
|
99 |
+
#: bws_functions.php:226
|
100 |
+
#: bws_functions.php:384
|
101 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
102 |
msgstr "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de télécharger l'extension manuellement."
|
103 |
|
104 |
+
#: bws_functions.php:228
|
105 |
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
106 |
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"
|
107 |
|
108 |
+
#: bws_functions.php:230
|
109 |
+
#, fuzzy
|
110 |
+
msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
|
111 |
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."
|
112 |
|
113 |
+
#: bws_functions.php:251
|
114 |
+
#: bws_functions.php:273
|
115 |
+
#: bws_functions.php:295
|
116 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
117 |
msgstr "Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension manuellement."
|
118 |
|
119 |
+
#: bws_functions.php:263
|
120 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
121 |
msgstr "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension manuellement."
|
122 |
|
123 |
+
#: bws_functions.php:269
|
124 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
125 |
msgstr "Votre server n'a pas le support du format des archives ZIP ou Phar. Merci de télécharger l'extension manuellement."
|
126 |
|
127 |
+
#: bws_functions.php:276
|
128 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
129 |
msgstr "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension manuellement."
|
130 |
|
131 |
+
#: bws_functions.php:299
|
132 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
133 |
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."
|
134 |
|
135 |
+
#: bws_functions.php:324
|
136 |
msgid "Please, enter Your license key"
|
137 |
msgstr "Merci de saisir votre clé de licence"
|
138 |
|
139 |
+
#: bws_functions.php:348
|
140 |
+
#, fuzzy
|
141 |
+
msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
|
142 |
msgstr "Félicitations! La version PRO de cette extension a été téléchargée et activée avec succès."
|
143 |
|
144 |
+
#: bws_functions.php:350
|
145 |
+
#: bws_functions.php:441
|
146 |
msgid "Please, go to"
|
147 |
msgstr "Merci d'allez à"
|
148 |
|
149 |
+
#: bws_functions.php:350
|
150 |
+
#: bws_functions.php:441
|
151 |
msgid "the setting page"
|
152 |
msgstr "Options supplémentaires"
|
153 |
|
154 |
+
#: bws_functions.php:351
|
155 |
+
#: bws_functions.php:442
|
156 |
msgid "You will be redirected automatically in 5 seconds."
|
157 |
msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
|
158 |
|
159 |
+
#: bws_functions.php:358
|
160 |
+
msgid "Show Pro features"
|
161 |
+
msgstr ""
|
162 |
+
|
163 |
+
#: bws_functions.php:365
|
164 |
msgid "You can download and activate"
|
165 |
msgstr "Vous pouvez télécharger et activer la version "
|
166 |
|
167 |
+
#: bws_functions.php:367
|
168 |
msgid "version of this plugin by entering Your license key."
|
169 |
msgstr " de cette extension en donnant votre clé de licence."
|
170 |
|
171 |
+
#: bws_functions.php:369
|
172 |
+
#: bws_functions.php:410
|
173 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
174 |
msgstr "Vous pouvez trouver votre clé de licence sur votre page personnelle dans la zone cliente en cliquant sur le lien"
|
175 |
|
176 |
+
#: bws_functions.php:371
|
177 |
+
#: bws_functions.php:412
|
178 |
msgid "(your username is the email you specify when purchasing the product)."
|
179 |
msgstr "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de l'achat de l'extension)."
|
180 |
|
181 |
+
#: bws_functions.php:375
|
182 |
+
#: bws_functions.php:659
|
183 |
msgid "or"
|
184 |
msgstr "ou"
|
185 |
|
186 |
+
#: bws_functions.php:375
|
187 |
#, php-format
|
188 |
msgid "Start Your Free %s-Day Trial Now"
|
189 |
msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
|
190 |
|
191 |
+
#: bws_functions.php:381
|
192 |
+
#: bws_functions.php:390
|
193 |
+
#: bws_functions.php:420
|
194 |
+
#: bws_functions.php:428
|
195 |
+
#: bws_menu.php:693
|
196 |
+
#: bws_menu.php:750
|
197 |
msgid "Activate"
|
198 |
msgstr "Activé"
|
199 |
|
200 |
+
#: bws_functions.php:407
|
201 |
+
#: bws_functions.php:500
|
202 |
#, php-format
|
203 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
204 |
msgstr "Afin de pouvoir continuer à utiliser cette extension il est nécessaire d'acheter une licence %s."
|
205 |
|
206 |
+
#: bws_functions.php:408
|
207 |
msgid "After that you can activate it by entering your license key."
|
208 |
msgstr " Après vous pouvez activer cette extension en donnant votre clé de licence."
|
209 |
|
210 |
+
#: bws_functions.php:422
|
211 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
212 |
msgstr "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de télécharger l'extension manuellement."
|
213 |
|
214 |
+
#: bws_functions.php:439
|
215 |
+
#, fuzzy
|
216 |
+
msgid "Congratulations! The Pro license of the plugin is successfully activated."
|
217 |
msgstr "Félicitations! La version PRO de cette extension a été téléchargée et activée avec succès."
|
218 |
|
219 |
+
#: bws_functions.php:480
|
220 |
msgid "Wrong license key."
|
221 |
msgstr "Clé de licence incorrecte."
|
222 |
|
223 |
+
#: bws_functions.php:482
|
224 |
msgid "This license key is bind to another site."
|
225 |
msgstr "La clé de licence correspond à un autre site."
|
226 |
|
227 |
+
#: bws_functions.php:484
|
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 "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."
|
230 |
|
231 |
+
#: bws_functions.php:486
|
232 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
233 |
msgstr "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de télécharger l'extension manuellement."
|
234 |
|
235 |
+
#: bws_functions.php:488
|
236 |
+
#, fuzzy
|
237 |
+
msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
|
238 |
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."
|
239 |
|
240 |
+
#: bws_functions.php:492
|
241 |
+
#, fuzzy
|
242 |
+
msgid "The Pro Trial license key is valid."
|
243 |
msgstr "La clé de licence d'évaluation est valide."
|
244 |
|
245 |
+
#: bws_functions.php:494
|
246 |
msgid "The license key is valid."
|
247 |
msgstr "La clé de licence est valide."
|
248 |
|
249 |
+
#: bws_functions.php:497
|
250 |
msgid "Your license will expire on"
|
251 |
msgstr "Votre licence se termine le "
|
252 |
|
253 |
+
#: bws_functions.php:530
|
254 |
msgid "Please, enter your license key"
|
255 |
msgstr "Merci de saisir votre clé de licence"
|
256 |
|
257 |
+
#: bws_functions.php:543
|
258 |
msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
|
259 |
msgstr "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."
|
260 |
|
261 |
+
#: bws_functions.php:543
|
262 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
263 |
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."
|
264 |
|
265 |
+
#: bws_functions.php:547
|
266 |
msgid "Check license key"
|
267 |
msgstr "Vérifier la clé de licence"
|
268 |
|
269 |
+
#: bws_functions.php:561
|
270 |
msgid "WARNING: Illegal use notification"
|
271 |
msgstr "AVERTISSEMENT : Notification d'utilisation abusive"
|
272 |
|
273 |
+
#: bws_functions.php:561
|
274 |
msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
|
275 |
msgstr "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"
|
276 |
|
277 |
+
#: bws_functions.php:569
|
278 |
+
#, fuzzy
|
279 |
+
msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
|
280 |
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."
|
281 |
|
282 |
+
#: bws_functions.php:571
|
283 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
284 |
msgstr "Votre licence est terminée. Pour continuer à disposer du support rapide et des mises à jour de l'extension vous devez la renouveller."
|
285 |
|
286 |
+
#: bws_functions.php:571
|
287 |
+
#: bws_functions.php:624
|
288 |
+
#: bws_menu.php:669
|
289 |
+
#: bws_menu.php:691
|
290 |
+
#: bws_menu.php:718
|
291 |
+
#: bws_menu.php:748
|
292 |
+
#: bws_menu.php:794
|
293 |
msgid "Learn more"
|
294 |
msgstr "En savoir plus"
|
295 |
|
296 |
+
#: bws_functions.php:581
|
297 |
+
#, fuzzy, php-format
|
298 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
299 |
msgstr "Avertissement : vous utilisez la version d'évaluation de l'extension %s."
|
300 |
|
301 |
+
#: bws_functions.php:583
|
302 |
+
#, fuzzy
|
303 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
304 |
msgstr "Avertissement : vous utilisez la version d'évaluation de l'extension."
|
305 |
|
306 |
+
#: bws_functions.php:586
|
307 |
+
#, fuzzy
|
308 |
+
msgid "The Pro Trial license will expire on"
|
309 |
msgstr "Votre licence se termine le "
|
310 |
|
311 |
+
#: bws_functions.php:624
|
312 |
msgid "You license for"
|
313 |
msgstr "Votre licence pour"
|
314 |
|
315 |
+
#: bws_functions.php:624
|
316 |
msgid "expires on"
|
317 |
msgstr "se termine le"
|
318 |
|
319 |
+
#: bws_functions.php:624
|
320 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
321 |
msgstr "et vous ne diposerez plus du support rapide et des mises à jour."
|
322 |
|
323 |
+
#: bws_functions.php:655
|
324 |
+
#, fuzzy
|
325 |
+
msgid "Thank you for installing"
|
326 |
+
msgstr "Merci de nous avoir contacté."
|
327 |
+
|
328 |
+
#: bws_functions.php:656
|
329 |
+
msgid "Let's get started"
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
+
#: bws_functions.php:657
|
333 |
+
#, fuzzy
|
334 |
+
msgid "Configure Settings"
|
335 |
+
msgstr "Options du formulaire de Contact"
|
336 |
+
|
337 |
+
#: bws_functions.php:660
|
338 |
+
msgid "Add New"
|
339 |
+
msgstr ""
|
340 |
+
|
341 |
+
#: bws_functions.php:664
|
342 |
+
msgid "Close notice"
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
#: bws_functions.php:677
|
346 |
+
msgid "Notice"
|
347 |
+
msgstr ""
|
348 |
+
|
349 |
+
#: bws_functions.php:677
|
350 |
+
msgid "The plugin's settings have been changed."
|
351 |
+
msgstr ""
|
352 |
+
|
353 |
+
#: bws_functions.php:678
|
354 |
+
msgid "Save Changes"
|
355 |
+
msgstr "Sauvegarder les modifications"
|
356 |
+
|
357 |
+
#: bws_functions.php:693
|
358 |
+
msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
|
359 |
+
msgstr ""
|
360 |
+
|
361 |
+
#: bws_functions.php:773
|
362 |
+
#, fuzzy
|
363 |
+
msgid "Add BWS Plugins Shortcode"
|
364 |
+
msgstr "Utiliser le code court"
|
365 |
+
|
366 |
+
#: bws_functions.php:793
|
367 |
+
#, fuzzy
|
368 |
+
msgid "Add shortcode"
|
369 |
+
msgstr "Utiliser le code court"
|
370 |
+
|
371 |
+
#: bws_functions.php:793
|
372 |
+
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
373 |
+
msgstr ""
|
374 |
+
|
375 |
+
#: bws_functions.php:833
|
376 |
msgid "Close"
|
377 |
msgstr "Fermer"
|
378 |
|
379 |
+
#: bws_functions.php:925
|
|
|
380 |
msgid "Restore all plugin settings to defaults"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: bws_functions.php:927
|
|
|
384 |
#, fuzzy
|
385 |
msgid "Restore settings"
|
386 |
msgstr "Options supplémentaires"
|
387 |
|
388 |
+
#: bws_functions.php:938
|
389 |
#, fuzzy
|
390 |
msgid "Are you sure you want to restore all settings by default?"
|
391 |
msgstr "Etes vous sûr de vouloir supprimer cette langue ?"
|
392 |
|
393 |
+
#: bws_functions.php:941
|
394 |
msgid "Yes, restore all settings"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: bws_functions.php:942
|
398 |
#, fuzzy
|
399 |
msgid "No, go back to the settings page"
|
400 |
msgstr "Options supplémentaires"
|
401 |
|
402 |
+
#: bws_functions.php:986
|
403 |
+
#, fuzzy
|
404 |
+
msgid "Plugin"
|
405 |
+
msgstr "Extensions"
|
406 |
+
|
407 |
+
#: bws_functions.php:995
|
408 |
+
#, fuzzy
|
409 |
+
msgid "Shortcode settings"
|
410 |
+
msgstr "Options supplémentaires"
|
411 |
+
|
412 |
+
#: bws_functions.php:1000
|
413 |
+
msgid "The shortcode will be inserted"
|
414 |
+
msgstr ""
|
415 |
+
|
416 |
+
#: bws_functions.php:1005
|
417 |
+
msgid "Insert"
|
418 |
+
msgstr ""
|
419 |
+
|
420 |
+
#: bws_functions.php:1036
|
421 |
+
msgid "Visit Help Center"
|
422 |
+
msgstr ""
|
423 |
+
|
424 |
+
#: bws_functions.php:1041
|
425 |
+
msgid "FAQ"
|
426 |
+
msgstr "FAQ"
|
427 |
+
|
428 |
+
#: bws_functions.php:1047
|
429 |
+
msgid "For more information:"
|
430 |
+
msgstr ""
|
431 |
+
|
432 |
+
#: bws_functions.php:1048
|
433 |
+
msgid "Documentation"
|
434 |
+
msgstr ""
|
435 |
+
|
436 |
+
#: bws_functions.php:1049
|
437 |
+
msgid "Video Instructions"
|
438 |
+
msgstr ""
|
439 |
+
|
440 |
+
#: bws_functions.php:1050
|
441 |
+
#, fuzzy
|
442 |
+
msgid "Submit a Request"
|
443 |
+
msgstr "Bouton Envoyer"
|
444 |
+
|
445 |
+
#: bws_menu.php:506
|
446 |
msgid "Not set"
|
447 |
msgstr "Not set"
|
448 |
|
449 |
+
#: bws_menu.php:508
|
450 |
+
#: bws_menu.php:509
|
451 |
msgid "On"
|
452 |
msgstr "On"
|
453 |
|
454 |
+
#: bws_menu.php:508
|
455 |
+
#: bws_menu.php:509
|
456 |
msgid "Off"
|
457 |
msgstr "Off"
|
458 |
|
459 |
+
#: bws_menu.php:510
|
460 |
+
#: bws_menu.php:511
|
461 |
+
#: bws_menu.php:512
|
462 |
+
#: bws_menu.php:513
|
463 |
+
#: bws_menu.php:514
|
464 |
+
#: bws_menu.php:526
|
465 |
msgid "N/A"
|
466 |
msgstr "N/A"
|
467 |
|
468 |
+
#: bws_menu.php:514
|
469 |
msgid " Mb"
|
470 |
msgstr " Mb"
|
471 |
|
472 |
+
#: bws_menu.php:515
|
473 |
+
#: bws_menu.php:516
|
474 |
+
#: bws_menu.php:517
|
475 |
+
#: bws_menu.php:522
|
476 |
msgid "Yes"
|
477 |
msgstr "Yes"
|
478 |
|
479 |
+
#: bws_menu.php:515
|
480 |
+
#: bws_menu.php:516
|
481 |
+
#: bws_menu.php:517
|
482 |
+
#: bws_menu.php:524
|
483 |
msgid "No"
|
484 |
msgstr "No"
|
485 |
|
486 |
+
#: bws_menu.php:534
|
487 |
msgid "Operating System"
|
488 |
msgstr "Operating System"
|
489 |
|
490 |
+
#: bws_menu.php:535
|
491 |
msgid "Server"
|
492 |
msgstr "Server"
|
493 |
|
494 |
+
#: bws_menu.php:536
|
495 |
msgid "Memory usage"
|
496 |
msgstr "Memory usage"
|
497 |
|
498 |
+
#: bws_menu.php:537
|
499 |
msgid "MYSQL Version"
|
500 |
msgstr "MYSQL Version"
|
501 |
|
502 |
+
#: bws_menu.php:538
|
503 |
msgid "SQL Mode"
|
504 |
msgstr "SQL Mode"
|
505 |
|
506 |
+
#: bws_menu.php:539
|
507 |
msgid "PHP Version"
|
508 |
msgstr "PHP Version"
|
509 |
|
510 |
+
#: bws_menu.php:540
|
511 |
msgid "PHP Safe Mode"
|
512 |
msgstr "PHP Safe Mode"
|
513 |
|
514 |
+
#: bws_menu.php:541
|
515 |
msgid "PHP Allow URL fopen"
|
516 |
msgstr "PHP Allow URL fopen"
|
517 |
|
518 |
+
#: bws_menu.php:542
|
519 |
msgid "PHP Memory Limit"
|
520 |
msgstr "PHP Memory Limit"
|
521 |
|
522 |
+
#: bws_menu.php:543
|
523 |
msgid "PHP Max Upload Size"
|
524 |
msgstr "PHP Max Upload Size"
|
525 |
|
526 |
+
#: bws_menu.php:544
|
527 |
msgid "PHP Max Post Size"
|
528 |
msgstr "PHP Max Post Size"
|
529 |
|
530 |
+
#: bws_menu.php:545
|
531 |
msgid "PHP Max Script Execute Time"
|
532 |
msgstr "PHP Max Script Execute Time"
|
533 |
|
534 |
+
#: bws_menu.php:546
|
535 |
msgid "PHP Exif support"
|
536 |
msgstr "PHP Exif support"
|
537 |
|
538 |
+
#: bws_menu.php:547
|
539 |
msgid "PHP IPTC support"
|
540 |
msgstr "PHP IPTC support"
|
541 |
|
542 |
+
#: bws_menu.php:548
|
543 |
msgid "PHP XML support"
|
544 |
msgstr "PHP XML support"
|
545 |
|
546 |
+
#: bws_menu.php:549
|
547 |
msgid "Site URL"
|
548 |
msgstr "Site URL"
|
549 |
|
550 |
+
#: bws_menu.php:550
|
551 |
msgid "Home URL"
|
552 |
msgstr "Home URL"
|
553 |
|
554 |
+
#: bws_menu.php:553
|
555 |
msgid "WordPress Version"
|
556 |
msgstr "WordPress Version"
|
557 |
|
558 |
+
#: bws_menu.php:554
|
559 |
msgid "WordPress DB Version"
|
560 |
msgstr "WordPress DB Version"
|
561 |
|
562 |
+
#: bws_menu.php:555
|
563 |
msgid "Multisite"
|
564 |
msgstr "Multisite"
|
565 |
|
566 |
+
#: bws_menu.php:556
|
567 |
msgid "Active Theme"
|
568 |
msgstr "Active Theme"
|
569 |
|
570 |
+
#: bws_menu.php:571
|
571 |
msgid "Please enter a valid email address."
|
572 |
msgstr "Merci de saisir une adresse e-mail valide."
|
573 |
|
574 |
+
#: bws_menu.php:575
|
575 |
msgid "Email with system info is sent to "
|
576 |
msgstr "Le courriel avec les informations système est envoyé à"
|
577 |
|
578 |
+
#: bws_menu.php:579
|
579 |
msgid "Thank you for contacting us."
|
580 |
msgstr "Merci de nous avoir contacté."
|
581 |
|
582 |
+
#: bws_menu.php:612
|
583 |
msgid "Sorry, email message could not be delivered."
|
584 |
msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
|
585 |
|
586 |
+
#: bws_menu.php:620
|
587 |
msgid "Need help?"
|
588 |
msgstr "Besoin d'aide ?"
|
589 |
|
590 |
+
#: bws_menu.php:621
|
591 |
msgid "Client area"
|
592 |
msgstr "Espace client"
|
593 |
|
594 |
+
#: bws_menu.php:622
|
595 |
+
#: bws_menu.php:933
|
596 |
msgid "System status"
|
597 |
msgstr "System status"
|
598 |
|
599 |
+
#: bws_menu.php:627
|
600 |
msgid "Plugins"
|
601 |
msgstr "Extensions"
|
602 |
|
603 |
+
#: bws_menu.php:629
|
604 |
msgid "Themes"
|
605 |
msgstr "Thèmes"
|
606 |
|
607 |
+
#: bws_menu.php:634
|
608 |
msgid "All"
|
609 |
msgstr "Tous"
|
610 |
|
611 |
+
#: bws_menu.php:635
|
612 |
msgid "Installed"
|
613 |
msgstr "Installé"
|
614 |
|
615 |
+
#: bws_menu.php:636
|
616 |
msgid "Recommended"
|
617 |
msgstr "Recommandé"
|
618 |
|
619 |
+
#: bws_menu.php:640
|
620 |
msgid "Installed plugins"
|
621 |
msgstr "Plugin installé"
|
622 |
|
623 |
+
#: bws_menu.php:672
|
624 |
+
#: bws_menu.php:721
|
625 |
msgid "Settings"
|
626 |
msgstr "Réglages"
|
627 |
|
628 |
+
#: bws_menu.php:693
|
629 |
+
#: bws_menu.php:750
|
630 |
msgid "Activate this plugin"
|
631 |
msgstr "Activer cette extension"
|
632 |
|
633 |
+
#: bws_menu.php:708
|
634 |
+
#: bws_menu.php:738
|
635 |
+
#: bws_menu.php:784
|
636 |
msgid "Go"
|
637 |
msgstr "Passez"
|
638 |
|
639 |
+
#: bws_menu.php:712
|
640 |
+
#: bws_menu.php:742
|
641 |
+
#: bws_menu.php:788
|
642 |
msgid "DONATE"
|
643 |
msgstr "Faire un don"
|
644 |
|
645 |
+
#: bws_menu.php:758
|
646 |
msgid "Recommended plugins"
|
647 |
msgstr "Plugin recommandé"
|
648 |
|
649 |
+
#: bws_menu.php:796
|
650 |
msgid "Install now"
|
651 |
msgstr "Installer maintenant"
|
652 |
|
653 |
+
#: bws_menu.php:817
|
654 |
msgid "Try again"
|
655 |
msgstr "Essayer de nouveau"
|
656 |
|
657 |
+
#: bws_menu.php:835
|
658 |
#, php-format
|
659 |
msgid "Preview “%s”"
|
660 |
msgstr "Pré-visualiser “%s”"
|
661 |
|
662 |
+
#: bws_menu.php:866
|
663 |
#, php-format
|
664 |
msgid "Install %s"
|
665 |
msgstr "%s installé"
|
666 |
|
667 |
+
#: bws_menu.php:866
|
668 |
msgid "Install Now"
|
669 |
msgstr "Installa Ora"
|
670 |
|
671 |
+
#: bws_menu.php:869
|
672 |
#, php-format
|
673 |
msgid "Update to version %s"
|
674 |
msgstr "Mettre à jour pour la version %s"
|
675 |
|
676 |
+
#: bws_menu.php:869
|
677 |
msgid "Update"
|
678 |
msgstr "Mettre à jour"
|
679 |
|
680 |
+
#: bws_menu.php:876
|
681 |
#, php-format
|
682 |
msgid "Preview %s"
|
683 |
msgstr "Pré-visualiser %s"
|
684 |
|
685 |
+
#: bws_menu.php:876
|
686 |
msgid "Preview"
|
687 |
msgstr "Pré-visualiser"
|
688 |
|
689 |
+
#: bws_menu.php:882
|
690 |
+
#: bws_menu.php:914
|
691 |
#, php-format
|
692 |
msgid "By %s"
|
693 |
msgstr "Par %s"
|
694 |
|
695 |
+
#: bws_menu.php:888
|
696 |
msgid "Details"
|
697 |
msgstr "Détails"
|
698 |
|
699 |
+
#: bws_menu.php:920
|
700 |
msgid "Already Installed"
|
701 |
msgstr "Déjà installé"
|
702 |
|
703 |
+
#: bws_menu.php:936
|
704 |
msgid "Environment"
|
705 |
msgstr "Environment"
|
706 |
|
707 |
+
#: bws_menu.php:947
|
708 |
msgid "Active Plugins"
|
709 |
msgstr "Plugin actifs"
|
710 |
|
711 |
+
#: bws_menu.php:960
|
712 |
msgid "Inactive Plugins"
|
713 |
msgstr "Plugin inactifs"
|
714 |
|
715 |
+
#: bws_menu.php:976
|
716 |
msgid "Send to support"
|
717 |
msgstr "Envoyé au support"
|
718 |
|
719 |
+
#: bws_menu.php:983
|
720 |
msgid "Send to custom email »"
|
721 |
msgstr "Envoyer un e-mail spécifique »"
|
722 |
|
777 |
#~ msgid "installed"
|
778 |
#~ msgstr "%s installé"
|
779 |
|
|
|
|
|
|
|
780 |
#~ msgid "Contact Form"
|
781 |
#~ msgstr "Formulaire de Contact"
|
782 |
|
1065 |
#~ msgid "Error message for the whole form"
|
1066 |
#~ msgstr "Message d'erreur demandant à compléter les champs manquants"
|
1067 |
|
|
|
|
|
|
|
1068 |
#~ msgid "for this language"
|
1069 |
#~ msgstr "pour cette langue"
|
1070 |
|
1083 |
#~ msgid "Url"
|
1084 |
#~ msgstr "Url"
|
1085 |
|
|
|
|
|
|
|
1086 |
#~ msgid "Contact Form Pro | Extra Settings"
|
1087 |
#~ msgstr "Formulaire Pro de Contact | Options supplémentaires"
|
1088 |
|
1167 |
#~ msgid "Border color"
|
1168 |
#~ msgstr "Couleur des bordures"
|
1169 |
|
|
|
|
|
|
|
1170 |
#~ msgid "Width in px, numbers only"
|
1171 |
#~ msgstr "Largeur en px, nombre seulement"
|
1172 |
|
1225 |
#~ "Si vous voyez ce MIME c'est que votre navigateur n'accepte pas ce type de "
|
1226 |
#~ "MIME !"
|
1227 |
|
|
|
|
|
|
|
1228 |
#~ msgid "Support"
|
1229 |
#~ msgstr "Support"
|
1230 |
|
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,775 @@ 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 |
-
|
|
|
|
|
|
|
|
|
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 |
|
@@ -781,9 +893,6 @@ msgstr "Invia a una email personalizzata »"
|
|
781 |
#~ msgid "Words"
|
782 |
#~ msgstr "Parole"
|
783 |
# @ captcha
|
784 |
-
#~ msgid "FAQ"
|
785 |
-
#~ msgstr "FAQ"
|
786 |
-
# @ captcha
|
787 |
#~ msgid "Support"
|
788 |
#~ msgstr "Supporto"
|
789 |
# @ captcha
|
@@ -843,9 +952,6 @@ msgstr "Invia a una email personalizzata »"
|
|
843 |
# @ captcha
|
844 |
#~ msgid "CAPTCHA complexity level"
|
845 |
#~ msgstr "Livello complessità CAPTCHA"
|
846 |
-
# @ default
|
847 |
-
#~ msgid "Save Changes"
|
848 |
-
#~ msgstr "Salva le modifiche"
|
849 |
# @ captcha
|
850 |
#~ msgid "ERROR"
|
851 |
#~ msgstr "ERRORE"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-10-09 14:42+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-10-09 14:42+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:39
|
22 |
+
#: bws_functions.php:63
|
23 |
msgid "requires"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: bws_functions.php:41
|
27 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: bws_functions.php:42
|
31 |
msgid "Back to the WordPress"
|
32 |
msgstr ""
|
33 |
|
34 |
# @ bestwebsoft
|
35 |
+
#: bws_functions.php:44
|
36 |
#, fuzzy
|
37 |
msgid "Plugins page"
|
38 |
msgstr "Plugin Pro"
|
39 |
|
40 |
+
#: bws_functions.php:65
|
41 |
+
msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
#: bws_functions.php:122
|
45 |
msgid "It’s time to upgrade your"
|
46 |
msgstr ""
|
47 |
|
48 |
# @ captcha
|
49 |
+
#: bws_functions.php:122
|
50 |
#, fuzzy
|
51 |
msgid "to"
|
52 |
msgstr "due"
|
53 |
|
54 |
# @ bestwebsoft
|
55 |
+
#: bws_functions.php:122
|
56 |
#, fuzzy
|
57 |
msgid "version!"
|
58 |
msgstr "Versione PHP"
|
59 |
|
60 |
+
#: bws_functions.php:123
|
61 |
msgid "Extend standard plugin functionality with new great options."
|
62 |
msgstr ""
|
63 |
|
64 |
# @ bestwebsoft
|
65 |
+
#: bws_functions.php:126
|
66 |
+
#: bws_functions.php:561
|
67 |
#, fuzzy
|
68 |
msgid "Learn More"
|
69 |
msgstr "Leggi tutto"
|
70 |
|
71 |
+
#: bws_functions.php:143
|
72 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
73 |
msgstr ""
|
74 |
|
75 |
# @ bestwebsoft
|
76 |
+
#: bws_functions.php:144
|
77 |
#, fuzzy
|
78 |
msgid "Rate the plugin"
|
79 |
msgstr "Plugin attivi"
|
80 |
|
81 |
# @ bestwebsoft
|
82 |
+
#: bws_functions.php:147
|
83 |
#, fuzzy
|
84 |
msgid "If there is something wrong about it, please contact us"
|
85 |
msgstr "Se hai domande, contattaci tramite"
|
86 |
|
87 |
+
#: bws_functions.php:179
|
88 |
+
msgid "Check premium options on the plugin settings page!"
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: bws_functions.php:186
|
92 |
+
#: bws_functions.php:222
|
93 |
msgid "Wrong license key"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: bws_functions.php:216
|
97 |
+
#: bws_functions.php:474
|
98 |
+
#: bws_functions.php:525
|
99 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: bws_functions.php:216
|
103 |
+
#: bws_functions.php:474
|
104 |
+
#: bws_functions.php:525
|
105 |
msgid "We are sorry for inconvenience."
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: bws_functions.php:224
|
109 |
msgid "This license key is bind to another site"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: bws_functions.php:226
|
113 |
+
#: bws_functions.php:384
|
114 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: bws_functions.php:228
|
118 |
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: bws_functions.php:230
|
122 |
+
msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: bws_functions.php:251
|
126 |
+
#: bws_functions.php:273
|
127 |
+
#: bws_functions.php:295
|
128 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: bws_functions.php:263
|
132 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: bws_functions.php:269
|
136 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: bws_functions.php:276
|
140 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: bws_functions.php:299
|
144 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: bws_functions.php:324
|
148 |
msgid "Please, enter Your license key"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: bws_functions.php:348
|
152 |
+
msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: bws_functions.php:350
|
156 |
+
#: bws_functions.php:441
|
157 |
msgid "Please, go to"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: bws_functions.php:350
|
161 |
+
#: bws_functions.php:441
|
162 |
msgid "the setting page"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: bws_functions.php:351
|
166 |
+
#: bws_functions.php:442
|
167 |
msgid "You will be redirected automatically in 5 seconds."
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: bws_functions.php:358
|
171 |
+
msgid "Show Pro features"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: bws_functions.php:365
|
175 |
msgid "You can download and activate"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: bws_functions.php:367
|
179 |
msgid "version of this plugin by entering Your license key."
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: bws_functions.php:369
|
183 |
+
#: bws_functions.php:410
|
184 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: bws_functions.php:371
|
188 |
+
#: bws_functions.php:412
|
189 |
msgid "(your username is the email you specify when purchasing the product)."
|
190 |
msgstr ""
|
191 |
|
192 |
# @ captcha
|
193 |
+
#: bws_functions.php:375
|
194 |
+
#: bws_functions.php:659
|
195 |
#, fuzzy
|
196 |
msgid "or"
|
197 |
msgstr "quattro"
|
198 |
|
199 |
+
#: bws_functions.php:375
|
200 |
#, php-format
|
201 |
msgid "Start Your Free %s-Day Trial Now"
|
202 |
msgstr ""
|
203 |
|
204 |
# @ bestwebsoft
|
205 |
+
#: bws_functions.php:381
|
206 |
+
#: bws_functions.php:390
|
207 |
+
#: bws_functions.php:420
|
208 |
+
#: bws_functions.php:428
|
209 |
+
#: bws_menu.php:693
|
210 |
+
#: bws_menu.php:750
|
211 |
#, fuzzy
|
212 |
msgid "Activate"
|
213 |
msgstr "Plugin attivi"
|
214 |
|
215 |
+
#: bws_functions.php:407
|
216 |
+
#: bws_functions.php:500
|
217 |
#, php-format
|
218 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: bws_functions.php:408
|
222 |
msgid "After that you can activate it by entering your license key."
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: bws_functions.php:422
|
226 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: bws_functions.php:439
|
230 |
+
msgid "Congratulations! The Pro license of the plugin is successfully activated."
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: bws_functions.php:480
|
234 |
msgid "Wrong license key."
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: bws_functions.php:482
|
238 |
msgid "This license key is bind to another site."
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: bws_functions.php:484
|
242 |
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."
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: bws_functions.php:486
|
246 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: bws_functions.php:488
|
250 |
+
msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: bws_functions.php:492
|
254 |
+
msgid "The Pro Trial license key is valid."
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: bws_functions.php:494
|
258 |
msgid "The license key is valid."
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: bws_functions.php:497
|
262 |
msgid "Your license will expire on"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: bws_functions.php:530
|
266 |
msgid "Please, enter your license key"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: bws_functions.php:543
|
270 |
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"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: bws_functions.php:543
|
274 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: bws_functions.php:547
|
278 |
msgid "Check license key"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: bws_functions.php:561
|
282 |
msgid "WARNING: Illegal use notification"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: bws_functions.php:561
|
286 |
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."
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: bws_functions.php:569
|
290 |
+
msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: bws_functions.php:571
|
294 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
295 |
msgstr ""
|
296 |
|
297 |
# @ bestwebsoft
|
298 |
+
#: bws_functions.php:571
|
299 |
+
#: bws_functions.php:624
|
300 |
+
#: bws_menu.php:669
|
301 |
+
#: bws_menu.php:691
|
302 |
+
#: bws_menu.php:718
|
303 |
+
#: bws_menu.php:748
|
304 |
+
#: bws_menu.php:794
|
305 |
#, fuzzy
|
306 |
msgid "Learn more"
|
307 |
msgstr "Leggi tutto"
|
308 |
|
309 |
+
#: bws_functions.php:581
|
310 |
#, php-format
|
311 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: bws_functions.php:583
|
315 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: bws_functions.php:586
|
319 |
+
msgid "The Pro Trial license will expire on"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: bws_functions.php:624
|
323 |
msgid "You license for"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: bws_functions.php:624
|
327 |
msgid "expires on"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: bws_functions.php:624
|
331 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
332 |
msgstr ""
|
333 |
|
334 |
+
# @ bestwebsoft
|
335 |
+
#: bws_functions.php:655
|
336 |
+
#, fuzzy
|
337 |
+
msgid "Thank you for installing"
|
338 |
+
msgstr "Grazie per averci contattato."
|
339 |
+
|
340 |
+
#: bws_functions.php:656
|
341 |
+
msgid "Let's get started"
|
342 |
+
msgstr ""
|
343 |
+
|
344 |
+
# @ bestwebsoft
|
345 |
+
# @ captcha
|
346 |
+
#: bws_functions.php:657
|
347 |
+
#, fuzzy
|
348 |
+
msgid "Configure Settings"
|
349 |
+
msgstr "Impostazioni"
|
350 |
+
|
351 |
+
#: bws_functions.php:660
|
352 |
+
msgid "Add New"
|
353 |
+
msgstr ""
|
354 |
+
|
355 |
+
#: bws_functions.php:664
|
356 |
+
msgid "Close notice"
|
357 |
+
msgstr ""
|
358 |
+
|
359 |
+
#: bws_functions.php:677
|
360 |
+
msgid "Notice"
|
361 |
+
msgstr ""
|
362 |
+
|
363 |
+
#: bws_functions.php:677
|
364 |
+
msgid "The plugin's settings have been changed."
|
365 |
+
msgstr ""
|
366 |
+
|
367 |
+
# @ default
|
368 |
+
#: bws_functions.php:678
|
369 |
+
msgid "Save Changes"
|
370 |
+
msgstr "Salva le modifiche"
|
371 |
+
|
372 |
+
#: bws_functions.php:693
|
373 |
+
msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
|
374 |
+
msgstr ""
|
375 |
+
|
376 |
+
#: bws_functions.php:773
|
377 |
+
msgid "Add BWS Plugins Shortcode"
|
378 |
+
msgstr ""
|
379 |
+
|
380 |
+
#: bws_functions.php:793
|
381 |
+
msgid "Add shortcode"
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
+
#: bws_functions.php:793
|
385 |
+
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
386 |
+
msgstr ""
|
387 |
+
|
388 |
+
#: bws_functions.php:833
|
389 |
msgid "Close"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: bws_functions.php:925
|
|
|
393 |
msgid "Restore all plugin settings to defaults"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: bws_functions.php:927
|
|
|
397 |
msgid "Restore settings"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: bws_functions.php:938
|
401 |
msgid "Are you sure you want to restore all settings by default?"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: bws_functions.php:941
|
405 |
msgid "Yes, restore all settings"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: bws_functions.php:942
|
409 |
msgid "No, go back to the settings page"
|
410 |
msgstr ""
|
411 |
|
412 |
# @ bestwebsoft
|
413 |
+
#: bws_functions.php:986
|
414 |
+
#, fuzzy
|
415 |
+
msgid "Plugin"
|
416 |
+
msgstr "Plugin Pro"
|
417 |
+
|
418 |
+
# @ bestwebsoft
|
419 |
+
# @ captcha
|
420 |
+
#: bws_functions.php:995
|
421 |
+
#, fuzzy
|
422 |
+
msgid "Shortcode settings"
|
423 |
+
msgstr "Impostazioni"
|
424 |
+
|
425 |
+
#: bws_functions.php:1000
|
426 |
+
msgid "The shortcode will be inserted"
|
427 |
+
msgstr ""
|
428 |
+
|
429 |
+
#: bws_functions.php:1005
|
430 |
+
msgid "Insert"
|
431 |
+
msgstr ""
|
432 |
+
|
433 |
+
#: bws_functions.php:1036
|
434 |
+
msgid "Visit Help Center"
|
435 |
+
msgstr ""
|
436 |
+
|
437 |
+
# @ captcha
|
438 |
+
#: bws_functions.php:1041
|
439 |
+
msgid "FAQ"
|
440 |
+
msgstr "FAQ"
|
441 |
+
|
442 |
+
#: bws_functions.php:1047
|
443 |
+
msgid "For more information:"
|
444 |
+
msgstr ""
|
445 |
+
|
446 |
+
#: bws_functions.php:1048
|
447 |
+
msgid "Documentation"
|
448 |
+
msgstr ""
|
449 |
+
|
450 |
+
#: bws_functions.php:1049
|
451 |
+
msgid "Video Instructions"
|
452 |
+
msgstr ""
|
453 |
+
|
454 |
+
#: bws_functions.php:1050
|
455 |
+
msgid "Submit a Request"
|
456 |
+
msgstr ""
|
457 |
+
|
458 |
+
# @ bestwebsoft
|
459 |
+
#: bws_menu.php:506
|
460 |
msgid "Not set"
|
461 |
msgstr "Non impostato"
|
462 |
|
463 |
# @ bestwebsoft
|
464 |
+
#: bws_menu.php:508
|
465 |
+
#: bws_menu.php:509
|
466 |
msgid "On"
|
467 |
msgstr "Abilitato"
|
468 |
|
469 |
# @ bestwebsoft
|
470 |
+
#: bws_menu.php:508
|
471 |
+
#: bws_menu.php:509
|
472 |
msgid "Off"
|
473 |
msgstr "Disabilitato"
|
474 |
|
475 |
# @ bestwebsoft
|
476 |
+
#: bws_menu.php:510
|
477 |
+
#: bws_menu.php:511
|
478 |
+
#: bws_menu.php:512
|
479 |
+
#: bws_menu.php:513
|
480 |
+
#: bws_menu.php:514
|
481 |
+
#: bws_menu.php:526
|
482 |
msgid "N/A"
|
483 |
msgstr "Non disponibile"
|
484 |
|
485 |
# @ bestwebsoft
|
486 |
+
#: bws_menu.php:514
|
487 |
msgid " Mb"
|
488 |
msgstr "Mb"
|
489 |
|
490 |
# @ bestwebsoft
|
491 |
+
#: bws_menu.php:515
|
492 |
+
#: bws_menu.php:516
|
493 |
+
#: bws_menu.php:517
|
494 |
+
#: bws_menu.php:522
|
495 |
msgid "Yes"
|
496 |
msgstr "Sì"
|
497 |
|
498 |
# @ bestwebsoft
|
499 |
+
#: bws_menu.php:515
|
500 |
+
#: bws_menu.php:516
|
501 |
+
#: bws_menu.php:517
|
502 |
+
#: bws_menu.php:524
|
503 |
msgid "No"
|
504 |
msgstr "No"
|
505 |
|
506 |
# @ bestwebsoft
|
507 |
+
#: bws_menu.php:534
|
508 |
msgid "Operating System"
|
509 |
msgstr "Sistema operativo"
|
510 |
|
511 |
# @ bestwebsoft
|
512 |
+
#: bws_menu.php:535
|
513 |
msgid "Server"
|
514 |
msgstr "Server"
|
515 |
|
516 |
# @ bestwebsoft
|
517 |
+
#: bws_menu.php:536
|
518 |
msgid "Memory usage"
|
519 |
msgstr "Utilizzo memoria"
|
520 |
|
521 |
# @ bestwebsoft
|
522 |
+
#: bws_menu.php:537
|
523 |
msgid "MYSQL Version"
|
524 |
msgstr "Versione MYSQL"
|
525 |
|
526 |
# @ bestwebsoft
|
527 |
+
#: bws_menu.php:538
|
528 |
msgid "SQL Mode"
|
529 |
msgstr "Modalità SQL"
|
530 |
|
531 |
# @ bestwebsoft
|
532 |
+
#: bws_menu.php:539
|
533 |
msgid "PHP Version"
|
534 |
msgstr "Versione PHP"
|
535 |
|
536 |
# @ bestwebsoft
|
537 |
+
#: bws_menu.php:540
|
538 |
msgid "PHP Safe Mode"
|
539 |
msgstr "Safe Mode PHP"
|
540 |
|
541 |
# @ bestwebsoft
|
542 |
+
#: bws_menu.php:541
|
543 |
msgid "PHP Allow URL fopen"
|
544 |
msgstr "Consenti URL fopen PHP"
|
545 |
|
546 |
# @ bestwebsoft
|
547 |
+
#: bws_menu.php:542
|
548 |
msgid "PHP Memory Limit"
|
549 |
msgstr "Limite di memoria PHP"
|
550 |
|
551 |
# @ bestwebsoft
|
552 |
+
#: bws_menu.php:543
|
553 |
msgid "PHP Max Upload Size"
|
554 |
msgstr "Dimensione upload massima PHP"
|
555 |
|
556 |
# @ bestwebsoft
|
557 |
+
#: bws_menu.php:544
|
558 |
msgid "PHP Max Post Size"
|
559 |
msgstr "Dimensione massima Post PHP"
|
560 |
|
561 |
# @ bestwebsoft
|
562 |
+
#: bws_menu.php:545
|
563 |
msgid "PHP Max Script Execute Time"
|
564 |
msgstr "Tempo massimo di esecuzione PHP"
|
565 |
|
566 |
# @ bestwebsoft
|
567 |
+
#: bws_menu.php:546
|
568 |
msgid "PHP Exif support"
|
569 |
msgstr "Supporto Exif PHP"
|
570 |
|
571 |
# @ bestwebsoft
|
572 |
+
#: bws_menu.php:547
|
573 |
msgid "PHP IPTC support"
|
574 |
msgstr "Supporto IPTC PHP"
|
575 |
|
576 |
# @ bestwebsoft
|
577 |
+
#: bws_menu.php:548
|
578 |
msgid "PHP XML support"
|
579 |
msgstr "Supporto XML PHP"
|
580 |
|
581 |
# @ bestwebsoft
|
582 |
+
#: bws_menu.php:549
|
583 |
msgid "Site URL"
|
584 |
msgstr "URL sito"
|
585 |
|
586 |
# @ bestwebsoft
|
587 |
+
#: bws_menu.php:550
|
588 |
msgid "Home URL"
|
589 |
msgstr "URL home"
|
590 |
|
591 |
# @ bestwebsoft
|
592 |
+
#: bws_menu.php:553
|
593 |
msgid "WordPress Version"
|
594 |
msgstr "Versione WordPress"
|
595 |
|
596 |
# @ bestwebsoft
|
597 |
+
#: bws_menu.php:554
|
598 |
msgid "WordPress DB Version"
|
599 |
msgstr "Versione DB WordPress"
|
600 |
|
601 |
# @ bestwebsoft
|
602 |
+
#: bws_menu.php:555
|
603 |
msgid "Multisite"
|
604 |
msgstr "Multisito"
|
605 |
|
606 |
# @ bestwebsoft
|
607 |
+
#: bws_menu.php:556
|
608 |
msgid "Active Theme"
|
609 |
msgstr "Tema attivo"
|
610 |
|
611 |
# @ bestwebsoft
|
612 |
+
#: bws_menu.php:571
|
613 |
msgid "Please enter a valid email address."
|
614 |
msgstr "Per favore inserisci un indirizzo e-mail valido."
|
615 |
|
616 |
# @ bestwebsoft
|
617 |
+
#: bws_menu.php:575
|
618 |
msgid "Email with system info is sent to "
|
619 |
msgstr "Email con informazioni di sistema spedita a "
|
620 |
|
621 |
# @ bestwebsoft
|
622 |
+
#: bws_menu.php:579
|
623 |
msgid "Thank you for contacting us."
|
624 |
msgstr "Grazie per averci contattato."
|
625 |
|
626 |
# @ bestwebsoft
|
627 |
+
#: bws_menu.php:612
|
628 |
msgid "Sorry, email message could not be delivered."
|
629 |
msgstr "Spiacenti, il messaggio email non può essere inviato."
|
630 |
|
631 |
+
#: bws_menu.php:620
|
632 |
msgid "Need help?"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: bws_menu.php:621
|
636 |
msgid "Client area"
|
637 |
msgstr ""
|
638 |
|
639 |
# @ bestwebsoft
|
640 |
+
#: bws_menu.php:622
|
641 |
+
#: bws_menu.php:933
|
642 |
msgid "System status"
|
643 |
msgstr "Stato sistema"
|
644 |
|
645 |
# @ bestwebsoft
|
646 |
+
#: bws_menu.php:627
|
647 |
#, fuzzy
|
648 |
msgid "Plugins"
|
649 |
msgstr "Plugin Pro"
|
650 |
|
651 |
+
#: bws_menu.php:629
|
652 |
msgid "Themes"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: bws_menu.php:634
|
656 |
msgid "All"
|
657 |
msgstr ""
|
658 |
|
659 |
# @ default
|
660 |
+
#: bws_menu.php:635
|
661 |
#, fuzzy
|
662 |
msgid "Installed"
|
663 |
msgstr "Installa %s"
|
664 |
|
665 |
# @ bestwebsoft
|
666 |
+
#: bws_menu.php:636
|
667 |
#, fuzzy
|
668 |
msgid "Recommended"
|
669 |
msgstr "Plugin raccomandati"
|
670 |
|
671 |
# @ bestwebsoft
|
672 |
+
#: bws_menu.php:640
|
673 |
msgid "Installed plugins"
|
674 |
msgstr "Plugin installati"
|
675 |
|
676 |
# @ bestwebsoft
|
677 |
# @ captcha
|
678 |
+
#: bws_menu.php:672
|
679 |
+
#: bws_menu.php:721
|
680 |
msgid "Settings"
|
681 |
msgstr "Impostazioni"
|
682 |
|
683 |
# @ bestwebsoft
|
684 |
+
#: bws_menu.php:693
|
685 |
+
#: bws_menu.php:750
|
686 |
#, fuzzy
|
687 |
msgid "Activate this plugin"
|
688 |
msgstr "Plugin attivi"
|
689 |
|
690 |
+
#: bws_menu.php:708
|
691 |
+
#: bws_menu.php:738
|
692 |
+
#: bws_menu.php:784
|
693 |
msgid "Go"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: bws_menu.php:712
|
697 |
+
#: bws_menu.php:742
|
698 |
+
#: bws_menu.php:788
|
699 |
msgid "DONATE"
|
700 |
msgstr ""
|
701 |
|
702 |
# @ bestwebsoft
|
703 |
+
#: bws_menu.php:758
|
704 |
msgid "Recommended plugins"
|
705 |
msgstr "Plugin raccomandati"
|
706 |
|
707 |
# @ default
|
708 |
+
#: bws_menu.php:796
|
709 |
#, fuzzy
|
710 |
msgid "Install now"
|
711 |
msgstr "Installa %s"
|
712 |
|
713 |
+
#: bws_menu.php:817
|
714 |
msgid "Try again"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: bws_menu.php:835
|
718 |
#, php-format
|
719 |
msgid "Preview “%s”"
|
720 |
msgstr ""
|
721 |
|
722 |
# @ default
|
723 |
+
#: bws_menu.php:866
|
724 |
#, php-format
|
725 |
msgid "Install %s"
|
726 |
msgstr "Installa %s"
|
727 |
|
728 |
# @ default
|
729 |
+
#: bws_menu.php:866
|
730 |
#, fuzzy
|
731 |
msgid "Install Now"
|
732 |
msgstr "Installa %s"
|
733 |
|
734 |
+
#: bws_menu.php:869
|
735 |
#, php-format
|
736 |
msgid "Update to version %s"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: bws_menu.php:869
|
740 |
msgid "Update"
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: bws_menu.php:876
|
744 |
#, php-format
|
745 |
msgid "Preview %s"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: bws_menu.php:876
|
749 |
msgid "Preview"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: bws_menu.php:882
|
753 |
+
#: bws_menu.php:914
|
754 |
#, php-format
|
755 |
msgid "By %s"
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: bws_menu.php:888
|
759 |
msgid "Details"
|
760 |
msgstr ""
|
761 |
|
762 |
# @ default
|
763 |
+
#: bws_menu.php:920
|
764 |
#, fuzzy
|
765 |
msgid "Already Installed"
|
766 |
msgstr "Installa %s"
|
767 |
|
768 |
# @ bestwebsoft
|
769 |
+
#: bws_menu.php:936
|
770 |
msgid "Environment"
|
771 |
msgstr "Ambiente"
|
772 |
|
773 |
# @ bestwebsoft
|
774 |
+
#: bws_menu.php:947
|
775 |
msgid "Active Plugins"
|
776 |
msgstr "Plugin attivi"
|
777 |
|
778 |
# @ bestwebsoft
|
779 |
+
#: bws_menu.php:960
|
780 |
msgid "Inactive Plugins"
|
781 |
msgstr "Plugin inattivi"
|
782 |
|
783 |
# @ bestwebsoft
|
784 |
+
#: bws_menu.php:976
|
785 |
msgid "Send to support"
|
786 |
msgstr "Invia al supporto"
|
787 |
|
788 |
# @ bestwebsoft
|
789 |
+
#: bws_menu.php:983
|
790 |
msgid "Send to custom email »"
|
791 |
msgstr "Invia a una email personalizzata »"
|
792 |
|
893 |
#~ msgid "Words"
|
894 |
#~ msgstr "Parole"
|
895 |
# @ captcha
|
|
|
|
|
|
|
896 |
#~ msgid "Support"
|
897 |
#~ msgstr "Supporto"
|
898 |
# @ captcha
|
952 |
# @ captcha
|
953 |
#~ msgid "CAPTCHA complexity level"
|
954 |
#~ msgstr "Livello complessità CAPTCHA"
|
|
|
|
|
|
|
955 |
# @ captcha
|
956 |
#~ msgid "ERROR"
|
957 |
#~ msgstr "ERRORE"
|
bws_menu/languages/bestwebsoft-ja.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-ja.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: foken <foken@gmx.com>\n"
|
9 |
"Language: ja_JP\n"
|
@@ -16,608 +16,715 @@ 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 |
-
|
|
|
|
|
|
|
|
|
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 +765,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 +1050,6 @@ msgstr "カスタムEメールに送信»"
|
|
946 |
#~ msgid "Error message for the whole form"
|
947 |
#~ msgstr "全体フォーム用のエラーメッセージ"
|
948 |
|
949 |
-
#~ msgid "Use shortcode"
|
950 |
-
#~ msgstr "短いコードの利用"
|
951 |
-
|
952 |
#~ msgid "for this language"
|
953 |
#~ msgstr "この言語用"
|
954 |
|
@@ -967,9 +1068,6 @@ msgstr "カスタムEメールに送信»"
|
|
967 |
#~ msgid "Url"
|
968 |
#~ msgstr "Url"
|
969 |
|
970 |
-
#~ msgid "Save Changes"
|
971 |
-
#~ msgstr "変更を保存"
|
972 |
-
|
973 |
#~ msgid "Contact Form Pro | Extra Settings"
|
974 |
#~ msgstr "Contact Form Pro | 追加設定"
|
975 |
|
@@ -1052,9 +1150,6 @@ msgstr "カスタムEメールに送信»"
|
|
1052 |
#~ msgid "Border color"
|
1053 |
#~ msgstr "罫線色"
|
1054 |
|
1055 |
-
#~ msgid "Submit button"
|
1056 |
-
#~ msgstr "送信ボタン"
|
1057 |
-
|
1058 |
#~ msgid "Width in px, numbers only"
|
1059 |
#~ msgstr "px単位の幅、数字のみ"
|
1060 |
|
@@ -1112,9 +1207,6 @@ msgstr "カスタムEメールに送信»"
|
|
1112 |
#~ msgstr ""
|
1113 |
#~ "このMIMEを見ている場合は、貴方のクライアントはMIMEタイプを読めません。"
|
1114 |
|
1115 |
-
#~ msgid "FAQ"
|
1116 |
-
#~ msgstr "FAQ"
|
1117 |
-
|
1118 |
#~ msgid "Support"
|
1119 |
#~ msgstr "サポート"
|
1120 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-10-09 14:42+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-10-09 14:42+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:39
|
20 |
+
#: bws_functions.php:63
|
21 |
#, fuzzy
|
22 |
msgid "requires"
|
23 |
msgstr "必須フィールド"
|
24 |
|
25 |
+
#: bws_functions.php:41
|
26 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: bws_functions.php:42
|
30 |
msgid "Back to the WordPress"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: bws_functions.php:44
|
34 |
#, fuzzy
|
35 |
msgid "Plugins page"
|
36 |
msgstr "Pro Plugins"
|
37 |
|
38 |
+
#: bws_functions.php:65
|
39 |
+
msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: bws_functions.php:122
|
43 |
msgid "It’s time to upgrade your"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: bws_functions.php:122
|
47 |
msgid "to"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: bws_functions.php:122
|
51 |
#, fuzzy
|
52 |
msgid "version!"
|
53 |
msgstr "PHP バージョン"
|
54 |
|
55 |
+
#: bws_functions.php:123
|
56 |
msgid "Extend standard plugin functionality with new great options."
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: bws_functions.php:126
|
60 |
+
#: bws_functions.php:561
|
61 |
#, fuzzy
|
62 |
msgid "Learn More"
|
63 |
msgstr "もっと読む"
|
64 |
|
65 |
+
#: bws_functions.php:143
|
66 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: bws_functions.php:144
|
70 |
#, fuzzy
|
71 |
msgid "Rate the plugin"
|
72 |
msgstr "有効なプラグイン"
|
73 |
|
74 |
+
#: bws_functions.php:147
|
75 |
#, fuzzy
|
76 |
msgid "If there is something wrong about it, please contact us"
|
77 |
msgstr "もそご質問がある場合は、以下の方法でご連絡下さい:"
|
78 |
|
79 |
+
#: bws_functions.php:179
|
80 |
+
msgid "Check premium options on the plugin settings page!"
|
81 |
+
msgstr ""
|
82 |
+
|
83 |
+
#: bws_functions.php:186
|
84 |
+
#: bws_functions.php:222
|
85 |
msgid "Wrong license key"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: bws_functions.php:216
|
89 |
+
#: bws_functions.php:474
|
90 |
+
#: bws_functions.php:525
|
91 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: bws_functions.php:216
|
95 |
+
#: bws_functions.php:474
|
96 |
+
#: bws_functions.php:525
|
97 |
msgid "We are sorry for inconvenience."
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: bws_functions.php:224
|
101 |
msgid "This license key is bind to another site"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: bws_functions.php:226
|
105 |
+
#: bws_functions.php:384
|
106 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: bws_functions.php:228
|
110 |
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: bws_functions.php:230
|
114 |
+
msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: bws_functions.php:251
|
118 |
+
#: bws_functions.php:273
|
119 |
+
#: bws_functions.php:295
|
120 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: bws_functions.php:263
|
124 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: bws_functions.php:269
|
128 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: bws_functions.php:276
|
132 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: bws_functions.php:299
|
136 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: bws_functions.php:324
|
140 |
#, fuzzy
|
141 |
msgid "Please, enter Your license key"
|
142 |
msgstr "メッセージを入力して下さい..."
|
143 |
|
144 |
+
#: bws_functions.php:348
|
145 |
+
msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: bws_functions.php:350
|
149 |
+
#: bws_functions.php:441
|
150 |
msgid "Please, go to"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: bws_functions.php:350
|
154 |
+
#: bws_functions.php:441
|
155 |
#, fuzzy
|
156 |
msgid "the setting page"
|
157 |
msgstr "追加設定"
|
158 |
|
159 |
+
#: bws_functions.php:351
|
160 |
+
#: bws_functions.php:442
|
161 |
msgid "You will be redirected automatically in 5 seconds."
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: bws_functions.php:358
|
165 |
+
msgid "Show Pro features"
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#: bws_functions.php:365
|
169 |
msgid "You can download and activate"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: bws_functions.php:367
|
173 |
msgid "version of this plugin by entering Your license key."
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: bws_functions.php:369
|
177 |
+
#: bws_functions.php:410
|
178 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: bws_functions.php:371
|
182 |
+
#: bws_functions.php:412
|
183 |
msgid "(your username is the email you specify when purchasing the product)."
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: bws_functions.php:375
|
187 |
+
#: bws_functions.php:659
|
188 |
msgid "or"
|
189 |
msgstr "又は"
|
190 |
|
191 |
+
#: bws_functions.php:375
|
192 |
#, php-format
|
193 |
msgid "Start Your Free %s-Day Trial Now"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: bws_functions.php:381
|
197 |
+
#: bws_functions.php:390
|
198 |
+
#: bws_functions.php:420
|
199 |
+
#: bws_functions.php:428
|
200 |
+
#: bws_menu.php:693
|
201 |
+
#: bws_menu.php:750
|
202 |
#, fuzzy
|
203 |
msgid "Activate"
|
204 |
msgstr "有効なcaptcha"
|
205 |
|
206 |
+
#: bws_functions.php:407
|
207 |
+
#: bws_functions.php:500
|
208 |
#, php-format
|
209 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: bws_functions.php:408
|
213 |
msgid "After that you can activate it by entering your license key."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: bws_functions.php:422
|
217 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: bws_functions.php:439
|
221 |
+
msgid "Congratulations! The Pro license of the plugin is successfully activated."
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: bws_functions.php:480
|
225 |
msgid "Wrong license key."
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: bws_functions.php:482
|
229 |
msgid "This license key is bind to another site."
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: bws_functions.php:484
|
233 |
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."
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: bws_functions.php:486
|
237 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: bws_functions.php:488
|
241 |
+
msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: bws_functions.php:492
|
245 |
+
msgid "The Pro Trial license key is valid."
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: bws_functions.php:494
|
249 |
msgid "The license key is valid."
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: bws_functions.php:497
|
253 |
msgid "Your license will expire on"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: bws_functions.php:530
|
257 |
#, fuzzy
|
258 |
msgid "Please, enter your license key"
|
259 |
msgstr "メッセージを入力して下さい..."
|
260 |
|
261 |
+
#: bws_functions.php:543
|
262 |
msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: bws_functions.php:543
|
266 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: bws_functions.php:547
|
270 |
msgid "Check license key"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: bws_functions.php:561
|
274 |
msgid "WARNING: Illegal use notification"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: bws_functions.php:561
|
278 |
msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: bws_functions.php:569
|
282 |
+
msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: bws_functions.php:571
|
286 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: bws_functions.php:571
|
290 |
+
#: bws_functions.php:624
|
291 |
+
#: bws_menu.php:669
|
292 |
+
#: bws_menu.php:691
|
293 |
+
#: bws_menu.php:718
|
294 |
+
#: bws_menu.php:748
|
295 |
+
#: bws_menu.php:794
|
296 |
#, fuzzy
|
297 |
msgid "Learn more"
|
298 |
msgstr "もっと読む"
|
299 |
|
300 |
+
#: bws_functions.php:581
|
301 |
#, php-format
|
302 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: bws_functions.php:583
|
306 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: bws_functions.php:586
|
310 |
+
msgid "The Pro Trial license will expire on"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: bws_functions.php:624
|
314 |
msgid "You license for"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: bws_functions.php:624
|
318 |
msgid "expires on"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: bws_functions.php:624
|
322 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: bws_functions.php:655
|
326 |
+
#, fuzzy
|
327 |
+
msgid "Thank you for installing"
|
328 |
+
msgstr "ご連絡ありがとうございます"
|
329 |
+
|
330 |
+
#: bws_functions.php:656
|
331 |
+
msgid "Let's get started"
|
332 |
+
msgstr ""
|
333 |
+
|
334 |
+
#: bws_functions.php:657
|
335 |
+
#, fuzzy
|
336 |
+
msgid "Configure Settings"
|
337 |
+
msgstr "コンタクトフォーム設定"
|
338 |
+
|
339 |
+
#: bws_functions.php:660
|
340 |
+
msgid "Add New"
|
341 |
+
msgstr ""
|
342 |
+
|
343 |
+
#: bws_functions.php:664
|
344 |
+
msgid "Close notice"
|
345 |
+
msgstr ""
|
346 |
+
|
347 |
+
#: bws_functions.php:677
|
348 |
+
msgid "Notice"
|
349 |
+
msgstr ""
|
350 |
+
|
351 |
+
#: bws_functions.php:677
|
352 |
+
msgid "The plugin's settings have been changed."
|
353 |
+
msgstr ""
|
354 |
+
|
355 |
+
#: bws_functions.php:678
|
356 |
+
msgid "Save Changes"
|
357 |
+
msgstr "変更を保存"
|
358 |
+
|
359 |
+
#: bws_functions.php:693
|
360 |
+
msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
|
361 |
+
msgstr ""
|
362 |
+
|
363 |
+
#: bws_functions.php:773
|
364 |
+
#, fuzzy
|
365 |
+
msgid "Add BWS Plugins Shortcode"
|
366 |
+
msgstr "短いコードの利用"
|
367 |
+
|
368 |
+
#: bws_functions.php:793
|
369 |
+
#, fuzzy
|
370 |
+
msgid "Add shortcode"
|
371 |
+
msgstr "短いコードの利用"
|
372 |
+
|
373 |
+
#: bws_functions.php:793
|
374 |
+
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
375 |
+
msgstr ""
|
376 |
+
|
377 |
+
#: bws_functions.php:833
|
378 |
msgid "Close"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: bws_functions.php:925
|
|
|
382 |
msgid "Restore all plugin settings to defaults"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: bws_functions.php:927
|
|
|
386 |
#, fuzzy
|
387 |
msgid "Restore settings"
|
388 |
msgstr "追加設定"
|
389 |
|
390 |
+
#: bws_functions.php:938
|
391 |
#, fuzzy
|
392 |
msgid "Are you sure you want to restore all settings by default?"
|
393 |
msgstr "本当に、この言語データを削除しますか?"
|
394 |
|
395 |
+
#: bws_functions.php:941
|
396 |
msgid "Yes, restore all settings"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: bws_functions.php:942
|
400 |
#, fuzzy
|
401 |
msgid "No, go back to the settings page"
|
402 |
msgstr "追加設定"
|
403 |
|
404 |
+
#: bws_functions.php:986
|
405 |
+
#, fuzzy
|
406 |
+
msgid "Plugin"
|
407 |
+
msgstr "Pro Plugins"
|
408 |
+
|
409 |
+
#: bws_functions.php:995
|
410 |
+
#, fuzzy
|
411 |
+
msgid "Shortcode settings"
|
412 |
+
msgstr "追加設定"
|
413 |
+
|
414 |
+
#: bws_functions.php:1000
|
415 |
+
msgid "The shortcode will be inserted"
|
416 |
+
msgstr ""
|
417 |
+
|
418 |
+
#: bws_functions.php:1005
|
419 |
+
msgid "Insert"
|
420 |
+
msgstr ""
|
421 |
+
|
422 |
+
#: bws_functions.php:1036
|
423 |
+
msgid "Visit Help Center"
|
424 |
+
msgstr ""
|
425 |
+
|
426 |
+
#: bws_functions.php:1041
|
427 |
+
msgid "FAQ"
|
428 |
+
msgstr "FAQ"
|
429 |
+
|
430 |
+
#: bws_functions.php:1047
|
431 |
+
msgid "For more information:"
|
432 |
+
msgstr ""
|
433 |
+
|
434 |
+
#: bws_functions.php:1048
|
435 |
+
msgid "Documentation"
|
436 |
+
msgstr ""
|
437 |
+
|
438 |
+
#: bws_functions.php:1049
|
439 |
+
msgid "Video Instructions"
|
440 |
+
msgstr ""
|
441 |
+
|
442 |
+
#: bws_functions.php:1050
|
443 |
+
#, fuzzy
|
444 |
+
msgid "Submit a Request"
|
445 |
+
msgstr "送信ボタン"
|
446 |
+
|
447 |
+
#: bws_menu.php:506
|
448 |
msgid "Not set"
|
449 |
msgstr "未設定"
|
450 |
|
451 |
+
#: bws_menu.php:508
|
452 |
+
#: bws_menu.php:509
|
453 |
msgid "On"
|
454 |
msgstr "On"
|
455 |
|
456 |
+
#: bws_menu.php:508
|
457 |
+
#: bws_menu.php:509
|
458 |
msgid "Off"
|
459 |
msgstr "Off"
|
460 |
|
461 |
+
#: bws_menu.php:510
|
462 |
+
#: bws_menu.php:511
|
463 |
+
#: bws_menu.php:512
|
464 |
+
#: bws_menu.php:513
|
465 |
+
#: bws_menu.php:514
|
466 |
+
#: bws_menu.php:526
|
467 |
msgid "N/A"
|
468 |
msgstr "該当なし"
|
469 |
|
470 |
+
#: bws_menu.php:514
|
471 |
msgid " Mb"
|
472 |
msgstr " Mb"
|
473 |
|
474 |
+
#: bws_menu.php:515
|
475 |
+
#: bws_menu.php:516
|
476 |
+
#: bws_menu.php:517
|
477 |
+
#: bws_menu.php:522
|
478 |
msgid "Yes"
|
479 |
msgstr "はい"
|
480 |
|
481 |
+
#: bws_menu.php:515
|
482 |
+
#: bws_menu.php:516
|
483 |
+
#: bws_menu.php:517
|
484 |
+
#: bws_menu.php:524
|
485 |
msgid "No"
|
486 |
msgstr "いいえ"
|
487 |
|
488 |
+
#: bws_menu.php:534
|
489 |
msgid "Operating System"
|
490 |
msgstr "オペレーション・システム"
|
491 |
|
492 |
+
#: bws_menu.php:535
|
493 |
msgid "Server"
|
494 |
msgstr "サーバ"
|
495 |
|
496 |
+
#: bws_menu.php:536
|
497 |
msgid "Memory usage"
|
498 |
msgstr "メモリー使用"
|
499 |
|
500 |
+
#: bws_menu.php:537
|
501 |
msgid "MYSQL Version"
|
502 |
msgstr "MYSQL バージョン"
|
503 |
|
504 |
+
#: bws_menu.php:538
|
505 |
msgid "SQL Mode"
|
506 |
msgstr "SQLモード"
|
507 |
|
508 |
+
#: bws_menu.php:539
|
509 |
msgid "PHP Version"
|
510 |
msgstr "PHP バージョン"
|
511 |
|
512 |
+
#: bws_menu.php:540
|
513 |
msgid "PHP Safe Mode"
|
514 |
msgstr "PHP Safe Mode"
|
515 |
|
516 |
+
#: bws_menu.php:541
|
517 |
msgid "PHP Allow URL fopen"
|
518 |
msgstr "PHP Allow URL fopen"
|
519 |
|
520 |
+
#: bws_menu.php:542
|
521 |
msgid "PHP Memory Limit"
|
522 |
msgstr "PHP Memory Limit"
|
523 |
|
524 |
+
#: bws_menu.php:543
|
525 |
msgid "PHP Max Upload Size"
|
526 |
msgstr "PHP Max Upload Size"
|
527 |
|
528 |
+
#: bws_menu.php:544
|
529 |
msgid "PHP Max Post Size"
|
530 |
msgstr "PHP Max Post Size"
|
531 |
|
532 |
+
#: bws_menu.php:545
|
533 |
msgid "PHP Max Script Execute Time"
|
534 |
msgstr "PHP Max Script Execute Time"
|
535 |
|
536 |
+
#: bws_menu.php:546
|
537 |
msgid "PHP Exif support"
|
538 |
msgstr "PHP Exif サポート"
|
539 |
|
540 |
+
#: bws_menu.php:547
|
541 |
msgid "PHP IPTC support"
|
542 |
msgstr "PHP IPTC サポート"
|
543 |
|
544 |
+
#: bws_menu.php:548
|
545 |
msgid "PHP XML support"
|
546 |
msgstr "PHP XML サポート"
|
547 |
|
548 |
+
#: bws_menu.php:549
|
549 |
msgid "Site URL"
|
550 |
msgstr "サイトURL"
|
551 |
|
552 |
+
#: bws_menu.php:550
|
553 |
msgid "Home URL"
|
554 |
msgstr "ホームURL"
|
555 |
|
556 |
+
#: bws_menu.php:553
|
557 |
msgid "WordPress Version"
|
558 |
msgstr "WordPress バージョン"
|
559 |
|
560 |
+
#: bws_menu.php:554
|
561 |
msgid "WordPress DB Version"
|
562 |
msgstr "WordPress データベース バージョン"
|
563 |
|
564 |
+
#: bws_menu.php:555
|
565 |
msgid "Multisite"
|
566 |
msgstr "複数サイト"
|
567 |
|
568 |
+
#: bws_menu.php:556
|
569 |
msgid "Active Theme"
|
570 |
msgstr "有効なテーマ"
|
571 |
|
572 |
+
#: bws_menu.php:571
|
573 |
msgid "Please enter a valid email address."
|
574 |
msgstr "正確なEメール・アドレスを入力して下さい。"
|
575 |
|
576 |
+
#: bws_menu.php:575
|
577 |
msgid "Email with system info is sent to "
|
578 |
msgstr "システム情報をメールで送信:"
|
579 |
|
580 |
+
#: bws_menu.php:579
|
581 |
msgid "Thank you for contacting us."
|
582 |
msgstr "ご連絡ありがとうございます"
|
583 |
|
584 |
+
#: bws_menu.php:612
|
585 |
msgid "Sorry, email message could not be delivered."
|
586 |
msgstr "申し訳ございませんが、貴方のemailは配信できませんでした。"
|
587 |
|
588 |
+
#: bws_menu.php:620
|
589 |
msgid "Need help?"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: bws_menu.php:621
|
593 |
msgid "Client area"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: bws_menu.php:622
|
597 |
+
#: bws_menu.php:933
|
598 |
msgid "System status"
|
599 |
msgstr "システム状況"
|
600 |
|
601 |
+
#: bws_menu.php:627
|
602 |
#, fuzzy
|
603 |
msgid "Plugins"
|
604 |
msgstr "Pro Plugins"
|
605 |
|
606 |
+
#: bws_menu.php:629
|
607 |
msgid "Themes"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: bws_menu.php:634
|
611 |
msgid "All"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: bws_menu.php:635
|
615 |
#, fuzzy
|
616 |
msgid "Installed"
|
617 |
msgstr "%s 導入"
|
618 |
|
619 |
+
#: bws_menu.php:636
|
620 |
#, fuzzy
|
621 |
msgid "Recommended"
|
622 |
msgstr "推奨プラグイン"
|
623 |
|
624 |
+
#: bws_menu.php:640
|
625 |
msgid "Installed plugins"
|
626 |
msgstr "導入済みプラグイン"
|
627 |
|
628 |
+
#: bws_menu.php:672
|
629 |
+
#: bws_menu.php:721
|
630 |
msgid "Settings"
|
631 |
msgstr "設定"
|
632 |
|
633 |
+
#: bws_menu.php:693
|
634 |
+
#: bws_menu.php:750
|
635 |
#, fuzzy
|
636 |
msgid "Activate this plugin"
|
637 |
msgstr "有効なプラグイン"
|
638 |
|
639 |
+
#: bws_menu.php:708
|
640 |
+
#: bws_menu.php:738
|
641 |
+
#: bws_menu.php:784
|
642 |
msgid "Go"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: bws_menu.php:712
|
646 |
+
#: bws_menu.php:742
|
647 |
+
#: bws_menu.php:788
|
648 |
msgid "DONATE"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: bws_menu.php:758
|
652 |
msgid "Recommended plugins"
|
653 |
msgstr "推奨プラグイン"
|
654 |
|
655 |
+
#: bws_menu.php:796
|
656 |
#, fuzzy
|
657 |
msgid "Install now"
|
658 |
msgstr "Installa Ora"
|
659 |
|
660 |
+
#: bws_menu.php:817
|
661 |
msgid "Try again"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: bws_menu.php:835
|
665 |
#, php-format
|
666 |
msgid "Preview “%s”"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: bws_menu.php:866
|
670 |
#, php-format
|
671 |
msgid "Install %s"
|
672 |
msgstr "%s 導入"
|
673 |
|
674 |
+
#: bws_menu.php:866
|
675 |
msgid "Install Now"
|
676 |
msgstr "Installa Ora"
|
677 |
|
678 |
+
#: bws_menu.php:869
|
679 |
#, php-format
|
680 |
msgid "Update to version %s"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: bws_menu.php:869
|
684 |
msgid "Update"
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: bws_menu.php:876
|
688 |
#, php-format
|
689 |
msgid "Preview %s"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: bws_menu.php:876
|
693 |
msgid "Preview"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: bws_menu.php:882
|
697 |
+
#: bws_menu.php:914
|
698 |
#, php-format
|
699 |
msgid "By %s"
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: bws_menu.php:888
|
703 |
msgid "Details"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: bws_menu.php:920
|
707 |
#, fuzzy
|
708 |
msgid "Already Installed"
|
709 |
msgstr "%s 導入"
|
710 |
|
711 |
+
#: bws_menu.php:936
|
712 |
msgid "Environment"
|
713 |
msgstr "環境"
|
714 |
|
715 |
+
#: bws_menu.php:947
|
716 |
msgid "Active Plugins"
|
717 |
msgstr "有効なプラグイン"
|
718 |
|
719 |
+
#: bws_menu.php:960
|
720 |
msgid "Inactive Plugins"
|
721 |
msgstr "無効なプラグイン"
|
722 |
|
723 |
+
#: bws_menu.php:976
|
724 |
msgid "Send to support"
|
725 |
msgstr "サポートに送信"
|
726 |
|
727 |
+
#: bws_menu.php:983
|
728 |
msgid "Send to custom email »"
|
729 |
msgstr "カスタムEメールに送信»"
|
730 |
|
765 |
#~ msgid "installed"
|
766 |
#~ msgstr "%s 導入"
|
767 |
|
|
|
|
|
|
|
768 |
#~ msgid "Contact Form"
|
769 |
#~ msgstr "コンタクトフォーム"
|
770 |
|
1050 |
#~ msgid "Error message for the whole form"
|
1051 |
#~ msgstr "全体フォーム用のエラーメッセージ"
|
1052 |
|
|
|
|
|
|
|
1053 |
#~ msgid "for this language"
|
1054 |
#~ msgstr "この言語用"
|
1055 |
|
1068 |
#~ msgid "Url"
|
1069 |
#~ msgstr "Url"
|
1070 |
|
|
|
|
|
|
|
1071 |
#~ msgid "Contact Form Pro | Extra Settings"
|
1072 |
#~ msgstr "Contact Form Pro | 追加設定"
|
1073 |
|
1150 |
#~ msgid "Border color"
|
1151 |
#~ msgstr "罫線色"
|
1152 |
|
|
|
|
|
|
|
1153 |
#~ msgid "Width in px, numbers only"
|
1154 |
#~ msgstr "px単位の幅、数字のみ"
|
1155 |
|
1207 |
#~ msgstr ""
|
1208 |
#~ "このMIMEを見ている場合は、貴方のクライアントはMIMEタイプを読めません。"
|
1209 |
|
|
|
|
|
|
|
1210 |
#~ msgid "Support"
|
1211 |
#~ msgstr "サポート"
|
1212 |
|
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,766 @@ 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 |
-
|
|
|
|
|
|
|
|
|
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-10-09 14:42+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-10-09 14:42+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:39
|
22 |
+
#: bws_functions.php:63
|
23 |
msgid "requires"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: bws_functions.php:41
|
27 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: bws_functions.php:42
|
31 |
msgid "Back to the WordPress"
|
32 |
msgstr ""
|
33 |
|
34 |
# @ captcha
|
35 |
+
#: bws_functions.php:44
|
36 |
#, fuzzy
|
37 |
msgid "Plugins page"
|
38 |
msgstr "Plugins Pro"
|
39 |
|
40 |
+
#: bws_functions.php:65
|
41 |
+
msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
#: bws_functions.php:122
|
45 |
msgid "It’s time to upgrade your"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: bws_functions.php:122
|
49 |
msgid "to"
|
50 |
msgstr ""
|
51 |
|
52 |
# @ captcha
|
53 |
+
#: bws_functions.php:122
|
54 |
#, fuzzy
|
55 |
msgid "version!"
|
56 |
msgstr "Versão do PHP"
|
57 |
|
58 |
+
#: bws_functions.php:123
|
59 |
msgid "Extend standard plugin functionality with new great options."
|
60 |
msgstr ""
|
61 |
|
62 |
# @ captcha
|
63 |
+
#: bws_functions.php:126
|
64 |
+
#: bws_functions.php:561
|
65 |
#, fuzzy
|
66 |
msgid "Learn More"
|
67 |
msgstr "Leia Mais"
|
68 |
|
69 |
+
#: bws_functions.php:143
|
70 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
71 |
msgstr ""
|
72 |
|
73 |
# @ captcha
|
74 |
+
#: bws_functions.php:144
|
75 |
#, fuzzy
|
76 |
msgid "Rate the plugin"
|
77 |
msgstr "Plugins ativados"
|
78 |
|
79 |
# @ captcha
|
80 |
+
#: bws_functions.php:147
|
81 |
#, fuzzy
|
82 |
msgid "If there is something wrong about it, please contact us"
|
83 |
msgstr "Se você tiver quaisquer perguntas, por favor entre em contato via"
|
84 |
|
85 |
+
#: bws_functions.php:179
|
86 |
+
msgid "Check premium options on the plugin settings page!"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: bws_functions.php:186
|
90 |
+
#: bws_functions.php:222
|
91 |
msgid "Wrong license key"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: bws_functions.php:216
|
95 |
+
#: bws_functions.php:474
|
96 |
+
#: bws_functions.php:525
|
97 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: bws_functions.php:216
|
101 |
+
#: bws_functions.php:474
|
102 |
+
#: bws_functions.php:525
|
103 |
msgid "We are sorry for inconvenience."
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: bws_functions.php:224
|
107 |
msgid "This license key is bind to another site"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: bws_functions.php:226
|
111 |
+
#: bws_functions.php:384
|
112 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: bws_functions.php:228
|
116 |
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: bws_functions.php:230
|
120 |
+
msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: bws_functions.php:251
|
124 |
+
#: bws_functions.php:273
|
125 |
+
#: bws_functions.php:295
|
126 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: bws_functions.php:263
|
130 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: bws_functions.php:269
|
134 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: bws_functions.php:276
|
138 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: bws_functions.php:299
|
142 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: bws_functions.php:324
|
146 |
msgid "Please, enter Your license key"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: bws_functions.php:348
|
150 |
+
msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: bws_functions.php:350
|
154 |
+
#: bws_functions.php:441
|
155 |
msgid "Please, go to"
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: bws_functions.php:350
|
159 |
+
#: bws_functions.php:441
|
160 |
msgid "the setting page"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: bws_functions.php:351
|
164 |
+
#: bws_functions.php:442
|
165 |
msgid "You will be redirected automatically in 5 seconds."
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: bws_functions.php:358
|
169 |
+
msgid "Show Pro features"
|
170 |
+
msgstr ""
|
171 |
+
|
172 |
+
#: bws_functions.php:365
|
173 |
msgid "You can download and activate"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: bws_functions.php:367
|
177 |
msgid "version of this plugin by entering Your license key."
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: bws_functions.php:369
|
181 |
+
#: bws_functions.php:410
|
182 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: bws_functions.php:371
|
186 |
+
#: bws_functions.php:412
|
187 |
msgid "(your username is the email you specify when purchasing the product)."
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: bws_functions.php:375
|
191 |
+
#: bws_functions.php:659
|
192 |
msgid "or"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: bws_functions.php:375
|
196 |
#, php-format
|
197 |
msgid "Start Your Free %s-Day Trial Now"
|
198 |
msgstr ""
|
199 |
|
200 |
# @ captcha
|
201 |
+
#: bws_functions.php:381
|
202 |
+
#: bws_functions.php:390
|
203 |
+
#: bws_functions.php:420
|
204 |
+
#: bws_functions.php:428
|
205 |
+
#: bws_menu.php:693
|
206 |
+
#: bws_menu.php:750
|
207 |
#, fuzzy
|
208 |
msgid "Activate"
|
209 |
msgstr "Plugins ativados"
|
210 |
|
211 |
+
#: bws_functions.php:407
|
212 |
+
#: bws_functions.php:500
|
213 |
#, php-format
|
214 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: bws_functions.php:408
|
218 |
msgid "After that you can activate it by entering your license key."
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: bws_functions.php:422
|
222 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: bws_functions.php:439
|
226 |
+
msgid "Congratulations! The Pro license of the plugin is successfully activated."
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: bws_functions.php:480
|
230 |
msgid "Wrong license key."
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: bws_functions.php:482
|
234 |
msgid "This license key is bind to another site."
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: bws_functions.php:484
|
238 |
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."
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: bws_functions.php:486
|
242 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: bws_functions.php:488
|
246 |
+
msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: bws_functions.php:492
|
250 |
+
msgid "The Pro Trial license key is valid."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: bws_functions.php:494
|
254 |
msgid "The license key is valid."
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: bws_functions.php:497
|
258 |
msgid "Your license will expire on"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: bws_functions.php:530
|
262 |
msgid "Please, enter your license key"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: bws_functions.php:543
|
266 |
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"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: bws_functions.php:543
|
270 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: bws_functions.php:547
|
274 |
msgid "Check license key"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: bws_functions.php:561
|
278 |
msgid "WARNING: Illegal use notification"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: bws_functions.php:561
|
282 |
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."
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: bws_functions.php:569
|
286 |
+
msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: bws_functions.php:571
|
290 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
291 |
msgstr ""
|
292 |
|
293 |
# @ captcha
|
294 |
+
#: bws_functions.php:571
|
295 |
+
#: bws_functions.php:624
|
296 |
+
#: bws_menu.php:669
|
297 |
+
#: bws_menu.php:691
|
298 |
+
#: bws_menu.php:718
|
299 |
+
#: bws_menu.php:748
|
300 |
+
#: bws_menu.php:794
|
301 |
#, fuzzy
|
302 |
msgid "Learn more"
|
303 |
msgstr "Leia Mais"
|
304 |
|
305 |
+
#: bws_functions.php:581
|
306 |
#, php-format
|
307 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: bws_functions.php:583
|
311 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: bws_functions.php:586
|
315 |
+
msgid "The Pro Trial license will expire on"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: bws_functions.php:624
|
319 |
msgid "You license for"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: bws_functions.php:624
|
323 |
msgid "expires on"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: bws_functions.php:624
|
327 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
328 |
msgstr ""
|
329 |
|
330 |
+
# @ captcha
|
331 |
+
#: bws_functions.php:655
|
332 |
+
#, fuzzy
|
333 |
+
msgid "Thank you for installing"
|
334 |
+
msgstr "Obrigado por nos contatar."
|
335 |
+
|
336 |
+
#: bws_functions.php:656
|
337 |
+
msgid "Let's get started"
|
338 |
+
msgstr ""
|
339 |
+
|
340 |
+
# @ captcha
|
341 |
+
#: bws_functions.php:657
|
342 |
+
#, fuzzy
|
343 |
+
msgid "Configure Settings"
|
344 |
+
msgstr "Configurações"
|
345 |
+
|
346 |
+
#: bws_functions.php:660
|
347 |
+
msgid "Add New"
|
348 |
+
msgstr ""
|
349 |
+
|
350 |
+
#: bws_functions.php:664
|
351 |
+
msgid "Close notice"
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#: bws_functions.php:677
|
355 |
+
msgid "Notice"
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: bws_functions.php:677
|
359 |
+
msgid "The plugin's settings have been changed."
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: bws_functions.php:678
|
363 |
+
msgid "Save Changes"
|
364 |
+
msgstr ""
|
365 |
+
|
366 |
+
#: bws_functions.php:693
|
367 |
+
msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
|
368 |
+
msgstr ""
|
369 |
+
|
370 |
+
#: bws_functions.php:773
|
371 |
+
msgid "Add BWS Plugins Shortcode"
|
372 |
+
msgstr ""
|
373 |
+
|
374 |
+
#: bws_functions.php:793
|
375 |
+
msgid "Add shortcode"
|
376 |
+
msgstr ""
|
377 |
+
|
378 |
+
#: bws_functions.php:793
|
379 |
+
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: bws_functions.php:833
|
383 |
msgid "Close"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: bws_functions.php:925
|
|
|
387 |
msgid "Restore all plugin settings to defaults"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: bws_functions.php:927
|
|
|
391 |
msgid "Restore settings"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: bws_functions.php:938
|
395 |
msgid "Are you sure you want to restore all settings by default?"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: bws_functions.php:941
|
399 |
msgid "Yes, restore all settings"
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: bws_functions.php:942
|
403 |
msgid "No, go back to the settings page"
|
404 |
msgstr ""
|
405 |
|
406 |
# @ captcha
|
407 |
+
#: bws_functions.php:986
|
408 |
+
#, fuzzy
|
409 |
+
msgid "Plugin"
|
410 |
+
msgstr "Plugins Pro"
|
411 |
+
|
412 |
+
# @ captcha
|
413 |
+
#: bws_functions.php:995
|
414 |
+
#, fuzzy
|
415 |
+
msgid "Shortcode settings"
|
416 |
+
msgstr "Configurações"
|
417 |
+
|
418 |
+
#: bws_functions.php:1000
|
419 |
+
msgid "The shortcode will be inserted"
|
420 |
+
msgstr ""
|
421 |
+
|
422 |
+
#: bws_functions.php:1005
|
423 |
+
msgid "Insert"
|
424 |
+
msgstr ""
|
425 |
+
|
426 |
+
#: bws_functions.php:1036
|
427 |
+
msgid "Visit Help Center"
|
428 |
+
msgstr ""
|
429 |
+
|
430 |
+
#: bws_functions.php:1041
|
431 |
+
msgid "FAQ"
|
432 |
+
msgstr ""
|
433 |
+
|
434 |
+
#: bws_functions.php:1047
|
435 |
+
msgid "For more information:"
|
436 |
+
msgstr ""
|
437 |
+
|
438 |
+
#: bws_functions.php:1048
|
439 |
+
msgid "Documentation"
|
440 |
+
msgstr ""
|
441 |
+
|
442 |
+
#: bws_functions.php:1049
|
443 |
+
msgid "Video Instructions"
|
444 |
+
msgstr ""
|
445 |
+
|
446 |
+
#: bws_functions.php:1050
|
447 |
+
msgid "Submit a Request"
|
448 |
+
msgstr ""
|
449 |
+
|
450 |
+
# @ captcha
|
451 |
+
#: bws_menu.php:506
|
452 |
msgid "Not set"
|
453 |
msgstr "Não definido"
|
454 |
|
455 |
# @ captcha
|
456 |
+
#: bws_menu.php:508
|
457 |
+
#: bws_menu.php:509
|
458 |
msgid "On"
|
459 |
msgstr "Ligado"
|
460 |
|
461 |
# @ captcha
|
462 |
+
#: bws_menu.php:508
|
463 |
+
#: bws_menu.php:509
|
464 |
msgid "Off"
|
465 |
msgstr "Desligado"
|
466 |
|
467 |
# @ captcha
|
468 |
+
#: bws_menu.php:510
|
469 |
+
#: bws_menu.php:511
|
470 |
+
#: bws_menu.php:512
|
471 |
+
#: bws_menu.php:513
|
472 |
+
#: bws_menu.php:514
|
473 |
+
#: bws_menu.php:526
|
474 |
msgid "N/A"
|
475 |
msgstr "N/D"
|
476 |
|
477 |
# @ captcha
|
478 |
+
#: bws_menu.php:514
|
479 |
msgid " Mb"
|
480 |
msgstr " Mb"
|
481 |
|
482 |
# @ captcha
|
483 |
+
#: bws_menu.php:515
|
484 |
+
#: bws_menu.php:516
|
485 |
+
#: bws_menu.php:517
|
486 |
+
#: bws_menu.php:522
|
487 |
msgid "Yes"
|
488 |
msgstr "Sim"
|
489 |
|
490 |
# @ captcha
|
491 |
+
#: bws_menu.php:515
|
492 |
+
#: bws_menu.php:516
|
493 |
+
#: bws_menu.php:517
|
494 |
+
#: bws_menu.php:524
|
495 |
msgid "No"
|
496 |
msgstr "Não"
|
497 |
|
498 |
# @ captcha
|
499 |
+
#: bws_menu.php:534
|
500 |
msgid "Operating System"
|
501 |
msgstr "Sistema Operacional"
|
502 |
|
503 |
# @ captcha
|
504 |
+
#: bws_menu.php:535
|
505 |
msgid "Server"
|
506 |
msgstr "Servidor"
|
507 |
|
508 |
# @ captcha
|
509 |
+
#: bws_menu.php:536
|
510 |
msgid "Memory usage"
|
511 |
msgstr "Uso de memória"
|
512 |
|
513 |
# @ captcha
|
514 |
+
#: bws_menu.php:537
|
515 |
msgid "MYSQL Version"
|
516 |
msgstr "Versão do MySQL"
|
517 |
|
518 |
# @ captcha
|
519 |
+
#: bws_menu.php:538
|
520 |
msgid "SQL Mode"
|
521 |
msgstr "Modo SQL"
|
522 |
|
523 |
# @ captcha
|
524 |
+
#: bws_menu.php:539
|
525 |
msgid "PHP Version"
|
526 |
msgstr "Versão do PHP"
|
527 |
|
528 |
# @ captcha
|
529 |
+
#: bws_menu.php:540
|
530 |
msgid "PHP Safe Mode"
|
531 |
msgstr "Modo de Segurança do PHP"
|
532 |
|
533 |
# @ captcha
|
534 |
+
#: bws_menu.php:541
|
535 |
msgid "PHP Allow URL fopen"
|
536 |
msgstr "Permissão de fopen de URL do PHP"
|
537 |
|
538 |
# @ captcha
|
539 |
+
#: bws_menu.php:542
|
540 |
msgid "PHP Memory Limit"
|
541 |
msgstr "Limite de Memória do PHP"
|
542 |
|
543 |
# @ captcha
|
544 |
+
#: bws_menu.php:543
|
545 |
msgid "PHP Max Upload Size"
|
546 |
msgstr "Tamanho Máximo de Upload no PHP"
|
547 |
|
548 |
# @ captcha
|
549 |
+
#: bws_menu.php:544
|
550 |
msgid "PHP Max Post Size"
|
551 |
msgstr "Tamanho Máximo de Envio do PHP"
|
552 |
|
553 |
# @ captcha
|
554 |
+
#: bws_menu.php:545
|
555 |
msgid "PHP Max Script Execute Time"
|
556 |
msgstr "Tempo de Execução Máximo do PHP"
|
557 |
|
558 |
# @ captcha
|
559 |
+
#: bws_menu.php:546
|
560 |
msgid "PHP Exif support"
|
561 |
msgstr "Suporte a Exif no PHP"
|
562 |
|
563 |
# @ captcha
|
564 |
+
#: bws_menu.php:547
|
565 |
msgid "PHP IPTC support"
|
566 |
msgstr "Suporte da IPTC no PHP"
|
567 |
|
568 |
# @ captcha
|
569 |
+
#: bws_menu.php:548
|
570 |
msgid "PHP XML support"
|
571 |
msgstr "Suporte a XML no PHP"
|
572 |
|
573 |
# @ captcha
|
574 |
+
#: bws_menu.php:549
|
575 |
msgid "Site URL"
|
576 |
msgstr "URL do Site"
|
577 |
|
578 |
# @ captcha
|
579 |
+
#: bws_menu.php:550
|
580 |
msgid "Home URL"
|
581 |
msgstr "URL da Página Inicial"
|
582 |
|
583 |
# @ captcha
|
584 |
+
#: bws_menu.php:553
|
585 |
msgid "WordPress Version"
|
586 |
msgstr "Versão do WordPress"
|
587 |
|
588 |
# @ captcha
|
589 |
+
#: bws_menu.php:554
|
590 |
msgid "WordPress DB Version"
|
591 |
msgstr "Versão do DB do WordPress"
|
592 |
|
593 |
# @ captcha
|
594 |
+
#: bws_menu.php:555
|
595 |
msgid "Multisite"
|
596 |
msgstr "Multisite"
|
597 |
|
598 |
# @ captcha
|
599 |
+
#: bws_menu.php:556
|
600 |
msgid "Active Theme"
|
601 |
msgstr "Tema Ativo"
|
602 |
|
603 |
# @ captcha
|
604 |
+
#: bws_menu.php:571
|
605 |
msgid "Please enter a valid email address."
|
606 |
msgstr "Por favor, informe um endereço de email válido."
|
607 |
|
608 |
# @ captcha
|
609 |
+
#: bws_menu.php:575
|
610 |
msgid "Email with system info is sent to "
|
611 |
msgstr "Email com informações do sistema é enviado para "
|
612 |
|
613 |
# @ captcha
|
614 |
+
#: bws_menu.php:579
|
615 |
msgid "Thank you for contacting us."
|
616 |
msgstr "Obrigado por nos contatar."
|
617 |
|
618 |
# @ captcha
|
619 |
+
#: bws_menu.php:612
|
620 |
msgid "Sorry, email message could not be delivered."
|
621 |
msgstr "Desculpe, a mensagem de email não pôde ser enviada."
|
622 |
|
623 |
+
#: bws_menu.php:620
|
624 |
msgid "Need help?"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: bws_menu.php:621
|
628 |
msgid "Client area"
|
629 |
msgstr ""
|
630 |
|
631 |
# @ captcha
|
632 |
+
#: bws_menu.php:622
|
633 |
+
#: bws_menu.php:933
|
634 |
msgid "System status"
|
635 |
msgstr "Status do sistema"
|
636 |
|
637 |
# @ captcha
|
638 |
+
#: bws_menu.php:627
|
639 |
#, fuzzy
|
640 |
msgid "Plugins"
|
641 |
msgstr "Plugins Pro"
|
642 |
|
643 |
+
#: bws_menu.php:629
|
644 |
msgid "Themes"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: bws_menu.php:634
|
648 |
msgid "All"
|
649 |
msgstr ""
|
650 |
|
651 |
# @ default
|
652 |
+
#: bws_menu.php:635
|
653 |
#, fuzzy
|
654 |
msgid "Installed"
|
655 |
msgstr "Instalar %s"
|
656 |
|
657 |
# @ captcha
|
658 |
+
#: bws_menu.php:636
|
659 |
#, fuzzy
|
660 |
msgid "Recommended"
|
661 |
msgstr "Plugins Recomendados"
|
662 |
|
663 |
# @ captcha
|
664 |
+
#: bws_menu.php:640
|
665 |
msgid "Installed plugins"
|
666 |
msgstr "Plugins Instalados"
|
667 |
|
668 |
# @ captcha
|
669 |
+
#: bws_menu.php:672
|
670 |
+
#: bws_menu.php:721
|
671 |
msgid "Settings"
|
672 |
msgstr "Configurações"
|
673 |
|
674 |
# @ captcha
|
675 |
+
#: bws_menu.php:693
|
676 |
+
#: bws_menu.php:750
|
677 |
#, fuzzy
|
678 |
msgid "Activate this plugin"
|
679 |
msgstr "Plugins ativados"
|
680 |
|
681 |
+
#: bws_menu.php:708
|
682 |
+
#: bws_menu.php:738
|
683 |
+
#: bws_menu.php:784
|
684 |
msgid "Go"
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: bws_menu.php:712
|
688 |
+
#: bws_menu.php:742
|
689 |
+
#: bws_menu.php:788
|
690 |
msgid "DONATE"
|
691 |
msgstr ""
|
692 |
|
693 |
# @ captcha
|
694 |
+
#: bws_menu.php:758
|
695 |
msgid "Recommended plugins"
|
696 |
msgstr "Plugins Recomendados"
|
697 |
|
698 |
# @ default
|
699 |
+
#: bws_menu.php:796
|
700 |
#, fuzzy
|
701 |
msgid "Install now"
|
702 |
msgstr "Instalar %s"
|
703 |
|
704 |
+
#: bws_menu.php:817
|
705 |
msgid "Try again"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: bws_menu.php:835
|
709 |
#, php-format
|
710 |
msgid "Preview “%s”"
|
711 |
msgstr ""
|
712 |
|
713 |
# @ default
|
714 |
+
#: bws_menu.php:866
|
715 |
#, php-format
|
716 |
msgid "Install %s"
|
717 |
msgstr "Instalar %s"
|
718 |
|
719 |
# @ default
|
720 |
+
#: bws_menu.php:866
|
721 |
#, fuzzy
|
722 |
msgid "Install Now"
|
723 |
msgstr "Instalar %s"
|
724 |
|
725 |
+
#: bws_menu.php:869
|
726 |
#, php-format
|
727 |
msgid "Update to version %s"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: bws_menu.php:869
|
731 |
msgid "Update"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: bws_menu.php:876
|
735 |
#, php-format
|
736 |
msgid "Preview %s"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: bws_menu.php:876
|
740 |
msgid "Preview"
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: bws_menu.php:882
|
744 |
+
#: bws_menu.php:914
|
745 |
#, php-format
|
746 |
msgid "By %s"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: bws_menu.php:888
|
750 |
msgid "Details"
|
751 |
msgstr ""
|
752 |
|
753 |
# @ default
|
754 |
+
#: bws_menu.php:920
|
755 |
#, fuzzy
|
756 |
msgid "Already Installed"
|
757 |
msgstr "Instalar %s"
|
758 |
|
759 |
# @ captcha
|
760 |
+
#: bws_menu.php:936
|
761 |
msgid "Environment"
|
762 |
msgstr "Ambiente"
|
763 |
|
764 |
# @ captcha
|
765 |
+
#: bws_menu.php:947
|
766 |
msgid "Active Plugins"
|
767 |
msgstr "Plugins Ativos"
|
768 |
|
769 |
# @ captcha
|
770 |
+
#: bws_menu.php:960
|
771 |
msgid "Inactive Plugins"
|
772 |
msgstr "Plugins Inativos"
|
773 |
|
774 |
# @ captcha
|
775 |
+
#: bws_menu.php:976
|
776 |
msgid "Send to support"
|
777 |
msgstr "Enviar para o suporte"
|
778 |
|
779 |
# @ captcha
|
780 |
+
#: bws_menu.php:983
|
781 |
msgid "Send to custom email »"
|
782 |
msgstr "Enviar para email personalizado »"
|
783 |
|
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,694 @@ 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 |
-
|
|
|
|
|
|
|
|
|
70 |
msgid "Wrong license key"
|
71 |
msgstr "Неправильный лицензионный ключ"
|
72 |
|
73 |
-
#: bws_functions.php:
|
74 |
-
#: bws_functions.php:
|
75 |
-
#: bws_functions.php:
|
76 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
77 |
msgstr "Что-то пошло не так. Повторите попытку позже. Если ошибка появится снова, пожалуйста, свяжитесь с нами"
|
78 |
|
79 |
-
#: bws_functions.php:
|
80 |
-
#: bws_functions.php:
|
81 |
-
#: bws_functions.php:
|
82 |
msgid "We are sorry for inconvenience."
|
83 |
msgstr "Приносим извинения за неудобства."
|
84 |
|
85 |
-
#: bws_functions.php:
|
86 |
msgid "This license key is bind to another site"
|
87 |
msgstr "Этот лицензионный ключ привязан к другому сайту"
|
88 |
|
89 |
-
#: bws_functions.php:
|
90 |
-
#: bws_functions.php:
|
91 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
92 |
msgstr "К сожалению, вы превысили количество доступных попыток в день. Пожалуйста, загрузите плагин вручную."
|
93 |
|
94 |
-
#: bws_functions.php:
|
95 |
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
96 |
msgstr "К сожалению, время использования вашей лицензии истекло. Для получения обновлений приоритетного саппорта вам нужно продлить лицензию перейдя на вашей"
|
97 |
|
98 |
-
#: bws_functions.php:
|
99 |
-
msgid "Unfortunately, the
|
100 |
-
msgstr "К сожалению,
|
101 |
|
102 |
-
#: bws_functions.php:
|
103 |
-
#: bws_functions.php:
|
104 |
-
#: bws_functions.php:
|
105 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
106 |
msgstr "Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
|
107 |
|
108 |
-
#: bws_functions.php:
|
109 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
110 |
msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
|
111 |
|
112 |
-
#: bws_functions.php:
|
113 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
114 |
msgstr "Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. Пожалуйста, загрузите плагин вручную"
|
115 |
|
116 |
-
#: bws_functions.php:
|
117 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
118 |
msgstr "Папка загрузки не доступна для записи. Пожалуйста, загрузите плагин вручную"
|
119 |
|
120 |
-
#: bws_functions.php:
|
121 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
122 |
msgstr "Что-то пошло не так. Повторите попытку позже или загрузите плагин вручную. Приносим извинения за неудобства."
|
123 |
|
124 |
-
#: bws_functions.php:
|
125 |
msgid "Please, enter Your license key"
|
126 |
msgstr "Пожалуйста, введите ваш лицензионный ключ"
|
127 |
|
128 |
-
#: bws_functions.php:
|
129 |
-
msgid "Congratulations! The
|
130 |
-
msgstr "Поздравляем!
|
131 |
|
132 |
-
#: bws_functions.php:
|
133 |
-
#: bws_functions.php:
|
134 |
msgid "Please, go to"
|
135 |
msgstr "Пожалуйста, перейдите на"
|
136 |
|
137 |
-
#: bws_functions.php:
|
138 |
-
#: bws_functions.php:
|
139 |
msgid "the setting page"
|
140 |
msgstr "страницу настроек"
|
141 |
|
142 |
-
#: bws_functions.php:
|
143 |
-
#: bws_functions.php:
|
144 |
msgid "You will be redirected automatically in 5 seconds."
|
145 |
msgstr "Вы будете перенаправлены автоматически через 5 секунд."
|
146 |
|
147 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
148 |
msgid "You can download and activate"
|
149 |
msgstr "Вы можете скачать и активировать"
|
150 |
|
151 |
-
#: bws_functions.php:
|
152 |
msgid "version of this plugin by entering Your license key."
|
153 |
msgstr "версию этого плагина, введя ваш лицензионный ключ."
|
154 |
|
155 |
-
#: bws_functions.php:
|
156 |
-
#: bws_functions.php:
|
157 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
158 |
msgstr "Вы можете найти ваш лицензионный ключ на вашей личной странице Client area, нажав на ссылку"
|
159 |
|
160 |
-
#: bws_functions.php:
|
161 |
-
#: bws_functions.php:
|
162 |
msgid "(your username is the email you specify when purchasing the product)."
|
163 |
msgstr "(ваше имя пользователя - это электронный адрес, указанный при покупке продукта)."
|
164 |
|
165 |
-
#: bws_functions.php:
|
|
|
166 |
msgid "or"
|
167 |
msgstr "или"
|
168 |
|
169 |
-
#: bws_functions.php:
|
170 |
#, php-format
|
171 |
msgid "Start Your Free %s-Day Trial Now"
|
172 |
msgstr "Попробуйте %s-дневную Trial версию бесплатно"
|
173 |
|
174 |
-
#: bws_functions.php:
|
175 |
-
#: bws_functions.php:
|
176 |
-
#: bws_functions.php:
|
177 |
-
#: bws_functions.php:
|
178 |
-
#: bws_menu.php:
|
179 |
-
#: bws_menu.php:
|
180 |
msgid "Activate"
|
181 |
msgstr "Активировать"
|
182 |
|
183 |
-
#: bws_functions.php:
|
184 |
-
#: bws_functions.php:
|
185 |
#, php-format
|
186 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
187 |
msgstr "Чтобы продолжить пользоваться плагином, необходимо приобрести %s лицензию."
|
188 |
|
189 |
-
#: bws_functions.php:
|
190 |
msgid "After that you can activate it by entering your license key."
|
191 |
msgstr "После этого вы сможете активировать его введя лицензионный ключ."
|
192 |
|
193 |
-
#: bws_functions.php:
|
194 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
195 |
msgstr "К сожалению, вы превысили количество доступных попыток."
|
196 |
|
197 |
-
#: bws_functions.php:
|
198 |
-
msgid "Congratulations! The
|
199 |
-
msgstr "Поздравляем!
|
200 |
|
201 |
-
#: bws_functions.php:
|
202 |
msgid "Wrong license key."
|
203 |
msgstr "Неправильный лицензионный ключ."
|
204 |
|
205 |
-
#: bws_functions.php:
|
206 |
msgid "This license key is bind to another site."
|
207 |
msgstr "Этот лицензионный ключ привязан к другому сайту."
|
208 |
|
209 |
-
#: bws_functions.php:
|
210 |
msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
|
211 |
msgstr "Лицензионный ключ принят, но срок действия лицензии истек. Если вы хотите обновлять плагин в будущем, вы должны продлить лицензию."
|
212 |
|
213 |
-
#: bws_functions.php:
|
214 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
215 |
msgstr "К сожалению, вы превысили количество доступных попыток."
|
216 |
|
217 |
-
#: bws_functions.php:
|
218 |
-
msgid "Unfortunately, the
|
219 |
-
msgstr "К сожалению,
|
220 |
|
221 |
-
#: bws_functions.php:
|
222 |
-
msgid "The
|
223 |
-
msgstr "Ключ
|
224 |
|
225 |
-
#: bws_functions.php:
|
226 |
msgid "The license key is valid."
|
227 |
msgstr "Лицензионный ключ действителен."
|
228 |
|
229 |
-
#: bws_functions.php:
|
230 |
msgid "Your license will expire on"
|
231 |
msgstr "Ваша лицензия истечет"
|
232 |
|
233 |
-
#: bws_functions.php:
|
234 |
msgid "Please, enter your license key"
|
235 |
msgstr "Пожалуйста, введите Ваш лицензионный ключ"
|
236 |
|
237 |
-
#: bws_functions.php:
|
238 |
msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
|
239 |
msgstr "При необходимости вы можете проверить валидность лицензионного ключа или повторно ввести его в поле ниже. Вы можете найти ваш лицензионный ключ на своей личной странице - Client area - на нашем сайте"
|
240 |
|
241 |
-
#: bws_functions.php:
|
242 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
243 |
-
msgstr "(ваш пользователь это емейл, который вы указывали при покупке продукта). При необходимости нажмите \"
|
244 |
|
245 |
-
#: bws_functions.php:
|
246 |
msgid "Check license key"
|
247 |
msgstr "Проверка лицензионного ключа"
|
248 |
|
249 |
-
#: bws_functions.php:
|
250 |
msgid "WARNING: Illegal use notification"
|
251 |
msgstr "ВНИМАНИЕ: уведомление о незаконном использовании"
|
252 |
|
253 |
-
#: bws_functions.php:
|
254 |
msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
|
255 |
msgstr "Вы можете использовать одну лицензию Pro плагина только для одного домена. Пожалуйста, проверьте и отредактируйте при необходимости лицензию или домен, используя Ваш личный Client Area. Мы настоятельно рекомендуем вам решить проблему в течение 24 часов, в противном случае плагин будет деактивирован."
|
256 |
|
257 |
-
#: bws_functions.php:
|
258 |
-
msgid "Notice: Your
|
259 |
-
msgstr "Внимание: Срок действия
|
260 |
|
261 |
-
#: bws_functions.php:
|
262 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
263 |
msgstr "Время использования вашей лицензии истекло. Если вы хотите обновлять ваш плагин в дальнейшем и иметь приоритетную тех.поддержку, то вам нужно продлить лицензию."
|
264 |
|
265 |
-
#: bws_functions.php:
|
266 |
-
#: bws_functions.php:
|
267 |
-
#: bws_menu.php:
|
268 |
-
#: bws_menu.php:
|
269 |
-
#: bws_menu.php:
|
270 |
-
#: bws_menu.php:
|
271 |
-
#: bws_menu.php:
|
272 |
msgid "Learn more"
|
273 |
msgstr "Подробнее"
|
274 |
|
275 |
-
#: bws_functions.php:
|
276 |
#, php-format
|
277 |
-
msgid "Notice: You are using the
|
278 |
-
msgstr "Внимание: Вы используете
|
279 |
|
280 |
-
#: bws_functions.php:
|
281 |
-
msgid "Notice: You are using the
|
282 |
-
msgstr "Внимание: Вы используете
|
283 |
|
284 |
-
#: bws_functions.php:
|
285 |
-
msgid "The
|
286 |
-
msgstr "Ваша лицензия
|
287 |
|
288 |
-
#: bws_functions.php:
|
289 |
msgid "You license for"
|
290 |
msgstr "Ваш лицензионный ключ для"
|
291 |
|
292 |
-
#: bws_functions.php:
|
293 |
msgid "expires on"
|
294 |
msgstr "истекает"
|
295 |
|
296 |
-
#: bws_functions.php:
|
297 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
298 |
msgstr "и вы не будете получать приоритетную тех.поддержку или обновления."
|
299 |
|
300 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
301 |
msgid "Close"
|
302 |
msgstr "Закрыть"
|
303 |
|
304 |
-
#: bws_functions.php:
|
305 |
-
#: bws_functions.php:784
|
306 |
msgid "Restore all plugin settings to defaults"
|
307 |
-
msgstr "Восстановить все настройки плагина к настройкам
|
308 |
|
309 |
-
#: bws_functions.php:
|
310 |
-
#: bws_functions.php:786
|
311 |
msgid "Restore settings"
|
312 |
msgstr "Восстановить настройки"
|
313 |
|
314 |
-
#: bws_functions.php:
|
315 |
msgid "Are you sure you want to restore all settings by default?"
|
316 |
-
msgstr "Вы уверены что хотите восстановить все настройки плагина к настройкам
|
317 |
|
318 |
-
#: bws_functions.php:
|
319 |
msgid "Yes, restore all settings"
|
320 |
msgstr "Да, восстановить все настройки"
|
321 |
|
322 |
-
#: bws_functions.php:
|
323 |
msgid "No, go back to the settings page"
|
324 |
-
msgstr "Нет,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
325 |
|
326 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
327 |
msgid "Not set"
|
328 |
msgstr "Не задан"
|
329 |
|
330 |
-
#: bws_menu.php:
|
331 |
-
#: bws_menu.php:
|
332 |
msgid "On"
|
333 |
msgstr "Вкл"
|
334 |
|
335 |
-
#: bws_menu.php:
|
336 |
-
#: bws_menu.php:
|
337 |
msgid "Off"
|
338 |
msgstr "Выкл"
|
339 |
|
340 |
-
#: bws_menu.php:
|
341 |
-
#: bws_menu.php:
|
342 |
-
#: bws_menu.php:
|
343 |
-
#: bws_menu.php:
|
344 |
-
#: bws_menu.php:
|
345 |
-
#: bws_menu.php:
|
346 |
msgid "N/A"
|
347 |
msgstr "Неизвестно"
|
348 |
|
349 |
-
#: bws_menu.php:
|
350 |
msgid " Mb"
|
351 |
msgstr "Mb"
|
352 |
|
353 |
-
#: bws_menu.php:
|
354 |
-
#: bws_menu.php:
|
355 |
-
#: bws_menu.php:
|
356 |
-
#: bws_menu.php:
|
357 |
msgid "Yes"
|
358 |
msgstr "Да"
|
359 |
|
360 |
-
#: bws_menu.php:
|
361 |
-
#: bws_menu.php:
|
362 |
-
#: bws_menu.php:
|
363 |
-
#: bws_menu.php:
|
364 |
msgid "No"
|
365 |
msgstr "Нет"
|
366 |
|
367 |
-
#: bws_menu.php:
|
368 |
msgid "Operating System"
|
369 |
msgstr "Операционная система"
|
370 |
|
371 |
-
#: bws_menu.php:
|
372 |
msgid "Server"
|
373 |
msgstr "Тип сервера"
|
374 |
|
375 |
-
#: bws_menu.php:
|
376 |
msgid "Memory usage"
|
377 |
msgstr "Памяти использовано"
|
378 |
|
379 |
-
#: bws_menu.php:
|
380 |
msgid "MYSQL Version"
|
381 |
msgstr "Версия MYSQL"
|
382 |
|
383 |
-
#: bws_menu.php:
|
384 |
msgid "SQL Mode"
|
385 |
msgstr "Режим SQL"
|
386 |
|
387 |
-
#: bws_menu.php:
|
388 |
msgid "PHP Version"
|
389 |
msgstr "Версия PHP"
|
390 |
|
391 |
-
#: bws_menu.php:
|
392 |
msgid "PHP Safe Mode"
|
393 |
msgstr "PHP Safe Mode"
|
394 |
|
395 |
-
#: bws_menu.php:
|
396 |
msgid "PHP Allow URL fopen"
|
397 |
msgstr "PHP Allow URL fopen"
|
398 |
|
399 |
-
#: bws_menu.php:
|
400 |
msgid "PHP Memory Limit"
|
401 |
msgstr "Лимит памяти"
|
402 |
|
403 |
-
#: bws_menu.php:
|
404 |
msgid "PHP Max Upload Size"
|
405 |
msgstr "Макс. размер загружаемого файла"
|
406 |
|
407 |
-
#: bws_menu.php:
|
408 |
msgid "PHP Max Post Size"
|
409 |
msgstr "Макс. размер записи"
|
410 |
|
411 |
-
#: bws_menu.php:
|
412 |
msgid "PHP Max Script Execute Time"
|
413 |
msgstr "Макс. время выполнения сценария"
|
414 |
|
415 |
-
#: bws_menu.php:
|
416 |
msgid "PHP Exif support"
|
417 |
msgstr "Поддержка PHP Exif"
|
418 |
|
419 |
-
#: bws_menu.php:
|
420 |
msgid "PHP IPTC support"
|
421 |
msgstr "Поддержка PHP IPTC"
|
422 |
|
423 |
-
#: bws_menu.php:
|
424 |
msgid "PHP XML support"
|
425 |
msgstr "Поддержка PHP XML"
|
426 |
|
427 |
-
#: bws_menu.php:
|
428 |
msgid "Site URL"
|
429 |
msgstr "Адрес сайта"
|
430 |
|
431 |
-
#: bws_menu.php:
|
432 |
msgid "Home URL"
|
433 |
msgstr "Основной адрес сайта"
|
434 |
|
435 |
-
#: bws_menu.php:
|
436 |
msgid "WordPress Version"
|
437 |
msgstr "Версия WordPress"
|
438 |
|
439 |
-
#: bws_menu.php:
|
440 |
msgid "WordPress DB Version"
|
441 |
msgstr "Версия базы данных WordPress"
|
442 |
|
443 |
-
#: bws_menu.php:
|
444 |
msgid "Multisite"
|
445 |
msgstr "Мультиблог"
|
446 |
|
447 |
-
#: bws_menu.php:
|
448 |
msgid "Active Theme"
|
449 |
msgstr "Текущая тема"
|
450 |
|
451 |
-
#: bws_menu.php:
|
452 |
msgid "Please enter a valid email address."
|
453 |
msgstr "Пожалуйста, введите валидный емайл."
|
454 |
|
455 |
-
#: bws_menu.php:
|
456 |
msgid "Email with system info is sent to "
|
457 |
-
msgstr "
|
458 |
|
459 |
-
#: bws_menu.php:
|
460 |
msgid "Thank you for contacting us."
|
461 |
msgstr "Спасибо что связались с нами."
|
462 |
|
463 |
-
#: bws_menu.php:
|
464 |
msgid "Sorry, email message could not be delivered."
|
465 |
-
msgstr "Извините, ваш
|
466 |
|
467 |
-
#: bws_menu.php:
|
468 |
msgid "Need help?"
|
469 |
msgstr "Нужна помощь?"
|
470 |
|
471 |
-
#: bws_menu.php:
|
472 |
msgid "Client area"
|
473 |
msgstr "Client area"
|
474 |
|
475 |
-
#: bws_menu.php:
|
476 |
-
#: bws_menu.php:
|
477 |
msgid "System status"
|
478 |
msgstr "Системная информация"
|
479 |
|
480 |
-
#: bws_menu.php:
|
481 |
msgid "Plugins"
|
482 |
msgstr "Плагины"
|
483 |
|
484 |
-
#: bws_menu.php:
|
485 |
msgid "Themes"
|
486 |
msgstr "Темы"
|
487 |
|
488 |
-
#: bws_menu.php:
|
489 |
msgid "All"
|
490 |
msgstr "Все"
|
491 |
|
492 |
-
#: bws_menu.php:
|
493 |
msgid "Installed"
|
494 |
msgstr "Установленные"
|
495 |
|
496 |
-
#: bws_menu.php:
|
497 |
msgid "Recommended"
|
498 |
msgstr "Рекомендованные"
|
499 |
|
500 |
-
#: bws_menu.php:
|
501 |
msgid "Installed plugins"
|
502 |
msgstr "Установленные плагины"
|
503 |
|
504 |
-
#: bws_menu.php:
|
505 |
-
#: bws_menu.php:
|
506 |
msgid "Settings"
|
507 |
msgstr "Настройки"
|
508 |
|
509 |
-
#: bws_menu.php:
|
510 |
-
#: bws_menu.php:
|
511 |
msgid "Activate this plugin"
|
512 |
msgstr "Активировать плагин"
|
513 |
|
514 |
-
#: bws_menu.php:
|
515 |
-
#: bws_menu.php:
|
516 |
-
#: bws_menu.php:
|
517 |
msgid "Go"
|
518 |
msgstr "Перейти на"
|
519 |
|
520 |
-
#: bws_menu.php:
|
521 |
-
#: bws_menu.php:
|
522 |
-
#: bws_menu.php:
|
523 |
msgid "DONATE"
|
524 |
msgstr "Пожертвовать"
|
525 |
|
526 |
-
#: bws_menu.php:
|
527 |
msgid "Recommended plugins"
|
528 |
msgstr "Рекомендованные к установке плагины"
|
529 |
|
530 |
-
#: bws_menu.php:
|
531 |
msgid "Install now"
|
532 |
msgstr "Установить"
|
533 |
|
534 |
-
#: bws_menu.php:
|
535 |
msgid "Try again"
|
536 |
msgstr "Попробовать снова"
|
537 |
|
538 |
-
#: bws_menu.php:
|
539 |
#, php-format
|
540 |
msgid "Preview “%s”"
|
541 |
msgstr "Просмотр “%s”"
|
542 |
|
543 |
-
#: bws_menu.php:
|
544 |
#, php-format
|
545 |
msgid "Install %s"
|
546 |
msgstr "Установлено %s"
|
547 |
|
548 |
-
#: bws_menu.php:
|
549 |
msgid "Install Now"
|
550 |
msgstr "Установить"
|
551 |
|
552 |
-
#: bws_menu.php:
|
553 |
#, php-format
|
554 |
msgid "Update to version %s"
|
555 |
msgstr "Обновить до версии %s"
|
556 |
|
557 |
-
#: bws_menu.php:
|
558 |
msgid "Update"
|
559 |
msgstr "Обновить"
|
560 |
|
561 |
-
#: bws_menu.php:
|
562 |
#, php-format
|
563 |
msgid "Preview %s"
|
564 |
msgstr "Просмотр %s"
|
565 |
|
566 |
-
#: bws_menu.php:
|
567 |
msgid "Preview"
|
568 |
msgstr "Просмотр"
|
569 |
|
570 |
-
#: bws_menu.php:
|
571 |
-
#: bws_menu.php:
|
572 |
#, php-format
|
573 |
msgid "By %s"
|
574 |
msgstr "%s"
|
575 |
|
576 |
-
#: bws_menu.php:
|
577 |
msgid "Details"
|
578 |
msgstr "Детали"
|
579 |
|
580 |
-
#: bws_menu.php:
|
581 |
msgid "Already Installed"
|
582 |
msgstr "Уже установлена"
|
583 |
|
584 |
-
#: bws_menu.php:
|
585 |
msgid "Environment"
|
586 |
msgstr "Системная среда"
|
587 |
|
588 |
-
#: bws_menu.php:
|
589 |
msgid "Active Plugins"
|
590 |
msgstr "Активированные плагины"
|
591 |
|
592 |
-
#: bws_menu.php:
|
593 |
msgid "Inactive Plugins"
|
594 |
msgstr "Неактивированные плагины"
|
595 |
|
596 |
-
#: bws_menu.php:
|
597 |
msgid "Send to support"
|
598 |
msgstr "Отправить в тех. поддержку"
|
599 |
|
600 |
-
#: bws_menu.php:
|
601 |
msgid "Send to custom email »"
|
602 |
msgstr "Отправить на емейл »"
|
603 |
|
|
|
|
|
|
|
604 |
#~ msgid ""
|
605 |
#~ "(your username is the email you specify when purchasing the product), "
|
606 |
#~ "where you can make the necessary changes."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-10-09 16:33+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-10-09 17:02+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: bws_functions.php:39
|
20 |
+
#: bws_functions.php:63
|
21 |
msgid "requires"
|
22 |
msgstr "требует"
|
23 |
|
24 |
+
#: bws_functions.php:41
|
25 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
26 |
msgstr "или выше, поэтому он был деактивирован! Пожалуйста, обновите WordPress и попробуйте еще раз."
|
27 |
|
28 |
+
#: bws_functions.php:42
|
29 |
msgid "Back to the WordPress"
|
30 |
msgstr "Вернуться к WordPress на"
|
31 |
|
32 |
+
#: bws_functions.php:44
|
33 |
msgid "Plugins page"
|
34 |
msgstr "Страницу плагинов"
|
35 |
|
36 |
+
#: bws_functions.php:65
|
37 |
+
msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
|
38 |
+
msgstr "или выше! Мы не гарантируем, что наш плагин будет работать корректно. Пожалуйста, обновите WordPress до последней версии."
|
39 |
+
|
40 |
+
#: bws_functions.php:122
|
41 |
msgid "It’s time to upgrade your"
|
42 |
msgstr "Настало время обновить Ваш"
|
43 |
|
44 |
+
#: bws_functions.php:122
|
45 |
msgid "to"
|
46 |
msgstr "до"
|
47 |
|
48 |
+
#: bws_functions.php:122
|
49 |
msgid "version!"
|
50 |
msgstr "версии!"
|
51 |
|
52 |
+
#: bws_functions.php:123
|
53 |
msgid "Extend standard plugin functionality with new great options."
|
54 |
msgstr "Расширяет возможности стандартного функционала плагина."
|
55 |
|
56 |
+
#: bws_functions.php:126
|
57 |
+
#: bws_functions.php:561
|
58 |
msgid "Learn More"
|
59 |
msgstr "Подробнее"
|
60 |
|
61 |
+
#: bws_functions.php:143
|
62 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
63 |
msgstr "Если вам понравился плагин, пожалуйста, поставьте нам 5 звезд на WordPress"
|
64 |
|
65 |
+
#: bws_functions.php:144
|
66 |
msgid "Rate the plugin"
|
67 |
msgstr "Оценить плагин"
|
68 |
|
69 |
+
#: bws_functions.php:147
|
70 |
msgid "If there is something wrong about it, please contact us"
|
71 |
msgstr "Если у вас есть какие-то вопросы, обращайтесь"
|
72 |
|
73 |
+
#: bws_functions.php:179
|
74 |
+
msgid "Check premium options on the plugin settings page!"
|
75 |
+
msgstr "Просмотрите премиум опции на странице настроек плагина!"
|
76 |
+
|
77 |
+
#: bws_functions.php:186
|
78 |
+
#: bws_functions.php:222
|
79 |
msgid "Wrong license key"
|
80 |
msgstr "Неправильный лицензионный ключ"
|
81 |
|
82 |
+
#: bws_functions.php:216
|
83 |
+
#: bws_functions.php:474
|
84 |
+
#: bws_functions.php:525
|
85 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
86 |
msgstr "Что-то пошло не так. Повторите попытку позже. Если ошибка появится снова, пожалуйста, свяжитесь с нами"
|
87 |
|
88 |
+
#: bws_functions.php:216
|
89 |
+
#: bws_functions.php:474
|
90 |
+
#: bws_functions.php:525
|
91 |
msgid "We are sorry for inconvenience."
|
92 |
msgstr "Приносим извинения за неудобства."
|
93 |
|
94 |
+
#: bws_functions.php:224
|
95 |
msgid "This license key is bind to another site"
|
96 |
msgstr "Этот лицензионный ключ привязан к другому сайту"
|
97 |
|
98 |
+
#: bws_functions.php:226
|
99 |
+
#: bws_functions.php:384
|
100 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
101 |
msgstr "К сожалению, вы превысили количество доступных попыток в день. Пожалуйста, загрузите плагин вручную."
|
102 |
|
103 |
+
#: bws_functions.php:228
|
104 |
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
105 |
msgstr "К сожалению, время использования вашей лицензии истекло. Для получения обновлений приоритетного саппорта вам нужно продлить лицензию перейдя на вашей"
|
106 |
|
107 |
+
#: bws_functions.php:230
|
108 |
+
msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
|
109 |
+
msgstr "К сожалению, Pro лицензия уже была установлена на этом доменен. Pro Trial лицензия может быть установлена только один раз."
|
110 |
|
111 |
+
#: bws_functions.php:251
|
112 |
+
#: bws_functions.php:273
|
113 |
+
#: bws_functions.php:295
|
114 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
115 |
msgstr "Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
|
116 |
|
117 |
+
#: bws_functions.php:263
|
118 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
119 |
msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
|
120 |
|
121 |
+
#: bws_functions.php:269
|
122 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
123 |
msgstr "Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. Пожалуйста, загрузите плагин вручную"
|
124 |
|
125 |
+
#: bws_functions.php:276
|
126 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
127 |
msgstr "Папка загрузки не доступна для записи. Пожалуйста, загрузите плагин вручную"
|
128 |
|
129 |
+
#: bws_functions.php:299
|
130 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
131 |
msgstr "Что-то пошло не так. Повторите попытку позже или загрузите плагин вручную. Приносим извинения за неудобства."
|
132 |
|
133 |
+
#: bws_functions.php:324
|
134 |
msgid "Please, enter Your license key"
|
135 |
msgstr "Пожалуйста, введите ваш лицензионный ключ"
|
136 |
|
137 |
+
#: bws_functions.php:348
|
138 |
+
msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
|
139 |
+
msgstr "Поздравляем! Pro версия плагина была успешно загружена и активирована."
|
140 |
|
141 |
+
#: bws_functions.php:350
|
142 |
+
#: bws_functions.php:441
|
143 |
msgid "Please, go to"
|
144 |
msgstr "Пожалуйста, перейдите на"
|
145 |
|
146 |
+
#: bws_functions.php:350
|
147 |
+
#: bws_functions.php:441
|
148 |
msgid "the setting page"
|
149 |
msgstr "страницу настроек"
|
150 |
|
151 |
+
#: bws_functions.php:351
|
152 |
+
#: bws_functions.php:442
|
153 |
msgid "You will be redirected automatically in 5 seconds."
|
154 |
msgstr "Вы будете перенаправлены автоматически через 5 секунд."
|
155 |
|
156 |
+
#: bws_functions.php:358
|
157 |
+
msgid "Show Pro features"
|
158 |
+
msgstr "Показать Pro опции"
|
159 |
+
|
160 |
+
#: bws_functions.php:365
|
161 |
msgid "You can download and activate"
|
162 |
msgstr "Вы можете скачать и активировать"
|
163 |
|
164 |
+
#: bws_functions.php:367
|
165 |
msgid "version of this plugin by entering Your license key."
|
166 |
msgstr "версию этого плагина, введя ваш лицензионный ключ."
|
167 |
|
168 |
+
#: bws_functions.php:369
|
169 |
+
#: bws_functions.php:410
|
170 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
171 |
msgstr "Вы можете найти ваш лицензионный ключ на вашей личной странице Client area, нажав на ссылку"
|
172 |
|
173 |
+
#: bws_functions.php:371
|
174 |
+
#: bws_functions.php:412
|
175 |
msgid "(your username is the email you specify when purchasing the product)."
|
176 |
msgstr "(ваше имя пользователя - это электронный адрес, указанный при покупке продукта)."
|
177 |
|
178 |
+
#: bws_functions.php:375
|
179 |
+
#: bws_functions.php:659
|
180 |
msgid "or"
|
181 |
msgstr "или"
|
182 |
|
183 |
+
#: bws_functions.php:375
|
184 |
#, php-format
|
185 |
msgid "Start Your Free %s-Day Trial Now"
|
186 |
msgstr "Попробуйте %s-дневную Trial версию бесплатно"
|
187 |
|
188 |
+
#: bws_functions.php:381
|
189 |
+
#: bws_functions.php:390
|
190 |
+
#: bws_functions.php:420
|
191 |
+
#: bws_functions.php:428
|
192 |
+
#: bws_menu.php:693
|
193 |
+
#: bws_menu.php:750
|
194 |
msgid "Activate"
|
195 |
msgstr "Активировать"
|
196 |
|
197 |
+
#: bws_functions.php:407
|
198 |
+
#: bws_functions.php:500
|
199 |
#, php-format
|
200 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
201 |
msgstr "Чтобы продолжить пользоваться плагином, необходимо приобрести %s лицензию."
|
202 |
|
203 |
+
#: bws_functions.php:408
|
204 |
msgid "After that you can activate it by entering your license key."
|
205 |
msgstr "После этого вы сможете активировать его введя лицензионный ключ."
|
206 |
|
207 |
+
#: bws_functions.php:422
|
208 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
209 |
msgstr "К сожалению, вы превысили количество доступных попыток."
|
210 |
|
211 |
+
#: bws_functions.php:439
|
212 |
+
msgid "Congratulations! The Pro license of the plugin is successfully activated."
|
213 |
+
msgstr "Поздравляем! Pro версия плагина была успешно активирована."
|
214 |
|
215 |
+
#: bws_functions.php:480
|
216 |
msgid "Wrong license key."
|
217 |
msgstr "Неправильный лицензионный ключ."
|
218 |
|
219 |
+
#: bws_functions.php:482
|
220 |
msgid "This license key is bind to another site."
|
221 |
msgstr "Этот лицензионный ключ привязан к другому сайту."
|
222 |
|
223 |
+
#: bws_functions.php:484
|
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:486
|
228 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
229 |
msgstr "К сожалению, вы превысили количество доступных попыток."
|
230 |
|
231 |
+
#: bws_functions.php:488
|
232 |
+
msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
|
233 |
+
msgstr "К сожалению, Pro Trial версия плагина уже устанавливалась на этот домен. Pro Trial версию можно устанавливать лишь один раз."
|
234 |
|
235 |
+
#: bws_functions.php:492
|
236 |
+
msgid "The Pro Trial license key is valid."
|
237 |
+
msgstr "Ключ Pro Trial версии действителен."
|
238 |
|
239 |
+
#: bws_functions.php:494
|
240 |
msgid "The license key is valid."
|
241 |
msgstr "Лицензионный ключ действителен."
|
242 |
|
243 |
+
#: bws_functions.php:497
|
244 |
msgid "Your license will expire on"
|
245 |
msgstr "Ваша лицензия истечет"
|
246 |
|
247 |
+
#: bws_functions.php:530
|
248 |
msgid "Please, enter your license key"
|
249 |
msgstr "Пожалуйста, введите Ваш лицензионный ключ"
|
250 |
|
251 |
+
#: bws_functions.php:543
|
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 "При необходимости вы можете проверить валидность лицензионного ключа или повторно ввести его в поле ниже. Вы можете найти ваш лицензионный ключ на своей личной странице - Client area - на нашем сайте"
|
254 |
|
255 |
+
#: bws_functions.php:543
|
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:547
|
260 |
msgid "Check license key"
|
261 |
msgstr "Проверка лицензионного ключа"
|
262 |
|
263 |
+
#: bws_functions.php:561
|
264 |
msgid "WARNING: Illegal use notification"
|
265 |
msgstr "ВНИМАНИЕ: уведомление о незаконном использовании"
|
266 |
|
267 |
+
#: bws_functions.php:561
|
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 "Вы можете использовать одну лицензию Pro плагина только для одного домена. Пожалуйста, проверьте и отредактируйте при необходимости лицензию или домен, используя Ваш личный Client Area. Мы настоятельно рекомендуем вам решить проблему в течение 24 часов, в противном случае плагин будет деактивирован."
|
270 |
|
271 |
+
#: bws_functions.php:569
|
272 |
+
msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
|
273 |
+
msgstr "Внимание: Срок действия Pro Trial версии истек. Чтобы продолжить пользоваться плагином, пожалуйста, приобретите лицензию Pro"
|
274 |
|
275 |
+
#: bws_functions.php:571
|
276 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
277 |
msgstr "Время использования вашей лицензии истекло. Если вы хотите обновлять ваш плагин в дальнейшем и иметь приоритетную тех.поддержку, то вам нужно продлить лицензию."
|
278 |
|
279 |
+
#: bws_functions.php:571
|
280 |
+
#: bws_functions.php:624
|
281 |
+
#: bws_menu.php:669
|
282 |
+
#: bws_menu.php:691
|
283 |
+
#: bws_menu.php:718
|
284 |
+
#: bws_menu.php:748
|
285 |
+
#: bws_menu.php:794
|
286 |
msgid "Learn more"
|
287 |
msgstr "Подробнее"
|
288 |
|
289 |
+
#: bws_functions.php:581
|
290 |
#, php-format
|
291 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
292 |
+
msgstr "Внимание: Вы используете Pro Trial версию плагина %s."
|
293 |
|
294 |
+
#: bws_functions.php:583
|
295 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
296 |
+
msgstr "Внимание: Вы используете Pro Trial версию плагина."
|
297 |
|
298 |
+
#: bws_functions.php:586
|
299 |
+
msgid "The Pro Trial license will expire on"
|
300 |
+
msgstr "Ваша лицензия Pro Trial версии плагина истекает"
|
301 |
|
302 |
+
#: bws_functions.php:624
|
303 |
msgid "You license for"
|
304 |
msgstr "Ваш лицензионный ключ для"
|
305 |
|
306 |
+
#: bws_functions.php:624
|
307 |
msgid "expires on"
|
308 |
msgstr "истекает"
|
309 |
|
310 |
+
#: bws_functions.php:624
|
311 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
312 |
msgstr "и вы не будете получать приоритетную тех.поддержку или обновления."
|
313 |
|
314 |
+
#: bws_functions.php:655
|
315 |
+
msgid "Thank you for installing"
|
316 |
+
msgstr "Спасибо за установку"
|
317 |
+
|
318 |
+
#: bws_functions.php:656
|
319 |
+
msgid "Let's get started"
|
320 |
+
msgstr "Давайте начнем"
|
321 |
+
|
322 |
+
#: bws_functions.php:657
|
323 |
+
msgid "Configure Settings"
|
324 |
+
msgstr "Настройка параметров"
|
325 |
+
|
326 |
+
#: bws_functions.php:660
|
327 |
+
msgid "Add New"
|
328 |
+
msgstr "Добавить"
|
329 |
+
|
330 |
+
#: bws_functions.php:664
|
331 |
+
msgid "Close notice"
|
332 |
+
msgstr "Закрыть"
|
333 |
+
|
334 |
+
#: bws_functions.php:677
|
335 |
+
msgid "Notice"
|
336 |
+
msgstr "Внимание"
|
337 |
+
|
338 |
+
#: bws_functions.php:677
|
339 |
+
msgid "The plugin's settings have been changed."
|
340 |
+
msgstr "Настройки плагина были изменены"
|
341 |
+
|
342 |
+
#: bws_functions.php:678
|
343 |
+
msgid "Save Changes"
|
344 |
+
msgstr "Сохранить изменения"
|
345 |
+
|
346 |
+
#: bws_functions.php:693
|
347 |
+
msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
|
348 |
+
msgstr "Вы всегда можете просмотреть премиум опции нажав на кнопку \"Показать Pro опции\" на вкладке \"Перейти на PRO\""
|
349 |
+
|
350 |
+
#: bws_functions.php:773
|
351 |
+
msgid "Add BWS Plugins Shortcode"
|
352 |
+
msgstr "Добавить шорткод BWS Плагина"
|
353 |
+
|
354 |
+
#: bws_functions.php:793
|
355 |
+
msgid "Add shortcode"
|
356 |
+
msgstr "Добавить шорткод"
|
357 |
+
|
358 |
+
#: bws_functions.php:793
|
359 |
+
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
360 |
+
msgstr "Добавьте шорткоды BestWebSoft плагинов с помощью этой кнопки."
|
361 |
+
|
362 |
+
#: bws_functions.php:833
|
363 |
msgid "Close"
|
364 |
msgstr "Закрыть"
|
365 |
|
366 |
+
#: bws_functions.php:926
|
|
|
367 |
msgid "Restore all plugin settings to defaults"
|
368 |
+
msgstr "Восстановить все настройки плагина к настройкам по умолчанию"
|
369 |
|
370 |
+
#: bws_functions.php:928
|
|
|
371 |
msgid "Restore settings"
|
372 |
msgstr "Восстановить настройки"
|
373 |
|
374 |
+
#: bws_functions.php:939
|
375 |
msgid "Are you sure you want to restore all settings by default?"
|
376 |
+
msgstr "Вы уверены что хотите восстановить все настройки плагина к настройкам по умолчанию?"
|
377 |
|
378 |
+
#: bws_functions.php:942
|
379 |
msgid "Yes, restore all settings"
|
380 |
msgstr "Да, восстановить все настройки"
|
381 |
|
382 |
+
#: bws_functions.php:943
|
383 |
msgid "No, go back to the settings page"
|
384 |
+
msgstr "Нет, вернуться на страницу настроек"
|
385 |
+
|
386 |
+
#: bws_functions.php:987
|
387 |
+
msgid "Plugin"
|
388 |
+
msgstr "Плагин"
|
389 |
+
|
390 |
+
#: bws_functions.php:996
|
391 |
+
msgid "Shortcode settings"
|
392 |
+
msgstr "Настройки шорткода"
|
393 |
+
|
394 |
+
#: bws_functions.php:1001
|
395 |
+
msgid "The shortcode will be inserted"
|
396 |
+
msgstr "Будет вставлен шорткод"
|
397 |
+
|
398 |
+
#: bws_functions.php:1006
|
399 |
+
msgid "Insert"
|
400 |
+
msgstr "Вставить"
|
401 |
+
|
402 |
+
#: bws_functions.php:1037
|
403 |
+
msgid "Visit Help Center"
|
404 |
+
msgstr "Перейти в Help Center"
|
405 |
+
|
406 |
+
#: bws_functions.php:1042
|
407 |
+
msgid "FAQ"
|
408 |
+
msgstr "FAQ"
|
409 |
|
410 |
+
#: bws_functions.php:1048
|
411 |
+
msgid "For more information:"
|
412 |
+
msgstr "Для дополнительной информации:"
|
413 |
+
|
414 |
+
#: bws_functions.php:1049
|
415 |
+
msgid "Documentation"
|
416 |
+
msgstr "Документация"
|
417 |
+
|
418 |
+
#: bws_functions.php:1050
|
419 |
+
msgid "Video Instructions"
|
420 |
+
msgstr "Видео инструкции"
|
421 |
+
|
422 |
+
#: bws_functions.php:1051
|
423 |
+
msgid "Submit a Request"
|
424 |
+
msgstr "Отправить запрос"
|
425 |
+
|
426 |
+
#: bws_menu.php:506
|
427 |
msgid "Not set"
|
428 |
msgstr "Не задан"
|
429 |
|
430 |
+
#: bws_menu.php:508
|
431 |
+
#: bws_menu.php:509
|
432 |
msgid "On"
|
433 |
msgstr "Вкл"
|
434 |
|
435 |
+
#: bws_menu.php:508
|
436 |
+
#: bws_menu.php:509
|
437 |
msgid "Off"
|
438 |
msgstr "Выкл"
|
439 |
|
440 |
+
#: bws_menu.php:510
|
441 |
+
#: bws_menu.php:511
|
442 |
+
#: bws_menu.php:512
|
443 |
+
#: bws_menu.php:513
|
444 |
+
#: bws_menu.php:514
|
445 |
+
#: bws_menu.php:526
|
446 |
msgid "N/A"
|
447 |
msgstr "Неизвестно"
|
448 |
|
449 |
+
#: bws_menu.php:514
|
450 |
msgid " Mb"
|
451 |
msgstr "Mb"
|
452 |
|
453 |
+
#: bws_menu.php:515
|
454 |
+
#: bws_menu.php:516
|
455 |
+
#: bws_menu.php:517
|
456 |
+
#: bws_menu.php:522
|
457 |
msgid "Yes"
|
458 |
msgstr "Да"
|
459 |
|
460 |
+
#: bws_menu.php:515
|
461 |
+
#: bws_menu.php:516
|
462 |
+
#: bws_menu.php:517
|
463 |
+
#: bws_menu.php:524
|
464 |
msgid "No"
|
465 |
msgstr "Нет"
|
466 |
|
467 |
+
#: bws_menu.php:534
|
468 |
msgid "Operating System"
|
469 |
msgstr "Операционная система"
|
470 |
|
471 |
+
#: bws_menu.php:535
|
472 |
msgid "Server"
|
473 |
msgstr "Тип сервера"
|
474 |
|
475 |
+
#: bws_menu.php:536
|
476 |
msgid "Memory usage"
|
477 |
msgstr "Памяти использовано"
|
478 |
|
479 |
+
#: bws_menu.php:537
|
480 |
msgid "MYSQL Version"
|
481 |
msgstr "Версия MYSQL"
|
482 |
|
483 |
+
#: bws_menu.php:538
|
484 |
msgid "SQL Mode"
|
485 |
msgstr "Режим SQL"
|
486 |
|
487 |
+
#: bws_menu.php:539
|
488 |
msgid "PHP Version"
|
489 |
msgstr "Версия PHP"
|
490 |
|
491 |
+
#: bws_menu.php:540
|
492 |
msgid "PHP Safe Mode"
|
493 |
msgstr "PHP Safe Mode"
|
494 |
|
495 |
+
#: bws_menu.php:541
|
496 |
msgid "PHP Allow URL fopen"
|
497 |
msgstr "PHP Allow URL fopen"
|
498 |
|
499 |
+
#: bws_menu.php:542
|
500 |
msgid "PHP Memory Limit"
|
501 |
msgstr "Лимит памяти"
|
502 |
|
503 |
+
#: bws_menu.php:543
|
504 |
msgid "PHP Max Upload Size"
|
505 |
msgstr "Макс. размер загружаемого файла"
|
506 |
|
507 |
+
#: bws_menu.php:544
|
508 |
msgid "PHP Max Post Size"
|
509 |
msgstr "Макс. размер записи"
|
510 |
|
511 |
+
#: bws_menu.php:545
|
512 |
msgid "PHP Max Script Execute Time"
|
513 |
msgstr "Макс. время выполнения сценария"
|
514 |
|
515 |
+
#: bws_menu.php:546
|
516 |
msgid "PHP Exif support"
|
517 |
msgstr "Поддержка PHP Exif"
|
518 |
|
519 |
+
#: bws_menu.php:547
|
520 |
msgid "PHP IPTC support"
|
521 |
msgstr "Поддержка PHP IPTC"
|
522 |
|
523 |
+
#: bws_menu.php:548
|
524 |
msgid "PHP XML support"
|
525 |
msgstr "Поддержка PHP XML"
|
526 |
|
527 |
+
#: bws_menu.php:549
|
528 |
msgid "Site URL"
|
529 |
msgstr "Адрес сайта"
|
530 |
|
531 |
+
#: bws_menu.php:550
|
532 |
msgid "Home URL"
|
533 |
msgstr "Основной адрес сайта"
|
534 |
|
535 |
+
#: bws_menu.php:553
|
536 |
msgid "WordPress Version"
|
537 |
msgstr "Версия WordPress"
|
538 |
|
539 |
+
#: bws_menu.php:554
|
540 |
msgid "WordPress DB Version"
|
541 |
msgstr "Версия базы данных WordPress"
|
542 |
|
543 |
+
#: bws_menu.php:555
|
544 |
msgid "Multisite"
|
545 |
msgstr "Мультиблог"
|
546 |
|
547 |
+
#: bws_menu.php:556
|
548 |
msgid "Active Theme"
|
549 |
msgstr "Текущая тема"
|
550 |
|
551 |
+
#: bws_menu.php:571
|
552 |
msgid "Please enter a valid email address."
|
553 |
msgstr "Пожалуйста, введите валидный емайл."
|
554 |
|
555 |
+
#: bws_menu.php:575
|
556 |
msgid "Email with system info is sent to "
|
557 |
+
msgstr "Емейл с системной информацией отправлен на"
|
558 |
|
559 |
+
#: bws_menu.php:579
|
560 |
msgid "Thank you for contacting us."
|
561 |
msgstr "Спасибо что связались с нами."
|
562 |
|
563 |
+
#: bws_menu.php:612
|
564 |
msgid "Sorry, email message could not be delivered."
|
565 |
+
msgstr "Извините, ваш емейл не может быть отправлен."
|
566 |
|
567 |
+
#: bws_menu.php:620
|
568 |
msgid "Need help?"
|
569 |
msgstr "Нужна помощь?"
|
570 |
|
571 |
+
#: bws_menu.php:621
|
572 |
msgid "Client area"
|
573 |
msgstr "Client area"
|
574 |
|
575 |
+
#: bws_menu.php:622
|
576 |
+
#: bws_menu.php:933
|
577 |
msgid "System status"
|
578 |
msgstr "Системная информация"
|
579 |
|
580 |
+
#: bws_menu.php:627
|
581 |
msgid "Plugins"
|
582 |
msgstr "Плагины"
|
583 |
|
584 |
+
#: bws_menu.php:629
|
585 |
msgid "Themes"
|
586 |
msgstr "Темы"
|
587 |
|
588 |
+
#: bws_menu.php:634
|
589 |
msgid "All"
|
590 |
msgstr "Все"
|
591 |
|
592 |
+
#: bws_menu.php:635
|
593 |
msgid "Installed"
|
594 |
msgstr "Установленные"
|
595 |
|
596 |
+
#: bws_menu.php:636
|
597 |
msgid "Recommended"
|
598 |
msgstr "Рекомендованные"
|
599 |
|
600 |
+
#: bws_menu.php:640
|
601 |
msgid "Installed plugins"
|
602 |
msgstr "Установленные плагины"
|
603 |
|
604 |
+
#: bws_menu.php:672
|
605 |
+
#: bws_menu.php:721
|
606 |
msgid "Settings"
|
607 |
msgstr "Настройки"
|
608 |
|
609 |
+
#: bws_menu.php:693
|
610 |
+
#: bws_menu.php:750
|
611 |
msgid "Activate this plugin"
|
612 |
msgstr "Активировать плагин"
|
613 |
|
614 |
+
#: bws_menu.php:708
|
615 |
+
#: bws_menu.php:738
|
616 |
+
#: bws_menu.php:784
|
617 |
msgid "Go"
|
618 |
msgstr "Перейти на"
|
619 |
|
620 |
+
#: bws_menu.php:712
|
621 |
+
#: bws_menu.php:742
|
622 |
+
#: bws_menu.php:788
|
623 |
msgid "DONATE"
|
624 |
msgstr "Пожертвовать"
|
625 |
|
626 |
+
#: bws_menu.php:758
|
627 |
msgid "Recommended plugins"
|
628 |
msgstr "Рекомендованные к установке плагины"
|
629 |
|
630 |
+
#: bws_menu.php:796
|
631 |
msgid "Install now"
|
632 |
msgstr "Установить"
|
633 |
|
634 |
+
#: bws_menu.php:817
|
635 |
msgid "Try again"
|
636 |
msgstr "Попробовать снова"
|
637 |
|
638 |
+
#: bws_menu.php:835
|
639 |
#, php-format
|
640 |
msgid "Preview “%s”"
|
641 |
msgstr "Просмотр “%s”"
|
642 |
|
643 |
+
#: bws_menu.php:866
|
644 |
#, php-format
|
645 |
msgid "Install %s"
|
646 |
msgstr "Установлено %s"
|
647 |
|
648 |
+
#: bws_menu.php:866
|
649 |
msgid "Install Now"
|
650 |
msgstr "Установить"
|
651 |
|
652 |
+
#: bws_menu.php:869
|
653 |
#, php-format
|
654 |
msgid "Update to version %s"
|
655 |
msgstr "Обновить до версии %s"
|
656 |
|
657 |
+
#: bws_menu.php:869
|
658 |
msgid "Update"
|
659 |
msgstr "Обновить"
|
660 |
|
661 |
+
#: bws_menu.php:876
|
662 |
#, php-format
|
663 |
msgid "Preview %s"
|
664 |
msgstr "Просмотр %s"
|
665 |
|
666 |
+
#: bws_menu.php:876
|
667 |
msgid "Preview"
|
668 |
msgstr "Просмотр"
|
669 |
|
670 |
+
#: bws_menu.php:882
|
671 |
+
#: bws_menu.php:914
|
672 |
#, php-format
|
673 |
msgid "By %s"
|
674 |
msgstr "%s"
|
675 |
|
676 |
+
#: bws_menu.php:888
|
677 |
msgid "Details"
|
678 |
msgstr "Детали"
|
679 |
|
680 |
+
#: bws_menu.php:920
|
681 |
msgid "Already Installed"
|
682 |
msgstr "Уже установлена"
|
683 |
|
684 |
+
#: bws_menu.php:936
|
685 |
msgid "Environment"
|
686 |
msgstr "Системная среда"
|
687 |
|
688 |
+
#: bws_menu.php:947
|
689 |
msgid "Active Plugins"
|
690 |
msgstr "Активированные плагины"
|
691 |
|
692 |
+
#: bws_menu.php:960
|
693 |
msgid "Inactive Plugins"
|
694 |
msgstr "Неактивированные плагины"
|
695 |
|
696 |
+
#: bws_menu.php:976
|
697 |
msgid "Send to support"
|
698 |
msgstr "Отправить в тех. поддержку"
|
699 |
|
700 |
+
#: bws_menu.php:983
|
701 |
msgid "Send to custom email »"
|
702 |
msgstr "Отправить на емейл »"
|
703 |
|
704 |
+
#~ msgid "Select Plugin"
|
705 |
+
#~ msgstr "Выберите плагин"
|
706 |
+
|
707 |
#~ msgid ""
|
708 |
#~ "(your username is the email you specify when purchasing the product), "
|
709 |
#~ "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,717 @@ 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 |
-
|
|
|
|
|
|
|
|
|
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 |
|
@@ -704,9 +809,6 @@ msgstr "Pošalji na korisnički mejl »"
|
|
704 |
#~ msgid "Upload File"
|
705 |
#~ msgstr "Učitaj fajl"
|
706 |
|
707 |
-
#~ msgid "Gallery Shortcode"
|
708 |
-
#~ msgstr "Kratak kod za Galeriju"
|
709 |
-
|
710 |
#~ msgid ""
|
711 |
#~ "The gallery temp directory (gallery-plugin/upload/files) is not available "
|
712 |
#~ "for record on your webserver. Please use the standard WP functionality to "
|
@@ -980,12 +1082,6 @@ msgstr "Pošalji na korisnički mejl »"
|
|
980 |
#~ msgid "Google +1"
|
981 |
#~ msgstr "Google +1"
|
982 |
|
983 |
-
#~ msgid "Save Changes"
|
984 |
-
#~ msgstr "Sačuvaj izmene"
|
985 |
-
|
986 |
-
#~ msgid "FAQ"
|
987 |
-
#~ msgstr "FAQ"
|
988 |
-
|
989 |
#~ msgid "Support"
|
990 |
#~ msgstr "Podrška"
|
991 |
|
@@ -998,9 +1094,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-10-09 14:46+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-10-09 14:46+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:39
|
21 |
+
#: bws_functions.php:63
|
22 |
msgid "requires"
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: bws_functions.php:41
|
26 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: bws_functions.php:42
|
30 |
msgid "Back to the WordPress"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: bws_functions.php:44
|
34 |
#, fuzzy
|
35 |
msgid "Plugins page"
|
36 |
msgstr "Pro moduli"
|
37 |
|
38 |
+
#: bws_functions.php:65
|
39 |
+
msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: bws_functions.php:122
|
43 |
msgid "It’s time to upgrade your"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: bws_functions.php:122
|
47 |
#, fuzzy
|
48 |
msgid "to"
|
49 |
msgstr "vrh"
|
50 |
|
51 |
+
#: bws_functions.php:122
|
52 |
#, fuzzy
|
53 |
msgid "version!"
|
54 |
msgstr "PHP Verzija"
|
55 |
|
56 |
+
#: bws_functions.php:123
|
57 |
msgid "Extend standard plugin functionality with new great options."
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: bws_functions.php:126
|
61 |
+
#: bws_functions.php:561
|
62 |
#, fuzzy
|
63 |
msgid "Learn More"
|
64 |
msgstr "Pročitaj više"
|
65 |
|
66 |
+
#: bws_functions.php:143
|
67 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: bws_functions.php:144
|
71 |
#, fuzzy
|
72 |
msgid "Rate the plugin"
|
73 |
msgstr "Aktivirani moduli"
|
74 |
|
75 |
+
#: bws_functions.php:147
|
76 |
#, fuzzy
|
77 |
msgid "If there is something wrong about it, please contact us"
|
78 |
msgstr "Ako imate pitanja molimo da nas kontaktirate preko"
|
79 |
|
80 |
+
#: bws_functions.php:179
|
81 |
+
msgid "Check premium options on the plugin settings page!"
|
82 |
+
msgstr ""
|
83 |
+
|
84 |
+
#: bws_functions.php:186
|
85 |
+
#: bws_functions.php:222
|
86 |
msgid "Wrong license key"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: bws_functions.php:216
|
90 |
+
#: bws_functions.php:474
|
91 |
+
#: bws_functions.php:525
|
92 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: bws_functions.php:216
|
96 |
+
#: bws_functions.php:474
|
97 |
+
#: bws_functions.php:525
|
98 |
msgid "We are sorry for inconvenience."
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: bws_functions.php:224
|
102 |
msgid "This license key is bind to another site"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: bws_functions.php:226
|
106 |
+
#: bws_functions.php:384
|
107 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: bws_functions.php:228
|
111 |
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: bws_functions.php:230
|
115 |
+
msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: bws_functions.php:251
|
119 |
+
#: bws_functions.php:273
|
120 |
+
#: bws_functions.php:295
|
121 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: bws_functions.php:263
|
125 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: bws_functions.php:269
|
129 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: bws_functions.php:276
|
133 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: bws_functions.php:299
|
137 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: bws_functions.php:324
|
141 |
msgid "Please, enter Your license key"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: bws_functions.php:348
|
145 |
+
msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: bws_functions.php:350
|
149 |
+
#: bws_functions.php:441
|
150 |
msgid "Please, go to"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: bws_functions.php:350
|
154 |
+
#: bws_functions.php:441
|
155 |
#, fuzzy
|
156 |
msgid "the setting page"
|
157 |
msgstr "na stranici za podešavanje modula ("
|
158 |
|
159 |
+
#: bws_functions.php:351
|
160 |
+
#: bws_functions.php:442
|
161 |
msgid "You will be redirected automatically in 5 seconds."
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: bws_functions.php:358
|
165 |
+
msgid "Show Pro features"
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#: bws_functions.php:365
|
169 |
msgid "You can download and activate"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: bws_functions.php:367
|
173 |
msgid "version of this plugin by entering Your license key."
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: bws_functions.php:369
|
177 |
+
#: bws_functions.php:410
|
178 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: bws_functions.php:371
|
182 |
+
#: bws_functions.php:412
|
183 |
msgid "(your username is the email you specify when purchasing the product)."
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: bws_functions.php:375
|
187 |
+
#: bws_functions.php:659
|
188 |
msgid "or"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: bws_functions.php:375
|
192 |
#, php-format
|
193 |
msgid "Start Your Free %s-Day Trial Now"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: bws_functions.php:381
|
197 |
+
#: bws_functions.php:390
|
198 |
+
#: bws_functions.php:420
|
199 |
+
#: bws_functions.php:428
|
200 |
+
#: bws_menu.php:693
|
201 |
+
#: bws_menu.php:750
|
202 |
#, fuzzy
|
203 |
msgid "Activate"
|
204 |
msgstr "Aktivirani moduli"
|
205 |
|
206 |
+
#: bws_functions.php:407
|
207 |
+
#: bws_functions.php:500
|
208 |
#, php-format
|
209 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: bws_functions.php:408
|
213 |
msgid "After that you can activate it by entering your license key."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: bws_functions.php:422
|
217 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: bws_functions.php:439
|
221 |
+
msgid "Congratulations! The Pro license of the plugin is successfully activated."
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: bws_functions.php:480
|
225 |
msgid "Wrong license key."
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: bws_functions.php:482
|
229 |
msgid "This license key is bind to another site."
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: bws_functions.php:484
|
233 |
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."
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: bws_functions.php:486
|
237 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: bws_functions.php:488
|
241 |
+
msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: bws_functions.php:492
|
245 |
+
msgid "The Pro Trial license key is valid."
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: bws_functions.php:494
|
249 |
msgid "The license key is valid."
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: bws_functions.php:497
|
253 |
msgid "Your license will expire on"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: bws_functions.php:530
|
257 |
msgid "Please, enter your license key"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: bws_functions.php:543
|
261 |
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"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: bws_functions.php:543
|
265 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: bws_functions.php:547
|
269 |
msgid "Check license key"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: bws_functions.php:561
|
273 |
msgid "WARNING: Illegal use notification"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: bws_functions.php:561
|
277 |
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."
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: bws_functions.php:569
|
281 |
+
msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: bws_functions.php:571
|
285 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: bws_functions.php:571
|
289 |
+
#: bws_functions.php:624
|
290 |
+
#: bws_menu.php:669
|
291 |
+
#: bws_menu.php:691
|
292 |
+
#: bws_menu.php:718
|
293 |
+
#: bws_menu.php:748
|
294 |
+
#: bws_menu.php:794
|
295 |
#, fuzzy
|
296 |
msgid "Learn more"
|
297 |
msgstr "Pročitaj više"
|
298 |
|
299 |
+
#: bws_functions.php:581
|
300 |
#, php-format
|
301 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: bws_functions.php:583
|
305 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: bws_functions.php:586
|
309 |
+
msgid "The Pro Trial license will expire on"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: bws_functions.php:624
|
313 |
msgid "You license for"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: bws_functions.php:624
|
317 |
msgid "expires on"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: bws_functions.php:624
|
321 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: bws_functions.php:655
|
325 |
+
#, fuzzy
|
326 |
+
msgid "Thank you for installing"
|
327 |
+
msgstr "Hvala što ste nas kontaktirali"
|
328 |
+
|
329 |
+
#: bws_functions.php:656
|
330 |
+
msgid "Let's get started"
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
#: bws_functions.php:657
|
334 |
+
#, fuzzy
|
335 |
+
msgid "Configure Settings"
|
336 |
+
msgstr "na stranici za podešavanje modula ("
|
337 |
+
|
338 |
+
#: bws_functions.php:660
|
339 |
+
msgid "Add New"
|
340 |
+
msgstr "Ajouter"
|
341 |
+
|
342 |
+
#: bws_functions.php:664
|
343 |
+
msgid "Close notice"
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
+
#: bws_functions.php:677
|
347 |
+
msgid "Notice"
|
348 |
+
msgstr ""
|
349 |
+
|
350 |
+
#: bws_functions.php:677
|
351 |
+
msgid "The plugin's settings have been changed."
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#: bws_functions.php:678
|
355 |
+
msgid "Save Changes"
|
356 |
+
msgstr "Sačuvaj izmene"
|
357 |
+
|
358 |
+
#: bws_functions.php:693
|
359 |
+
msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: bws_functions.php:773
|
363 |
+
msgid "Add BWS Plugins Shortcode"
|
364 |
+
msgstr ""
|
365 |
+
|
366 |
+
#: bws_functions.php:793
|
367 |
+
#, fuzzy
|
368 |
+
msgid "Add shortcode"
|
369 |
+
msgstr "Kratak kod za Galeriju"
|
370 |
+
|
371 |
+
#: bws_functions.php:793
|
372 |
+
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
373 |
+
msgstr ""
|
374 |
+
|
375 |
+
#: bws_functions.php:833
|
376 |
msgid "Close"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: bws_functions.php:925
|
|
|
380 |
msgid "Restore all plugin settings to defaults"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: bws_functions.php:927
|
|
|
384 |
#, fuzzy
|
385 |
msgid "Restore settings"
|
386 |
msgstr "na stranici za podešavanje modula ("
|
387 |
|
388 |
+
#: bws_functions.php:938
|
389 |
msgid "Are you sure you want to restore all settings by default?"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: bws_functions.php:941
|
393 |
msgid "Yes, restore all settings"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: bws_functions.php:942
|
397 |
#, fuzzy
|
398 |
msgid "No, go back to the settings page"
|
399 |
msgstr "na stranici za podešavanje modula ("
|
400 |
|
401 |
+
#: bws_functions.php:986
|
402 |
+
#, fuzzy
|
403 |
+
msgid "Plugin"
|
404 |
+
msgstr "Pro moduli"
|
405 |
+
|
406 |
+
#: bws_functions.php:995
|
407 |
+
#, fuzzy
|
408 |
+
msgid "Shortcode settings"
|
409 |
+
msgstr "na stranici za podešavanje modula ("
|
410 |
+
|
411 |
+
#: bws_functions.php:1000
|
412 |
+
msgid "The shortcode will be inserted"
|
413 |
+
msgstr ""
|
414 |
+
|
415 |
+
#: bws_functions.php:1005
|
416 |
+
msgid "Insert"
|
417 |
+
msgstr ""
|
418 |
+
|
419 |
+
#: bws_functions.php:1036
|
420 |
+
msgid "Visit Help Center"
|
421 |
+
msgstr ""
|
422 |
+
|
423 |
+
#: bws_functions.php:1041
|
424 |
+
msgid "FAQ"
|
425 |
+
msgstr "FAQ"
|
426 |
+
|
427 |
+
#: bws_functions.php:1047
|
428 |
+
msgid "For more information:"
|
429 |
+
msgstr ""
|
430 |
+
|
431 |
+
#: bws_functions.php:1048
|
432 |
+
msgid "Documentation"
|
433 |
+
msgstr ""
|
434 |
+
|
435 |
+
#: bws_functions.php:1049
|
436 |
+
msgid "Video Instructions"
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: bws_functions.php:1050
|
440 |
+
msgid "Submit a Request"
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: bws_menu.php:506
|
444 |
msgid "Not set"
|
445 |
msgstr "Nije podešeno"
|
446 |
|
447 |
+
#: bws_menu.php:508
|
448 |
+
#: bws_menu.php:509
|
449 |
msgid "On"
|
450 |
msgstr "Uključeno"
|
451 |
|
452 |
+
#: bws_menu.php:508
|
453 |
+
#: bws_menu.php:509
|
454 |
msgid "Off"
|
455 |
msgstr "Isključeno"
|
456 |
|
457 |
+
#: bws_menu.php:510
|
458 |
+
#: bws_menu.php:511
|
459 |
+
#: bws_menu.php:512
|
460 |
+
#: bws_menu.php:513
|
461 |
+
#: bws_menu.php:514
|
462 |
+
#: bws_menu.php:526
|
463 |
msgid "N/A"
|
464 |
msgstr "N/A"
|
465 |
|
466 |
+
#: bws_menu.php:514
|
467 |
msgid " Mb"
|
468 |
msgstr " Mb"
|
469 |
|
470 |
+
#: bws_menu.php:515
|
471 |
+
#: bws_menu.php:516
|
472 |
+
#: bws_menu.php:517
|
473 |
+
#: bws_menu.php:522
|
474 |
msgid "Yes"
|
475 |
msgstr "Da"
|
476 |
|
477 |
+
#: bws_menu.php:515
|
478 |
+
#: bws_menu.php:516
|
479 |
+
#: bws_menu.php:517
|
480 |
+
#: bws_menu.php:524
|
481 |
msgid "No"
|
482 |
msgstr "Ne"
|
483 |
|
484 |
+
#: bws_menu.php:534
|
485 |
msgid "Operating System"
|
486 |
msgstr "Operativni Sistem"
|
487 |
|
488 |
+
#: bws_menu.php:535
|
489 |
msgid "Server"
|
490 |
msgstr "Server"
|
491 |
|
492 |
+
#: bws_menu.php:536
|
493 |
msgid "Memory usage"
|
494 |
msgstr "Upotreba memorije"
|
495 |
|
496 |
+
#: bws_menu.php:537
|
497 |
msgid "MYSQL Version"
|
498 |
msgstr "MYSQL Verzija"
|
499 |
|
500 |
+
#: bws_menu.php:538
|
501 |
msgid "SQL Mode"
|
502 |
msgstr "SQL način"
|
503 |
|
504 |
+
#: bws_menu.php:539
|
505 |
msgid "PHP Version"
|
506 |
msgstr "PHP Verzija"
|
507 |
|
508 |
+
#: bws_menu.php:540
|
509 |
msgid "PHP Safe Mode"
|
510 |
msgstr "PHP Sigurni način"
|
511 |
|
512 |
+
#: bws_menu.php:541
|
513 |
msgid "PHP Allow URL fopen"
|
514 |
msgstr "PHP Dozvoli URL fopen"
|
515 |
|
516 |
+
#: bws_menu.php:542
|
517 |
msgid "PHP Memory Limit"
|
518 |
msgstr "PHP Ograničenje memorije"
|
519 |
|
520 |
+
#: bws_menu.php:543
|
521 |
#, fuzzy
|
522 |
msgid "PHP Max Upload Size"
|
523 |
msgstr "Envoi de fichier"
|
524 |
|
525 |
+
#: bws_menu.php:544
|
526 |
msgid "PHP Max Post Size"
|
527 |
msgstr "PHP Max veličina za učitavanje"
|
528 |
|
529 |
+
#: bws_menu.php:545
|
530 |
msgid "PHP Max Script Execute Time"
|
531 |
msgstr "PHP Max veličina posta"
|
532 |
|
533 |
+
#: bws_menu.php:546
|
534 |
msgid "PHP Exif support"
|
535 |
msgstr "PHP Exif podrška"
|
536 |
|
537 |
+
#: bws_menu.php:547
|
538 |
msgid "PHP IPTC support"
|
539 |
msgstr "PHP IPTC podrška"
|
540 |
|
541 |
+
#: bws_menu.php:548
|
542 |
msgid "PHP XML support"
|
543 |
msgstr "PHP XML podrška"
|
544 |
|
545 |
+
#: bws_menu.php:549
|
546 |
#, fuzzy
|
547 |
msgid "Site URL"
|
548 |
msgstr "URL du lien"
|
549 |
|
550 |
+
#: bws_menu.php:550
|
551 |
msgid "Home URL"
|
552 |
msgstr "URL naslovne"
|
553 |
|
554 |
+
#: bws_menu.php:553
|
555 |
msgid "WordPress Version"
|
556 |
msgstr "WordPress Verzija"
|
557 |
|
558 |
+
#: bws_menu.php:554
|
559 |
msgid "WordPress DB Version"
|
560 |
msgstr "WordPress DB Verzija"
|
561 |
|
562 |
+
#: bws_menu.php:555
|
563 |
msgid "Multisite"
|
564 |
msgstr "Višenamenski sajt"
|
565 |
|
566 |
+
#: bws_menu.php:556
|
567 |
msgid "Active Theme"
|
568 |
msgstr "Aktivna tema"
|
569 |
|
570 |
+
#: bws_menu.php:571
|
571 |
msgid "Please enter a valid email address."
|
572 |
msgstr "Molimo unesite važeću mejl adresu"
|
573 |
|
574 |
+
#: bws_menu.php:575
|
575 |
msgid "Email with system info is sent to "
|
576 |
msgstr "Mejl sa sistemskim informacijama je poslat na"
|
577 |
|
578 |
+
#: bws_menu.php:579
|
579 |
msgid "Thank you for contacting us."
|
580 |
msgstr "Hvala što ste nas kontaktirali"
|
581 |
|
582 |
+
#: bws_menu.php:612
|
583 |
msgid "Sorry, email message could not be delivered."
|
584 |
msgstr "Nažalost mejl poruka nije prosleđena"
|
585 |
|
586 |
+
#: bws_menu.php:620
|
587 |
msgid "Need help?"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: bws_menu.php:621
|
591 |
msgid "Client area"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: bws_menu.php:622
|
595 |
+
#: bws_menu.php:933
|
596 |
msgid "System status"
|
597 |
msgstr "Sistemski status"
|
598 |
|
599 |
+
#: bws_menu.php:627
|
600 |
#, fuzzy
|
601 |
msgid "Plugins"
|
602 |
msgstr "Pro moduli"
|
603 |
|
604 |
+
#: bws_menu.php:629
|
605 |
msgid "Themes"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: bws_menu.php:634
|
609 |
msgid "All"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: bws_menu.php:635
|
613 |
#, fuzzy
|
614 |
msgid "Installed"
|
615 |
msgstr "Instalacija %s"
|
616 |
|
617 |
+
#: bws_menu.php:636
|
618 |
#, fuzzy
|
619 |
msgid "Recommended"
|
620 |
msgstr "Preporučeni moduli"
|
621 |
|
622 |
+
#: bws_menu.php:640
|
623 |
msgid "Installed plugins"
|
624 |
msgstr "Instalirani moduli"
|
625 |
|
626 |
+
#: bws_menu.php:672
|
627 |
+
#: bws_menu.php:721
|
628 |
msgid "Settings"
|
629 |
msgstr "Podešavanja"
|
630 |
|
631 |
+
#: bws_menu.php:693
|
632 |
+
#: bws_menu.php:750
|
633 |
#, fuzzy
|
634 |
msgid "Activate this plugin"
|
635 |
msgstr "Aktivirani moduli"
|
636 |
|
637 |
+
#: bws_menu.php:708
|
638 |
+
#: bws_menu.php:738
|
639 |
+
#: bws_menu.php:784
|
640 |
msgid "Go"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: bws_menu.php:712
|
644 |
+
#: bws_menu.php:742
|
645 |
+
#: bws_menu.php:788
|
646 |
msgid "DONATE"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: bws_menu.php:758
|
650 |
msgid "Recommended plugins"
|
651 |
msgstr "Preporučeni moduli"
|
652 |
|
653 |
+
#: bws_menu.php:796
|
654 |
#, fuzzy
|
655 |
msgid "Install now"
|
656 |
msgstr "Instalacija %s"
|
657 |
|
658 |
+
#: bws_menu.php:817
|
659 |
msgid "Try again"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: bws_menu.php:835
|
663 |
#, php-format
|
664 |
msgid "Preview “%s”"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: bws_menu.php:866
|
668 |
#, php-format
|
669 |
msgid "Install %s"
|
670 |
msgstr "Instalacija %s"
|
671 |
|
672 |
+
#: bws_menu.php:866
|
673 |
#, fuzzy
|
674 |
msgid "Install Now"
|
675 |
msgstr "Instalacija %s"
|
676 |
|
677 |
+
#: bws_menu.php:869
|
678 |
#, php-format
|
679 |
msgid "Update to version %s"
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: bws_menu.php:869
|
683 |
#, fuzzy
|
684 |
msgid "Update"
|
685 |
msgstr "date"
|
686 |
|
687 |
+
#: bws_menu.php:876
|
688 |
#, php-format
|
689 |
msgid "Preview %s"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: bws_menu.php:876
|
693 |
msgid "Preview"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: bws_menu.php:882
|
697 |
+
#: bws_menu.php:914
|
698 |
#, php-format
|
699 |
msgid "By %s"
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: bws_menu.php:888
|
703 |
msgid "Details"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: bws_menu.php:920
|
707 |
#, fuzzy
|
708 |
msgid "Already Installed"
|
709 |
msgstr "Instalacija %s"
|
710 |
|
711 |
+
#: bws_menu.php:936
|
712 |
msgid "Environment"
|
713 |
msgstr "Okruženje"
|
714 |
|
715 |
+
#: bws_menu.php:947
|
716 |
#, fuzzy
|
717 |
msgid "Active Plugins"
|
718 |
msgstr "Extensions activées"
|
719 |
|
720 |
+
#: bws_menu.php:960
|
721 |
#, fuzzy
|
722 |
msgid "Inactive Plugins"
|
723 |
msgstr "Extensions activées"
|
724 |
|
725 |
+
#: bws_menu.php:976
|
726 |
#, fuzzy
|
727 |
msgid "Send to support"
|
728 |
msgstr "Soutien"
|
729 |
|
730 |
+
#: bws_menu.php:983
|
731 |
msgid "Send to custom email »"
|
732 |
msgstr "Pošalji na korisnički mejl »"
|
733 |
|
809 |
#~ msgid "Upload File"
|
810 |
#~ msgstr "Učitaj fajl"
|
811 |
|
|
|
|
|
|
|
812 |
#~ msgid ""
|
813 |
#~ "The gallery temp directory (gallery-plugin/upload/files) is not available "
|
814 |
#~ "for record on your webserver. Please use the standard WP functionality to "
|
1082 |
#~ msgid "Google +1"
|
1083 |
#~ msgstr "Google +1"
|
1084 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1085 |
#~ msgid "Support"
|
1086 |
#~ msgstr "Podrška"
|
1087 |
|
1094 |
#~ msgid "Image"
|
1095 |
#~ msgstr "Slika"
|
1096 |
|
|
|
|
|
|
|
1097 |
#~ msgid "Search Galleries"
|
1098 |
#~ msgstr "Rechercher une galerie"
|
1099 |
|
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,707 @@ 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 |
-
|
|
|
|
|
|
|
|
|
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 |
|
@@ -704,9 +808,6 @@ msgstr "Skicka till anpassad epost »"
|
|
704 |
#~ msgid "Captcha"
|
705 |
#~ msgstr "Captcha"
|
706 |
|
707 |
-
#~ msgid "FAQ"
|
708 |
-
#~ msgstr "FAQ"
|
709 |
-
|
710 |
#~ msgid "Support"
|
711 |
#~ msgstr "Support"
|
712 |
|
@@ -750,9 +851,6 @@ msgstr "Skicka till anpassad epost »"
|
|
750 |
#~ msgid "CAPTCHA complexity level"
|
751 |
#~ msgstr "CAPTCHA-svårighetsgrad"
|
752 |
|
753 |
-
#~ msgid "Save Changes"
|
754 |
-
#~ msgstr "Spara ändringar"
|
755 |
-
|
756 |
#~ msgid "ERROR"
|
757 |
#~ msgstr "FEL"
|
758 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-10-09 14:46+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-10-09 14:46+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:39
|
20 |
+
#: bws_functions.php:63
|
21 |
msgid "requires"
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: bws_functions.php:41
|
25 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: bws_functions.php:42
|
29 |
msgid "Back to the WordPress"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: bws_functions.php:44
|
33 |
#, fuzzy
|
34 |
msgid "Plugins page"
|
35 |
msgstr "Betaltillägg"
|
36 |
|
37 |
+
#: bws_functions.php:65
|
38 |
+
msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: bws_functions.php:122
|
42 |
msgid "It’s time to upgrade your"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: bws_functions.php:122
|
46 |
#, fuzzy
|
47 |
msgid "to"
|
48 |
msgstr "två"
|
49 |
|
50 |
+
#: bws_functions.php:122
|
51 |
#, fuzzy
|
52 |
msgid "version!"
|
53 |
msgstr "PHP-version"
|
54 |
|
55 |
+
#: bws_functions.php:123
|
56 |
msgid "Extend standard plugin functionality with new great options."
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: bws_functions.php:126
|
60 |
+
#: bws_functions.php:561
|
61 |
#, fuzzy
|
62 |
msgid "Learn More"
|
63 |
msgstr "Läs mer"
|
64 |
|
65 |
+
#: bws_functions.php:143
|
66 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: bws_functions.php:144
|
70 |
#, fuzzy
|
71 |
msgid "Rate the plugin"
|
72 |
msgstr "Aktiverade tillägg"
|
73 |
|
74 |
+
#: bws_functions.php:147
|
75 |
#, fuzzy
|
76 |
msgid "If there is something wrong about it, please contact us"
|
77 |
msgstr "Om du har några frågor, kontakta oss via"
|
78 |
|
79 |
+
#: bws_functions.php:179
|
80 |
+
msgid "Check premium options on the plugin settings page!"
|
81 |
+
msgstr ""
|
82 |
+
|
83 |
+
#: bws_functions.php:186
|
84 |
+
#: bws_functions.php:222
|
85 |
msgid "Wrong license key"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: bws_functions.php:216
|
89 |
+
#: bws_functions.php:474
|
90 |
+
#: bws_functions.php:525
|
91 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: bws_functions.php:216
|
95 |
+
#: bws_functions.php:474
|
96 |
+
#: bws_functions.php:525
|
97 |
msgid "We are sorry for inconvenience."
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: bws_functions.php:224
|
101 |
msgid "This license key is bind to another site"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: bws_functions.php:226
|
105 |
+
#: bws_functions.php:384
|
106 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: bws_functions.php:228
|
110 |
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: bws_functions.php:230
|
114 |
+
msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: bws_functions.php:251
|
118 |
+
#: bws_functions.php:273
|
119 |
+
#: bws_functions.php:295
|
120 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: bws_functions.php:263
|
124 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: bws_functions.php:269
|
128 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: bws_functions.php:276
|
132 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: bws_functions.php:299
|
136 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: bws_functions.php:324
|
140 |
msgid "Please, enter Your license key"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: bws_functions.php:348
|
144 |
+
msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: bws_functions.php:350
|
148 |
+
#: bws_functions.php:441
|
149 |
msgid "Please, go to"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: bws_functions.php:350
|
153 |
+
#: bws_functions.php:441
|
154 |
msgid "the setting page"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: bws_functions.php:351
|
158 |
+
#: bws_functions.php:442
|
159 |
msgid "You will be redirected automatically in 5 seconds."
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: bws_functions.php:358
|
163 |
+
msgid "Show Pro features"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: bws_functions.php:365
|
167 |
msgid "You can download and activate"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: bws_functions.php:367
|
171 |
msgid "version of this plugin by entering Your license key."
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: bws_functions.php:369
|
175 |
+
#: bws_functions.php:410
|
176 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: bws_functions.php:371
|
180 |
+
#: bws_functions.php:412
|
181 |
msgid "(your username is the email you specify when purchasing the product)."
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: bws_functions.php:375
|
185 |
+
#: bws_functions.php:659
|
186 |
#, fuzzy
|
187 |
msgid "or"
|
188 |
msgstr "fyra"
|
189 |
|
190 |
+
#: bws_functions.php:375
|
191 |
#, php-format
|
192 |
msgid "Start Your Free %s-Day Trial Now"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: bws_functions.php:381
|
196 |
+
#: bws_functions.php:390
|
197 |
+
#: bws_functions.php:420
|
198 |
+
#: bws_functions.php:428
|
199 |
+
#: bws_menu.php:693
|
200 |
+
#: bws_menu.php:750
|
201 |
#, fuzzy
|
202 |
msgid "Activate"
|
203 |
msgstr "Aktiverade tillägg"
|
204 |
|
205 |
+
#: bws_functions.php:407
|
206 |
+
#: bws_functions.php:500
|
207 |
#, php-format
|
208 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: bws_functions.php:408
|
212 |
msgid "After that you can activate it by entering your license key."
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: bws_functions.php:422
|
216 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: bws_functions.php:439
|
220 |
+
msgid "Congratulations! The Pro license of the plugin is successfully activated."
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: bws_functions.php:480
|
224 |
msgid "Wrong license key."
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: bws_functions.php:482
|
228 |
msgid "This license key is bind to another site."
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: bws_functions.php:484
|
232 |
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."
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: bws_functions.php:486
|
236 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: bws_functions.php:488
|
240 |
+
msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: bws_functions.php:492
|
244 |
+
msgid "The Pro Trial license key is valid."
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: bws_functions.php:494
|
248 |
msgid "The license key is valid."
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: bws_functions.php:497
|
252 |
msgid "Your license will expire on"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: bws_functions.php:530
|
256 |
msgid "Please, enter your license key"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: bws_functions.php:543
|
260 |
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"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: bws_functions.php:543
|
264 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: bws_functions.php:547
|
268 |
msgid "Check license key"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: bws_functions.php:561
|
272 |
msgid "WARNING: Illegal use notification"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: bws_functions.php:561
|
276 |
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."
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: bws_functions.php:569
|
280 |
+
msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: bws_functions.php:571
|
284 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: bws_functions.php:571
|
288 |
+
#: bws_functions.php:624
|
289 |
+
#: bws_menu.php:669
|
290 |
+
#: bws_menu.php:691
|
291 |
+
#: bws_menu.php:718
|
292 |
+
#: bws_menu.php:748
|
293 |
+
#: bws_menu.php:794
|
294 |
#, fuzzy
|
295 |
msgid "Learn more"
|
296 |
msgstr "Läs mer"
|
297 |
|
298 |
+
#: bws_functions.php:581
|
299 |
#, php-format
|
300 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: bws_functions.php:583
|
304 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: bws_functions.php:586
|
308 |
+
msgid "The Pro Trial license will expire on"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: bws_functions.php:624
|
312 |
msgid "You license for"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: bws_functions.php:624
|
316 |
msgid "expires on"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: bws_functions.php:624
|
320 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: bws_functions.php:655
|
324 |
+
#, fuzzy
|
325 |
+
msgid "Thank you for installing"
|
326 |
+
msgstr "Tack för att du kontaktade oss."
|
327 |
+
|
328 |
+
#: bws_functions.php:656
|
329 |
+
msgid "Let's get started"
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
+
#: bws_functions.php:657
|
333 |
+
#, fuzzy
|
334 |
+
msgid "Configure Settings"
|
335 |
+
msgstr "Inställningar"
|
336 |
+
|
337 |
+
#: bws_functions.php:660
|
338 |
+
msgid "Add New"
|
339 |
+
msgstr ""
|
340 |
+
|
341 |
+
#: bws_functions.php:664
|
342 |
+
msgid "Close notice"
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
#: bws_functions.php:677
|
346 |
+
msgid "Notice"
|
347 |
+
msgstr ""
|
348 |
+
|
349 |
+
#: bws_functions.php:677
|
350 |
+
msgid "The plugin's settings have been changed."
|
351 |
+
msgstr ""
|
352 |
+
|
353 |
+
#: bws_functions.php:678
|
354 |
+
msgid "Save Changes"
|
355 |
+
msgstr "Spara ändringar"
|
356 |
+
|
357 |
+
#: bws_functions.php:693
|
358 |
+
msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
|
359 |
+
msgstr ""
|
360 |
+
|
361 |
+
#: bws_functions.php:773
|
362 |
+
msgid "Add BWS Plugins Shortcode"
|
363 |
+
msgstr ""
|
364 |
+
|
365 |
+
#: bws_functions.php:793
|
366 |
+
msgid "Add shortcode"
|
367 |
+
msgstr ""
|
368 |
+
|
369 |
+
#: bws_functions.php:793
|
370 |
+
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
371 |
+
msgstr ""
|
372 |
+
|
373 |
+
#: bws_functions.php:833
|
374 |
msgid "Close"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: bws_functions.php:925
|
|
|
378 |
msgid "Restore all plugin settings to defaults"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: bws_functions.php:927
|
|
|
382 |
msgid "Restore settings"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: bws_functions.php:938
|
386 |
msgid "Are you sure you want to restore all settings by default?"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: bws_functions.php:941
|
390 |
msgid "Yes, restore all settings"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: bws_functions.php:942
|
394 |
msgid "No, go back to the settings page"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: bws_functions.php:986
|
398 |
+
#, fuzzy
|
399 |
+
msgid "Plugin"
|
400 |
+
msgstr "Betaltillägg"
|
401 |
+
|
402 |
+
#: bws_functions.php:995
|
403 |
+
#, fuzzy
|
404 |
+
msgid "Shortcode settings"
|
405 |
+
msgstr "Inställningar"
|
406 |
+
|
407 |
+
#: bws_functions.php:1000
|
408 |
+
msgid "The shortcode will be inserted"
|
409 |
+
msgstr ""
|
410 |
+
|
411 |
+
#: bws_functions.php:1005
|
412 |
+
msgid "Insert"
|
413 |
+
msgstr ""
|
414 |
+
|
415 |
+
#: bws_functions.php:1036
|
416 |
+
msgid "Visit Help Center"
|
417 |
+
msgstr ""
|
418 |
+
|
419 |
+
#: bws_functions.php:1041
|
420 |
+
msgid "FAQ"
|
421 |
+
msgstr "FAQ"
|
422 |
+
|
423 |
+
#: bws_functions.php:1047
|
424 |
+
msgid "For more information:"
|
425 |
+
msgstr ""
|
426 |
+
|
427 |
+
#: bws_functions.php:1048
|
428 |
+
msgid "Documentation"
|
429 |
+
msgstr ""
|
430 |
+
|
431 |
+
#: bws_functions.php:1049
|
432 |
+
msgid "Video Instructions"
|
433 |
+
msgstr ""
|
434 |
+
|
435 |
+
#: bws_functions.php:1050
|
436 |
+
msgid "Submit a Request"
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: bws_menu.php:506
|
440 |
msgid "Not set"
|
441 |
msgstr "Inte angiven"
|
442 |
|
443 |
+
#: bws_menu.php:508
|
444 |
+
#: bws_menu.php:509
|
445 |
msgid "On"
|
446 |
msgstr "På"
|
447 |
|
448 |
+
#: bws_menu.php:508
|
449 |
+
#: bws_menu.php:509
|
450 |
msgid "Off"
|
451 |
msgstr "Av"
|
452 |
|
453 |
+
#: bws_menu.php:510
|
454 |
+
#: bws_menu.php:511
|
455 |
+
#: bws_menu.php:512
|
456 |
+
#: bws_menu.php:513
|
457 |
+
#: bws_menu.php:514
|
458 |
+
#: bws_menu.php:526
|
459 |
msgid "N/A"
|
460 |
msgstr "Finns ej"
|
461 |
|
462 |
+
#: bws_menu.php:514
|
463 |
msgid " Mb"
|
464 |
msgstr " Mb"
|
465 |
|
466 |
+
#: bws_menu.php:515
|
467 |
+
#: bws_menu.php:516
|
468 |
+
#: bws_menu.php:517
|
469 |
+
#: bws_menu.php:522
|
470 |
msgid "Yes"
|
471 |
msgstr "Ja"
|
472 |
|
473 |
+
#: bws_menu.php:515
|
474 |
+
#: bws_menu.php:516
|
475 |
+
#: bws_menu.php:517
|
476 |
+
#: bws_menu.php:524
|
477 |
msgid "No"
|
478 |
msgstr "Nej"
|
479 |
|
480 |
+
#: bws_menu.php:534
|
481 |
msgid "Operating System"
|
482 |
msgstr "Operativsystem"
|
483 |
|
484 |
+
#: bws_menu.php:535
|
485 |
msgid "Server"
|
486 |
msgstr "Server"
|
487 |
|
488 |
+
#: bws_menu.php:536
|
489 |
msgid "Memory usage"
|
490 |
msgstr "Minnesanvändning"
|
491 |
|
492 |
+
#: bws_menu.php:537
|
493 |
msgid "MYSQL Version"
|
494 |
msgstr "MySQL-version"
|
495 |
|
496 |
+
#: bws_menu.php:538
|
497 |
msgid "SQL Mode"
|
498 |
msgstr "SQL-läge"
|
499 |
|
500 |
+
#: bws_menu.php:539
|
501 |
msgid "PHP Version"
|
502 |
msgstr "PHP-version"
|
503 |
|
504 |
+
#: bws_menu.php:540
|
505 |
msgid "PHP Safe Mode"
|
506 |
msgstr "PHP säkert läge"
|
507 |
|
508 |
+
#: bws_menu.php:541
|
509 |
msgid "PHP Allow URL fopen"
|
510 |
msgstr "PHP tillåt URL fopen"
|
511 |
|
512 |
+
#: bws_menu.php:542
|
513 |
msgid "PHP Memory Limit"
|
514 |
msgstr "PHP Minnesgräns"
|
515 |
|
516 |
+
#: bws_menu.php:543
|
517 |
msgid "PHP Max Upload Size"
|
518 |
msgstr "PHP Max uppladdningstorlek"
|
519 |
|
520 |
+
#: bws_menu.php:544
|
521 |
msgid "PHP Max Post Size"
|
522 |
msgstr "PHP Max poststorlek"
|
523 |
|
524 |
+
#: bws_menu.php:545
|
525 |
msgid "PHP Max Script Execute Time"
|
526 |
msgstr "PHP Max skriptexekverinstid"
|
527 |
|
528 |
+
#: bws_menu.php:546
|
529 |
msgid "PHP Exif support"
|
530 |
msgstr "PHP Exifstöd"
|
531 |
|
532 |
+
#: bws_menu.php:547
|
533 |
msgid "PHP IPTC support"
|
534 |
msgstr "PHP ITPC-stöd"
|
535 |
|
536 |
+
#: bws_menu.php:548
|
537 |
msgid "PHP XML support"
|
538 |
msgstr "PHP XML-stöd"
|
539 |
|
540 |
+
#: bws_menu.php:549
|
541 |
msgid "Site URL"
|
542 |
msgstr "SajtURL"
|
543 |
|
544 |
+
#: bws_menu.php:550
|
545 |
msgid "Home URL"
|
546 |
msgstr "HemURL"
|
547 |
|
548 |
+
#: bws_menu.php:553
|
549 |
msgid "WordPress Version"
|
550 |
msgstr "WordPress-version"
|
551 |
|
552 |
+
#: bws_menu.php:554
|
553 |
msgid "WordPress DB Version"
|
554 |
msgstr "WordPress-DB-version"
|
555 |
|
556 |
+
#: bws_menu.php:555
|
557 |
msgid "Multisite"
|
558 |
msgstr "Multisajt"
|
559 |
|
560 |
+
#: bws_menu.php:556
|
561 |
msgid "Active Theme"
|
562 |
msgstr "Aktivt tema"
|
563 |
|
564 |
+
#: bws_menu.php:571
|
565 |
msgid "Please enter a valid email address."
|
566 |
msgstr "Var god ange en giltig epost-adress."
|
567 |
|
568 |
+
#: bws_menu.php:575
|
569 |
msgid "Email with system info is sent to "
|
570 |
msgstr "Epost med systeminfo är skickat till"
|
571 |
|
572 |
+
#: bws_menu.php:579
|
573 |
msgid "Thank you for contacting us."
|
574 |
msgstr "Tack för att du kontaktade oss."
|
575 |
|
576 |
+
#: bws_menu.php:612
|
577 |
msgid "Sorry, email message could not be delivered."
|
578 |
msgstr "Ledsen, eposten kunde inte levereras."
|
579 |
|
580 |
+
#: bws_menu.php:620
|
581 |
msgid "Need help?"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: bws_menu.php:621
|
585 |
msgid "Client area"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: bws_menu.php:622
|
589 |
+
#: bws_menu.php:933
|
590 |
msgid "System status"
|
591 |
msgstr "Systemstatus"
|
592 |
|
593 |
+
#: bws_menu.php:627
|
594 |
#, fuzzy
|
595 |
msgid "Plugins"
|
596 |
msgstr "Betaltillägg"
|
597 |
|
598 |
+
#: bws_menu.php:629
|
599 |
msgid "Themes"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: bws_menu.php:634
|
603 |
msgid "All"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: bws_menu.php:635
|
607 |
#, fuzzy
|
608 |
msgid "Installed"
|
609 |
msgstr "Installera %s"
|
610 |
|
611 |
+
#: bws_menu.php:636
|
612 |
#, fuzzy
|
613 |
msgid "Recommended"
|
614 |
msgstr "Rekommenderade tillägg"
|
615 |
|
616 |
+
#: bws_menu.php:640
|
617 |
msgid "Installed plugins"
|
618 |
msgstr "Installerade tillägg"
|
619 |
|
620 |
+
#: bws_menu.php:672
|
621 |
+
#: bws_menu.php:721
|
622 |
msgid "Settings"
|
623 |
msgstr "Inställningar"
|
624 |
|
625 |
+
#: bws_menu.php:693
|
626 |
+
#: bws_menu.php:750
|
627 |
#, fuzzy
|
628 |
msgid "Activate this plugin"
|
629 |
msgstr "Aktiverade tillägg"
|
630 |
|
631 |
+
#: bws_menu.php:708
|
632 |
+
#: bws_menu.php:738
|
633 |
+
#: bws_menu.php:784
|
634 |
msgid "Go"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: bws_menu.php:712
|
638 |
+
#: bws_menu.php:742
|
639 |
+
#: bws_menu.php:788
|
640 |
msgid "DONATE"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: bws_menu.php:758
|
644 |
msgid "Recommended plugins"
|
645 |
msgstr "Rekommenderade tillägg"
|
646 |
|
647 |
+
#: bws_menu.php:796
|
648 |
#, fuzzy
|
649 |
msgid "Install now"
|
650 |
msgstr "Установить сейчас"
|
651 |
|
652 |
+
#: bws_menu.php:817
|
653 |
msgid "Try again"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: bws_menu.php:835
|
657 |
#, php-format
|
658 |
msgid "Preview “%s”"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: bws_menu.php:866
|
662 |
#, php-format
|
663 |
msgid "Install %s"
|
664 |
msgstr "Installera %s"
|
665 |
|
666 |
+
#: bws_menu.php:866
|
667 |
msgid "Install Now"
|
668 |
msgstr "Установить сейчас"
|
669 |
|
670 |
+
#: bws_menu.php:869
|
671 |
#, php-format
|
672 |
msgid "Update to version %s"
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: bws_menu.php:869
|
676 |
msgid "Update"
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: bws_menu.php:876
|
680 |
#, php-format
|
681 |
msgid "Preview %s"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: bws_menu.php:876
|
685 |
msgid "Preview"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: bws_menu.php:882
|
689 |
+
#: bws_menu.php:914
|
690 |
#, php-format
|
691 |
msgid "By %s"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: bws_menu.php:888
|
695 |
msgid "Details"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: bws_menu.php:920
|
699 |
#, fuzzy
|
700 |
msgid "Already Installed"
|
701 |
msgstr "Installera %s"
|
702 |
|
703 |
+
#: bws_menu.php:936
|
704 |
msgid "Environment"
|
705 |
msgstr "Miljövariabler"
|
706 |
|
707 |
+
#: bws_menu.php:947
|
708 |
msgid "Active Plugins"
|
709 |
msgstr "Aktiverade tillägg"
|
710 |
|
711 |
+
#: bws_menu.php:960
|
712 |
msgid "Inactive Plugins"
|
713 |
msgstr "Inaktiverade tillägg"
|
714 |
|
715 |
+
#: bws_menu.php:976
|
716 |
msgid "Send to support"
|
717 |
msgstr "Skicka till support"
|
718 |
|
719 |
+
#: bws_menu.php:983
|
720 |
msgid "Send to custom email »"
|
721 |
msgstr "Skicka till anpassad epost »"
|
722 |
|
808 |
#~ msgid "Captcha"
|
809 |
#~ msgstr "Captcha"
|
810 |
|
|
|
|
|
|
|
811 |
#~ msgid "Support"
|
812 |
#~ msgstr "Support"
|
813 |
|
851 |
#~ msgid "CAPTCHA complexity level"
|
852 |
#~ msgstr "CAPTCHA-svårighetsgrad"
|
853 |
|
|
|
|
|
|
|
854 |
#~ msgid "ERROR"
|
855 |
#~ msgstr "FEL"
|
856 |
|
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,688 @@ 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 |
-
|
|
|
|
|
|
|
|
|
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 |
|
@@ -696,9 +796,6 @@ msgstr "Відправити на електронну адресу »"
|
|
696 |
#~ msgid "Captcha"
|
697 |
#~ msgstr "КАПЧА"
|
698 |
|
699 |
-
#~ msgid "FAQ"
|
700 |
-
#~ msgstr "FAQ"
|
701 |
-
|
702 |
#~ msgid "Support"
|
703 |
#~ msgstr "Поддержка"
|
704 |
|
@@ -741,9 +838,6 @@ msgstr "Відправити на електронну адресу »"
|
|
741 |
#~ msgid "CAPTCHA complexity level"
|
742 |
#~ msgstr "Уровень сложности КАПЧИ"
|
743 |
|
744 |
-
#~ msgid "Save Changes"
|
745 |
-
#~ msgstr "Сохранить изменения"
|
746 |
-
|
747 |
#~ msgid "ERROR"
|
748 |
#~ msgstr "Ошибка"
|
749 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-10-09 17:02+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-10-09 17:02+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: bws_functions.php:39
|
20 |
+
#: bws_functions.php:63
|
21 |
msgid "requires"
|
22 |
msgstr "потребує"
|
23 |
|
24 |
+
#: bws_functions.php:41
|
25 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
26 |
msgstr "чи вище, тому його було деактивовано! Будь ласка оновіть WordPress та спробуйте ще раз."
|
27 |
|
28 |
+
#: bws_functions.php:42
|
29 |
msgid "Back to the WordPress"
|
30 |
msgstr "Повернутися на WordPress на"
|
31 |
|
32 |
+
#: bws_functions.php:44
|
33 |
msgid "Plugins page"
|
34 |
msgstr "Сторінку Плагінів"
|
35 |
|
36 |
+
#: bws_functions.php:65
|
37 |
+
msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
|
38 |
+
msgstr "чи вище! Ми не гарантуємо, що наш плагін буде працювати правильно. Будь ласка, оновіть WordPress до останньої версії."
|
39 |
+
|
40 |
+
#: bws_functions.php:122
|
41 |
msgid "It’s time to upgrade your"
|
42 |
msgstr "Настав час модернізувати Ваш"
|
43 |
|
44 |
+
#: bws_functions.php:122
|
45 |
msgid "to"
|
46 |
msgstr "до"
|
47 |
|
48 |
+
#: bws_functions.php:122
|
49 |
msgid "version!"
|
50 |
msgstr "версії!"
|
51 |
|
52 |
+
#: bws_functions.php:123
|
53 |
msgid "Extend standard plugin functionality with new great options."
|
54 |
msgstr "Розширює можливості стандартного функціоналу плагіна."
|
55 |
|
56 |
+
#: bws_functions.php:126
|
57 |
+
#: bws_functions.php:561
|
58 |
msgid "Learn More"
|
59 |
msgstr "Дізнатись більше"
|
60 |
|
61 |
+
#: bws_functions.php:143
|
62 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
63 |
msgstr "Якщо вам сподобався плагін, будь ласка, поставте нам 5 зірочок на WordPress"
|
64 |
|
65 |
+
#: bws_functions.php:144
|
66 |
msgid "Rate the plugin"
|
67 |
msgstr "Оцінити плагін"
|
68 |
|
69 |
+
#: bws_functions.php:147
|
70 |
msgid "If there is something wrong about it, please contact us"
|
71 |
msgstr "Якщо щось не так, будь ласка, повідомте нам"
|
72 |
|
73 |
+
#: bws_functions.php:179
|
74 |
+
msgid "Check premium options on the plugin settings page!"
|
75 |
+
msgstr "Подивіться преміум опції на сторінці налаштувань плагіна!"
|
76 |
+
|
77 |
+
#: bws_functions.php:186
|
78 |
+
#: bws_functions.php:222
|
79 |
msgid "Wrong license key"
|
80 |
msgstr "Невірний ключ ліцензії"
|
81 |
|
82 |
+
#: bws_functions.php:216
|
83 |
+
#: bws_functions.php:474
|
84 |
+
#: bws_functions.php:525
|
85 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
86 |
msgstr "Щось не так, спробуйте пізніше. Якщо помилка повториться, будь ласка, повідомте нам"
|
87 |
|
88 |
+
#: bws_functions.php:216
|
89 |
+
#: bws_functions.php:474
|
90 |
+
#: bws_functions.php:525
|
91 |
msgid "We are sorry for inconvenience."
|
92 |
msgstr "Просимо вибачення за незручності."
|
93 |
|
94 |
+
#: bws_functions.php:224
|
95 |
msgid "This license key is bind to another site"
|
96 |
msgstr "Цей ліцензійний ключ прив'язано до іншого сайту"
|
97 |
|
98 |
+
#: bws_functions.php:226
|
99 |
+
#: bws_functions.php:384
|
100 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
101 |
msgstr "На жаль, ви перевищили кількість доступних спроб на день. Будь ласка, завантажте плагін вручну"
|
102 |
|
103 |
+
#: bws_functions.php:228
|
104 |
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
105 |
msgstr "На жаль, ваша ліцензія скінчилась. Для того, щоб і надалі отримувати першочергову техпідтримку і оновлення, будь ласка, продовжте ліцензію"
|
106 |
|
107 |
+
#: bws_functions.php:230
|
108 |
+
msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
|
109 |
+
msgstr "На жаль, Pro ліцензія уже використовувалась на цьому домені. Тріал Pro версії плагіну можна використати лише один раз."
|
110 |
|
111 |
+
#: bws_functions.php:251
|
112 |
+
#: bws_functions.php:273
|
113 |
+
#: bws_functions.php:295
|
114 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
115 |
msgstr "Помилка при завантаженні zip-архіву. Будь ласка, завантажте плагін вручну"
|
116 |
|
117 |
+
#: bws_functions.php:263
|
118 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
119 |
msgstr "Помилка при відкритті zip-архіву. Будь ласка, завантажте плагін вручну"
|
120 |
|
121 |
+
#: bws_functions.php:269
|
122 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
123 |
msgstr "Ваш сервер не підтримує формати Zip і Phar. Будь ласка, завантажте плагін вручну"
|
124 |
|
125 |
+
#: bws_functions.php:276
|
126 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
127 |
msgstr "Немає доступу до теки завантажень WordPress. Будь ласка, завантажте плагін вручну"
|
128 |
|
129 |
+
#: bws_functions.php:299
|
130 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
131 |
msgstr "Виникли певні проблеми. Спробуйте ще раз пізніше або завантажте плагін вручну. Просимо вибачення за незручності."
|
132 |
|
133 |
+
#: bws_functions.php:324
|
134 |
msgid "Please, enter Your license key"
|
135 |
msgstr "Будь ласка, впишіть ваш ліцензійний ключ"
|
136 |
|
137 |
+
#: bws_functions.php:348
|
138 |
+
msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
|
139 |
+
msgstr "Вітаємо! Pro версію плагіну успішно завантажено та активовано."
|
140 |
|
141 |
+
#: bws_functions.php:350
|
142 |
+
#: bws_functions.php:441
|
143 |
msgid "Please, go to"
|
144 |
msgstr "Будь ласка, перейдіть на"
|
145 |
|
146 |
+
#: bws_functions.php:350
|
147 |
+
#: bws_functions.php:441
|
148 |
msgid "the setting page"
|
149 |
msgstr "сторінку установок"
|
150 |
|
151 |
+
#: bws_functions.php:351
|
152 |
+
#: bws_functions.php:442
|
153 |
msgid "You will be redirected automatically in 5 seconds."
|
154 |
msgstr "Вас буде перенаправлено автоматично через 5 секунд."
|
155 |
|
156 |
+
#: bws_functions.php:358
|
157 |
+
msgid "Show Pro features"
|
158 |
+
msgstr "Показати Pro опції"
|
159 |
+
|
160 |
+
#: bws_functions.php:365
|
161 |
msgid "You can download and activate"
|
162 |
msgstr "Ви можете завантажити та активувати"
|
163 |
|
164 |
+
#: bws_functions.php:367
|
165 |
msgid "version of this plugin by entering Your license key."
|
166 |
msgstr "версію цього плагіну, якщо впишете ваш ліцензійний ключ."
|
167 |
|
168 |
+
#: bws_functions.php:369
|
169 |
+
#: bws_functions.php:410
|
170 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
171 |
msgstr "Ви можете знайти ваш ліцензійний ключ на вашій персональній сторінці у Client area, перейшовши за посиланням"
|
172 |
|
173 |
+
#: bws_functions.php:371
|
174 |
+
#: bws_functions.php:412
|
175 |
msgid "(your username is the email you specify when purchasing the product)."
|
176 |
msgstr "(ваше ім'я - це емейл, який ви вказували при купівлі плагіну)"
|
177 |
|
178 |
+
#: bws_functions.php:375
|
179 |
+
#: bws_functions.php:659
|
180 |
msgid "or"
|
181 |
msgstr "або"
|
182 |
|
183 |
+
#: bws_functions.php:375
|
184 |
#, php-format
|
185 |
msgid "Start Your Free %s-Day Trial Now"
|
186 |
msgstr "Спробуйте %s-денну тріал версію безкоштовно"
|
187 |
|
188 |
+
#: bws_functions.php:381
|
189 |
+
#: bws_functions.php:390
|
190 |
+
#: bws_functions.php:420
|
191 |
+
#: bws_functions.php:428
|
192 |
+
#: bws_menu.php:693
|
193 |
+
#: bws_menu.php:750
|
194 |
msgid "Activate"
|
195 |
msgstr "Активувати"
|
196 |
|
197 |
+
#: bws_functions.php:407
|
198 |
+
#: bws_functions.php:500
|
199 |
#, php-format
|
200 |
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
201 |
msgstr "Щоб продовжити користуватись плагіном, потрібно придбати %s ліцензію."
|
202 |
|
203 |
+
#: bws_functions.php:408
|
204 |
msgid "After that you can activate it by entering your license key."
|
205 |
msgstr "Після цього ви зможете активувати його ввівши ліцензійний ключ."
|
206 |
|
207 |
+
#: bws_functions.php:422
|
208 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
209 |
msgstr "На жаль, ви перевищили кількість допустимих спроб."
|
210 |
|
211 |
+
#: bws_functions.php:439
|
212 |
+
msgid "Congratulations! The Pro license of the plugin is successfully activated."
|
213 |
+
msgstr "Вітаємо! Pro версію плагіну успішно активовано."
|
214 |
|
215 |
+
#: bws_functions.php:480
|
216 |
msgid "Wrong license key."
|
217 |
msgstr "Неправильний ліцензійний ключ."
|
218 |
|
219 |
+
#: bws_functions.php:482
|
220 |
msgid "This license key is bind to another site."
|
221 |
msgstr "Цей ліцензійний ключ прив'язано до іншого сайту."
|
222 |
|
223 |
+
#: bws_functions.php:484
|
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:486
|
228 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
229 |
msgstr "На жаль, ви перевищили кількість допустимих спроб."
|
230 |
|
231 |
+
#: bws_functions.php:488
|
232 |
+
msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
|
233 |
+
msgstr "На жаль, тріал Pro версія плагіну уже встановлювалась на цей домен. Тріал Pro версію можна встановлювати лише один раз."
|
234 |
|
235 |
+
#: bws_functions.php:492
|
236 |
+
msgid "The Pro Trial license key is valid."
|
237 |
+
msgstr "Ключ тріал Pro версії вірний."
|
238 |
|
239 |
+
#: bws_functions.php:494
|
240 |
msgid "The license key is valid."
|
241 |
msgstr "Ліцензійний ключ дійсний."
|
242 |
|
243 |
+
#: bws_functions.php:497
|
244 |
msgid "Your license will expire on"
|
245 |
msgstr "Ваша ліцензія закінчується"
|
246 |
|
247 |
+
#: bws_functions.php:530
|
248 |
msgid "Please, enter your license key"
|
249 |
msgstr "Будь ласка, введіть ваш ліцензійний ключ"
|
250 |
|
251 |
+
#: bws_functions.php:543
|
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 "При необхідності ви можете перевірити правильність вашого ліцензійного ключа або знову ввести його у полі, що знаходиться нижче. Ви можете знайти свій ліцензійний ключ на вашій персональній сторінці - Client area - на нашому сайті."
|
254 |
|
255 |
+
#: bws_functions.php:543
|
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:547
|
260 |
msgid "Check license key"
|
261 |
msgstr "Перевірте ліцензійний ключ"
|
262 |
|
263 |
+
#: bws_functions.php:561
|
264 |
msgid "WARNING: Illegal use notification"
|
265 |
msgstr "УВАГА: виявлено несанкціоноване використання плагіну"
|
266 |
|
267 |
+
#: bws_functions.php:561
|
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 "Ви можете використовувати одну ліцензію Про-плагіну для одного домену. Будь ласка, переконайтесь, що інформацію щодо ліцензії і домену введено вірно, у вкладці Client Area. Ми настійливо рекомендуємо Вам вирішити це питання протягом 24 годин, інакше плагін буде деактивовано."
|
270 |
|
271 |
+
#: bws_functions.php:569
|
272 |
+
msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
|
273 |
+
msgstr "Увага: Термін дії тріал періоду Pro версії плагіну скінчився. Щоб продовжити користуватись плагіном, будь ласка, придбайте ліцензію Pro"
|
274 |
|
275 |
+
#: bws_functions.php:571
|
276 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
277 |
msgstr "Строк вашої ліцензії витік. Якщо ви хочете оновлювати наш плагін у майбутньому, вам слід подовжити ліцензію."
|
278 |
|
279 |
+
#: bws_functions.php:571
|
280 |
+
#: bws_functions.php:624
|
281 |
+
#: bws_menu.php:669
|
282 |
+
#: bws_menu.php:691
|
283 |
+
#: bws_menu.php:718
|
284 |
+
#: bws_menu.php:748
|
285 |
+
#: bws_menu.php:794
|
286 |
msgid "Learn more"
|
287 |
msgstr "Дізнатись більше"
|
288 |
|
289 |
+
#: bws_functions.php:581
|
290 |
#, php-format
|
291 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
292 |
+
msgstr "Увага: Ви використовуєте тріал Pro версію плагіну %s."
|
293 |
|
294 |
+
#: bws_functions.php:583
|
295 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
296 |
+
msgstr "Увага: Ви використовуєте тріал Pro версію плагіну."
|
297 |
|
298 |
+
#: bws_functions.php:586
|
299 |
+
msgid "The Pro Trial license will expire on"
|
300 |
+
msgstr "Тріал період Pro версії плагіну закінчується"
|
301 |
|
302 |
+
#: bws_functions.php:624
|
303 |
msgid "You license for"
|
304 |
msgstr "Ваша ліцензія для"
|
305 |
|
306 |
+
#: bws_functions.php:624
|
307 |
msgid "expires on"
|
308 |
msgstr "витікає"
|
309 |
|
310 |
+
#: bws_functions.php:624
|
311 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
312 |
msgstr "та ви більше не будете отримувати першочергову технічну підтримку та оновлення."
|
313 |
|
314 |
+
#: bws_functions.php:655
|
315 |
+
msgid "Thank you for installing"
|
316 |
+
msgstr "Дякуємо, що встановили"
|
317 |
+
|
318 |
+
#: bws_functions.php:656
|
319 |
+
msgid "Let's get started"
|
320 |
+
msgstr "Розпочнемо"
|
321 |
+
|
322 |
+
#: bws_functions.php:657
|
323 |
+
msgid "Configure Settings"
|
324 |
+
msgstr "Налаштувати плагін"
|
325 |
+
|
326 |
+
#: bws_functions.php:660
|
327 |
+
msgid "Add New"
|
328 |
+
msgstr "Додати"
|
329 |
+
|
330 |
+
#: bws_functions.php:664
|
331 |
+
msgid "Close notice"
|
332 |
+
msgstr "Закрити"
|
333 |
+
|
334 |
+
#: bws_functions.php:677
|
335 |
+
msgid "Notice"
|
336 |
+
msgstr "Зауважте"
|
337 |
+
|
338 |
+
#: bws_functions.php:677
|
339 |
+
msgid "The plugin's settings have been changed."
|
340 |
+
msgstr "Налаштування плагіну змінено."
|
341 |
+
|
342 |
+
#: bws_functions.php:678
|
343 |
+
msgid "Save Changes"
|
344 |
+
msgstr "Зберегти зміни"
|
345 |
+
|
346 |
+
#: bws_functions.php:693
|
347 |
+
msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
|
348 |
+
msgstr "Ви завжди можете подивитися на преміум опції, натиснувши на кнопку \"Показати Pro особливост\" на вкладці \"Перейти на PRO\""
|
349 |
+
|
350 |
+
#: bws_functions.php:773
|
351 |
+
msgid "Add BWS Plugins Shortcode"
|
352 |
+
msgstr "Додати BWS шорткод"
|
353 |
+
|
354 |
+
#: bws_functions.php:793
|
355 |
+
msgid "Add shortcode"
|
356 |
+
msgstr "Додати шорткод"
|
357 |
+
|
358 |
+
#: bws_functions.php:793
|
359 |
+
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
360 |
+
msgstr "Додайте шорткоди BestWebSoft плагінів за допомогою цієї кнопки."
|
361 |
+
|
362 |
+
#: bws_functions.php:833
|
363 |
msgid "Close"
|
364 |
msgstr "Закрити"
|
365 |
|
366 |
+
#: bws_functions.php:926
|
|
|
367 |
msgid "Restore all plugin settings to defaults"
|
368 |
msgstr "Скинути налаштування плагіну до стандартних"
|
369 |
|
370 |
+
#: bws_functions.php:928
|
|
|
371 |
msgid "Restore settings"
|
372 |
msgstr "Скинути налаштування"
|
373 |
|
374 |
+
#: bws_functions.php:939
|
375 |
msgid "Are you sure you want to restore all settings by default?"
|
376 |
msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
|
377 |
|
378 |
+
#: bws_functions.php:942
|
379 |
msgid "Yes, restore all settings"
|
380 |
msgstr "Так, скинути налаштування"
|
381 |
|
382 |
+
#: bws_functions.php:943
|
383 |
msgid "No, go back to the settings page"
|
384 |
msgstr "Ні, повернутись назад на сторінку налаштувань"
|
385 |
|
386 |
+
#: bws_functions.php:987
|
387 |
+
msgid "Plugin"
|
388 |
+
msgstr "Плагін"
|
389 |
+
|
390 |
+
#: bws_functions.php:996
|
391 |
+
msgid "Shortcode settings"
|
392 |
+
msgstr "Налаштування шорткоду"
|
393 |
+
|
394 |
+
#: bws_functions.php:1001
|
395 |
+
msgid "The shortcode will be inserted"
|
396 |
+
msgstr "Буде вставлено шорткод"
|
397 |
+
|
398 |
+
#: bws_functions.php:1006
|
399 |
+
msgid "Insert"
|
400 |
+
msgstr "Вставити"
|
401 |
+
|
402 |
+
#: bws_functions.php:1037
|
403 |
+
msgid "Visit Help Center"
|
404 |
+
msgstr "Перейти в Help Center"
|
405 |
+
|
406 |
+
#: bws_functions.php:1042
|
407 |
+
msgid "FAQ"
|
408 |
+
msgstr "FAQ"
|
409 |
+
|
410 |
+
#: bws_functions.php:1048
|
411 |
+
msgid "For more information:"
|
412 |
+
msgstr "Для отримання додаткової інформації:"
|
413 |
+
|
414 |
+
#: bws_functions.php:1049
|
415 |
+
msgid "Documentation"
|
416 |
+
msgstr "Документація"
|
417 |
+
|
418 |
+
#: bws_functions.php:1050
|
419 |
+
msgid "Video Instructions"
|
420 |
+
msgstr "Відео інструкції"
|
421 |
+
|
422 |
+
#: bws_functions.php:1051
|
423 |
+
msgid "Submit a Request"
|
424 |
+
msgstr "Надіслати запит"
|
425 |
+
|
426 |
+
#: bws_menu.php:506
|
427 |
msgid "Not set"
|
428 |
msgstr "Не задано"
|
429 |
|
430 |
+
#: bws_menu.php:508
|
431 |
+
#: bws_menu.php:509
|
432 |
msgid "On"
|
433 |
msgstr "Увімк."
|
434 |
|
435 |
+
#: bws_menu.php:508
|
436 |
+
#: bws_menu.php:509
|
437 |
msgid "Off"
|
438 |
msgstr "Вимк."
|
439 |
|
440 |
+
#: bws_menu.php:510
|
441 |
+
#: bws_menu.php:511
|
442 |
+
#: bws_menu.php:512
|
443 |
+
#: bws_menu.php:513
|
444 |
+
#: bws_menu.php:514
|
445 |
+
#: bws_menu.php:526
|
446 |
msgid "N/A"
|
447 |
msgstr "Невідомо"
|
448 |
|
449 |
+
#: bws_menu.php:514
|
450 |
msgid " Mb"
|
451 |
msgstr "Мб"
|
452 |
|
453 |
+
#: bws_menu.php:515
|
454 |
+
#: bws_menu.php:516
|
455 |
+
#: bws_menu.php:517
|
456 |
+
#: bws_menu.php:522
|
457 |
msgid "Yes"
|
458 |
msgstr "Так"
|
459 |
|
460 |
+
#: bws_menu.php:515
|
461 |
+
#: bws_menu.php:516
|
462 |
+
#: bws_menu.php:517
|
463 |
+
#: bws_menu.php:524
|
464 |
msgid "No"
|
465 |
msgstr "Ні"
|
466 |
|
467 |
+
#: bws_menu.php:534
|
468 |
msgid "Operating System"
|
469 |
msgstr "Операційна система"
|
470 |
|
471 |
+
#: bws_menu.php:535
|
472 |
msgid "Server"
|
473 |
msgstr "Тип серверу"
|
474 |
|
475 |
+
#: bws_menu.php:536
|
476 |
msgid "Memory usage"
|
477 |
msgstr "Пам’яті використано"
|
478 |
|
479 |
+
#: bws_menu.php:537
|
480 |
msgid "MYSQL Version"
|
481 |
msgstr "Версія MYSQL"
|
482 |
|
483 |
+
#: bws_menu.php:538
|
484 |
msgid "SQL Mode"
|
485 |
msgstr "Режим SQL"
|
486 |
|
487 |
+
#: bws_menu.php:539
|
488 |
msgid "PHP Version"
|
489 |
msgstr "Версія PHP"
|
490 |
|
491 |
+
#: bws_menu.php:540
|
492 |
msgid "PHP Safe Mode"
|
493 |
msgstr "PHP Безпечний режим"
|
494 |
|
495 |
+
#: bws_menu.php:541
|
496 |
msgid "PHP Allow URL fopen"
|
497 |
msgstr "Дозволити PHP URL fopen"
|
498 |
|
499 |
+
#: bws_menu.php:542
|
500 |
msgid "PHP Memory Limit"
|
501 |
msgstr "Ліміт пам’яті"
|
502 |
|
503 |
+
#: bws_menu.php:543
|
504 |
msgid "PHP Max Upload Size"
|
505 |
msgstr "Макс. розмір файлу, що завантажується"
|
506 |
|
507 |
+
#: bws_menu.php:544
|
508 |
msgid "PHP Max Post Size"
|
509 |
msgstr "Макс. розмір посту"
|
510 |
|
511 |
+
#: bws_menu.php:545
|
512 |
msgid "PHP Max Script Execute Time"
|
513 |
msgstr "Макс. час виконання сценарію"
|
514 |
|
515 |
+
#: bws_menu.php:546
|
516 |
msgid "PHP Exif support"
|
517 |
msgstr "Підтримка PHP Exif"
|
518 |
|
519 |
+
#: bws_menu.php:547
|
520 |
msgid "PHP IPTC support"
|
521 |
msgstr "Підтримка PHP IPTC"
|
522 |
|
523 |
+
#: bws_menu.php:548
|
524 |
msgid "PHP XML support"
|
525 |
msgstr "Підтримка PHP XML"
|
526 |
|
527 |
+
#: bws_menu.php:549
|
528 |
msgid "Site URL"
|
529 |
msgstr "Адреса сайту"
|
530 |
|
531 |
+
#: bws_menu.php:550
|
532 |
msgid "Home URL"
|
533 |
msgstr "Адреса домашньої сторінки"
|
534 |
|
535 |
+
#: bws_menu.php:553
|
536 |
msgid "WordPress Version"
|
537 |
msgstr "Версія WordPress"
|
538 |
|
539 |
+
#: bws_menu.php:554
|
540 |
msgid "WordPress DB Version"
|
541 |
msgstr "Версія бази даних WordPress"
|
542 |
|
543 |
+
#: bws_menu.php:555
|
544 |
msgid "Multisite"
|
545 |
msgstr "Мультисайт"
|
546 |
|
547 |
+
#: bws_menu.php:556
|
548 |
msgid "Active Theme"
|
549 |
msgstr "Активна тема"
|
550 |
|
551 |
+
#: bws_menu.php:571
|
552 |
msgid "Please enter a valid email address."
|
553 |
msgstr "Будь ласка, введіть коректний емейл."
|
554 |
|
555 |
+
#: bws_menu.php:575
|
556 |
msgid "Email with system info is sent to "
|
557 |
msgstr "Емейл з системною інформацією надіслано на"
|
558 |
|
559 |
+
#: bws_menu.php:579
|
560 |
msgid "Thank you for contacting us."
|
561 |
msgstr "Дякуємо, що звернулись до нас."
|
562 |
|
563 |
+
#: bws_menu.php:612
|
564 |
msgid "Sorry, email message could not be delivered."
|
565 |
msgstr "Вибачте, ваше емейл не може бути доставлено"
|
566 |
|
567 |
+
#: bws_menu.php:620
|
568 |
msgid "Need help?"
|
569 |
msgstr "Потрібна допомога?"
|
570 |
|
571 |
+
#: bws_menu.php:621
|
572 |
msgid "Client area"
|
573 |
msgstr "Клієнтам"
|
574 |
|
575 |
+
#: bws_menu.php:622
|
576 |
+
#: bws_menu.php:933
|
577 |
msgid "System status"
|
578 |
msgstr "Системна інформація"
|
579 |
|
580 |
+
#: bws_menu.php:627
|
581 |
msgid "Plugins"
|
582 |
msgstr "Плагіни"
|
583 |
|
584 |
+
#: bws_menu.php:629
|
585 |
msgid "Themes"
|
586 |
msgstr "Теми"
|
587 |
|
588 |
+
#: bws_menu.php:634
|
589 |
msgid "All"
|
590 |
msgstr "Всі"
|
591 |
|
592 |
+
#: bws_menu.php:635
|
593 |
msgid "Installed"
|
594 |
msgstr "Встановлені"
|
595 |
|
596 |
+
#: bws_menu.php:636
|
597 |
msgid "Recommended"
|
598 |
msgstr "Рекомендовані "
|
599 |
|
600 |
+
#: bws_menu.php:640
|
601 |
msgid "Installed plugins"
|
602 |
msgstr "Встановлені плагіни"
|
603 |
|
604 |
+
#: bws_menu.php:672
|
605 |
+
#: bws_menu.php:721
|
606 |
msgid "Settings"
|
607 |
msgstr "Налаштування"
|
608 |
|
609 |
+
#: bws_menu.php:693
|
610 |
+
#: bws_menu.php:750
|
611 |
msgid "Activate this plugin"
|
612 |
msgstr "Активувати плагін"
|
613 |
|
614 |
+
#: bws_menu.php:708
|
615 |
+
#: bws_menu.php:738
|
616 |
+
#: bws_menu.php:784
|
617 |
msgid "Go"
|
618 |
msgstr "Перейти"
|
619 |
|
620 |
+
#: bws_menu.php:712
|
621 |
+
#: bws_menu.php:742
|
622 |
+
#: bws_menu.php:788
|
623 |
msgid "DONATE"
|
624 |
msgstr "Підтримати нас"
|
625 |
|
626 |
+
#: bws_menu.php:758
|
627 |
msgid "Recommended plugins"
|
628 |
msgstr "Рекомендовані плагіни"
|
629 |
|
630 |
+
#: bws_menu.php:796
|
631 |
msgid "Install now"
|
632 |
msgstr "Встановити"
|
633 |
|
634 |
+
#: bws_menu.php:817
|
635 |
msgid "Try again"
|
636 |
msgstr "Спробувати ще раз"
|
637 |
|
638 |
+
#: bws_menu.php:835
|
639 |
#, php-format
|
640 |
msgid "Preview “%s”"
|
641 |
msgstr "Попередній перегляд “%s”"
|
642 |
|
643 |
+
#: bws_menu.php:866
|
644 |
#, php-format
|
645 |
msgid "Install %s"
|
646 |
msgstr "Встановити %s"
|
647 |
|
648 |
+
#: bws_menu.php:866
|
649 |
msgid "Install Now"
|
650 |
msgstr "Встановити"
|
651 |
|
652 |
+
#: bws_menu.php:869
|
653 |
#, php-format
|
654 |
msgid "Update to version %s"
|
655 |
msgstr "Оновити до версії %s"
|
656 |
|
657 |
+
#: bws_menu.php:869
|
658 |
msgid "Update"
|
659 |
msgstr "Оновити"
|
660 |
|
661 |
+
#: bws_menu.php:876
|
662 |
#, php-format
|
663 |
msgid "Preview %s"
|
664 |
msgstr "Попередній перегляд %s"
|
665 |
|
666 |
+
#: bws_menu.php:876
|
667 |
msgid "Preview"
|
668 |
msgstr "Попередній перегляд"
|
669 |
|
670 |
+
#: bws_menu.php:882
|
671 |
+
#: bws_menu.php:914
|
672 |
#, php-format
|
673 |
msgid "By %s"
|
674 |
msgstr "За %s"
|
675 |
|
676 |
+
#: bws_menu.php:888
|
677 |
msgid "Details"
|
678 |
msgstr "Деталі"
|
679 |
|
680 |
+
#: bws_menu.php:920
|
681 |
msgid "Already Installed"
|
682 |
msgstr "Уже встановлено %s"
|
683 |
|
684 |
+
#: bws_menu.php:936
|
685 |
msgid "Environment"
|
686 |
msgstr "Системне оточення"
|
687 |
|
688 |
+
#: bws_menu.php:947
|
689 |
msgid "Active Plugins"
|
690 |
msgstr "Активні плагіни"
|
691 |
|
692 |
+
#: bws_menu.php:960
|
693 |
msgid "Inactive Plugins"
|
694 |
msgstr "Не активні плагіни"
|
695 |
|
696 |
+
#: bws_menu.php:976
|
697 |
msgid "Send to support"
|
698 |
msgstr "Відправити службі тех. підтримки"
|
699 |
|
700 |
+
#: bws_menu.php:983
|
701 |
msgid "Send to custom email »"
|
702 |
msgstr "Відправити на електронну адресу »"
|
703 |
|
796 |
#~ msgid "Captcha"
|
797 |
#~ msgstr "КАПЧА"
|
798 |
|
|
|
|
|
|
|
799 |
#~ msgid "Support"
|
800 |
#~ msgstr "Поддержка"
|
801 |
|
838 |
#~ msgid "CAPTCHA complexity level"
|
839 |
#~ msgstr "Уровень сложности КАПЧИ"
|
840 |
|
|
|
|
|
|
|
841 |
#~ msgid "ERROR"
|
842 |
#~ msgstr "Ошибка"
|
843 |
|
css/style.css
CHANGED
@@ -1,14 +1,12 @@
|
|
1 |
/*
|
2 |
* Plugin styles
|
3 |
*/
|
4 |
-
#
|
5 |
-
#
|
6 |
-
#
|
|
|
7 |
min-width: 200px;
|
8 |
}
|
9 |
-
#fcbk_settings_form label code {
|
10 |
-
background: none;
|
11 |
-
}
|
12 |
.fcbk_share {
|
13 |
clear: both;
|
14 |
line-height: 1;
|
@@ -40,4 +38,24 @@
|
|
40 |
.fcbk_share img,
|
41 |
.fcbk_like .fb_iframe_widget span {
|
42 |
vertical-align: top !important;
|
43 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
/*
|
2 |
* Plugin styles
|
3 |
*/
|
4 |
+
#fcbkbttn_settings_form select,
|
5 |
+
#fcbkbttn_settings_form input[type="text"],
|
6 |
+
#fcbkbttn_settings_form input[type="file"],
|
7 |
+
#fcbkbttn_settings_form input[type="number"] {
|
8 |
min-width: 200px;
|
9 |
}
|
|
|
|
|
|
|
10 |
.fcbk_share {
|
11 |
clear: both;
|
12 |
line-height: 1;
|
38 |
.fcbk_share img,
|
39 |
.fcbk_like .fb_iframe_widget span {
|
40 |
vertical-align: top !important;
|
41 |
+
}
|
42 |
+
#fcbkbttn_id_option,
|
43 |
+
#fcbkbttn_layout_option {
|
44 |
+
border-top: 1px solid #ccc;
|
45 |
+
}
|
46 |
+
#fcbkbttn_preview_content {
|
47 |
+
margin-left: 10px;
|
48 |
+
}
|
49 |
+
#fcbkbttn_preview_content h3 {
|
50 |
+
margin-top: 0;
|
51 |
+
padding-top: 1em;
|
52 |
+
}
|
53 |
+
#fcbkbttn_preview {
|
54 |
+
display: inline-block;
|
55 |
+
width: 300px;
|
56 |
+
vertical-align: top;
|
57 |
+
}
|
58 |
+
#fcbkbttn_settings_form {
|
59 |
+
display: inline-block;
|
60 |
+
margin-right: 20px;
|
61 |
+
}
|
facebook-button-plugin.php
CHANGED
@@ -4,7 +4,9 @@ Plugin Name: Facebook Button by BestWebSoft
|
|
4 |
Plugin URI: http://bestwebsoft.com/products/
|
5 |
Description: Put Facebook Button in to your post.
|
6 |
Author: BestWebSoft
|
7 |
-
|
|
|
|
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
@@ -29,17 +31,23 @@ License: GPLv2 or later
|
|
29 |
if ( ! function_exists( 'fcbkbttn_add_pages' ) ) {
|
30 |
function fcbkbttn_add_pages() {
|
31 |
bws_add_general_menu( plugin_basename( __FILE__ ) );
|
32 |
-
add_submenu_page( 'bws_plugins', __( 'Facebook Button Settings', 'facebook' ), 'Facebook Button', 'manage_options', 'facebook-button-plugin.php', 'fcbkbttn_settings_page' );
|
|
|
33 |
}
|
34 |
}
|
35 |
/* end fcbkbttn_add_pages ##*/
|
36 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
/* Initialization */
|
38 |
if ( ! function_exists( 'fcbkbttn_init' ) ) {
|
39 |
function fcbkbttn_init() {
|
40 |
global $fcbkbttn_plugin_info, $fcbkbttn_lang_codes, $fcbkbttn_options;
|
41 |
-
/* Internationalization, first(!) */
|
42 |
-
load_plugin_textdomain( 'facebook', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
43 |
|
44 |
if ( empty( $fcbkbttn_plugin_info ) ) {
|
45 |
if ( ! function_exists( 'get_plugin_data' ) )
|
@@ -48,9 +56,10 @@ if ( ! function_exists( 'fcbkbttn_init' ) ) {
|
|
48 |
}
|
49 |
|
50 |
/*## add general functions */
|
51 |
-
require_once( dirname( __FILE__ ) . '/bws_menu/
|
|
|
52 |
|
53 |
-
|
54 |
|
55 |
/* Get options from the database */
|
56 |
if ( ! is_admin() || ( isset( $_GET['page'] ) && ( "facebook-button-plugin.php" == $_GET['page'] || "social-buttons.php" == $_GET['page'] ) ) ) {
|
@@ -72,14 +81,18 @@ if ( ! function_exists( 'fcbkbttn_init' ) ) {
|
|
72 |
if ( ! function_exists( 'fcbkbttn_admin_init' ) ) {
|
73 |
function fcbkbttn_admin_init() {
|
74 |
/* Add variable for bws_menu */
|
75 |
-
global $bws_plugin_info, $fcbkbttn_plugin_info;
|
76 |
|
|
|
77 |
if ( ! isset( $bws_plugin_info ) || empty( $bws_plugin_info ) ) {
|
78 |
$bws_plugin_info = array( 'id' => '78', 'version' => $fcbkbttn_plugin_info["Version"] );
|
79 |
}
|
|
|
|
|
|
|
80 |
}
|
81 |
}
|
82 |
-
/* end fcbkbttn_admin_init
|
83 |
|
84 |
if ( ! function_exists( 'fcbkbttn_settings' ) ) {
|
85 |
function fcbkbttn_settings() {
|
@@ -90,7 +103,12 @@ if ( ! function_exists( 'fcbkbttn_settings' ) ) {
|
|
90 |
'link' => '',
|
91 |
'my_page' => 1,
|
92 |
'like' => 1,
|
|
|
|
|
|
|
93 |
'share' => 0,
|
|
|
|
|
94 |
'where' => 'before',
|
95 |
'display_option' => 'standard',
|
96 |
'count_icon' => 1,
|
@@ -98,16 +116,18 @@ if ( ! function_exists( 'fcbkbttn_settings' ) ) {
|
|
98 |
'fb_img_link' => plugins_url( "images/standard-facebook-ico.png", __FILE__ ),
|
99 |
'locale' => 'en_US',
|
100 |
'html5' => 0,
|
101 |
-
'use_multilanguage_locale' =>
|
102 |
-
'display_for_excerpt' =>
|
|
|
|
|
103 |
);
|
104 |
/* Install the option defaults */
|
105 |
if ( ! get_option( 'fcbk_bttn_plgn_options' ) ) {
|
106 |
if ( false !== get_option( 'fcbk_bttn_plgn_options_array' ) ) {
|
107 |
$old_options = get_option( 'fcbk_bttn_plgn_options_array' );
|
108 |
foreach ( $fcbkbttn_options_default as $key => $value ) {
|
109 |
-
if ( isset( $old_options['fcbk_bttn_plgn_' . $key] ) )
|
110 |
-
$fcbkbttn_options_default[ $key ] = $old_options['fcbk_bttn_plgn_' . $key];
|
111 |
}
|
112 |
update_option( 'fcbk_bttn_plgn_options', $fcbkbttn_options_default );
|
113 |
delete_option( 'fcbk_bttn_plgn_options_array' );
|
@@ -127,6 +147,11 @@ if ( ! function_exists( 'fcbkbttn_settings' ) ) {
|
|
127 |
if ( stristr( $fcbkbttn_options['fb_img_link'], 'img/' ) )
|
128 |
$fcbkbttn_options['fb_img_link'] = plugins_url( str_replace( 'img/', 'images/', $fcbkbttn_options['fb_img_link'] ), __FILE__ );
|
129 |
|
|
|
|
|
|
|
|
|
|
|
130 |
$fcbkbttn_options = array_merge( $fcbkbttn_options_default, $fcbkbttn_options );
|
131 |
$fcbkbttn_options['plugin_option_version'] = $fcbkbttn_plugin_info["Version"];
|
132 |
update_option( 'fcbk_bttn_plgn_options', $fcbkbttn_options );
|
@@ -149,25 +174,35 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
|
|
149 |
$all_plugins = get_plugins();
|
150 |
|
151 |
if ( isset( $_REQUEST['fcbkbttn_form_submit'] ) && check_admin_referer( $plugin_basename, 'fcbkbttn_nonce_name' ) ) {
|
|
|
|
|
|
|
|
|
|
|
152 |
/* Takes all the changed settings on the plugin's admin page and saves them in array 'fcbk_bttn_plgn_options'. */
|
153 |
-
$fcbkbttn_options['link']
|
154 |
-
$fcbkbttn_options['link']
|
155 |
-
$fcbkbttn_options['link']
|
156 |
|
157 |
-
$fcbkbttn_options['where']
|
158 |
-
$fcbkbttn_options['display_option']
|
159 |
if ( 'standard' == $fcbkbttn_options['display_option'] ) {
|
160 |
$fcbkbttn_options['fb_img_link'] = plugins_url( 'images/standard-facebook-ico.png', __FILE__ );
|
161 |
}
|
162 |
-
$fcbkbttn_options['my_page']
|
163 |
-
$fcbkbttn_options['like']
|
164 |
-
$fcbkbttn_options['
|
165 |
-
$fcbkbttn_options['
|
166 |
-
$fcbkbttn_options['
|
|
|
|
|
|
|
|
|
|
|
167 |
if ( isset( $_FILES['uploadfile']['tmp_name'] ) && $_FILES['uploadfile']['tmp_name'] != "" ) {
|
168 |
-
$fcbkbttn_options['count_icon']
|
169 |
$file_ext = wp_check_filetype( $_FILES['uploadfile']['name'] );
|
170 |
-
$fcbkbttn_options['extention']
|
171 |
}
|
172 |
|
173 |
if ( 2 < $fcbkbttn_options['count_icon'] )
|
@@ -177,7 +212,7 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
|
|
177 |
$fcbkbttn_options['display_for_excerpt'] = isset( $_REQUEST['fcbkbttn_display_for_excerpt'] ) ? 1 : 0;
|
178 |
|
179 |
update_option( 'fcbk_bttn_plgn_options', $fcbkbttn_options );
|
180 |
-
$message = __( "Settings saved", 'facebook' );
|
181 |
|
182 |
if ( isset( $_FILES['uploadfile']['tmp_name'] ) && "" != $_FILES['uploadfile']['tmp_name'] ) {
|
183 |
if ( ! $upload_dir["error"] ) {
|
@@ -203,16 +238,16 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
|
|
203 |
$filename = $_FILES['uploadfile']['tmp_name'];
|
204 |
$ext = substr( $_FILES['uploadfile']['name'], 1 + strrpos( $_FILES['uploadfile']['name'], '.' ) );
|
205 |
if ( filesize( $filename ) > $max_image_size ) {
|
206 |
-
$error = __( "Error: File size > 32K", 'facebook' );
|
207 |
}
|
208 |
elseif ( ! in_array( strtolower( $ext ), $valid_types ) ) {
|
209 |
-
$error = __( "Error: Invalid file type", 'facebook' );
|
210 |
} else {
|
211 |
$size = GetImageSize( $filename );
|
212 |
if ( ( $size ) && ( $size[0] <= $max_image_width ) && ( $size[1] <= $max_image_height ) ) {
|
213 |
/* If file satisfies requirements, we will move them from temp to your plugin folder and rename to 'facebook_ico.jpg' */
|
214 |
if ( move_uploaded_file( $_FILES['uploadfile']['tmp_name'], $uploadfile ) ) {
|
215 |
-
$message .= '. ' . __( "Upload successful.", 'facebook' );
|
216 |
|
217 |
if ( 'standard' == $fcbkbttn_options['display_option'] ) {
|
218 |
$fb_img_link = plugins_url( 'images/standard-facebook-ico.png', __FILE__ );
|
@@ -222,197 +257,284 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
|
|
222 |
$fcbkbttn_options['fb_img_link'] = $fb_img_link ;
|
223 |
update_option( 'fcbk_bttn_plgn_options', $fcbkbttn_options );
|
224 |
} else {
|
225 |
-
$error = __( "Error: moving file failed", 'facebook' );
|
226 |
}
|
227 |
} else {
|
228 |
-
$error = __( "Error: check image width or height", 'facebook' );
|
229 |
}
|
230 |
}
|
231 |
} else {
|
232 |
-
$error = __( "Uploading Error: check image properties", 'facebook' );
|
233 |
}
|
234 |
}
|
235 |
}
|
236 |
}
|
237 |
|
238 |
-
/*##
|
|
|
|
|
|
|
239 |
if ( isset( $_REQUEST['bws_restore_confirm'] ) && check_admin_referer( $plugin_basename, 'bws_settings_nonce_name' ) ) {
|
240 |
$fcbkbttn_options = $fcbkbttn_options_default;
|
241 |
update_option( 'fcbk_bttn_plgn_options', $fcbkbttn_options );
|
242 |
-
$message = __( 'All plugin settings were restored.', 'facebook' );
|
243 |
}
|
244 |
-
/* end ##*/
|
245 |
|
246 |
-
|
247 |
if ( isset( $_GET['action'] ) && 'go_pro' == $_GET['action'] ) {
|
248 |
-
$go_pro_result = bws_go_pro_tab_check( $plugin_basename );
|
249 |
if ( ! empty( $go_pro_result['error'] ) )
|
250 |
$error = $go_pro_result['error'];
|
|
|
|
|
251 |
}/* end GO PRO ##*/ ?>
|
252 |
<!-- general -->
|
253 |
<div class="wrap">
|
254 |
-
<
|
255 |
-
<h2><?php _e( 'Facebook Button Settings', 'facebook' ); ?></h2>
|
256 |
<h2 class="nav-tab-wrapper">
|
257 |
-
<a class="nav-tab<?php if ( ! isset( $_GET['action'] ) ) echo ' nav-tab-active'; ?>" href="admin.php?page=facebook-button-plugin.php"><?php _e( 'Settings', 'facebook' ); ?></a>
|
258 |
-
<a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'extra' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=facebook-button-plugin.php&action=extra"><?php _e( 'Extra settings', 'facebook' ); ?></a>
|
259 |
-
<a class="nav-tab" href="
|
260 |
-
<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=facebook-button-plugin.php&action=go_pro"><?php _e( 'Go PRO', 'facebook' ); ?></a>
|
261 |
</h2>
|
262 |
<!-- end general -->
|
|
|
263 |
<div class="updated fade" <?php if ( empty( $message ) || "" != $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
|
264 |
-
<div id="fcbkbttn_settings_notice" class="updated fade bws_settings_form_notice" style="display:none"><p><strong><?php _e( "Notice:", 'facebook' ); ?></strong> <?php _e( "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button.", 'facebook' ); ?></p></div>
|
265 |
<div class="error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
|
266 |
-
<?php
|
|
|
|
|
|
|
|
|
|
|
267 |
if ( isset( $_REQUEST['bws_restore_default'] ) && check_admin_referer( $plugin_basename, 'bws_settings_nonce_name' ) ) {
|
268 |
bws_form_restore_default_confirm( $plugin_basename );
|
269 |
} else { /* check action ##*/ ?>
|
270 |
-
<
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
297 |
</select>
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
<
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
343 |
} ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
344 |
</select>
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
<
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
<
|
378 |
-
<
|
379 |
-
|
380 |
-
|
381 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
382 |
<!-- general -->
|
383 |
-
|
384 |
-
<div
|
385 |
-
<div class="
|
386 |
-
|
387 |
-
|
388 |
-
<
|
389 |
-
<
|
390 |
-
<
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
<div class="bws_info">
|
402 |
-
<?php _e( 'Unlock premium options by upgrading to Pro version', 'facebook' ); ?>
|
403 |
</div>
|
404 |
-
<a class="bws_button" href="http://bestwebsoft.com/products/facebook-like-button/?k=427287ceae749cbd015b4bba6041c4b8&pn=78&v=<?php echo $fcbkbttn_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Facebook Like Button Pro"><?php _e( 'Learn More', 'facebook' ); ?></a>
|
405 |
-
<div class="clear"></div>
|
406 |
</div>
|
407 |
-
|
408 |
<!-- end general -->
|
409 |
-
|
410 |
-
<p class="submit">
|
411 |
-
<input type="submit" class="button-primary" value="<?php _e( 'Save Changes', 'facebook' ); ?>" />
|
412 |
-
</p>
|
413 |
-
<?php wp_nonce_field( $plugin_basename, 'fcbkbttn_nonce_name' ); ?>
|
414 |
-
</form>
|
415 |
-
<!-- general -->
|
416 |
<?php bws_form_restore_default_settings( $plugin_basename );
|
417 |
}
|
418 |
} elseif ( 'extra' == $_GET['action'] ) { ?>
|
@@ -420,46 +542,46 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
|
|
420 |
<div class="bws_pro_version_table_bloc">
|
421 |
<div class="bws_table_bg"></div>
|
422 |
<table class="form-table bws_pro_version">
|
423 |
-
<tr
|
424 |
<td colspan="2">
|
425 |
-
<?php _e( 'Please choose the necessary post types (or single pages) where Facebook button will be displayed:', 'facebook' ); ?>
|
426 |
</td>
|
427 |
</tr>
|
428 |
-
<tr
|
429 |
<td colspan="2">
|
430 |
<label>
|
431 |
<input disabled="disabled" checked="checked" type="checkbox" name="jstree_url" value="1" />
|
432 |
-
<?php _e( "Show URL for pages", 'facebook' );?>
|
433 |
</label>
|
434 |
</td>
|
435 |
</tr>
|
436 |
-
<tr
|
437 |
<td colspan="2">
|
438 |
-
<img src="<?php echo plugins_url( 'images/pro_screen_1.png', __FILE__ ); ?>" alt="<?php _e( "Example of the site's pages tree", 'facebook' ); ?>" title="<?php _e( "Example of site pages' tree", 'facebook' ); ?>" />
|
439 |
</td>
|
440 |
</tr>
|
441 |
-
<tr
|
442 |
<td colspan="2">
|
443 |
-
<input disabled="disabled" type="submit" class="button-primary" value="<?php _e( 'Save Changes', 'facebook' ); ?>" />
|
444 |
</td>
|
445 |
</tr>
|
446 |
-
<tr
|
447 |
<th scope="row" colspan="2">
|
448 |
-
* <?php _e( 'If you upgrade to Pro version all your settings will be saved.', 'facebook' ); ?>
|
449 |
</th>
|
450 |
</tr>
|
451 |
</table>
|
452 |
</div>
|
453 |
<div class="bws_pro_version_tooltip">
|
454 |
<div class="bws_info">
|
455 |
-
<?php _e( 'Unlock premium options by upgrading to Pro version', 'facebook' ); ?>
|
456 |
</div>
|
457 |
-
<a class="bws_button" href="http://bestwebsoft.com/products/facebook-like-button/?k=427287ceae749cbd015b4bba6041c4b8&pn=78&v=<?php echo $fcbkbttn_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Facebook
|
458 |
<div class="clear"></div>
|
459 |
</div>
|
460 |
</div>
|
461 |
<?php } elseif ( 'go_pro' == $_GET['action'] ) {
|
462 |
-
|
463 |
}
|
464 |
bws_plugin_reviews_block( $fcbkbttn_plugin_info['Name'], 'facebook-button-plugin' ); ?>
|
465 |
</div>
|
@@ -467,43 +589,62 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
|
|
467 |
<?php }
|
468 |
}
|
469 |
|
470 |
-
|
471 |
-
|
472 |
-
function fcbkbttn_display_button( $content ) {
|
473 |
global $post, $fcbkbttn_options;
|
474 |
-
|
475 |
-
$
|
476 |
-
|
477 |
-
|
478 |
-
$button
|
479 |
-
|
480 |
-
$url = $fcbkbttn_options['link'];
|
481 |
if ( 1 == $fcbkbttn_options['my_page'] ) {
|
482 |
$button .= '<div class="fcbk_button">
|
483 |
-
<a href="http://www.facebook.com/' . $
|
484 |
-
<img src="' . $
|
485 |
</a>
|
486 |
</div>';
|
487 |
}
|
|
|
488 |
if ( 1 == $fcbkbttn_options['like'] ) {
|
489 |
$button .= '<div class="fcbk_like">';
|
|
|
490 |
if ( 1 == $fcbkbttn_options['html5'] ) {
|
491 |
-
$button .= '<div class="fb-like" data-href="' . $permalink_post . '" data-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
|
|
|
|
496 |
} else {
|
497 |
-
$button .= '<fb:like href="' . $permalink_post . '"
|
498 |
-
if (
|
499 |
-
$button .= '
|
500 |
-
|
501 |
-
|
|
|
|
|
502 |
}
|
|
|
503 |
} else if ( 1 != $fcbkbttn_options['like'] && 1 == $fcbkbttn_options['share'] ) {
|
504 |
-
$button .= '<div class="fb-share-button" data-href="' . $permalink_post . '" data-type="
|
505 |
-
}
|
|
|
506 |
$button .= '</div>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
507 |
/* Indication where show Facebook Button depending on selected item in admin page. */
|
508 |
if ( 'before' == $fcbkbttn_where ) {
|
509 |
return $button . $content;
|
@@ -525,58 +666,37 @@ if ( ! function_exists( 'fcbkbttn_shortcode' ) ) {
|
|
525 |
global $post, $fcbkbttn_options, $fcbkbttn_locale;
|
526 |
|
527 |
if ( isset( $post->ID ) )
|
528 |
-
$permalink_post =
|
529 |
|
530 |
-
$button
|
531 |
-
|
532 |
-
if ( 1 == $fcbkbttn_options['
|
533 |
-
$
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
}
|
542 |
-
if ( 1 == $fcbkbttn_options['like'] && isset( $permalink_post ) ) {
|
543 |
-
$button .= '<div class="fcbk_like">
|
544 |
-
<div id="fb-root"></div>
|
545 |
-
<script>(function(d, s, id) {
|
546 |
-
var js, fjs = d.getElementsByTagName(s)[0];
|
547 |
-
if (d.getElementById(id)) return;
|
548 |
-
js = d.createElement(s); js.id = id;
|
549 |
-
js.src = "//connect.facebook.net/' . $fcbkbttn_locale . '/sdk.js#xfbml=1&appId=1443946719181573&version=v2.0";
|
550 |
-
fjs.parentNode.insertBefore(js, fjs);
|
551 |
-
}(document, "script", "facebook-jssdk"));</script>';
|
552 |
-
if ( 1 == $fcbkbttn_options['html5'] ) {
|
553 |
-
$button .= '<div class="fb-like" data-href="' . $permalink_post . '" data-layout="button_count" data-action="like" data-show-faces="false"';
|
554 |
-
if ( 1 == $fcbkbttn_options['share'] )
|
555 |
-
$button .= ' data-share="true"></div></div>';
|
556 |
-
else
|
557 |
-
$button .= ' data-share="false"></div></div>';
|
558 |
-
} else {
|
559 |
-
$button .= '<fb:like href="' . $permalink_post . '" layout="button_count" width="450" show_faces="false"';
|
560 |
-
if ( 1 == $fcbkbttn_options['share'] )
|
561 |
-
$button .= ' share="true"></fb:like></div>';
|
562 |
-
else
|
563 |
-
$button .= ' share="false"></fb:like></div>';
|
564 |
-
}
|
565 |
-
} else if ( 1 != $fcbkbttn_options['like'] && 1 == $fcbkbttn_options['share'] && isset( $permalink_post ) ) {
|
566 |
-
$button .= '<script>(function(d, s, id) {
|
567 |
-
var js, fjs = d.getElementsByTagName(s)[0];
|
568 |
-
if (d.getElementById(id)) return;
|
569 |
-
js = d.createElement(s); js.id = id;
|
570 |
-
js.src = "//connect.facebook.net/' . $fcbkbttn_locale . '/sdk.js#xfbml=1&appId=1443946719181573&version=v2.0";
|
571 |
-
fjs.parentNode.insertBefore(js, fjs);
|
572 |
-
}(document, "script", "facebook-jssdk"));</script>
|
573 |
-
<div class="fb-share-button" data-href="' . $permalink_post . '" data-type="button_count"></div>';
|
574 |
}
|
575 |
-
$button .= '</div>';
|
576 |
return $button;
|
577 |
}
|
578 |
}
|
579 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
580 |
/* Functions adds some right meta for Facebook */
|
581 |
if ( ! function_exists( 'fcbkbttn_meta' ) ) {
|
582 |
function fcbkbttn_meta() {
|
@@ -585,7 +705,7 @@ if ( ! function_exists( 'fcbkbttn_meta' ) ) {
|
|
585 |
if ( is_singular() ) {
|
586 |
$image = '';
|
587 |
if ( has_post_thumbnail( get_the_ID() ) ) {
|
588 |
-
$image = wp_get_attachment_image_src( get_post_thumbnail_id(), 'thumbnail');
|
589 |
$image = $image[0];
|
590 |
}
|
591 |
print "\n" . '<meta property="og:title" content="' . esc_attr( get_the_title() ) . '"/>';
|
@@ -663,7 +783,7 @@ if ( ! function_exists( 'fcbkbttn_action_links' ) ) {
|
|
663 |
if ( ! $this_plugin )
|
664 |
$this_plugin = plugin_basename( __FILE__ );
|
665 |
if ( $file == $this_plugin ) {
|
666 |
-
$settings_link = '<a href="admin.php?page=facebook-button-plugin.php">' . __( 'Settings', 'facebook' ) . '</a>';
|
667 |
array_unshift( $links, $settings_link );
|
668 |
}
|
669 |
}
|
@@ -677,21 +797,39 @@ if ( ! function_exists ( 'fcbkbttn_links' ) ) {
|
|
677 |
$base = plugin_basename( __FILE__ );
|
678 |
if ( $file == $base ) {
|
679 |
if ( ! is_network_admin() )
|
680 |
-
$links[] = '<a href="admin.php?page=facebook-button-plugin.php">' . __( 'Settings', 'facebook' ) . '</a>';
|
681 |
-
$links[] = '<a href="http://wordpress.org/plugins/facebook-button-plugin/faq/" target="_blank">' . __( 'FAQ', 'facebook' ) . '</a>';
|
682 |
-
$links[] = '<a href="http://support.bestwebsoft.com">' . __( 'Support', 'facebook' ) . '</a>';
|
683 |
}
|
684 |
return $links;
|
685 |
}
|
686 |
}
|
687 |
/* End function fcbkbttn_links */
|
688 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
689 |
if ( ! function_exists ( 'fcbkbttn_plugin_banner' ) ) {
|
690 |
function fcbkbttn_plugin_banner() {
|
691 |
global $hook_suffix;
|
692 |
if ( 'plugins.php' == $hook_suffix ) {
|
693 |
-
global $fcbkbttn_plugin_info;
|
694 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
695 |
}
|
696 |
}
|
697 |
}
|
@@ -737,10 +875,11 @@ if ( ! function_exists( 'fcbkbttn_delete_options' ) ) {
|
|
737 |
/* Calling a function add administrative menu. */
|
738 |
add_action( 'admin_menu', 'fcbkbttn_add_pages' );
|
739 |
/* Initialization ##*/
|
|
|
740 |
add_action( 'init', 'fcbkbttn_init' );
|
741 |
-
/*## admin_init */
|
742 |
add_action( 'admin_init', 'fcbkbttn_admin_init' );
|
743 |
-
|
|
|
744 |
add_action( 'wp_enqueue_scripts', 'fcbkbttn_admin_head' );
|
745 |
add_action( 'admin_enqueue_scripts', 'fcbkbttn_admin_head' );
|
746 |
/* Adding front-end stylesheets */
|
@@ -749,6 +888,8 @@ add_action( 'wp_footer', 'fcbkbttn_footer_script' );
|
|
749 |
/* Add shortcode and plugin buttons */
|
750 |
add_shortcode( 'fb_button', 'fcbkbttn_shortcode' );
|
751 |
add_filter( 'the_content', 'fcbkbttn_display_button' );
|
|
|
|
|
752 |
/*## Additional links on the plugin page */
|
753 |
add_filter( 'plugin_action_links', 'fcbkbttn_action_links', 10, 2 );
|
754 |
add_filter( 'plugin_row_meta', 'fcbkbttn_links', 10, 2 );
|
4 |
Plugin URI: http://bestwebsoft.com/products/
|
5 |
Description: Put Facebook Button in to your post.
|
6 |
Author: BestWebSoft
|
7 |
+
Text Domain: facebook-button-plugin
|
8 |
+
Domain Path: /languages
|
9 |
+
Version: 2.44
|
10 |
Author URI: http://bestwebsoft.com/
|
11 |
License: GPLv2 or later
|
12 |
*/
|
31 |
if ( ! function_exists( 'fcbkbttn_add_pages' ) ) {
|
32 |
function fcbkbttn_add_pages() {
|
33 |
bws_add_general_menu( plugin_basename( __FILE__ ) );
|
34 |
+
$settings = add_submenu_page( 'bws_plugins', __( 'Facebook Button Settings', 'facebook-button-plugin' ), 'Facebook Button', 'manage_options', 'facebook-button-plugin.php', 'fcbkbttn_settings_page' );
|
35 |
+
add_action( 'load-' . $settings, 'fcbkbttn_add_tabs' );
|
36 |
}
|
37 |
}
|
38 |
/* end fcbkbttn_add_pages ##*/
|
39 |
|
40 |
+
if ( ! function_exists( 'fcbkbttn_plugins_loaded' ) ) {
|
41 |
+
function fcbkbttn_plugins_loaded() {
|
42 |
+
/* Internationalization, first(!) */
|
43 |
+
load_plugin_textdomain( 'facebook-button-plugin', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
44 |
+
}
|
45 |
+
}
|
46 |
+
|
47 |
/* Initialization */
|
48 |
if ( ! function_exists( 'fcbkbttn_init' ) ) {
|
49 |
function fcbkbttn_init() {
|
50 |
global $fcbkbttn_plugin_info, $fcbkbttn_lang_codes, $fcbkbttn_options;
|
|
|
|
|
51 |
|
52 |
if ( empty( $fcbkbttn_plugin_info ) ) {
|
53 |
if ( ! function_exists( 'get_plugin_data' ) )
|
56 |
}
|
57 |
|
58 |
/*## add general functions */
|
59 |
+
require_once( dirname( __FILE__ ) . '/bws_menu/bws_include.php' );
|
60 |
+
bws_include_init( plugin_basename( __FILE__ ) );
|
61 |
|
62 |
+
bws_wp_min_version_check( plugin_basename( __FILE__ ), $fcbkbttn_plugin_info, '3.8', '3.1' );/* check compatible with current WP version ##*/
|
63 |
|
64 |
/* Get options from the database */
|
65 |
if ( ! is_admin() || ( isset( $_GET['page'] ) && ( "facebook-button-plugin.php" == $_GET['page'] || "social-buttons.php" == $_GET['page'] ) ) ) {
|
81 |
if ( ! function_exists( 'fcbkbttn_admin_init' ) ) {
|
82 |
function fcbkbttn_admin_init() {
|
83 |
/* Add variable for bws_menu */
|
84 |
+
global $bws_plugin_info, $fcbkbttn_plugin_info, $bws_shortcode_list;
|
85 |
|
86 |
+
/*## Function for bws menu */
|
87 |
if ( ! isset( $bws_plugin_info ) || empty( $bws_plugin_info ) ) {
|
88 |
$bws_plugin_info = array( 'id' => '78', 'version' => $fcbkbttn_plugin_info["Version"] );
|
89 |
}
|
90 |
+
|
91 |
+
/* add Facebook to global $bws_shortcode_list ##*/
|
92 |
+
$bws_shortcode_list['fcbkbttn'] = array( 'name' => 'Facebook Button' );
|
93 |
}
|
94 |
}
|
95 |
+
/* end fcbkbttn_admin_init */
|
96 |
|
97 |
if ( ! function_exists( 'fcbkbttn_settings' ) ) {
|
98 |
function fcbkbttn_settings() {
|
103 |
'link' => '',
|
104 |
'my_page' => 1,
|
105 |
'like' => 1,
|
106 |
+
'layout_option' => 'button_count',
|
107 |
+
'like_action' => 'like',
|
108 |
+
'color_scheme' => 'light',
|
109 |
'share' => 0,
|
110 |
+
'faces' => 0,
|
111 |
+
'width' => 450,
|
112 |
'where' => 'before',
|
113 |
'display_option' => 'standard',
|
114 |
'count_icon' => 1,
|
116 |
'fb_img_link' => plugins_url( "images/standard-facebook-ico.png", __FILE__ ),
|
117 |
'locale' => 'en_US',
|
118 |
'html5' => 0,
|
119 |
+
'use_multilanguage_locale' => 0,
|
120 |
+
'display_for_excerpt' => 0,
|
121 |
+
'display_settings_notice' => 1,
|
122 |
+
'first_install' => strtotime( "now" )
|
123 |
);
|
124 |
/* Install the option defaults */
|
125 |
if ( ! get_option( 'fcbk_bttn_plgn_options' ) ) {
|
126 |
if ( false !== get_option( 'fcbk_bttn_plgn_options_array' ) ) {
|
127 |
$old_options = get_option( 'fcbk_bttn_plgn_options_array' );
|
128 |
foreach ( $fcbkbttn_options_default as $key => $value ) {
|
129 |
+
if ( isset( $old_options['fcbk_bttn_plgn_' . $key ] ) )
|
130 |
+
$fcbkbttn_options_default[ $key ] = $old_options['fcbk_bttn_plgn_' . $key ];
|
131 |
}
|
132 |
update_option( 'fcbk_bttn_plgn_options', $fcbkbttn_options_default );
|
133 |
delete_option( 'fcbk_bttn_plgn_options_array' );
|
147 |
if ( stristr( $fcbkbttn_options['fb_img_link'], 'img/' ) )
|
148 |
$fcbkbttn_options['fb_img_link'] = plugins_url( str_replace( 'img/', 'images/', $fcbkbttn_options['fb_img_link'] ), __FILE__ );
|
149 |
|
150 |
+
$fcbkbttn_options_default['display_settings_notice'] = 0;
|
151 |
+
|
152 |
+
/* show pro features */
|
153 |
+
$fcbkbttn_options['hide_premium_options'] = array();
|
154 |
+
|
155 |
$fcbkbttn_options = array_merge( $fcbkbttn_options_default, $fcbkbttn_options );
|
156 |
$fcbkbttn_options['plugin_option_version'] = $fcbkbttn_plugin_info["Version"];
|
157 |
update_option( 'fcbk_bttn_plgn_options', $fcbkbttn_options );
|
174 |
$all_plugins = get_plugins();
|
175 |
|
176 |
if ( isset( $_REQUEST['fcbkbttn_form_submit'] ) && check_admin_referer( $plugin_basename, 'fcbkbttn_nonce_name' ) ) {
|
177 |
+
if ( isset( $_POST['bws_hide_premium_options'] ) ) {
|
178 |
+
$hide_result = bws_hide_premium_options( $fcbkbttn_options );
|
179 |
+
$fcbkbttn_options = $hide_result['options'];
|
180 |
+
}
|
181 |
+
|
182 |
/* Takes all the changed settings on the plugin's admin page and saves them in array 'fcbk_bttn_plgn_options'. */
|
183 |
+
$fcbkbttn_options['link'] = stripslashes( esc_html( $_REQUEST['fcbkbttn_link'] ) );
|
184 |
+
$fcbkbttn_options['link'] = str_replace( 'https://www.facebook.com/profile.php?id=', '', $fcbkbttn_options['link'] );
|
185 |
+
$fcbkbttn_options['link'] = str_replace( 'https://www.facebook.com/', '', $fcbkbttn_options['link'] );
|
186 |
|
187 |
+
$fcbkbttn_options['where'] = $_REQUEST['fcbkbttn_where'];
|
188 |
+
$fcbkbttn_options['display_option'] = $_REQUEST['fcbkbttn_display_option'];
|
189 |
if ( 'standard' == $fcbkbttn_options['display_option'] ) {
|
190 |
$fcbkbttn_options['fb_img_link'] = plugins_url( 'images/standard-facebook-ico.png', __FILE__ );
|
191 |
}
|
192 |
+
$fcbkbttn_options['my_page'] = isset( $_REQUEST['fcbkbttn_my_page'] ) ? 1 : 0;
|
193 |
+
$fcbkbttn_options['like'] = isset( $_REQUEST['fcbkbttn_like'] ) ? 1 : 0;
|
194 |
+
$fcbkbttn_options['layout_option'] = $_REQUEST['fcbkbttn_layout_option'];
|
195 |
+
$fcbkbttn_options['share'] = isset( $_REQUEST['fcbkbttn_share'] ) ? 1 : 0;
|
196 |
+
$fcbkbttn_options['faces'] = isset( $_REQUEST['fcbkbttn_faces'] ) ? 1 : 0;
|
197 |
+
$fcbkbttn_options['like_action'] = $_REQUEST['fcbkbttn_like_action'];
|
198 |
+
$fcbkbttn_options['color_scheme'] = $_REQUEST['fcbkbttn_color_scheme'];
|
199 |
+
$fcbkbttn_options['width'] = intval( $_REQUEST['fcbkbttn_width'] );
|
200 |
+
$fcbkbttn_options['locale'] = $_REQUEST['fcbkbttn_locale'];
|
201 |
+
$fcbkbttn_options['html5'] = $_REQUEST['fcbkbttn_html5'];
|
202 |
if ( isset( $_FILES['uploadfile']['tmp_name'] ) && $_FILES['uploadfile']['tmp_name'] != "" ) {
|
203 |
+
$fcbkbttn_options['count_icon'] = $fcbkbttn_options['count_icon'] + 1;
|
204 |
$file_ext = wp_check_filetype( $_FILES['uploadfile']['name'] );
|
205 |
+
$fcbkbttn_options['extention'] = $file_ext['ext'];
|
206 |
}
|
207 |
|
208 |
if ( 2 < $fcbkbttn_options['count_icon'] )
|
212 |
$fcbkbttn_options['display_for_excerpt'] = isset( $_REQUEST['fcbkbttn_display_for_excerpt'] ) ? 1 : 0;
|
213 |
|
214 |
update_option( 'fcbk_bttn_plgn_options', $fcbkbttn_options );
|
215 |
+
$message = __( "Settings saved", 'facebook-button-plugin' );
|
216 |
|
217 |
if ( isset( $_FILES['uploadfile']['tmp_name'] ) && "" != $_FILES['uploadfile']['tmp_name'] ) {
|
218 |
if ( ! $upload_dir["error"] ) {
|
238 |
$filename = $_FILES['uploadfile']['tmp_name'];
|
239 |
$ext = substr( $_FILES['uploadfile']['name'], 1 + strrpos( $_FILES['uploadfile']['name'], '.' ) );
|
240 |
if ( filesize( $filename ) > $max_image_size ) {
|
241 |
+
$error = __( "Error: File size > 32K", 'facebook-button-plugin' );
|
242 |
}
|
243 |
elseif ( ! in_array( strtolower( $ext ), $valid_types ) ) {
|
244 |
+
$error = __( "Error: Invalid file type", 'facebook-button-plugin' );
|
245 |
} else {
|
246 |
$size = GetImageSize( $filename );
|
247 |
if ( ( $size ) && ( $size[0] <= $max_image_width ) && ( $size[1] <= $max_image_height ) ) {
|
248 |
/* If file satisfies requirements, we will move them from temp to your plugin folder and rename to 'facebook_ico.jpg' */
|
249 |
if ( move_uploaded_file( $_FILES['uploadfile']['tmp_name'], $uploadfile ) ) {
|
250 |
+
$message .= '. ' . __( "Upload successful.", 'facebook-button-plugin' );
|
251 |
|
252 |
if ( 'standard' == $fcbkbttn_options['display_option'] ) {
|
253 |
$fb_img_link = plugins_url( 'images/standard-facebook-ico.png', __FILE__ );
|
257 |
$fcbkbttn_options['fb_img_link'] = $fb_img_link ;
|
258 |
update_option( 'fcbk_bttn_plgn_options', $fcbkbttn_options );
|
259 |
} else {
|
260 |
+
$error = __( "Error: moving file failed", 'facebook-button-plugin' );
|
261 |
}
|
262 |
} else {
|
263 |
+
$error = __( "Error: check image width or height", 'facebook-button-plugin' );
|
264 |
}
|
265 |
}
|
266 |
} else {
|
267 |
+
$error = __( "Uploading Error: check image properties", 'facebook-button-plugin' );
|
268 |
}
|
269 |
}
|
270 |
}
|
271 |
}
|
272 |
|
273 |
+
/*## check banner */
|
274 |
+
$bws_hide_premium_options_check = bws_hide_premium_options_check( $fcbkbttn_options );
|
275 |
+
|
276 |
+
/* add restore function */
|
277 |
if ( isset( $_REQUEST['bws_restore_confirm'] ) && check_admin_referer( $plugin_basename, 'bws_settings_nonce_name' ) ) {
|
278 |
$fcbkbttn_options = $fcbkbttn_options_default;
|
279 |
update_option( 'fcbk_bttn_plgn_options', $fcbkbttn_options );
|
280 |
+
$message = __( 'All plugin settings were restored.', 'facebook-button-plugin' );
|
281 |
}
|
|
|
282 |
|
283 |
+
/* GO PRO */
|
284 |
if ( isset( $_GET['action'] ) && 'go_pro' == $_GET['action'] ) {
|
285 |
+
$go_pro_result = bws_go_pro_tab_check( $plugin_basename, 'fcbk_bttn_plgn_options' );
|
286 |
if ( ! empty( $go_pro_result['error'] ) )
|
287 |
$error = $go_pro_result['error'];
|
288 |
+
elseif ( ! empty( $go_pro_result['message'] ) )
|
289 |
+
$message = $go_pro_result['message'];
|
290 |
}/* end GO PRO ##*/ ?>
|
291 |
<!-- general -->
|
292 |
<div class="wrap">
|
293 |
+
<h2><?php _e( 'Facebook Button Settings', 'facebook-button-plugin' ); ?></h2>
|
|
|
294 |
<h2 class="nav-tab-wrapper">
|
295 |
+
<a class="nav-tab<?php if ( ! isset( $_GET['action'] ) ) echo ' nav-tab-active'; ?>" href="admin.php?page=facebook-button-plugin.php"><?php _e( 'Settings', 'facebook-button-plugin' ); ?></a>
|
296 |
+
<a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'extra' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=facebook-button-plugin.php&action=extra"><?php _e( 'Extra settings', 'facebook-button-plugin' ); ?></a>
|
297 |
+
<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=facebook-button-plugin.php&action=go_pro"><?php _e( 'Go PRO', 'facebook-button-plugin' ); ?></a>
|
|
|
298 |
</h2>
|
299 |
<!-- end general -->
|
300 |
+
<noscript><div class="error"><p><strong><?php _e( "Please, enable JavaScript in Your browser.", 'facebook-button-plugin' ); ?></strong></p></div></noscript>
|
301 |
<div class="updated fade" <?php if ( empty( $message ) || "" != $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
|
|
|
302 |
<div class="error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
|
303 |
+
<?php if ( ! empty( $hide_result['message'] ) ) { ?>
|
304 |
+
<div class="updated fade"><p><strong><?php echo $hide_result['message']; ?></strong></p></div>
|
305 |
+
<?php }
|
306 |
+
bws_show_settings_notice();
|
307 |
+
/*## check action */
|
308 |
+
if ( ! isset( $_GET['action'] ) ) {
|
309 |
if ( isset( $_REQUEST['bws_restore_default'] ) && check_admin_referer( $plugin_basename, 'bws_settings_nonce_name' ) ) {
|
310 |
bws_form_restore_default_confirm( $plugin_basename );
|
311 |
} else { /* check action ##*/ ?>
|
312 |
+
<br>
|
313 |
+
<div><?php printf(
|
314 |
+
__( "If you would like to add Facebook buttons to your page or post, please use %s button", 'facebook-button-plugin' ),
|
315 |
+
'<span class="bws_code"><img style="vertical-align: sub;" src="' . plugins_url( 'bws_menu/images/shortcode-icon.png', __FILE__ ) . '" alt=""/></span>' ); ?>
|
316 |
+
<div class="bws_help_box bws_help_box_right<?php if ( $wp_version >= '3.9' ) echo ' dashicons dashicons-editor-help'; ?>">
|
317 |
+
<div class="bws_hidden_help_text" style="min-width: 180px;">
|
318 |
+
<?php printf(
|
319 |
+
__( "You can add Facebook buttons to your page or post by clicking on %s button in the content edit block using the Visual mode. If the button isn't displayed, please use the shortcode %s", 'facebook-button-plugin' ),
|
320 |
+
'<code><img style="vertical-align: sub;" src="' . plugins_url( 'bws_menu/images/shortcode-icon.png', __FILE__ ) . '" alt="" /></code>',
|
321 |
+
'<span class="bws_code">[fb_button]</span>'
|
322 |
+
); ?>
|
323 |
+
</div>
|
324 |
+
</div>
|
325 |
+
</div>
|
326 |
+
<form method="post" action="" enctype="multipart/form-data" class="bws_form">
|
327 |
+
<div id="fcbkbttn_settings_form">
|
328 |
+
<table class="form-table">
|
329 |
+
<tr>
|
330 |
+
<th scope="row"><?php _e( 'Display button', 'facebook-button-plugin' ); ?></th>
|
331 |
+
<td>
|
332 |
+
<fieldset>
|
333 |
+
<label><input name='fcbkbttn_my_page' type='checkbox' value='1' <?php if ( 1 == $fcbkbttn_options['my_page'] ) echo 'checked="checked "'; ?>/> <?php _e( "My Page", 'facebook-button-plugin' ); ?></label><br />
|
334 |
+
<label><input name='fcbkbttn_like' type='checkbox' <?php if ( 0 !== ( $fcbkbttn_options['like'] ) ) echo 'checked="checked "'; ?>/> <?php _e( "Like", 'facebook-button-plugin' ); ?></label><br />
|
335 |
+
<label><input name='fcbkbttn_share' type='checkbox' value='1' <?php if ( 1 == $fcbkbttn_options['share'] ) echo 'checked="checked "'; ?>/> <?php _e( "Share", 'facebook-button-plugin' ); ?></label><br />
|
336 |
+
</fieldset>
|
337 |
+
</td>
|
338 |
+
</tr>
|
339 |
+
<tr>
|
340 |
+
<th><?php _e( 'Facebook buttons position', 'facebook-button-plugin' ); ?></th>
|
341 |
+
<td>
|
342 |
+
<select name="fcbkbttn_where">
|
343 |
+
<option <?php if ( 'before' == $fcbkbttn_options['where'] ) echo 'selected="selected"'; ?> value="before"><?php _e( "Before", 'facebook-button-plugin' ); ?></option>
|
344 |
+
<option <?php if ( 'after' == $fcbkbttn_options['where'] ) echo 'selected="selected"'; ?> value="after"><?php _e( "After", 'facebook-button-plugin' ); ?></option>
|
345 |
+
<option <?php if ( 'beforeandafter' == $fcbkbttn_options['where'] ) echo 'selected="selected"'; ?> value="beforeandafter"><?php _e( "Before and After", 'facebook-button-plugin' ); ?></option>
|
346 |
+
<option <?php if ( 'shortcode' == $fcbkbttn_options['where'] ) echo 'selected="selected"'; ?> value="shortcode"><?php _e( "Shortcode", 'facebook-button-plugin' ); ?></option>
|
347 |
</select>
|
348 |
+
</td>
|
349 |
+
</tr>
|
350 |
+
<tr>
|
351 |
+
<th><?php _e( "Facebook buttons language", 'facebook-button-plugin' ); ?></th>
|
352 |
+
<td>
|
353 |
+
<fieldset>
|
354 |
+
<select name="fcbkbttn_locale">
|
355 |
+
<?php foreach ( $fcbkbttn_lang_codes as $key => $val ) {
|
356 |
+
echo '<option value="' . $key . '"';
|
357 |
+
if ( $key == $fcbkbttn_options['locale'] )
|
358 |
+
echo ' selected="selected"';
|
359 |
+
echo '>' . esc_html ( $val ) . '</option>';
|
360 |
+
} ?>
|
361 |
+
</select>
|
362 |
+
<span class="bws_info"><?php _e( 'Change the language of Facebook Button', 'facebook-button-plugin' ); ?></span><br />
|
363 |
+
<label>
|
364 |
+
<?php if ( array_key_exists( 'multilanguage/multilanguage.php', $all_plugins ) || array_key_exists( 'multilanguage-pro/multilanguage-pro.php', $all_plugins ) ) {
|
365 |
+
if ( is_plugin_active( 'multilanguage/multilanguage.php' ) || is_plugin_active( 'multilanguage-pro/multilanguage-pro.php' ) ) { ?>
|
366 |
+
<input type="checkbox" name="fcbkbttn_use_multilanguage_locale" value="1" <?php if ( 1 == $fcbkbttn_options["use_multilanguage_locale"] ) echo 'checked="checked"'; ?> />
|
367 |
+
<?php _e( 'Use the current site language', 'facebook-button-plugin' ); ?> <span class="bws_info">(<?php _e( 'Using', 'facebook-button-plugin' ); ?> Multilanguage by BestWebSoft)</span>
|
368 |
+
<?php } else { ?>
|
369 |
+
<input disabled="disabled" type="checkbox" name="fcbkbttn_use_multilanguage_locale" value="1" />
|
370 |
+
<?php _e( 'Use the current site language', 'facebook-button-plugin' ); ?>
|
371 |
+
<span class="bws_info">(<?php _e( 'Using', 'facebook-button-plugin' ); ?> Multilanguage by BestWebSoft) <a href="<?php echo bloginfo( "url" ); ?>/wp-admin/plugins.php"><?php _e( 'Activate', 'facebook-button-plugin' ); ?> Multilanguage</a></span>
|
372 |
+
<?php }
|
373 |
+
} else { ?>
|
374 |
+
<input disabled="disabled" type="checkbox" name="fcbkbttn_use_multilanguage_locale" value="1" />
|
375 |
+
<?php _e( 'Use the current site language', 'facebook-button-plugin' ); ?>
|
376 |
+
<span class="bws_info">(<?php _e( 'Using', 'facebook-button-plugin' ); ?> Multilanguage by BestWebSoft) <a href="http://bestwebsoft.com/products/multilanguage/?k=196fb3bb74b6e8b1e08f92cddfd54313&pn=78&v=<?php echo $fcbkbttn_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>"><?php _e( 'Download', 'facebook-button-plugin' ); ?> Multilanguage</a></span>
|
377 |
+
<?php } ?>
|
378 |
+
</label>
|
379 |
+
</fieldset>
|
380 |
+
</td>
|
381 |
+
</tr>
|
382 |
+
<tr>
|
383 |
+
<th><?php _e( 'Display buttons in excerpt', 'facebook-button-plugin' ); ?></th>
|
384 |
+
<td>
|
385 |
+
<input name='fcbkbttn_display_for_excerpt' type='checkbox' value='1' <?php if ( 1 == $fcbkbttn_options['display_for_excerpt'] ) echo 'checked="checked "'; ?>/>
|
386 |
+
</td>
|
387 |
+
</tr>
|
388 |
+
<tr id="fcbkbttn_id_option" class="fcbkbttn_my_page" <?php if ( 1 != $fcbkbttn_options['my_page'] ) echo 'style="display:none"'; ?>>
|
389 |
+
<th scope="row"><?php _e( 'Your Facebook ID or username', 'facebook-button-plugin' ); ?></th>
|
390 |
+
<td>
|
391 |
+
<input name='fcbkbttn_link' type='text' maxlength='250' value='<?php echo $fcbkbttn_options['link']; ?>' />
|
392 |
+
</td>
|
393 |
+
</tr>
|
394 |
+
<tr class="fcbkbttn_my_page" <?php if ( 1 != $fcbkbttn_options['my_page'] ) echo 'style="display:none"'; ?>>
|
395 |
+
<th>
|
396 |
+
<?php _e( '"My page" button image', 'facebook-button-plugin' ); ?>
|
397 |
+
</th>
|
398 |
+
<td>
|
399 |
+
<?php if ( scandir( $upload_dir['basedir'] ) && is_writable( $upload_dir['basedir'] ) ) { ?>
|
400 |
+
<select name="fcbkbttn_display_option">
|
401 |
+
<option <?php if ( 'standard' == $fcbkbttn_options['display_option'] ) echo 'selected="selected"'; ?> value="standard"><?php _e( 'Standard Facebook image', 'facebook-button-plugin' ); ?></option>
|
402 |
+
<option <?php if ( 'custom' == $fcbkbttn_options['display_option'] ) echo 'selected="selected"'; ?> value="custom"><?php _e( 'Custom Facebook image', 'facebook-button-plugin' ); ?></option>
|
403 |
+
</select>
|
404 |
+
<?php } else {
|
405 |
+
echo __( 'To use custom image you need to setup permissions to upload directory of your site', 'facebook-button-plugin' ) . " - " . $upload_dir['basedir'];
|
406 |
} ?>
|
407 |
+
</td>
|
408 |
+
</tr>
|
409 |
+
<tr class="fcbkbttn_my_page" <?php if ( 1 != $fcbkbttn_options['my_page'] ) echo 'style="display:none"'; ?>>
|
410 |
+
<th></th>
|
411 |
+
<td>
|
412 |
+
<?php _e( 'Current image', 'facebook-button-plugin' ); ?>:
|
413 |
+
<img src="<?php echo $fcbkbttn_options['fb_img_link']; ?>" style="vertical-align: middle;" />
|
414 |
+
</td>
|
415 |
+
</tr>
|
416 |
+
<tr class="fcbkbttn_my_page" id="fcbkbttn_display_option_custom" <?php if ( ! ( 1 == $fcbkbttn_options['my_page'] && 'custom' == $fcbkbttn_options['display_option'] ) ) echo 'style="display:none"'; ?>>
|
417 |
+
<th></th>
|
418 |
+
<td>
|
419 |
+
<input name="uploadfile" type="file" /><br />
|
420 |
+
<span class="bws_info"><?php _e( 'Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:"jpg", "jpeg", "png".', 'facebook-button-plugin' ); ?></span>
|
421 |
+
</td>
|
422 |
+
</tr>
|
423 |
+
<tr id="fcbkbttn_layout_option" class="fcbkbttn_like fcbkbttn_share" <?php if ( 1 != $fcbkbttn_options['like'] && 1 != $fcbkbttn_options['share'] ) echo 'style="display: none"'; ?>>
|
424 |
+
<th><?php _e( 'Button layout', 'facebook-button-plugin' ); ?></th>
|
425 |
+
<td>
|
426 |
+
<select name="fcbkbttn_layout_option">
|
427 |
+
<option class="fcbkbttn_like_layout" <?php if ( 1 != $fcbkbttn_options['like'] ) echo 'style="display: none"'; ?><?php if ( 'standard' == $fcbkbttn_options['layout_option'] || 1 == $fcbkbttn_options['like'] ) echo 'selected="selected"'; ?> value="standard">standard</option>
|
428 |
+
<option <?php if ( 'box_count' == $fcbkbttn_options['layout_option'] ) echo 'selected="selected"'; ?> value="box_count">box_count</option>
|
429 |
+
<option <?php if ( 'button_count' == $fcbkbttn_options['layout_option'] ) echo 'selected="selected"'; ?> value="button_count">button_count</option>
|
430 |
+
<option <?php if ( 'button' == $fcbkbttn_options['layout_option'] ) echo 'selected="selected"'; ?> value="button">button</option>
|
431 |
+
<option class="fcbkbttn_share_layout" <?php if ( 1 == $fcbkbttn_options['like'] ) echo 'style="display: none"'; ?><?php if ( 'icon_link' == $fcbkbttn_options['layout_option'] && 0 == $fcbkbttn_options['like'] ) echo 'selected="selected"'; ?> value="icon_link">Icon link</option>
|
432 |
+
<option class="fcbkbttn_share_layout" <?php if ( 1 == $fcbkbttn_options['like'] ) echo 'style="display: none"'; ?><?php if ( 'icon' == $fcbkbttn_options['layout_option'] && 0 == $fcbkbttn_options['like'] ) echo 'selected="selected"'; ?> value="icon">Icon</option>
|
433 |
+
<option class="fcbkbttn_share_layout" <?php if ( 1 == $fcbkbttn_options['like'] ) echo 'style="display: none"'; ?><?php if ( 'link' == $fcbkbttn_options['layout_option'] && 0 == $fcbkbttn_options['like'] ) echo 'selected="selected"'; ?> value="link">Link</option>
|
434 |
</select>
|
435 |
+
</td>
|
436 |
+
</tr>
|
437 |
+
<tr class="fcbkbttn_like" <?php if ( 1 !== $fcbkbttn_options['like'] ) echo 'style="display: none"'; ?>>
|
438 |
+
<th><?php _e( 'Like button action', 'facebook-button-plugin' ); ?></th>
|
439 |
+
<td>
|
440 |
+
<select name="fcbkbttn_like_action">
|
441 |
+
<option <?php if ( 'like' == $fcbkbttn_options['like_action'] ) echo 'selected="selected"'; ?> value="like"><?php _e( 'Like', 'facebook-button-plugin' ); ?></option>
|
442 |
+
<option <?php if ( 'recommend' == $fcbkbttn_options['like_action'] ) echo 'selected="selected"'; ?> value="recommend"><?php _e( 'Recommend', 'facebook-button-plugin' ); ?></option>
|
443 |
+
</select>
|
444 |
+
</td>
|
445 |
+
</tr>
|
446 |
+
<tr class="fcbkbttn_like fcbkbttn_like_standard_layout" <?php if ( 1 !== $fcbkbttn_options['like'] || 'standard' != $fcbkbttn_options['layout_option'] ) echo 'style="display: none"'; ?>>
|
447 |
+
<th><?php _e( 'Show faces', 'facebook-button-plugin' ); ?></th>
|
448 |
+
<td>
|
449 |
+
<input name="fcbkbttn_faces" type='checkbox' value="1" <?php if ( 1 == $fcbkbttn_options['faces'] ) echo 'checked="checked"'; ?> />
|
450 |
+
</td>
|
451 |
+
</tr>
|
452 |
+
<tr class="fcbkbttn_like fcbkbttn_like_standard_layout" <?php if ( 'standard' !== $fcbkbttn_options['layout_option'] ) echo 'style="display:none"'; ?>>
|
453 |
+
<th><?php _e( 'Layout width', 'facebook-button-plugin' ); ?></th>
|
454 |
+
<td>
|
455 |
+
<label><input name="fcbkbttn_width" type="number" step="1" min="225" value="<?php echo $fcbkbttn_options['width']; ?>"> px</label>
|
456 |
+
</td>
|
457 |
+
</tr>
|
458 |
+
<tr class="fcbkbttn_like fcbkbttn_like_standard_layout" <?php if ( 1 !== $fcbkbttn_options['like'] || 'standard' != $fcbkbttn_options['layout_option'] ) echo 'style="display: none"'; ?>>
|
459 |
+
<th><?php _e( 'Color scheme', 'facebook-button-plugin' ); ?></th>
|
460 |
+
<td>
|
461 |
+
<select name="fcbkbttn_color_scheme">
|
462 |
+
<option <?php if ( 'light' == $fcbkbttn_options['color_scheme'] ) echo 'selected="selected"'; ?> value="light"><?php _e( 'Light', 'facebook-button-plugin' ); ?></option>
|
463 |
+
<option <?php if ( 'dark' == $fcbkbttn_options['color_scheme'] ) echo 'selected="selected"'; ?> value="dark"><?php _e( 'Dark', 'facebook-button-plugin' ); ?></option>
|
464 |
+
</select>
|
465 |
+
</td>
|
466 |
+
</tr>
|
467 |
+
<tr class="fcbkbttn_like" <?php if ( 1 !== $fcbkbttn_options['like'] ) echo 'style="display: none"'; ?>>
|
468 |
+
<th scope="row"><?php _e( 'Html tag for "Like" button', 'facebook-button-plugin' ); ?></th>
|
469 |
+
<td>
|
470 |
+
<fieldset>
|
471 |
+
<label><input name='fcbkbttn_html5' type='radio' value='0' <?php if ( 0 == $fcbkbttn_options['html5'] ) echo 'checked="checked "'; ?> /><?php echo "<code><fb:like></code>"; ?></label><br />
|
472 |
+
<label><input name='fcbkbttn_html5' type='radio' value='1' <?php if ( 1 == $fcbkbttn_options['html5'] ) echo 'checked="checked "'; ?> /><?php echo "<code><div></code>"; ?></label>
|
473 |
+
<span class="bws_info">(<?php _e( "Use this tag to improve validation of your site", 'facebook-button-plugin' ); ?>)</span>
|
474 |
+
</fieldset>
|
475 |
+
</td>
|
476 |
+
</tr>
|
477 |
+
</table>
|
478 |
+
<!-- general -->
|
479 |
+
<?php if ( ! $bws_hide_premium_options_check ) { ?>
|
480 |
+
<div class="bws_pro_version_bloc fcbkbttn_like">
|
481 |
+
<div class="bws_pro_version_table_bloc">
|
482 |
+
<button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php _e( 'Close', 'facebook-button-plugin' ); ?>"></button>
|
483 |
+
<div class="bws_table_bg"></div>
|
484 |
+
<table class="form-table bws_pro_version">
|
485 |
+
<tr>
|
486 |
+
<th><?php _e( '"Like" for an entire site on every page:', 'facebook-button-plugin' ); ?></th>
|
487 |
+
<td><input disabled="disabled" name='fcbkbttn_entire_site_like' type='checkbox' value='1' /><br />
|
488 |
+
<span style="color: rgb(136, 136, 136); font-size: 10px; display:inline"><?php _e( 'Notice: "Like for the entire site" option does not create an extra button. This option merely allows your users to like the entire website when this option is enabled, or a single post when this option is disabled, when clicking the regular "Like" button.', 'facebook-button-plugin' ); ?></span>
|
489 |
+
</td>
|
490 |
+
</tr>
|
491 |
+
<tr>
|
492 |
+
<th scope="row" colspan="2">
|
493 |
+
* <?php _e( 'If you upgrade to Pro version all your settings will be saved.', 'facebook-button-plugin' ); ?>
|
494 |
+
</th>
|
495 |
+
</tr>
|
496 |
+
</table>
|
497 |
+
</div>
|
498 |
+
<div class="bws_pro_version_tooltip">
|
499 |
+
<div class="bws_info">
|
500 |
+
<?php _e( 'Unlock premium options by upgrading to Pro version', 'facebook-button-plugin' ); ?>
|
501 |
+
</div>
|
502 |
+
<a class="bws_button" href="http://bestwebsoft.com/products/facebook-like-button/?k=427287ceae749cbd015b4bba6041c4b8&pn=78&v=<?php echo $fcbkbttn_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Facebook Button Pro"><?php _e( 'Learn More', 'facebook-button-plugin' ); ?></a>
|
503 |
+
<div class="clear"></div>
|
504 |
+
</div>
|
505 |
+
</div>
|
506 |
+
<?php } ?>
|
507 |
+
<!-- end general -->
|
508 |
+
<p class="submit">
|
509 |
+
<input type="hidden" name="fcbkbttn_form_submit" value="submit" />
|
510 |
+
<input id="bws-submit-button" type="submit" class="button-primary" value="<?php _e( 'Save Changes', 'facebook-button-plugin' ); ?>" />
|
511 |
+
<?php wp_nonce_field( $plugin_basename, 'fcbkbttn_nonce_name' ); ?>
|
512 |
+
</p>
|
513 |
+
</div>
|
514 |
<!-- general -->
|
515 |
+
<?php if ( ! $bws_hide_premium_options_check ) { ?>
|
516 |
+
<div id="fcbkbttn_preview">
|
517 |
+
<div class="bws_pro_version_bloc">
|
518 |
+
<div class="bws_pro_version_table_bloc">
|
519 |
+
<button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php _e( 'Close', 'facebook-button-plugin' ); ?>"></button>
|
520 |
+
<div class="bws_table_bg"></div>
|
521 |
+
<div id="fcbkbttn_preview_content">
|
522 |
+
<h3><?php _e( 'Facebook Button preview:', 'facebook-button-plugin' ); ?></h3>
|
523 |
+
<img src='<?php echo plugins_url( 'images/preview.png', __FILE__ ); ?>' />
|
524 |
+
</div>
|
525 |
+
</div>
|
526 |
+
<div class="bws_pro_version_tooltip">
|
527 |
+
<div class="bws_info">
|
528 |
+
<?php _e( 'Unlock premium options by upgrading to Pro version', 'facebook-button-plugin' ); ?>
|
529 |
+
</div>
|
530 |
+
<a class="bws_button" href="http://bestwebsoft.com/products/facebook-like-button/?k=427287ceae749cbd015b4bba6041c4b8&pn=78&v=<?php echo $fcbkbttn_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Facebook Button Pro"><?php _e( 'Learn More', 'facebook-button-plugin' ); ?></a>
|
531 |
+
<div class="clear"></div>
|
532 |
+
</div>
|
|
|
|
|
533 |
</div>
|
|
|
|
|
534 |
</div>
|
535 |
+
<?php } ?>
|
536 |
<!-- end general -->
|
537 |
+
</form>
|
|
|
|
|
|
|
|
|
|
|
|
|
538 |
<?php bws_form_restore_default_settings( $plugin_basename );
|
539 |
}
|
540 |
} elseif ( 'extra' == $_GET['action'] ) { ?>
|
542 |
<div class="bws_pro_version_table_bloc">
|
543 |
<div class="bws_table_bg"></div>
|
544 |
<table class="form-table bws_pro_version">
|
545 |
+
<tr>
|
546 |
<td colspan="2">
|
547 |
+
<?php _e( 'Please choose the necessary post types (or single pages) where Facebook button will be displayed:', 'facebook-button-plugin' ); ?>
|
548 |
</td>
|
549 |
</tr>
|
550 |
+
<tr>
|
551 |
<td colspan="2">
|
552 |
<label>
|
553 |
<input disabled="disabled" checked="checked" type="checkbox" name="jstree_url" value="1" />
|
554 |
+
<?php _e( "Show URL for pages", 'facebook-button-plugin' );?>
|
555 |
</label>
|
556 |
</td>
|
557 |
</tr>
|
558 |
+
<tr>
|
559 |
<td colspan="2">
|
560 |
+
<img src="<?php echo plugins_url( 'images/pro_screen_1.png', __FILE__ ); ?>" alt="<?php _e( "Example of the site's pages tree", 'facebook-button-plugin' ); ?>" title="<?php _e( "Example of site pages' tree", 'facebook-button-plugin' ); ?>" />
|
561 |
</td>
|
562 |
</tr>
|
563 |
+
<tr>
|
564 |
<td colspan="2">
|
565 |
+
<input disabled="disabled" type="submit" class="button-primary" value="<?php _e( 'Save Changes', 'facebook-button-plugin' ); ?>" />
|
566 |
</td>
|
567 |
</tr>
|
568 |
+
<tr>
|
569 |
<th scope="row" colspan="2">
|
570 |
+
* <?php _e( 'If you upgrade to Pro version all your settings will be saved.', 'facebook-button-plugin' ); ?>
|
571 |
</th>
|
572 |
</tr>
|
573 |
</table>
|
574 |
</div>
|
575 |
<div class="bws_pro_version_tooltip">
|
576 |
<div class="bws_info">
|
577 |
+
<?php _e( 'Unlock premium options by upgrading to Pro version', 'facebook-button-plugin' ); ?>
|
578 |
</div>
|
579 |
+
<a class="bws_button" href="http://bestwebsoft.com/products/facebook-like-button/?k=427287ceae749cbd015b4bba6041c4b8&pn=78&v=<?php echo $fcbkbttn_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Facebook Button Pro"><?php _e( 'Learn More', 'facebook-button-plugin' ); ?></a>
|
580 |
<div class="clear"></div>
|
581 |
</div>
|
582 |
</div>
|
583 |
<?php } elseif ( 'go_pro' == $_GET['action'] ) {
|
584 |
+
bws_go_pro_tab_show( $bws_hide_premium_options_check, $fcbkbttn_plugin_info, $plugin_basename, 'facebook-button-plugin.php', 'facebook-button-pro.php', 'facebook-button-pro/facebook-button-pro.php', 'facebook-like-button', '427287ceae749cbd015b4bba6041c4b8', '78', isset( $go_pro_result['pro_plugin_is_activated'] ) );
|
585 |
}
|
586 |
bws_plugin_reviews_block( $fcbkbttn_plugin_info['Name'], 'facebook-button-plugin' ); ?>
|
587 |
</div>
|
589 |
<?php }
|
590 |
}
|
591 |
|
592 |
+
if ( ! function_exists( 'fcbkbttn_button' ) ) {
|
593 |
+
function fcbkbttn_button() {
|
|
|
594 |
global $post, $fcbkbttn_options;
|
595 |
+
|
596 |
+
if ( isset( $post->ID ) )
|
597 |
+
$permalink_post = get_permalink( $post->ID );
|
598 |
+
|
599 |
+
$button = '<div class="fcbk_share">';
|
600 |
+
|
|
|
601 |
if ( 1 == $fcbkbttn_options['my_page'] ) {
|
602 |
$button .= '<div class="fcbk_button">
|
603 |
+
<a href="http://www.facebook.com/' . $fcbkbttn_options['link'] . '" target="_blank">
|
604 |
+
<img src="' . $fcbkbttn_options['fb_img_link'] . '" alt="Fb-Button" />
|
605 |
</a>
|
606 |
</div>';
|
607 |
}
|
608 |
+
|
609 |
if ( 1 == $fcbkbttn_options['like'] ) {
|
610 |
$button .= '<div class="fcbk_like">';
|
611 |
+
|
612 |
if ( 1 == $fcbkbttn_options['html5'] ) {
|
613 |
+
$button .= '<div class="fb-like" data-href="' . $permalink_post . '" data-colorscheme="' . $fcbkbttn_options['color_scheme'] . '" data-layout="' . $fcbkbttn_options['layout_option'] . '" data-action="' . $fcbkbttn_options['like_action'] . '" ';
|
614 |
+
if ( 'standard' == $fcbkbttn_options['layout_option'] ) {
|
615 |
+
$button .= ' data-width="' . $fcbkbttn_options['width'] . 'px"';
|
616 |
+
$button .= ( 1 == $fcbkbttn_options['faces'] ) ? "data-show-faces='true'" : "data-show-faces='false'";
|
617 |
+
}
|
618 |
+
$button .= ( 1 == $fcbkbttn_options['share'] ) ? ' data-share="true"' : ' data-share="false"';
|
619 |
+
$button .= '></div></div>';
|
620 |
} else {
|
621 |
+
$button .= '<fb:like href="' . $permalink_post . '" action="' . $fcbkbttn_options['like_action'] . '" colorscheme="' . $fcbkbttn_options['color_scheme'] . '" layout="' . $fcbkbttn_options['layout_option'] . '" ';
|
622 |
+
if ( 'standard' == $fcbkbttn_options['layout_option'] ) {
|
623 |
+
$button .= ( 1 == $fcbkbttn_options['faces'] ) ? "show-faces='true'" : "show-faces='false'";
|
624 |
+
$button .= ' width="' . $fcbkbttn_options['width'] . 'px"';
|
625 |
+
}
|
626 |
+
$button .= ( 1 == $fcbkbttn_options['share'] ) ? ' share="true"' : ' share="false"';
|
627 |
+
$button .= '></fb:like></div>';
|
628 |
}
|
629 |
+
|
630 |
} else if ( 1 != $fcbkbttn_options['like'] && 1 == $fcbkbttn_options['share'] ) {
|
631 |
+
$button .= '<div class="fb-share-button" data-href="' . $permalink_post . '" data-type="' . $fcbkbttn_options['layout_option'] . '"></div>';
|
632 |
+
}
|
633 |
+
|
634 |
$button .= '</div>';
|
635 |
+
|
636 |
+
return $button;
|
637 |
+
}
|
638 |
+
}
|
639 |
+
|
640 |
+
/* Function taking from array 'fcbk_bttn_plgn_options' necessary information to create Facebook Button and reacting to your choise in plugin menu - points where it appears. */
|
641 |
+
if ( ! function_exists( 'fcbkbttn_display_button' ) ) {
|
642 |
+
function fcbkbttn_display_button( $content ) {
|
643 |
+
global $fcbkbttn_options;
|
644 |
+
/* Query the database to receive array 'fcbk_bttn_plgn_options' and receiving necessary information to create button */
|
645 |
+
$fcbkbttn_where = $fcbkbttn_options['where'];
|
646 |
+
|
647 |
+
$button = fcbkbttn_button();
|
648 |
/* Indication where show Facebook Button depending on selected item in admin page. */
|
649 |
if ( 'before' == $fcbkbttn_where ) {
|
650 |
return $button . $content;
|
666 |
global $post, $fcbkbttn_options, $fcbkbttn_locale;
|
667 |
|
668 |
if ( isset( $post->ID ) )
|
669 |
+
$permalink_post = get_permalink( $post->ID );
|
670 |
|
671 |
+
$button = fcbkbttn_button();
|
672 |
+
|
673 |
+
if ( ( 1 == $fcbkbttn_options['like'] || 1 == $fcbkbttn_options['share'] ) && isset( $permalink_post ) ) {
|
674 |
+
$button .= '<div id="fb-root"></div>
|
675 |
+
<script>(function(d, s, id) {
|
676 |
+
var js, fjs = d.getElementsByTagName(s)[0];
|
677 |
+
if (d.getElementById(id)) return;
|
678 |
+
js = d.createElement(s); js.id = id;
|
679 |
+
js.src = "//connect.facebook.net/' . $fcbkbttn_locale . '/sdk.js#xfbml=1&appId=1443946719181573&version=v2.0";
|
680 |
+
fjs.parentNode.insertBefore(js, fjs);
|
681 |
+
}(document, "script", "facebook-jssdk"));</script>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
682 |
}
|
|
|
683 |
return $button;
|
684 |
}
|
685 |
}
|
686 |
|
687 |
+
/* add shortcode content */
|
688 |
+
if ( ! function_exists( 'fcbkbttn_shortcode_button_content' ) ) {
|
689 |
+
function fcbkbttn_shortcode_button_content( $content ) { ?>
|
690 |
+
<div id="fcbkbttn" style="display:none;">
|
691 |
+
<fieldset>
|
692 |
+
<?php _e( 'Add Facebook buttons to your page or post', 'facebook-button-plugin' ); ?>
|
693 |
+
</fieldset>
|
694 |
+
<input class="bws_default_shortcode" type="hidden" name="default" value="[fb_button]" />
|
695 |
+
<div class="clear"></div>
|
696 |
+
</div>
|
697 |
+
<?php }
|
698 |
+
}
|
699 |
+
|
700 |
/* Functions adds some right meta for Facebook */
|
701 |
if ( ! function_exists( 'fcbkbttn_meta' ) ) {
|
702 |
function fcbkbttn_meta() {
|
705 |
if ( is_singular() ) {
|
706 |
$image = '';
|
707 |
if ( has_post_thumbnail( get_the_ID() ) ) {
|
708 |
+
$image = wp_get_attachment_image_src( get_post_thumbnail_id(), 'thumbnail' );
|
709 |
$image = $image[0];
|
710 |
}
|
711 |
print "\n" . '<meta property="og:title" content="' . esc_attr( get_the_title() ) . '"/>';
|
783 |
if ( ! $this_plugin )
|
784 |
$this_plugin = plugin_basename( __FILE__ );
|
785 |
if ( $file == $this_plugin ) {
|
786 |
+
$settings_link = '<a href="admin.php?page=facebook-button-plugin.php">' . __( 'Settings', 'facebook-button-plugin' ) . '</a>';
|
787 |
array_unshift( $links, $settings_link );
|
788 |
}
|
789 |
}
|
797 |
$base = plugin_basename( __FILE__ );
|
798 |
if ( $file == $base ) {
|
799 |
if ( ! is_network_admin() )
|
800 |
+
$links[] = '<a href="admin.php?page=facebook-button-plugin.php">' . __( 'Settings', 'facebook-button-plugin' ) . '</a>';
|
801 |
+
$links[] = '<a href="http://wordpress.org/plugins/facebook-button-plugin/faq/" target="_blank">' . __( 'FAQ', 'facebook-button-plugin' ) . '</a>';
|
802 |
+
$links[] = '<a href="http://support.bestwebsoft.com">' . __( 'Support', 'facebook-button-plugin' ) . '</a>';
|
803 |
}
|
804 |
return $links;
|
805 |
}
|
806 |
}
|
807 |
/* End function fcbkbttn_links */
|
808 |
|
809 |
+
/* add help tab */
|
810 |
+
if ( ! function_exists( 'fcbkbttn_add_tabs' ) ) {
|
811 |
+
function fcbkbttn_add_tabs() {
|
812 |
+
$screen = get_current_screen();
|
813 |
+
$args = array(
|
814 |
+
'id' => 'fcbkbttn',
|
815 |
+
'section' => '200538939'
|
816 |
+
);
|
817 |
+
bws_help_tab( $screen, $args );
|
818 |
+
}
|
819 |
+
}
|
820 |
+
|
821 |
if ( ! function_exists ( 'fcbkbttn_plugin_banner' ) ) {
|
822 |
function fcbkbttn_plugin_banner() {
|
823 |
global $hook_suffix;
|
824 |
if ( 'plugins.php' == $hook_suffix ) {
|
825 |
+
global $fcbkbttn_plugin_info, $fcbkbttn_options;
|
826 |
+
if ( empty( $fcbkbttn_options ) )
|
827 |
+
$fcbkbttn_options = get_option( 'fcbk_bttn_plgn_options' );
|
828 |
+
|
829 |
+
if ( isset( $fcbkbttn_options['first_install'] ) && strtotime( '-1 week' ) > $fcbkbttn_options['first_install'] )
|
830 |
+
bws_plugin_banner( $fcbkbttn_plugin_info, 'fcbkbttn', 'facebook-like-button', '45862a4b3cd7a03768666310fbdb19db', '78', '//ps.w.org/facebook-button-plugin/assets/icon-128x128.png' );
|
831 |
+
|
832 |
+
bws_plugin_banner_to_settings( $fcbkbttn_plugin_info, 'fcbk_bttn_plgn_options', 'facebook-button-plugin', 'admin.php?page=facebook-button-plugin.php' );
|
833 |
}
|
834 |
}
|
835 |
}
|
875 |
/* Calling a function add administrative menu. */
|
876 |
add_action( 'admin_menu', 'fcbkbttn_add_pages' );
|
877 |
/* Initialization ##*/
|
878 |
+
add_action( 'plugins_loaded', 'fcbkbttn_plugins_loaded' );
|
879 |
add_action( 'init', 'fcbkbttn_init' );
|
|
|
880 |
add_action( 'admin_init', 'fcbkbttn_admin_init' );
|
881 |
+
|
882 |
+
/* Adding stylesheets */
|
883 |
add_action( 'wp_enqueue_scripts', 'fcbkbttn_admin_head' );
|
884 |
add_action( 'admin_enqueue_scripts', 'fcbkbttn_admin_head' );
|
885 |
/* Adding front-end stylesheets */
|
888 |
/* Add shortcode and plugin buttons */
|
889 |
add_shortcode( 'fb_button', 'fcbkbttn_shortcode' );
|
890 |
add_filter( 'the_content', 'fcbkbttn_display_button' );
|
891 |
+
/* custom filter for bws button in tinyMCE */
|
892 |
+
add_filter( 'bws_shortcode_button_content', 'fcbkbttn_shortcode_button_content' );
|
893 |
/*## Additional links on the plugin page */
|
894 |
add_filter( 'plugin_action_links', 'fcbkbttn_action_links', 10, 2 );
|
895 |
add_filter( 'plugin_row_meta', 'fcbkbttn_links', 10, 2 );
|
images/preview.png
ADDED
Binary file
|
js/script.js
CHANGED
@@ -1,15 +1,5 @@
|
|
1 |
(function($) {
|
2 |
$(document).ready( function() {
|
3 |
-
$( '#fcbkbttn_settings_form input' ).bind( "change click select", function() {
|
4 |
-
if ( $( this ).attr( 'type' ) != 'submit' ) {
|
5 |
-
$( '.updated.fade' ).css( 'display', 'none' );
|
6 |
-
$( '#fcbkbttn_settings_notice' ).css( 'display', 'block' );
|
7 |
-
};
|
8 |
-
});
|
9 |
-
$( '#fcbkbttn_settings_form select' ).bind( "change", function() {
|
10 |
-
$( '.updated.fade' ).css( 'display', 'none' );
|
11 |
-
$( '#fcbkbttn_settings_notice' ).css( 'display', 'block' );
|
12 |
-
});
|
13 |
|
14 |
$( 'input[name="fcbkbttn_my_page"]' ).change( function() {
|
15 |
if ( $( this ).is( ":checked" ) ) {
|
@@ -24,14 +14,24 @@
|
|
24 |
}
|
25 |
});
|
26 |
|
27 |
-
$( '
|
28 |
-
if ( $( this ).
|
29 |
-
$( '
|
30 |
} else {
|
31 |
-
$( '
|
32 |
}
|
33 |
});
|
34 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
$( 'select[name="fcbkbttn_display_option"]' ).change( function() {
|
36 |
if ( $( this ).val() == 'custom' ) {
|
37 |
$( '#fcbkbttn_display_option_custom' ).show();
|
@@ -39,5 +39,29 @@
|
|
39 |
$( '#fcbkbttn_display_option_custom' ).hide();
|
40 |
}
|
41 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
});
|
43 |
})(jQuery);
|
1 |
(function($) {
|
2 |
$(document).ready( function() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
|
4 |
$( 'input[name="fcbkbttn_my_page"]' ).change( function() {
|
5 |
if ( $( this ).is( ":checked" ) ) {
|
14 |
}
|
15 |
});
|
16 |
|
17 |
+
$( 'input[name="fcbkbttn_like"]' ).change( function() {
|
18 |
+
if ( $( this ).is( ":checked" ) ) {
|
19 |
+
$( '.fcbkbttn_like' ).show();
|
20 |
} else {
|
21 |
+
$( '.fcbkbttn_like' ).hide();
|
22 |
}
|
23 |
});
|
24 |
|
25 |
+
$( 'input[name="fcbkbttn_share"]' ).change( function() {
|
26 |
+
if ( $( this ).is( ":checked" ) ) {
|
27 |
+
$( '.fcbkbttn_share' ).show();
|
28 |
+
} else {
|
29 |
+
if ( ! $( 'input[name="fcbkbttn_like"]' ).is( ":checked" ) ) {
|
30 |
+
$( '.fcbkbttn_share' ).hide();
|
31 |
+
}
|
32 |
+
}
|
33 |
+
});
|
34 |
+
|
35 |
$( 'select[name="fcbkbttn_display_option"]' ).change( function() {
|
36 |
if ( $( this ).val() == 'custom' ) {
|
37 |
$( '#fcbkbttn_display_option_custom' ).show();
|
39 |
$( '#fcbkbttn_display_option_custom' ).hide();
|
40 |
}
|
41 |
});
|
42 |
+
|
43 |
+
$( 'input[name="fcbkbttn_like"]' ).change( function() {
|
44 |
+
if ( $( this ).is( ':checked' ) ) {
|
45 |
+
$( '.fcbkbttn_share_layout' ).hide();
|
46 |
+
$( '.fcbkbttn_like_layout' ).show().attr( 'selected', 'selected' );
|
47 |
+
$( '.fcbkbttn_like' ).show();
|
48 |
+
} else {
|
49 |
+
$( '.fcbkbttn_share_layout' ).show();
|
50 |
+
$( 'select[name="fcbkbttn_layout_option"]' ).find( 'option[value="button_count"]' ).attr( 'selected', 'selected' );
|
51 |
+
$( '.fcbkbttn_like, .fcbkbttn_like_layout' ).hide();
|
52 |
+
if ( $( 'input[name="fcbkbttn_share"]' ).is( ":checked" ) ) {
|
53 |
+
$( '.fcbkbttn_share' ).show();
|
54 |
+
}
|
55 |
+
}
|
56 |
+
});
|
57 |
+
|
58 |
+
$( 'select[name="fcbkbttn_layout_option"]' ).change( function() {
|
59 |
+
if ( $( this ).val() == 'standard' ) {
|
60 |
+
$( '.fcbkbttn_like_standard_layout' ).show();
|
61 |
+
} else {
|
62 |
+
$( '.fcbkbttn_like_standard_layout' ).hide();
|
63 |
+
}
|
64 |
+
});
|
65 |
+
|
66 |
});
|
67 |
})(jQuery);
|
languages/facebook-button-plugin-fi_FI.mo
ADDED
Binary file
|
languages/{facebook-fi_FI.po → facebook-button-plugin-fi_FI.po}
RENAMED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: facebook\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: Juhani Honkanen <juhani.honkanen@dnainternet.net>\n"
|
9 |
"Language: fi_FI\n"
|
@@ -13,238 +13,299 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit 1.
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: facebook-button-plugin.php:
|
21 |
-
#: facebook-button-plugin.php:
|
22 |
msgid "Facebook Button Settings"
|
23 |
msgstr "Facebook Napin asetukset"
|
24 |
|
25 |
-
#: facebook-button-plugin.php:
|
26 |
msgid "Settings saved"
|
27 |
msgstr "Asetukset tallennettu"
|
28 |
|
29 |
-
#: facebook-button-plugin.php:
|
30 |
msgid "Error: File size > 32K"
|
31 |
msgstr "Virhe: Tiedoston koko > 32K"
|
32 |
|
33 |
-
#: facebook-button-plugin.php:
|
34 |
msgid "Error: Invalid file type"
|
35 |
msgstr "Virhe: Väärä tiedostotyyppi"
|
36 |
|
37 |
-
#: facebook-button-plugin.php:
|
38 |
msgid "Upload successful."
|
39 |
msgstr "Lataaminen onnistui"
|
40 |
|
41 |
-
#: facebook-button-plugin.php:
|
42 |
msgid "Error: moving file failed"
|
43 |
msgstr "Virhe: tiedoston siirto epäonnistui"
|
44 |
|
45 |
-
#: facebook-button-plugin.php:
|
46 |
msgid "Error: check image width or height"
|
47 |
msgstr "Virhe: tarkista kuvan leveys tai korkeus"
|
48 |
|
49 |
-
#: facebook-button-plugin.php:
|
50 |
msgid "Uploading Error: check image properties"
|
51 |
msgstr "Virhe latauksessa: tarkista kuvan ominaisuudet"
|
52 |
|
53 |
-
#: facebook-button-plugin.php:
|
54 |
msgid "All plugin settings were restored."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: facebook-button-plugin.php:
|
58 |
-
#: facebook-button-plugin.php:
|
59 |
-
#: facebook-button-plugin.php:
|
60 |
msgid "Settings"
|
61 |
msgstr "Asetukset"
|
62 |
|
63 |
-
#: facebook-button-plugin.php:
|
64 |
msgid "Extra settings"
|
65 |
msgstr "Lisää asetuksia"
|
66 |
|
67 |
-
#: facebook-button-plugin.php:
|
68 |
-
#: facebook-button-plugin.php:681
|
69 |
-
msgid "FAQ"
|
70 |
-
msgstr "FAQ"
|
71 |
-
|
72 |
-
#: facebook-button-plugin.php:260
|
73 |
msgid "Go PRO"
|
74 |
msgstr "Hanki PRO versio"
|
75 |
|
76 |
-
#: facebook-button-plugin.php:
|
77 |
-
msgid "
|
78 |
-
msgstr "
|
79 |
|
80 |
-
#: facebook-button-plugin.php:
|
81 |
-
|
82 |
-
|
|
|
83 |
|
84 |
-
#: facebook-button-plugin.php:
|
85 |
-
#,
|
86 |
-
msgid "
|
87 |
-
msgstr "
|
88 |
|
89 |
-
#: facebook-button-plugin.php:
|
90 |
#, fuzzy
|
91 |
msgid "Display button"
|
92 |
msgstr "Näytä nappi:"
|
93 |
|
94 |
-
#: facebook-button-plugin.php:
|
95 |
msgid "My Page"
|
96 |
msgstr "Minun sivuni"
|
97 |
|
98 |
-
#: facebook-button-plugin.php:
|
|
|
99 |
msgid "Like"
|
100 |
msgstr "Tykkää"
|
101 |
|
102 |
-
#: facebook-button-plugin.php:
|
103 |
msgid "Share"
|
104 |
msgstr "Jaa"
|
105 |
|
106 |
-
#: facebook-button-plugin.php:
|
107 |
-
msgid "\"My page\" button image"
|
108 |
-
msgstr ""
|
109 |
-
|
110 |
-
#: facebook-button-plugin.php:295
|
111 |
-
msgid "Standard Facebook image"
|
112 |
-
msgstr "Standardi Facebook kuva"
|
113 |
-
|
114 |
-
#: facebook-button-plugin.php:296
|
115 |
-
msgid "Custom Facebook image"
|
116 |
-
msgstr "Mukautettu Fecabook kuva"
|
117 |
-
|
118 |
-
#: facebook-button-plugin.php:299
|
119 |
-
msgid "To use custom image you need to setup permissions to upload directory of your site"
|
120 |
-
msgstr "Käyttääksesi mukautettua, kuva pitää voida ladata hakemistoosi"
|
121 |
-
|
122 |
-
#: facebook-button-plugin.php:306
|
123 |
-
#, fuzzy
|
124 |
-
msgid "Current image"
|
125 |
-
msgstr "Nykyinen kuva:"
|
126 |
-
|
127 |
-
#: facebook-button-plugin.php:314
|
128 |
-
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
129 |
-
msgstr "Kuvan ominaisuudet: max leveys 100px; max korkeus 40px; max koko 32Kb; kuvan tyypit:\"jpg\", \"jpeg\", \"png\"."
|
130 |
-
|
131 |
-
#: facebook-button-plugin.php:319
|
132 |
#, fuzzy
|
133 |
msgid "Facebook buttons position"
|
134 |
msgstr "Facebook napin paikka:"
|
135 |
|
136 |
-
#: facebook-button-plugin.php:
|
137 |
msgid "Before"
|
138 |
msgstr "Ennen"
|
139 |
|
140 |
-
#: facebook-button-plugin.php:
|
141 |
msgid "After"
|
142 |
msgstr "Jälkeen"
|
143 |
|
144 |
-
#: facebook-button-plugin.php:
|
145 |
msgid "Before and After"
|
146 |
msgstr "Ennen ja Jälkeen"
|
147 |
|
148 |
-
#: facebook-button-plugin.php:
|
149 |
msgid "Shortcode"
|
150 |
msgstr "Lyhytkoodi"
|
151 |
|
152 |
-
#: facebook-button-plugin.php:
|
153 |
-
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
154 |
-
msgstr "Mikäli haluat lisätä Facebook napin sivullesi, kopioi ja liitä tämä lyhytkoodi artikkeliisi tai sivullesi:"
|
155 |
-
|
156 |
-
#: facebook-button-plugin.php:333
|
157 |
#, fuzzy
|
158 |
msgid "Facebook buttons language"
|
159 |
msgstr "Facebook Napin kieli:"
|
160 |
|
161 |
-
#: facebook-button-plugin.php:
|
162 |
msgid "Change the language of Facebook Like Button"
|
163 |
msgstr "Vaihda Facebook napin kieli"
|
164 |
|
165 |
-
#: facebook-button-plugin.php:
|
166 |
-
#: facebook-button-plugin.php:
|
167 |
-
#: facebook-button-plugin.php:
|
168 |
msgid "Use the current site language"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: facebook-button-plugin.php:
|
172 |
-
#: facebook-button-plugin.php:
|
173 |
-
#: facebook-button-plugin.php:
|
174 |
msgid "Using"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: facebook-button-plugin.php:
|
178 |
msgid "Activate"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: facebook-button-plugin.php:
|
182 |
msgid "Download"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
186 |
#, fuzzy
|
187 |
msgid "Html tag for \"Like\" button"
|
188 |
msgstr "HTML tagi Tykkää Napille:"
|
189 |
|
190 |
-
#: facebook-button-plugin.php:
|
191 |
msgid "Use this tag to improve validation of your site"
|
192 |
msgstr "Käytä tätä tagia parantamaan sivusi näkyvyyttä"
|
193 |
|
194 |
-
#: facebook-button-plugin.php:
|
195 |
-
|
196 |
-
msgid "
|
197 |
-
msgstr "
|
198 |
|
199 |
-
#: facebook-button-plugin.php:
|
200 |
msgid "\"Like\" for an entire site on every page:"
|
201 |
msgstr "\"Like\" koko sivustolle ja kaikille sivuille:"
|
202 |
|
203 |
-
#: facebook-button-plugin.php:
|
204 |
msgid "Notice: \"Like for the entire site\" option does not create an extra button. This option merely allows your users to like the entire website when this option is enabled, or a single post when this option is disabled, when clicking the regular \"Like\" button."
|
205 |
msgstr "Huomautus: \"Tykkää koko sivustosta\" tämä valinta ei tee ylimääräistä nappia. Tämä valinnan avulla käyttäjät tykkäävät koko sivustosta. Mikäli ei ole valittu, niin käyttäjä tykkää vain yhdestä sivusta klikatessaan \"Tykkää\" nappia."
|
206 |
|
207 |
-
#: facebook-button-plugin.php:
|
208 |
-
#: facebook-button-plugin.php:
|
209 |
msgid "If you upgrade to Pro version all your settings will be saved."
|
210 |
msgstr "Mikäli päivität Pro versioon, kaikki asetuksesi tallennetaan."
|
211 |
|
212 |
-
#: facebook-button-plugin.php:
|
213 |
-
#: facebook-button-plugin.php:
|
|
|
214 |
#, fuzzy
|
215 |
msgid "Unlock premium options by upgrading to Pro version"
|
216 |
msgstr "Ota käyttöön premium valinnat päivittämällä PRO versioon."
|
217 |
|
218 |
-
#: facebook-button-plugin.php:
|
219 |
-
#: facebook-button-plugin.php:
|
|
|
220 |
msgid "Learn More"
|
221 |
msgstr "Lue Lisää"
|
222 |
|
223 |
-
#: facebook-button-plugin.php:
|
224 |
-
#: facebook-button-plugin.php:
|
225 |
msgid "Save Changes"
|
226 |
msgstr "Tallenna muutokset"
|
227 |
|
228 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
229 |
msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
|
230 |
msgstr "Valitse haluamasi viestin tyyppi (tai yksittäiset sivut) joissa Facebook nappi näytetään:"
|
231 |
|
232 |
-
#: facebook-button-plugin.php:
|
233 |
msgid "Show URL for pages"
|
234 |
msgstr "Näytä URL sivuilla"
|
235 |
|
236 |
-
#: facebook-button-plugin.php:
|
237 |
msgid "Example of the site's pages tree"
|
238 |
msgstr "Esimerkki sivuston sivuhakemistosta"
|
239 |
|
240 |
-
#: facebook-button-plugin.php:
|
241 |
msgid "Example of site pages' tree"
|
242 |
msgstr "Esimerkki sivun sivuhakemistosta"
|
243 |
|
244 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
msgid "Support"
|
246 |
msgstr "Tuki"
|
247 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
248 |
#~ msgid "Go"
|
249 |
#~ msgstr "Mene"
|
250 |
|
@@ -266,9 +327,6 @@ msgstr "Tuki"
|
|
266 |
#~ msgid "Facebook image:"
|
267 |
#~ msgstr "Facebook kuva:"
|
268 |
|
269 |
-
#~ msgid "Facebook Button"
|
270 |
-
#~ msgstr "Facebook Nappi"
|
271 |
-
|
272 |
#~ msgid "requires"
|
273 |
#~ msgstr "vaadittu"
|
274 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-10-12 16:56+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-10-12 16:56+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Juhani Honkanen <juhani.honkanen@dnainternet.net>\n"
|
9 |
"Language: fi_FI\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 1.8.4\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: facebook-button-plugin.php:34
|
21 |
+
#: facebook-button-plugin.php:290
|
22 |
msgid "Facebook Button Settings"
|
23 |
msgstr "Facebook Napin asetukset"
|
24 |
|
25 |
+
#: facebook-button-plugin.php:212
|
26 |
msgid "Settings saved"
|
27 |
msgstr "Asetukset tallennettu"
|
28 |
|
29 |
+
#: facebook-button-plugin.php:238
|
30 |
msgid "Error: File size > 32K"
|
31 |
msgstr "Virhe: Tiedoston koko > 32K"
|
32 |
|
33 |
+
#: facebook-button-plugin.php:241
|
34 |
msgid "Error: Invalid file type"
|
35 |
msgstr "Virhe: Väärä tiedostotyyppi"
|
36 |
|
37 |
+
#: facebook-button-plugin.php:247
|
38 |
msgid "Upload successful."
|
39 |
msgstr "Lataaminen onnistui"
|
40 |
|
41 |
+
#: facebook-button-plugin.php:257
|
42 |
msgid "Error: moving file failed"
|
43 |
msgstr "Virhe: tiedoston siirto epäonnistui"
|
44 |
|
45 |
+
#: facebook-button-plugin.php:260
|
46 |
msgid "Error: check image width or height"
|
47 |
msgstr "Virhe: tarkista kuvan leveys tai korkeus"
|
48 |
|
49 |
+
#: facebook-button-plugin.php:264
|
50 |
msgid "Uploading Error: check image properties"
|
51 |
msgstr "Virhe latauksessa: tarkista kuvan ominaisuudet"
|
52 |
|
53 |
+
#: facebook-button-plugin.php:277
|
54 |
msgid "All plugin settings were restored."
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: facebook-button-plugin.php:292
|
58 |
+
#: facebook-button-plugin.php:783
|
59 |
+
#: facebook-button-plugin.php:797
|
60 |
msgid "Settings"
|
61 |
msgstr "Asetukset"
|
62 |
|
63 |
+
#: facebook-button-plugin.php:293
|
64 |
msgid "Extra settings"
|
65 |
msgstr "Lisää asetuksia"
|
66 |
|
67 |
+
#: facebook-button-plugin.php:294
|
|
|
|
|
|
|
|
|
|
|
68 |
msgid "Go PRO"
|
69 |
msgstr "Hanki PRO versio"
|
70 |
|
71 |
+
#: facebook-button-plugin.php:297
|
72 |
+
msgid "Please, enable JavaScript in Your browser."
|
73 |
+
msgstr ""
|
74 |
|
75 |
+
#: facebook-button-plugin.php:311
|
76 |
+
#, fuzzy, php-format
|
77 |
+
msgid "If you would like to add Facebook buttons to your page or post, please use %s button"
|
78 |
+
msgstr "Mikäli haluat lisätä Facebook napin sivullesi, kopioi ja liitä tämä lyhytkoodi artikkeliisi tai sivullesi:"
|
79 |
|
80 |
+
#: facebook-button-plugin.php:316
|
81 |
+
#, php-format
|
82 |
+
msgid "You can add Facebook buttons to your page or post by clicking on %s button in the content edit block using the Visual mode. If the button isn't displayed, please use the shortcode %s"
|
83 |
+
msgstr ""
|
84 |
|
85 |
+
#: facebook-button-plugin.php:327
|
86 |
#, fuzzy
|
87 |
msgid "Display button"
|
88 |
msgstr "Näytä nappi:"
|
89 |
|
90 |
+
#: facebook-button-plugin.php:330
|
91 |
msgid "My Page"
|
92 |
msgstr "Minun sivuni"
|
93 |
|
94 |
+
#: facebook-button-plugin.php:331
|
95 |
+
#: facebook-button-plugin.php:438
|
96 |
msgid "Like"
|
97 |
msgstr "Tykkää"
|
98 |
|
99 |
+
#: facebook-button-plugin.php:332
|
100 |
msgid "Share"
|
101 |
msgstr "Jaa"
|
102 |
|
103 |
+
#: facebook-button-plugin.php:337
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
#, fuzzy
|
105 |
msgid "Facebook buttons position"
|
106 |
msgstr "Facebook napin paikka:"
|
107 |
|
108 |
+
#: facebook-button-plugin.php:340
|
109 |
msgid "Before"
|
110 |
msgstr "Ennen"
|
111 |
|
112 |
+
#: facebook-button-plugin.php:341
|
113 |
msgid "After"
|
114 |
msgstr "Jälkeen"
|
115 |
|
116 |
+
#: facebook-button-plugin.php:342
|
117 |
msgid "Before and After"
|
118 |
msgstr "Ennen ja Jälkeen"
|
119 |
|
120 |
+
#: facebook-button-plugin.php:343
|
121 |
msgid "Shortcode"
|
122 |
msgstr "Lyhytkoodi"
|
123 |
|
124 |
+
#: facebook-button-plugin.php:348
|
|
|
|
|
|
|
|
|
125 |
#, fuzzy
|
126 |
msgid "Facebook buttons language"
|
127 |
msgstr "Facebook Napin kieli:"
|
128 |
|
129 |
+
#: facebook-button-plugin.php:359
|
130 |
msgid "Change the language of Facebook Like Button"
|
131 |
msgstr "Vaihda Facebook napin kieli"
|
132 |
|
133 |
+
#: facebook-button-plugin.php:364
|
134 |
+
#: facebook-button-plugin.php:367
|
135 |
+
#: facebook-button-plugin.php:372
|
136 |
msgid "Use the current site language"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: facebook-button-plugin.php:364
|
140 |
+
#: facebook-button-plugin.php:368
|
141 |
+
#: facebook-button-plugin.php:373
|
142 |
msgid "Using"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: facebook-button-plugin.php:368
|
146 |
msgid "Activate"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: facebook-button-plugin.php:373
|
150 |
msgid "Download"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: facebook-button-plugin.php:380
|
154 |
+
#, fuzzy
|
155 |
+
msgid "Display buttons in excerpt"
|
156 |
+
msgstr "Näytä nappi:"
|
157 |
+
|
158 |
+
#: facebook-button-plugin.php:386
|
159 |
+
#, fuzzy
|
160 |
+
msgid "Your Facebook ID or username"
|
161 |
+
msgstr "Sinun Facebook ID:si tai käyttäjänimesi:"
|
162 |
+
|
163 |
+
#: facebook-button-plugin.php:393
|
164 |
+
msgid "\"My page\" button image"
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: facebook-button-plugin.php:398
|
168 |
+
msgid "Standard Facebook image"
|
169 |
+
msgstr "Standardi Facebook kuva"
|
170 |
+
|
171 |
+
#: facebook-button-plugin.php:399
|
172 |
+
msgid "Custom Facebook image"
|
173 |
+
msgstr "Mukautettu Fecabook kuva"
|
174 |
+
|
175 |
+
#: facebook-button-plugin.php:402
|
176 |
+
msgid "To use custom image you need to setup permissions to upload directory of your site"
|
177 |
+
msgstr "Käyttääksesi mukautettua, kuva pitää voida ladata hakemistoosi"
|
178 |
+
|
179 |
+
#: facebook-button-plugin.php:409
|
180 |
+
#, fuzzy
|
181 |
+
msgid "Current image"
|
182 |
+
msgstr "Nykyinen kuva:"
|
183 |
+
|
184 |
+
#: facebook-button-plugin.php:417
|
185 |
+
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
186 |
+
msgstr "Kuvan ominaisuudet: max leveys 100px; max korkeus 40px; max koko 32Kb; kuvan tyypit:\"jpg\", \"jpeg\", \"png\"."
|
187 |
+
|
188 |
+
#: facebook-button-plugin.php:421
|
189 |
+
msgid "Button layout"
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: facebook-button-plugin.php:435
|
193 |
+
msgid "Like button action"
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: facebook-button-plugin.php:439
|
197 |
+
msgid "Recommend"
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: facebook-button-plugin.php:444
|
201 |
+
msgid "Show faces"
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: facebook-button-plugin.php:450
|
205 |
+
msgid "Layout width"
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: facebook-button-plugin.php:456
|
209 |
+
msgid "Color scheme"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: facebook-button-plugin.php:459
|
213 |
+
msgid "Light"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: facebook-button-plugin.php:460
|
217 |
+
msgid "Dark"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: facebook-button-plugin.php:465
|
221 |
#, fuzzy
|
222 |
msgid "Html tag for \"Like\" button"
|
223 |
msgstr "HTML tagi Tykkää Napille:"
|
224 |
|
225 |
+
#: facebook-button-plugin.php:470
|
226 |
msgid "Use this tag to improve validation of your site"
|
227 |
msgstr "Käytä tätä tagia parantamaan sivusi näkyvyyttä"
|
228 |
|
229 |
+
#: facebook-button-plugin.php:479
|
230 |
+
#: facebook-button-plugin.php:516
|
231 |
+
msgid "Close"
|
232 |
+
msgstr ""
|
233 |
|
234 |
+
#: facebook-button-plugin.php:483
|
235 |
msgid "\"Like\" for an entire site on every page:"
|
236 |
msgstr "\"Like\" koko sivustolle ja kaikille sivuille:"
|
237 |
|
238 |
+
#: facebook-button-plugin.php:485
|
239 |
msgid "Notice: \"Like for the entire site\" option does not create an extra button. This option merely allows your users to like the entire website when this option is enabled, or a single post when this option is disabled, when clicking the regular \"Like\" button."
|
240 |
msgstr "Huomautus: \"Tykkää koko sivustosta\" tämä valinta ei tee ylimääräistä nappia. Tämä valinnan avulla käyttäjät tykkäävät koko sivustosta. Mikäli ei ole valittu, niin käyttäjä tykkää vain yhdestä sivusta klikatessaan \"Tykkää\" nappia."
|
241 |
|
242 |
+
#: facebook-button-plugin.php:490
|
243 |
+
#: facebook-button-plugin.php:567
|
244 |
msgid "If you upgrade to Pro version all your settings will be saved."
|
245 |
msgstr "Mikäli päivität Pro versioon, kaikki asetuksesi tallennetaan."
|
246 |
|
247 |
+
#: facebook-button-plugin.php:497
|
248 |
+
#: facebook-button-plugin.php:525
|
249 |
+
#: facebook-button-plugin.php:574
|
250 |
#, fuzzy
|
251 |
msgid "Unlock premium options by upgrading to Pro version"
|
252 |
msgstr "Ota käyttöön premium valinnat päivittämällä PRO versioon."
|
253 |
|
254 |
+
#: facebook-button-plugin.php:499
|
255 |
+
#: facebook-button-plugin.php:527
|
256 |
+
#: facebook-button-plugin.php:576
|
257 |
msgid "Learn More"
|
258 |
msgstr "Lue Lisää"
|
259 |
|
260 |
+
#: facebook-button-plugin.php:507
|
261 |
+
#: facebook-button-plugin.php:562
|
262 |
msgid "Save Changes"
|
263 |
msgstr "Tallenna muutokset"
|
264 |
|
265 |
+
#: facebook-button-plugin.php:519
|
266 |
+
#, fuzzy
|
267 |
+
msgid "Facebook Button preview:"
|
268 |
+
msgstr "Facebook Nappi"
|
269 |
+
|
270 |
+
#: facebook-button-plugin.php:544
|
271 |
msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
|
272 |
msgstr "Valitse haluamasi viestin tyyppi (tai yksittäiset sivut) joissa Facebook nappi näytetään:"
|
273 |
|
274 |
+
#: facebook-button-plugin.php:551
|
275 |
msgid "Show URL for pages"
|
276 |
msgstr "Näytä URL sivuilla"
|
277 |
|
278 |
+
#: facebook-button-plugin.php:557
|
279 |
msgid "Example of the site's pages tree"
|
280 |
msgstr "Esimerkki sivuston sivuhakemistosta"
|
281 |
|
282 |
+
#: facebook-button-plugin.php:557
|
283 |
msgid "Example of site pages' tree"
|
284 |
msgstr "Esimerkki sivun sivuhakemistosta"
|
285 |
|
286 |
+
#: facebook-button-plugin.php:689
|
287 |
+
#, fuzzy
|
288 |
+
msgid "Add Facebook buttons to your page or post"
|
289 |
+
msgstr "Facebook napin paikka:"
|
290 |
+
|
291 |
+
#: facebook-button-plugin.php:798
|
292 |
+
msgid "FAQ"
|
293 |
+
msgstr "FAQ"
|
294 |
+
|
295 |
+
#: facebook-button-plugin.php:799
|
296 |
msgid "Support"
|
297 |
msgstr "Tuki"
|
298 |
|
299 |
+
#~ msgid "Notice:"
|
300 |
+
#~ msgstr "Huomautus:"
|
301 |
+
|
302 |
+
#~ msgid ""
|
303 |
+
#~ "The plugin's settings have been changed. In order to save them please "
|
304 |
+
#~ "don't forget to click the 'Save Changes' button."
|
305 |
+
#~ msgstr ""
|
306 |
+
#~ "Lisäosan asetukset ovat muuttuneet: Mikäli haluat säilyttää uudet "
|
307 |
+
#~ "asetukset muista klikata Tallenna Asetukset nappia."
|
308 |
+
|
309 |
#~ msgid "Go"
|
310 |
#~ msgstr "Mene"
|
311 |
|
327 |
#~ msgid "Facebook image:"
|
328 |
#~ msgstr "Facebook kuva:"
|
329 |
|
|
|
|
|
|
|
330 |
#~ msgid "requires"
|
331 |
#~ msgstr "vaadittu"
|
332 |
|
languages/facebook-button-plugin-fr_FR.mo
ADDED
Binary file
|
languages/{facebook-fr_FR.po → facebook-button-plugin-fr_FR.po}
RENAMED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: facebook\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: http://wptheme.fr/\n"
|
9 |
"Language: fr\n"
|
@@ -13,234 +13,285 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit 1.
|
17 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: facebook-button-plugin.php:
|
21 |
-
#: facebook-button-plugin.php:
|
22 |
msgid "Facebook Button Settings"
|
23 |
msgstr "Réglages du bouton Facebook"
|
24 |
|
25 |
-
#: facebook-button-plugin.php:
|
26 |
msgid "Settings saved"
|
27 |
msgstr "Réglages sauvegardés "
|
28 |
|
29 |
-
#: facebook-button-plugin.php:
|
30 |
msgid "Error: File size > 32K"
|
31 |
msgstr "Erreur : Poids du fichier > 32K"
|
32 |
|
33 |
-
#: facebook-button-plugin.php:
|
34 |
msgid "Error: Invalid file type"
|
35 |
msgstr "Erreur : Type de fichier invalide"
|
36 |
|
37 |
-
#: facebook-button-plugin.php:
|
38 |
msgid "Upload successful."
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: facebook-button-plugin.php:
|
42 |
msgid "Error: moving file failed"
|
43 |
msgstr "Erreur : le déplacement du fichier a echoué"
|
44 |
|
45 |
-
#: facebook-button-plugin.php:
|
46 |
msgid "Error: check image width or height"
|
47 |
msgstr "Erreur : Vérifiez la taille et la largeur de l'image"
|
48 |
|
49 |
-
#: facebook-button-plugin.php:
|
50 |
msgid "Uploading Error: check image properties"
|
51 |
msgstr "Erreur d'upload : vérifiez les propriétés de l'image"
|
52 |
|
53 |
-
#: facebook-button-plugin.php:
|
54 |
msgid "All plugin settings were restored."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: facebook-button-plugin.php:
|
58 |
-
#: facebook-button-plugin.php:
|
59 |
-
#: facebook-button-plugin.php:
|
60 |
msgid "Settings"
|
61 |
msgstr "Réglages"
|
62 |
|
63 |
-
#: facebook-button-plugin.php:
|
64 |
#, fuzzy
|
65 |
msgid "Extra settings"
|
66 |
msgstr "Réglages"
|
67 |
|
68 |
-
#: facebook-button-plugin.php:
|
69 |
-
#: facebook-button-plugin.php:681
|
70 |
-
msgid "FAQ"
|
71 |
-
msgstr "FAQ"
|
72 |
-
|
73 |
-
#: facebook-button-plugin.php:260
|
74 |
msgid "Go PRO"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: facebook-button-plugin.php:
|
78 |
-
msgid "
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: facebook-button-plugin.php:
|
82 |
-
|
83 |
-
|
|
|
84 |
|
85 |
-
#: facebook-button-plugin.php:
|
86 |
-
#,
|
87 |
-
msgid "
|
88 |
-
msgstr "
|
89 |
|
90 |
-
#: facebook-button-plugin.php:
|
91 |
#, fuzzy
|
92 |
msgid "Display button"
|
93 |
msgstr "Afficher le bouton"
|
94 |
|
95 |
-
#: facebook-button-plugin.php:
|
96 |
msgid "My Page"
|
97 |
msgstr "Ma page"
|
98 |
|
99 |
-
#: facebook-button-plugin.php:
|
|
|
100 |
msgid "Like"
|
101 |
msgstr "Like"
|
102 |
|
103 |
-
#: facebook-button-plugin.php:
|
104 |
msgid "Share"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: facebook-button-plugin.php:
|
108 |
-
msgid "\"My page\" button image"
|
109 |
-
msgstr ""
|
110 |
-
|
111 |
-
#: facebook-button-plugin.php:295
|
112 |
-
msgid "Standard Facebook image"
|
113 |
-
msgstr "Image Facebook par défaut"
|
114 |
-
|
115 |
-
#: facebook-button-plugin.php:296
|
116 |
-
msgid "Custom Facebook image"
|
117 |
-
msgstr "Image Facebook personnalisée"
|
118 |
-
|
119 |
-
#: facebook-button-plugin.php:299
|
120 |
-
msgid "To use custom image you need to setup permissions to upload directory of your site"
|
121 |
-
msgstr ""
|
122 |
-
|
123 |
-
#: facebook-button-plugin.php:306
|
124 |
-
#, fuzzy
|
125 |
-
msgid "Current image"
|
126 |
-
msgstr "Image actuelle"
|
127 |
-
|
128 |
-
#: facebook-button-plugin.php:314
|
129 |
-
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
130 |
-
msgstr "Propriétés de l'image : largeur max:100px; hauteur max: 40px; poids max : 32kb; type d'image :\"jpg\", \"jpeg\", \"png\"."
|
131 |
-
|
132 |
-
#: facebook-button-plugin.php:319
|
133 |
#, fuzzy
|
134 |
msgid "Facebook buttons position"
|
135 |
msgstr "Position du bouton Facebook"
|
136 |
|
137 |
-
#: facebook-button-plugin.php:
|
138 |
msgid "Before"
|
139 |
msgstr "Avant"
|
140 |
|
141 |
-
#: facebook-button-plugin.php:
|
142 |
msgid "After"
|
143 |
msgstr "Après"
|
144 |
|
145 |
-
#: facebook-button-plugin.php:
|
146 |
msgid "Before and After"
|
147 |
msgstr "Avant et après"
|
148 |
|
149 |
-
#: facebook-button-plugin.php:
|
150 |
msgid "Shortcode"
|
151 |
msgstr "Shortcode"
|
152 |
|
153 |
-
#: facebook-button-plugin.php:
|
154 |
-
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
155 |
-
msgstr "Si vous souhaitez ajouter un bouton Facebook sur votre site internet, copier-collez ce Shortcodedans votre page ou votre article"
|
156 |
-
|
157 |
-
#: facebook-button-plugin.php:333
|
158 |
#, fuzzy
|
159 |
msgid "Facebook buttons language"
|
160 |
msgstr "Langue du bouton Facebook"
|
161 |
|
162 |
-
#: facebook-button-plugin.php:
|
163 |
msgid "Change the language of Facebook Like Button"
|
164 |
msgstr "Changer la langue du bouton Facebook"
|
165 |
|
166 |
-
#: facebook-button-plugin.php:
|
167 |
-
#: facebook-button-plugin.php:
|
168 |
-
#: facebook-button-plugin.php:
|
169 |
msgid "Use the current site language"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: facebook-button-plugin.php:
|
173 |
-
#: facebook-button-plugin.php:
|
174 |
-
#: facebook-button-plugin.php:
|
175 |
msgid "Using"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: facebook-button-plugin.php:
|
179 |
msgid "Activate"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: facebook-button-plugin.php:
|
183 |
msgid "Download"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
msgid "Html tag for \"Like\" button"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: facebook-button-plugin.php:
|
191 |
msgid "Use this tag to improve validation of your site"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: facebook-button-plugin.php:
|
195 |
-
|
196 |
-
msgid "
|
197 |
-
msgstr "
|
198 |
|
199 |
-
#: facebook-button-plugin.php:
|
200 |
msgid "\"Like\" for an entire site on every page:"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: facebook-button-plugin.php:
|
204 |
msgid "Notice: \"Like for the entire site\" option does not create an extra button. This option merely allows your users to like the entire website when this option is enabled, or a single post when this option is disabled, when clicking the regular \"Like\" button."
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: facebook-button-plugin.php:
|
208 |
-
#: facebook-button-plugin.php:
|
209 |
msgid "If you upgrade to Pro version all your settings will be saved."
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: facebook-button-plugin.php:
|
213 |
-
#: facebook-button-plugin.php:
|
|
|
214 |
msgid "Unlock premium options by upgrading to Pro version"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: facebook-button-plugin.php:
|
218 |
-
#: facebook-button-plugin.php:
|
|
|
219 |
msgid "Learn More"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: facebook-button-plugin.php:
|
223 |
-
#: facebook-button-plugin.php:
|
224 |
msgid "Save Changes"
|
225 |
msgstr "Sauvegarder les changements"
|
226 |
|
227 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
228 |
msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: facebook-button-plugin.php:
|
232 |
msgid "Show URL for pages"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: facebook-button-plugin.php:
|
236 |
msgid "Example of the site's pages tree"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: facebook-button-plugin.php:
|
240 |
msgid "Example of site pages' tree"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
244 |
msgid "Support"
|
245 |
msgstr "Support"
|
246 |
|
@@ -262,9 +313,6 @@ msgstr "Support"
|
|
262 |
#~ msgid "Facebook image:"
|
263 |
#~ msgstr "Image Facebook"
|
264 |
|
265 |
-
#~ msgid "Facebook Button"
|
266 |
-
#~ msgstr "Bouton Facebook"
|
267 |
-
|
268 |
#~ msgid "requires"
|
269 |
#~ msgstr "Nécessite"
|
270 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-10-12 16:56+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-10-12 16:56+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: http://wptheme.fr/\n"
|
9 |
"Language: fr\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 1.8.4\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: facebook-button-plugin.php:34
|
21 |
+
#: facebook-button-plugin.php:290
|
22 |
msgid "Facebook Button Settings"
|
23 |
msgstr "Réglages du bouton Facebook"
|
24 |
|
25 |
+
#: facebook-button-plugin.php:212
|
26 |
msgid "Settings saved"
|
27 |
msgstr "Réglages sauvegardés "
|
28 |
|
29 |
+
#: facebook-button-plugin.php:238
|
30 |
msgid "Error: File size > 32K"
|
31 |
msgstr "Erreur : Poids du fichier > 32K"
|
32 |
|
33 |
+
#: facebook-button-plugin.php:241
|
34 |
msgid "Error: Invalid file type"
|
35 |
msgstr "Erreur : Type de fichier invalide"
|
36 |
|
37 |
+
#: facebook-button-plugin.php:247
|
38 |
msgid "Upload successful."
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: facebook-button-plugin.php:257
|
42 |
msgid "Error: moving file failed"
|
43 |
msgstr "Erreur : le déplacement du fichier a echoué"
|
44 |
|
45 |
+
#: facebook-button-plugin.php:260
|
46 |
msgid "Error: check image width or height"
|
47 |
msgstr "Erreur : Vérifiez la taille et la largeur de l'image"
|
48 |
|
49 |
+
#: facebook-button-plugin.php:264
|
50 |
msgid "Uploading Error: check image properties"
|
51 |
msgstr "Erreur d'upload : vérifiez les propriétés de l'image"
|
52 |
|
53 |
+
#: facebook-button-plugin.php:277
|
54 |
msgid "All plugin settings were restored."
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: facebook-button-plugin.php:292
|
58 |
+
#: facebook-button-plugin.php:783
|
59 |
+
#: facebook-button-plugin.php:797
|
60 |
msgid "Settings"
|
61 |
msgstr "Réglages"
|
62 |
|
63 |
+
#: facebook-button-plugin.php:293
|
64 |
#, fuzzy
|
65 |
msgid "Extra settings"
|
66 |
msgstr "Réglages"
|
67 |
|
68 |
+
#: facebook-button-plugin.php:294
|
|
|
|
|
|
|
|
|
|
|
69 |
msgid "Go PRO"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: facebook-button-plugin.php:297
|
73 |
+
msgid "Please, enable JavaScript in Your browser."
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: facebook-button-plugin.php:311
|
77 |
+
#, fuzzy, php-format
|
78 |
+
msgid "If you would like to add Facebook buttons to your page or post, please use %s button"
|
79 |
+
msgstr "Si vous souhaitez ajouter un bouton Facebook sur votre site internet, copier-collez ce Shortcodedans votre page ou votre article"
|
80 |
|
81 |
+
#: facebook-button-plugin.php:316
|
82 |
+
#, php-format
|
83 |
+
msgid "You can add Facebook buttons to your page or post by clicking on %s button in the content edit block using the Visual mode. If the button isn't displayed, please use the shortcode %s"
|
84 |
+
msgstr ""
|
85 |
|
86 |
+
#: facebook-button-plugin.php:327
|
87 |
#, fuzzy
|
88 |
msgid "Display button"
|
89 |
msgstr "Afficher le bouton"
|
90 |
|
91 |
+
#: facebook-button-plugin.php:330
|
92 |
msgid "My Page"
|
93 |
msgstr "Ma page"
|
94 |
|
95 |
+
#: facebook-button-plugin.php:331
|
96 |
+
#: facebook-button-plugin.php:438
|
97 |
msgid "Like"
|
98 |
msgstr "Like"
|
99 |
|
100 |
+
#: facebook-button-plugin.php:332
|
101 |
msgid "Share"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: facebook-button-plugin.php:337
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
#, fuzzy
|
106 |
msgid "Facebook buttons position"
|
107 |
msgstr "Position du bouton Facebook"
|
108 |
|
109 |
+
#: facebook-button-plugin.php:340
|
110 |
msgid "Before"
|
111 |
msgstr "Avant"
|
112 |
|
113 |
+
#: facebook-button-plugin.php:341
|
114 |
msgid "After"
|
115 |
msgstr "Après"
|
116 |
|
117 |
+
#: facebook-button-plugin.php:342
|
118 |
msgid "Before and After"
|
119 |
msgstr "Avant et après"
|
120 |
|
121 |
+
#: facebook-button-plugin.php:343
|
122 |
msgid "Shortcode"
|
123 |
msgstr "Shortcode"
|
124 |
|
125 |
+
#: facebook-button-plugin.php:348
|
|
|
|
|
|
|
|
|
126 |
#, fuzzy
|
127 |
msgid "Facebook buttons language"
|
128 |
msgstr "Langue du bouton Facebook"
|
129 |
|
130 |
+
#: facebook-button-plugin.php:359
|
131 |
msgid "Change the language of Facebook Like Button"
|
132 |
msgstr "Changer la langue du bouton Facebook"
|
133 |
|
134 |
+
#: facebook-button-plugin.php:364
|
135 |
+
#: facebook-button-plugin.php:367
|
136 |
+
#: facebook-button-plugin.php:372
|
137 |
msgid "Use the current site language"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: facebook-button-plugin.php:364
|
141 |
+
#: facebook-button-plugin.php:368
|
142 |
+
#: facebook-button-plugin.php:373
|
143 |
msgid "Using"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: facebook-button-plugin.php:368
|
147 |
msgid "Activate"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: facebook-button-plugin.php:373
|
151 |
msgid "Download"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: facebook-button-plugin.php:380
|
155 |
+
#, fuzzy
|
156 |
+
msgid "Display buttons in excerpt"
|
157 |
+
msgstr "Afficher le bouton"
|
158 |
+
|
159 |
+
#: facebook-button-plugin.php:386
|
160 |
+
#, fuzzy
|
161 |
+
msgid "Your Facebook ID or username"
|
162 |
+
msgstr "Votre identifiant Facebook"
|
163 |
+
|
164 |
+
#: facebook-button-plugin.php:393
|
165 |
+
msgid "\"My page\" button image"
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#: facebook-button-plugin.php:398
|
169 |
+
msgid "Standard Facebook image"
|
170 |
+
msgstr "Image Facebook par défaut"
|
171 |
+
|
172 |
+
#: facebook-button-plugin.php:399
|
173 |
+
msgid "Custom Facebook image"
|
174 |
+
msgstr "Image Facebook personnalisée"
|
175 |
+
|
176 |
+
#: facebook-button-plugin.php:402
|
177 |
+
msgid "To use custom image you need to setup permissions to upload directory of your site"
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: facebook-button-plugin.php:409
|
181 |
+
#, fuzzy
|
182 |
+
msgid "Current image"
|
183 |
+
msgstr "Image actuelle"
|
184 |
+
|
185 |
+
#: facebook-button-plugin.php:417
|
186 |
+
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
187 |
+
msgstr "Propriétés de l'image : largeur max:100px; hauteur max: 40px; poids max : 32kb; type d'image :\"jpg\", \"jpeg\", \"png\"."
|
188 |
+
|
189 |
+
#: facebook-button-plugin.php:421
|
190 |
+
msgid "Button layout"
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: facebook-button-plugin.php:435
|
194 |
+
msgid "Like button action"
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: facebook-button-plugin.php:439
|
198 |
+
msgid "Recommend"
|
199 |
+
msgstr ""
|
200 |
+
|
201 |
+
#: facebook-button-plugin.php:444
|
202 |
+
msgid "Show faces"
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: facebook-button-plugin.php:450
|
206 |
+
msgid "Layout width"
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: facebook-button-plugin.php:456
|
210 |
+
msgid "Color scheme"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: facebook-button-plugin.php:459
|
214 |
+
msgid "Light"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: facebook-button-plugin.php:460
|
218 |
+
msgid "Dark"
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: facebook-button-plugin.php:465
|
222 |
msgid "Html tag for \"Like\" button"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: facebook-button-plugin.php:470
|
226 |
msgid "Use this tag to improve validation of your site"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: facebook-button-plugin.php:479
|
230 |
+
#: facebook-button-plugin.php:516
|
231 |
+
msgid "Close"
|
232 |
+
msgstr ""
|
233 |
|
234 |
+
#: facebook-button-plugin.php:483
|
235 |
msgid "\"Like\" for an entire site on every page:"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: facebook-button-plugin.php:485
|
239 |
msgid "Notice: \"Like for the entire site\" option does not create an extra button. This option merely allows your users to like the entire website when this option is enabled, or a single post when this option is disabled, when clicking the regular \"Like\" button."
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: facebook-button-plugin.php:490
|
243 |
+
#: facebook-button-plugin.php:567
|
244 |
msgid "If you upgrade to Pro version all your settings will be saved."
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: facebook-button-plugin.php:497
|
248 |
+
#: facebook-button-plugin.php:525
|
249 |
+
#: facebook-button-plugin.php:574
|
250 |
msgid "Unlock premium options by upgrading to Pro version"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: facebook-button-plugin.php:499
|
254 |
+
#: facebook-button-plugin.php:527
|
255 |
+
#: facebook-button-plugin.php:576
|
256 |
msgid "Learn More"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: facebook-button-plugin.php:507
|
260 |
+
#: facebook-button-plugin.php:562
|
261 |
msgid "Save Changes"
|
262 |
msgstr "Sauvegarder les changements"
|
263 |
|
264 |
+
#: facebook-button-plugin.php:519
|
265 |
+
#, fuzzy
|
266 |
+
msgid "Facebook Button preview:"
|
267 |
+
msgstr "Bouton Facebook"
|
268 |
+
|
269 |
+
#: facebook-button-plugin.php:544
|
270 |
msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: facebook-button-plugin.php:551
|
274 |
msgid "Show URL for pages"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: facebook-button-plugin.php:557
|
278 |
msgid "Example of the site's pages tree"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: facebook-button-plugin.php:557
|
282 |
msgid "Example of site pages' tree"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: facebook-button-plugin.php:689
|
286 |
+
#, fuzzy
|
287 |
+
msgid "Add Facebook buttons to your page or post"
|
288 |
+
msgstr "Position du bouton Facebook"
|
289 |
+
|
290 |
+
#: facebook-button-plugin.php:798
|
291 |
+
msgid "FAQ"
|
292 |
+
msgstr "FAQ"
|
293 |
+
|
294 |
+
#: facebook-button-plugin.php:799
|
295 |
msgid "Support"
|
296 |
msgstr "Support"
|
297 |
|
313 |
#~ msgid "Facebook image:"
|
314 |
#~ msgstr "Image Facebook"
|
315 |
|
|
|
|
|
|
|
316 |
#~ msgid "requires"
|
317 |
#~ msgstr "Nécessite"
|
318 |
|
languages/facebook-button-plugin-id_ID.mo
ADDED
Binary file
|
languages/{facebook-id_ID.po → facebook-button-plugin-id_ID.po}
RENAMED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: facebook\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: nasrulhaq <nasrulhaq81@gmail.com>\n"
|
9 |
"Language: es_ES\n"
|
@@ -12,235 +12,286 @@ msgstr ""
|
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
-
"X-Poedit-SourceCharset:
|
16 |
-
"X-Generator: Poedit 1.
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: facebook-button-plugin.php:
|
20 |
-
#: facebook-button-plugin.php:
|
21 |
msgid "Facebook Button Settings"
|
22 |
msgstr "Pengaturan Facebook Button"
|
23 |
|
24 |
-
#: facebook-button-plugin.php:
|
25 |
msgid "Settings saved"
|
26 |
msgstr "Simpan Pengaturan"
|
27 |
|
28 |
-
#: facebook-button-plugin.php:
|
29 |
msgid "Error: File size > 32K"
|
30 |
msgstr "SALAH: Ukuran file lebih besar dari 32KB"
|
31 |
|
32 |
-
#: facebook-button-plugin.php:
|
33 |
msgid "Error: Invalid file type"
|
34 |
msgstr "SALAH: Tipe data tidak benar"
|
35 |
|
36 |
-
#: facebook-button-plugin.php:
|
37 |
msgid "Upload successful."
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: facebook-button-plugin.php:
|
41 |
msgid "Error: moving file failed"
|
42 |
msgstr "Salah: gagal memindahkan data"
|
43 |
|
44 |
-
#: facebook-button-plugin.php:
|
45 |
msgid "Error: check image width or height"
|
46 |
msgstr "Salah: periksa lebar atau panjang gambar"
|
47 |
|
48 |
-
#: facebook-button-plugin.php:
|
49 |
msgid "Uploading Error: check image properties"
|
50 |
msgstr "Gagal Mengunggah: periksa properti gambar"
|
51 |
|
52 |
-
#: facebook-button-plugin.php:
|
53 |
msgid "All plugin settings were restored."
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: facebook-button-plugin.php:
|
57 |
-
#: facebook-button-plugin.php:
|
58 |
-
#: facebook-button-plugin.php:
|
59 |
msgid "Settings"
|
60 |
msgstr "Pengaturan"
|
61 |
|
62 |
-
#: facebook-button-plugin.php:
|
63 |
#, fuzzy
|
64 |
msgid "Extra settings"
|
65 |
msgstr "Pengaturan"
|
66 |
|
67 |
-
#: facebook-button-plugin.php:
|
68 |
-
#: facebook-button-plugin.php:681
|
69 |
-
msgid "FAQ"
|
70 |
-
msgstr "SSS (Sık Sorulan Sorular)"
|
71 |
-
|
72 |
-
#: facebook-button-plugin.php:260
|
73 |
msgid "Go PRO"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: facebook-button-plugin.php:
|
77 |
-
msgid "
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: facebook-button-plugin.php:
|
81 |
-
|
82 |
-
|
|
|
83 |
|
84 |
-
#: facebook-button-plugin.php:
|
85 |
-
#,
|
86 |
-
msgid "
|
87 |
-
msgstr "
|
88 |
|
89 |
-
#: facebook-button-plugin.php:
|
90 |
#, fuzzy
|
91 |
msgid "Display button"
|
92 |
msgstr "Tampilan tombol:"
|
93 |
|
94 |
-
#: facebook-button-plugin.php:
|
95 |
msgid "My Page"
|
96 |
msgstr "Halamanku"
|
97 |
|
98 |
-
#: facebook-button-plugin.php:
|
|
|
99 |
msgid "Like"
|
100 |
msgstr "Suka"
|
101 |
|
102 |
-
#: facebook-button-plugin.php:
|
103 |
msgid "Share"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: facebook-button-plugin.php:
|
107 |
-
msgid "\"My page\" button image"
|
108 |
-
msgstr ""
|
109 |
-
|
110 |
-
#: facebook-button-plugin.php:295
|
111 |
-
msgid "Standard Facebook image"
|
112 |
-
msgstr "Standar gambar Facebook "
|
113 |
-
|
114 |
-
#: facebook-button-plugin.php:296
|
115 |
-
msgid "Custom Facebook image"
|
116 |
-
msgstr "Kustom Gambar Facebook "
|
117 |
-
|
118 |
-
#: facebook-button-plugin.php:299
|
119 |
-
msgid "To use custom image you need to setup permissions to upload directory of your site"
|
120 |
-
msgstr ""
|
121 |
-
|
122 |
-
#: facebook-button-plugin.php:306
|
123 |
-
#, fuzzy
|
124 |
-
msgid "Current image"
|
125 |
-
msgstr "Gambar tertentu:"
|
126 |
-
|
127 |
-
#: facebook-button-plugin.php:314
|
128 |
-
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
129 |
-
msgstr "properti gambar: lebar gambar maks:100px; panjang gambar maks:40px; ukuran gambar maks:32Kb; tipe gambar:\"jpg\",\"jpeg\", \"png\"."
|
130 |
-
|
131 |
-
#: facebook-button-plugin.php:319
|
132 |
#, fuzzy
|
133 |
msgid "Facebook buttons position"
|
134 |
msgstr "Posisi Tombol Facebook"
|
135 |
|
136 |
-
#: facebook-button-plugin.php:
|
137 |
msgid "Before"
|
138 |
msgstr "Sebelum"
|
139 |
|
140 |
-
#: facebook-button-plugin.php:
|
141 |
msgid "After"
|
142 |
msgstr "Setelah"
|
143 |
|
144 |
-
#: facebook-button-plugin.php:
|
145 |
msgid "Before and After"
|
146 |
msgstr "Sebelum dan Setelah"
|
147 |
|
148 |
-
#: facebook-button-plugin.php:
|
149 |
msgid "Shortcode"
|
150 |
msgstr "Kode Pendek"
|
151 |
|
152 |
-
#: facebook-button-plugin.php:
|
153 |
-
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
154 |
-
msgstr "Jika anda ingin menambahkan tombol Facebook di website anda, cukup salin kode singkat kedalam posting atau page anda:"
|
155 |
-
|
156 |
-
#: facebook-button-plugin.php:333
|
157 |
#, fuzzy
|
158 |
msgid "Facebook buttons language"
|
159 |
msgstr "Bahasa Facebook Button:"
|
160 |
|
161 |
-
#: facebook-button-plugin.php:
|
162 |
msgid "Change the language of Facebook Like Button"
|
163 |
msgstr "Ubah bahasa Facebook Like Button"
|
164 |
|
165 |
-
#: facebook-button-plugin.php:
|
166 |
-
#: facebook-button-plugin.php:
|
167 |
-
#: facebook-button-plugin.php:
|
168 |
msgid "Use the current site language"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: facebook-button-plugin.php:
|
172 |
-
#: facebook-button-plugin.php:
|
173 |
-
#: facebook-button-plugin.php:
|
174 |
msgid "Using"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: facebook-button-plugin.php:
|
178 |
#, fuzzy
|
179 |
msgid "Activate"
|
180 |
msgstr "Aktif Eklentiler"
|
181 |
|
182 |
-
#: facebook-button-plugin.php:
|
183 |
msgid "Download"
|
184 |
msgstr "Ä°ndir"
|
185 |
|
186 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
msgid "Html tag for \"Like\" button"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: facebook-button-plugin.php:
|
191 |
msgid "Use this tag to improve validation of your site"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: facebook-button-plugin.php:
|
195 |
-
|
196 |
-
msgid "
|
197 |
-
msgstr "
|
198 |
|
199 |
-
#: facebook-button-plugin.php:
|
200 |
msgid "\"Like\" for an entire site on every page:"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: facebook-button-plugin.php:
|
204 |
msgid "Notice: \"Like for the entire site\" option does not create an extra button. This option merely allows your users to like the entire website when this option is enabled, or a single post when this option is disabled, when clicking the regular \"Like\" button."
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: facebook-button-plugin.php:
|
208 |
-
#: facebook-button-plugin.php:
|
209 |
msgid "If you upgrade to Pro version all your settings will be saved."
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: facebook-button-plugin.php:
|
213 |
-
#: facebook-button-plugin.php:
|
|
|
214 |
msgid "Unlock premium options by upgrading to Pro version"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: facebook-button-plugin.php:
|
218 |
-
#: facebook-button-plugin.php:
|
|
|
219 |
msgid "Learn More"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: facebook-button-plugin.php:
|
223 |
-
#: facebook-button-plugin.php:
|
224 |
msgid "Save Changes"
|
225 |
msgstr "Simpan Perubahan"
|
226 |
|
227 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
228 |
msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: facebook-button-plugin.php:
|
232 |
msgid "Show URL for pages"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: facebook-button-plugin.php:
|
236 |
msgid "Example of the site's pages tree"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: facebook-button-plugin.php:
|
240 |
msgid "Example of site pages' tree"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
244 |
msgid "Support"
|
245 |
msgstr "Dukungan"
|
246 |
|
@@ -262,9 +313,6 @@ msgstr "Dukungan"
|
|
262 |
#~ msgid "Facebook image:"
|
263 |
#~ msgstr "Gambar Facebook:"
|
264 |
|
265 |
-
#~ msgid "Facebook Button"
|
266 |
-
#~ msgstr "Tombol Facebook"
|
267 |
-
|
268 |
#~ msgid "requires"
|
269 |
#~ msgstr "membutuhkan"
|
270 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-10-12 16:56+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-10-12 16:56+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: nasrulhaq <nasrulhaq81@gmail.com>\n"
|
9 |
"Language: es_ES\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 1.8.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: facebook-button-plugin.php:34
|
20 |
+
#: facebook-button-plugin.php:290
|
21 |
msgid "Facebook Button Settings"
|
22 |
msgstr "Pengaturan Facebook Button"
|
23 |
|
24 |
+
#: facebook-button-plugin.php:212
|
25 |
msgid "Settings saved"
|
26 |
msgstr "Simpan Pengaturan"
|
27 |
|
28 |
+
#: facebook-button-plugin.php:238
|
29 |
msgid "Error: File size > 32K"
|
30 |
msgstr "SALAH: Ukuran file lebih besar dari 32KB"
|
31 |
|
32 |
+
#: facebook-button-plugin.php:241
|
33 |
msgid "Error: Invalid file type"
|
34 |
msgstr "SALAH: Tipe data tidak benar"
|
35 |
|
36 |
+
#: facebook-button-plugin.php:247
|
37 |
msgid "Upload successful."
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: facebook-button-plugin.php:257
|
41 |
msgid "Error: moving file failed"
|
42 |
msgstr "Salah: gagal memindahkan data"
|
43 |
|
44 |
+
#: facebook-button-plugin.php:260
|
45 |
msgid "Error: check image width or height"
|
46 |
msgstr "Salah: periksa lebar atau panjang gambar"
|
47 |
|
48 |
+
#: facebook-button-plugin.php:264
|
49 |
msgid "Uploading Error: check image properties"
|
50 |
msgstr "Gagal Mengunggah: periksa properti gambar"
|
51 |
|
52 |
+
#: facebook-button-plugin.php:277
|
53 |
msgid "All plugin settings were restored."
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: facebook-button-plugin.php:292
|
57 |
+
#: facebook-button-plugin.php:783
|
58 |
+
#: facebook-button-plugin.php:797
|
59 |
msgid "Settings"
|
60 |
msgstr "Pengaturan"
|
61 |
|
62 |
+
#: facebook-button-plugin.php:293
|
63 |
#, fuzzy
|
64 |
msgid "Extra settings"
|
65 |
msgstr "Pengaturan"
|
66 |
|
67 |
+
#: facebook-button-plugin.php:294
|
|
|
|
|
|
|
|
|
|
|
68 |
msgid "Go PRO"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: facebook-button-plugin.php:297
|
72 |
+
msgid "Please, enable JavaScript in Your browser."
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: facebook-button-plugin.php:311
|
76 |
+
#, fuzzy, php-format
|
77 |
+
msgid "If you would like to add Facebook buttons to your page or post, please use %s button"
|
78 |
+
msgstr "Jika anda ingin menambahkan tombol Facebook di website anda, cukup salin kode singkat kedalam posting atau page anda:"
|
79 |
|
80 |
+
#: facebook-button-plugin.php:316
|
81 |
+
#, php-format
|
82 |
+
msgid "You can add Facebook buttons to your page or post by clicking on %s button in the content edit block using the Visual mode. If the button isn't displayed, please use the shortcode %s"
|
83 |
+
msgstr ""
|
84 |
|
85 |
+
#: facebook-button-plugin.php:327
|
86 |
#, fuzzy
|
87 |
msgid "Display button"
|
88 |
msgstr "Tampilan tombol:"
|
89 |
|
90 |
+
#: facebook-button-plugin.php:330
|
91 |
msgid "My Page"
|
92 |
msgstr "Halamanku"
|
93 |
|
94 |
+
#: facebook-button-plugin.php:331
|
95 |
+
#: facebook-button-plugin.php:438
|
96 |
msgid "Like"
|
97 |
msgstr "Suka"
|
98 |
|
99 |
+
#: facebook-button-plugin.php:332
|
100 |
msgid "Share"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: facebook-button-plugin.php:337
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
#, fuzzy
|
105 |
msgid "Facebook buttons position"
|
106 |
msgstr "Posisi Tombol Facebook"
|
107 |
|
108 |
+
#: facebook-button-plugin.php:340
|
109 |
msgid "Before"
|
110 |
msgstr "Sebelum"
|
111 |
|
112 |
+
#: facebook-button-plugin.php:341
|
113 |
msgid "After"
|
114 |
msgstr "Setelah"
|
115 |
|
116 |
+
#: facebook-button-plugin.php:342
|
117 |
msgid "Before and After"
|
118 |
msgstr "Sebelum dan Setelah"
|
119 |
|
120 |
+
#: facebook-button-plugin.php:343
|
121 |
msgid "Shortcode"
|
122 |
msgstr "Kode Pendek"
|
123 |
|
124 |
+
#: facebook-button-plugin.php:348
|
|
|
|
|
|
|
|
|
125 |
#, fuzzy
|
126 |
msgid "Facebook buttons language"
|
127 |
msgstr "Bahasa Facebook Button:"
|
128 |
|
129 |
+
#: facebook-button-plugin.php:359
|
130 |
msgid "Change the language of Facebook Like Button"
|
131 |
msgstr "Ubah bahasa Facebook Like Button"
|
132 |
|
133 |
+
#: facebook-button-plugin.php:364
|
134 |
+
#: facebook-button-plugin.php:367
|
135 |
+
#: facebook-button-plugin.php:372
|
136 |
msgid "Use the current site language"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: facebook-button-plugin.php:364
|
140 |
+
#: facebook-button-plugin.php:368
|
141 |
+
#: facebook-button-plugin.php:373
|
142 |
msgid "Using"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: facebook-button-plugin.php:368
|
146 |
#, fuzzy
|
147 |
msgid "Activate"
|
148 |
msgstr "Aktif Eklentiler"
|
149 |
|
150 |
+
#: facebook-button-plugin.php:373
|
151 |
msgid "Download"
|
152 |
msgstr "Ä°ndir"
|
153 |
|
154 |
+
#: facebook-button-plugin.php:380
|
155 |
+
#, fuzzy
|
156 |
+
msgid "Display buttons in excerpt"
|
157 |
+
msgstr "Tampilan tombol:"
|
158 |
+
|
159 |
+
#: facebook-button-plugin.php:386
|
160 |
+
#, fuzzy
|
161 |
+
msgid "Your Facebook ID or username"
|
162 |
+
msgstr " ID Facebook:"
|
163 |
+
|
164 |
+
#: facebook-button-plugin.php:393
|
165 |
+
msgid "\"My page\" button image"
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#: facebook-button-plugin.php:398
|
169 |
+
msgid "Standard Facebook image"
|
170 |
+
msgstr "Standar gambar Facebook "
|
171 |
+
|
172 |
+
#: facebook-button-plugin.php:399
|
173 |
+
msgid "Custom Facebook image"
|
174 |
+
msgstr "Kustom Gambar Facebook "
|
175 |
+
|
176 |
+
#: facebook-button-plugin.php:402
|
177 |
+
msgid "To use custom image you need to setup permissions to upload directory of your site"
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: facebook-button-plugin.php:409
|
181 |
+
#, fuzzy
|
182 |
+
msgid "Current image"
|
183 |
+
msgstr "Gambar tertentu:"
|
184 |
+
|
185 |
+
#: facebook-button-plugin.php:417
|
186 |
+
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
187 |
+
msgstr "properti gambar: lebar gambar maks:100px; panjang gambar maks:40px; ukuran gambar maks:32Kb; tipe gambar:\"jpg\",\"jpeg\", \"png\"."
|
188 |
+
|
189 |
+
#: facebook-button-plugin.php:421
|
190 |
+
msgid "Button layout"
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: facebook-button-plugin.php:435
|
194 |
+
msgid "Like button action"
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: facebook-button-plugin.php:439
|
198 |
+
msgid "Recommend"
|
199 |
+
msgstr ""
|
200 |
+
|
201 |
+
#: facebook-button-plugin.php:444
|
202 |
+
msgid "Show faces"
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: facebook-button-plugin.php:450
|
206 |
+
msgid "Layout width"
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: facebook-button-plugin.php:456
|
210 |
+
msgid "Color scheme"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: facebook-button-plugin.php:459
|
214 |
+
msgid "Light"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: facebook-button-plugin.php:460
|
218 |
+
msgid "Dark"
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: facebook-button-plugin.php:465
|
222 |
msgid "Html tag for \"Like\" button"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: facebook-button-plugin.php:470
|
226 |
msgid "Use this tag to improve validation of your site"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: facebook-button-plugin.php:479
|
230 |
+
#: facebook-button-plugin.php:516
|
231 |
+
msgid "Close"
|
232 |
+
msgstr ""
|
233 |
|
234 |
+
#: facebook-button-plugin.php:483
|
235 |
msgid "\"Like\" for an entire site on every page:"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: facebook-button-plugin.php:485
|
239 |
msgid "Notice: \"Like for the entire site\" option does not create an extra button. This option merely allows your users to like the entire website when this option is enabled, or a single post when this option is disabled, when clicking the regular \"Like\" button."
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: facebook-button-plugin.php:490
|
243 |
+
#: facebook-button-plugin.php:567
|
244 |
msgid "If you upgrade to Pro version all your settings will be saved."
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: facebook-button-plugin.php:497
|
248 |
+
#: facebook-button-plugin.php:525
|
249 |
+
#: facebook-button-plugin.php:574
|
250 |
msgid "Unlock premium options by upgrading to Pro version"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: facebook-button-plugin.php:499
|
254 |
+
#: facebook-button-plugin.php:527
|
255 |
+
#: facebook-button-plugin.php:576
|
256 |
msgid "Learn More"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: facebook-button-plugin.php:507
|
260 |
+
#: facebook-button-plugin.php:562
|
261 |
msgid "Save Changes"
|
262 |
msgstr "Simpan Perubahan"
|
263 |
|
264 |
+
#: facebook-button-plugin.php:519
|
265 |
+
#, fuzzy
|
266 |
+
msgid "Facebook Button preview:"
|
267 |
+
msgstr "Tombol Facebook"
|
268 |
+
|
269 |
+
#: facebook-button-plugin.php:544
|
270 |
msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: facebook-button-plugin.php:551
|
274 |
msgid "Show URL for pages"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: facebook-button-plugin.php:557
|
278 |
msgid "Example of the site's pages tree"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: facebook-button-plugin.php:557
|
282 |
msgid "Example of site pages' tree"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: facebook-button-plugin.php:689
|
286 |
+
#, fuzzy
|
287 |
+
msgid "Add Facebook buttons to your page or post"
|
288 |
+
msgstr "Posisi Tombol Facebook"
|
289 |
+
|
290 |
+
#: facebook-button-plugin.php:798
|
291 |
+
msgid "FAQ"
|
292 |
+
msgstr "SSS (Sık Sorulan Sorular)"
|
293 |
+
|
294 |
+
#: facebook-button-plugin.php:799
|
295 |
msgid "Support"
|
296 |
msgstr "Dukungan"
|
297 |
|
313 |
#~ msgid "Facebook image:"
|
314 |
#~ msgstr "Gambar Facebook:"
|
315 |
|
|
|
|
|
|
|
316 |
#~ msgid "requires"
|
317 |
#~ msgstr "membutuhkan"
|
318 |
|
languages/facebook-button-plugin-ru_RU.mo
ADDED
Binary file
|
languages/{facebook-ru_RU.po → facebook-button-plugin-ru_RU.po}
RENAMED
@@ -1,10 +1,10 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
-
"Last-Translator: bestwebsoft.com <
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -12,230 +12,312 @@ msgstr ""
|
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
-
"X-Poedit-SourceCharset:
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: facebook-button-plugin.php:
|
20 |
-
#: facebook-button-plugin.php:255
|
21 |
msgid "Facebook Button Settings"
|
22 |
msgstr "Настройки Facebook Button"
|
23 |
|
24 |
-
#: facebook-button-plugin.php:
|
25 |
msgid "Settings saved"
|
26 |
msgstr "Настройки сохранены"
|
27 |
|
28 |
-
#: facebook-button-plugin.php:
|
29 |
msgid "Error: File size > 32K"
|
30 |
msgstr "Ошибка: Размер файла > 32К"
|
31 |
|
32 |
-
#: facebook-button-plugin.php:
|
33 |
msgid "Error: Invalid file type"
|
34 |
msgstr "Ошибка: Некорректный тип файла"
|
35 |
|
36 |
-
#: facebook-button-plugin.php:
|
37 |
msgid "Upload successful."
|
38 |
msgstr "Загрузка прошла удачно."
|
39 |
|
40 |
-
#: facebook-button-plugin.php:
|
41 |
msgid "Error: moving file failed"
|
42 |
msgstr "Ошибка: При перемещении произошла ошибка"
|
43 |
|
44 |
-
#: facebook-button-plugin.php:
|
45 |
msgid "Error: check image width or height"
|
46 |
msgstr "Ошибка: Проверьте ширину и высоту изображения"
|
47 |
|
48 |
-
#: facebook-button-plugin.php:
|
49 |
msgid "Uploading Error: check image properties"
|
50 |
msgstr "Ошибка загрузки: Проверьте опции изображения"
|
51 |
|
52 |
-
#: facebook-button-plugin.php:
|
53 |
msgid "All plugin settings were restored."
|
54 |
msgstr "Все настройки плагина восстановлены."
|
55 |
|
56 |
-
#: facebook-button-plugin.php:
|
57 |
-
#: facebook-button-plugin.php:
|
58 |
-
#: facebook-button-plugin.php:680
|
59 |
msgid "Settings"
|
60 |
msgstr "Настройки"
|
61 |
|
62 |
-
#: facebook-button-plugin.php:
|
63 |
msgid "Extra settings"
|
64 |
msgstr "Дополнительные настройки"
|
65 |
|
66 |
-
#: facebook-button-plugin.php:
|
67 |
-
#: facebook-button-plugin.php:681
|
68 |
-
msgid "FAQ"
|
69 |
-
msgstr "FAQ"
|
70 |
-
|
71 |
-
#: facebook-button-plugin.php:260
|
72 |
msgid "Go PRO"
|
73 |
msgstr "Перейти на PRO версию"
|
74 |
|
75 |
-
#: facebook-button-plugin.php:
|
76 |
-
msgid "
|
77 |
-
msgstr "
|
78 |
|
79 |
-
#: facebook-button-plugin.php:
|
80 |
-
|
81 |
-
|
|
|
|
|
|
|
|
|
|
|
82 |
|
83 |
-
#: facebook-button-plugin.php:
|
84 |
-
|
85 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
|
87 |
-
#: facebook-button-plugin.php:
|
88 |
msgid "Display button"
|
89 |
msgstr "Отображение кнопок"
|
90 |
|
91 |
-
#: facebook-button-plugin.php:
|
92 |
msgid "My Page"
|
93 |
msgstr "Моя страница"
|
94 |
|
95 |
-
#: facebook-button-plugin.php:
|
96 |
msgid "Like"
|
97 |
-
msgstr "
|
98 |
|
99 |
-
#: facebook-button-plugin.php:
|
100 |
msgid "Share"
|
101 |
msgstr "Поделиться"
|
102 |
|
103 |
-
#: facebook-button-plugin.php:
|
104 |
-
msgid "\"My page\" button image"
|
105 |
-
msgstr "Изображение кнопки \"Моя страница\""
|
106 |
-
|
107 |
-
#: facebook-button-plugin.php:295
|
108 |
-
msgid "Standard Facebook image"
|
109 |
-
msgstr "Стандартная картинка Facebook"
|
110 |
-
|
111 |
-
#: facebook-button-plugin.php:296
|
112 |
-
msgid "Custom Facebook image"
|
113 |
-
msgstr "Пользовательская картинка Facebook"
|
114 |
-
|
115 |
-
#: facebook-button-plugin.php:299
|
116 |
-
msgid "To use custom image you need to setup permissions to upload directory of your site"
|
117 |
-
msgstr "Для использования кастомного изображения Вам нужно выдать права доступа на папку загрузок на вашем сайте"
|
118 |
-
|
119 |
-
#: facebook-button-plugin.php:306
|
120 |
-
msgid "Current image"
|
121 |
-
msgstr "Текущее изображение"
|
122 |
-
|
123 |
-
#: facebook-button-plugin.php:314
|
124 |
-
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
125 |
-
msgstr "Опции изображения для загрузки: максимальная ширина:100px; максимальная высота:40px; максимальный размер:32Kb; тип файла:\"jpg\", \"jpeg\", \"png\"."
|
126 |
-
|
127 |
-
#: facebook-button-plugin.php:319
|
128 |
msgid "Facebook buttons position"
|
129 |
msgstr "Позиции Facebook кнопки"
|
130 |
|
131 |
-
#: facebook-button-plugin.php:
|
132 |
msgid "Before"
|
133 |
msgstr "Перед"
|
134 |
|
135 |
-
#: facebook-button-plugin.php:
|
136 |
msgid "After"
|
137 |
msgstr "После"
|
138 |
|
139 |
-
#: facebook-button-plugin.php:
|
140 |
msgid "Before and After"
|
141 |
msgstr "Перед и после"
|
142 |
|
143 |
-
#: facebook-button-plugin.php:
|
144 |
msgid "Shortcode"
|
145 |
msgstr "Шорткод"
|
146 |
|
147 |
-
#: facebook-button-plugin.php:
|
148 |
-
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
149 |
-
msgstr "Если вы хотите добавить Facebook кнопку на свой сайт, вам нужно только скопировать и вставить шорткод в контент страницы или поста"
|
150 |
-
|
151 |
-
#: facebook-button-plugin.php:333
|
152 |
msgid "Facebook buttons language"
|
153 |
msgstr "Язык для Facebook кнопки"
|
154 |
|
155 |
-
#: facebook-button-plugin.php:
|
156 |
-
msgid "Change the language of Facebook
|
157 |
msgstr "Выберите язык для Facebook кнопок"
|
158 |
|
159 |
-
#: facebook-button-plugin.php:
|
160 |
-
#: facebook-button-plugin.php:
|
161 |
-
#: facebook-button-plugin.php:358
|
162 |
msgid "Use the current site language"
|
163 |
msgstr "Использовать текущий язык сайта"
|
164 |
|
165 |
-
#: facebook-button-plugin.php:
|
166 |
-
#: facebook-button-plugin.php:
|
167 |
-
#: facebook-button-plugin.php:359
|
168 |
msgid "Using"
|
169 |
msgstr "Используя"
|
170 |
|
171 |
-
#: facebook-button-plugin.php:
|
172 |
msgid "Activate"
|
173 |
msgstr "Активировать"
|
174 |
|
175 |
-
#: facebook-button-plugin.php:
|
176 |
msgid "Download"
|
177 |
msgstr "Загрузить"
|
178 |
|
179 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
180 |
msgid "Html tag for \"Like\" button"
|
181 |
-
msgstr "Html тэг для кнопки \"
|
182 |
|
183 |
-
#: facebook-button-plugin.php:
|
184 |
msgid "Use this tag to improve validation of your site"
|
185 |
msgstr "Используйте этот тэг для лучшей валидации вашего сайта"
|
186 |
|
187 |
-
#: facebook-button-plugin.php:
|
188 |
-
msgid "
|
189 |
-
msgstr "
|
190 |
|
191 |
-
#: facebook-button-plugin.php:
|
192 |
msgid "\"Like\" for an entire site on every page:"
|
193 |
-
msgstr "Ставить \"
|
194 |
|
195 |
-
#: facebook-button-plugin.php:
|
196 |
-
msgid "
|
197 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
198 |
|
199 |
-
#: facebook-button-plugin.php:
|
200 |
-
#: facebook-button-plugin.php:448
|
201 |
msgid "If you upgrade to Pro version all your settings will be saved."
|
202 |
msgstr "При установке Pro версии плагина, все ваши настройки сохраняются."
|
203 |
|
204 |
-
#: facebook-button-plugin.php:
|
205 |
-
#: facebook-button-plugin.php:
|
206 |
msgid "Unlock premium options by upgrading to Pro version"
|
207 |
msgstr "Активируйте премиум опции обновившись до Pro версии"
|
208 |
|
209 |
-
#: facebook-button-plugin.php:
|
210 |
-
#: facebook-button-plugin.php:
|
211 |
msgid "Learn More"
|
212 |
msgstr "Подробнее"
|
213 |
|
214 |
-
#: facebook-button-plugin.php:
|
215 |
-
#: facebook-button-plugin.php:443
|
216 |
msgid "Save Changes"
|
217 |
msgstr "Сохранить изменения"
|
218 |
|
219 |
-
#: facebook-button-plugin.php:
|
220 |
-
msgid "
|
221 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
222 |
|
223 |
-
#: facebook-button-plugin.php:
|
224 |
msgid "Show URL for pages"
|
225 |
msgstr "Отображать URL для страниц"
|
226 |
|
227 |
-
#: facebook-button-plugin.php:
|
228 |
msgid "Example of the site's pages tree"
|
229 |
msgstr "Пример дерева страниц сайта"
|
230 |
|
231 |
-
#: facebook-button-plugin.php:
|
232 |
msgid "Example of site pages' tree"
|
233 |
msgstr "Пример дерева страниц сайта"
|
234 |
|
235 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
236 |
msgid "Support"
|
237 |
msgstr "Поддержка"
|
238 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
239 |
#~ msgid "Go"
|
240 |
#~ msgstr "Перейти на"
|
241 |
|
@@ -262,9 +344,6 @@ msgstr "Поддержка"
|
|
262 |
#~ msgid "Facebook image:"
|
263 |
#~ msgstr "Facebook изображение:"
|
264 |
|
265 |
-
#~ msgid "Facebook Button"
|
266 |
-
#~ msgstr "Facebook кнопка"
|
267 |
-
|
268 |
#~ msgid "requires"
|
269 |
#~ msgstr "требует"
|
270 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-10-13 14:09+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-10-21 13:29+0300\n"
|
7 |
+
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: facebook-button-plugin.php:34 facebook-button-plugin.php:290
|
|
|
20 |
msgid "Facebook Button Settings"
|
21 |
msgstr "Настройки Facebook Button"
|
22 |
|
23 |
+
#: facebook-button-plugin.php:212
|
24 |
msgid "Settings saved"
|
25 |
msgstr "Настройки сохранены"
|
26 |
|
27 |
+
#: facebook-button-plugin.php:238
|
28 |
msgid "Error: File size > 32K"
|
29 |
msgstr "Ошибка: Размер файла > 32К"
|
30 |
|
31 |
+
#: facebook-button-plugin.php:241
|
32 |
msgid "Error: Invalid file type"
|
33 |
msgstr "Ошибка: Некорректный тип файла"
|
34 |
|
35 |
+
#: facebook-button-plugin.php:247
|
36 |
msgid "Upload successful."
|
37 |
msgstr "Загрузка прошла удачно."
|
38 |
|
39 |
+
#: facebook-button-plugin.php:257
|
40 |
msgid "Error: moving file failed"
|
41 |
msgstr "Ошибка: При перемещении произошла ошибка"
|
42 |
|
43 |
+
#: facebook-button-plugin.php:260
|
44 |
msgid "Error: check image width or height"
|
45 |
msgstr "Ошибка: Проверьте ширину и высоту изображения"
|
46 |
|
47 |
+
#: facebook-button-plugin.php:264
|
48 |
msgid "Uploading Error: check image properties"
|
49 |
msgstr "Ошибка загрузки: Проверьте опции изображения"
|
50 |
|
51 |
+
#: facebook-button-plugin.php:277
|
52 |
msgid "All plugin settings were restored."
|
53 |
msgstr "Все настройки плагина восстановлены."
|
54 |
|
55 |
+
#: facebook-button-plugin.php:292 facebook-button-plugin.php:783
|
56 |
+
#: facebook-button-plugin.php:797
|
|
|
57 |
msgid "Settings"
|
58 |
msgstr "Настройки"
|
59 |
|
60 |
+
#: facebook-button-plugin.php:293
|
61 |
msgid "Extra settings"
|
62 |
msgstr "Дополнительные настройки"
|
63 |
|
64 |
+
#: facebook-button-plugin.php:294
|
|
|
|
|
|
|
|
|
|
|
65 |
msgid "Go PRO"
|
66 |
msgstr "Перейти на PRO версию"
|
67 |
|
68 |
+
#: facebook-button-plugin.php:297
|
69 |
+
msgid "Please, enable JavaScript in Your browser."
|
70 |
+
msgstr "Пожалуйста, включите поддержку JavaScript в вашем браузере."
|
71 |
|
72 |
+
#: facebook-button-plugin.php:311
|
73 |
+
#, php-format
|
74 |
+
msgid ""
|
75 |
+
"If you would like to add Facebook buttons to your page or post, please use "
|
76 |
+
"%s button"
|
77 |
+
msgstr ""
|
78 |
+
"Если вы хотите добавить Facebook кнопки на вашу страницу или пост, то "
|
79 |
+
"используйте кнопку %s"
|
80 |
|
81 |
+
#: facebook-button-plugin.php:316
|
82 |
+
#, php-format
|
83 |
+
msgid ""
|
84 |
+
"You can add Facebook buttons to your page or post by clicking on %s button "
|
85 |
+
"in the content edit block using the Visual mode. If the button isn't "
|
86 |
+
"displayed, please use the shortcode %s"
|
87 |
+
msgstr ""
|
88 |
+
"Вы можете добавить Facebook кнопки на вашу страницу или пост, нажав на "
|
89 |
+
"кнопку %s в блоке редактирования контента в режиме Visual. Если кнопка не "
|
90 |
+
"отображается, пожалуйста, используйте шорткод %s"
|
91 |
|
92 |
+
#: facebook-button-plugin.php:327
|
93 |
msgid "Display button"
|
94 |
msgstr "Отображение кнопок"
|
95 |
|
96 |
+
#: facebook-button-plugin.php:330
|
97 |
msgid "My Page"
|
98 |
msgstr "Моя страница"
|
99 |
|
100 |
+
#: facebook-button-plugin.php:331 facebook-button-plugin.php:438
|
101 |
msgid "Like"
|
102 |
+
msgstr "Нравиться"
|
103 |
|
104 |
+
#: facebook-button-plugin.php:332
|
105 |
msgid "Share"
|
106 |
msgstr "Поделиться"
|
107 |
|
108 |
+
#: facebook-button-plugin.php:337
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
msgid "Facebook buttons position"
|
110 |
msgstr "Позиции Facebook кнопки"
|
111 |
|
112 |
+
#: facebook-button-plugin.php:340
|
113 |
msgid "Before"
|
114 |
msgstr "Перед"
|
115 |
|
116 |
+
#: facebook-button-plugin.php:341
|
117 |
msgid "After"
|
118 |
msgstr "После"
|
119 |
|
120 |
+
#: facebook-button-plugin.php:342
|
121 |
msgid "Before and After"
|
122 |
msgstr "Перед и после"
|
123 |
|
124 |
+
#: facebook-button-plugin.php:343
|
125 |
msgid "Shortcode"
|
126 |
msgstr "Шорткод"
|
127 |
|
128 |
+
#: facebook-button-plugin.php:348
|
|
|
|
|
|
|
|
|
129 |
msgid "Facebook buttons language"
|
130 |
msgstr "Язык для Facebook кнопки"
|
131 |
|
132 |
+
#: facebook-button-plugin.php:359
|
133 |
+
msgid "Change the language of Facebook Button"
|
134 |
msgstr "Выберите язык для Facebook кнопок"
|
135 |
|
136 |
+
#: facebook-button-plugin.php:364 facebook-button-plugin.php:367
|
137 |
+
#: facebook-button-plugin.php:372
|
|
|
138 |
msgid "Use the current site language"
|
139 |
msgstr "Использовать текущий язык сайта"
|
140 |
|
141 |
+
#: facebook-button-plugin.php:364 facebook-button-plugin.php:368
|
142 |
+
#: facebook-button-plugin.php:373
|
|
|
143 |
msgid "Using"
|
144 |
msgstr "Используя"
|
145 |
|
146 |
+
#: facebook-button-plugin.php:368
|
147 |
msgid "Activate"
|
148 |
msgstr "Активировать"
|
149 |
|
150 |
+
#: facebook-button-plugin.php:373
|
151 |
msgid "Download"
|
152 |
msgstr "Загрузить"
|
153 |
|
154 |
+
#: facebook-button-plugin.php:380
|
155 |
+
msgid "Display buttons in excerpt"
|
156 |
+
msgstr "Отображать кнопки для цитаты"
|
157 |
+
|
158 |
+
#: facebook-button-plugin.php:386
|
159 |
+
msgid "Your Facebook ID or username"
|
160 |
+
msgstr "Ваш Facebook ID или имя пользователя"
|
161 |
+
|
162 |
+
#: facebook-button-plugin.php:393
|
163 |
+
msgid "\"My page\" button image"
|
164 |
+
msgstr "Изображение кнопки \"Моя страница\""
|
165 |
+
|
166 |
+
#: facebook-button-plugin.php:398
|
167 |
+
msgid "Standard Facebook image"
|
168 |
+
msgstr "Стандартная картинка Facebook"
|
169 |
+
|
170 |
+
#: facebook-button-plugin.php:399
|
171 |
+
msgid "Custom Facebook image"
|
172 |
+
msgstr "Пользовательская картинка Facebook"
|
173 |
+
|
174 |
+
#: facebook-button-plugin.php:402
|
175 |
+
msgid ""
|
176 |
+
"To use custom image you need to setup permissions to upload directory of "
|
177 |
+
"your site"
|
178 |
+
msgstr ""
|
179 |
+
"Для использования кастомного изображения Вам нужно выдать права доступа на "
|
180 |
+
"папку загрузок на вашем сайте"
|
181 |
+
|
182 |
+
#: facebook-button-plugin.php:409
|
183 |
+
msgid "Current image"
|
184 |
+
msgstr "Текущее изображение"
|
185 |
+
|
186 |
+
#: facebook-button-plugin.php:417
|
187 |
+
msgid ""
|
188 |
+
"Image properties: max image width:100px; max image height:40px; max image "
|
189 |
+
"size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
190 |
+
msgstr ""
|
191 |
+
"Опции изображения для загрузки: максимальная ширина:100px; максимальная "
|
192 |
+
"высота:40px; максимальный размер:32Kb; тип файла:\"jpg\", \"jpeg\", \"png\"."
|
193 |
+
|
194 |
+
#: facebook-button-plugin.php:421
|
195 |
+
msgid "Button layout"
|
196 |
+
msgstr "Вид кнопок"
|
197 |
+
|
198 |
+
#: facebook-button-plugin.php:435
|
199 |
+
msgid "Like button action"
|
200 |
+
msgstr "Действие кнопки \"Like\""
|
201 |
+
|
202 |
+
#: facebook-button-plugin.php:439
|
203 |
+
msgid "Recommend"
|
204 |
+
msgstr "Рекомендую"
|
205 |
+
|
206 |
+
#: facebook-button-plugin.php:444
|
207 |
+
msgid "Show faces"
|
208 |
+
msgstr "Показать лица"
|
209 |
+
|
210 |
+
#: facebook-button-plugin.php:450
|
211 |
+
msgid "Layout width"
|
212 |
+
msgstr "Ширина блока"
|
213 |
+
|
214 |
+
#: facebook-button-plugin.php:456
|
215 |
+
msgid "Color scheme"
|
216 |
+
msgstr "Цветовая схема"
|
217 |
+
|
218 |
+
#: facebook-button-plugin.php:459
|
219 |
+
msgid "Light"
|
220 |
+
msgstr "Светлая"
|
221 |
+
|
222 |
+
#: facebook-button-plugin.php:460
|
223 |
+
msgid "Dark"
|
224 |
+
msgstr "Тёмная"
|
225 |
+
|
226 |
+
#: facebook-button-plugin.php:465
|
227 |
msgid "Html tag for \"Like\" button"
|
228 |
+
msgstr "Html тэг для кнопки \"Нравиться\""
|
229 |
|
230 |
+
#: facebook-button-plugin.php:470
|
231 |
msgid "Use this tag to improve validation of your site"
|
232 |
msgstr "Используйте этот тэг для лучшей валидации вашего сайта"
|
233 |
|
234 |
+
#: facebook-button-plugin.php:479 facebook-button-plugin.php:516
|
235 |
+
msgid "Close"
|
236 |
+
msgstr "Закрыть"
|
237 |
|
238 |
+
#: facebook-button-plugin.php:483
|
239 |
msgid "\"Like\" for an entire site on every page:"
|
240 |
+
msgstr "Ставить \"Нравиться\" всему сайту на каждой странице:"
|
241 |
|
242 |
+
#: facebook-button-plugin.php:485
|
243 |
+
msgid ""
|
244 |
+
"Notice: \"Like for the entire site\" option does not create an extra button. "
|
245 |
+
"This option merely allows your users to like the entire website when this "
|
246 |
+
"option is enabled, or a single post when this option is disabled, when "
|
247 |
+
"clicking the regular \"Like\" button."
|
248 |
+
msgstr ""
|
249 |
+
"Внимание: опция \"Нравиться для всего сайта\" - не создает дополнительную "
|
250 |
+
"кнопку. Эта опция позволяет при клике пользователями на стандартную кнопку "
|
251 |
+
"ставить \"Нравиться\" для всего сайта, если эта опция включена, или "
|
252 |
+
"\"Нравиться\" для отдельной записи, когда эта опция выключена."
|
253 |
|
254 |
+
#: facebook-button-plugin.php:490 facebook-button-plugin.php:567
|
|
|
255 |
msgid "If you upgrade to Pro version all your settings will be saved."
|
256 |
msgstr "При установке Pro версии плагина, все ваши настройки сохраняются."
|
257 |
|
258 |
+
#: facebook-button-plugin.php:497 facebook-button-plugin.php:525
|
259 |
+
#: facebook-button-plugin.php:574
|
260 |
msgid "Unlock premium options by upgrading to Pro version"
|
261 |
msgstr "Активируйте премиум опции обновившись до Pro версии"
|
262 |
|
263 |
+
#: facebook-button-plugin.php:499 facebook-button-plugin.php:527
|
264 |
+
#: facebook-button-plugin.php:576
|
265 |
msgid "Learn More"
|
266 |
msgstr "Подробнее"
|
267 |
|
268 |
+
#: facebook-button-plugin.php:507 facebook-button-plugin.php:562
|
|
|
269 |
msgid "Save Changes"
|
270 |
msgstr "Сохранить изменения"
|
271 |
|
272 |
+
#: facebook-button-plugin.php:519
|
273 |
+
msgid "Facebook Button preview:"
|
274 |
+
msgstr "Предварительный просмотр Facebook кнопок"
|
275 |
+
|
276 |
+
#: facebook-button-plugin.php:544
|
277 |
+
msgid ""
|
278 |
+
"Please choose the necessary post types (or single pages) where Facebook "
|
279 |
+
"button will be displayed:"
|
280 |
+
msgstr ""
|
281 |
+
"Пожалуйста, выберите те типы постов (или отдельные страницы), где будут "
|
282 |
+
"отображаться кнопки Facebook:"
|
283 |
|
284 |
+
#: facebook-button-plugin.php:551
|
285 |
msgid "Show URL for pages"
|
286 |
msgstr "Отображать URL для страниц"
|
287 |
|
288 |
+
#: facebook-button-plugin.php:557
|
289 |
msgid "Example of the site's pages tree"
|
290 |
msgstr "Пример дерева страниц сайта"
|
291 |
|
292 |
+
#: facebook-button-plugin.php:557
|
293 |
msgid "Example of site pages' tree"
|
294 |
msgstr "Пример дерева страниц сайта"
|
295 |
|
296 |
+
#: facebook-button-plugin.php:689
|
297 |
+
msgid "Add Facebook buttons to your page or post"
|
298 |
+
msgstr "Добавить Facebook кнопки на вашу страницу или пост"
|
299 |
+
|
300 |
+
#: facebook-button-plugin.php:798
|
301 |
+
msgid "FAQ"
|
302 |
+
msgstr "FAQ"
|
303 |
+
|
304 |
+
#: facebook-button-plugin.php:799
|
305 |
msgid "Support"
|
306 |
msgstr "Поддержка"
|
307 |
|
308 |
+
#~ msgid "Notice:"
|
309 |
+
#~ msgstr "Внимание:"
|
310 |
+
|
311 |
+
#~ msgid ""
|
312 |
+
#~ "The plugin's settings have been changed. In order to save them please "
|
313 |
+
#~ "don't forget to click the 'Save Changes' button."
|
314 |
+
#~ msgstr ""
|
315 |
+
#~ "Настройки плагина были изменены. Для того, чтобы сохранить их, "
|
316 |
+
#~ "пожалуйста, не забудьте нажать кнопку \"Сохранить\"."
|
317 |
+
|
318 |
+
#~ msgid "pixels"
|
319 |
+
#~ msgstr "px"
|
320 |
+
|
321 |
#~ msgid "Go"
|
322 |
#~ msgstr "Перейти на"
|
323 |
|
344 |
#~ msgid "Facebook image:"
|
345 |
#~ msgstr "Facebook изображение:"
|
346 |
|
|
|
|
|
|
|
347 |
#~ msgid "requires"
|
348 |
#~ msgstr "требует"
|
349 |
|
languages/facebook-button-plugin-tr_TR.mo
ADDED
Binary file
|
languages/{facebook-tr_TR.po → facebook-button-plugin-tr_TR.po}
RENAMED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: facebook\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: Can Atasever <webmaster@canatasever.com>\n"
|
9 |
"Language: tr\n"
|
@@ -13,238 +13,299 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit 1.
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: facebook-button-plugin.php:
|
21 |
-
#: facebook-button-plugin.php:
|
22 |
msgid "Facebook Button Settings"
|
23 |
msgstr "Facebook Buton Ayarları"
|
24 |
|
25 |
-
#: facebook-button-plugin.php:
|
26 |
msgid "Settings saved"
|
27 |
msgstr "Ayarlar kaydedildi"
|
28 |
|
29 |
-
#: facebook-button-plugin.php:
|
30 |
msgid "Error: File size > 32K"
|
31 |
msgstr "HATA: Dosya boyutu > 32K"
|
32 |
|
33 |
-
#: facebook-button-plugin.php:
|
34 |
msgid "Error: Invalid file type"
|
35 |
msgstr "HATA: Geçersiz dosya türü"
|
36 |
|
37 |
-
#: facebook-button-plugin.php:
|
38 |
msgid "Upload successful."
|
39 |
msgstr "Yükleme başarılı"
|
40 |
|
41 |
-
#: facebook-button-plugin.php:
|
42 |
msgid "Error: moving file failed"
|
43 |
msgstr "HATA: dosya taşıma başarısız."
|
44 |
|
45 |
-
#: facebook-button-plugin.php:
|
46 |
msgid "Error: check image width or height"
|
47 |
msgstr "HATA: görselin genişliğini ya da yüksekliğini kontrol edin."
|
48 |
|
49 |
-
#: facebook-button-plugin.php:
|
50 |
msgid "Uploading Error: check image properties"
|
51 |
msgstr "Yükleme Hatası: görselin özelliklerini kontrol edin."
|
52 |
|
53 |
-
#: facebook-button-plugin.php:
|
54 |
msgid "All plugin settings were restored."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: facebook-button-plugin.php:
|
58 |
-
#: facebook-button-plugin.php:
|
59 |
-
#: facebook-button-plugin.php:
|
60 |
msgid "Settings"
|
61 |
msgstr "Ayarlar"
|
62 |
|
63 |
-
#: facebook-button-plugin.php:
|
64 |
msgid "Extra settings"
|
65 |
msgstr "Ekstra Ayarlar"
|
66 |
|
67 |
-
#: facebook-button-plugin.php:
|
68 |
-
#: facebook-button-plugin.php:681
|
69 |
-
msgid "FAQ"
|
70 |
-
msgstr "SSS"
|
71 |
-
|
72 |
-
#: facebook-button-plugin.php:260
|
73 |
msgid "Go PRO"
|
74 |
msgstr "PRO'ya geçin"
|
75 |
|
76 |
-
#: facebook-button-plugin.php:
|
77 |
-
msgid "
|
78 |
-
msgstr "
|
79 |
|
80 |
-
#: facebook-button-plugin.php:
|
81 |
-
|
82 |
-
|
|
|
83 |
|
84 |
-
#: facebook-button-plugin.php:
|
85 |
-
#,
|
86 |
-
msgid "
|
87 |
-
msgstr "
|
88 |
|
89 |
-
#: facebook-button-plugin.php:
|
90 |
#, fuzzy
|
91 |
msgid "Display button"
|
92 |
msgstr "Butonu Göster:"
|
93 |
|
94 |
-
#: facebook-button-plugin.php:
|
95 |
msgid "My Page"
|
96 |
msgstr "Benim Sayfam"
|
97 |
|
98 |
-
#: facebook-button-plugin.php:
|
|
|
99 |
msgid "Like"
|
100 |
msgstr "Beğen"
|
101 |
|
102 |
-
#: facebook-button-plugin.php:
|
103 |
msgid "Share"
|
104 |
msgstr "Paylaş"
|
105 |
|
106 |
-
#: facebook-button-plugin.php:
|
107 |
-
msgid "\"My page\" button image"
|
108 |
-
msgstr ""
|
109 |
-
|
110 |
-
#: facebook-button-plugin.php:295
|
111 |
-
msgid "Standard Facebook image"
|
112 |
-
msgstr "Standart Facebook görseli"
|
113 |
-
|
114 |
-
#: facebook-button-plugin.php:296
|
115 |
-
msgid "Custom Facebook image"
|
116 |
-
msgstr "Özel Facebook görseli"
|
117 |
-
|
118 |
-
#: facebook-button-plugin.php:299
|
119 |
-
msgid "To use custom image you need to setup permissions to upload directory of your site"
|
120 |
-
msgstr "Özel görsel kullanmak için sitenizin dizinine yükleme yapılmasına izin vermelisiniz."
|
121 |
-
|
122 |
-
#: facebook-button-plugin.php:306
|
123 |
-
#, fuzzy
|
124 |
-
msgid "Current image"
|
125 |
-
msgstr "Şu anki görsel:"
|
126 |
-
|
127 |
-
#: facebook-button-plugin.php:314
|
128 |
-
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
129 |
-
msgstr "Görsel özellikleri: maksimum görsel genişliği: 100px; maksimum görsel yüksekliği: 40px; maksimum görsel boyutu: 32 KB; uzantılar: \"jpg\", \"jpeg\", \"png\"."
|
130 |
-
|
131 |
-
#: facebook-button-plugin.php:319
|
132 |
#, fuzzy
|
133 |
msgid "Facebook buttons position"
|
134 |
msgstr "Facebook Butonu pozisyonu"
|
135 |
|
136 |
-
#: facebook-button-plugin.php:
|
137 |
msgid "Before"
|
138 |
msgstr "Önce"
|
139 |
|
140 |
-
#: facebook-button-plugin.php:
|
141 |
msgid "After"
|
142 |
msgstr "Sonra"
|
143 |
|
144 |
-
#: facebook-button-plugin.php:
|
145 |
msgid "Before and After"
|
146 |
msgstr "Önce ve Sonra"
|
147 |
|
148 |
-
#: facebook-button-plugin.php:
|
149 |
msgid "Shortcode"
|
150 |
msgstr "Kısa kod"
|
151 |
|
152 |
-
#: facebook-button-plugin.php:
|
153 |
-
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
154 |
-
msgstr "eğer web sitenize Facebook butonu eklemek isterseniz, verilen kısa kodu sayfanıza ya da yazınıza eklemeniz yeterlidir."
|
155 |
-
|
156 |
-
#: facebook-button-plugin.php:333
|
157 |
#, fuzzy
|
158 |
msgid "Facebook buttons language"
|
159 |
msgstr "Facebook Butonu dili"
|
160 |
|
161 |
-
#: facebook-button-plugin.php:
|
162 |
msgid "Change the language of Facebook Like Button"
|
163 |
msgstr "Facebook Beğen butonunun dilini değiştirin"
|
164 |
|
165 |
-
#: facebook-button-plugin.php:
|
166 |
-
#: facebook-button-plugin.php:
|
167 |
-
#: facebook-button-plugin.php:
|
168 |
msgid "Use the current site language"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: facebook-button-plugin.php:
|
172 |
-
#: facebook-button-plugin.php:
|
173 |
-
#: facebook-button-plugin.php:
|
174 |
msgid "Using"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: facebook-button-plugin.php:
|
178 |
msgid "Activate"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: facebook-button-plugin.php:
|
182 |
msgid "Download"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
186 |
#, fuzzy
|
187 |
msgid "Html tag for \"Like\" button"
|
188 |
msgstr "Beğen butonu için HTML etiketi:"
|
189 |
|
190 |
-
#: facebook-button-plugin.php:
|
191 |
msgid "Use this tag to improve validation of your site"
|
192 |
msgstr "Sitenizin doğrulamasını geliştirmek için bu etiketi kullanın"
|
193 |
|
194 |
-
#: facebook-button-plugin.php:
|
195 |
-
|
196 |
-
msgid "
|
197 |
-
msgstr "
|
198 |
|
199 |
-
#: facebook-button-plugin.php:
|
200 |
msgid "\"Like\" for an entire site on every page:"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: facebook-button-plugin.php:
|
204 |
msgid "Notice: \"Like for the entire site\" option does not create an extra button. This option merely allows your users to like the entire website when this option is enabled, or a single post when this option is disabled, when clicking the regular \"Like\" button."
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: facebook-button-plugin.php:
|
208 |
-
#: facebook-button-plugin.php:
|
209 |
msgid "If you upgrade to Pro version all your settings will be saved."
|
210 |
msgstr "Aboneliğinizi PRO versiyonuna yükseltirseniz tüm değişiklikleriniz kaydedilecek."
|
211 |
|
212 |
-
#: facebook-button-plugin.php:
|
213 |
-
#: facebook-button-plugin.php:
|
|
|
214 |
#, fuzzy
|
215 |
msgid "Unlock premium options by upgrading to Pro version"
|
216 |
msgstr "PRO versiyonuna geçerek premium özellikleri aktifleştirin."
|
217 |
|
218 |
-
#: facebook-button-plugin.php:
|
219 |
-
#: facebook-button-plugin.php:
|
|
|
220 |
msgid "Learn More"
|
221 |
msgstr "Detaylı Bilgi"
|
222 |
|
223 |
-
#: facebook-button-plugin.php:
|
224 |
-
#: facebook-button-plugin.php:
|
225 |
msgid "Save Changes"
|
226 |
msgstr "Değişiklikleri Kaydet"
|
227 |
|
228 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
229 |
msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
|
230 |
msgstr "Lütfen Facebook butonunun gösterileceği yazı türlerini (ya da tek sayfaları) seçin."
|
231 |
|
232 |
-
#: facebook-button-plugin.php:
|
233 |
msgid "Show URL for pages"
|
234 |
msgstr "Sayfalar için URL göster"
|
235 |
|
236 |
-
#: facebook-button-plugin.php:
|
237 |
msgid "Example of the site's pages tree"
|
238 |
msgstr "Sitenin sayfalar izi için örnek"
|
239 |
|
240 |
-
#: facebook-button-plugin.php:
|
241 |
msgid "Example of site pages' tree"
|
242 |
msgstr "Site sayfaları izi için örnek"
|
243 |
|
244 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
msgid "Support"
|
246 |
msgstr "Destek"
|
247 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
248 |
#~ msgid "Go"
|
249 |
#~ msgstr "Git"
|
250 |
|
@@ -266,9 +327,6 @@ msgstr "Destek"
|
|
266 |
#~ msgid "Facebook image:"
|
267 |
#~ msgstr "Facebook görseli:"
|
268 |
|
269 |
-
#~ msgid "Facebook Button"
|
270 |
-
#~ msgstr "Facebook Butonu"
|
271 |
-
|
272 |
#~ msgid "requires"
|
273 |
#~ msgstr "eklentisi"
|
274 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-10-12 16:58+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-10-12 16:58+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Can Atasever <webmaster@canatasever.com>\n"
|
9 |
"Language: tr\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 1.8.4\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: facebook-button-plugin.php:34
|
21 |
+
#: facebook-button-plugin.php:290
|
22 |
msgid "Facebook Button Settings"
|
23 |
msgstr "Facebook Buton Ayarları"
|
24 |
|
25 |
+
#: facebook-button-plugin.php:212
|
26 |
msgid "Settings saved"
|
27 |
msgstr "Ayarlar kaydedildi"
|
28 |
|
29 |
+
#: facebook-button-plugin.php:238
|
30 |
msgid "Error: File size > 32K"
|
31 |
msgstr "HATA: Dosya boyutu > 32K"
|
32 |
|
33 |
+
#: facebook-button-plugin.php:241
|
34 |
msgid "Error: Invalid file type"
|
35 |
msgstr "HATA: Geçersiz dosya türü"
|
36 |
|
37 |
+
#: facebook-button-plugin.php:247
|
38 |
msgid "Upload successful."
|
39 |
msgstr "Yükleme başarılı"
|
40 |
|
41 |
+
#: facebook-button-plugin.php:257
|
42 |
msgid "Error: moving file failed"
|
43 |
msgstr "HATA: dosya taşıma başarısız."
|
44 |
|
45 |
+
#: facebook-button-plugin.php:260
|
46 |
msgid "Error: check image width or height"
|
47 |
msgstr "HATA: görselin genişliğini ya da yüksekliğini kontrol edin."
|
48 |
|
49 |
+
#: facebook-button-plugin.php:264
|
50 |
msgid "Uploading Error: check image properties"
|
51 |
msgstr "Yükleme Hatası: görselin özelliklerini kontrol edin."
|
52 |
|
53 |
+
#: facebook-button-plugin.php:277
|
54 |
msgid "All plugin settings were restored."
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: facebook-button-plugin.php:292
|
58 |
+
#: facebook-button-plugin.php:783
|
59 |
+
#: facebook-button-plugin.php:797
|
60 |
msgid "Settings"
|
61 |
msgstr "Ayarlar"
|
62 |
|
63 |
+
#: facebook-button-plugin.php:293
|
64 |
msgid "Extra settings"
|
65 |
msgstr "Ekstra Ayarlar"
|
66 |
|
67 |
+
#: facebook-button-plugin.php:294
|
|
|
|
|
|
|
|
|
|
|
68 |
msgid "Go PRO"
|
69 |
msgstr "PRO'ya geçin"
|
70 |
|
71 |
+
#: facebook-button-plugin.php:297
|
72 |
+
msgid "Please, enable JavaScript in Your browser."
|
73 |
+
msgstr ""
|
74 |
|
75 |
+
#: facebook-button-plugin.php:311
|
76 |
+
#, fuzzy, php-format
|
77 |
+
msgid "If you would like to add Facebook buttons to your page or post, please use %s button"
|
78 |
+
msgstr "eğer web sitenize Facebook butonu eklemek isterseniz, verilen kısa kodu sayfanıza ya da yazınıza eklemeniz yeterlidir."
|
79 |
|
80 |
+
#: facebook-button-plugin.php:316
|
81 |
+
#, php-format
|
82 |
+
msgid "You can add Facebook buttons to your page or post by clicking on %s button in the content edit block using the Visual mode. If the button isn't displayed, please use the shortcode %s"
|
83 |
+
msgstr ""
|
84 |
|
85 |
+
#: facebook-button-plugin.php:327
|
86 |
#, fuzzy
|
87 |
msgid "Display button"
|
88 |
msgstr "Butonu Göster:"
|
89 |
|
90 |
+
#: facebook-button-plugin.php:330
|
91 |
msgid "My Page"
|
92 |
msgstr "Benim Sayfam"
|
93 |
|
94 |
+
#: facebook-button-plugin.php:331
|
95 |
+
#: facebook-button-plugin.php:438
|
96 |
msgid "Like"
|
97 |
msgstr "Beğen"
|
98 |
|
99 |
+
#: facebook-button-plugin.php:332
|
100 |
msgid "Share"
|
101 |
msgstr "Paylaş"
|
102 |
|
103 |
+
#: facebook-button-plugin.php:337
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
#, fuzzy
|
105 |
msgid "Facebook buttons position"
|
106 |
msgstr "Facebook Butonu pozisyonu"
|
107 |
|
108 |
+
#: facebook-button-plugin.php:340
|
109 |
msgid "Before"
|
110 |
msgstr "Önce"
|
111 |
|
112 |
+
#: facebook-button-plugin.php:341
|
113 |
msgid "After"
|
114 |
msgstr "Sonra"
|
115 |
|
116 |
+
#: facebook-button-plugin.php:342
|
117 |
msgid "Before and After"
|
118 |
msgstr "Önce ve Sonra"
|
119 |
|
120 |
+
#: facebook-button-plugin.php:343
|
121 |
msgid "Shortcode"
|
122 |
msgstr "Kısa kod"
|
123 |
|
124 |
+
#: facebook-button-plugin.php:348
|
|
|
|
|
|
|
|
|
125 |
#, fuzzy
|
126 |
msgid "Facebook buttons language"
|
127 |
msgstr "Facebook Butonu dili"
|
128 |
|
129 |
+
#: facebook-button-plugin.php:359
|
130 |
msgid "Change the language of Facebook Like Button"
|
131 |
msgstr "Facebook Beğen butonunun dilini değiştirin"
|
132 |
|
133 |
+
#: facebook-button-plugin.php:364
|
134 |
+
#: facebook-button-plugin.php:367
|
135 |
+
#: facebook-button-plugin.php:372
|
136 |
msgid "Use the current site language"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: facebook-button-plugin.php:364
|
140 |
+
#: facebook-button-plugin.php:368
|
141 |
+
#: facebook-button-plugin.php:373
|
142 |
msgid "Using"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: facebook-button-plugin.php:368
|
146 |
msgid "Activate"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: facebook-button-plugin.php:373
|
150 |
msgid "Download"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: facebook-button-plugin.php:380
|
154 |
+
#, fuzzy
|
155 |
+
msgid "Display buttons in excerpt"
|
156 |
+
msgstr "Butonu Göster:"
|
157 |
+
|
158 |
+
#: facebook-button-plugin.php:386
|
159 |
+
#, fuzzy
|
160 |
+
msgid "Your Facebook ID or username"
|
161 |
+
msgstr "Facebook ID'niz:"
|
162 |
+
|
163 |
+
#: facebook-button-plugin.php:393
|
164 |
+
msgid "\"My page\" button image"
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: facebook-button-plugin.php:398
|
168 |
+
msgid "Standard Facebook image"
|
169 |
+
msgstr "Standart Facebook görseli"
|
170 |
+
|
171 |
+
#: facebook-button-plugin.php:399
|
172 |
+
msgid "Custom Facebook image"
|
173 |
+
msgstr "Özel Facebook görseli"
|
174 |
+
|
175 |
+
#: facebook-button-plugin.php:402
|
176 |
+
msgid "To use custom image you need to setup permissions to upload directory of your site"
|
177 |
+
msgstr "Özel görsel kullanmak için sitenizin dizinine yükleme yapılmasına izin vermelisiniz."
|
178 |
+
|
179 |
+
#: facebook-button-plugin.php:409
|
180 |
+
#, fuzzy
|
181 |
+
msgid "Current image"
|
182 |
+
msgstr "Şu anki görsel:"
|
183 |
+
|
184 |
+
#: facebook-button-plugin.php:417
|
185 |
+
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
186 |
+
msgstr "Görsel özellikleri: maksimum görsel genişliği: 100px; maksimum görsel yüksekliği: 40px; maksimum görsel boyutu: 32 KB; uzantılar: \"jpg\", \"jpeg\", \"png\"."
|
187 |
+
|
188 |
+
#: facebook-button-plugin.php:421
|
189 |
+
msgid "Button layout"
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: facebook-button-plugin.php:435
|
193 |
+
msgid "Like button action"
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: facebook-button-plugin.php:439
|
197 |
+
msgid "Recommend"
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: facebook-button-plugin.php:444
|
201 |
+
msgid "Show faces"
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: facebook-button-plugin.php:450
|
205 |
+
msgid "Layout width"
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: facebook-button-plugin.php:456
|
209 |
+
msgid "Color scheme"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: facebook-button-plugin.php:459
|
213 |
+
msgid "Light"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: facebook-button-plugin.php:460
|
217 |
+
msgid "Dark"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: facebook-button-plugin.php:465
|
221 |
#, fuzzy
|
222 |
msgid "Html tag for \"Like\" button"
|
223 |
msgstr "Beğen butonu için HTML etiketi:"
|
224 |
|
225 |
+
#: facebook-button-plugin.php:470
|
226 |
msgid "Use this tag to improve validation of your site"
|
227 |
msgstr "Sitenizin doğrulamasını geliştirmek için bu etiketi kullanın"
|
228 |
|
229 |
+
#: facebook-button-plugin.php:479
|
230 |
+
#: facebook-button-plugin.php:516
|
231 |
+
msgid "Close"
|
232 |
+
msgstr ""
|
233 |
|
234 |
+
#: facebook-button-plugin.php:483
|
235 |
msgid "\"Like\" for an entire site on every page:"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: facebook-button-plugin.php:485
|
239 |
msgid "Notice: \"Like for the entire site\" option does not create an extra button. This option merely allows your users to like the entire website when this option is enabled, or a single post when this option is disabled, when clicking the regular \"Like\" button."
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: facebook-button-plugin.php:490
|
243 |
+
#: facebook-button-plugin.php:567
|
244 |
msgid "If you upgrade to Pro version all your settings will be saved."
|
245 |
msgstr "Aboneliğinizi PRO versiyonuna yükseltirseniz tüm değişiklikleriniz kaydedilecek."
|
246 |
|
247 |
+
#: facebook-button-plugin.php:497
|
248 |
+
#: facebook-button-plugin.php:525
|
249 |
+
#: facebook-button-plugin.php:574
|
250 |
#, fuzzy
|
251 |
msgid "Unlock premium options by upgrading to Pro version"
|
252 |
msgstr "PRO versiyonuna geçerek premium özellikleri aktifleştirin."
|
253 |
|
254 |
+
#: facebook-button-plugin.php:499
|
255 |
+
#: facebook-button-plugin.php:527
|
256 |
+
#: facebook-button-plugin.php:576
|
257 |
msgid "Learn More"
|
258 |
msgstr "Detaylı Bilgi"
|
259 |
|
260 |
+
#: facebook-button-plugin.php:507
|
261 |
+
#: facebook-button-plugin.php:562
|
262 |
msgid "Save Changes"
|
263 |
msgstr "Değişiklikleri Kaydet"
|
264 |
|
265 |
+
#: facebook-button-plugin.php:519
|
266 |
+
#, fuzzy
|
267 |
+
msgid "Facebook Button preview:"
|
268 |
+
msgstr "Facebook Butonu"
|
269 |
+
|
270 |
+
#: facebook-button-plugin.php:544
|
271 |
msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
|
272 |
msgstr "Lütfen Facebook butonunun gösterileceği yazı türlerini (ya da tek sayfaları) seçin."
|
273 |
|
274 |
+
#: facebook-button-plugin.php:551
|
275 |
msgid "Show URL for pages"
|
276 |
msgstr "Sayfalar için URL göster"
|
277 |
|
278 |
+
#: facebook-button-plugin.php:557
|
279 |
msgid "Example of the site's pages tree"
|
280 |
msgstr "Sitenin sayfalar izi için örnek"
|
281 |
|
282 |
+
#: facebook-button-plugin.php:557
|
283 |
msgid "Example of site pages' tree"
|
284 |
msgstr "Site sayfaları izi için örnek"
|
285 |
|
286 |
+
#: facebook-button-plugin.php:689
|
287 |
+
#, fuzzy
|
288 |
+
msgid "Add Facebook buttons to your page or post"
|
289 |
+
msgstr "Facebook Butonu pozisyonu"
|
290 |
+
|
291 |
+
#: facebook-button-plugin.php:798
|
292 |
+
msgid "FAQ"
|
293 |
+
msgstr "SSS"
|
294 |
+
|
295 |
+
#: facebook-button-plugin.php:799
|
296 |
msgid "Support"
|
297 |
msgstr "Destek"
|
298 |
|
299 |
+
#~ msgid "Notice:"
|
300 |
+
#~ msgstr "Uyarı:"
|
301 |
+
|
302 |
+
#~ msgid ""
|
303 |
+
#~ "The plugin's settings have been changed. In order to save them please "
|
304 |
+
#~ "don't forget to click the 'Save Changes' button."
|
305 |
+
#~ msgstr ""
|
306 |
+
#~ "eklentinin ayarları değiştirildi. Değişiklikleri kaydetmek için '"
|
307 |
+
#~ "Değişiklikleri Kaydet' butonuna basmayı unutmayın."
|
308 |
+
|
309 |
#~ msgid "Go"
|
310 |
#~ msgstr "Git"
|
311 |
|
327 |
#~ msgid "Facebook image:"
|
328 |
#~ msgstr "Facebook görseli:"
|
329 |
|
|
|
|
|
|
|
330 |
#~ msgid "requires"
|
331 |
#~ msgstr "eklentisi"
|
332 |
|
languages/facebook-button-plugin-uk.mo
ADDED
Binary file
|
languages/{facebook-uk.po → facebook-button-plugin-uk.po}
RENAMED
@@ -1,10 +1,10 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
-
"Last-Translator: bestwebsoft.com <
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ua_UA\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -16,226 +16,309 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: facebook-button-plugin.php:
|
20 |
-
#: facebook-button-plugin.php:255
|
21 |
msgid "Facebook Button Settings"
|
22 |
msgstr "Установки кнопки Facebook"
|
23 |
|
24 |
-
#: facebook-button-plugin.php:
|
25 |
msgid "Settings saved"
|
26 |
msgstr "Установки збережені"
|
27 |
|
28 |
-
#: facebook-button-plugin.php:
|
29 |
msgid "Error: File size > 32K"
|
30 |
msgstr "Помилка: Розмір файлу > 32K"
|
31 |
|
32 |
-
#: facebook-button-plugin.php:
|
33 |
msgid "Error: Invalid file type"
|
34 |
msgstr "Помилка: Невірний тип файлу"
|
35 |
|
36 |
-
#: facebook-button-plugin.php:
|
37 |
msgid "Upload successful."
|
38 |
msgstr "Файл був завантажений успішно"
|
39 |
|
40 |
-
#: facebook-button-plugin.php:
|
41 |
msgid "Error: moving file failed"
|
42 |
msgstr "Помилка: не вдалося переміщення файлів"
|
43 |
|
44 |
-
#: facebook-button-plugin.php:
|
45 |
msgid "Error: check image width or height"
|
46 |
msgstr "Помилка: Перевірте ширину або висоту зображення"
|
47 |
|
48 |
-
#: facebook-button-plugin.php:
|
49 |
msgid "Uploading Error: check image properties"
|
50 |
msgstr "Помилка Завантаження: Перевірте властивості зображення"
|
51 |
|
52 |
-
#: facebook-button-plugin.php:
|
53 |
msgid "All plugin settings were restored."
|
54 |
msgstr "Всі налаштування плагіну було скинуто до стандартних."
|
55 |
|
56 |
-
#: facebook-button-plugin.php:
|
57 |
-
#: facebook-button-plugin.php:
|
58 |
-
#: facebook-button-plugin.php:680
|
59 |
msgid "Settings"
|
60 |
msgstr "Установки"
|
61 |
|
62 |
-
#: facebook-button-plugin.php:
|
63 |
msgid "Extra settings"
|
64 |
msgstr "Додаткові налаштування"
|
65 |
|
66 |
-
#: facebook-button-plugin.php:
|
67 |
-
#: facebook-button-plugin.php:681
|
68 |
-
msgid "FAQ"
|
69 |
-
msgstr "FAQ"
|
70 |
-
|
71 |
-
#: facebook-button-plugin.php:260
|
72 |
msgid "Go PRO"
|
73 |
-
msgstr "Перейти на
|
74 |
|
75 |
-
#: facebook-button-plugin.php:
|
76 |
-
msgid "
|
77 |
-
msgstr "
|
78 |
|
79 |
-
#: facebook-button-plugin.php:
|
80 |
-
|
81 |
-
|
|
|
|
|
|
|
|
|
|
|
82 |
|
83 |
-
#: facebook-button-plugin.php:
|
84 |
-
|
85 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
|
87 |
-
#: facebook-button-plugin.php:
|
88 |
msgid "Display button"
|
89 |
msgstr "Відображати кнопку"
|
90 |
|
91 |
-
#: facebook-button-plugin.php:
|
92 |
msgid "My Page"
|
93 |
msgstr "Моя сторінка"
|
94 |
|
95 |
-
#: facebook-button-plugin.php:
|
96 |
msgid "Like"
|
97 |
msgstr "Подобається"
|
98 |
|
99 |
-
#: facebook-button-plugin.php:
|
100 |
msgid "Share"
|
101 |
msgstr "Поширити"
|
102 |
|
103 |
-
#: facebook-button-plugin.php:
|
104 |
-
msgid "\"My page\" button image"
|
105 |
-
msgstr "Зображення кнопки \"Моя сторінка\""
|
106 |
-
|
107 |
-
#: facebook-button-plugin.php:295
|
108 |
-
msgid "Standard Facebook image"
|
109 |
-
msgstr "Стандартне зображення Facebook "
|
110 |
-
|
111 |
-
#: facebook-button-plugin.php:296
|
112 |
-
msgid "Custom Facebook image"
|
113 |
-
msgstr "Кастомне зображення Facebook"
|
114 |
-
|
115 |
-
#: facebook-button-plugin.php:299
|
116 |
-
msgid "To use custom image you need to setup permissions to upload directory of your site"
|
117 |
-
msgstr "Для використання кастомного зображення Вам необхідно видати права доступу на папку завантажень на вашому сайті"
|
118 |
-
|
119 |
-
#: facebook-button-plugin.php:306
|
120 |
-
msgid "Current image"
|
121 |
-
msgstr "Поточне зображення"
|
122 |
-
|
123 |
-
#: facebook-button-plugin.php:314
|
124 |
-
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
125 |
-
msgstr "Властивості зображення: максимальна ширина зображення:100px; максимальна висота зображення: 40px; максимальний розмір зображення: 32Kb; типи зображеннь :\"jpg\", \"jpeg\", \"png\"."
|
126 |
-
|
127 |
-
#: facebook-button-plugin.php:319
|
128 |
msgid "Facebook buttons position"
|
129 |
msgstr "Розташування кнопок Facebook"
|
130 |
|
131 |
-
#: facebook-button-plugin.php:
|
132 |
msgid "Before"
|
133 |
msgstr "До"
|
134 |
|
135 |
-
#: facebook-button-plugin.php:
|
136 |
msgid "After"
|
137 |
msgstr "Після"
|
138 |
|
139 |
-
#: facebook-button-plugin.php:
|
140 |
msgid "Before and After"
|
141 |
msgstr "До та після"
|
142 |
|
143 |
-
#: facebook-button-plugin.php:
|
144 |
msgid "Shortcode"
|
145 |
msgstr "Шорткод"
|
146 |
|
147 |
-
#: facebook-button-plugin.php:
|
148 |
-
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
149 |
-
msgstr "Якщо ви хочете додати кнопку Facebook на ваш сайт, просто скопіюйте і помістіть цей шорткод у пост або на сторінку:"
|
150 |
-
|
151 |
-
#: facebook-button-plugin.php:333
|
152 |
msgid "Facebook buttons language"
|
153 |
msgstr "Мова кнопок Facebook"
|
154 |
|
155 |
-
#: facebook-button-plugin.php:
|
156 |
-
msgid "Change the language of Facebook
|
157 |
msgstr "Змінити мову для кнопок Facebook"
|
158 |
|
159 |
-
#: facebook-button-plugin.php:
|
160 |
-
#: facebook-button-plugin.php:
|
161 |
-
#: facebook-button-plugin.php:358
|
162 |
msgid "Use the current site language"
|
163 |
msgstr "Використовувати поточну мову сайту"
|
164 |
|
165 |
-
#: facebook-button-plugin.php:
|
166 |
-
#: facebook-button-plugin.php:
|
167 |
-
#: facebook-button-plugin.php:359
|
168 |
msgid "Using"
|
169 |
msgstr "Використовуючи"
|
170 |
|
171 |
-
#: facebook-button-plugin.php:
|
172 |
msgid "Activate"
|
173 |
msgstr "Активувати"
|
174 |
|
175 |
-
#: facebook-button-plugin.php:
|
176 |
msgid "Download"
|
177 |
msgstr "Завантажити"
|
178 |
|
179 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
180 |
msgid "Html tag for \"Like\" button"
|
181 |
msgstr "Html тег для кнопки \"Подобається\""
|
182 |
|
183 |
-
#: facebook-button-plugin.php:
|
184 |
msgid "Use this tag to improve validation of your site"
|
185 |
msgstr "Використовуйте цей тег для поліпшення валідації вашого сайту"
|
186 |
|
187 |
-
#: facebook-button-plugin.php:
|
188 |
-
msgid "
|
189 |
-
msgstr "
|
190 |
|
191 |
-
#: facebook-button-plugin.php:
|
192 |
msgid "\"Like\" for an entire site on every page:"
|
193 |
msgstr "\"Подобається\" для всього сайту на кожній сторінці"
|
194 |
|
195 |
-
#: facebook-button-plugin.php:
|
196 |
-
msgid "
|
197 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
198 |
|
199 |
-
#: facebook-button-plugin.php:
|
200 |
-
#: facebook-button-plugin.php:448
|
201 |
msgid "If you upgrade to Pro version all your settings will be saved."
|
202 |
msgstr "Якщо ви перейдете на Pro версію, усі установки будуть збережені."
|
203 |
|
204 |
-
#: facebook-button-plugin.php:
|
205 |
-
#: facebook-button-plugin.php:
|
206 |
msgid "Unlock premium options by upgrading to Pro version"
|
207 |
msgstr "Зробити доступними преміум-опції, перейшовши на Pro версію"
|
208 |
|
209 |
-
#: facebook-button-plugin.php:
|
210 |
-
#: facebook-button-plugin.php:
|
211 |
msgid "Learn More"
|
212 |
msgstr "Докладніше"
|
213 |
|
214 |
-
#: facebook-button-plugin.php:
|
215 |
-
#: facebook-button-plugin.php:443
|
216 |
msgid "Save Changes"
|
217 |
msgstr "Зберегти зміни"
|
218 |
|
219 |
-
#: facebook-button-plugin.php:
|
220 |
-
msgid "
|
221 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
222 |
|
223 |
-
#: facebook-button-plugin.php:
|
224 |
msgid "Show URL for pages"
|
225 |
msgstr "Відображати URL сторінок"
|
226 |
|
227 |
-
#: facebook-button-plugin.php:
|
228 |
msgid "Example of the site's pages tree"
|
229 |
msgstr "Приклад дерева сторінок сайту"
|
230 |
|
231 |
-
#: facebook-button-plugin.php:
|
232 |
msgid "Example of site pages' tree"
|
233 |
msgstr "Приклад дерева сторінок сайту"
|
234 |
|
235 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
236 |
msgid "Support"
|
237 |
msgstr "Підтримка"
|
238 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
239 |
#~ msgid "Go"
|
240 |
#~ msgstr "Перейти"
|
241 |
|
@@ -260,9 +343,6 @@ msgstr "Підтримка"
|
|
260 |
#~ msgid "Facebook image:"
|
261 |
#~ msgstr "Зображення Facebook :"
|
262 |
|
263 |
-
#~ msgid "Facebook Button"
|
264 |
-
#~ msgstr "кнопка Facebook"
|
265 |
-
|
266 |
#~ msgid "requires"
|
267 |
#~ msgstr "потребує"
|
268 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-10-13 14:09+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-10-21 13:32+0300\n"
|
7 |
+
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ua_UA\n"
|
10 |
"MIME-Version: 1.0\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: facebook-button-plugin.php:34 facebook-button-plugin.php:290
|
|
|
20 |
msgid "Facebook Button Settings"
|
21 |
msgstr "Установки кнопки Facebook"
|
22 |
|
23 |
+
#: facebook-button-plugin.php:212
|
24 |
msgid "Settings saved"
|
25 |
msgstr "Установки збережені"
|
26 |
|
27 |
+
#: facebook-button-plugin.php:238
|
28 |
msgid "Error: File size > 32K"
|
29 |
msgstr "Помилка: Розмір файлу > 32K"
|
30 |
|
31 |
+
#: facebook-button-plugin.php:241
|
32 |
msgid "Error: Invalid file type"
|
33 |
msgstr "Помилка: Невірний тип файлу"
|
34 |
|
35 |
+
#: facebook-button-plugin.php:247
|
36 |
msgid "Upload successful."
|
37 |
msgstr "Файл був завантажений успішно"
|
38 |
|
39 |
+
#: facebook-button-plugin.php:257
|
40 |
msgid "Error: moving file failed"
|
41 |
msgstr "Помилка: не вдалося переміщення файлів"
|
42 |
|
43 |
+
#: facebook-button-plugin.php:260
|
44 |
msgid "Error: check image width or height"
|
45 |
msgstr "Помилка: Перевірте ширину або висоту зображення"
|
46 |
|
47 |
+
#: facebook-button-plugin.php:264
|
48 |
msgid "Uploading Error: check image properties"
|
49 |
msgstr "Помилка Завантаження: Перевірте властивості зображення"
|
50 |
|
51 |
+
#: facebook-button-plugin.php:277
|
52 |
msgid "All plugin settings were restored."
|
53 |
msgstr "Всі налаштування плагіну було скинуто до стандартних."
|
54 |
|
55 |
+
#: facebook-button-plugin.php:292 facebook-button-plugin.php:783
|
56 |
+
#: facebook-button-plugin.php:797
|
|
|
57 |
msgid "Settings"
|
58 |
msgstr "Установки"
|
59 |
|
60 |
+
#: facebook-button-plugin.php:293
|
61 |
msgid "Extra settings"
|
62 |
msgstr "Додаткові налаштування"
|
63 |
|
64 |
+
#: facebook-button-plugin.php:294
|
|
|
|
|
|
|
|
|
|
|
65 |
msgid "Go PRO"
|
66 |
+
msgstr "Перейти на PRO версію"
|
67 |
|
68 |
+
#: facebook-button-plugin.php:297
|
69 |
+
msgid "Please, enable JavaScript in Your browser."
|
70 |
+
msgstr "Будь ласка, активуйте JavaScript у Вашому браузері."
|
71 |
|
72 |
+
#: facebook-button-plugin.php:311
|
73 |
+
#, php-format
|
74 |
+
msgid ""
|
75 |
+
"If you would like to add Facebook buttons to your page or post, please use "
|
76 |
+
"%s button"
|
77 |
+
msgstr ""
|
78 |
+
"Якщо ви хочете додати кнопки Facebook на вашу сторінку або пост, будь ласка, "
|
79 |
+
"використовуйте кнопку %s"
|
80 |
|
81 |
+
#: facebook-button-plugin.php:316
|
82 |
+
#, php-format
|
83 |
+
msgid ""
|
84 |
+
"You can add Facebook buttons to your page or post by clicking on %s button "
|
85 |
+
"in the content edit block using the Visual mode. If the button isn't "
|
86 |
+
"displayed, please use the shortcode %s"
|
87 |
+
msgstr ""
|
88 |
+
"Ви можете додати Facebook кнопки на вашу сторінку або пост, натиснувши на "
|
89 |
+
"кнопку %s в блоці редагування контенту в режимі Visual. Якщо кнопка не "
|
90 |
+
"відображається, будь ласка, використовуйте шорткод %s"
|
91 |
|
92 |
+
#: facebook-button-plugin.php:327
|
93 |
msgid "Display button"
|
94 |
msgstr "Відображати кнопку"
|
95 |
|
96 |
+
#: facebook-button-plugin.php:330
|
97 |
msgid "My Page"
|
98 |
msgstr "Моя сторінка"
|
99 |
|
100 |
+
#: facebook-button-plugin.php:331 facebook-button-plugin.php:438
|
101 |
msgid "Like"
|
102 |
msgstr "Подобається"
|
103 |
|
104 |
+
#: facebook-button-plugin.php:332
|
105 |
msgid "Share"
|
106 |
msgstr "Поширити"
|
107 |
|
108 |
+
#: facebook-button-plugin.php:337
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
msgid "Facebook buttons position"
|
110 |
msgstr "Розташування кнопок Facebook"
|
111 |
|
112 |
+
#: facebook-button-plugin.php:340
|
113 |
msgid "Before"
|
114 |
msgstr "До"
|
115 |
|
116 |
+
#: facebook-button-plugin.php:341
|
117 |
msgid "After"
|
118 |
msgstr "Після"
|
119 |
|
120 |
+
#: facebook-button-plugin.php:342
|
121 |
msgid "Before and After"
|
122 |
msgstr "До та після"
|
123 |
|
124 |
+
#: facebook-button-plugin.php:343
|
125 |
msgid "Shortcode"
|
126 |
msgstr "Шорткод"
|
127 |
|
128 |
+
#: facebook-button-plugin.php:348
|
|
|
|
|
|
|
|
|
129 |
msgid "Facebook buttons language"
|
130 |
msgstr "Мова кнопок Facebook"
|
131 |
|
132 |
+
#: facebook-button-plugin.php:359
|
133 |
+
msgid "Change the language of Facebook Button"
|
134 |
msgstr "Змінити мову для кнопок Facebook"
|
135 |
|
136 |
+
#: facebook-button-plugin.php:364 facebook-button-plugin.php:367
|
137 |
+
#: facebook-button-plugin.php:372
|
|
|
138 |
msgid "Use the current site language"
|
139 |
msgstr "Використовувати поточну мову сайту"
|
140 |
|
141 |
+
#: facebook-button-plugin.php:364 facebook-button-plugin.php:368
|
142 |
+
#: facebook-button-plugin.php:373
|
|
|
143 |
msgid "Using"
|
144 |
msgstr "Використовуючи"
|
145 |
|
146 |
+
#: facebook-button-plugin.php:368
|
147 |
msgid "Activate"
|
148 |
msgstr "Активувати"
|
149 |
|
150 |
+
#: facebook-button-plugin.php:373
|
151 |
msgid "Download"
|
152 |
msgstr "Завантажити"
|
153 |
|
154 |
+
#: facebook-button-plugin.php:380
|
155 |
+
msgid "Display buttons in excerpt"
|
156 |
+
msgstr "Відображати кнопки в уривку"
|
157 |
+
|
158 |
+
#: facebook-button-plugin.php:386
|
159 |
+
msgid "Your Facebook ID or username"
|
160 |
+
msgstr "ID вашого Facebook акаунту"
|
161 |
+
|
162 |
+
#: facebook-button-plugin.php:393
|
163 |
+
msgid "\"My page\" button image"
|
164 |
+
msgstr "Зображення кнопки \"Моя сторінка\""
|
165 |
+
|
166 |
+
#: facebook-button-plugin.php:398
|
167 |
+
msgid "Standard Facebook image"
|
168 |
+
msgstr "Стандартне зображення Facebook "
|
169 |
+
|
170 |
+
#: facebook-button-plugin.php:399
|
171 |
+
msgid "Custom Facebook image"
|
172 |
+
msgstr "Кастомне зображення Facebook"
|
173 |
+
|
174 |
+
#: facebook-button-plugin.php:402
|
175 |
+
msgid ""
|
176 |
+
"To use custom image you need to setup permissions to upload directory of "
|
177 |
+
"your site"
|
178 |
+
msgstr ""
|
179 |
+
"Для використання кастомного зображення Вам необхідно видати права доступу на "
|
180 |
+
"папку завантажень на вашому сайті"
|
181 |
+
|
182 |
+
#: facebook-button-plugin.php:409
|
183 |
+
msgid "Current image"
|
184 |
+
msgstr "Поточне зображення"
|
185 |
+
|
186 |
+
#: facebook-button-plugin.php:417
|
187 |
+
msgid ""
|
188 |
+
"Image properties: max image width:100px; max image height:40px; max image "
|
189 |
+
"size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
190 |
+
msgstr ""
|
191 |
+
"Властивості зображення: максимальна ширина зображення:100px; максимальна "
|
192 |
+
"висота зображення: 40px; максимальний розмір зображення: 32Kb; типи "
|
193 |
+
"зображеннь :\"jpg\", \"jpeg\", \"png\"."
|
194 |
+
|
195 |
+
#: facebook-button-plugin.php:421
|
196 |
+
msgid "Button layout"
|
197 |
+
msgstr "Тип кнопок"
|
198 |
+
|
199 |
+
#: facebook-button-plugin.php:435
|
200 |
+
msgid "Like button action"
|
201 |
+
msgstr "Дія кнопки \"Like\""
|
202 |
+
|
203 |
+
#: facebook-button-plugin.php:439
|
204 |
+
msgid "Recommend"
|
205 |
+
msgstr "Рекомендую"
|
206 |
+
|
207 |
+
#: facebook-button-plugin.php:444
|
208 |
+
msgid "Show faces"
|
209 |
+
msgstr "Показувати обличчя"
|
210 |
+
|
211 |
+
#: facebook-button-plugin.php:450
|
212 |
+
msgid "Layout width"
|
213 |
+
msgstr "Ширина блоку"
|
214 |
+
|
215 |
+
#: facebook-button-plugin.php:456
|
216 |
+
msgid "Color scheme"
|
217 |
+
msgstr "Кольорова схема"
|
218 |
+
|
219 |
+
#: facebook-button-plugin.php:459
|
220 |
+
msgid "Light"
|
221 |
+
msgstr "Світла"
|
222 |
+
|
223 |
+
#: facebook-button-plugin.php:460
|
224 |
+
msgid "Dark"
|
225 |
+
msgstr "Темна"
|
226 |
+
|
227 |
+
#: facebook-button-plugin.php:465
|
228 |
msgid "Html tag for \"Like\" button"
|
229 |
msgstr "Html тег для кнопки \"Подобається\""
|
230 |
|
231 |
+
#: facebook-button-plugin.php:470
|
232 |
msgid "Use this tag to improve validation of your site"
|
233 |
msgstr "Використовуйте цей тег для поліпшення валідації вашого сайту"
|
234 |
|
235 |
+
#: facebook-button-plugin.php:479 facebook-button-plugin.php:516
|
236 |
+
msgid "Close"
|
237 |
+
msgstr "Закрити"
|
238 |
|
239 |
+
#: facebook-button-plugin.php:483
|
240 |
msgid "\"Like\" for an entire site on every page:"
|
241 |
msgstr "\"Подобається\" для всього сайту на кожній сторінці"
|
242 |
|
243 |
+
#: facebook-button-plugin.php:485
|
244 |
+
msgid ""
|
245 |
+
"Notice: \"Like for the entire site\" option does not create an extra button. "
|
246 |
+
"This option merely allows your users to like the entire website when this "
|
247 |
+
"option is enabled, or a single post when this option is disabled, when "
|
248 |
+
"clicking the regular \"Like\" button."
|
249 |
+
msgstr ""
|
250 |
+
"Увага: опція \"Подобається для всього сайту\" - не створює додаткову "
|
251 |
+
"кнопку. Ця опція дозволяє при кліку користувачами на стандартну кнопку "
|
252 |
+
"плагіна ставити \"Подобається\" усьому сайту , якщо ця опція увімкнена, або "
|
253 |
+
"ставити \"Подобається\" окремим постам, якщо опція вимкнена."
|
254 |
|
255 |
+
#: facebook-button-plugin.php:490 facebook-button-plugin.php:567
|
|
|
256 |
msgid "If you upgrade to Pro version all your settings will be saved."
|
257 |
msgstr "Якщо ви перейдете на Pro версію, усі установки будуть збережені."
|
258 |
|
259 |
+
#: facebook-button-plugin.php:497 facebook-button-plugin.php:525
|
260 |
+
#: facebook-button-plugin.php:574
|
261 |
msgid "Unlock premium options by upgrading to Pro version"
|
262 |
msgstr "Зробити доступними преміум-опції, перейшовши на Pro версію"
|
263 |
|
264 |
+
#: facebook-button-plugin.php:499 facebook-button-plugin.php:527
|
265 |
+
#: facebook-button-plugin.php:576
|
266 |
msgid "Learn More"
|
267 |
msgstr "Докладніше"
|
268 |
|
269 |
+
#: facebook-button-plugin.php:507 facebook-button-plugin.php:562
|
|
|
270 |
msgid "Save Changes"
|
271 |
msgstr "Зберегти зміни"
|
272 |
|
273 |
+
#: facebook-button-plugin.php:519
|
274 |
+
msgid "Facebook Button preview:"
|
275 |
+
msgstr "Попередній перегляд Facebook кнопок:"
|
276 |
+
|
277 |
+
#: facebook-button-plugin.php:544
|
278 |
+
msgid ""
|
279 |
+
"Please choose the necessary post types (or single pages) where Facebook "
|
280 |
+
"button will be displayed:"
|
281 |
+
msgstr ""
|
282 |
+
"Будь ласка, оберіть необхідні типи постів (чи сторінок), де буде "
|
283 |
+
"відображатися кнопка Facebook"
|
284 |
|
285 |
+
#: facebook-button-plugin.php:551
|
286 |
msgid "Show URL for pages"
|
287 |
msgstr "Відображати URL сторінок"
|
288 |
|
289 |
+
#: facebook-button-plugin.php:557
|
290 |
msgid "Example of the site's pages tree"
|
291 |
msgstr "Приклад дерева сторінок сайту"
|
292 |
|
293 |
+
#: facebook-button-plugin.php:557
|
294 |
msgid "Example of site pages' tree"
|
295 |
msgstr "Приклад дерева сторінок сайту"
|
296 |
|
297 |
+
#: facebook-button-plugin.php:689
|
298 |
+
msgid "Add Facebook buttons to your page or post"
|
299 |
+
msgstr "Додати кнопки Facebook на вашу сторінку або пост"
|
300 |
+
|
301 |
+
#: facebook-button-plugin.php:798
|
302 |
+
msgid "FAQ"
|
303 |
+
msgstr "FAQ"
|
304 |
+
|
305 |
+
#: facebook-button-plugin.php:799
|
306 |
msgid "Support"
|
307 |
msgstr "Підтримка"
|
308 |
|
309 |
+
#~ msgid "Notice:"
|
310 |
+
#~ msgstr "Нагадування:"
|
311 |
+
|
312 |
+
#~ msgid ""
|
313 |
+
#~ "The plugin's settings have been changed. In order to save them please "
|
314 |
+
#~ "don't forget to click the 'Save Changes' button."
|
315 |
+
#~ msgstr ""
|
316 |
+
#~ "Налаштування плагіну було змінено. Для того, щоб зберегти ці зміни, не "
|
317 |
+
#~ "забудьте нажати кнопку \"Зберегти зміни\"."
|
318 |
+
|
319 |
+
#~ msgid "pixels"
|
320 |
+
#~ msgstr "px"
|
321 |
+
|
322 |
#~ msgid "Go"
|
323 |
#~ msgstr "Перейти"
|
324 |
|
343 |
#~ msgid "Facebook image:"
|
344 |
#~ msgstr "Зображення Facebook :"
|
345 |
|
|
|
|
|
|
|
346 |
#~ msgid "requires"
|
347 |
#~ msgstr "потребує"
|
348 |
|
languages/facebook-fi_FI.mo
DELETED
Binary file
|
languages/facebook-fr_FR.mo
DELETED
Binary file
|
languages/facebook-id_ID.mo
DELETED
Binary file
|
languages/facebook-ru_RU.mo
DELETED
Binary file
|
languages/facebook-tr_TR.mo
DELETED
Binary file
|
languages/facebook-uk.mo
DELETED
Binary file
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
-
=== Facebook
|
2 |
Contributors: bestwebsoft
|
3 |
Donate link: http://bestwebsoft.com/donate/
|
4 |
Tags: add button, add social button, add fb button, add facebook social button, add social buttons, add facebook button, add share button, add fb share button, add facebook share button, batton, best facebook plugin, best fb like button, best facebook like button, buton, button, button image, Button like, button position, FB, fb button, fb like, fb like button, fb share, Facebook, Facebook account button, facebook button, facebook button icon, facebook button language, Facebook button like, Facebook button share, Facebook ID, facebook like, facebook like button, Facebook Page, facebook share, facebook share button, follow, folow, follow button, icon, Like, like, likes, like button, My Page button, nice fb like button, nice facebook button, nice fb button, simple fb plugin, simple facebook plugin, social plugin, social plugins, Share, share button, social, social account, social button, wp plugin, wp social plugin, wordpress social plugin
|
5 |
-
Requires at least: 3.
|
6 |
-
Tested up to: 4.3
|
7 |
-
Stable tag: 2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -12,29 +12,32 @@ Add Facebook buttons to your WordPress website.
|
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
-
Facebook
|
16 |
|
17 |
http://www.youtube.com/watch?v=QGv04uHVl5c
|
18 |
|
19 |
-
<a href="http://www.youtube.com/watch?v=pAKsQPz3RZc" target="_blank">Facebook
|
20 |
|
21 |
-
<a href="http://wordpress.org/plugins/facebook-button-plugin/faq/" target="_blank">Facebook
|
22 |
|
23 |
-
<a href="http://support.bestwebsoft.com" target="_blank">Facebook
|
24 |
|
25 |
-
<a href="http://bestwebsoft.com/products/facebook-like-button/?k=4caab51af6593e97ad1e329fe0f53072" target="_blank">Upgrade to Facebook
|
26 |
|
27 |
= Features =
|
28 |
|
29 |
-
* Add
|
30 |
-
*
|
31 |
-
*
|
|
|
|
|
|
|
32 |
* Use a standard image or replace it with some other image.
|
33 |
* Use the current site language for Facebook Buttons (Using <a href="http://bestwebsoft.com/products/multilanguage/" target="_blank">Multilanguage by BestWebSoft</a>)
|
34 |
|
35 |
= Recommended Plugins =
|
36 |
|
37 |
-
The author of Facebook
|
38 |
|
39 |
* <a href="http://wordpress.org/plugins/updater/">Updater</a> - This plugin updates WordPress core and the plugins to the recent versions. You can also use the auto mode or manual mode for updating and set email notifications.
|
40 |
There is also a premium version of the plugin <a href="http://bestwebsoft.com/products/updater/?k=5019f1216fc048f1419fe4645da69381">Updater Pro</a> with more useful features available. It can make backup of all your files and database before updating. Also it can forbid some plugins or WordPress Core update.
|
@@ -64,7 +67,7 @@ We can fix some things for free for the users who provide translation of our plu
|
|
64 |
2. Activate the plugin via the 'Plugins' menu in your WordPress admin panel.
|
65 |
3. You can adjust the necessary settings in your WordPress admin panel - "Settings" > "Facebook Button".
|
66 |
|
67 |
-
<a href="https://docs.google.com/document/d/1LDmKKxLHq0GavaGcevj4g-8SjLcYPruSKg5Kos9plxM/edit" target="_blank">View a Step-by-step Instruction on Facebook
|
68 |
|
69 |
http://www.youtube.com/watch?v=pAKsQPz3RZc
|
70 |
|
@@ -72,7 +75,7 @@ http://www.youtube.com/watch?v=pAKsQPz3RZc
|
|
72 |
|
73 |
= I cannot see Facebook Button icon in the post after the plugin installation =
|
74 |
|
75 |
-
In WordPress admin panel, please go to "Plugins", find "Facebook
|
76 |
|
77 |
= After clicking Facebook Button icon I see the Facebook Home page instead of the necessary account page =
|
78 |
|
@@ -104,14 +107,23 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
|
|
104 |
|
105 |
== Screenshots ==
|
106 |
|
107 |
-
1. Plugin
|
108 |
-
2. Displaying Facebook Button
|
109 |
3. Displaying Facebook Button in your post via the shortcode.
|
110 |
|
111 |
== Changelog ==
|
112 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
113 |
= V2.43 - 26.08.2015 =
|
114 |
-
*
|
115 |
|
116 |
= V2.42 - 24.08.2015 =
|
117 |
* Update : We added buttons displaying for the excerpt.
|
@@ -122,7 +134,7 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
|
|
122 |
* Bugfix : We fixed the 'share' button displaying bug (when the shortcode is used).
|
123 |
|
124 |
= V2.40 - 15.06.2015 =
|
125 |
-
*
|
126 |
|
127 |
= V2.39 - 18.05.2015 =
|
128 |
* Update : We updated option titles on the Settings page for the convenience of users.
|
@@ -131,7 +143,7 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
|
|
131 |
|
132 |
= V2.38 - 23.04.2015 =
|
133 |
* Update : Button styles are updated.
|
134 |
-
*
|
135 |
|
136 |
= V2.37 - 31.03.2015 =
|
137 |
* Update : We updated all functionality for wordpress 4.1.1.
|
@@ -155,7 +167,7 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
|
|
155 |
* Bugfix : Problem with showing Like button was fixed.
|
156 |
|
157 |
= V2.31 - 11.06.2014 =
|
158 |
-
*
|
159 |
* Update : We updated all functionality for wordpress 3.9.1.
|
160 |
* Bugfix : Problem with switching user was fixed.
|
161 |
|
@@ -167,7 +179,7 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
|
|
167 |
* Update : Plugin tabs is added.
|
168 |
|
169 |
= V2.28 - 13.02.2014 =
|
170 |
-
*
|
171 |
* Update : Screenshots are updated.
|
172 |
* Update : BWS plugins section is updated.
|
173 |
* Update : We updated all functionality for wordpress 3.8.1.
|
@@ -285,6 +297,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
|
|
285 |
|
286 |
== Upgrade Notice ==
|
287 |
|
|
|
|
|
|
|
288 |
= V2.43 =
|
289 |
Option to display the button in excerpt.
|
290 |
|
1 |
+
=== Facebook Button by BestWebSoft ===
|
2 |
Contributors: bestwebsoft
|
3 |
Donate link: http://bestwebsoft.com/donate/
|
4 |
Tags: add button, add social button, add fb button, add facebook social button, add social buttons, add facebook button, add share button, add fb share button, add facebook share button, batton, best facebook plugin, best fb like button, best facebook like button, buton, button, button image, Button like, button position, FB, fb button, fb like, fb like button, fb share, Facebook, Facebook account button, facebook button, facebook button icon, facebook button language, Facebook button like, Facebook button share, Facebook ID, facebook like, facebook like button, Facebook Page, facebook share, facebook share button, follow, folow, follow button, icon, Like, like, likes, like button, My Page button, nice fb like button, nice facebook button, nice fb button, simple fb plugin, simple facebook plugin, social plugin, social plugins, Share, share button, social, social account, social button, wp plugin, wp social plugin, wordpress social plugin
|
5 |
+
Requires at least: 3.8
|
6 |
+
Tested up to: 4.3.1
|
7 |
+
Stable tag: 2.44
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
+
Facebook Button plugin allows you to add a Follow button the easiest way. If your life is tightly connected with your Facebook account, our plugin is the best solution for you. It contains minimum settings. Just a few clicks and voila - Facebook Button is on your site.
|
16 |
|
17 |
http://www.youtube.com/watch?v=QGv04uHVl5c
|
18 |
|
19 |
+
<a href="http://www.youtube.com/watch?v=pAKsQPz3RZc" target="_blank">Facebook Button by BestWebSoft Video instruction on Installation</a>
|
20 |
|
21 |
+
<a href="http://wordpress.org/plugins/facebook-button-plugin/faq/" target="_blank">Facebook Button by BestWebSoft FAQ</a>
|
22 |
|
23 |
+
<a href="http://support.bestwebsoft.com" target="_blank">Facebook Button by BestWebSoft Support</a>
|
24 |
|
25 |
+
<a href="http://bestwebsoft.com/products/facebook-like-button/?k=4caab51af6593e97ad1e329fe0f53072" target="_blank">Upgrade to Facebook Button Pro by BestWebSoft</a>
|
26 |
|
27 |
= Features =
|
28 |
|
29 |
+
* Add Facebook buttons in the easiest way (Follow button, Like button and Share button).
|
30 |
+
* Show or hide faces.
|
31 |
+
* Choose button layout for "Like" and "Share".
|
32 |
+
* Choose color scheme for around text.
|
33 |
+
* Choose "Like" button action - "Like" or "Recommend".
|
34 |
+
* Select the button position: before the content, after, before and after, or using a shortcode.
|
35 |
* Use a standard image or replace it with some other image.
|
36 |
* Use the current site language for Facebook Buttons (Using <a href="http://bestwebsoft.com/products/multilanguage/" target="_blank">Multilanguage by BestWebSoft</a>)
|
37 |
|
38 |
= Recommended Plugins =
|
39 |
|
40 |
+
The author of Facebook Button also recommends the following plugins:
|
41 |
|
42 |
* <a href="http://wordpress.org/plugins/updater/">Updater</a> - This plugin updates WordPress core and the plugins to the recent versions. You can also use the auto mode or manual mode for updating and set email notifications.
|
43 |
There is also a premium version of the plugin <a href="http://bestwebsoft.com/products/updater/?k=5019f1216fc048f1419fe4645da69381">Updater Pro</a> with more useful features available. It can make backup of all your files and database before updating. Also it can forbid some plugins or WordPress Core update.
|
67 |
2. Activate the plugin via the 'Plugins' menu in your WordPress admin panel.
|
68 |
3. You can adjust the necessary settings in your WordPress admin panel - "Settings" > "Facebook Button".
|
69 |
|
70 |
+
<a href="https://docs.google.com/document/d/1LDmKKxLHq0GavaGcevj4g-8SjLcYPruSKg5Kos9plxM/edit" target="_blank">View a Step-by-step Instruction on Facebook Button by BestWebSoft Installation</a>.
|
71 |
|
72 |
http://www.youtube.com/watch?v=pAKsQPz3RZc
|
73 |
|
75 |
|
76 |
= I cannot see Facebook Button icon in the post after the plugin installation =
|
77 |
|
78 |
+
In WordPress admin panel, please go to "Plugins", find "Facebook Button by BestWebSoft" and click "Activate".
|
79 |
|
80 |
= After clicking Facebook Button icon I see the Facebook Home page instead of the necessary account page =
|
81 |
|
107 |
|
108 |
== Screenshots ==
|
109 |
|
110 |
+
1. Plugin settings page.
|
111 |
+
2. Displaying Facebook Button before your post.
|
112 |
3. Displaying Facebook Button in your post via the shortcode.
|
113 |
|
114 |
== Changelog ==
|
115 |
|
116 |
+
= V2.44 - 21.10.2015 =
|
117 |
+
* NEW : We added 'Show Faces' option.
|
118 |
+
* NEW : We added 'Button layout' option.
|
119 |
+
* NEW : We added 'Layout width' option.
|
120 |
+
* NEW : We added 'Like button action' option.
|
121 |
+
* NEW : We added 'Color scheme' option.
|
122 |
+
* Update : Textdomain was changed.
|
123 |
+
* Update : We updated all functionality for wordpress 4.3.1.
|
124 |
+
|
125 |
= V2.43 - 26.08.2015 =
|
126 |
+
* NEW : Option to display the button in excerpt.
|
127 |
|
128 |
= V2.42 - 24.08.2015 =
|
129 |
* Update : We added buttons displaying for the excerpt.
|
134 |
* Bugfix : We fixed the 'share' button displaying bug (when the shortcode is used).
|
135 |
|
136 |
= V2.40 - 15.06.2015 =
|
137 |
+
* NEW : Ability to restore settings to defaults.
|
138 |
|
139 |
= V2.39 - 18.05.2015 =
|
140 |
* Update : We updated option titles on the Settings page for the convenience of users.
|
143 |
|
144 |
= V2.38 - 23.04.2015 =
|
145 |
* Update : Button styles are updated.
|
146 |
+
* NEW : The Finnish language file is added to the plugin.
|
147 |
|
148 |
= V2.37 - 31.03.2015 =
|
149 |
* Update : We updated all functionality for wordpress 4.1.1.
|
167 |
* Bugfix : Problem with showing Like button was fixed.
|
168 |
|
169 |
= V2.31 - 11.06.2014 =
|
170 |
+
* NEW : Share button was added.
|
171 |
* Update : We updated all functionality for wordpress 3.9.1.
|
172 |
* Bugfix : Problem with switching user was fixed.
|
173 |
|
179 |
* Update : Plugin tabs is added.
|
180 |
|
181 |
= V2.28 - 13.02.2014 =
|
182 |
+
* NEW : Html5 version of Like button is added.
|
183 |
* Update : Screenshots are updated.
|
184 |
* Update : BWS plugins section is updated.
|
185 |
* Update : We updated all functionality for wordpress 3.8.1.
|
297 |
|
298 |
== Upgrade Notice ==
|
299 |
|
300 |
+
= V2.44 =
|
301 |
+
We added 'Show Faces' option. We added 'Button layout' option. We added 'Layout width' option. We added 'Like button action' option. We added 'Color scheme' option. Textdomain was changed. We updated all functionality for wordpress 4.3.1.
|
302 |
+
|
303 |
= V2.43 =
|
304 |
Option to display the button in excerpt.
|
305 |
|
screenshot-1.png
CHANGED
Binary file
|
screenshot-2.png
CHANGED
Binary file
|
screenshot-3.png
CHANGED
Binary file
|