Version Description
- 14.04.2014 =
- Update : We updated all functionality for wordpress 3.8.2.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Facebook Button by BestWebSoft |
Version | 2.30 |
Comparing to | |
See all releases |
Code changes from version 2.29 to 2.30
- bws_menu/bws_menu.php +387 -618
- bws_menu/css/general_style.css +246 -0
- bws_menu/css/general_style_wp_before_3.8.css +252 -0
- bws_menu/css/style.css +1 -12
- bws_menu/icons/bws-google-analytics.png +0 -0
- bws_menu/icons/bws-google-maps.png +0 -0
- bws_menu/icons/contact-form-multi.png +0 -0
- bws_menu/icons/subscriber.png +0 -0
- {images → bws_menu/images}/icon_16.png +0 -0
- {images → bws_menu/images}/icon_16_b.png +0 -0
- {images → bws_menu/images}/icon_16_c.png +0 -0
- {images → bws_menu/images}/icon_16_single.png +0 -0
- {images → bws_menu/images}/icon_36.png +0 -0
- {images → bws_menu/images}/icon_36_b.png +0 -0
- bws_menu/images/pattern.png +0 -0
- bws_menu/images/pattern_bg.png +0 -0
- css/style.css +0 -127
- css/style_wp_before_3.8.css +0 -170
- facebook-button-plugin.php +140 -76
- languages/facebook-ar_AR.mo +0 -0
- languages/facebook-ar_AR.po +91 -82
- languages/facebook-es_ES.mo +0 -0
- languages/facebook-es_ES.po +91 -82
- languages/facebook-fa_IR.mo +0 -0
- languages/facebook-fa_IR.po +91 -82
- languages/facebook-fr_FR.mo +0 -0
- languages/facebook-fr_FR.po +91 -82
- languages/facebook-he_IL.mo +0 -0
- languages/facebook-he_IL.po +91 -82
- languages/facebook-id_ID.mo +0 -0
- languages/facebook-id_ID.po +91 -82
- languages/facebook-ru_RU.mo +0 -0
- languages/facebook-ru_RU.po +98 -83
- languages/facebook-sr_RS.mo +0 -0
- languages/facebook-sr_RS.po +91 -82
- languages/facebook-tr_TR.mo +0 -0
- languages/facebook-tr_TR.po +91 -82
- languages/facebook-uk.mo +0 -0
- languages/facebook-uk.po +91 -82
- readme.txt +15 -5
bws_menu/bws_menu.php
CHANGED
@@ -1,41 +1,17 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
-
Function for displaying BestWebSoft menu
|
|
|
4 |
*/
|
|
|
5 |
if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
6 |
function bws_add_menu_render() {
|
7 |
global $wpdb, $wpmu, $wp_version, $bws_plugin_info;
|
8 |
-
$error = '';
|
9 |
-
$message = '';
|
10 |
-
$bwsmn_form_email = '';
|
11 |
$bws_donate_link = 'https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10&product_id=13';
|
12 |
|
13 |
-
// install the option defaults
|
14 |
-
if ( 1 == $wpmu ) {
|
15 |
-
if ( !get_site_option( 'bstwbsftwppdtplgns_options' ) )
|
16 |
-
add_site_option( 'bstwbsftwppdtplgns_options', array(), '', 'yes' );
|
17 |
-
$bstwbsftwppdtplgns_options = get_site_option( 'bstwbsftwppdtplgns_options' );
|
18 |
-
} else {
|
19 |
-
if ( !get_option( 'bstwbsftwppdtplgns_options' ) )
|
20 |
-
add_option( 'bstwbsftwppdtplgns_options', array(), '', 'yes' );
|
21 |
-
$bstwbsftwppdtplgns_options = get_option( 'bstwbsftwppdtplgns_options' );
|
22 |
-
}
|
23 |
-
if ( !isset( $bstwbsftwppdtplgns_options['bws_menu_version'] ) ) {
|
24 |
-
$bstwbsftwppdtplgns_options['bws_menu_version'] = '1.1';
|
25 |
-
update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options, '', 'yes' );
|
26 |
-
}
|
27 |
-
|
28 |
-
if ( isset( $_REQUEST['bwsmn_form_submit_switch'] ) && check_admin_referer( plugin_basename(__FILE__), 'bwsmn_nonce_submit_switch' ) ) {
|
29 |
-
if ( $bstwbsftwppdtplgns_options['bws_menu_version'] == '1.1' )
|
30 |
-
$bstwbsftwppdtplgns_options['bws_menu_version'] = 'old';
|
31 |
-
else
|
32 |
-
$bstwbsftwppdtplgns_options['bws_menu_version'] = '1.1';
|
33 |
-
$bstwbsftwppdtplgns_options['bws_menu_time'] = strtotime('now');
|
34 |
-
update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options, '', 'yes' );
|
35 |
-
}
|
36 |
-
|
37 |
if ( ! function_exists( 'is_plugin_active_for_network' ) )
|
38 |
-
require_once( ABSPATH . '
|
39 |
|
40 |
$bws_plugins = array(
|
41 |
'captcha/captcha.php' => array(
|
@@ -223,6 +199,39 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
223 |
'download' => 'http://bestwebsoft.com/plugin/sender/?k=89c297d14ba85a8417a0f2fc05e089c7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#download',
|
224 |
'wp_install' => '/wp-admin/plugin-install.php?tab=search&s=Sender+Bestwebsoft&plugin-search-input=Search+Plugins',
|
225 |
'settings' => 'admin.php?page=sndr_settings'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
226 |
)
|
227 |
);
|
228 |
$bws_plugins_pro = array(
|
@@ -295,118 +304,37 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
295 |
'link' => 'http://bestwebsoft.com/plugin/pdf-print-pro/?k=fd43a0e659ddc170a9060027cbfdcc3a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
296 |
'purchase' => 'http://bestwebsoft.com/plugin/pdf-print-pro?k=fd43a0e659ddc170a9060027cbfdcc3a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#purchase',
|
297 |
'settings' => 'admin.php?page=pdf-print-pro.php'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
298 |
)
|
299 |
);
|
300 |
|
301 |
$all_plugins = get_plugins();
|
302 |
$active_plugins = get_option( 'active_plugins' );
|
303 |
|
304 |
-
|
305 |
-
|
306 |
-
$recommend_plugins = array_diff_key( $bws_plugins, $all_plugins );
|
307 |
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
}
|
312 |
}
|
|
|
313 |
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
if ( isset( $bws_plugins[ $key_plugin ] ) && isset( $bws_plugins[ $key_plugin ]['pro_version'] ) && isset( $all_plugins[ $bws_plugins[ $key_plugin ]['pro_version'] ] ) ) {
|
319 |
-
unset( $all_plugins[ $key_plugin ] );
|
320 |
-
}
|
321 |
-
}
|
322 |
-
} else {
|
323 |
-
|
324 |
-
$array_activate = array();
|
325 |
-
$array_install = array();
|
326 |
-
$array_recomend = array();
|
327 |
-
$count_activate = $count_install = $count_recomend = 0;
|
328 |
|
329 |
-
|
330 |
-
|
331 |
-
$array_activate[ $count_activate ]["title"] = $value_plugin['name'];
|
332 |
-
$array_activate[ $count_activate ]["link"] = $value_plugin['link'];
|
333 |
-
$array_activate[ $count_activate ]["href"] = $value_plugin['download'];
|
334 |
-
$array_activate[ $count_activate ]["url"] = $value_plugin['settings'];
|
335 |
-
$count_activate++;
|
336 |
-
} else if ( array_key_exists( $key_plugin, $all_plugins ) ) {
|
337 |
-
$array_install[ $count_install ]["title"] = $value_plugin['name'];
|
338 |
-
$array_install[ $count_install ]["link"] = $value_plugin['link'];
|
339 |
-
$array_install[ $count_install ]["href"] = $value_plugin['download'];
|
340 |
-
$count_install++;
|
341 |
-
} else {
|
342 |
-
$array_recomend[ $count_recomend ]["title"] = $value_plugin['name'];
|
343 |
-
$array_recomend[ $count_recomend ]["link"] = $value_plugin['link'];
|
344 |
-
$array_recomend[ $count_recomend ]["href"] = $value_plugin['download'];
|
345 |
-
$array_recomend[ $count_recomend ]["slug"] = $value_plugin['wp_install'];
|
346 |
-
$count_recomend++;
|
347 |
-
}
|
348 |
-
}
|
349 |
-
|
350 |
-
$array_activate_pro = array();
|
351 |
-
$array_install_pro = array();
|
352 |
-
$array_recomend_pro = array();
|
353 |
-
$count_activate_pro = $count_install_pro = $count_recomend_pro = 0;
|
354 |
-
foreach ( $bws_plugins_pro as $key_plugin => $value_plugin ) {
|
355 |
-
if ( in_array( $key_plugin, $active_plugins ) || is_plugin_active_for_network( $key_plugin ) ) {
|
356 |
-
$array_activate_pro[ $count_activate_pro ]["title"] = $value_plugin['name'];
|
357 |
-
$array_activate_pro[ $count_activate_pro ]["link"] = $value_plugin['link'];
|
358 |
-
$array_activate_pro[ $count_activate_pro ]["href"] = $value_plugin['purchase'];
|
359 |
-
$array_activate_pro[ $count_activate_pro ]["url"] = $value_plugin['settings'];
|
360 |
-
$count_activate_pro++;
|
361 |
-
} else if ( array_key_exists( $key_plugin, $all_plugins ) ) {
|
362 |
-
$array_install_pro[ $count_install_pro ]["title"] = $value_plugin['name'];
|
363 |
-
$array_install_pro[ $count_install_pro ]["link"] = $value_plugin['link'];
|
364 |
-
$array_install_pro[ $count_install_pro ]["href"] = $value_plugin['purchase'];
|
365 |
-
$count_install_pro++;
|
366 |
-
} else {
|
367 |
-
$array_recomend_pro[ $count_recomend_pro ]["title"] = $value_plugin['name'];
|
368 |
-
$array_recomend_pro[ $count_recomend_pro ]["link"] = $value_plugin['link'];
|
369 |
-
$array_recomend_pro[ $count_recomend_pro ]["href"] = $value_plugin['purchase'];
|
370 |
-
$count_recomend_pro++;
|
371 |
-
}
|
372 |
-
}
|
373 |
-
if ( $wp_version >= '3.4' ) {
|
374 |
-
$wp_list_table = _get_list_table( 'WP_Themes_List_Table' );
|
375 |
-
$wp_list_table->prepare_items();
|
376 |
-
$current_theme = wp_get_theme();
|
377 |
-
$array_activate_theme = array();
|
378 |
-
$array_install_theme = array();
|
379 |
-
$array_recomend_theme = array();
|
380 |
-
$count_activate_theme = $count_install_theme = $count_recomend_theme = 0;
|
381 |
-
$array_theme = array(
|
382 |
-
array( 'central', 'Central', 'http://bestwebsoft.com/theme/central/?k=77c0199aabdb1f601a0504e312bee220&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version, 'http://bestwebsoft.com/theme/central/?k=77c0199aabdb1f601a0504e312bee220&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#download', '/wp-admin/theme-install.php?tab=search&s=Central&search=Search' ),
|
383 |
-
array( 'simple-classic', 'Simple Classic', 'http://bestwebsoft.com/theme/simple-classic/?k=b3990bfc85125747f48ece9f011f4cde&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version, 'http://bestwebsoft.com/theme/simple-classic/?k=b3990bfc85125747f48ece9f011f4cde&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#download', '/wp-admin/theme-install.php?tab=search&type=term&s=Simple+Classic&search=Search' ),
|
384 |
-
array( 'reddish', 'Reddish', 'http://bestwebsoft.com/theme/reddish/?k=1ea187e3fd401fd278e23a333abaf4f6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version, 'http://bestwebsoft.com/theme/reddish/?k=1ea187e3fd401fd278e23a333abaf4f6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#download', '/wp-admin/theme-install.php?tab=search&type=term&s=reddish&search=Search' ),
|
385 |
-
array( 'wordpost', 'Wordpost', 'http://bestwebsoft.com/theme/wordpost/?k=f0fc8c98135c9657751224562aca7a55&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version, 'http://bestwebsoft.com/theme/wordpost/?k=f0fc8c98135c9657751224562aca7a55&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#download', '/wp-admin/theme-install.php?tab=search&type=term&s=Wordpost&search=Search' )
|
386 |
-
);
|
387 |
-
foreach ( $array_theme as $theme ) {
|
388 |
-
if ( $current_theme->get( 'Name' ) == $theme[1] ) {
|
389 |
-
$array_activate_theme[ $count_activate_theme ]["title"] = $theme[1];
|
390 |
-
$array_activate_theme[ $count_activate_theme ]["link"] = $theme[2];
|
391 |
-
$array_activate_theme[ $count_activate_theme ]["href"] = $theme[3];
|
392 |
-
$count_activate_theme++;
|
393 |
-
} elseif ( array_key_exists( $theme[0], $wp_list_table->items ) ) {
|
394 |
-
$array_install_theme[ $count_install_theme ]["title"] = $theme[1];
|
395 |
-
$array_install_theme[ $count_install_theme ]["link"] = $theme[2];
|
396 |
-
$array_install_theme[ $count_install_theme ]["href"] = $theme[3];
|
397 |
-
$count_install_theme++;
|
398 |
-
} else {
|
399 |
-
$array_recomend_theme[ $count_recomend_theme ]["title"] = $theme[1];
|
400 |
-
$array_recomend_theme[ $count_recomend_theme ]["link"] = $theme[2];
|
401 |
-
$array_recomend_theme[ $count_recomend_theme ]["href"] = $theme[3];
|
402 |
-
$array_recomend_theme[ $count_recomend_theme ]["slug"] = $theme[4];
|
403 |
-
$count_recomend_theme++;
|
404 |
-
}
|
405 |
-
}
|
406 |
}
|
407 |
}
|
408 |
|
409 |
-
if (
|
410 |
$all_plugins = get_plugins();
|
411 |
$active_plugins = get_option( 'active_plugins' );
|
412 |
$sql_version = $wpdb->get_var( "SELECT VERSION() AS version" );
|
@@ -556,523 +484,359 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
556 |
$error = __( "Sorry, email message could not be delivered.", 'bestwebsoft' );
|
557 |
}
|
558 |
}
|
559 |
-
|
560 |
?>
|
561 |
<div class="wrap">
|
562 |
<div class="icon32 icon32-bws" id="icon-options-general"></div>
|
563 |
-
<h2>
|
564 |
-
<
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
<input type="submit" class="bws_switch_link" value="<?php _e( 'Switch to new interface', 'bestwebsoft' ) ?>" />
|
569 |
-
<?php wp_nonce_field( plugin_basename(__FILE__), 'bwsmn_nonce_submit_switch' ); ?>
|
570 |
-
</form>
|
571 |
-
</h2>
|
572 |
-
<div class="clear"></div>
|
573 |
-
<div class="updated fade" <?php if ( ! ( isset( $_REQUEST['bwsmn_form_submit'] ) || isset( $_REQUEST['bwsmn_form_submit_custom_email'] ) ) || $error != "" ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
|
574 |
-
<div class="error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
|
575 |
-
<h3 style="color: blue;"><?php _e( 'Pro plugins', 'bestwebsoft' ); ?></h3>
|
576 |
-
<?php if ( 0 < $count_activate_pro ) { ?>
|
577 |
-
<div style="padding-left:15px;">
|
578 |
-
<h4><?php _e( 'Activated plugins', 'bestwebsoft' ); ?></h4>
|
579 |
-
<?php foreach ( $array_activate_pro as $activate_plugin ) { ?>
|
580 |
-
<div style="float:left; width:200px;"><?php echo $activate_plugin["title"]; ?></div> <p><a href="<?php echo $activate_plugin["link"]; ?>" target="_blank"><?php echo __( "Read more", 'bestwebsoft' ); ?></a> <a href="<?php echo $activate_plugin["url"]; ?>"><?php echo __( "Settings", 'bestwebsoft' ); ?></a></p>
|
581 |
-
<?php } ?>
|
582 |
-
</div>
|
583 |
-
<?php } ?>
|
584 |
-
<?php if ( 0 < $count_install_pro ) { ?>
|
585 |
-
<div style="padding-left:15px;">
|
586 |
-
<h4><?php _e( 'Installed plugins', 'bestwebsoft' ); ?></h4>
|
587 |
-
<?php foreach ( $array_install_pro as $install_plugin) { ?>
|
588 |
-
<div style="float:left; width:200px;"><?php echo $install_plugin["title"]; ?></div> <p><a href="<?php echo $install_plugin["link"]; ?>" target="_blank"><?php echo __( "Read more", 'bestwebsoft' ); ?></a></p>
|
589 |
-
<?php } ?>
|
590 |
-
</div>
|
591 |
-
<?php } ?>
|
592 |
-
<?php if ( 0 < $count_recomend_pro ) { ?>
|
593 |
-
<div style="padding-left:15px;">
|
594 |
-
<h4><?php _e( 'Recommended plugins', 'bestwebsoft' ); ?></h4>
|
595 |
-
<?php foreach ( $array_recomend_pro as $recomend_plugin ) { ?>
|
596 |
-
<div style="float:left; width:200px;"><?php echo $recomend_plugin["title"]; ?></div> <p><a href="<?php echo $recomend_plugin["link"]; ?>" target="_blank"><?php echo __( "Read more", 'bestwebsoft' ); ?></a> <a href="<?php echo $recomend_plugin["href"]; ?>" target="_blank"><?php echo __( "Purchase", 'bestwebsoft' ); ?></a></p>
|
597 |
-
<?php } ?>
|
598 |
-
</div>
|
599 |
-
<?php } ?>
|
600 |
-
<br />
|
601 |
-
<h3 style="color: green"><?php _e( 'Free plugins', 'bestwebsoft' ); ?></h3>
|
602 |
-
<?php if ( 0 < $count_activate ) { ?>
|
603 |
-
<div style="padding-left:15px;">
|
604 |
-
<h4><?php _e( 'Activated plugins', 'bestwebsoft' ); ?></h4>
|
605 |
-
<?php foreach ( $array_activate as $activate_plugin ) { ?>
|
606 |
-
<div style="float:left; width:200px;"><?php echo $activate_plugin["title"]; ?></div> <p><a href="<?php echo $activate_plugin["link"]; ?>" target="_blank"><?php echo __( "Read more", 'bestwebsoft' ); ?></a> <a href="<?php echo $activate_plugin["url"]; ?>"><?php echo __( "Settings", 'bestwebsoft' ); ?></a></p>
|
607 |
-
<?php } ?>
|
608 |
-
</div>
|
609 |
-
<?php } ?>
|
610 |
-
<?php if ( 0 < $count_install ) { ?>
|
611 |
-
<div style="padding-left:15px;">
|
612 |
-
<h4><?php _e( 'Installed plugins', 'bestwebsoft' ); ?></h4>
|
613 |
-
<?php foreach ( $array_install as $install_plugin ) { ?>
|
614 |
-
<div style="float:left; width:200px;"><?php echo $install_plugin["title"]; ?></div> <p><a href="<?php echo $install_plugin["link"]; ?>" target="_blank"><?php echo __( "Read more", 'bestwebsoft' ); ?></a></p>
|
615 |
-
<?php } ?>
|
616 |
-
</div>
|
617 |
<?php } ?>
|
618 |
-
<?php if (
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
<
|
623 |
-
<?php
|
624 |
-
|
625 |
-
|
626 |
-
<
|
627 |
-
<?php if ( $
|
628 |
-
<
|
629 |
-
<?php
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
<?php foreach ( $array_install_theme as $install_theme ) { ?>
|
639 |
-
<div style="float:left; width:200px;"><?php echo $install_theme["title"]; ?></div> <p><a href="<?php echo $install_theme["link"]; ?>" target="_blank"><?php echo __( "Read more", 'bestwebsoft' ); ?></a></p>
|
640 |
-
<?php } ?>
|
641 |
-
</div>
|
642 |
-
<?php } ?>
|
643 |
-
<?php if ( 0 < $count_recomend_theme ) { ?>
|
644 |
-
<div style="padding-left:15px;">
|
645 |
-
<h4><?php _e( 'Recommended themes', 'bestwebsoft' ); ?></h4>
|
646 |
-
<?php foreach ( $array_recomend_theme as $recomend_theme ) { ?>
|
647 |
-
<div style="float:left; width:200px;"><?php echo $recomend_theme["title"]; ?></div> <p><a href="<?php echo $recomend_theme["link"]; ?>" target="_blank"><?php echo __( "Read more", 'bestwebsoft' ); ?></a> <a href="<?php echo $recomend_theme["href"]; ?>" target="_blank"><?php echo __( "Download", 'bestwebsoft' ); ?></a> <a class="install-now" href="<?php echo get_bloginfo( "url" ) . $recomend_theme["slug"]; ?>" title="<?php esc_attr( sprintf( __( 'Install %s' ), $recomend_theme["title"] ) ) ?>" target="_blank"><?php echo __( 'Install now from wordpress.org', 'bestwebsoft' ) ?></a></p>
|
648 |
-
<?php } ?>
|
649 |
-
</div>
|
650 |
-
<?php } ?>
|
651 |
-
<br />
|
652 |
-
<?php } ?>
|
653 |
-
<span style="color: rgb(136, 136, 136); font-size: 10px;"><?php _e( 'If you have any questions, please contact us via', 'bestwebsoft' ); ?> <a href="http://support.bestwebsoft.com">http://support.bestwebsoft.com</a></span>
|
654 |
-
<div id="poststuff" class="bws_system_info_meta_box">
|
655 |
-
<div class="postbox">
|
656 |
-
<div class="handlediv" title="Click to toggle">
|
657 |
-
<br>
|
658 |
-
</div>
|
659 |
-
<h3 class="hndle">
|
660 |
-
<span><?php _e( 'System status', 'bestwebsoft' ); ?></span>
|
661 |
-
</h3>
|
662 |
-
<div class="inside">
|
663 |
-
<table class="bws_system_info">
|
664 |
-
<thead><tr><th><?php _e( 'Environment', 'bestwebsoft' ); ?></th><td></td></tr></thead>
|
665 |
-
<tbody>
|
666 |
-
<?php foreach ( $system_info['system_info'] as $key => $value ) { ?>
|
667 |
-
<tr>
|
668 |
-
<td scope="row"><?php echo $key; ?></td>
|
669 |
-
<td scope="row"><?php echo $value; ?></td>
|
670 |
-
</tr>
|
671 |
-
<?php } ?>
|
672 |
-
</tbody>
|
673 |
-
</table>
|
674 |
-
<table class="bws_system_info">
|
675 |
-
<thead><tr><th><?php _e( 'Active Plugins', 'bestwebsoft' ); ?></th><th></th></tr></thead>
|
676 |
-
<tbody>
|
677 |
-
<?php foreach ( $system_info['active_plugins'] as $key => $value ) { ?>
|
678 |
-
<tr>
|
679 |
-
<td scope="row"><?php echo $key; ?></td>
|
680 |
-
<td scope="row"><?php echo $value; ?></td>
|
681 |
-
</tr>
|
682 |
-
<?php } ?>
|
683 |
-
</tbody>
|
684 |
-
</table>
|
685 |
-
<table class="bws_system_info">
|
686 |
-
<thead><tr><th><?php _e( 'Inactive Plugins', 'bestwebsoft' ); ?></th><th></th></tr></thead>
|
687 |
-
<tbody>
|
688 |
-
<?php
|
689 |
-
if ( ! empty( $system_info['inactive_plugins'] ) ) {
|
690 |
-
foreach ( $system_info['inactive_plugins'] as $key => $value ) { ?>
|
691 |
-
<tr>
|
692 |
-
<td scope="row"><?php echo $key; ?></td>
|
693 |
-
<td scope="row"><?php echo $value; ?></td>
|
694 |
-
</tr>
|
695 |
-
<?php }
|
696 |
-
} ?>
|
697 |
-
</tbody>
|
698 |
-
</table>
|
699 |
-
<div class="clear"></div>
|
700 |
-
<form method="post" action="admin.php?page=bws_plugins">
|
701 |
-
<p>
|
702 |
-
<input type="hidden" name="bwsmn_form_submit" value="submit" />
|
703 |
-
<input type="submit" class="button-primary" value="<?php _e( 'Send to support', 'bestwebsoft' ) ?>" />
|
704 |
-
<?php wp_nonce_field( plugin_basename(__FILE__), 'bwsmn_nonce_submit' ); ?>
|
705 |
-
</p>
|
706 |
-
</form>
|
707 |
-
<form method="post" action="admin.php?page=bws_plugins">
|
708 |
-
<p>
|
709 |
-
<input type="hidden" name="bwsmn_form_submit_custom_email" value="submit" />
|
710 |
-
<input type="submit" class="button" value="<?php _e( 'Send to custom email »', 'bestwebsoft' ) ?>" />
|
711 |
-
<input type="text" value="<?php echo $bwsmn_form_email; ?>" name="bwsmn_form_email" />
|
712 |
-
<?php wp_nonce_field( plugin_basename(__FILE__), 'bwsmn_nonce_submit_custom_email' ); ?>
|
713 |
-
</p>
|
714 |
-
</form>
|
715 |
-
</div>
|
716 |
-
</div>
|
717 |
-
</div>
|
718 |
-
<?php } else { ?>
|
719 |
-
<form method="post" action="admin.php?page=bws_plugins">
|
720 |
-
<input type="hidden" name="bwsmn_form_submit_switch" value="submit" />
|
721 |
-
<input type="submit" class="bws_switch_link" value="<?php _e( 'Switch to old interface', 'bestwebsoft' ) ?>" />
|
722 |
-
<?php wp_nonce_field( plugin_basename(__FILE__), 'bwsmn_nonce_submit_switch' ); ?>
|
723 |
-
</form>
|
724 |
-
</h2>
|
725 |
-
<div class="clear"></div>
|
726 |
-
<h2 class="nav-tab-wrapper">
|
727 |
-
<a class="nav-tab<?php if ( !isset( $_GET['action'] ) ) echo ' nav-tab-active'; ?>" href="admin.php?page=bws_plugins"><?php _e( 'Plugins', 'bestwebsoft' ); ?></a>
|
728 |
-
<?php if ( $wp_version >= '3.4' ) { ?>
|
729 |
-
<a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'themes' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=bws_plugins&action=themes"><?php _e( 'Themes', 'bestwebsoft' ); ?></a>
|
730 |
-
<?php } ?>
|
731 |
-
<a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'system_status' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=bws_plugins&action=system_status"><?php _e( 'System status', 'bestwebsoft' ); ?></a>
|
732 |
-
</h2>
|
733 |
-
<?php if ( !isset( $_GET['action'] ) ) { ?>
|
734 |
-
<ul class="subsubsub">
|
735 |
-
<li><a <?php if ( !isset( $_GET['sub'] ) ) echo 'class="current" '; ?>href="admin.php?page=bws_plugins"><?php _e( 'All', 'bestwebsoft' ); ?></a></li> |
|
736 |
-
<li><a <?php if ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] ) echo 'class="current" '; ?>href="admin.php?page=bws_plugins&sub=installed"><?php _e( 'Installed', 'bestwebsoft' ); ?></a></li> |
|
737 |
-
<li><a <?php if ( isset( $_GET['sub'] ) && 'recommended' == $_GET['sub'] ) echo 'class="current" '; ?>href="admin.php?page=bws_plugins&sub=recommended"><?php _e( 'Recommended', 'bestwebsoft' ); ?></a></li>
|
738 |
-
</ul>
|
739 |
-
<div class="clear"></div>
|
740 |
-
<?php if ( ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] ) || !isset( $_GET['sub'] ) ) { ?>
|
741 |
-
<h4 class="bws_installed"><?php _e( 'Installed plugins', 'bestwebsoft' ); ?></h4>
|
742 |
-
<?php foreach ( $all_plugins as $key_plugin => $value_plugin ) {
|
743 |
-
|
744 |
-
if ( isset( $bws_plugins_pro[ $key_plugin ] ) ) {
|
745 |
-
$key_plugin_explode = explode( '-plugin-pro/', $key_plugin );
|
746 |
-
if ( isset( $key_plugin_explode[1] ) )
|
747 |
-
$icon = $key_plugin_explode[0];
|
748 |
-
else {
|
749 |
-
$key_plugin_explode = explode( '-pro/', $key_plugin );
|
750 |
-
$icon = $key_plugin_explode[0];
|
751 |
-
}
|
752 |
-
} elseif ( isset( $bws_plugins[ $key_plugin ] ) ) {
|
753 |
-
$key_plugin_explode = explode( '-plugin/', $key_plugin );
|
754 |
-
if ( isset( $key_plugin_explode[1] ) )
|
755 |
-
$icon = $key_plugin_explode[0];
|
756 |
-
else {
|
757 |
-
$key_plugin_explode = explode( '/', $key_plugin );
|
758 |
-
$icon = $key_plugin_explode[0];
|
759 |
-
}
|
760 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
761 |
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
</div>
|
774 |
-
<div class="clear"></div>
|
775 |
-
</div>
|
776 |
-
<div class="bws_product_links">
|
777 |
-
<a href="<?php echo $bws_plugins_pro[ $key_plugin ]["link"]; ?>" target="_blank"><?php _e( "Learn more", 'bestwebsoft' ); ?></a>
|
778 |
-
<span> | </span>
|
779 |
-
<a href="<?php echo $bws_plugins_pro[ $key_plugin ]["settings"]; ?>" target="_blank"><?php _e( "Settings", 'bestwebsoft' ); ?></a>
|
780 |
</div>
|
|
|
781 |
</div>
|
782 |
-
|
783 |
-
|
784 |
-
<
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
|
|
|
|
|
|
|
|
791 |
</div>
|
792 |
-
|
793 |
-
<a class="bws_product_button" href="<?php echo $bws_plugins_pro[ $bws_plugins[ $key_plugin ]['pro_version'] ]["purchase"]; ?>" target="_blank">
|
794 |
-
<?php _e( 'Go', 'bestwebsoft' );?> <strong>PRO</strong>
|
795 |
-
</a>
|
796 |
-
<?php } else { ?>
|
797 |
-
<a class="bws_product_button bws_donate_button" href="<?php echo $bws_donate_link; ?>" target="_blank">
|
798 |
-
<strong><?php _e( 'DONATE', 'bestwebsoft' );?></strong>
|
799 |
-
</a>
|
800 |
-
<?php } ?>
|
801 |
-
<div class="clear"></div>
|
802 |
-
</div>
|
803 |
-
<div class="bws_product_links">
|
804 |
-
<a href="<?php echo $bws_plugins[ $key_plugin ]["link"]; ?>" target="_blank"><?php _e( "Learn more", 'bestwebsoft' ); ?></a>
|
805 |
-
<span> | </span>
|
806 |
-
<a href="<?php echo $bws_plugins[ $key_plugin ]["settings"]; ?>" target="_blank"><?php _e( "Settings", 'bestwebsoft' ); ?></a>
|
807 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
808 |
</div>
|
809 |
-
|
810 |
-
}
|
811 |
-
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
<div class="bws_product_description"><?php echo $bws_plugins_pro[ $key_plugin ]["description"]; ?></div>
|
821 |
</div>
|
822 |
-
<div class="
|
823 |
-
</div>
|
824 |
-
<div class="bws_product_links">
|
825 |
-
<a href="<?php echo $bws_plugins_pro[ $key_plugin ]["link"]; ?>" target="_blank"><?php _e( "Learn more", 'bestwebsoft' ); ?></a>
|
826 |
-
<span> | </span>
|
827 |
-
<a class="bws_activate" href="plugins.php" title="<?php _e( "Activate this plugin", 'bestwebsoft' ); ?>" target="_blank"><?php _e( "Activate", 'bestwebsoft' ); ?></a>
|
828 |
</div>
|
|
|
829 |
</div>
|
830 |
-
|
831 |
-
|
832 |
-
<
|
833 |
-
|
834 |
-
|
835 |
-
|
836 |
-
|
837 |
-
|
838 |
-
|
|
|
|
|
|
|
|
|
839 |
</div>
|
840 |
-
|
841 |
-
<a class="bws_product_button" href="<?php echo $bws_plugins_pro[ $bws_plugins[ $key_plugin ]['pro_version'] ]["purchase"]; ?>" target="_blank">
|
842 |
-
<?php _e( 'Go', 'bestwebsoft' );?> <strong>PRO</strong>
|
843 |
-
</a>
|
844 |
-
<?php } else { ?>
|
845 |
-
<a class="bws_product_button bws_donate_button" href="<?php echo $bws_donate_link; ?>" target="_blank">
|
846 |
-
<strong><?php _e( 'DONATE', 'bestwebsoft' );?></strong>
|
847 |
-
</a>
|
848 |
-
<?php } ?>
|
849 |
-
<div class="clear"></div>
|
850 |
-
</div>
|
851 |
-
<div class="bws_product_links">
|
852 |
-
<a href="<?php echo $bws_plugins[ $key_plugin ]["link"]; ?>" target="_blank"><?php _e( "Learn more", 'bestwebsoft' ); ?></a>
|
853 |
-
<span> | </span>
|
854 |
-
<a class="bws_activate" href="plugins.php" title="<?php _e( "Activate this plugin", 'bestwebsoft' ); ?>" target="_blank"><?php _e( "Activate", 'bestwebsoft' ); ?></a>
|
855 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
856 |
</div>
|
857 |
-
|
858 |
-
|
|
|
|
|
|
|
|
|
|
|
859 |
}
|
860 |
-
}
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
} elseif ( isset( $bws_plugins[ $key_plugin ] ) ) {
|
875 |
-
$key_plugin_explode = explode( '-plugin/', $key_plugin );
|
876 |
-
if ( isset( $key_plugin_explode[1] ) )
|
877 |
-
$icon = $key_plugin_explode[0];
|
878 |
-
else {
|
879 |
-
$key_plugin_explode = explode( '/', $key_plugin );
|
880 |
-
$icon = $key_plugin_explode[0];
|
881 |
-
}
|
882 |
}
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
895 |
</div>
|
896 |
-
|
897 |
-
<a class="bws_product_button" href="<?php echo $bws_plugins_pro[ $bws_plugins[ $key_plugin ]['pro_version'] ]["link"]; ?>" target="_blank">
|
898 |
-
<?php echo _e( 'Go', 'bestwebsoft' );?> <strong>PRO</strong>
|
899 |
-
</a>
|
900 |
-
<?php } else { ?>
|
901 |
-
<a class="bws_product_button bws_donate_button" href="<?php echo $bws_donate_link; ?>" target="_blank">
|
902 |
-
<strong><?php echo _e( 'DONATE', 'bestwebsoft' );?></strong>
|
903 |
-
</a>
|
904 |
-
<?php } ?>
|
905 |
-
</div>
|
906 |
-
<div class="clear"></div>
|
907 |
-
<div class="bws_product_links">
|
908 |
-
<a href="<?php echo $bws_plugins[ $key_plugin ]["link"]; ?>" target="_blank"><?php echo __( "Learn more", 'bestwebsoft' ); ?></a>
|
909 |
-
<span> | </span>
|
910 |
-
<a href="<?php echo $bws_plugins[ $key_plugin ]["wp_install"]; ?>" target="_blank"><?php echo __( "Install now", 'bestwebsoft' ); ?></a>
|
911 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
912 |
</div>
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
917 |
<?php
|
918 |
-
|
919 |
-
|
920 |
-
include( ABSPATH . 'wp-admin/includes/class-wp-themes-list-table.php' );
|
921 |
-
include( ABSPATH . 'wp-admin/includes/class-wp-theme-install-list-table.php' );
|
922 |
-
|
923 |
-
$theme_class = new WP_Theme_Install_List_Table();
|
924 |
-
$paged = $theme_class->get_pagenum();
|
925 |
-
$per_page = 36;
|
926 |
-
$args = array( 'page' => $paged, 'per_page' => $per_page, 'fields' => $theme_field_defaults );
|
927 |
-
$args['author'] = 'bestwebsoft';
|
928 |
-
$args = apply_filters( 'install_themes_table_api_args_search', $args );
|
929 |
-
$api = themes_api( 'query_themes', $args );
|
930 |
-
|
931 |
-
if ( is_wp_error( $api ) )
|
932 |
-
wp_die( $api->get_error_message() . '</p> <p><a href="#" onclick="document.location.reload(); return false;">' . __( 'Try again' ) . '</a>' );
|
933 |
-
|
934 |
-
$theme_class->items = $api->themes;
|
935 |
-
$theme_class->set_pagination_args( array(
|
936 |
-
'total_items' => $api->info['results'],
|
937 |
-
'per_page' => $per_page,
|
938 |
-
'infinite_scroll' => true,
|
939 |
-
) );
|
940 |
-
$themes = $theme_class->items;
|
941 |
-
foreach ( $themes as $theme ) {
|
942 |
-
?><div class="available-theme installable-theme"><?php
|
943 |
-
global $themes_allowedtags;
|
944 |
-
if ( empty( $theme ) )
|
945 |
-
return;
|
946 |
-
|
947 |
-
$name = wp_kses( $theme->name, $themes_allowedtags );
|
948 |
-
$author = wp_kses( $theme->author, $themes_allowedtags );
|
949 |
-
$preview_title = sprintf( __('Preview “%s”'), $name );
|
950 |
-
$preview_url = add_query_arg( array(
|
951 |
-
'tab' => 'theme-information',
|
952 |
-
'theme' => $theme->slug,
|
953 |
-
), self_admin_url( 'theme-install.php' ) );
|
954 |
-
|
955 |
-
$actions = array();
|
956 |
-
|
957 |
-
$install_url = add_query_arg( array(
|
958 |
-
'action' => 'install-theme',
|
959 |
-
'theme' => $theme->slug,
|
960 |
-
), self_admin_url( 'update.php' ) );
|
961 |
-
|
962 |
-
$update_url = add_query_arg( array(
|
963 |
-
'action' => 'upgrade-theme',
|
964 |
-
'theme' => $theme->slug,
|
965 |
-
), self_admin_url( 'update.php' ) );
|
966 |
-
|
967 |
-
$status = 'install';
|
968 |
-
$installed_theme = wp_get_theme( $theme->slug );
|
969 |
-
if ( $installed_theme->exists() ) {
|
970 |
-
if ( version_compare( $installed_theme->get('Version'), $theme->version, '=' ) )
|
971 |
-
$status = 'latest_installed';
|
972 |
-
elseif ( version_compare( $installed_theme->get('Version'), $theme->version, '>' ) )
|
973 |
-
$status = 'newer_installed';
|
974 |
-
else
|
975 |
-
$status = 'update_available';
|
976 |
-
}
|
977 |
-
switch ( $status ) {
|
978 |
-
default:
|
979 |
-
case 'install':
|
980 |
-
$actions[] = '<a class="install-now" href="' . esc_url( wp_nonce_url( $install_url, 'install-theme_' . $theme->slug ) ) . '" title="' . esc_attr( sprintf( __( 'Install %s' ), $name ) ) . '">' . __( 'Install Now' ) . '</a>';
|
981 |
-
break;
|
982 |
-
case 'update_available':
|
983 |
-
$actions[] = '<a class="install-now" href="' . esc_url( wp_nonce_url( $update_url, 'upgrade-theme_' . $theme->slug ) ) . '" title="' . esc_attr( sprintf( __( 'Update to version %s' ), $theme->version ) ) . '">' . __( 'Update' ) . '</a>';
|
984 |
-
break;
|
985 |
-
case 'newer_installed':
|
986 |
-
case 'latest_installed':
|
987 |
-
$actions[] = '<span class="install-now" title="' . esc_attr__( 'This theme is already installed and is up to date' ) . '">' . _x( 'Installed', 'theme' ) . '</span>';
|
988 |
-
break;
|
989 |
-
}
|
990 |
-
$actions[] = '<a class="install-theme-preview" href="' . esc_url( $preview_url ) . '" title="' . esc_attr( sprintf( __( 'Preview %s' ), $name ) ) . '">' . __( 'Preview' ) . '</a>';
|
991 |
-
$actions = apply_filters( 'theme_install_actions', $actions, $theme );
|
992 |
-
?>
|
993 |
-
<a class="screenshot install-theme-preview" href="<?php echo esc_url( $preview_url ); ?>" title="<?php echo esc_attr( $preview_title ); ?>">
|
994 |
-
<img src='<?php echo esc_url( $theme->screenshot_url ); ?>' width='150' />
|
995 |
-
</a>
|
996 |
-
<h3><?php echo $name; ?></h3>
|
997 |
-
<div class="theme-author"><?php printf( __( 'By %s' ), $author ); ?></div>
|
998 |
-
<div class="action-links">
|
999 |
-
<ul>
|
1000 |
-
<?php foreach ( $actions as $action ): ?>
|
1001 |
-
<li><?php echo $action; ?></li>
|
1002 |
-
<?php endforeach; ?>
|
1003 |
-
<li class="hide-if-no-js"><a href="#" class="theme-detail"><?php _e('Details') ?></a></li>
|
1004 |
-
</ul>
|
1005 |
-
</div>
|
1006 |
-
<?php $theme_class->install_theme_info( $theme );
|
1007 |
-
?></div>
|
1008 |
-
<?php }
|
1009 |
-
// end foreach $theme_names
|
1010 |
-
$theme_class->theme_installer();
|
1011 |
-
?>
|
1012 |
-
</div>
|
1013 |
-
<?php } elseif ( 'system_status' == $_GET['action'] ) { ?>
|
1014 |
-
<div class="updated fade" <?php if ( ! ( isset( $_REQUEST['bwsmn_form_submit'] ) || isset( $_REQUEST['bwsmn_form_submit_custom_email'] ) ) || $error != "" ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
|
1015 |
-
<div class="error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
|
1016 |
-
<h3><?php _e( 'System status', 'bestwebsoft' ); ?></h3>
|
1017 |
-
<div class="inside">
|
1018 |
-
<table class="bws_system_info">
|
1019 |
-
<thead><tr><th><?php _e( 'Environment', 'bestwebsoft' ); ?></th><td></td></tr></thead>
|
1020 |
-
<tbody>
|
1021 |
-
<?php foreach ( $system_info['system_info'] as $key => $value ) { ?>
|
1022 |
<tr>
|
1023 |
<td scope="row"><?php echo $key; ?></td>
|
1024 |
<td scope="row"><?php echo $value; ?></td>
|
1025 |
</tr>
|
1026 |
-
<?php }
|
1027 |
-
|
1028 |
-
</
|
1029 |
-
|
1030 |
-
|
1031 |
-
|
1032 |
-
|
1033 |
-
|
1034 |
-
|
1035 |
-
|
1036 |
-
|
1037 |
-
|
1038 |
-
|
1039 |
-
|
1040 |
-
|
1041 |
-
<
|
1042 |
-
<
|
1043 |
-
<?php
|
1044 |
-
|
1045 |
-
|
1046 |
-
|
1047 |
-
|
1048 |
-
<td scope="row"><?php echo $value; ?></td>
|
1049 |
-
</tr>
|
1050 |
-
<?php }
|
1051 |
-
} ?>
|
1052 |
-
</tbody>
|
1053 |
-
</table>
|
1054 |
-
<div class="clear"></div>
|
1055 |
-
<form method="post" action="admin.php?page=bws_plugins&action=system_status">
|
1056 |
-
<p>
|
1057 |
-
<input type="hidden" name="bwsmn_form_submit" value="submit" />
|
1058 |
-
<input type="submit" class="button-primary" value="<?php _e( 'Send to support', 'bestwebsoft' ) ?>" />
|
1059 |
-
<?php wp_nonce_field( plugin_basename(__FILE__), 'bwsmn_nonce_submit' ); ?>
|
1060 |
-
</p>
|
1061 |
-
</form>
|
1062 |
-
<form method="post" action="admin.php?page=bws_plugins&action=system_status">
|
1063 |
-
<p>
|
1064 |
-
<input type="hidden" name="bwsmn_form_submit_custom_email" value="submit" />
|
1065 |
-
<input type="submit" class="button" value="<?php _e( 'Send to custom email »', 'bestwebsoft' ) ?>" />
|
1066 |
-
<input type="text" value="<?php echo $bwsmn_form_email; ?>" name="bwsmn_form_email" />
|
1067 |
-
<?php wp_nonce_field( plugin_basename(__FILE__), 'bwsmn_nonce_submit_custom_email' ); ?>
|
1068 |
-
</p>
|
1069 |
-
</form>
|
1070 |
-
</div>
|
1071 |
-
<?php }
|
1072 |
-
} ?>
|
1073 |
</div>
|
1074 |
<?php }
|
1075 |
-
}
|
1076 |
|
1077 |
if ( ! function_exists ( 'bws_plugin_init' ) ) {
|
1078 |
function bws_plugin_init() {
|
@@ -1084,9 +848,14 @@ if ( ! function_exists ( 'bws_plugin_init' ) ) {
|
|
1084 |
if ( ! function_exists ( 'bws_admin_head' ) ) {
|
1085 |
function bws_admin_head() {
|
1086 |
global $wp_version;
|
|
|
|
|
|
|
|
|
|
|
1087 |
if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_plugins" ) {
|
1088 |
wp_enqueue_style( 'bws_menu_style', plugins_url( 'css/style.css', __FILE__ ) );
|
1089 |
-
wp_enqueue_script( 'bws_menu_script', plugins_url( 'js/bws_menu.js' , __FILE__ ) );
|
1090 |
if ( $wp_version >= '3.8' )
|
1091 |
wp_enqueue_script( 'theme-install' );
|
1092 |
elseif ( $wp_version >= '3.4' )
|
@@ -1095,6 +864,6 @@ if ( ! function_exists ( 'bws_admin_head' ) ) {
|
|
1095 |
}
|
1096 |
}
|
1097 |
|
1098 |
-
add_action( '
|
1099 |
add_action( 'admin_enqueue_scripts', 'bws_admin_head' );
|
1100 |
?>
|
1 |
<?php
|
2 |
/*
|
3 |
+
* Function for displaying BestWebSoft menu
|
4 |
+
* Version: 1.2.6
|
5 |
*/
|
6 |
+
|
7 |
if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
8 |
function bws_add_menu_render() {
|
9 |
global $wpdb, $wpmu, $wp_version, $bws_plugin_info;
|
10 |
+
$error = $message = $bwsmn_form_email = '';
|
|
|
|
|
11 |
$bws_donate_link = 'https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10&product_id=13';
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
if ( ! function_exists( 'is_plugin_active_for_network' ) )
|
14 |
+
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
15 |
|
16 |
$bws_plugins = array(
|
17 |
'captcha/captcha.php' => array(
|
199 |
'download' => 'http://bestwebsoft.com/plugin/sender/?k=89c297d14ba85a8417a0f2fc05e089c7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#download',
|
200 |
'wp_install' => '/wp-admin/plugin-install.php?tab=search&s=Sender+Bestwebsoft&plugin-search-input=Search+Plugins',
|
201 |
'settings' => 'admin.php?page=sndr_settings'
|
202 |
+
),
|
203 |
+
'subscriber/subscriber.php' => array(
|
204 |
+
'name' => 'Subscriber',
|
205 |
+
'description' => 'This plugin allows you to subscribe users for newsletters from your website.',
|
206 |
+
'link' => 'http://bestwebsoft.com/plugin/subscriber/?k=a4ecc1b7800bae7329fbe8b4b04e9c88&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
207 |
+
'download' => 'http://bestwebsoft.com/plugin/subscriber/?k=a4ecc1b7800bae7329fbe8b4b04e9c88&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#download',
|
208 |
+
'wp_install' => '/wp-admin/plugin-install.php?tab=search&s=Subscriber+Bestwebsoft&plugin-search-input=Search+Plugins',
|
209 |
+
'settings' => 'admin.php?page=sbscrbr_settings_page'
|
210 |
+
),
|
211 |
+
'contact-form-multi/contact-form-multi.php' => array(
|
212 |
+
'name' => 'Contact Form Multi',
|
213 |
+
'description' => 'This plugin allows you to subscribe users for newsletters from your website.',
|
214 |
+
'link' => 'http://bestwebsoft.com/plugin/contact-form-multi/?k=83cdd9e72a9f4061122ad28a67293c72&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
215 |
+
'download' => 'http://bestwebsoft.com/plugin/contact-form-multi/?k=83cdd9e72a9f4061122ad28a67293c72&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#download',
|
216 |
+
'wp_install' => '/wp-admin/plugin-install.php?tab=search&s=Contact+Form+Multi+Bestwebsoft&plugin-search-input=Search+Plugins',
|
217 |
+
'settings' => ''
|
218 |
+
),
|
219 |
+
'bws-google-maps/bws-google-maps.php' => array(
|
220 |
+
'name' => 'BestWebSoft Google Maps',
|
221 |
+
'description' => 'Easy to set up and insert Google Maps to your website.',
|
222 |
+
'link' => 'http://bestwebsoft.com/plugin/bws-google-maps/?k=d8fac412d7359ebaa4ff53b46572f9f7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
223 |
+
'download' => 'http://bestwebsoft.com/plugin/bws-google-maps/?k=d8fac412d7359ebaa4ff53b46572f9f7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#download',
|
224 |
+
'wp_install' => '/wp-admin/plugin-install.php?tab=search&s=BestWebSoft+Google+Maps&plugin-search-input=Search+Plugins',
|
225 |
+
'settings' => 'admin.php?page=bws-google-maps.php',
|
226 |
+
'pro_version' => 'bws-google-maps-pro/bws-google-maps-pro.php'
|
227 |
+
),
|
228 |
+
'bws-google-analytics/bws-google-analytics.php' => array(
|
229 |
+
'name' => 'BestWebSoft Google Analytics',
|
230 |
+
'description' => 'Allows you to retrieve basic stats from Google Analytics account and add the tracking code to your blog.',
|
231 |
+
'link' => 'http://bestwebsoft.com/plugin/bws-google-analytics/?k=261c74cad753fb279cdf5a5db63fbd43&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
232 |
+
'download' => 'http://bestwebsoft.com/plugin/bws-google-analytics/?k=261c74cad753fb279cdf5a5db63fbd43&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#download',
|
233 |
+
'wp_install' => '/wp-admin/plugin-install.php?tab=search&s=BestWebSoft+Google+Analytics&plugin-search-input=Search+Plugins',
|
234 |
+
'settings' => 'admin.php?page=bws-google-analytics.php'
|
235 |
)
|
236 |
);
|
237 |
$bws_plugins_pro = array(
|
304 |
'link' => 'http://bestwebsoft.com/plugin/pdf-print-pro/?k=fd43a0e659ddc170a9060027cbfdcc3a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
305 |
'purchase' => 'http://bestwebsoft.com/plugin/pdf-print-pro?k=fd43a0e659ddc170a9060027cbfdcc3a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#purchase',
|
306 |
'settings' => 'admin.php?page=pdf-print-pro.php'
|
307 |
+
),
|
308 |
+
'bws-google-maps-pro/bws-google-maps-pro.php' => array(
|
309 |
+
'name' => 'BestWebSoft Google Maps Pro',
|
310 |
+
'description' => 'Easy to set up and insert Google Maps to your website.',
|
311 |
+
'link' => 'http://bestwebsoft.com/plugin/bws-google-maps-pro/?k=117c3f9fc17f2c83ef430a8a9dc06f56&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
312 |
+
'purchase' => 'http://bestwebsoft.com/plugin/bws-google-maps-pro/?k=117c3f9fc17f2c83ef430a8a9dc06f56&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#purchase',
|
313 |
+
'settings' => 'admin.php?page=bws-google-maps-pro.php'
|
314 |
)
|
315 |
);
|
316 |
|
317 |
$all_plugins = get_plugins();
|
318 |
$active_plugins = get_option( 'active_plugins' );
|
319 |
|
320 |
+
$recommend_plugins = array_diff_key( $bws_plugins, $all_plugins );
|
|
|
|
|
321 |
|
322 |
+
foreach ( $bws_plugins as $key_plugin => $value_plugin ) {
|
323 |
+
if ( ! isset( $all_plugins[ $key_plugin ] ) && isset( $bws_plugins[ $key_plugin ]['pro_version'] ) && isset( $all_plugins[ $bws_plugins[ $key_plugin ]['pro_version'] ] ) ) {
|
324 |
+
unset( $recommend_plugins[ $key_plugin ] );
|
|
|
325 |
}
|
326 |
+
}
|
327 |
|
328 |
+
foreach ( $all_plugins as $key_plugin => $value_plugin ) {
|
329 |
+
if ( ! isset( $bws_plugins[ $key_plugin ] ) && ! isset( $bws_plugins_pro[ $key_plugin ] ) )
|
330 |
+
unset( $all_plugins[ $key_plugin ] );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
331 |
|
332 |
+
if ( isset( $bws_plugins[ $key_plugin ] ) && isset( $bws_plugins[ $key_plugin ]['pro_version'] ) && isset( $all_plugins[ $bws_plugins[ $key_plugin ]['pro_version'] ] ) ) {
|
333 |
+
unset( $all_plugins[ $key_plugin ] );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
334 |
}
|
335 |
}
|
336 |
|
337 |
+
if ( isset( $_GET['action'] ) && 'system_status' == $_GET['action'] ) {
|
338 |
$all_plugins = get_plugins();
|
339 |
$active_plugins = get_option( 'active_plugins' );
|
340 |
$sql_version = $wpdb->get_var( "SELECT VERSION() AS version" );
|
484 |
$error = __( "Sorry, email message could not be delivered.", 'bestwebsoft' );
|
485 |
}
|
486 |
}
|
|
|
487 |
?>
|
488 |
<div class="wrap">
|
489 |
<div class="icon32 icon32-bws" id="icon-options-general"></div>
|
490 |
+
<h2>BestWebSoft</h2>
|
491 |
+
<h2 class="nav-tab-wrapper">
|
492 |
+
<a class="nav-tab<?php if ( !isset( $_GET['action'] ) ) echo ' nav-tab-active'; ?>" href="admin.php?page=bws_plugins"><?php _e( 'Plugins', 'bestwebsoft' ); ?></a>
|
493 |
+
<?php if ( $wp_version >= '3.4' ) { ?>
|
494 |
+
<a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'themes' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=bws_plugins&action=themes"><?php _e( 'Themes', 'bestwebsoft' ); ?></a>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
495 |
<?php } ?>
|
496 |
+
<a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'system_status' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=bws_plugins&action=system_status"><?php _e( 'System status', 'bestwebsoft' ); ?></a>
|
497 |
+
</h2>
|
498 |
+
<?php if ( !isset( $_GET['action'] ) ) { ?>
|
499 |
+
<ul class="subsubsub">
|
500 |
+
<li><a <?php if ( !isset( $_GET['sub'] ) ) echo 'class="current" '; ?>href="admin.php?page=bws_plugins"><?php _e( 'All', 'bestwebsoft' ); ?></a></li> |
|
501 |
+
<li><a <?php if ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] ) echo 'class="current" '; ?>href="admin.php?page=bws_plugins&sub=installed"><?php _e( 'Installed', 'bestwebsoft' ); ?></a></li> |
|
502 |
+
<li><a <?php if ( isset( $_GET['sub'] ) && 'recommended' == $_GET['sub'] ) echo 'class="current" '; ?>href="admin.php?page=bws_plugins&sub=recommended"><?php _e( 'Recommended', 'bestwebsoft' ); ?></a></li>
|
503 |
+
</ul>
|
504 |
+
<div class="clear"></div>
|
505 |
+
<?php if ( ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] ) || !isset( $_GET['sub'] ) ) { ?>
|
506 |
+
<h4 class="bws_installed"><?php _e( 'Installed plugins', 'bestwebsoft' ); ?></h4>
|
507 |
+
<?php foreach ( $all_plugins as $key_plugin => $value_plugin ) {
|
508 |
+
|
509 |
+
if ( isset( $bws_plugins_pro[ $key_plugin ] ) ) {
|
510 |
+
$key_plugin_explode = explode( '-plugin-pro/', $key_plugin );
|
511 |
+
if ( isset( $key_plugin_explode[1] ) )
|
512 |
+
$icon = $key_plugin_explode[0];
|
513 |
+
else {
|
514 |
+
$key_plugin_explode = explode( '-pro/', $key_plugin );
|
515 |
+
$icon = $key_plugin_explode[0];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
516 |
}
|
517 |
+
} elseif ( isset( $bws_plugins[ $key_plugin ] ) ) {
|
518 |
+
$key_plugin_explode = explode( '-plugin/', $key_plugin );
|
519 |
+
if ( isset( $key_plugin_explode[1] ) )
|
520 |
+
$icon = $key_plugin_explode[0];
|
521 |
+
else {
|
522 |
+
$key_plugin_explode = explode( '/', $key_plugin );
|
523 |
+
$icon = $key_plugin_explode[0];
|
524 |
+
}
|
525 |
+
}
|
526 |
|
527 |
+
if ( in_array( $key_plugin, $active_plugins ) || is_plugin_active_for_network( $key_plugin ) ) { ?>
|
528 |
+
<?php if ( isset( $bws_plugins_pro[ $key_plugin ] ) ) { ?>
|
529 |
+
<div class="bws_product_box bws_exist_overlay">
|
530 |
+
<div class="bws_product">
|
531 |
+
<div class="bws_product_title"><?php echo $value_plugin["Name"]; ?></div>
|
532 |
+
<div class="bws_product_content">
|
533 |
+
<div class="bws_product_icon">
|
534 |
+
<div class="bws_product_icon_pro"></div>
|
535 |
+
<img src="<?php echo plugins_url( "icons/" , __FILE__ ) . $icon . '.png'; ?>"/>
|
536 |
+
</div>
|
537 |
+
<div class="bws_product_description"><?php echo $value_plugin["Description"]; ?></div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
538 |
</div>
|
539 |
+
<div class="clear"></div>
|
540 |
</div>
|
541 |
+
<div class="bws_product_links">
|
542 |
+
<a href="<?php echo $bws_plugins_pro[ $key_plugin ]["link"]; ?>" target="_blank"><?php _e( "Learn more", 'bestwebsoft' ); ?></a>
|
543 |
+
<span> | </span>
|
544 |
+
<a href="<?php echo $bws_plugins_pro[ $key_plugin ]["settings"]; ?>" target="_blank"><?php _e( "Settings", 'bestwebsoft' ); ?></a>
|
545 |
+
</div>
|
546 |
+
</div>
|
547 |
+
<?php } elseif ( isset( $bws_plugins[ $key_plugin ] ) ) { ?>
|
548 |
+
<div class="bws_product_box bws_product_free">
|
549 |
+
<div class="bws_product">
|
550 |
+
<div class="bws_product_title"><?php echo $value_plugin["Name"]; ?></div>
|
551 |
+
<div class="bws_product_content">
|
552 |
+
<div class="bws_product_icon">
|
553 |
+
<img src="<?php echo plugins_url( "icons/" , __FILE__ ) . $icon . '.png'; ?>"/>
|
554 |
</div>
|
555 |
+
<div class="bws_product_description"><?php echo $bws_plugins[ $key_plugin ]["description"]; ?></div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
556 |
</div>
|
557 |
+
<?php if ( isset( $bws_plugins[ $key_plugin ]['pro_version'] ) && isset( $bws_plugins_pro[ $bws_plugins[ $key_plugin ]['pro_version'] ] ) ) { ?>
|
558 |
+
<a class="bws_product_button" href="<?php echo $bws_plugins_pro[ $bws_plugins[ $key_plugin ]['pro_version'] ]["purchase"]; ?>" target="_blank">
|
559 |
+
<?php _e( 'Go', 'bestwebsoft' );?> <strong>PRO</strong>
|
560 |
+
</a>
|
561 |
+
<?php } else { ?>
|
562 |
+
<a class="bws_product_button bws_donate_button" href="<?php echo $bws_donate_link; ?>" target="_blank">
|
563 |
+
<strong><?php _e( 'DONATE', 'bestwebsoft' );?></strong>
|
564 |
+
</a>
|
565 |
+
<?php } ?>
|
566 |
+
<div class="clear"></div>
|
567 |
+
</div>
|
568 |
+
<div class="bws_product_links">
|
569 |
+
<a href="<?php echo $bws_plugins[ $key_plugin ]["link"]; ?>" target="_blank"><?php _e( "Learn more", 'bestwebsoft' ); ?></a>
|
570 |
+
<span> | </span>
|
571 |
+
<a href="<?php echo $bws_plugins[ $key_plugin ]["settings"]; ?>" target="_blank"><?php _e( "Settings", 'bestwebsoft' ); ?></a>
|
572 |
</div>
|
573 |
+
</div>
|
574 |
+
<?php }
|
575 |
+
} else {
|
576 |
+
if ( isset( $bws_plugins_pro[ $key_plugin ] ) ) { ?>
|
577 |
+
<div class="bws_product_box bws_product_deactivated">
|
578 |
+
<div class="bws_product">
|
579 |
+
<div class="bws_product_title"><?php echo $value_plugin["Name"]; ?></div>
|
580 |
+
<div class="bws_product_content">
|
581 |
+
<div class="bws_product_icon">
|
582 |
+
<div class="bws_product_icon_pro"></div>
|
583 |
+
<img src="<?php echo plugins_url( "icons/" , __FILE__ ) . $icon . '.png'; ?>"/>
|
|
|
584 |
</div>
|
585 |
+
<div class="bws_product_description"><?php echo $bws_plugins_pro[ $key_plugin ]["description"]; ?></div>
|
|
|
|
|
|
|
|
|
|
|
586 |
</div>
|
587 |
+
<div class="clear"></div>
|
588 |
</div>
|
589 |
+
<div class="bws_product_links">
|
590 |
+
<a href="<?php echo $bws_plugins_pro[ $key_plugin ]["link"]; ?>" target="_blank"><?php _e( "Learn more", 'bestwebsoft' ); ?></a>
|
591 |
+
<span> | </span>
|
592 |
+
<a class="bws_activate" href="plugins.php" title="<?php _e( "Activate this plugin", 'bestwebsoft' ); ?>" target="_blank"><?php _e( "Activate", 'bestwebsoft' ); ?></a>
|
593 |
+
</div>
|
594 |
+
</div>
|
595 |
+
<?php } elseif ( isset( $bws_plugins[ $key_plugin ] ) ) { ?>
|
596 |
+
<div class="bws_product_box bws_product_deactivated bws_product_free">
|
597 |
+
<div class="bws_product">
|
598 |
+
<div class="bws_product_title"><?php echo $value_plugin["Name"]; ?></div>
|
599 |
+
<div class="bws_product_content">
|
600 |
+
<div class="bws_product_icon">
|
601 |
+
<img src="<?php echo plugins_url( "icons/" , __FILE__ ) . $icon . '.png'; ?>"/>
|
602 |
</div>
|
603 |
+
<div class="bws_product_description"><?php echo $bws_plugins[ $key_plugin ]["description"]; ?></div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
604 |
</div>
|
605 |
+
<?php if ( isset( $bws_plugins[ $key_plugin ]['pro_version'] ) && isset( $bws_plugins_pro[ $bws_plugins[ $key_plugin ]['pro_version'] ] ) ) { ?>
|
606 |
+
<a class="bws_product_button" href="<?php echo $bws_plugins_pro[ $bws_plugins[ $key_plugin ]['pro_version'] ]["purchase"]; ?>" target="_blank">
|
607 |
+
<?php _e( 'Go', 'bestwebsoft' );?> <strong>PRO</strong>
|
608 |
+
</a>
|
609 |
+
<?php } else { ?>
|
610 |
+
<a class="bws_product_button bws_donate_button" href="<?php echo $bws_donate_link; ?>" target="_blank">
|
611 |
+
<strong><?php _e( 'DONATE', 'bestwebsoft' );?></strong>
|
612 |
+
</a>
|
613 |
+
<?php } ?>
|
614 |
+
<div class="clear"></div>
|
615 |
</div>
|
616 |
+
<div class="bws_product_links">
|
617 |
+
<a href="<?php echo $bws_plugins[ $key_plugin ]["link"]; ?>" target="_blank"><?php _e( "Learn more", 'bestwebsoft' ); ?></a>
|
618 |
+
<span> | </span>
|
619 |
+
<a class="bws_activate" href="plugins.php" title="<?php _e( "Activate this plugin", 'bestwebsoft' ); ?>" target="_blank"><?php _e( "Activate", 'bestwebsoft' ); ?></a>
|
620 |
+
</div>
|
621 |
+
</div>
|
622 |
+
<?php }
|
623 |
}
|
624 |
+
}
|
625 |
+
} ?>
|
626 |
+
<div class="clear"></div>
|
627 |
+
<?php if ( ( isset( $_GET['sub'] ) && 'recommended' == $_GET['sub'] ) || !isset( $_GET['sub'] ) ) { ?>
|
628 |
+
<h4 class="bws_recommended"><?php _e( 'Recommended plugins', 'bestwebsoft' ); ?></h4>
|
629 |
+
<?php foreach ( $recommend_plugins as $key_plugin => $value_plugin ) {
|
630 |
+
|
631 |
+
if ( isset( $bws_plugins_pro[ $key_plugin ] ) ) {
|
632 |
+
$key_plugin_explode = explode( '-plugin-pro/', $key_plugin );
|
633 |
+
if ( isset( $key_plugin_explode[1] ) )
|
634 |
+
$icon = $key_plugin_explode[0];
|
635 |
+
else {
|
636 |
+
$key_plugin_explode = explode( '-pro/', $key_plugin );
|
637 |
+
$icon = $key_plugin_explode[0];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
638 |
}
|
639 |
+
} elseif ( isset( $bws_plugins[ $key_plugin ] ) ) {
|
640 |
+
$key_plugin_explode = explode( '-plugin/', $key_plugin );
|
641 |
+
if ( isset( $key_plugin_explode[1] ) )
|
642 |
+
$icon = $key_plugin_explode[0];
|
643 |
+
else {
|
644 |
+
$key_plugin_explode = explode( '/', $key_plugin );
|
645 |
+
$icon = $key_plugin_explode[0];
|
646 |
+
}
|
647 |
+
}
|
648 |
+
?>
|
649 |
+
<div class="bws_product_box">
|
650 |
+
<div class="bws_product">
|
651 |
+
<div class="bws_product_title"><?php echo $value_plugin["name"]; ?></div>
|
652 |
+
<div class="bws_product_content">
|
653 |
+
<div class="bws_product_icon">
|
654 |
+
<?php if ( isset( $bws_plugins[ $key_plugin ]['pro_version'] ) && isset( $bws_plugins_pro[ $bws_plugins[ $key_plugin ]['pro_version'] ] ) ) { ?>
|
655 |
+
<div class="bws_product_icon_pro"></div>
|
656 |
+
<?php } ?>
|
657 |
+
<img src="<?php echo plugins_url( "icons/" , __FILE__ ) . $icon . '.png'; ?>"/>
|
658 |
</div>
|
659 |
+
<div class="bws_product_description"><?php echo $bws_plugins[ $key_plugin ]["description"]; ?></div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
660 |
</div>
|
661 |
+
<?php if ( isset( $bws_plugins[ $key_plugin ]['pro_version'] ) && isset( $bws_plugins_pro[ $bws_plugins[ $key_plugin ]['pro_version'] ] ) ) { ?>
|
662 |
+
<a class="bws_product_button" href="<?php echo $bws_plugins_pro[ $bws_plugins[ $key_plugin ]['pro_version'] ]["link"]; ?>" target="_blank">
|
663 |
+
<?php echo _e( 'Go', 'bestwebsoft' );?> <strong>PRO</strong>
|
664 |
+
</a>
|
665 |
+
<?php } else { ?>
|
666 |
+
<a class="bws_product_button bws_donate_button" href="<?php echo $bws_donate_link; ?>" target="_blank">
|
667 |
+
<strong><?php echo _e( 'DONATE', 'bestwebsoft' );?></strong>
|
668 |
+
</a>
|
669 |
+
<?php } ?>
|
670 |
+
</div>
|
671 |
+
<div class="clear"></div>
|
672 |
+
<div class="bws_product_links">
|
673 |
+
<a href="<?php echo $bws_plugins[ $key_plugin ]["link"]; ?>" target="_blank"><?php echo __( "Learn more", 'bestwebsoft' ); ?></a>
|
674 |
+
<span> | </span>
|
675 |
+
<a href="<?php echo $bws_plugins[ $key_plugin ]["wp_install"]; ?>" target="_blank"><?php echo __( "Install now", 'bestwebsoft' ); ?></a>
|
676 |
+
</div>
|
677 |
+
</div>
|
678 |
+
<?php }
|
679 |
+
} ?>
|
680 |
+
<?php } elseif ( 'themes' == $_GET['action'] ) { ?>
|
681 |
+
<div id="availablethemes">
|
682 |
+
<?php
|
683 |
+
global $tabs, $tab, $paged, $type, $theme_field_defaults;
|
684 |
+
include( ABSPATH . 'wp-admin/includes/theme-install.php' );
|
685 |
+
include( ABSPATH . 'wp-admin/includes/class-wp-themes-list-table.php' );
|
686 |
+
include( ABSPATH . 'wp-admin/includes/class-wp-theme-install-list-table.php' );
|
687 |
+
|
688 |
+
$theme_class = new WP_Theme_Install_List_Table();
|
689 |
+
$paged = $theme_class->get_pagenum();
|
690 |
+
$per_page = 36;
|
691 |
+
$args = array( 'page' => $paged, 'per_page' => $per_page, 'fields' => $theme_field_defaults );
|
692 |
+
$args['author'] = 'bestwebsoft';
|
693 |
+
$args = apply_filters( 'install_themes_table_api_args_search', $args );
|
694 |
+
$api = themes_api( 'query_themes', $args );
|
695 |
+
|
696 |
+
if ( is_wp_error( $api ) )
|
697 |
+
wp_die( $api->get_error_message() . '</p> <p><a href="#" onclick="document.location.reload(); return false;">' . __( 'Try again' ) . '</a>' );
|
698 |
+
|
699 |
+
$theme_class->items = $api->themes;
|
700 |
+
$theme_class->set_pagination_args( array(
|
701 |
+
'total_items' => $api->info['results'],
|
702 |
+
'per_page' => $per_page,
|
703 |
+
'infinite_scroll' => true,
|
704 |
+
) );
|
705 |
+
$themes = $theme_class->items;
|
706 |
+
foreach ( $themes as $theme ) {
|
707 |
+
?><div class="available-theme installable-theme"><?php
|
708 |
+
global $themes_allowedtags;
|
709 |
+
if ( empty( $theme ) )
|
710 |
+
return;
|
711 |
+
|
712 |
+
$name = wp_kses( $theme->name, $themes_allowedtags );
|
713 |
+
$author = wp_kses( $theme->author, $themes_allowedtags );
|
714 |
+
$preview_title = sprintf( __('Preview “%s”'), $name );
|
715 |
+
$preview_url = add_query_arg( array(
|
716 |
+
'tab' => 'theme-information',
|
717 |
+
'theme' => $theme->slug,
|
718 |
+
), self_admin_url( 'theme-install.php' ) );
|
719 |
+
|
720 |
+
$actions = array();
|
721 |
+
|
722 |
+
$install_url = add_query_arg( array(
|
723 |
+
'action' => 'install-theme',
|
724 |
+
'theme' => $theme->slug,
|
725 |
+
), self_admin_url( 'update.php' ) );
|
726 |
+
|
727 |
+
$update_url = add_query_arg( array(
|
728 |
+
'action' => 'upgrade-theme',
|
729 |
+
'theme' => $theme->slug,
|
730 |
+
), self_admin_url( 'update.php' ) );
|
731 |
+
|
732 |
+
$status = 'install';
|
733 |
+
$installed_theme = wp_get_theme( $theme->slug );
|
734 |
+
if ( $installed_theme->exists() ) {
|
735 |
+
if ( version_compare( $installed_theme->get('Version'), $theme->version, '=' ) )
|
736 |
+
$status = 'latest_installed';
|
737 |
+
elseif ( version_compare( $installed_theme->get('Version'), $theme->version, '>' ) )
|
738 |
+
$status = 'newer_installed';
|
739 |
+
else
|
740 |
+
$status = 'update_available';
|
741 |
+
}
|
742 |
+
switch ( $status ) {
|
743 |
+
default:
|
744 |
+
case 'install':
|
745 |
+
$actions[] = '<a class="install-now" href="' . esc_url( wp_nonce_url( $install_url, 'install-theme_' . $theme->slug ) ) . '" title="' . esc_attr( sprintf( __( 'Install %s' ), $name ) ) . '">' . __( 'Install Now' ) . '</a>';
|
746 |
+
break;
|
747 |
+
case 'update_available':
|
748 |
+
$actions[] = '<a class="install-now" href="' . esc_url( wp_nonce_url( $update_url, 'upgrade-theme_' . $theme->slug ) ) . '" title="' . esc_attr( sprintf( __( 'Update to version %s' ), $theme->version ) ) . '">' . __( 'Update' ) . '</a>';
|
749 |
+
break;
|
750 |
+
case 'newer_installed':
|
751 |
+
case 'latest_installed':
|
752 |
+
$actions[] = '<span class="install-now" title="' . esc_attr__( 'This theme is already installed and is up to date' ) . '">' . _x( 'Installed', 'theme' ) . '</span>';
|
753 |
+
break;
|
754 |
+
}
|
755 |
+
$actions[] = '<a class="install-theme-preview" href="' . esc_url( $preview_url ) . '" title="' . esc_attr( sprintf( __( 'Preview %s' ), $name ) ) . '">' . __( 'Preview' ) . '</a>';
|
756 |
+
$actions = apply_filters( 'theme_install_actions', $actions, $theme );
|
757 |
+
?>
|
758 |
+
<a class="screenshot install-theme-preview" href="<?php echo esc_url( $preview_url ); ?>" title="<?php echo esc_attr( $preview_title ); ?>">
|
759 |
+
<img src='<?php echo esc_url( $theme->screenshot_url ); ?>' width='150' />
|
760 |
+
</a>
|
761 |
+
<h3><?php echo $name; ?></h3>
|
762 |
+
<div class="theme-author"><?php printf( __( 'By %s' ), $author ); ?></div>
|
763 |
+
<div class="action-links">
|
764 |
+
<ul>
|
765 |
+
<?php foreach ( $actions as $action ): ?>
|
766 |
+
<li><?php echo $action; ?></li>
|
767 |
+
<?php endforeach; ?>
|
768 |
+
<li class="hide-if-no-js"><a href="#" class="theme-detail"><?php _e('Details') ?></a></li>
|
769 |
+
</ul>
|
770 |
</div>
|
771 |
+
<?php $theme_class->install_theme_info( $theme );
|
772 |
+
?></div>
|
773 |
+
<?php }
|
774 |
+
// end foreach $theme_names
|
775 |
+
$theme_class->theme_installer();
|
776 |
+
?>
|
777 |
+
</div>
|
778 |
+
<?php } elseif ( 'system_status' == $_GET['action'] ) { ?>
|
779 |
+
<div class="updated fade" <?php if ( ! ( isset( $_REQUEST['bwsmn_form_submit'] ) || isset( $_REQUEST['bwsmn_form_submit_custom_email'] ) ) || $error != "" ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
|
780 |
+
<div class="error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
|
781 |
+
<h3><?php _e( 'System status', 'bestwebsoft' ); ?></h3>
|
782 |
+
<div class="inside">
|
783 |
+
<table class="bws_system_info">
|
784 |
+
<thead><tr><th><?php _e( 'Environment', 'bestwebsoft' ); ?></th><td></td></tr></thead>
|
785 |
+
<tbody>
|
786 |
+
<?php foreach ( $system_info['system_info'] as $key => $value ) { ?>
|
787 |
+
<tr>
|
788 |
+
<td scope="row"><?php echo $key; ?></td>
|
789 |
+
<td scope="row"><?php echo $value; ?></td>
|
790 |
+
</tr>
|
791 |
+
<?php } ?>
|
792 |
+
</tbody>
|
793 |
+
</table>
|
794 |
+
<table class="bws_system_info">
|
795 |
+
<thead><tr><th><?php _e( 'Active Plugins', 'bestwebsoft' ); ?></th><th></th></tr></thead>
|
796 |
+
<tbody>
|
797 |
+
<?php foreach ( $system_info['active_plugins'] as $key => $value ) { ?>
|
798 |
+
<tr>
|
799 |
+
<td scope="row"><?php echo $key; ?></td>
|
800 |
+
<td scope="row"><?php echo $value; ?></td>
|
801 |
+
</tr>
|
802 |
+
<?php } ?>
|
803 |
+
</tbody>
|
804 |
+
</table>
|
805 |
+
<table class="bws_system_info">
|
806 |
+
<thead><tr><th><?php _e( 'Inactive Plugins', 'bestwebsoft' ); ?></th><th></th></tr></thead>
|
807 |
+
<tbody>
|
808 |
<?php
|
809 |
+
if ( ! empty( $system_info['inactive_plugins'] ) ) {
|
810 |
+
foreach ( $system_info['inactive_plugins'] as $key => $value ) { ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
811 |
<tr>
|
812 |
<td scope="row"><?php echo $key; ?></td>
|
813 |
<td scope="row"><?php echo $value; ?></td>
|
814 |
</tr>
|
815 |
+
<?php }
|
816 |
+
} ?>
|
817 |
+
</tbody>
|
818 |
+
</table>
|
819 |
+
<div class="clear"></div>
|
820 |
+
<form method="post" action="admin.php?page=bws_plugins&action=system_status">
|
821 |
+
<p>
|
822 |
+
<input type="hidden" name="bwsmn_form_submit" value="submit" />
|
823 |
+
<input type="submit" class="button-primary" value="<?php _e( 'Send to support', 'bestwebsoft' ) ?>" />
|
824 |
+
<?php wp_nonce_field( plugin_basename(__FILE__), 'bwsmn_nonce_submit' ); ?>
|
825 |
+
</p>
|
826 |
+
</form>
|
827 |
+
<form method="post" action="admin.php?page=bws_plugins&action=system_status">
|
828 |
+
<p>
|
829 |
+
<input type="hidden" name="bwsmn_form_submit_custom_email" value="submit" />
|
830 |
+
<input type="submit" class="button" value="<?php _e( 'Send to custom email »', 'bestwebsoft' ) ?>" />
|
831 |
+
<input type="text" value="<?php echo $bwsmn_form_email; ?>" name="bwsmn_form_email" />
|
832 |
+
<?php wp_nonce_field( plugin_basename(__FILE__), 'bwsmn_nonce_submit_custom_email' ); ?>
|
833 |
+
</p>
|
834 |
+
</form>
|
835 |
+
</div>
|
836 |
+
<?php } ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
837 |
</div>
|
838 |
<?php }
|
839 |
+
}
|
840 |
|
841 |
if ( ! function_exists ( 'bws_plugin_init' ) ) {
|
842 |
function bws_plugin_init() {
|
848 |
if ( ! function_exists ( 'bws_admin_head' ) ) {
|
849 |
function bws_admin_head() {
|
850 |
global $wp_version;
|
851 |
+
if ( $wp_version < 3.8 )
|
852 |
+
wp_enqueue_style( 'bws-admin-stylesheet', plugins_url( 'css/general_style_wp_before_3.8.css', __FILE__ ) );
|
853 |
+
else
|
854 |
+
wp_enqueue_style( 'bws-admin-stylesheet', plugins_url( 'css/general_style.css', __FILE__ ) );
|
855 |
+
|
856 |
if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_plugins" ) {
|
857 |
wp_enqueue_style( 'bws_menu_style', plugins_url( 'css/style.css', __FILE__ ) );
|
858 |
+
wp_enqueue_script( 'bws_menu_script', plugins_url( 'js/bws_menu.js' , __FILE__ ) );
|
859 |
if ( $wp_version >= '3.8' )
|
860 |
wp_enqueue_script( 'theme-install' );
|
861 |
elseif ( $wp_version >= '3.4' )
|
864 |
}
|
865 |
}
|
866 |
|
867 |
+
add_action( 'admin_init', 'bws_plugin_init' );
|
868 |
add_action( 'admin_enqueue_scripts', 'bws_admin_head' );
|
869 |
?>
|
bws_menu/css/general_style.css
ADDED
@@ -0,0 +1,246 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#adminmenu #toplevel_page_bws_plugins div.wp-menu-image,
|
2 |
+
.admin-color-classic #adminmenu #toplevel_page_bws_plugins div.wp-menu-image,
|
3 |
+
#adminmenu #toplevel_page_bws_plugins:hover div.wp-menu-image,
|
4 |
+
#adminmenu #toplevel_page_bws_plugins.wp-has-current-submenu div.wp-menu-image {
|
5 |
+
background: url("../images/icon_16_single.png") no-repeat scroll center center transparent;
|
6 |
+
}
|
7 |
+
#adminmenu #toplevel_page_bws_plugins.wp-not-current-submenu div.wp-menu-image {
|
8 |
+
opacity: 0.7;
|
9 |
+
}
|
10 |
+
#toplevel_page_bws_plugins .wp-submenu .wp-first-item {
|
11 |
+
display: none;
|
12 |
+
}
|
13 |
+
/*
|
14 |
+
* styles for rate-support div on the settings page
|
15 |
+
*/
|
16 |
+
.bws-plugin-reviews {
|
17 |
+
background: none repeat scroll 0 0 #BEE1F1;
|
18 |
+
border: 1px solid #70A8C2;
|
19 |
+
border-radius: 3px;
|
20 |
+
max-width: 700px;
|
21 |
+
}
|
22 |
+
.bws-plugin-reviews-rate {
|
23 |
+
padding: 10px;
|
24 |
+
border-bottom: 1px dashed #70A8C2;
|
25 |
+
}
|
26 |
+
.bws-plugin-reviews-support {
|
27 |
+
padding: 10px;
|
28 |
+
}
|
29 |
+
/*
|
30 |
+
* styles for Go PRO tab
|
31 |
+
*/
|
32 |
+
.bws_go_pro_tab {
|
33 |
+
background-color: #2A95C5;
|
34 |
+
border-color: #11688F;
|
35 |
+
color: #FFFFFF;
|
36 |
+
font-weight: normal;
|
37 |
+
text-shadow: none;
|
38 |
+
}
|
39 |
+
.bws_go_pro_tab:hover {
|
40 |
+
background-color: #2080AB;
|
41 |
+
color: #FFFFFF;
|
42 |
+
border-color: #11688F;
|
43 |
+
}
|
44 |
+
.bws_go_pro_tab.nav-tab-active {
|
45 |
+
background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
|
46 |
+
border-color: #CCCCCC #CCCCCC #F1F1F1;
|
47 |
+
color: #000000;
|
48 |
+
}
|
49 |
+
/*
|
50 |
+
* styles for pro_version settings and tooltip
|
51 |
+
*/
|
52 |
+
td.bws_pro_version,
|
53 |
+
tr.bws_pro_version,
|
54 |
+
.nav-tab.bws_plugin_menu_pro_version,
|
55 |
+
.nav-tab.bws_plugin_menu_pro_version:hover {
|
56 |
+
background: rgba(248, 226, 104, 0.11) url("../images/pattern_bg.png");
|
57 |
+
border: 1px solid #AAA;
|
58 |
+
}
|
59 |
+
td.bws_pro_version_tooltip {
|
60 |
+
border: 1px solid #AAA;
|
61 |
+
position: inherit;
|
62 |
+
}
|
63 |
+
.bws_pro_version_bloc {
|
64 |
+
position: relative;
|
65 |
+
margin: 5px 0;
|
66 |
+
border: 1px solid #AAAAAA;
|
67 |
+
max-width: 800px;
|
68 |
+
}
|
69 |
+
.bws_table_bg {
|
70 |
+
background: #f8e268 url("../images/pattern.png");
|
71 |
+
opacity: 0.11;
|
72 |
+
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=11); /* IE 5.5+*/
|
73 |
+
-moz-opacity: 0.11; /* Mozilla 1.6 и ниже */
|
74 |
+
width: 100%;
|
75 |
+
height: 100%;
|
76 |
+
position: absolute;
|
77 |
+
z-index: 1;
|
78 |
+
}
|
79 |
+
.bws_pro_version_table_bloc table.bws_pro_version {
|
80 |
+
background: transparent;
|
81 |
+
margin: 0;
|
82 |
+
border: none;
|
83 |
+
width: 100%;
|
84 |
+
}
|
85 |
+
table.bws_pro_version {
|
86 |
+
background: #E0E0E0;
|
87 |
+
border: 1px solid #AAA;
|
88 |
+
margin-bottom: 5px;
|
89 |
+
width: auto;
|
90 |
+
}
|
91 |
+
table.bws_pro_version tbody {
|
92 |
+
display: block;
|
93 |
+
}
|
94 |
+
table.bws_pro_version th,
|
95 |
+
table.bws_pro_version td {
|
96 |
+
padding-left: 10px;
|
97 |
+
}
|
98 |
+
.bws_pro_version_tooltip {
|
99 |
+
background: #FFF;
|
100 |
+
border-top: 1px solid #AAA;
|
101 |
+
position: relative;
|
102 |
+
z-index: 2;
|
103 |
+
padding: 10px;
|
104 |
+
font-size: 14px;
|
105 |
+
}
|
106 |
+
.bws_pro_version_tooltip .bws_button {
|
107 |
+
background: #dd5738;
|
108 |
+
border: none;
|
109 |
+
text-decoration: none;
|
110 |
+
color: #fff;
|
111 |
+
padding: 5px 17px;
|
112 |
+
border-radius: 2px;
|
113 |
+
margin: 5px 10px;
|
114 |
+
float: right;
|
115 |
+
}
|
116 |
+
.bws_pro_version_tooltip .bws_info {
|
117 |
+
float: left;
|
118 |
+
padding-top: 10px;
|
119 |
+
}
|
120 |
+
div.bws_pro_version {
|
121 |
+
padding: 5px 10px;
|
122 |
+
}
|
123 |
+
a.bws_plugin_pro_version {
|
124 |
+
display: block;
|
125 |
+
background: rgba(248, 226, 104, 0.11) url("../images/pattern_bg.png");
|
126 |
+
border: 1px solid #AAA;
|
127 |
+
padding: 5px;
|
128 |
+
text-decoration: none;
|
129 |
+
color: #666;
|
130 |
+
}
|
131 |
+
.bws_pro_version_single_link,
|
132 |
+
.bws_pro_version_single_link:hover {
|
133 |
+
text-decoration: none;
|
134 |
+
color: #666;
|
135 |
+
}
|
136 |
+
/* style for mini-block (ex. google map) */
|
137 |
+
.bws_pro_version_bloc_mini .bws_pro_version_table_bloc table.bws_pro_version {
|
138 |
+
width: auto;
|
139 |
+
}
|
140 |
+
.bws_pro_version_bloc_mini .bws_pro_version_tooltip {
|
141 |
+
padding: 10px 61px;
|
142 |
+
text-align: center;
|
143 |
+
width: 200px;
|
144 |
+
}
|
145 |
+
.bws_pro_version_bloc_mini .bws_pro_version_tooltip a {
|
146 |
+
display: inline-block;
|
147 |
+
line-height: 1.5;
|
148 |
+
}
|
149 |
+
.bws_pro_version_bloc_mini .bws_pro_version_tooltip .bws_button {
|
150 |
+
margin: 10px 10px 5px;
|
151 |
+
padding: 5px 50px;
|
152 |
+
float: none;
|
153 |
+
}
|
154 |
+
/* #### Mobile Phones Portrait or Landscape #### */
|
155 |
+
@media screen and (max-device-width: 640px) {
|
156 |
+
.bws_pro_version_tooltip {
|
157 |
+
padding: 10px;
|
158 |
+
text-align: center;
|
159 |
+
}
|
160 |
+
.bws_pro_version_tooltip .bws_info {
|
161 |
+
float: none;
|
162 |
+
text-align: center;
|
163 |
+
}
|
164 |
+
.bws_pro_version_tooltip a {
|
165 |
+
display: inline-block;
|
166 |
+
line-height: 1.5;
|
167 |
+
}
|
168 |
+
.bws_pro_version_tooltip .bws_info a {
|
169 |
+
display: block;
|
170 |
+
}
|
171 |
+
.bws_pro_version_tooltip .bws_button {
|
172 |
+
margin: 10px 10px 5px;
|
173 |
+
padding: 5px 50px;
|
174 |
+
float: none;
|
175 |
+
}
|
176 |
+
}
|
177 |
+
|
178 |
+
/*
|
179 |
+
* styles for banner
|
180 |
+
*/
|
181 |
+
.bws_banner_on_plugin_page {
|
182 |
+
border: 1px solid #d4d4d4;
|
183 |
+
margin: 12px 0;
|
184 |
+
background: #FFF;
|
185 |
+
position: relative;
|
186 |
+
overflow: hidden
|
187 |
+
}
|
188 |
+
.bws_banner_on_plugin_page .text {
|
189 |
+
color: #000;
|
190 |
+
font-size: 15px;
|
191 |
+
line-height: 26px;
|
192 |
+
margin: 18px 18px 14px;
|
193 |
+
float: left;
|
194 |
+
width: auto;
|
195 |
+
max-width: 80%;
|
196 |
+
}
|
197 |
+
.bws_banner_on_plugin_page .text span {
|
198 |
+
font-size: 12px;
|
199 |
+
opacity: 0.7;
|
200 |
+
}
|
201 |
+
.bws_banner_on_plugin_page .button {
|
202 |
+
float: left;
|
203 |
+
border: none;
|
204 |
+
font-size: 14px;
|
205 |
+
margin: 18px 0 18px 16px;
|
206 |
+
padding: 12px 0;
|
207 |
+
color: #FFF;
|
208 |
+
text-shadow: none;
|
209 |
+
font-weight: bold;
|
210 |
+
background: #0074A2;
|
211 |
+
-moz-border-radius: 3px;
|
212 |
+
border-radius: 3px;
|
213 |
+
-webkit-border-radius: 3px;
|
214 |
+
text-decoration: none;
|
215 |
+
height: 50px;
|
216 |
+
text-align: center;
|
217 |
+
text-transform: uppercase;
|
218 |
+
width: 147px;
|
219 |
+
box-shadow: none;
|
220 |
+
line-height: 26px;
|
221 |
+
}
|
222 |
+
.bws_banner_on_plugin_page .button:hover,
|
223 |
+
.bws_banner_on_plugin_page .button:focus {
|
224 |
+
background: #222;
|
225 |
+
color: #FFF;
|
226 |
+
}
|
227 |
+
.bws_banner_on_plugin_page .icon {
|
228 |
+
float: right;
|
229 |
+
margin: 12px 8px 8px 0;
|
230 |
+
}
|
231 |
+
.bws_banner_on_plugin_page .close_icon {
|
232 |
+
float: right;
|
233 |
+
margin: 8px;
|
234 |
+
cursor: pointer;
|
235 |
+
}
|
236 |
+
/* #### Mobile Phones Portrait or Landscape #### */
|
237 |
+
@media screen and (max-device-width: 640px) {
|
238 |
+
.bws_banner_on_plugin_page .text,
|
239 |
+
.bws_banner_on_plugin_page .icon,
|
240 |
+
.bws_banner_on_plugin_page .button_div,
|
241 |
+
.bws_banner_on_plugin_page .button {
|
242 |
+
float: none;
|
243 |
+
text-align: center;
|
244 |
+
max-width: 100%;
|
245 |
+
}
|
246 |
+
}
|
bws_menu/css/general_style_wp_before_3.8.css
ADDED
@@ -0,0 +1,252 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
/*
|
18 |
+
* styles for rate-support div on the settings page
|
19 |
+
*/
|
20 |
+
.bws-plugin-reviews {
|
21 |
+
background: none repeat scroll 0 0 #BEE1F1;
|
22 |
+
border: 1px solid #70A8C2;
|
23 |
+
border-radius: 3px;
|
24 |
+
max-width: 700px;
|
25 |
+
}
|
26 |
+
.bws-plugin-reviews-rate {
|
27 |
+
padding: 10px;
|
28 |
+
border-bottom: 1px dashed #70A8C2;
|
29 |
+
}
|
30 |
+
.bws-plugin-reviews-support {
|
31 |
+
padding: 10px;
|
32 |
+
}
|
33 |
+
/*
|
34 |
+
* styles for Go PRO tab
|
35 |
+
*/
|
36 |
+
.bws_go_pro_tab {
|
37 |
+
background-color: #2A95C5;
|
38 |
+
border-color: #11688F;
|
39 |
+
color: #FFFFFF;
|
40 |
+
font-weight: normal !important;
|
41 |
+
text-shadow: none;
|
42 |
+
}
|
43 |
+
.bws_go_pro_tab:hover {
|
44 |
+
background-color: #2080AB;
|
45 |
+
color: #FFFFFF;
|
46 |
+
border-color: #11688F;
|
47 |
+
}
|
48 |
+
/*
|
49 |
+
* styles for pro_version settings and tooltip
|
50 |
+
*/
|
51 |
+
td.bws_pro_version,
|
52 |
+
tr.bws_pro_version,
|
53 |
+
.nav-tab.bws_plugin_menu_pro_version,
|
54 |
+
.nav-tab.bws_plugin_menu_pro_version:hover {
|
55 |
+
background: rgba(248, 226, 104, 0.11) url("../images/pattern_bg.png");
|
56 |
+
border: 1px solid #AAA;
|
57 |
+
}
|
58 |
+
.nav-tab.bws_plugin_menu_pro_version:hover {
|
59 |
+
color: #AAAAAA;
|
60 |
+
}
|
61 |
+
td.bws_pro_version_tooltip {
|
62 |
+
border: 1px solid #AAA;
|
63 |
+
position: inherit;
|
64 |
+
}
|
65 |
+
.bws_pro_version_bloc {
|
66 |
+
position: relative;
|
67 |
+
margin: 5px 0;
|
68 |
+
border: 1px solid #AAAAAA;
|
69 |
+
max-width: 800px;
|
70 |
+
}
|
71 |
+
.bws_table_bg {
|
72 |
+
background: #f8e268 url("../images/pattern.png");
|
73 |
+
opacity: 0.11;
|
74 |
+
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=11); /* IE 5.5+*/
|
75 |
+
-moz-opacity: 0.11; /* Mozilla 1.6 и ниже */
|
76 |
+
width: 100%;
|
77 |
+
height: 100%;
|
78 |
+
position: absolute;
|
79 |
+
z-index: 1;
|
80 |
+
}
|
81 |
+
.bws_pro_version_table_bloc table.bws_pro_version {
|
82 |
+
background: transparent;
|
83 |
+
margin: 0;
|
84 |
+
border: none;
|
85 |
+
width: 100%;
|
86 |
+
}
|
87 |
+
table.bws_pro_version {
|
88 |
+
background: #E0E0E0;
|
89 |
+
border: 1px solid #AAA;
|
90 |
+
margin-bottom: 5px;
|
91 |
+
width: auto;
|
92 |
+
}
|
93 |
+
table.bws_pro_version tbody {
|
94 |
+
display: block;
|
95 |
+
}
|
96 |
+
table.bws_pro_version th,
|
97 |
+
table.bws_pro_version td {
|
98 |
+
padding-left: 10px;
|
99 |
+
}
|
100 |
+
.bws_pro_version_tooltip {
|
101 |
+
background: #FFF;
|
102 |
+
border-top: 1px solid #AAA;
|
103 |
+
position: relative;
|
104 |
+
z-index: 2;
|
105 |
+
padding: 10px;
|
106 |
+
font-size: 14px;
|
107 |
+
}
|
108 |
+
.bws_pro_version_tooltip .bws_button {
|
109 |
+
background: #dd5738;
|
110 |
+
border: none;
|
111 |
+
text-decoration: none;
|
112 |
+
color: #fff;
|
113 |
+
padding: 5px 17px;
|
114 |
+
border-radius: 2px;
|
115 |
+
margin: 5px 10px;
|
116 |
+
float: right;
|
117 |
+
}
|
118 |
+
.bws_pro_version_tooltip .bws_info {
|
119 |
+
float: left;
|
120 |
+
padding-top: 10px;
|
121 |
+
}
|
122 |
+
div.bws_pro_version {
|
123 |
+
padding: 5px 10px;
|
124 |
+
}
|
125 |
+
a.bws_plugin_pro_version {
|
126 |
+
display: block;
|
127 |
+
background: rgba(248, 226, 104, 0.11) url("../images/pattern_bg.png");
|
128 |
+
border: 1px solid #AAA;
|
129 |
+
padding: 5px;
|
130 |
+
text-decoration: none;
|
131 |
+
color: #666;
|
132 |
+
}
|
133 |
+
.bws_pro_version_single_link,
|
134 |
+
.bws_pro_version_single_link:hover {
|
135 |
+
text-decoration: none;
|
136 |
+
color: #666;
|
137 |
+
}
|
138 |
+
/* style for mini-block (ex. google map) */
|
139 |
+
.bws_pro_version_bloc_mini .bws_pro_version_table_bloc table.bws_pro_version {
|
140 |
+
width: auto;
|
141 |
+
}
|
142 |
+
.bws_pro_version_bloc_mini .bws_pro_version_tooltip {
|
143 |
+
padding: 10px 61px;
|
144 |
+
text-align: center;
|
145 |
+
width: 200px;
|
146 |
+
}
|
147 |
+
.bws_pro_version_bloc_mini .bws_pro_version_tooltip a {
|
148 |
+
display: inline-block;
|
149 |
+
line-height: 1.5;
|
150 |
+
}
|
151 |
+
.bws_pro_version_bloc_mini .bws_pro_version_tooltip .bws_button {
|
152 |
+
margin: 10px 10px 5px;
|
153 |
+
padding: 5px 50px;
|
154 |
+
float: none;
|
155 |
+
}
|
156 |
+
/* #### Mobile Phones Portrait or Landscape #### */
|
157 |
+
@media screen and (max-device-width: 640px) {
|
158 |
+
.bws_pro_version_tooltip {
|
159 |
+
padding: 10px;
|
160 |
+
text-align: center;
|
161 |
+
}
|
162 |
+
.bws_pro_version_tooltip .bws_info {
|
163 |
+
float: none;
|
164 |
+
text-align: center;
|
165 |
+
}
|
166 |
+
.bws_pro_version_tooltip a {
|
167 |
+
display: inline-block;
|
168 |
+
line-height: 1.5;
|
169 |
+
}
|
170 |
+
.bws_pro_version_tooltip .bws_info a {
|
171 |
+
display: block;
|
172 |
+
}
|
173 |
+
.bws_pro_version_tooltip .bws_button {
|
174 |
+
margin: 10px 10px 5px;
|
175 |
+
padding: 5px 50px;
|
176 |
+
float: none;
|
177 |
+
}
|
178 |
+
}
|
179 |
+
/*
|
180 |
+
* styles for banner
|
181 |
+
*/
|
182 |
+
.bws_banner_on_plugin_page {
|
183 |
+
border: 1px solid #d4d4d4;
|
184 |
+
background: #FFF;
|
185 |
+
position: relative;
|
186 |
+
overflow: hidden;
|
187 |
+
margin: 12px 0;
|
188 |
+
background: #ECECEC;
|
189 |
+
-moz-border-radius: 3px;
|
190 |
+
-webkit-border-radius: 3px;
|
191 |
+
border-radius: 3px;
|
192 |
+
}
|
193 |
+
.bws_banner_on_plugin_page .text {
|
194 |
+
color: #000;
|
195 |
+
font-size: 15px;
|
196 |
+
line-height: 26px;
|
197 |
+
margin: 18px 18px 14px;
|
198 |
+
float: left;
|
199 |
+
width: auto;
|
200 |
+
max-width: 80%;
|
201 |
+
}
|
202 |
+
.bws_banner_on_plugin_page .text span {
|
203 |
+
font-size: 12px;
|
204 |
+
opacity: 0.7;
|
205 |
+
}
|
206 |
+
.bws_banner_on_plugin_page .button {
|
207 |
+
float: left;
|
208 |
+
border: none;
|
209 |
+
font-size: 14px;
|
210 |
+
margin: 18px 0 18px 16px;
|
211 |
+
padding: 14px 0;
|
212 |
+
color: #FFF;
|
213 |
+
text-shadow: none;
|
214 |
+
font-weight: bold;
|
215 |
+
background: #0074A2;
|
216 |
+
-moz-border-radius: 3px;
|
217 |
+
border-radius: 3px;
|
218 |
+
-webkit-border-radius: 3px;
|
219 |
+
text-decoration: none;
|
220 |
+
height: 50px;
|
221 |
+
text-align: center;
|
222 |
+
text-transform: uppercase;
|
223 |
+
width: 147px;
|
224 |
+
box-shadow: none;
|
225 |
+
-moz-box-sizing: border-box;
|
226 |
+
-webkit-box-sizing: border-box;
|
227 |
+
box-sizing: border-box;
|
228 |
+
}
|
229 |
+
.bws_banner_on_plugin_page .button:hover,
|
230 |
+
.bws_banner_on_plugin_page .button:focus {
|
231 |
+
background: #222;
|
232 |
+
color: #FFF;
|
233 |
+
}
|
234 |
+
.bws_banner_on_plugin_page .icon {
|
235 |
+
float: right;
|
236 |
+
margin: 12px 8px 8px 0;
|
237 |
+
}
|
238 |
+
.bws_banner_on_plugin_page .close_icon {
|
239 |
+
float: right;
|
240 |
+
margin: 8px;
|
241 |
+
cursor: pointer;
|
242 |
+
}
|
243 |
+
/* #### Mobile Phones Portrait or Landscape #### */
|
244 |
+
@media screen and (max-device-width: 640px) {
|
245 |
+
.bws_banner_on_plugin_page .text,
|
246 |
+
.bws_banner_on_plugin_page .icon,
|
247 |
+
.bws_banner_on_plugin_page .button_div,
|
248 |
+
.bws_banner_on_plugin_page .button {
|
249 |
+
float: none;
|
250 |
+
text-align: center;
|
251 |
+
}
|
252 |
+
}
|
bws_menu/css/style.css
CHANGED
@@ -86,7 +86,7 @@ h4.bws_recommended {
|
|
86 |
padding: 0 10px;
|
87 |
color: #a7a7a7;
|
88 |
display: none;
|
89 |
-
font-size:
|
90 |
}
|
91 |
.bws_product_links {
|
92 |
padding: 10px 6px 12px;
|
@@ -136,15 +136,4 @@ h4.bws_recommended {
|
|
136 |
}
|
137 |
.bws_product_button.bws_donate_button:hover {
|
138 |
background: #D69108 !important;
|
139 |
-
}
|
140 |
-
.bws_switch_link {
|
141 |
-
background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
|
142 |
-
border: medium none;
|
143 |
-
color: #0074A2;
|
144 |
-
float: right;
|
145 |
-
cursor: pointer;
|
146 |
-
font-size: 13px;
|
147 |
-
}
|
148 |
-
.bws_switch_link:hover {
|
149 |
-
color: #2ea2cc;
|
150 |
}
|
86 |
padding: 0 10px;
|
87 |
color: #a7a7a7;
|
88 |
display: none;
|
89 |
+
font-size: 12px;
|
90 |
}
|
91 |
.bws_product_links {
|
92 |
padding: 10px 6px 12px;
|
136 |
}
|
137 |
.bws_product_button.bws_donate_button:hover {
|
138 |
background: #D69108 !important;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
}
|
bws_menu/icons/bws-google-analytics.png
ADDED
Binary file
|
bws_menu/icons/bws-google-maps.png
ADDED
Binary file
|
bws_menu/icons/contact-form-multi.png
ADDED
Binary file
|
bws_menu/icons/subscriber.png
ADDED
Binary file
|
{images → bws_menu/images}/icon_16.png
RENAMED
File without changes
|
{images → bws_menu/images}/icon_16_b.png
RENAMED
File without changes
|
{images → bws_menu/images}/icon_16_c.png
RENAMED
File without changes
|
{images → bws_menu/images}/icon_16_single.png
RENAMED
File without changes
|
{images → bws_menu/images}/icon_36.png
RENAMED
File without changes
|
{images → bws_menu/images}/icon_36_b.png
RENAMED
File without changes
|
bws_menu/images/pattern.png
ADDED
Binary file
|
bws_menu/images/pattern_bg.png
ADDED
Binary file
|
css/style.css
CHANGED
@@ -1,130 +1,3 @@
|
|
1 |
-
#adminmenu #toplevel_page_bws_plugins div.wp-menu-image,
|
2 |
-
.admin-color-classic #adminmenu #toplevel_page_bws_plugins div.wp-menu-image,
|
3 |
-
#adminmenu #toplevel_page_bws_plugins:hover div.wp-menu-image,
|
4 |
-
#adminmenu #toplevel_page_bws_plugins.wp-has-current-submenu div.wp-menu-image {
|
5 |
-
background: url("../images/icon_16_single.png") no-repeat scroll center center transparent;
|
6 |
-
}
|
7 |
-
#adminmenu #toplevel_page_bws_plugins.wp-not-current-submenu div.wp-menu-image {
|
8 |
-
opacity: 0.7;
|
9 |
-
}
|
10 |
-
#toplevel_page_bws_plugins .wp-submenu .wp-first-item {
|
11 |
-
display: none;
|
12 |
-
}
|
13 |
-
/*
|
14 |
-
* Tab GO PRO
|
15 |
-
*/
|
16 |
-
.bws_go_pro_tab {
|
17 |
-
background-color: #2A95C5;
|
18 |
-
border-color: #11688F;
|
19 |
-
color: #FFFFFF;
|
20 |
-
font-weight: normal;
|
21 |
-
text-shadow: none;
|
22 |
-
}
|
23 |
-
.bws_go_pro_tab:hover {
|
24 |
-
background-color: #2080AB;
|
25 |
-
color: #FFFFFF;
|
26 |
-
border-color: #11688F;
|
27 |
-
}
|
28 |
-
.bws_go_pro_tab.nav-tab-active {
|
29 |
-
background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
|
30 |
-
border-color: #CCCCCC #CCCCCC #F1F1F1;
|
31 |
-
color: #000000;
|
32 |
-
}
|
33 |
-
/*
|
34 |
-
* styles for rate-support div on the settings page
|
35 |
-
*/
|
36 |
-
.bws-plugin-reviews {
|
37 |
-
background: none repeat scroll 0 0 #BEE1F1;
|
38 |
-
border: 1px solid #70A8C2;
|
39 |
-
border-radius: 3px;
|
40 |
-
max-width: 700px;
|
41 |
-
}
|
42 |
-
.bws-plugin-reviews-rate {
|
43 |
-
padding: 10px;
|
44 |
-
border-bottom: 1px dashed #70A8C2;
|
45 |
-
}
|
46 |
-
.bws-plugin-reviews-support {
|
47 |
-
padding: 10px;
|
48 |
-
}
|
49 |
-
/*
|
50 |
-
* styles for pro_version settings, banner and tooltip
|
51 |
-
*/
|
52 |
-
table.bws_pro_version {
|
53 |
-
background: #E0E0E0;
|
54 |
-
border: 1px solid #AAA;
|
55 |
-
margin-bottom: 5px;
|
56 |
-
width: auto !important;
|
57 |
-
float: left;
|
58 |
-
}
|
59 |
-
table.bws_pro_version th,
|
60 |
-
table.bws_pro_version td {
|
61 |
-
color: #555;
|
62 |
-
padding-left: 10px;
|
63 |
-
}
|
64 |
-
.bws_pro_version_tooltip {
|
65 |
-
background: #FFF;
|
66 |
-
border: 1px solid #AAA;
|
67 |
-
}
|
68 |
-
.form-table.bws_pro_version .bws_pro_version_tooltip th {
|
69 |
-
font-weight: normal;
|
70 |
-
padding-bottom: 10px;
|
71 |
-
}
|
72 |
-
/*
|
73 |
-
* styles for banner
|
74 |
-
*/
|
75 |
-
.bws_banner_on_plugin_page {
|
76 |
-
border: 1px solid #d4d4d4;
|
77 |
-
margin: 12px 0;
|
78 |
-
background: #FFF;
|
79 |
-
position: relative;
|
80 |
-
overflow: hidden
|
81 |
-
}
|
82 |
-
.bws_banner_on_plugin_page .text {
|
83 |
-
color: #000;
|
84 |
-
font-size: 15px;
|
85 |
-
line-height: 26px;
|
86 |
-
margin: 18px 18px 14px;
|
87 |
-
float: left;
|
88 |
-
width: 80%;
|
89 |
-
}
|
90 |
-
.bws_banner_on_plugin_page .text span {
|
91 |
-
font-size: 12px;
|
92 |
-
opacity: 0.7;
|
93 |
-
}
|
94 |
-
.bws_banner_on_plugin_page .button {
|
95 |
-
float: left;
|
96 |
-
border: none;
|
97 |
-
font-size: 14px;
|
98 |
-
margin: 18px 0 18px 16px;
|
99 |
-
padding: 12px 0;
|
100 |
-
color: #FFF;
|
101 |
-
text-shadow: none;
|
102 |
-
font-weight: bold;
|
103 |
-
background: #0074A2;
|
104 |
-
-moz-border-radius: 3px;
|
105 |
-
border-radius: 3px;
|
106 |
-
-webkit-border-radius: 3px;
|
107 |
-
text-decoration: none;
|
108 |
-
height: 50px;
|
109 |
-
text-align: center;
|
110 |
-
text-transform: uppercase;
|
111 |
-
width: 147px;
|
112 |
-
box-shadow: none;
|
113 |
-
}
|
114 |
-
.bws_banner_on_plugin_page .button:hover,
|
115 |
-
.bws_banner_on_plugin_page .button:focus {
|
116 |
-
background: #222;
|
117 |
-
color: #FFF;
|
118 |
-
}
|
119 |
-
.bws_banner_on_plugin_page .icon {
|
120 |
-
float: right;
|
121 |
-
margin: 18px 8px 8px 0;
|
122 |
-
}
|
123 |
-
.bws_banner_on_plugin_page .close_icon {
|
124 |
-
float: right;
|
125 |
-
margin: 8px;
|
126 |
-
cursor: pointer;
|
127 |
-
}
|
128 |
/*
|
129 |
* Plugin styles
|
130 |
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
/*
|
2 |
* Plugin styles
|
3 |
*/
|
css/style_wp_before_3.8.css
DELETED
@@ -1,170 +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 |
-
.admin-color-classic #adminmenu #toplevel_page_bws_plugins div.wp-menu-image {
|
5 |
-
background: url("../images/icon_16_b.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 |
-
.admin-color-classic .wrap #icon-options-general.icon32-bws {
|
15 |
-
background: url("../images/icon_36_b.png") no-repeat scroll left top transparent;
|
16 |
-
}
|
17 |
-
#toplevel_page_bws_plugins .wp-submenu .wp-first-item {
|
18 |
-
display: none;
|
19 |
-
}
|
20 |
-
/*
|
21 |
-
* Tab GO PRO
|
22 |
-
*/
|
23 |
-
.bws_go_pro_tab {
|
24 |
-
background-color: #2A95C5;
|
25 |
-
border-color: #11688F;
|
26 |
-
color: #FFFFFF;
|
27 |
-
font-weight: normal !important;
|
28 |
-
text-shadow: none;
|
29 |
-
}
|
30 |
-
.bws_go_pro_tab:hover {
|
31 |
-
background-color: #2080AB;
|
32 |
-
color: #FFFFFF;
|
33 |
-
border-color: #11688F;
|
34 |
-
}
|
35 |
-
/*
|
36 |
-
* styles for rate-support div on the settings page
|
37 |
-
*/
|
38 |
-
.bws-plugin-reviews {
|
39 |
-
background: none repeat scroll 0 0 #BEE1F1;
|
40 |
-
border: 1px solid #70A8C2;
|
41 |
-
border-radius: 3px;
|
42 |
-
max-width: 700px;
|
43 |
-
}
|
44 |
-
.bws-plugin-reviews-rate {
|
45 |
-
padding: 10px;
|
46 |
-
border-bottom: 1px dashed #70A8C2;
|
47 |
-
}
|
48 |
-
.bws-plugin-reviews-support {
|
49 |
-
padding: 10px;
|
50 |
-
}
|
51 |
-
/*
|
52 |
-
* styles for pro_version settings, banner and tooltip
|
53 |
-
*/
|
54 |
-
table.bws_pro_version {
|
55 |
-
background: #E0E0E0;
|
56 |
-
border: 1px solid #AAA;
|
57 |
-
margin-bottom: 5px;
|
58 |
-
width: auto !important;
|
59 |
-
float: left;
|
60 |
-
}
|
61 |
-
table.bws_pro_version th,
|
62 |
-
table.bws_pro_version td {
|
63 |
-
color: #555;
|
64 |
-
padding-left: 10px;
|
65 |
-
}
|
66 |
-
.bws_pro_version_tooltip {
|
67 |
-
background: #FFF;
|
68 |
-
border: 1px solid #AAA;
|
69 |
-
}
|
70 |
-
.form-table.bws_pro_version .bws_pro_version_tooltip th {
|
71 |
-
font-weight: normal;
|
72 |
-
padding-bottom: 10px;
|
73 |
-
}
|
74 |
-
/*
|
75 |
-
* styles for banner
|
76 |
-
*/
|
77 |
-
.bws_banner_on_plugin_page {
|
78 |
-
border: 1px solid #d4d4d4;
|
79 |
-
background: #FFF;
|
80 |
-
position: relative;
|
81 |
-
overflow: hidden;
|
82 |
-
margin: 12px 0;
|
83 |
-
background: #ECECEC;
|
84 |
-
-moz-border-radius: 3px;
|
85 |
-
-webkit-border-radius: 3px;
|
86 |
-
border-radius: 3px;
|
87 |
-
}
|
88 |
-
.bws_banner_on_plugin_page .text {
|
89 |
-
color: #000;
|
90 |
-
font-size: 15px;
|
91 |
-
line-height: 26px;
|
92 |
-
margin: 18px 18px 14px;
|
93 |
-
float: left;
|
94 |
-
width: 80%;
|
95 |
-
}
|
96 |
-
.bws_banner_on_plugin_page .text span {
|
97 |
-
font-size: 12px;
|
98 |
-
opacity: 0.7;
|
99 |
-
}
|
100 |
-
.bws_banner_on_plugin_page .button {
|
101 |
-
float: left;
|
102 |
-
border: none;
|
103 |
-
font-size: 14px;
|
104 |
-
margin: 18px 0 18px 16px;
|
105 |
-
padding: 14px 0;
|
106 |
-
color: #FFF;
|
107 |
-
text-shadow: none;
|
108 |
-
font-weight: bold;
|
109 |
-
background: #0074A2;
|
110 |
-
-moz-border-radius: 3px;
|
111 |
-
border-radius: 3px;
|
112 |
-
-webkit-border-radius: 3px;
|
113 |
-
text-decoration: none;
|
114 |
-
height: 50px;
|
115 |
-
text-align: center;
|
116 |
-
text-transform: uppercase;
|
117 |
-
width: 147px;
|
118 |
-
box-shadow: none;
|
119 |
-
}
|
120 |
-
.bws_banner_on_plugin_page .button:hover,
|
121 |
-
.bws_banner_on_plugin_page .button:focus {
|
122 |
-
background: #222;
|
123 |
-
color: #FFF;
|
124 |
-
}
|
125 |
-
.bws_banner_on_plugin_page .icon {
|
126 |
-
float: right;
|
127 |
-
margin: 18px 8px 8px 0;
|
128 |
-
}
|
129 |
-
.bws_banner_on_plugin_page .close_icon {
|
130 |
-
float: right;
|
131 |
-
margin: 8px;
|
132 |
-
cursor: pointer;
|
133 |
-
}
|
134 |
-
/*
|
135 |
-
* Plugin styles
|
136 |
-
*/
|
137 |
-
#fcbk_settings_form select,
|
138 |
-
#fcbk_settings_form input[type="text"],
|
139 |
-
#fcbk_settings_form input[type="file"] {
|
140 |
-
min-width: 200px;
|
141 |
-
}
|
142 |
-
#fcbk_settings_form label code {
|
143 |
-
background: none;
|
144 |
-
}
|
145 |
-
#fcbk_share {
|
146 |
-
clear: both;
|
147 |
-
height: 40px;
|
148 |
-
}
|
149 |
-
.fcbk_button {
|
150 |
-
float: left;
|
151 |
-
margin-right: 10px;
|
152 |
-
}
|
153 |
-
.fcbk_button a {
|
154 |
-
height: 40px;
|
155 |
-
display: block;
|
156 |
-
}
|
157 |
-
.fcbk_button a:hover {
|
158 |
-
opacity: 0.9;
|
159 |
-
}
|
160 |
-
.fcbk_like {
|
161 |
-
float: left;
|
162 |
-
position: relative;
|
163 |
-
top: -3px;
|
164 |
-
}
|
165 |
-
.fb_edge_widget_with_comment span {
|
166 |
-
width: 450px !important;
|
167 |
-
}
|
168 |
-
.fcbk_like iframe {
|
169 |
-
max-width: 450px;
|
170 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
facebook-button-plugin.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Facebook Button
|
|
4 |
Plugin URI: http://bestwebsoft.com/plugin/
|
5 |
Description: Put Facebook Button in to your post.
|
6 |
Author: BestWebSoft
|
7 |
-
Version: 2.
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
@@ -25,10 +25,49 @@ License: GPLv2 or later
|
|
25 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
26 |
*/
|
27 |
|
28 |
-
require_once( dirname( __FILE__ ) . '/bws_menu/bws_menu.php' );
|
29 |
-
|
30 |
if ( ! function_exists( 'fcbkbttn_add_pages' ) ) {
|
31 |
function fcbkbttn_add_pages() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
add_menu_page( 'BWS Plugins', 'BWS Plugins', 'manage_options', 'bws_plugins', 'bws_add_menu_render', plugins_url( "images/px.png", __FILE__ ), 1001 );
|
33 |
add_submenu_page( 'bws_plugins', __( 'Facebook Button Settings', 'facebook' ), __( 'Facebook Button', 'facebook' ), 'manage_options', "facebook-button-plugin.php", 'fcbkbttn_settings_page' );
|
34 |
}
|
@@ -52,10 +91,13 @@ if ( ! function_exists( 'fcbkbttn_init' ) ) {
|
|
52 |
if ( ! function_exists( 'fcbkbttn_admin_init' ) ) {
|
53 |
function fcbkbttn_admin_init() {
|
54 |
/* Add variable for bws_menu */
|
55 |
-
global $bws_plugin_info;
|
|
|
|
|
|
|
|
|
56 |
if ( ! isset( $bws_plugin_info ) || empty( $bws_plugin_info ) ) {
|
57 |
-
$
|
58 |
-
$bws_plugin_info = array( 'id' => '78', 'version' => $plugin_info["Version"] );
|
59 |
}
|
60 |
/* Function check if plugin is compatible with current WP version */
|
61 |
fcbkbttn_version_check();
|
@@ -64,15 +106,17 @@ if ( ! function_exists( 'fcbkbttn_admin_init' ) ) {
|
|
64 |
|
65 |
if ( ! function_exists( 'fcbkbttn_settings' ) ) {
|
66 |
function fcbkbttn_settings() {
|
67 |
-
global $wpmu, $fcbkbttn_options;
|
68 |
|
69 |
-
if ( !
|
70 |
-
|
|
|
71 |
|
72 |
-
|
|
|
73 |
|
74 |
$fcbkbttn_options_default = array(
|
75 |
-
'plugin_option_version' => $
|
76 |
'link' => '',
|
77 |
'my_page' => 1,
|
78 |
'like' => 1,
|
@@ -118,11 +162,15 @@ if ( ! function_exists( 'fcbkbttn_settings' ) ) {
|
|
118 |
else
|
119 |
$fcbkbttn_options = get_option( 'fcbk_bttn_plgn_options' );
|
120 |
|
121 |
-
if ( ! isset( $fcbkbttn_options['plugin_option_version'] ) || $fcbkbttn_options['plugin_option_version'] != $
|
122 |
if ( stristr( $fcbkbttn_options['fb_img_link'], 'standart-facebook-ico.jpg' ) )
|
123 |
$fcbkbttn_options['fb_img_link'] = plugins_url( "images/standart-facebook-ico.png", __FILE__ );
|
124 |
|
|
|
|
|
|
|
125 |
$fcbkbttn_options = array_merge( $fcbkbttn_options_default, $fcbkbttn_options );
|
|
|
126 |
update_option( 'fcbk_bttn_plgn_options', $fcbkbttn_options );
|
127 |
}
|
128 |
}
|
@@ -131,14 +179,13 @@ if ( ! function_exists( 'fcbkbttn_settings' ) ) {
|
|
131 |
/* Function check if plugin is compatible with current WP version */
|
132 |
if ( ! function_exists ( 'fcbkbttn_version_check' ) ) {
|
133 |
function fcbkbttn_version_check() {
|
134 |
-
global $wp_version;
|
135 |
-
$plugin_data = get_plugin_data( __FILE__, false );
|
136 |
$require_wp = "3.0"; /* Wordpress at least requires version */
|
137 |
$plugin = plugin_basename( __FILE__ );
|
138 |
if ( version_compare( $wp_version, $require_wp, "<" ) ) {
|
139 |
if ( is_plugin_active( $plugin ) ) {
|
140 |
deactivate_plugins( $plugin );
|
141 |
-
wp_die( "<strong>" . $
|
142 |
}
|
143 |
}
|
144 |
}
|
@@ -147,10 +194,9 @@ if ( ! function_exists ( 'fcbkbttn_version_check' ) ) {
|
|
147 |
/* Function formed content of the plugin's admin page. */
|
148 |
if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
|
149 |
function fcbkbttn_settings_page() {
|
150 |
-
global $fcbkbttn_options, $wp_version;
|
151 |
$copy = false;
|
152 |
$message = $error = "";
|
153 |
-
$plugin_info = get_plugin_data( __FILE__ );
|
154 |
|
155 |
if ( false !== @copy( plugin_dir_path( __FILE__ ) . "images/facebook-ico." . $fcbkbttn_options['extention'], plugin_dir_path( __FILE__ ) . "images/facebook-ico3." . $fcbkbttn_options['extention'] ) )
|
156 |
$copy = true;
|
@@ -443,13 +489,11 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
|
|
443 |
<span style="color: rgb(136, 136, 136); font-size: 10px; display:inline">(<?php echo __( "Use this tag to improve validation of your site", 'facebook' ); ?>)</span>
|
444 |
</td>
|
445 |
</tr>
|
446 |
-
<tr>
|
447 |
-
<td colspan="2">
|
448 |
-
<input type="hidden" name="fcbkbttn_form_submit" value="submit" />
|
449 |
-
<input type="submit" class="button-primary" value="<?php _e( 'Save Changes', 'facebook' ); ?>" />
|
450 |
-
</td>
|
451 |
-
</tr>
|
452 |
</table>
|
|
|
|
|
|
|
|
|
453 |
<?php wp_nonce_field( plugin_basename( __FILE__ ), 'fcbkbttn_nonce_name' ); ?>
|
454 |
</form>
|
455 |
<div class="bws-plugin-reviews">
|
@@ -463,39 +507,51 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
|
|
463 |
</div>
|
464 |
</div>
|
465 |
<?php } elseif ( 'extra' == $_GET['action'] ) { ?>
|
466 |
-
<
|
467 |
-
<
|
468 |
-
<
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
<
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
499 |
<?php } elseif ( 'go_pro' == $_GET['action'] ) { ?>
|
500 |
<?php if ( isset( $pro_plugin_is_activated ) && true === $pro_plugin_is_activated ) { ?>
|
501 |
<script type="text/javascript">
|
@@ -512,7 +568,7 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
|
|
512 |
<form method="post" action="admin.php?page=facebook-button-plugin.php&action=go_pro">
|
513 |
<p>
|
514 |
<?php _e( 'You can download and activate', 'facebook' ); ?>
|
515 |
-
<a href="http://bestwebsoft.com/plugin/facebook-like-button-pro/?k=427287ceae749cbd015b4bba6041c4b8&pn=78&v=<?php echo $
|
516 |
<?php _e( 'version of this plugin by entering Your license key.', 'facebook' ); ?><br />
|
517 |
<span style="color: #888888;font-size: 10px;">
|
518 |
<?php _e( 'You can find your license key on your personal page Client area, by clicking on the link', 'facebook' ); ?>
|
@@ -693,24 +749,22 @@ if ( ! function_exists( 'fcbkbttn_front_end_head' ) ) {
|
|
693 |
|
694 |
if ( ! function_exists( 'fcbkbttn_admin_head' ) ) {
|
695 |
function fcbkbttn_admin_head() {
|
696 |
-
|
697 |
-
if ( $wp_version < 3.8 )
|
698 |
-
wp_enqueue_style( 'fcbk_stylesheet', plugins_url( 'css/style_wp_before_3.8.css', __FILE__ ) );
|
699 |
-
else
|
700 |
wp_enqueue_style( 'fcbk_stylesheet', plugins_url( 'css/style.css', __FILE__ ) );
|
701 |
-
|
702 |
-
if ( isset( $_GET['page'] ) && "facebook-button-plugin.php" == $_GET['page'] )
|
703 |
wp_enqueue_script( 'fcbk_script', plugins_url( 'js/script.js', __FILE__ ) );
|
|
|
704 |
}
|
705 |
}
|
706 |
|
707 |
if ( ! function_exists ( 'fcbkbttn_plugin_banner' ) ) {
|
708 |
function fcbkbttn_plugin_banner() {
|
709 |
global $hook_suffix;
|
710 |
-
if ( 'plugins.php' == $hook_suffix ) {
|
|
|
711 |
$banner_array = array(
|
712 |
array( 'pdtr_hide_banner_on_plugin_page', 'updater/updater.php', '1.12' ),
|
713 |
-
array( 'cntctfrmtdb_hide_banner_on_plugin_page', 'contact-form-to-db/contact_form_to_db.php', '1.2' ),
|
|
|
714 |
array( 'fcbkbttn_hide_banner_on_plugin_page', 'facebook-button-plugin/facebook-button-plugin.php', '2.29' ),
|
715 |
array( 'twttr_hide_banner_on_plugin_page', 'twitter-plugin/twitter.php', '2.34' ),
|
716 |
array( 'pdfprnt_hide_banner_on_plugin_page', 'pdf-print/pdf-print.php', '1.7.1' ),
|
@@ -722,22 +776,28 @@ if ( ! function_exists ( 'fcbkbttn_plugin_banner' ) ) {
|
|
722 |
array( 'cptch_hide_banner_on_plugin_page', 'captcha/captcha.php', '3.8.4' ),
|
723 |
array( 'gllr_hide_banner_on_plugin_page', 'gallery-plugin/gallery-plugin.php', '3.9.1' )
|
724 |
);
|
725 |
-
|
726 |
if ( ! function_exists( 'is_plugin_active_for_network' ) )
|
727 |
require_once( ABSPATH . '/wp-admin/includes/plugin.php' );
|
|
|
728 |
$active_plugins = get_option( 'active_plugins' );
|
729 |
$all_plugins = get_plugins();
|
730 |
$this_banner = 'fcbkbttn_hide_banner_on_plugin_page';
|
731 |
foreach ( $banner_array as $key => $value ) {
|
732 |
if ( $this_banner == $value[0] ) {
|
733 |
-
global $wp_version;
|
734 |
-
|
|
|
|
|
|
|
735 |
<script type="text/javascript">
|
736 |
(function($) {
|
737 |
$(document).ready( function() {
|
738 |
var hide_message = $.cookie( "fcbkbttn_hide_banner_on_plugin_page" );
|
739 |
if ( hide_message == "true") {
|
740 |
$( ".fcbkbttn_message" ).css( "display", "none" );
|
|
|
|
|
741 |
};
|
742 |
$( ".fcbkbttn_close_icon" ).click( function() {
|
743 |
$( ".fcbkbttn_message" ).css( "display", "none" );
|
@@ -747,17 +807,21 @@ if ( ! function_exists ( 'fcbkbttn_plugin_banner' ) ) {
|
|
747 |
})(jQuery);
|
748 |
</script>
|
749 |
<div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
|
750 |
-
<div class="fcbkbttn_message bws_banner_on_plugin_page">
|
751 |
-
<img class="fcbkbttn_close_icon close_icon" title="" src="
|
752 |
-
<
|
|
|
|
|
753 |
<div class="text">
|
754 |
-
|
755 |
-
<span
|
756 |
</div>
|
757 |
-
<
|
|
|
|
|
758 |
</div>
|
759 |
-
</div>
|
760 |
-
break;
|
761 |
}
|
762 |
if ( isset( $all_plugins[ $value[1] ] ) && $all_plugins[ $value[1] ]["Version"] >= $value[2] && ( 0 < count( preg_grep( '/' . str_replace( '/', '\/', $value[1] ) . '/', $active_plugins ) ) || is_plugin_active_for_network( $value[1] ) ) && ! isset( $_COOKIE[ $value[0] ] ) ) {
|
763 |
break;
|
4 |
Plugin URI: http://bestwebsoft.com/plugin/
|
5 |
Description: Put Facebook Button in to your post.
|
6 |
Author: BestWebSoft
|
7 |
+
Version: 2.30
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
25 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
26 |
*/
|
27 |
|
|
|
|
|
28 |
if ( ! function_exists( 'fcbkbttn_add_pages' ) ) {
|
29 |
function fcbkbttn_add_pages() {
|
30 |
+
global $bstwbsftwppdtplgns_options, $wpmu, $bstwbsftwppdtplgns_added_menu;
|
31 |
+
$bws_menu_version = '1.2.6';
|
32 |
+
$base = plugin_basename(__FILE__);
|
33 |
+
|
34 |
+
if ( ! isset( $bstwbsftwppdtplgns_options ) ) {
|
35 |
+
if ( 1 == $wpmu ) {
|
36 |
+
if ( ! get_site_option( 'bstwbsftwppdtplgns_options' ) )
|
37 |
+
add_site_option( 'bstwbsftwppdtplgns_options', array(), '', 'yes' );
|
38 |
+
$bstwbsftwppdtplgns_options = get_site_option( 'bstwbsftwppdtplgns_options' );
|
39 |
+
} else {
|
40 |
+
if ( ! get_option( 'bstwbsftwppdtplgns_options' ) )
|
41 |
+
add_option( 'bstwbsftwppdtplgns_options', array(), '', 'yes' );
|
42 |
+
$bstwbsftwppdtplgns_options = get_option( 'bstwbsftwppdtplgns_options' );
|
43 |
+
}
|
44 |
+
}
|
45 |
+
|
46 |
+
if ( isset( $bstwbsftwppdtplgns_options['bws_menu_version'] ) ) {
|
47 |
+
$bstwbsftwppdtplgns_options['bws_menu']['version'][ $base ] = $bws_menu_version;
|
48 |
+
unset( $bstwbsftwppdtplgns_options['bws_menu_version'] );
|
49 |
+
update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options, '', 'yes' );
|
50 |
+
require_once( dirname( __FILE__ ) . '/bws_menu/bws_menu.php' );
|
51 |
+
} else if ( ! isset( $bstwbsftwppdtplgns_options['bws_menu']['version'][ $base ] ) || $bstwbsftwppdtplgns_options['bws_menu']['version'][ $base ] < $bws_menu_version ) {
|
52 |
+
$bstwbsftwppdtplgns_options['bws_menu']['version'][ $base ] = $bws_menu_version;
|
53 |
+
update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options, '', 'yes' );
|
54 |
+
require_once( dirname( __FILE__ ) . '/bws_menu/bws_menu.php' );
|
55 |
+
} else if ( ! isset( $bstwbsftwppdtplgns_added_menu ) ) {
|
56 |
+
$plugin_with_newer_menu = $base;
|
57 |
+
foreach ( $bstwbsftwppdtplgns_options['bws_menu']['version'] as $key => $value ) {
|
58 |
+
if ( $bws_menu_version < $value && is_plugin_active( $base ) ) {
|
59 |
+
$plugin_with_newer_menu = $key;
|
60 |
+
}
|
61 |
+
}
|
62 |
+
$plugin_with_newer_menu = explode( '/', $plugin_with_newer_menu );
|
63 |
+
$wp_content_dir = defined( 'WP_CONTENT_DIR' ) ? basename( WP_CONTENT_DIR ) : 'wp-content';
|
64 |
+
if ( file_exists( ABSPATH . $wp_content_dir . '/plugins/' . $plugin_with_newer_menu[0] . '/bws_menu/bws_menu.php' ) )
|
65 |
+
require_once( ABSPATH . $wp_content_dir . '/plugins/' . $plugin_with_newer_menu[0] . '/bws_menu/bws_menu.php' );
|
66 |
+
else
|
67 |
+
require_once( dirname( __FILE__ ) . '/bws_menu/bws_menu.php' );
|
68 |
+
$bstwbsftwppdtplgns_added_menu = true;
|
69 |
+
}
|
70 |
+
|
71 |
add_menu_page( 'BWS Plugins', 'BWS Plugins', 'manage_options', 'bws_plugins', 'bws_add_menu_render', plugins_url( "images/px.png", __FILE__ ), 1001 );
|
72 |
add_submenu_page( 'bws_plugins', __( 'Facebook Button Settings', 'facebook' ), __( 'Facebook Button', 'facebook' ), 'manage_options', "facebook-button-plugin.php", 'fcbkbttn_settings_page' );
|
73 |
}
|
91 |
if ( ! function_exists( 'fcbkbttn_admin_init' ) ) {
|
92 |
function fcbkbttn_admin_init() {
|
93 |
/* Add variable for bws_menu */
|
94 |
+
global $bws_plugin_info, $fcbkbttn_plugin_info;
|
95 |
+
|
96 |
+
if ( ! $fcbkbttn_plugin_info )
|
97 |
+
$fcbkbttn_plugin_info = get_plugin_data( __FILE__ );
|
98 |
+
|
99 |
if ( ! isset( $bws_plugin_info ) || empty( $bws_plugin_info ) ) {
|
100 |
+
$bws_plugin_info = array( 'id' => '78', 'version' => $fcbkbttn_plugin_info["Version"] );
|
|
|
101 |
}
|
102 |
/* Function check if plugin is compatible with current WP version */
|
103 |
fcbkbttn_version_check();
|
106 |
|
107 |
if ( ! function_exists( 'fcbkbttn_settings' ) ) {
|
108 |
function fcbkbttn_settings() {
|
109 |
+
global $wpmu, $fcbkbttn_options, $fcbkbttn_plugin_info;
|
110 |
|
111 |
+
if ( ! $fcbkbttn_plugin_info ) {
|
112 |
+
if ( ! function_exists( 'get_plugin_data' ) )
|
113 |
+
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
114 |
|
115 |
+
$fcbkbttn_plugin_info = get_plugin_data( __FILE__ );
|
116 |
+
}
|
117 |
|
118 |
$fcbkbttn_options_default = array(
|
119 |
+
'plugin_option_version' => $fcbkbttn_plugin_info["Version"],
|
120 |
'link' => '',
|
121 |
'my_page' => 1,
|
122 |
'like' => 1,
|
162 |
else
|
163 |
$fcbkbttn_options = get_option( 'fcbk_bttn_plgn_options' );
|
164 |
|
165 |
+
if ( ! isset( $fcbkbttn_options['plugin_option_version'] ) || $fcbkbttn_options['plugin_option_version'] != $fcbkbttn_plugin_info["Version"] ) {
|
166 |
if ( stristr( $fcbkbttn_options['fb_img_link'], 'standart-facebook-ico.jpg' ) )
|
167 |
$fcbkbttn_options['fb_img_link'] = plugins_url( "images/standart-facebook-ico.png", __FILE__ );
|
168 |
|
169 |
+
if ( stristr( $fcbkbttn_options['fb_img_link'], 'img/' ) )
|
170 |
+
$fcbkbttn_options['fb_img_link'] = plugins_url( str_replace( 'img/', 'images/', $fcbkbttn_options['fb_img_link'] ), __FILE__ );
|
171 |
+
|
172 |
$fcbkbttn_options = array_merge( $fcbkbttn_options_default, $fcbkbttn_options );
|
173 |
+
$fcbkbttn_options['plugin_option_version'] = $fcbkbttn_plugin_info["Version"];
|
174 |
update_option( 'fcbk_bttn_plgn_options', $fcbkbttn_options );
|
175 |
}
|
176 |
}
|
179 |
/* Function check if plugin is compatible with current WP version */
|
180 |
if ( ! function_exists ( 'fcbkbttn_version_check' ) ) {
|
181 |
function fcbkbttn_version_check() {
|
182 |
+
global $wp_version, $fcbkbttn_plugin_info;
|
|
|
183 |
$require_wp = "3.0"; /* Wordpress at least requires version */
|
184 |
$plugin = plugin_basename( __FILE__ );
|
185 |
if ( version_compare( $wp_version, $require_wp, "<" ) ) {
|
186 |
if ( is_plugin_active( $plugin ) ) {
|
187 |
deactivate_plugins( $plugin );
|
188 |
+
wp_die( "<strong>" . $fcbkbttn_plugin_info['Name'] . " </strong> " . __( 'requires', 'facebook' ) . " <strong>WordPress " . $require_wp . "</strong> " . __( 'or higher, that is why it has been deactivated! Please upgrade WordPress and try again.', 'facebook') . "<br /><br />" . __( 'Back to the WordPress', 'facebook') . " <a href='" . get_admin_url( null, 'plugins.php' ) . "'>" . __( 'Plugins page', 'facebook') . "</a>." );
|
189 |
}
|
190 |
}
|
191 |
}
|
194 |
/* Function formed content of the plugin's admin page. */
|
195 |
if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
|
196 |
function fcbkbttn_settings_page() {
|
197 |
+
global $fcbkbttn_options, $wp_version, $fcbkbttn_plugin_info;
|
198 |
$copy = false;
|
199 |
$message = $error = "";
|
|
|
200 |
|
201 |
if ( false !== @copy( plugin_dir_path( __FILE__ ) . "images/facebook-ico." . $fcbkbttn_options['extention'], plugin_dir_path( __FILE__ ) . "images/facebook-ico3." . $fcbkbttn_options['extention'] ) )
|
202 |
$copy = true;
|
489 |
<span style="color: rgb(136, 136, 136); font-size: 10px; display:inline">(<?php echo __( "Use this tag to improve validation of your site", 'facebook' ); ?>)</span>
|
490 |
</td>
|
491 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
492 |
</table>
|
493 |
+
<input type="hidden" name="fcbkbttn_form_submit" value="submit" />
|
494 |
+
<p class="submit">
|
495 |
+
<input type="submit" class="button-primary" value="<?php _e( 'Save Changes', 'facebook' ); ?>" />
|
496 |
+
</p>
|
497 |
<?php wp_nonce_field( plugin_basename( __FILE__ ), 'fcbkbttn_nonce_name' ); ?>
|
498 |
</form>
|
499 |
<div class="bws-plugin-reviews">
|
507 |
</div>
|
508 |
</div>
|
509 |
<?php } elseif ( 'extra' == $_GET['action'] ) { ?>
|
510 |
+
<div class="bws_pro_version_bloc">
|
511 |
+
<div class="bws_pro_version_table_bloc">
|
512 |
+
<div class="bws_table_bg"></div>
|
513 |
+
<table class="form-table bws_pro_version">
|
514 |
+
<tr valign="top">
|
515 |
+
<td colspan="2">
|
516 |
+
<?php _e( 'Please choose the necessary post types (or single pages) where Facebook button will be displayed:', 'facebook' ); ?>
|
517 |
+
</td>
|
518 |
+
</tr>
|
519 |
+
<tr valign="top">
|
520 |
+
<td colspan="2">
|
521 |
+
<label>
|
522 |
+
<input disabled="disabled" checked="checked" type="checkbox" name="jstree_url" value="1" />
|
523 |
+
<?php _e( "Show URL for pages", 'facebook' );?>
|
524 |
+
</label>
|
525 |
+
</td>
|
526 |
+
</tr>
|
527 |
+
<tr valign="top">
|
528 |
+
<td colspan="2">
|
529 |
+
<img src="<?php echo plugins_url( 'images/pro_screen_1.png', __FILE__ ); ?>" alt="<?php _e( "Example of site pages' tree", 'facebook' ); ?>" title="<?php _e( "Example of site pages' tree", 'facebook' ); ?>" />
|
530 |
+
</td>
|
531 |
+
</tr>
|
532 |
+
<tr valign="top">
|
533 |
+
<td colspan="2">
|
534 |
+
<input disabled="disabled" type="submit" class="button-primary" value="<?php _e( 'Save Changes', 'facebook' ); ?>" />
|
535 |
+
</td>
|
536 |
+
</tr>
|
537 |
+
<tr valign="top">
|
538 |
+
<th scope="row" colspan="2">
|
539 |
+
* <?php _e( 'If you upgrade to Pro version all your settings will be saved.', 'facebook' ); ?>
|
540 |
+
</th>
|
541 |
+
</tr>
|
542 |
+
</table>
|
543 |
+
</div>
|
544 |
+
<div class="bws_pro_version_tooltip">
|
545 |
+
<div class="bws_info">
|
546 |
+
<?php _e( 'Unlock premium options by upgrading to a PRO version.', 'facebook' ); ?>
|
547 |
+
<a href="http://bestwebsoft.com/plugin/facebook-like-button-pro/?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>
|
548 |
+
</div>
|
549 |
+
<a class="bws_button" href="http://bestwebsoft.com/plugin/facebook-like-button-pro/?k=427287ceae749cbd015b4bba6041c4b8&pn=78&v=<?php echo $fcbkbttn_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>#purchase" target="_blank" title="Facebook Like Button Pro">
|
550 |
+
<?php _e( 'Go', 'facebook' ); ?> <strong>PRO</strong>
|
551 |
+
</a>
|
552 |
+
<div class="clear"></div>
|
553 |
+
</div>
|
554 |
+
</div>
|
555 |
<?php } elseif ( 'go_pro' == $_GET['action'] ) { ?>
|
556 |
<?php if ( isset( $pro_plugin_is_activated ) && true === $pro_plugin_is_activated ) { ?>
|
557 |
<script type="text/javascript">
|
568 |
<form method="post" action="admin.php?page=facebook-button-plugin.php&action=go_pro">
|
569 |
<p>
|
570 |
<?php _e( 'You can download and activate', 'facebook' ); ?>
|
571 |
+
<a href="http://bestwebsoft.com/plugin/facebook-like-button-pro/?k=427287ceae749cbd015b4bba6041c4b8&pn=78&v=<?php echo $fcbkbttn_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Facebook Like Button Pro">PRO</a>
|
572 |
<?php _e( 'version of this plugin by entering Your license key.', 'facebook' ); ?><br />
|
573 |
<span style="color: #888888;font-size: 10px;">
|
574 |
<?php _e( 'You can find your license key on your personal page Client area, by clicking on the link', 'facebook' ); ?>
|
749 |
|
750 |
if ( ! function_exists( 'fcbkbttn_admin_head' ) ) {
|
751 |
function fcbkbttn_admin_head() {
|
752 |
+
if ( isset( $_GET['page'] ) && "facebook-button-plugin.php" == $_GET['page'] ) {
|
|
|
|
|
|
|
753 |
wp_enqueue_style( 'fcbk_stylesheet', plugins_url( 'css/style.css', __FILE__ ) );
|
|
|
|
|
754 |
wp_enqueue_script( 'fcbk_script', plugins_url( 'js/script.js', __FILE__ ) );
|
755 |
+
}
|
756 |
}
|
757 |
}
|
758 |
|
759 |
if ( ! function_exists ( 'fcbkbttn_plugin_banner' ) ) {
|
760 |
function fcbkbttn_plugin_banner() {
|
761 |
global $hook_suffix;
|
762 |
+
if ( 'plugins.php' == $hook_suffix ) {
|
763 |
+
global $fcbkbttn_plugin_info;
|
764 |
$banner_array = array(
|
765 |
array( 'pdtr_hide_banner_on_plugin_page', 'updater/updater.php', '1.12' ),
|
766 |
+
array( 'cntctfrmtdb_hide_banner_on_plugin_page', 'contact-form-to-db/contact_form_to_db.php', '1.2' ),
|
767 |
+
array( 'gglmps_hide_banner_on_plugin_page', 'bws-google-maps/bws-google-maps.php', '1.2' ),
|
768 |
array( 'fcbkbttn_hide_banner_on_plugin_page', 'facebook-button-plugin/facebook-button-plugin.php', '2.29' ),
|
769 |
array( 'twttr_hide_banner_on_plugin_page', 'twitter-plugin/twitter.php', '2.34' ),
|
770 |
array( 'pdfprnt_hide_banner_on_plugin_page', 'pdf-print/pdf-print.php', '1.7.1' ),
|
776 |
array( 'cptch_hide_banner_on_plugin_page', 'captcha/captcha.php', '3.8.4' ),
|
777 |
array( 'gllr_hide_banner_on_plugin_page', 'gallery-plugin/gallery-plugin.php', '3.9.1' )
|
778 |
);
|
779 |
+
|
780 |
if ( ! function_exists( 'is_plugin_active_for_network' ) )
|
781 |
require_once( ABSPATH . '/wp-admin/includes/plugin.php' );
|
782 |
+
|
783 |
$active_plugins = get_option( 'active_plugins' );
|
784 |
$all_plugins = get_plugins();
|
785 |
$this_banner = 'fcbkbttn_hide_banner_on_plugin_page';
|
786 |
foreach ( $banner_array as $key => $value ) {
|
787 |
if ( $this_banner == $value[0] ) {
|
788 |
+
global $wp_version, $bstwbsftwppdtplgns_cookie_add;
|
789 |
+
if ( ! isset( $bstwbsftwppdtplgns_cookie_add ) ) {
|
790 |
+
echo '<script type="text/javascript" src="' . plugins_url( 'js/c_o_o_k_i_e.js', __FILE__ ) . '"></script>';
|
791 |
+
$bstwbsftwppdtplgns_cookie_add = true;
|
792 |
+
} ?>
|
793 |
<script type="text/javascript">
|
794 |
(function($) {
|
795 |
$(document).ready( function() {
|
796 |
var hide_message = $.cookie( "fcbkbttn_hide_banner_on_plugin_page" );
|
797 |
if ( hide_message == "true") {
|
798 |
$( ".fcbkbttn_message" ).css( "display", "none" );
|
799 |
+
} else {
|
800 |
+
$( ".fcbkbttn_message" ).css( "display", "block" );
|
801 |
};
|
802 |
$( ".fcbkbttn_close_icon" ).click( function() {
|
803 |
$( ".fcbkbttn_message" ).css( "display", "none" );
|
807 |
})(jQuery);
|
808 |
</script>
|
809 |
<div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
|
810 |
+
<div class="fcbkbttn_message bws_banner_on_plugin_page" style="display: none;">
|
811 |
+
<img class="fcbkbttn_close_icon close_icon" title="" src="<?php echo plugins_url( 'images/close_banner.png', __FILE__ ); ?>" alt=""/>
|
812 |
+
<div class="button_div">
|
813 |
+
<a class="button" target="_blank" href="http://bestwebsoft.com/plugin/facebook-like-button-pro/?k=45862a4b3cd7a03768666310fbdb19db&pn=78&v=<?php echo $fcbkbttn_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>"><?php _e( "Learn More", 'facebook' ); ?></a>
|
814 |
+
</div>
|
815 |
<div class="text">
|
816 |
+
<?php _e( "It's time to upgrade your <strong>Facebook Like Button</strong> to <strong>PRO</strong> version", 'facebook' ); ?>!<br />
|
817 |
+
<span><?php _e( 'Extend standard plugin functionality with new great options', 'facebook' ); ?>.</span>
|
818 |
</div>
|
819 |
+
<div class="icon">
|
820 |
+
<img title="" src="<?php echo plugins_url( 'images/banner.png', __FILE__ ); ?>" alt=""/>
|
821 |
+
</div>
|
822 |
</div>
|
823 |
+
</div>
|
824 |
+
<?php break;
|
825 |
}
|
826 |
if ( isset( $all_plugins[ $value[1] ] ) && $all_plugins[ $value[1] ]["Version"] >= $value[2] && ( 0 < count( preg_grep( '/' . str_replace( '/', '\/', $value[1] ) . '/', $active_plugins ) ) || is_plugin_active_for_network( $value[1] ) ) && ! isset( $_COOKIE[ $value[0] ] ) ) {
|
827 |
break;
|
languages/facebook-ar_AR.mo
CHANGED
Binary file
|
languages/facebook-ar_AR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-
|
6 |
-
"PO-Revision-Date: 2014-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Albayan Design Hani aladoli <info@albayan-design.com>\n"
|
9 |
"Language: ar\n"
|
@@ -16,303 +16,312 @@ 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:
|
21 |
#, fuzzy
|
22 |
msgid "Facebook Button Settings"
|
23 |
msgstr "اعدادات زر الفيس بوك"
|
24 |
|
25 |
-
#: facebook-button-plugin.php:
|
26 |
#, fuzzy
|
27 |
msgid "Facebook Button"
|
28 |
msgstr "زر الفيس بوك"
|
29 |
|
30 |
-
#: facebook-button-plugin.php:
|
31 |
msgid "requires"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: facebook-button-plugin.php:
|
35 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: facebook-button-plugin.php:
|
39 |
msgid "Back to the WordPress"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: facebook-button-plugin.php:
|
43 |
#, fuzzy
|
44 |
msgid "Plugins page"
|
45 |
msgstr "Плагины BWS"
|
46 |
|
47 |
-
#: facebook-button-plugin.php:
|
48 |
#, fuzzy
|
49 |
msgid "Settings saved"
|
50 |
msgstr "الاعدادات "
|
51 |
|
52 |
-
#: facebook-button-plugin.php:
|
53 |
msgid "Error: File size > 32K"
|
54 |
msgstr "خطاء : حجم الملف : > 32К"
|
55 |
|
56 |
-
#: facebook-button-plugin.php:
|
57 |
msgid "Error: Invalid file type"
|
58 |
msgstr "خطاء : نوع الملف غير صحيح"
|
59 |
|
60 |
-
#: facebook-button-plugin.php:
|
61 |
msgid "Error: moving file failed"
|
62 |
msgstr "خطاء : فشل في نقل الملف"
|
63 |
|
64 |
-
#: facebook-button-plugin.php:
|
65 |
msgid "Error: check image width or height"
|
66 |
msgstr "خطاء : تأكد من عرض وطول الصورة"
|
67 |
|
68 |
-
#: facebook-button-plugin.php:
|
69 |
msgid "Uploading Error: check image properties"
|
70 |
msgstr "خطاء في الرفع : تأكد من خصائص الصورة"
|
71 |
|
72 |
-
#: facebook-button-plugin.php:
|
73 |
-
#: facebook-button-plugin.php:
|
74 |
msgid "Wrong license key"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: facebook-button-plugin.php:
|
78 |
msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: facebook-button-plugin.php:
|
82 |
msgid "This license key is bind to another site"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: facebook-button-plugin.php:
|
86 |
msgid "Unfortunately, you have exceeded the number of available tries. Please, upload the plugin manually."
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: facebook-button-plugin.php:
|
90 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: facebook-button-plugin.php:
|
94 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: facebook-button-plugin.php:
|
98 |
-
#: facebook-button-plugin.php:
|
99 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: facebook-button-plugin.php:
|
103 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: facebook-button-plugin.php:
|
107 |
msgid "Please, enter Your license key"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: facebook-button-plugin.php:
|
111 |
-
#: facebook-button-plugin.php:
|
112 |
-
#: facebook-button-plugin.php:
|
113 |
msgid "Settings"
|
114 |
msgstr "الاعدادات "
|
115 |
|
116 |
-
#: facebook-button-plugin.php:
|
117 |
#, fuzzy
|
118 |
msgid "Extra settings"
|
119 |
msgstr "الاعدادات "
|
120 |
|
121 |
-
#: facebook-button-plugin.php:
|
122 |
msgid "Go PRO"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: facebook-button-plugin.php:
|
126 |
msgid "Notice:"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: facebook-button-plugin.php:
|
130 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: facebook-button-plugin.php:
|
134 |
#, fuzzy
|
135 |
msgid "Your Facebook ID:"
|
136 |
msgstr "اسم حسابك علي الفيس بوك :"
|
137 |
|
138 |
-
#: facebook-button-plugin.php:
|
139 |
msgid "Display button:"
|
140 |
msgstr "عرض الزر :"
|
141 |
|
142 |
-
#: facebook-button-plugin.php:
|
143 |
msgid "My Page"
|
144 |
msgstr "صفحتي"
|
145 |
|
146 |
-
#: facebook-button-plugin.php:
|
147 |
msgid "Like"
|
148 |
msgstr "اعجاب "
|
149 |
|
150 |
-
#: facebook-button-plugin.php:
|
151 |
#, fuzzy
|
152 |
msgid "Choose display settings:"
|
153 |
msgstr "اختار خيار العرض :"
|
154 |
|
155 |
-
#: facebook-button-plugin.php:
|
156 |
#, fuzzy
|
157 |
msgid "Standard Facebook image"
|
158 |
msgstr "صورة الفيس بوك الافتراضية "
|
159 |
|
160 |
-
#: facebook-button-plugin.php:
|
161 |
#, fuzzy
|
162 |
msgid "Custom Facebook image"
|
163 |
msgstr "صورة خاصة للـ فيس بوك"
|
164 |
|
165 |
-
#: facebook-button-plugin.php:
|
166 |
msgid "Current image:"
|
167 |
msgstr "الصورة الحالية : "
|
168 |
|
169 |
-
#: facebook-button-plugin.php:
|
170 |
#, fuzzy
|
171 |
msgid "Facebook image:"
|
172 |
msgstr "صورة الفيس بوك : "
|
173 |
|
174 |
-
#: facebook-button-plugin.php:
|
175 |
#, fuzzy
|
176 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
177 |
msgstr "Propiedades de la imagen: Ancho máx.: 100px; Alto máx.: 40px; Tamaño máx: 32Kb; Tipo de imagen: \"jpg\", \"jpeg\"."
|
178 |
|
179 |
-
#: facebook-button-plugin.php:
|
180 |
#, fuzzy
|
181 |
msgid "Facebook Button Position:"
|
182 |
msgstr "مكان زر الفيس بوك :"
|
183 |
|
184 |
-
#: facebook-button-plugin.php:
|
185 |
msgid "Before"
|
186 |
msgstr "قبل"
|
187 |
|
188 |
-
#: facebook-button-plugin.php:
|
189 |
msgid "After"
|
190 |
msgstr "بعد"
|
191 |
|
192 |
-
#: facebook-button-plugin.php:
|
193 |
msgid "Before and After"
|
194 |
msgstr "قبل و بعد"
|
195 |
|
196 |
-
#: facebook-button-plugin.php:
|
197 |
msgid "Shortcode"
|
198 |
msgstr "الكود"
|
199 |
|
200 |
-
#: facebook-button-plugin.php:
|
201 |
#, fuzzy
|
202 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
203 |
msgstr "اذا كنت ترغب في اضافة زر الفيس بوك علي موقعك انسخ هذه الكود وضعه في المكان المراد ظهور الزر فيه"
|
204 |
|
205 |
-
#: facebook-button-plugin.php:
|
206 |
#, fuzzy
|
207 |
msgid "Facebook Button language:"
|
208 |
msgstr "للغه زر الفيس بوك :"
|
209 |
|
210 |
-
#: facebook-button-plugin.php:
|
211 |
#, fuzzy
|
212 |
msgid "Change the language of Facebook Like Button"
|
213 |
msgstr "اختار اللغه للـ زر الاغحاب"
|
214 |
|
215 |
-
#: facebook-button-plugin.php:
|
216 |
msgid "Html tag for Like Button:"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: facebook-button-plugin.php:
|
220 |
msgid "Use this tag to improve validation of your site"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: facebook-button-plugin.php:
|
224 |
-
#: facebook-button-plugin.php:
|
225 |
msgid "Save Changes"
|
226 |
msgstr "حفظ التغييرات"
|
227 |
|
228 |
-
#: facebook-button-plugin.php:
|
229 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: facebook-button-plugin.php:
|
233 |
#, fuzzy
|
234 |
msgid "Rate the plugin"
|
235 |
msgstr "اضافات موصي بها"
|
236 |
|
237 |
-
#: facebook-button-plugin.php:
|
238 |
msgid "If there is something wrong about it, please contact us"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: facebook-button-plugin.php:
|
242 |
msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: facebook-button-plugin.php:
|
246 |
msgid "Show URL for pages"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: facebook-button-plugin.php:
|
250 |
msgid "Example of site pages' tree"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: facebook-button-plugin.php:
|
254 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: facebook-button-plugin.php:
|
258 |
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: facebook-button-plugin.php:
|
262 |
msgid "Please, go to"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: facebook-button-plugin.php:
|
266 |
#, fuzzy
|
267 |
msgid "the setting page"
|
268 |
msgstr "الاعدادات "
|
269 |
|
270 |
-
#: facebook-button-plugin.php:
|
271 |
msgid "You will be redirected automatically in 5 seconds."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: facebook-button-plugin.php:
|
275 |
msgid "You can download and activate"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: facebook-button-plugin.php:
|
279 |
msgid "version of this plugin by entering Your license key."
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: facebook-button-plugin.php:
|
283 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: facebook-button-plugin.php:
|
287 |
msgid "(your username is the email you specify when purchasing the product)."
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: facebook-button-plugin.php:
|
291 |
-
#: facebook-button-plugin.php:
|
292 |
msgid "Go!"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: facebook-button-plugin.php:
|
296 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: facebook-button-plugin.php:
|
300 |
msgid "FAQ"
|
301 |
msgstr "أسئلة وأجوبة"
|
302 |
|
303 |
-
#: facebook-button-plugin.php:
|
304 |
msgid "Support"
|
305 |
msgstr "الدعم"
|
306 |
|
307 |
-
#: facebook-button-plugin.php:
|
308 |
-
msgid "Learn More"
|
309 |
-
msgstr ""
|
310 |
-
|
311 |
-
#: facebook-button-plugin.php:837
|
312 |
msgid "It's time to upgrade your <strong>Facebook Like Button</strong> to <strong>PRO</strong> version"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: facebook-button-plugin.php:
|
316 |
msgid "Extend standard plugin functionality with new great options"
|
317 |
msgstr ""
|
318 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-04-14 12:41+0300\n"
|
6 |
+
"PO-Revision-Date: 2014-04-14 12:41+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Albayan Design Hani aladoli <info@albayan-design.com>\n"
|
9 |
"Language: ar\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: facebook-button-plugin.php:72
|
20 |
+
#: facebook-button-plugin.php:397
|
21 |
#, fuzzy
|
22 |
msgid "Facebook Button Settings"
|
23 |
msgstr "اعدادات زر الفيس بوك"
|
24 |
|
25 |
+
#: facebook-button-plugin.php:72
|
26 |
#, fuzzy
|
27 |
msgid "Facebook Button"
|
28 |
msgstr "زر الفيس بوك"
|
29 |
|
30 |
+
#: facebook-button-plugin.php:188
|
31 |
msgid "requires"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: facebook-button-plugin.php:188
|
35 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: facebook-button-plugin.php:188
|
39 |
msgid "Back to the WordPress"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: facebook-button-plugin.php:188
|
43 |
#, fuzzy
|
44 |
msgid "Plugins page"
|
45 |
msgstr "Плагины BWS"
|
46 |
|
47 |
+
#: facebook-button-plugin.php:223
|
48 |
#, fuzzy
|
49 |
msgid "Settings saved"
|
50 |
msgstr "الاعدادات "
|
51 |
|
52 |
+
#: facebook-button-plugin.php:245
|
53 |
msgid "Error: File size > 32K"
|
54 |
msgstr "خطاء : حجم الملف : > 32К"
|
55 |
|
56 |
+
#: facebook-button-plugin.php:248
|
57 |
msgid "Error: Invalid file type"
|
58 |
msgstr "خطاء : نوع الملف غير صحيح"
|
59 |
|
60 |
+
#: facebook-button-plugin.php:256
|
61 |
msgid "Error: moving file failed"
|
62 |
msgstr "خطاء : فشل في نقل الملف"
|
63 |
|
64 |
+
#: facebook-button-plugin.php:259
|
65 |
msgid "Error: check image width or height"
|
66 |
msgstr "خطاء : تأكد من عرض وطول الصورة"
|
67 |
|
68 |
+
#: facebook-button-plugin.php:263
|
69 |
msgid "Uploading Error: check image properties"
|
70 |
msgstr "خطاء في الرفع : تأكد من خصائص الصورة"
|
71 |
|
72 |
+
#: facebook-button-plugin.php:288
|
73 |
+
#: facebook-button-plugin.php:327
|
74 |
msgid "Wrong license key"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: facebook-button-plugin.php:320
|
78 |
msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: facebook-button-plugin.php:329
|
82 |
msgid "This license key is bind to another site"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: facebook-button-plugin.php:331
|
86 |
msgid "Unfortunately, you have exceeded the number of available tries. Please, upload the plugin manually."
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: facebook-button-plugin.php:349
|
90 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: facebook-button-plugin.php:355
|
94 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: facebook-button-plugin.php:359
|
98 |
+
#: facebook-button-plugin.php:368
|
99 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: facebook-button-plugin.php:372
|
103 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: facebook-button-plugin.php:387
|
107 |
msgid "Please, enter Your license key"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: facebook-button-plugin.php:399
|
111 |
+
#: facebook-button-plugin.php:720
|
112 |
+
#: facebook-button-plugin.php:732
|
113 |
msgid "Settings"
|
114 |
msgstr "الاعدادات "
|
115 |
|
116 |
+
#: facebook-button-plugin.php:400
|
117 |
#, fuzzy
|
118 |
msgid "Extra settings"
|
119 |
msgstr "الاعدادات "
|
120 |
|
121 |
+
#: facebook-button-plugin.php:401
|
122 |
msgid "Go PRO"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: facebook-button-plugin.php:404
|
126 |
msgid "Notice:"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: facebook-button-plugin.php:404
|
130 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: facebook-button-plugin.php:410
|
134 |
#, fuzzy
|
135 |
msgid "Your Facebook ID:"
|
136 |
msgstr "اسم حسابك علي الفيس بوك :"
|
137 |
|
138 |
+
#: facebook-button-plugin.php:416
|
139 |
msgid "Display button:"
|
140 |
msgstr "عرض الزر :"
|
141 |
|
142 |
+
#: facebook-button-plugin.php:418
|
143 |
msgid "My Page"
|
144 |
msgstr "صفحتي"
|
145 |
|
146 |
+
#: facebook-button-plugin.php:419
|
147 |
msgid "Like"
|
148 |
msgstr "اعجاب "
|
149 |
|
150 |
+
#: facebook-button-plugin.php:424
|
151 |
#, fuzzy
|
152 |
msgid "Choose display settings:"
|
153 |
msgstr "اختار خيار العرض :"
|
154 |
|
155 |
+
#: facebook-button-plugin.php:428
|
156 |
#, fuzzy
|
157 |
msgid "Standard Facebook image"
|
158 |
msgstr "صورة الفيس بوك الافتراضية "
|
159 |
|
160 |
+
#: facebook-button-plugin.php:430
|
161 |
#, fuzzy
|
162 |
msgid "Custom Facebook image"
|
163 |
msgstr "صورة خاصة للـ فيس بوك"
|
164 |
|
165 |
+
#: facebook-button-plugin.php:437
|
166 |
msgid "Current image:"
|
167 |
msgstr "الصورة الحالية : "
|
168 |
|
169 |
+
#: facebook-button-plugin.php:445
|
170 |
#, fuzzy
|
171 |
msgid "Facebook image:"
|
172 |
msgstr "صورة الفيس بوك : "
|
173 |
|
174 |
+
#: facebook-button-plugin.php:451
|
175 |
#, fuzzy
|
176 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
177 |
msgstr "Propiedades de la imagen: Ancho máx.: 100px; Alto máx.: 40px; Tamaño máx: 32Kb; Tipo de imagen: \"jpg\", \"jpeg\"."
|
178 |
|
179 |
+
#: facebook-button-plugin.php:456
|
180 |
#, fuzzy
|
181 |
msgid "Facebook Button Position:"
|
182 |
msgstr "مكان زر الفيس بوك :"
|
183 |
|
184 |
+
#: facebook-button-plugin.php:460
|
185 |
msgid "Before"
|
186 |
msgstr "قبل"
|
187 |
|
188 |
+
#: facebook-button-plugin.php:461
|
189 |
msgid "After"
|
190 |
msgstr "بعد"
|
191 |
|
192 |
+
#: facebook-button-plugin.php:462
|
193 |
msgid "Before and After"
|
194 |
msgstr "قبل و بعد"
|
195 |
|
196 |
+
#: facebook-button-plugin.php:463
|
197 |
msgid "Shortcode"
|
198 |
msgstr "الكود"
|
199 |
|
200 |
+
#: facebook-button-plugin.php:465
|
201 |
#, fuzzy
|
202 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
203 |
msgstr "اذا كنت ترغب في اضافة زر الفيس بوك علي موقعك انسخ هذه الكود وضعه في المكان المراد ظهور الزر فيه"
|
204 |
|
205 |
+
#: facebook-button-plugin.php:470
|
206 |
#, fuzzy
|
207 |
msgid "Facebook Button language:"
|
208 |
msgstr "للغه زر الفيس بوك :"
|
209 |
|
210 |
+
#: facebook-button-plugin.php:481
|
211 |
#, fuzzy
|
212 |
msgid "Change the language of Facebook Like Button"
|
213 |
msgstr "اختار اللغه للـ زر الاغحاب"
|
214 |
|
215 |
+
#: facebook-button-plugin.php:485
|
216 |
msgid "Html tag for Like Button:"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: facebook-button-plugin.php:489
|
220 |
msgid "Use this tag to improve validation of your site"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: facebook-button-plugin.php:495
|
224 |
+
#: facebook-button-plugin.php:534
|
225 |
msgid "Save Changes"
|
226 |
msgstr "حفظ التغييرات"
|
227 |
|
228 |
+
#: facebook-button-plugin.php:501
|
229 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: facebook-button-plugin.php:502
|
233 |
#, fuzzy
|
234 |
msgid "Rate the plugin"
|
235 |
msgstr "اضافات موصي بها"
|
236 |
|
237 |
+
#: facebook-button-plugin.php:505
|
238 |
msgid "If there is something wrong about it, please contact us"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: facebook-button-plugin.php:516
|
242 |
msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: facebook-button-plugin.php:523
|
246 |
msgid "Show URL for pages"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: facebook-button-plugin.php:529
|
250 |
msgid "Example of site pages' tree"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: facebook-button-plugin.php:539
|
254 |
+
msgid "If you upgrade to Pro version all your settings will be saved."
|
255 |
+
msgstr ""
|
256 |
+
|
257 |
+
#: facebook-button-plugin.php:546
|
258 |
+
msgid "Unlock premium options by upgrading to a PRO version."
|
259 |
+
msgstr ""
|
260 |
+
|
261 |
+
#: facebook-button-plugin.php:547
|
262 |
+
#: facebook-button-plugin.php:813
|
263 |
+
msgid "Learn More"
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: facebook-button-plugin.php:550
|
267 |
+
msgid "Go"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: facebook-button-plugin.php:562
|
271 |
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: facebook-button-plugin.php:564
|
275 |
msgid "Please, go to"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: facebook-button-plugin.php:564
|
279 |
#, fuzzy
|
280 |
msgid "the setting page"
|
281 |
msgstr "الاعدادات "
|
282 |
|
283 |
+
#: facebook-button-plugin.php:565
|
284 |
msgid "You will be redirected automatically in 5 seconds."
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: facebook-button-plugin.php:570
|
288 |
msgid "You can download and activate"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: facebook-button-plugin.php:572
|
292 |
msgid "version of this plugin by entering Your license key."
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: facebook-button-plugin.php:574
|
296 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: facebook-button-plugin.php:576
|
300 |
msgid "(your username is the email you specify when purchasing the product)."
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: facebook-button-plugin.php:584
|
304 |
+
#: facebook-button-plugin.php:594
|
305 |
msgid "Go!"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: facebook-button-plugin.php:587
|
309 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: facebook-button-plugin.php:733
|
313 |
msgid "FAQ"
|
314 |
msgstr "أسئلة وأجوبة"
|
315 |
|
316 |
+
#: facebook-button-plugin.php:734
|
317 |
msgid "Support"
|
318 |
msgstr "الدعم"
|
319 |
|
320 |
+
#: facebook-button-plugin.php:816
|
|
|
|
|
|
|
|
|
321 |
msgid "It's time to upgrade your <strong>Facebook Like Button</strong> to <strong>PRO</strong> version"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: facebook-button-plugin.php:817
|
325 |
msgid "Extend standard plugin functionality with new great options"
|
326 |
msgstr ""
|
327 |
|
languages/facebook-es_ES.mo
CHANGED
Binary file
|
languages/facebook-es_ES.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-
|
6 |
-
"PO-Revision-Date: 2014-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"Language: es_ES\n"
|
@@ -16,301 +16,310 @@ 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:
|
21 |
#, fuzzy
|
22 |
msgid "Facebook Button Settings"
|
23 |
msgstr "Opciones del botón de Facebook"
|
24 |
|
25 |
-
#: facebook-button-plugin.php:
|
26 |
#, fuzzy
|
27 |
msgid "Facebook Button"
|
28 |
msgstr "Botón FaceBook"
|
29 |
|
30 |
-
#: facebook-button-plugin.php:
|
31 |
msgid "requires"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: facebook-button-plugin.php:
|
35 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: facebook-button-plugin.php:
|
39 |
msgid "Back to the WordPress"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: facebook-button-plugin.php:
|
43 |
#, fuzzy
|
44 |
msgid "Plugins page"
|
45 |
msgstr "Плагины BWS"
|
46 |
|
47 |
-
#: facebook-button-plugin.php:
|
48 |
#, fuzzy
|
49 |
msgid "Settings saved"
|
50 |
msgstr "Opciones"
|
51 |
|
52 |
-
#: facebook-button-plugin.php:
|
53 |
msgid "Error: File size > 32K"
|
54 |
msgstr "Error: Archivo > 32К"
|
55 |
|
56 |
-
#: facebook-button-plugin.php:
|
57 |
msgid "Error: Invalid file type"
|
58 |
msgstr "error: Tipo de archivo no válido"
|
59 |
|
60 |
-
#: facebook-button-plugin.php:
|
61 |
msgid "Error: moving file failed"
|
62 |
msgstr "Error: Fallo moviendo el archivo"
|
63 |
|
64 |
-
#: facebook-button-plugin.php:
|
65 |
msgid "Error: check image width or height"
|
66 |
msgstr "Error: Revisa el alto o ancho de la imagen"
|
67 |
|
68 |
-
#: facebook-button-plugin.php:
|
69 |
msgid "Uploading Error: check image properties"
|
70 |
msgstr "Error de subida: Revisa las propiedades de la imagen"
|
71 |
|
72 |
-
#: facebook-button-plugin.php:
|
73 |
-
#: facebook-button-plugin.php:
|
74 |
msgid "Wrong license key"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: facebook-button-plugin.php:
|
78 |
msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: facebook-button-plugin.php:
|
82 |
msgid "This license key is bind to another site"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: facebook-button-plugin.php:
|
86 |
msgid "Unfortunately, you have exceeded the number of available tries. Please, upload the plugin manually."
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: facebook-button-plugin.php:
|
90 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: facebook-button-plugin.php:
|
94 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: facebook-button-plugin.php:
|
98 |
-
#: facebook-button-plugin.php:
|
99 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: facebook-button-plugin.php:
|
103 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: facebook-button-plugin.php:
|
107 |
msgid "Please, enter Your license key"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: facebook-button-plugin.php:
|
111 |
-
#: facebook-button-plugin.php:
|
112 |
-
#: facebook-button-plugin.php:
|
113 |
msgid "Settings"
|
114 |
msgstr "Opciones"
|
115 |
|
116 |
-
#: facebook-button-plugin.php:
|
117 |
#, fuzzy
|
118 |
msgid "Extra settings"
|
119 |
msgstr "Opciones"
|
120 |
|
121 |
-
#: facebook-button-plugin.php:
|
122 |
msgid "Go PRO"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: facebook-button-plugin.php:
|
126 |
msgid "Notice:"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: facebook-button-plugin.php:
|
130 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: facebook-button-plugin.php:
|
134 |
#, fuzzy
|
135 |
msgid "Your Facebook ID:"
|
136 |
msgstr "Su FaceBook Id:"
|
137 |
|
138 |
-
#: facebook-button-plugin.php:
|
139 |
msgid "Display button:"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: facebook-button-plugin.php:
|
143 |
msgid "My Page"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: facebook-button-plugin.php:
|
147 |
msgid "Like"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: facebook-button-plugin.php:
|
151 |
#, fuzzy
|
152 |
msgid "Choose display settings:"
|
153 |
msgstr "Seleccione opciones de visualización:"
|
154 |
|
155 |
-
#: facebook-button-plugin.php:
|
156 |
#, fuzzy
|
157 |
msgid "Standard Facebook image"
|
158 |
msgstr "Imagen estandar de FaceBook"
|
159 |
|
160 |
-
#: facebook-button-plugin.php:
|
161 |
#, fuzzy
|
162 |
msgid "Custom Facebook image"
|
163 |
msgstr "Imagen personalizada de FaceBook"
|
164 |
|
165 |
-
#: facebook-button-plugin.php:
|
166 |
msgid "Current image:"
|
167 |
msgstr "Imagen actual:"
|
168 |
|
169 |
-
#: facebook-button-plugin.php:
|
170 |
#, fuzzy
|
171 |
msgid "Facebook image:"
|
172 |
msgstr "Imagen de FaceBook:"
|
173 |
|
174 |
-
#: facebook-button-plugin.php:
|
175 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
176 |
msgstr "Propiedades de la imagen: Ancho máx.: 100px; Alto máx.: 40px; Tamaño máx: 32Kb; Tipo de imagen: \"jpg\", \"jpeg\", \"png\"."
|
177 |
|
178 |
-
#: facebook-button-plugin.php:
|
179 |
#, fuzzy
|
180 |
msgid "Facebook Button Position:"
|
181 |
msgstr "Posición del botón Facebook:"
|
182 |
|
183 |
-
#: facebook-button-plugin.php:
|
184 |
msgid "Before"
|
185 |
msgstr "Antes"
|
186 |
|
187 |
-
#: facebook-button-plugin.php:
|
188 |
msgid "After"
|
189 |
msgstr "Después"
|
190 |
|
191 |
-
#: facebook-button-plugin.php:
|
192 |
msgid "Before and After"
|
193 |
msgstr "Antes y después"
|
194 |
|
195 |
-
#: facebook-button-plugin.php:
|
196 |
msgid "Shortcode"
|
197 |
msgstr "Shortcode"
|
198 |
|
199 |
-
#: facebook-button-plugin.php:
|
200 |
#, fuzzy
|
201 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
202 |
msgstr "Si desea agregar un botón de Facebook para su sitio web, sólo tiene que copiar y pegar el código en su web o la página:"
|
203 |
|
204 |
-
#: facebook-button-plugin.php:
|
205 |
#, fuzzy
|
206 |
msgid "Facebook Button language:"
|
207 |
msgstr "Botón FaceBook"
|
208 |
|
209 |
-
#: facebook-button-plugin.php:
|
210 |
msgid "Change the language of Facebook Like Button"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: facebook-button-plugin.php:
|
214 |
msgid "Html tag for Like Button:"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: facebook-button-plugin.php:
|
218 |
msgid "Use this tag to improve validation of your site"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: facebook-button-plugin.php:
|
222 |
-
#: facebook-button-plugin.php:
|
223 |
msgid "Save Changes"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: facebook-button-plugin.php:
|
227 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: facebook-button-plugin.php:
|
231 |
#, fuzzy
|
232 |
msgid "Rate the plugin"
|
233 |
msgstr "Plugins recomendados"
|
234 |
|
235 |
-
#: facebook-button-plugin.php:
|
236 |
msgid "If there is something wrong about it, please contact us"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: facebook-button-plugin.php:
|
240 |
msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: facebook-button-plugin.php:
|
244 |
msgid "Show URL for pages"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: facebook-button-plugin.php:
|
248 |
msgid "Example of site pages' tree"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: facebook-button-plugin.php:
|
252 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: facebook-button-plugin.php:
|
256 |
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: facebook-button-plugin.php:
|
260 |
msgid "Please, go to"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: facebook-button-plugin.php:
|
264 |
#, fuzzy
|
265 |
msgid "the setting page"
|
266 |
msgstr "Opciones"
|
267 |
|
268 |
-
#: facebook-button-plugin.php:
|
269 |
msgid "You will be redirected automatically in 5 seconds."
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: facebook-button-plugin.php:
|
273 |
msgid "You can download and activate"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: facebook-button-plugin.php:
|
277 |
msgid "version of this plugin by entering Your license key."
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: facebook-button-plugin.php:
|
281 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: facebook-button-plugin.php:
|
285 |
msgid "(your username is the email you specify when purchasing the product)."
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: facebook-button-plugin.php:
|
289 |
-
#: facebook-button-plugin.php:
|
290 |
msgid "Go!"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: facebook-button-plugin.php:
|
294 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: facebook-button-plugin.php:
|
298 |
msgid "FAQ"
|
299 |
msgstr "FAQ"
|
300 |
|
301 |
-
#: facebook-button-plugin.php:
|
302 |
msgid "Support"
|
303 |
msgstr "Soporte"
|
304 |
|
305 |
-
#: facebook-button-plugin.php:
|
306 |
-
msgid "Learn More"
|
307 |
-
msgstr ""
|
308 |
-
|
309 |
-
#: facebook-button-plugin.php:837
|
310 |
msgid "It's time to upgrade your <strong>Facebook Like Button</strong> to <strong>PRO</strong> version"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: facebook-button-plugin.php:
|
314 |
msgid "Extend standard plugin functionality with new great options"
|
315 |
msgstr ""
|
316 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-04-14 12:41+0300\n"
|
6 |
+
"PO-Revision-Date: 2014-04-14 12:41+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"Language: es_ES\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: facebook-button-plugin.php:72
|
20 |
+
#: facebook-button-plugin.php:397
|
21 |
#, fuzzy
|
22 |
msgid "Facebook Button Settings"
|
23 |
msgstr "Opciones del botón de Facebook"
|
24 |
|
25 |
+
#: facebook-button-plugin.php:72
|
26 |
#, fuzzy
|
27 |
msgid "Facebook Button"
|
28 |
msgstr "Botón FaceBook"
|
29 |
|
30 |
+
#: facebook-button-plugin.php:188
|
31 |
msgid "requires"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: facebook-button-plugin.php:188
|
35 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: facebook-button-plugin.php:188
|
39 |
msgid "Back to the WordPress"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: facebook-button-plugin.php:188
|
43 |
#, fuzzy
|
44 |
msgid "Plugins page"
|
45 |
msgstr "Плагины BWS"
|
46 |
|
47 |
+
#: facebook-button-plugin.php:223
|
48 |
#, fuzzy
|
49 |
msgid "Settings saved"
|
50 |
msgstr "Opciones"
|
51 |
|
52 |
+
#: facebook-button-plugin.php:245
|
53 |
msgid "Error: File size > 32K"
|
54 |
msgstr "Error: Archivo > 32К"
|
55 |
|
56 |
+
#: facebook-button-plugin.php:248
|
57 |
msgid "Error: Invalid file type"
|
58 |
msgstr "error: Tipo de archivo no válido"
|
59 |
|
60 |
+
#: facebook-button-plugin.php:256
|
61 |
msgid "Error: moving file failed"
|
62 |
msgstr "Error: Fallo moviendo el archivo"
|
63 |
|
64 |
+
#: facebook-button-plugin.php:259
|
65 |
msgid "Error: check image width or height"
|
66 |
msgstr "Error: Revisa el alto o ancho de la imagen"
|
67 |
|
68 |
+
#: facebook-button-plugin.php:263
|
69 |
msgid "Uploading Error: check image properties"
|
70 |
msgstr "Error de subida: Revisa las propiedades de la imagen"
|
71 |
|
72 |
+
#: facebook-button-plugin.php:288
|
73 |
+
#: facebook-button-plugin.php:327
|
74 |
msgid "Wrong license key"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: facebook-button-plugin.php:320
|
78 |
msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: facebook-button-plugin.php:329
|
82 |
msgid "This license key is bind to another site"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: facebook-button-plugin.php:331
|
86 |
msgid "Unfortunately, you have exceeded the number of available tries. Please, upload the plugin manually."
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: facebook-button-plugin.php:349
|
90 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: facebook-button-plugin.php:355
|
94 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: facebook-button-plugin.php:359
|
98 |
+
#: facebook-button-plugin.php:368
|
99 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: facebook-button-plugin.php:372
|
103 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: facebook-button-plugin.php:387
|
107 |
msgid "Please, enter Your license key"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: facebook-button-plugin.php:399
|
111 |
+
#: facebook-button-plugin.php:720
|
112 |
+
#: facebook-button-plugin.php:732
|
113 |
msgid "Settings"
|
114 |
msgstr "Opciones"
|
115 |
|
116 |
+
#: facebook-button-plugin.php:400
|
117 |
#, fuzzy
|
118 |
msgid "Extra settings"
|
119 |
msgstr "Opciones"
|
120 |
|
121 |
+
#: facebook-button-plugin.php:401
|
122 |
msgid "Go PRO"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: facebook-button-plugin.php:404
|
126 |
msgid "Notice:"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: facebook-button-plugin.php:404
|
130 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: facebook-button-plugin.php:410
|
134 |
#, fuzzy
|
135 |
msgid "Your Facebook ID:"
|
136 |
msgstr "Su FaceBook Id:"
|
137 |
|
138 |
+
#: facebook-button-plugin.php:416
|
139 |
msgid "Display button:"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: facebook-button-plugin.php:418
|
143 |
msgid "My Page"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: facebook-button-plugin.php:419
|
147 |
msgid "Like"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: facebook-button-plugin.php:424
|
151 |
#, fuzzy
|
152 |
msgid "Choose display settings:"
|
153 |
msgstr "Seleccione opciones de visualización:"
|
154 |
|
155 |
+
#: facebook-button-plugin.php:428
|
156 |
#, fuzzy
|
157 |
msgid "Standard Facebook image"
|
158 |
msgstr "Imagen estandar de FaceBook"
|
159 |
|
160 |
+
#: facebook-button-plugin.php:430
|
161 |
#, fuzzy
|
162 |
msgid "Custom Facebook image"
|
163 |
msgstr "Imagen personalizada de FaceBook"
|
164 |
|
165 |
+
#: facebook-button-plugin.php:437
|
166 |
msgid "Current image:"
|
167 |
msgstr "Imagen actual:"
|
168 |
|
169 |
+
#: facebook-button-plugin.php:445
|
170 |
#, fuzzy
|
171 |
msgid "Facebook image:"
|
172 |
msgstr "Imagen de FaceBook:"
|
173 |
|
174 |
+
#: facebook-button-plugin.php:451
|
175 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
176 |
msgstr "Propiedades de la imagen: Ancho máx.: 100px; Alto máx.: 40px; Tamaño máx: 32Kb; Tipo de imagen: \"jpg\", \"jpeg\", \"png\"."
|
177 |
|
178 |
+
#: facebook-button-plugin.php:456
|
179 |
#, fuzzy
|
180 |
msgid "Facebook Button Position:"
|
181 |
msgstr "Posición del botón Facebook:"
|
182 |
|
183 |
+
#: facebook-button-plugin.php:460
|
184 |
msgid "Before"
|
185 |
msgstr "Antes"
|
186 |
|
187 |
+
#: facebook-button-plugin.php:461
|
188 |
msgid "After"
|
189 |
msgstr "Después"
|
190 |
|
191 |
+
#: facebook-button-plugin.php:462
|
192 |
msgid "Before and After"
|
193 |
msgstr "Antes y después"
|
194 |
|
195 |
+
#: facebook-button-plugin.php:463
|
196 |
msgid "Shortcode"
|
197 |
msgstr "Shortcode"
|
198 |
|
199 |
+
#: facebook-button-plugin.php:465
|
200 |
#, fuzzy
|
201 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
202 |
msgstr "Si desea agregar un botón de Facebook para su sitio web, sólo tiene que copiar y pegar el código en su web o la página:"
|
203 |
|
204 |
+
#: facebook-button-plugin.php:470
|
205 |
#, fuzzy
|
206 |
msgid "Facebook Button language:"
|
207 |
msgstr "Botón FaceBook"
|
208 |
|
209 |
+
#: facebook-button-plugin.php:481
|
210 |
msgid "Change the language of Facebook Like Button"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: facebook-button-plugin.php:485
|
214 |
msgid "Html tag for Like Button:"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: facebook-button-plugin.php:489
|
218 |
msgid "Use this tag to improve validation of your site"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: facebook-button-plugin.php:495
|
222 |
+
#: facebook-button-plugin.php:534
|
223 |
msgid "Save Changes"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: facebook-button-plugin.php:501
|
227 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: facebook-button-plugin.php:502
|
231 |
#, fuzzy
|
232 |
msgid "Rate the plugin"
|
233 |
msgstr "Plugins recomendados"
|
234 |
|
235 |
+
#: facebook-button-plugin.php:505
|
236 |
msgid "If there is something wrong about it, please contact us"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: facebook-button-plugin.php:516
|
240 |
msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: facebook-button-plugin.php:523
|
244 |
msgid "Show URL for pages"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: facebook-button-plugin.php:529
|
248 |
msgid "Example of site pages' tree"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: facebook-button-plugin.php:539
|
252 |
+
msgid "If you upgrade to Pro version all your settings will be saved."
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
+
#: facebook-button-plugin.php:546
|
256 |
+
msgid "Unlock premium options by upgrading to a PRO version."
|
257 |
+
msgstr ""
|
258 |
+
|
259 |
+
#: facebook-button-plugin.php:547
|
260 |
+
#: facebook-button-plugin.php:813
|
261 |
+
msgid "Learn More"
|
262 |
+
msgstr ""
|
263 |
+
|
264 |
+
#: facebook-button-plugin.php:550
|
265 |
+
msgid "Go"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: facebook-button-plugin.php:562
|
269 |
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: facebook-button-plugin.php:564
|
273 |
msgid "Please, go to"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: facebook-button-plugin.php:564
|
277 |
#, fuzzy
|
278 |
msgid "the setting page"
|
279 |
msgstr "Opciones"
|
280 |
|
281 |
+
#: facebook-button-plugin.php:565
|
282 |
msgid "You will be redirected automatically in 5 seconds."
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: facebook-button-plugin.php:570
|
286 |
msgid "You can download and activate"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: facebook-button-plugin.php:572
|
290 |
msgid "version of this plugin by entering Your license key."
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: facebook-button-plugin.php:574
|
294 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: facebook-button-plugin.php:576
|
298 |
msgid "(your username is the email you specify when purchasing the product)."
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: facebook-button-plugin.php:584
|
302 |
+
#: facebook-button-plugin.php:594
|
303 |
msgid "Go!"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: facebook-button-plugin.php:587
|
307 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: facebook-button-plugin.php:733
|
311 |
msgid "FAQ"
|
312 |
msgstr "FAQ"
|
313 |
|
314 |
+
#: facebook-button-plugin.php:734
|
315 |
msgid "Support"
|
316 |
msgstr "Soporte"
|
317 |
|
318 |
+
#: facebook-button-plugin.php:816
|
|
|
|
|
|
|
|
|
319 |
msgid "It's time to upgrade your <strong>Facebook Like Button</strong> to <strong>PRO</strong> version"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: facebook-button-plugin.php:817
|
323 |
msgid "Extend standard plugin functionality with new great options"
|
324 |
msgstr ""
|
325 |
|
languages/facebook-fa_IR.mo
CHANGED
Binary file
|
languages/facebook-fa_IR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-
|
6 |
-
"PO-Revision-Date: 2014-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Milad Ahmadipour <milad.contact@gmail.com>\n"
|
9 |
"Language: fa\n"
|
@@ -16,303 +16,312 @@ 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:
|
21 |
#, fuzzy
|
22 |
msgid "Facebook Button Settings"
|
23 |
msgstr "اختیارات دکمه فیسبوک"
|
24 |
|
25 |
-
#: facebook-button-plugin.php:
|
26 |
#, fuzzy
|
27 |
msgid "Facebook Button"
|
28 |
msgstr "دکمه فیسبوک"
|
29 |
|
30 |
-
#: facebook-button-plugin.php:
|
31 |
msgid "requires"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: facebook-button-plugin.php:
|
35 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: facebook-button-plugin.php:
|
39 |
msgid "Back to the WordPress"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: facebook-button-plugin.php:
|
43 |
#, fuzzy
|
44 |
msgid "Plugins page"
|
45 |
msgstr "پلاگین BWS"
|
46 |
|
47 |
-
#: facebook-button-plugin.php:
|
48 |
#, fuzzy
|
49 |
msgid "Settings saved"
|
50 |
msgstr "تنظیمات "
|
51 |
|
52 |
-
#: facebook-button-plugin.php:
|
53 |
msgid "Error: File size > 32K"
|
54 |
msgstr "خطا : حجم فایل بیشتر از : > 32К"
|
55 |
|
56 |
-
#: facebook-button-plugin.php:
|
57 |
msgid "Error: Invalid file type"
|
58 |
msgstr "خطا : نوع فایل صحیح نیست"
|
59 |
|
60 |
-
#: facebook-button-plugin.php:
|
61 |
msgid "Error: moving file failed"
|
62 |
msgstr "خطا : حرکت فایل شکست خورد"
|
63 |
|
64 |
-
#: facebook-button-plugin.php:
|
65 |
msgid "Error: check image width or height"
|
66 |
msgstr "خطا : لطفا طول و عرض تصویر را چک کنید"
|
67 |
|
68 |
-
#: facebook-button-plugin.php:
|
69 |
msgid "Uploading Error: check image properties"
|
70 |
msgstr "خطای آپلود : لطفا خصوصیات تصویر را چک کنید"
|
71 |
|
72 |
-
#: facebook-button-plugin.php:
|
73 |
-
#: facebook-button-plugin.php:
|
74 |
msgid "Wrong license key"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: facebook-button-plugin.php:
|
78 |
msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: facebook-button-plugin.php:
|
82 |
msgid "This license key is bind to another site"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: facebook-button-plugin.php:
|
86 |
msgid "Unfortunately, you have exceeded the number of available tries. Please, upload the plugin manually."
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: facebook-button-plugin.php:
|
90 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: facebook-button-plugin.php:
|
94 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: facebook-button-plugin.php:
|
98 |
-
#: facebook-button-plugin.php:
|
99 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: facebook-button-plugin.php:
|
103 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: facebook-button-plugin.php:
|
107 |
msgid "Please, enter Your license key"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: facebook-button-plugin.php:
|
111 |
-
#: facebook-button-plugin.php:
|
112 |
-
#: facebook-button-plugin.php:
|
113 |
msgid "Settings"
|
114 |
msgstr "تنظیمات "
|
115 |
|
116 |
-
#: facebook-button-plugin.php:
|
117 |
#, fuzzy
|
118 |
msgid "Extra settings"
|
119 |
msgstr "تنظیمات "
|
120 |
|
121 |
-
#: facebook-button-plugin.php:
|
122 |
msgid "Go PRO"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: facebook-button-plugin.php:
|
126 |
msgid "Notice:"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: facebook-button-plugin.php:
|
130 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: facebook-button-plugin.php:
|
134 |
#, fuzzy
|
135 |
msgid "Your Facebook ID:"
|
136 |
msgstr "نام کاربری فیسبوک شما (کوتاه شده، برای نمونه این را ببینید : http://facebook.com/yourname)"
|
137 |
|
138 |
-
#: facebook-button-plugin.php:
|
139 |
msgid "Display button:"
|
140 |
msgstr "نمایش دکمه های :"
|
141 |
|
142 |
-
#: facebook-button-plugin.php:
|
143 |
msgid "My Page"
|
144 |
msgstr "صفحه من"
|
145 |
|
146 |
-
#: facebook-button-plugin.php:
|
147 |
msgid "Like"
|
148 |
msgstr "پسندیدم "
|
149 |
|
150 |
-
#: facebook-button-plugin.php:
|
151 |
#, fuzzy
|
152 |
msgid "Choose display settings:"
|
153 |
msgstr "لطفا نحوه نمایش را انتخاب کنید"
|
154 |
|
155 |
-
#: facebook-button-plugin.php:
|
156 |
#, fuzzy
|
157 |
msgid "Standard Facebook image"
|
158 |
msgstr " تصویر استاندارد فیسبوک "
|
159 |
|
160 |
-
#: facebook-button-plugin.php:
|
161 |
#, fuzzy
|
162 |
msgid "Custom Facebook image"
|
163 |
msgstr "آپلود از کامپیوتر شما"
|
164 |
|
165 |
-
#: facebook-button-plugin.php:
|
166 |
msgid "Current image:"
|
167 |
msgstr "تصویر کنونی :"
|
168 |
|
169 |
-
#: facebook-button-plugin.php:
|
170 |
#, fuzzy
|
171 |
msgid "Facebook image:"
|
172 |
msgstr "تصویر فیسبوک : "
|
173 |
|
174 |
-
#: facebook-button-plugin.php:
|
175 |
#, fuzzy
|
176 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
177 |
msgstr "خصوصیات عکس: حداکثر طول عکس:100px; حد اکثر عرض عکس:40px; حد اکثر حجم فایل:32Kb; نوع فایل: \"jpg\", \"jpeg\"."
|
178 |
|
179 |
-
#: facebook-button-plugin.php:
|
180 |
#, fuzzy
|
181 |
msgid "Facebook Button Position:"
|
182 |
msgstr "محل دکمه فیسبوک :"
|
183 |
|
184 |
-
#: facebook-button-plugin.php:
|
185 |
msgid "Before"
|
186 |
msgstr "قبل"
|
187 |
|
188 |
-
#: facebook-button-plugin.php:
|
189 |
msgid "After"
|
190 |
msgstr "بعد"
|
191 |
|
192 |
-
#: facebook-button-plugin.php:
|
193 |
msgid "Before and After"
|
194 |
msgstr "قبل و بعد"
|
195 |
|
196 |
-
#: facebook-button-plugin.php:
|
197 |
msgid "Shortcode"
|
198 |
msgstr "کد کوتاه"
|
199 |
|
200 |
-
#: facebook-button-plugin.php:
|
201 |
#, fuzzy
|
202 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
203 |
msgstr "در صورتی که میخواهید دکمه لایک به سایت شما اظافه شود، کد کوتاه را در صفحه پست و ... کپی کنید"
|
204 |
|
205 |
-
#: facebook-button-plugin.php:
|
206 |
#, fuzzy
|
207 |
msgid "Facebook Button language:"
|
208 |
msgstr "زبان دکمه فیسبوک :"
|
209 |
|
210 |
-
#: facebook-button-plugin.php:
|
211 |
#, fuzzy
|
212 |
msgid "Change the language of Facebook Like Button"
|
213 |
msgstr "زبان دکمه فیسبوک را انتخاب کنید"
|
214 |
|
215 |
-
#: facebook-button-plugin.php:
|
216 |
msgid "Html tag for Like Button:"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: facebook-button-plugin.php:
|
220 |
msgid "Use this tag to improve validation of your site"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: facebook-button-plugin.php:
|
224 |
-
#: facebook-button-plugin.php:
|
225 |
msgid "Save Changes"
|
226 |
msgstr "ذخیره تغییرات"
|
227 |
|
228 |
-
#: facebook-button-plugin.php:
|
229 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: facebook-button-plugin.php:
|
233 |
#, fuzzy
|
234 |
msgid "Rate the plugin"
|
235 |
msgstr "پلاگین های پیشنهادی"
|
236 |
|
237 |
-
#: facebook-button-plugin.php:
|
238 |
msgid "If there is something wrong about it, please contact us"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: facebook-button-plugin.php:
|
242 |
msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: facebook-button-plugin.php:
|
246 |
msgid "Show URL for pages"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: facebook-button-plugin.php:
|
250 |
msgid "Example of site pages' tree"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: facebook-button-plugin.php:
|
254 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: facebook-button-plugin.php:
|
258 |
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: facebook-button-plugin.php:
|
262 |
msgid "Please, go to"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: facebook-button-plugin.php:
|
266 |
#, fuzzy
|
267 |
msgid "the setting page"
|
268 |
msgstr "تنظیمات "
|
269 |
|
270 |
-
#: facebook-button-plugin.php:
|
271 |
msgid "You will be redirected automatically in 5 seconds."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: facebook-button-plugin.php:
|
275 |
msgid "You can download and activate"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: facebook-button-plugin.php:
|
279 |
msgid "version of this plugin by entering Your license key."
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: facebook-button-plugin.php:
|
283 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: facebook-button-plugin.php:
|
287 |
msgid "(your username is the email you specify when purchasing the product)."
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: facebook-button-plugin.php:
|
291 |
-
#: facebook-button-plugin.php:
|
292 |
msgid "Go!"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: facebook-button-plugin.php:
|
296 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: facebook-button-plugin.php:
|
300 |
msgid "FAQ"
|
301 |
msgstr "سوال و جواب های متداول"
|
302 |
|
303 |
-
#: facebook-button-plugin.php:
|
304 |
msgid "Support"
|
305 |
msgstr "پشتیبانی"
|
306 |
|
307 |
-
#: facebook-button-plugin.php:
|
308 |
-
msgid "Learn More"
|
309 |
-
msgstr ""
|
310 |
-
|
311 |
-
#: facebook-button-plugin.php:837
|
312 |
msgid "It's time to upgrade your <strong>Facebook Like Button</strong> to <strong>PRO</strong> version"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: facebook-button-plugin.php:
|
316 |
msgid "Extend standard plugin functionality with new great options"
|
317 |
msgstr ""
|
318 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-04-14 12:41+0300\n"
|
6 |
+
"PO-Revision-Date: 2014-04-14 12:41+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Milad Ahmadipour <milad.contact@gmail.com>\n"
|
9 |
"Language: fa\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: facebook-button-plugin.php:72
|
20 |
+
#: facebook-button-plugin.php:397
|
21 |
#, fuzzy
|
22 |
msgid "Facebook Button Settings"
|
23 |
msgstr "اختیارات دکمه فیسبوک"
|
24 |
|
25 |
+
#: facebook-button-plugin.php:72
|
26 |
#, fuzzy
|
27 |
msgid "Facebook Button"
|
28 |
msgstr "دکمه فیسبوک"
|
29 |
|
30 |
+
#: facebook-button-plugin.php:188
|
31 |
msgid "requires"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: facebook-button-plugin.php:188
|
35 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: facebook-button-plugin.php:188
|
39 |
msgid "Back to the WordPress"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: facebook-button-plugin.php:188
|
43 |
#, fuzzy
|
44 |
msgid "Plugins page"
|
45 |
msgstr "پلاگین BWS"
|
46 |
|
47 |
+
#: facebook-button-plugin.php:223
|
48 |
#, fuzzy
|
49 |
msgid "Settings saved"
|
50 |
msgstr "تنظیمات "
|
51 |
|
52 |
+
#: facebook-button-plugin.php:245
|
53 |
msgid "Error: File size > 32K"
|
54 |
msgstr "خطا : حجم فایل بیشتر از : > 32К"
|
55 |
|
56 |
+
#: facebook-button-plugin.php:248
|
57 |
msgid "Error: Invalid file type"
|
58 |
msgstr "خطا : نوع فایل صحیح نیست"
|
59 |
|
60 |
+
#: facebook-button-plugin.php:256
|
61 |
msgid "Error: moving file failed"
|
62 |
msgstr "خطا : حرکت فایل شکست خورد"
|
63 |
|
64 |
+
#: facebook-button-plugin.php:259
|
65 |
msgid "Error: check image width or height"
|
66 |
msgstr "خطا : لطفا طول و عرض تصویر را چک کنید"
|
67 |
|
68 |
+
#: facebook-button-plugin.php:263
|
69 |
msgid "Uploading Error: check image properties"
|
70 |
msgstr "خطای آپلود : لطفا خصوصیات تصویر را چک کنید"
|
71 |
|
72 |
+
#: facebook-button-plugin.php:288
|
73 |
+
#: facebook-button-plugin.php:327
|
74 |
msgid "Wrong license key"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: facebook-button-plugin.php:320
|
78 |
msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: facebook-button-plugin.php:329
|
82 |
msgid "This license key is bind to another site"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: facebook-button-plugin.php:331
|
86 |
msgid "Unfortunately, you have exceeded the number of available tries. Please, upload the plugin manually."
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: facebook-button-plugin.php:349
|
90 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: facebook-button-plugin.php:355
|
94 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: facebook-button-plugin.php:359
|
98 |
+
#: facebook-button-plugin.php:368
|
99 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: facebook-button-plugin.php:372
|
103 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: facebook-button-plugin.php:387
|
107 |
msgid "Please, enter Your license key"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: facebook-button-plugin.php:399
|
111 |
+
#: facebook-button-plugin.php:720
|
112 |
+
#: facebook-button-plugin.php:732
|
113 |
msgid "Settings"
|
114 |
msgstr "تنظیمات "
|
115 |
|
116 |
+
#: facebook-button-plugin.php:400
|
117 |
#, fuzzy
|
118 |
msgid "Extra settings"
|
119 |
msgstr "تنظیمات "
|
120 |
|
121 |
+
#: facebook-button-plugin.php:401
|
122 |
msgid "Go PRO"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: facebook-button-plugin.php:404
|
126 |
msgid "Notice:"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: facebook-button-plugin.php:404
|
130 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: facebook-button-plugin.php:410
|
134 |
#, fuzzy
|
135 |
msgid "Your Facebook ID:"
|
136 |
msgstr "نام کاربری فیسبوک شما (کوتاه شده، برای نمونه این را ببینید : http://facebook.com/yourname)"
|
137 |
|
138 |
+
#: facebook-button-plugin.php:416
|
139 |
msgid "Display button:"
|
140 |
msgstr "نمایش دکمه های :"
|
141 |
|
142 |
+
#: facebook-button-plugin.php:418
|
143 |
msgid "My Page"
|
144 |
msgstr "صفحه من"
|
145 |
|
146 |
+
#: facebook-button-plugin.php:419
|
147 |
msgid "Like"
|
148 |
msgstr "پسندیدم "
|
149 |
|
150 |
+
#: facebook-button-plugin.php:424
|
151 |
#, fuzzy
|
152 |
msgid "Choose display settings:"
|
153 |
msgstr "لطفا نحوه نمایش را انتخاب کنید"
|
154 |
|
155 |
+
#: facebook-button-plugin.php:428
|
156 |
#, fuzzy
|
157 |
msgid "Standard Facebook image"
|
158 |
msgstr " تصویر استاندارد فیسبوک "
|
159 |
|
160 |
+
#: facebook-button-plugin.php:430
|
161 |
#, fuzzy
|
162 |
msgid "Custom Facebook image"
|
163 |
msgstr "آپلود از کامپیوتر شما"
|
164 |
|
165 |
+
#: facebook-button-plugin.php:437
|
166 |
msgid "Current image:"
|
167 |
msgstr "تصویر کنونی :"
|
168 |
|
169 |
+
#: facebook-button-plugin.php:445
|
170 |
#, fuzzy
|
171 |
msgid "Facebook image:"
|
172 |
msgstr "تصویر فیسبوک : "
|
173 |
|
174 |
+
#: facebook-button-plugin.php:451
|
175 |
#, fuzzy
|
176 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
177 |
msgstr "خصوصیات عکس: حداکثر طول عکس:100px; حد اکثر عرض عکس:40px; حد اکثر حجم فایل:32Kb; نوع فایل: \"jpg\", \"jpeg\"."
|
178 |
|
179 |
+
#: facebook-button-plugin.php:456
|
180 |
#, fuzzy
|
181 |
msgid "Facebook Button Position:"
|
182 |
msgstr "محل دکمه فیسبوک :"
|
183 |
|
184 |
+
#: facebook-button-plugin.php:460
|
185 |
msgid "Before"
|
186 |
msgstr "قبل"
|
187 |
|
188 |
+
#: facebook-button-plugin.php:461
|
189 |
msgid "After"
|
190 |
msgstr "بعد"
|
191 |
|
192 |
+
#: facebook-button-plugin.php:462
|
193 |
msgid "Before and After"
|
194 |
msgstr "قبل و بعد"
|
195 |
|
196 |
+
#: facebook-button-plugin.php:463
|
197 |
msgid "Shortcode"
|
198 |
msgstr "کد کوتاه"
|
199 |
|
200 |
+
#: facebook-button-plugin.php:465
|
201 |
#, fuzzy
|
202 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
203 |
msgstr "در صورتی که میخواهید دکمه لایک به سایت شما اظافه شود، کد کوتاه را در صفحه پست و ... کپی کنید"
|
204 |
|
205 |
+
#: facebook-button-plugin.php:470
|
206 |
#, fuzzy
|
207 |
msgid "Facebook Button language:"
|
208 |
msgstr "زبان دکمه فیسبوک :"
|
209 |
|
210 |
+
#: facebook-button-plugin.php:481
|
211 |
#, fuzzy
|
212 |
msgid "Change the language of Facebook Like Button"
|
213 |
msgstr "زبان دکمه فیسبوک را انتخاب کنید"
|
214 |
|
215 |
+
#: facebook-button-plugin.php:485
|
216 |
msgid "Html tag for Like Button:"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: facebook-button-plugin.php:489
|
220 |
msgid "Use this tag to improve validation of your site"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: facebook-button-plugin.php:495
|
224 |
+
#: facebook-button-plugin.php:534
|
225 |
msgid "Save Changes"
|
226 |
msgstr "ذخیره تغییرات"
|
227 |
|
228 |
+
#: facebook-button-plugin.php:501
|
229 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: facebook-button-plugin.php:502
|
233 |
#, fuzzy
|
234 |
msgid "Rate the plugin"
|
235 |
msgstr "پلاگین های پیشنهادی"
|
236 |
|
237 |
+
#: facebook-button-plugin.php:505
|
238 |
msgid "If there is something wrong about it, please contact us"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: facebook-button-plugin.php:516
|
242 |
msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: facebook-button-plugin.php:523
|
246 |
msgid "Show URL for pages"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: facebook-button-plugin.php:529
|
250 |
msgid "Example of site pages' tree"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: facebook-button-plugin.php:539
|
254 |
+
msgid "If you upgrade to Pro version all your settings will be saved."
|
255 |
+
msgstr ""
|
256 |
+
|
257 |
+
#: facebook-button-plugin.php:546
|
258 |
+
msgid "Unlock premium options by upgrading to a PRO version."
|
259 |
+
msgstr ""
|
260 |
+
|
261 |
+
#: facebook-button-plugin.php:547
|
262 |
+
#: facebook-button-plugin.php:813
|
263 |
+
msgid "Learn More"
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: facebook-button-plugin.php:550
|
267 |
+
msgid "Go"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: facebook-button-plugin.php:562
|
271 |
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: facebook-button-plugin.php:564
|
275 |
msgid "Please, go to"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: facebook-button-plugin.php:564
|
279 |
#, fuzzy
|
280 |
msgid "the setting page"
|
281 |
msgstr "تنظیمات "
|
282 |
|
283 |
+
#: facebook-button-plugin.php:565
|
284 |
msgid "You will be redirected automatically in 5 seconds."
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: facebook-button-plugin.php:570
|
288 |
msgid "You can download and activate"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: facebook-button-plugin.php:572
|
292 |
msgid "version of this plugin by entering Your license key."
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: facebook-button-plugin.php:574
|
296 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: facebook-button-plugin.php:576
|
300 |
msgid "(your username is the email you specify when purchasing the product)."
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: facebook-button-plugin.php:584
|
304 |
+
#: facebook-button-plugin.php:594
|
305 |
msgid "Go!"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: facebook-button-plugin.php:587
|
309 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: facebook-button-plugin.php:733
|
313 |
msgid "FAQ"
|
314 |
msgstr "سوال و جواب های متداول"
|
315 |
|
316 |
+
#: facebook-button-plugin.php:734
|
317 |
msgid "Support"
|
318 |
msgstr "پشتیبانی"
|
319 |
|
320 |
+
#: facebook-button-plugin.php:816
|
|
|
|
|
|
|
|
|
321 |
msgid "It's time to upgrade your <strong>Facebook Like Button</strong> to <strong>PRO</strong> version"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: facebook-button-plugin.php:817
|
325 |
msgid "Extend standard plugin functionality with new great options"
|
326 |
msgstr ""
|
327 |
|
languages/facebook-fr_FR.mo
CHANGED
Binary file
|
languages/facebook-fr_FR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-
|
6 |
-
"PO-Revision-Date: 2014-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: http://wptheme.fr/\n"
|
9 |
"Language: fr\n"
|
@@ -17,288 +17,297 @@ msgstr ""
|
|
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 "Facebook Button"
|
27 |
msgstr "Bouton Facebook"
|
28 |
|
29 |
-
#: facebook-button-plugin.php:
|
30 |
msgid "requires"
|
31 |
msgstr "Nécessite"
|
32 |
|
33 |
-
#: facebook-button-plugin.php:
|
34 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
35 |
msgstr "ou supérieur, c'est la raison pour la laquelle il a été desactivé. Veuillez mettre à jour votre Wordpress et essayer à nouveau "
|
36 |
|
37 |
-
#: facebook-button-plugin.php:
|
38 |
msgid "Back to the WordPress"
|
39 |
msgstr "Retour à Wordpress"
|
40 |
|
41 |
-
#: facebook-button-plugin.php:
|
42 |
msgid "Plugins page"
|
43 |
msgstr "Page Plugin"
|
44 |
|
45 |
-
#: facebook-button-plugin.php:
|
46 |
msgid "Settings saved"
|
47 |
msgstr "Réglages sauvegardés "
|
48 |
|
49 |
-
#: facebook-button-plugin.php:
|
50 |
msgid "Error: File size > 32K"
|
51 |
msgstr "Erreur : Poids du fichier > 32K"
|
52 |
|
53 |
-
#: facebook-button-plugin.php:
|
54 |
msgid "Error: Invalid file type"
|
55 |
msgstr "Erreur : Type de fichier invalide"
|
56 |
|
57 |
-
#: facebook-button-plugin.php:
|
58 |
msgid "Error: moving file failed"
|
59 |
msgstr "Erreur : le déplacement du fichier a echoué"
|
60 |
|
61 |
-
#: facebook-button-plugin.php:
|
62 |
msgid "Error: check image width or height"
|
63 |
msgstr "Erreur : Vérifiez la taille et la largeur de l'image"
|
64 |
|
65 |
-
#: facebook-button-plugin.php:
|
66 |
msgid "Uploading Error: check image properties"
|
67 |
msgstr "Erreur d'upload : vérifiez les propriétés de l'image"
|
68 |
|
69 |
-
#: facebook-button-plugin.php:
|
70 |
-
#: facebook-button-plugin.php:
|
71 |
msgid "Wrong license key"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: facebook-button-plugin.php:
|
75 |
msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: facebook-button-plugin.php:
|
79 |
msgid "This license key is bind to another site"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: facebook-button-plugin.php:
|
83 |
msgid "Unfortunately, you have exceeded the number of available tries. Please, upload the plugin manually."
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: facebook-button-plugin.php:
|
87 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: facebook-button-plugin.php:
|
91 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: facebook-button-plugin.php:
|
95 |
-
#: facebook-button-plugin.php:
|
96 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: facebook-button-plugin.php:
|
100 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: facebook-button-plugin.php:
|
104 |
msgid "Please, enter Your license key"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: facebook-button-plugin.php:
|
108 |
-
#: facebook-button-plugin.php:
|
109 |
-
#: facebook-button-plugin.php:
|
110 |
msgid "Settings"
|
111 |
msgstr "Réglages"
|
112 |
|
113 |
-
#: facebook-button-plugin.php:
|
114 |
#, fuzzy
|
115 |
msgid "Extra settings"
|
116 |
msgstr "Réglages"
|
117 |
|
118 |
-
#: facebook-button-plugin.php:
|
119 |
msgid "Go PRO"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: facebook-button-plugin.php:
|
123 |
msgid "Notice:"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: facebook-button-plugin.php:
|
127 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: facebook-button-plugin.php:
|
131 |
msgid "Your Facebook ID:"
|
132 |
msgstr "Votre identifiant Facebook"
|
133 |
|
134 |
-
#: facebook-button-plugin.php:
|
135 |
msgid "Display button:"
|
136 |
msgstr "Afficher le bouton"
|
137 |
|
138 |
-
#: facebook-button-plugin.php:
|
139 |
msgid "My Page"
|
140 |
msgstr "Ma page"
|
141 |
|
142 |
-
#: facebook-button-plugin.php:
|
143 |
msgid "Like"
|
144 |
msgstr "Like"
|
145 |
|
146 |
-
#: facebook-button-plugin.php:
|
147 |
msgid "Choose display settings:"
|
148 |
msgstr "Choisir les réglages d'affichage"
|
149 |
|
150 |
-
#: facebook-button-plugin.php:
|
151 |
msgid "Standard Facebook image"
|
152 |
msgstr "Image Facebook par défaut"
|
153 |
|
154 |
-
#: facebook-button-plugin.php:
|
155 |
msgid "Custom Facebook image"
|
156 |
msgstr "Image Facebook personnalisée"
|
157 |
|
158 |
-
#: facebook-button-plugin.php:
|
159 |
msgid "Current image:"
|
160 |
msgstr "Image actuelle"
|
161 |
|
162 |
-
#: facebook-button-plugin.php:
|
163 |
msgid "Facebook image:"
|
164 |
msgstr "Image Facebook"
|
165 |
|
166 |
-
#: facebook-button-plugin.php:
|
167 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
168 |
msgstr "Propriétés de l'image : largeur max:100px; hauteur max: 40px; poids max : 32kb; type d'image :\"jpg\", \"jpeg\", \"png\"."
|
169 |
|
170 |
-
#: facebook-button-plugin.php:
|
171 |
msgid "Facebook Button Position:"
|
172 |
msgstr "Position du bouton Facebook"
|
173 |
|
174 |
-
#: facebook-button-plugin.php:
|
175 |
msgid "Before"
|
176 |
msgstr "Avant"
|
177 |
|
178 |
-
#: facebook-button-plugin.php:
|
179 |
msgid "After"
|
180 |
msgstr "Après"
|
181 |
|
182 |
-
#: facebook-button-plugin.php:
|
183 |
msgid "Before and After"
|
184 |
msgstr "Avant et après"
|
185 |
|
186 |
-
#: facebook-button-plugin.php:
|
187 |
msgid "Shortcode"
|
188 |
msgstr "Shortcode"
|
189 |
|
190 |
-
#: facebook-button-plugin.php:
|
191 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
192 |
msgstr "Si vous souhaitez ajouter un bouton Facebook sur votre site internet, copier-collez ce Shortcodedans votre page ou votre article"
|
193 |
|
194 |
-
#: facebook-button-plugin.php:
|
195 |
msgid "Facebook Button language:"
|
196 |
msgstr "Langue du bouton Facebook"
|
197 |
|
198 |
-
#: facebook-button-plugin.php:
|
199 |
msgid "Change the language of Facebook Like Button"
|
200 |
msgstr "Changer la langue du bouton Facebook"
|
201 |
|
202 |
-
#: facebook-button-plugin.php:
|
203 |
msgid "Html tag for Like Button:"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: facebook-button-plugin.php:
|
207 |
msgid "Use this tag to improve validation of your site"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: facebook-button-plugin.php:
|
211 |
-
#: facebook-button-plugin.php:
|
212 |
msgid "Save Changes"
|
213 |
msgstr "Sauvegarder les changements"
|
214 |
|
215 |
-
#: facebook-button-plugin.php:
|
216 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: facebook-button-plugin.php:
|
220 |
msgid "Rate the plugin"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: facebook-button-plugin.php:
|
224 |
msgid "If there is something wrong about it, please contact us"
|
225 |
msgstr ""
|
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 site pages' tree"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: facebook-button-plugin.php:
|
240 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: facebook-button-plugin.php:
|
244 |
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: facebook-button-plugin.php:
|
248 |
msgid "Please, go to"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: facebook-button-plugin.php:
|
252 |
#, fuzzy
|
253 |
msgid "the setting page"
|
254 |
msgstr "Réglages sauvegardés "
|
255 |
|
256 |
-
#: facebook-button-plugin.php:
|
257 |
msgid "You will be redirected automatically in 5 seconds."
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: facebook-button-plugin.php:
|
261 |
msgid "You can download and activate"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: facebook-button-plugin.php:
|
265 |
msgid "version of this plugin by entering Your license key."
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: facebook-button-plugin.php:
|
269 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: facebook-button-plugin.php:
|
273 |
msgid "(your username is the email you specify when purchasing the product)."
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: facebook-button-plugin.php:
|
277 |
-
#: facebook-button-plugin.php:
|
278 |
msgid "Go!"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: facebook-button-plugin.php:
|
282 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: facebook-button-plugin.php:
|
286 |
msgid "FAQ"
|
287 |
msgstr "FAQ"
|
288 |
|
289 |
-
#: facebook-button-plugin.php:
|
290 |
msgid "Support"
|
291 |
msgstr "Support"
|
292 |
|
293 |
-
#: facebook-button-plugin.php:
|
294 |
-
msgid "Learn More"
|
295 |
-
msgstr ""
|
296 |
-
|
297 |
-
#: facebook-button-plugin.php:837
|
298 |
msgid "It's time to upgrade your <strong>Facebook Like Button</strong> to <strong>PRO</strong> version"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: facebook-button-plugin.php:
|
302 |
msgid "Extend standard plugin functionality with new great options"
|
303 |
msgstr ""
|
304 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-04-14 12:41+0300\n"
|
6 |
+
"PO-Revision-Date: 2014-04-14 12:41+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: http://wptheme.fr/\n"
|
9 |
"Language: fr\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: facebook-button-plugin.php:72
|
21 |
+
#: facebook-button-plugin.php:397
|
22 |
msgid "Facebook Button Settings"
|
23 |
msgstr "Réglages du bouton Facebook"
|
24 |
|
25 |
+
#: facebook-button-plugin.php:72
|
26 |
msgid "Facebook Button"
|
27 |
msgstr "Bouton Facebook"
|
28 |
|
29 |
+
#: facebook-button-plugin.php:188
|
30 |
msgid "requires"
|
31 |
msgstr "Nécessite"
|
32 |
|
33 |
+
#: facebook-button-plugin.php:188
|
34 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
35 |
msgstr "ou supérieur, c'est la raison pour la laquelle il a été desactivé. Veuillez mettre à jour votre Wordpress et essayer à nouveau "
|
36 |
|
37 |
+
#: facebook-button-plugin.php:188
|
38 |
msgid "Back to the WordPress"
|
39 |
msgstr "Retour à Wordpress"
|
40 |
|
41 |
+
#: facebook-button-plugin.php:188
|
42 |
msgid "Plugins page"
|
43 |
msgstr "Page Plugin"
|
44 |
|
45 |
+
#: facebook-button-plugin.php:223
|
46 |
msgid "Settings saved"
|
47 |
msgstr "Réglages sauvegardés "
|
48 |
|
49 |
+
#: facebook-button-plugin.php:245
|
50 |
msgid "Error: File size > 32K"
|
51 |
msgstr "Erreur : Poids du fichier > 32K"
|
52 |
|
53 |
+
#: facebook-button-plugin.php:248
|
54 |
msgid "Error: Invalid file type"
|
55 |
msgstr "Erreur : Type de fichier invalide"
|
56 |
|
57 |
+
#: facebook-button-plugin.php:256
|
58 |
msgid "Error: moving file failed"
|
59 |
msgstr "Erreur : le déplacement du fichier a echoué"
|
60 |
|
61 |
+
#: facebook-button-plugin.php:259
|
62 |
msgid "Error: check image width or height"
|
63 |
msgstr "Erreur : Vérifiez la taille et la largeur de l'image"
|
64 |
|
65 |
+
#: facebook-button-plugin.php:263
|
66 |
msgid "Uploading Error: check image properties"
|
67 |
msgstr "Erreur d'upload : vérifiez les propriétés de l'image"
|
68 |
|
69 |
+
#: facebook-button-plugin.php:288
|
70 |
+
#: facebook-button-plugin.php:327
|
71 |
msgid "Wrong license key"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: facebook-button-plugin.php:320
|
75 |
msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: facebook-button-plugin.php:329
|
79 |
msgid "This license key is bind to another site"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: facebook-button-plugin.php:331
|
83 |
msgid "Unfortunately, you have exceeded the number of available tries. Please, upload the plugin manually."
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: facebook-button-plugin.php:349
|
87 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: facebook-button-plugin.php:355
|
91 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: facebook-button-plugin.php:359
|
95 |
+
#: facebook-button-plugin.php:368
|
96 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: facebook-button-plugin.php:372
|
100 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: facebook-button-plugin.php:387
|
104 |
msgid "Please, enter Your license key"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: facebook-button-plugin.php:399
|
108 |
+
#: facebook-button-plugin.php:720
|
109 |
+
#: facebook-button-plugin.php:732
|
110 |
msgid "Settings"
|
111 |
msgstr "Réglages"
|
112 |
|
113 |
+
#: facebook-button-plugin.php:400
|
114 |
#, fuzzy
|
115 |
msgid "Extra settings"
|
116 |
msgstr "Réglages"
|
117 |
|
118 |
+
#: facebook-button-plugin.php:401
|
119 |
msgid "Go PRO"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: facebook-button-plugin.php:404
|
123 |
msgid "Notice:"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: facebook-button-plugin.php:404
|
127 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: facebook-button-plugin.php:410
|
131 |
msgid "Your Facebook ID:"
|
132 |
msgstr "Votre identifiant Facebook"
|
133 |
|
134 |
+
#: facebook-button-plugin.php:416
|
135 |
msgid "Display button:"
|
136 |
msgstr "Afficher le bouton"
|
137 |
|
138 |
+
#: facebook-button-plugin.php:418
|
139 |
msgid "My Page"
|
140 |
msgstr "Ma page"
|
141 |
|
142 |
+
#: facebook-button-plugin.php:419
|
143 |
msgid "Like"
|
144 |
msgstr "Like"
|
145 |
|
146 |
+
#: facebook-button-plugin.php:424
|
147 |
msgid "Choose display settings:"
|
148 |
msgstr "Choisir les réglages d'affichage"
|
149 |
|
150 |
+
#: facebook-button-plugin.php:428
|
151 |
msgid "Standard Facebook image"
|
152 |
msgstr "Image Facebook par défaut"
|
153 |
|
154 |
+
#: facebook-button-plugin.php:430
|
155 |
msgid "Custom Facebook image"
|
156 |
msgstr "Image Facebook personnalisée"
|
157 |
|
158 |
+
#: facebook-button-plugin.php:437
|
159 |
msgid "Current image:"
|
160 |
msgstr "Image actuelle"
|
161 |
|
162 |
+
#: facebook-button-plugin.php:445
|
163 |
msgid "Facebook image:"
|
164 |
msgstr "Image Facebook"
|
165 |
|
166 |
+
#: facebook-button-plugin.php:451
|
167 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
168 |
msgstr "Propriétés de l'image : largeur max:100px; hauteur max: 40px; poids max : 32kb; type d'image :\"jpg\", \"jpeg\", \"png\"."
|
169 |
|
170 |
+
#: facebook-button-plugin.php:456
|
171 |
msgid "Facebook Button Position:"
|
172 |
msgstr "Position du bouton Facebook"
|
173 |
|
174 |
+
#: facebook-button-plugin.php:460
|
175 |
msgid "Before"
|
176 |
msgstr "Avant"
|
177 |
|
178 |
+
#: facebook-button-plugin.php:461
|
179 |
msgid "After"
|
180 |
msgstr "Après"
|
181 |
|
182 |
+
#: facebook-button-plugin.php:462
|
183 |
msgid "Before and After"
|
184 |
msgstr "Avant et après"
|
185 |
|
186 |
+
#: facebook-button-plugin.php:463
|
187 |
msgid "Shortcode"
|
188 |
msgstr "Shortcode"
|
189 |
|
190 |
+
#: facebook-button-plugin.php:465
|
191 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
192 |
msgstr "Si vous souhaitez ajouter un bouton Facebook sur votre site internet, copier-collez ce Shortcodedans votre page ou votre article"
|
193 |
|
194 |
+
#: facebook-button-plugin.php:470
|
195 |
msgid "Facebook Button language:"
|
196 |
msgstr "Langue du bouton Facebook"
|
197 |
|
198 |
+
#: facebook-button-plugin.php:481
|
199 |
msgid "Change the language of Facebook Like Button"
|
200 |
msgstr "Changer la langue du bouton Facebook"
|
201 |
|
202 |
+
#: facebook-button-plugin.php:485
|
203 |
msgid "Html tag for Like Button:"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: facebook-button-plugin.php:489
|
207 |
msgid "Use this tag to improve validation of your site"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: facebook-button-plugin.php:495
|
211 |
+
#: facebook-button-plugin.php:534
|
212 |
msgid "Save Changes"
|
213 |
msgstr "Sauvegarder les changements"
|
214 |
|
215 |
+
#: facebook-button-plugin.php:501
|
216 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: facebook-button-plugin.php:502
|
220 |
msgid "Rate the plugin"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: facebook-button-plugin.php:505
|
224 |
msgid "If there is something wrong about it, please contact us"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: facebook-button-plugin.php:516
|
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:523
|
232 |
msgid "Show URL for pages"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: facebook-button-plugin.php:529
|
236 |
msgid "Example of site pages' tree"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: facebook-button-plugin.php:539
|
240 |
+
msgid "If you upgrade to Pro version all your settings will be saved."
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
#: facebook-button-plugin.php:546
|
244 |
+
msgid "Unlock premium options by upgrading to a PRO version."
|
245 |
+
msgstr ""
|
246 |
+
|
247 |
+
#: facebook-button-plugin.php:547
|
248 |
+
#: facebook-button-plugin.php:813
|
249 |
+
msgid "Learn More"
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: facebook-button-plugin.php:550
|
253 |
+
msgid "Go"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: facebook-button-plugin.php:562
|
257 |
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: facebook-button-plugin.php:564
|
261 |
msgid "Please, go to"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: facebook-button-plugin.php:564
|
265 |
#, fuzzy
|
266 |
msgid "the setting page"
|
267 |
msgstr "Réglages sauvegardés "
|
268 |
|
269 |
+
#: facebook-button-plugin.php:565
|
270 |
msgid "You will be redirected automatically in 5 seconds."
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: facebook-button-plugin.php:570
|
274 |
msgid "You can download and activate"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: facebook-button-plugin.php:572
|
278 |
msgid "version of this plugin by entering Your license key."
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: facebook-button-plugin.php:574
|
282 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: facebook-button-plugin.php:576
|
286 |
msgid "(your username is the email you specify when purchasing the product)."
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: facebook-button-plugin.php:584
|
290 |
+
#: facebook-button-plugin.php:594
|
291 |
msgid "Go!"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: facebook-button-plugin.php:587
|
295 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: facebook-button-plugin.php:733
|
299 |
msgid "FAQ"
|
300 |
msgstr "FAQ"
|
301 |
|
302 |
+
#: facebook-button-plugin.php:734
|
303 |
msgid "Support"
|
304 |
msgstr "Support"
|
305 |
|
306 |
+
#: facebook-button-plugin.php:816
|
|
|
|
|
|
|
|
|
307 |
msgid "It's time to upgrade your <strong>Facebook Like Button</strong> to <strong>PRO</strong> version"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: facebook-button-plugin.php:817
|
311 |
msgid "Extend standard plugin functionality with new great options"
|
312 |
msgstr ""
|
313 |
|
languages/facebook-he_IL.mo
CHANGED
Binary file
|
languages/facebook-he_IL.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Facebook Button Plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-
|
6 |
-
"PO-Revision-Date: 2014-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: he_IL\n"
|
@@ -19,336 +19,345 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
# @ facebook
|
22 |
-
#: facebook-button-plugin.php:
|
23 |
-
#: facebook-button-plugin.php:
|
24 |
#, fuzzy
|
25 |
msgid "Facebook Button Settings"
|
26 |
msgstr "אפשרויות כפתור פייסבוק"
|
27 |
|
28 |
# @ facebook
|
29 |
-
#: facebook-button-plugin.php:
|
30 |
#, fuzzy
|
31 |
msgid "Facebook Button"
|
32 |
msgstr "כפתור פייסבוק"
|
33 |
|
34 |
-
#: facebook-button-plugin.php:
|
35 |
msgid "requires"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: facebook-button-plugin.php:
|
39 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: facebook-button-plugin.php:
|
43 |
msgid "Back to the WordPress"
|
44 |
msgstr ""
|
45 |
|
46 |
# @ facebook
|
47 |
-
#: facebook-button-plugin.php:
|
48 |
#, fuzzy
|
49 |
msgid "Plugins page"
|
50 |
msgstr "תוספים מומלצים"
|
51 |
|
52 |
# @ facebook
|
53 |
-
#: facebook-button-plugin.php:
|
54 |
#, fuzzy
|
55 |
msgid "Settings saved"
|
56 |
msgstr "הגדרות"
|
57 |
|
58 |
# @ facebook
|
59 |
-
#: facebook-button-plugin.php:
|
60 |
msgid "Error: File size > 32K"
|
61 |
msgstr "שגיאה: גודל הקובץ גדול מ 32K"
|
62 |
|
63 |
# @ facebook
|
64 |
-
#: facebook-button-plugin.php:
|
65 |
msgid "Error: Invalid file type"
|
66 |
msgstr "שגיאה: סוג קובץ שגוי"
|
67 |
|
68 |
# @ facebook
|
69 |
-
#: facebook-button-plugin.php:
|
70 |
msgid "Error: moving file failed"
|
71 |
msgstr "שגיאה: העברת הקובץ נכשלה"
|
72 |
|
73 |
# @ facebook
|
74 |
-
#: facebook-button-plugin.php:
|
75 |
msgid "Error: check image width or height"
|
76 |
msgstr "שגיאה: בדוק את רוחב וגובה התמונה"
|
77 |
|
78 |
# @ facebook
|
79 |
-
#: facebook-button-plugin.php:
|
80 |
msgid "Uploading Error: check image properties"
|
81 |
msgstr "שגיאת טעינה: בדוק את מאפייני התמונה"
|
82 |
|
83 |
-
#: facebook-button-plugin.php:
|
84 |
-
#: facebook-button-plugin.php:
|
85 |
msgid "Wrong license key"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: facebook-button-plugin.php:
|
89 |
msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: facebook-button-plugin.php:
|
93 |
msgid "This license key is bind to another site"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: facebook-button-plugin.php:
|
97 |
msgid "Unfortunately, you have exceeded the number of available tries. Please, upload the plugin manually."
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: facebook-button-plugin.php:
|
101 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: facebook-button-plugin.php:
|
105 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: facebook-button-plugin.php:
|
109 |
-
#: facebook-button-plugin.php:
|
110 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: facebook-button-plugin.php:
|
114 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: facebook-button-plugin.php:
|
118 |
msgid "Please, enter Your license key"
|
119 |
msgstr ""
|
120 |
|
121 |
# @ facebook
|
122 |
-
#: facebook-button-plugin.php:
|
123 |
-
#: facebook-button-plugin.php:
|
124 |
-
#: facebook-button-plugin.php:
|
125 |
msgid "Settings"
|
126 |
msgstr "הגדרות"
|
127 |
|
128 |
# @ facebook
|
129 |
-
#: facebook-button-plugin.php:
|
130 |
#, fuzzy
|
131 |
msgid "Extra settings"
|
132 |
msgstr "הגדרות"
|
133 |
|
134 |
-
#: facebook-button-plugin.php:
|
135 |
msgid "Go PRO"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: facebook-button-plugin.php:
|
139 |
msgid "Notice:"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: facebook-button-plugin.php:
|
143 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
144 |
msgstr ""
|
145 |
|
146 |
# @ facebook
|
147 |
-
#: facebook-button-plugin.php:
|
148 |
#, fuzzy
|
149 |
msgid "Your Facebook ID:"
|
150 |
msgstr "מזהה הפייסבוק שלך:"
|
151 |
|
152 |
# @ facebook
|
153 |
-
#: facebook-button-plugin.php:
|
154 |
msgid "Display button:"
|
155 |
msgstr "הצג כפתור:"
|
156 |
|
157 |
# @ captcha
|
158 |
-
#: facebook-button-plugin.php:
|
159 |
msgid "My Page"
|
160 |
msgstr "הדף שלי"
|
161 |
|
162 |
# @ captcha
|
163 |
-
#: facebook-button-plugin.php:
|
164 |
msgid "Like"
|
165 |
msgstr "לייק"
|
166 |
|
167 |
# @ facebook
|
168 |
-
#: facebook-button-plugin.php:
|
169 |
#, fuzzy
|
170 |
msgid "Choose display settings:"
|
171 |
msgstr "בחר אפשרות תצוגה:"
|
172 |
|
173 |
# @ facebook
|
174 |
-
#: facebook-button-plugin.php:
|
175 |
#, fuzzy
|
176 |
msgid "Standard Facebook image"
|
177 |
msgstr "תמונת פייסבוק רגילה"
|
178 |
|
179 |
# @ facebook
|
180 |
-
#: facebook-button-plugin.php:
|
181 |
#, fuzzy
|
182 |
msgid "Custom Facebook image"
|
183 |
msgstr "תמונת פייסבוק מותאמת אישית"
|
184 |
|
185 |
# @ facebook
|
186 |
-
#: facebook-button-plugin.php:
|
187 |
msgid "Current image:"
|
188 |
msgstr "תמונה נוכחית:"
|
189 |
|
190 |
# @ facebook
|
191 |
-
#: facebook-button-plugin.php:
|
192 |
#, fuzzy
|
193 |
msgid "Facebook image:"
|
194 |
msgstr "תמונת פייסבוק:"
|
195 |
|
196 |
# @ facebook
|
197 |
-
#: facebook-button-plugin.php:
|
198 |
#, fuzzy
|
199 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
200 |
msgstr "מאפייני תמונה: רוחב מירבי: 100 פיקסלים. גובה מירבי: 40 פיקסלים, גודל מירבי: 32KB, סוגי קובץ: \"jpg\", \"jpeg\"."
|
201 |
|
202 |
# @ facebook
|
203 |
-
#: facebook-button-plugin.php:
|
204 |
#, fuzzy
|
205 |
msgid "Facebook Button Position:"
|
206 |
msgstr "מיקום כפתור הפייסבוק:"
|
207 |
|
208 |
# @ facebook
|
209 |
-
#: facebook-button-plugin.php:
|
210 |
msgid "Before"
|
211 |
msgstr "לפני"
|
212 |
|
213 |
# @ facebook
|
214 |
-
#: facebook-button-plugin.php:
|
215 |
msgid "After"
|
216 |
msgstr "אחרי"
|
217 |
|
218 |
# @ facebook
|
219 |
-
#: facebook-button-plugin.php:
|
220 |
msgid "Before and After"
|
221 |
msgstr "לפני ואחרי"
|
222 |
|
223 |
# @ facebook
|
224 |
-
#: facebook-button-plugin.php:
|
225 |
msgid "Shortcode"
|
226 |
msgstr "קיצור קוד"
|
227 |
|
228 |
# @ facebook
|
229 |
-
#: facebook-button-plugin.php:
|
230 |
#, fuzzy
|
231 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
232 |
msgstr "אם ברצונך להוסיף כפתור פייסבוק לאתר שלך, פשוט העתק את קיצור הקוד שלהלן והדבק אל הפוסט או הדף שלך:"
|
233 |
|
234 |
# @ facebook
|
235 |
-
#: facebook-button-plugin.php:
|
236 |
#, fuzzy
|
237 |
msgid "Facebook Button language:"
|
238 |
msgstr "שפת כפתור פייסבוק:"
|
239 |
|
240 |
# @ facebook
|
241 |
-
#: facebook-button-plugin.php:
|
242 |
#, fuzzy
|
243 |
msgid "Change the language of Facebook Like Button"
|
244 |
msgstr "בחר שפה לכפתור לייק"
|
245 |
|
246 |
-
#: facebook-button-plugin.php:
|
247 |
msgid "Html tag for Like Button:"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: facebook-button-plugin.php:
|
251 |
msgid "Use this tag to improve validation of your site"
|
252 |
msgstr ""
|
253 |
|
254 |
# @ default
|
255 |
-
#: facebook-button-plugin.php:
|
256 |
-
#: facebook-button-plugin.php:
|
257 |
msgid "Save Changes"
|
258 |
msgstr "שמור שינויים"
|
259 |
|
260 |
-
#: facebook-button-plugin.php:
|
261 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
262 |
msgstr ""
|
263 |
|
264 |
# @ facebook
|
265 |
-
#: facebook-button-plugin.php:
|
266 |
#, fuzzy
|
267 |
msgid "Rate the plugin"
|
268 |
msgstr "תוספים מומלצים"
|
269 |
|
270 |
-
#: facebook-button-plugin.php:
|
271 |
msgid "If there is something wrong about it, please contact us"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: facebook-button-plugin.php:
|
275 |
msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: facebook-button-plugin.php:
|
279 |
msgid "Show URL for pages"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: facebook-button-plugin.php:
|
283 |
msgid "Example of site pages' tree"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: facebook-button-plugin.php:
|
287 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: facebook-button-plugin.php:
|
291 |
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: facebook-button-plugin.php:
|
295 |
msgid "Please, go to"
|
296 |
msgstr ""
|
297 |
|
298 |
# @ facebook
|
299 |
-
#: facebook-button-plugin.php:
|
300 |
#, fuzzy
|
301 |
msgid "the setting page"
|
302 |
msgstr "הגדרות"
|
303 |
|
304 |
-
#: facebook-button-plugin.php:
|
305 |
msgid "You will be redirected automatically in 5 seconds."
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: facebook-button-plugin.php:
|
309 |
msgid "You can download and activate"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: facebook-button-plugin.php:
|
313 |
msgid "version of this plugin by entering Your license key."
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: facebook-button-plugin.php:
|
317 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: facebook-button-plugin.php:
|
321 |
msgid "(your username is the email you specify when purchasing the product)."
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: facebook-button-plugin.php:
|
325 |
-
#: facebook-button-plugin.php:
|
326 |
msgid "Go!"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: facebook-button-plugin.php:
|
330 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
331 |
msgstr ""
|
332 |
|
333 |
# @ facebook
|
334 |
-
#: facebook-button-plugin.php:
|
335 |
msgid "FAQ"
|
336 |
msgstr "שאלות ותשובות"
|
337 |
|
338 |
# @ facebook
|
339 |
-
#: facebook-button-plugin.php:
|
340 |
msgid "Support"
|
341 |
msgstr "תמיכה"
|
342 |
|
343 |
-
#: facebook-button-plugin.php:
|
344 |
-
msgid "Learn More"
|
345 |
-
msgstr ""
|
346 |
-
|
347 |
-
#: facebook-button-plugin.php:837
|
348 |
msgid "It's time to upgrade your <strong>Facebook Like Button</strong> to <strong>PRO</strong> version"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: facebook-button-plugin.php:
|
352 |
msgid "Extend standard plugin functionality with new great options"
|
353 |
msgstr ""
|
354 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Facebook Button Plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-04-14 12:42+0300\n"
|
6 |
+
"PO-Revision-Date: 2014-04-14 12:42+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: he_IL\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
# @ facebook
|
22 |
+
#: facebook-button-plugin.php:72
|
23 |
+
#: facebook-button-plugin.php:397
|
24 |
#, fuzzy
|
25 |
msgid "Facebook Button Settings"
|
26 |
msgstr "אפשרויות כפתור פייסבוק"
|
27 |
|
28 |
# @ facebook
|
29 |
+
#: facebook-button-plugin.php:72
|
30 |
#, fuzzy
|
31 |
msgid "Facebook Button"
|
32 |
msgstr "כפתור פייסבוק"
|
33 |
|
34 |
+
#: facebook-button-plugin.php:188
|
35 |
msgid "requires"
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: facebook-button-plugin.php:188
|
39 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: facebook-button-plugin.php:188
|
43 |
msgid "Back to the WordPress"
|
44 |
msgstr ""
|
45 |
|
46 |
# @ facebook
|
47 |
+
#: facebook-button-plugin.php:188
|
48 |
#, fuzzy
|
49 |
msgid "Plugins page"
|
50 |
msgstr "תוספים מומלצים"
|
51 |
|
52 |
# @ facebook
|
53 |
+
#: facebook-button-plugin.php:223
|
54 |
#, fuzzy
|
55 |
msgid "Settings saved"
|
56 |
msgstr "הגדרות"
|
57 |
|
58 |
# @ facebook
|
59 |
+
#: facebook-button-plugin.php:245
|
60 |
msgid "Error: File size > 32K"
|
61 |
msgstr "שגיאה: גודל הקובץ גדול מ 32K"
|
62 |
|
63 |
# @ facebook
|
64 |
+
#: facebook-button-plugin.php:248
|
65 |
msgid "Error: Invalid file type"
|
66 |
msgstr "שגיאה: סוג קובץ שגוי"
|
67 |
|
68 |
# @ facebook
|
69 |
+
#: facebook-button-plugin.php:256
|
70 |
msgid "Error: moving file failed"
|
71 |
msgstr "שגיאה: העברת הקובץ נכשלה"
|
72 |
|
73 |
# @ facebook
|
74 |
+
#: facebook-button-plugin.php:259
|
75 |
msgid "Error: check image width or height"
|
76 |
msgstr "שגיאה: בדוק את רוחב וגובה התמונה"
|
77 |
|
78 |
# @ facebook
|
79 |
+
#: facebook-button-plugin.php:263
|
80 |
msgid "Uploading Error: check image properties"
|
81 |
msgstr "שגיאת טעינה: בדוק את מאפייני התמונה"
|
82 |
|
83 |
+
#: facebook-button-plugin.php:288
|
84 |
+
#: facebook-button-plugin.php:327
|
85 |
msgid "Wrong license key"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: facebook-button-plugin.php:320
|
89 |
msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: facebook-button-plugin.php:329
|
93 |
msgid "This license key is bind to another site"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: facebook-button-plugin.php:331
|
97 |
msgid "Unfortunately, you have exceeded the number of available tries. Please, upload the plugin manually."
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: facebook-button-plugin.php:349
|
101 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: facebook-button-plugin.php:355
|
105 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: facebook-button-plugin.php:359
|
109 |
+
#: facebook-button-plugin.php:368
|
110 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: facebook-button-plugin.php:372
|
114 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: facebook-button-plugin.php:387
|
118 |
msgid "Please, enter Your license key"
|
119 |
msgstr ""
|
120 |
|
121 |
# @ facebook
|
122 |
+
#: facebook-button-plugin.php:399
|
123 |
+
#: facebook-button-plugin.php:720
|
124 |
+
#: facebook-button-plugin.php:732
|
125 |
msgid "Settings"
|
126 |
msgstr "הגדרות"
|
127 |
|
128 |
# @ facebook
|
129 |
+
#: facebook-button-plugin.php:400
|
130 |
#, fuzzy
|
131 |
msgid "Extra settings"
|
132 |
msgstr "הגדרות"
|
133 |
|
134 |
+
#: facebook-button-plugin.php:401
|
135 |
msgid "Go PRO"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: facebook-button-plugin.php:404
|
139 |
msgid "Notice:"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: facebook-button-plugin.php:404
|
143 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
144 |
msgstr ""
|
145 |
|
146 |
# @ facebook
|
147 |
+
#: facebook-button-plugin.php:410
|
148 |
#, fuzzy
|
149 |
msgid "Your Facebook ID:"
|
150 |
msgstr "מזהה הפייסבוק שלך:"
|
151 |
|
152 |
# @ facebook
|
153 |
+
#: facebook-button-plugin.php:416
|
154 |
msgid "Display button:"
|
155 |
msgstr "הצג כפתור:"
|
156 |
|
157 |
# @ captcha
|
158 |
+
#: facebook-button-plugin.php:418
|
159 |
msgid "My Page"
|
160 |
msgstr "הדף שלי"
|
161 |
|
162 |
# @ captcha
|
163 |
+
#: facebook-button-plugin.php:419
|
164 |
msgid "Like"
|
165 |
msgstr "לייק"
|
166 |
|
167 |
# @ facebook
|
168 |
+
#: facebook-button-plugin.php:424
|
169 |
#, fuzzy
|
170 |
msgid "Choose display settings:"
|
171 |
msgstr "בחר אפשרות תצוגה:"
|
172 |
|
173 |
# @ facebook
|
174 |
+
#: facebook-button-plugin.php:428
|
175 |
#, fuzzy
|
176 |
msgid "Standard Facebook image"
|
177 |
msgstr "תמונת פייסבוק רגילה"
|
178 |
|
179 |
# @ facebook
|
180 |
+
#: facebook-button-plugin.php:430
|
181 |
#, fuzzy
|
182 |
msgid "Custom Facebook image"
|
183 |
msgstr "תמונת פייסבוק מותאמת אישית"
|
184 |
|
185 |
# @ facebook
|
186 |
+
#: facebook-button-plugin.php:437
|
187 |
msgid "Current image:"
|
188 |
msgstr "תמונה נוכחית:"
|
189 |
|
190 |
# @ facebook
|
191 |
+
#: facebook-button-plugin.php:445
|
192 |
#, fuzzy
|
193 |
msgid "Facebook image:"
|
194 |
msgstr "תמונת פייסבוק:"
|
195 |
|
196 |
# @ facebook
|
197 |
+
#: facebook-button-plugin.php:451
|
198 |
#, fuzzy
|
199 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
200 |
msgstr "מאפייני תמונה: רוחב מירבי: 100 פיקסלים. גובה מירבי: 40 פיקסלים, גודל מירבי: 32KB, סוגי קובץ: \"jpg\", \"jpeg\"."
|
201 |
|
202 |
# @ facebook
|
203 |
+
#: facebook-button-plugin.php:456
|
204 |
#, fuzzy
|
205 |
msgid "Facebook Button Position:"
|
206 |
msgstr "מיקום כפתור הפייסבוק:"
|
207 |
|
208 |
# @ facebook
|
209 |
+
#: facebook-button-plugin.php:460
|
210 |
msgid "Before"
|
211 |
msgstr "לפני"
|
212 |
|
213 |
# @ facebook
|
214 |
+
#: facebook-button-plugin.php:461
|
215 |
msgid "After"
|
216 |
msgstr "אחרי"
|
217 |
|
218 |
# @ facebook
|
219 |
+
#: facebook-button-plugin.php:462
|
220 |
msgid "Before and After"
|
221 |
msgstr "לפני ואחרי"
|
222 |
|
223 |
# @ facebook
|
224 |
+
#: facebook-button-plugin.php:463
|
225 |
msgid "Shortcode"
|
226 |
msgstr "קיצור קוד"
|
227 |
|
228 |
# @ facebook
|
229 |
+
#: facebook-button-plugin.php:465
|
230 |
#, fuzzy
|
231 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
232 |
msgstr "אם ברצונך להוסיף כפתור פייסבוק לאתר שלך, פשוט העתק את קיצור הקוד שלהלן והדבק אל הפוסט או הדף שלך:"
|
233 |
|
234 |
# @ facebook
|
235 |
+
#: facebook-button-plugin.php:470
|
236 |
#, fuzzy
|
237 |
msgid "Facebook Button language:"
|
238 |
msgstr "שפת כפתור פייסבוק:"
|
239 |
|
240 |
# @ facebook
|
241 |
+
#: facebook-button-plugin.php:481
|
242 |
#, fuzzy
|
243 |
msgid "Change the language of Facebook Like Button"
|
244 |
msgstr "בחר שפה לכפתור לייק"
|
245 |
|
246 |
+
#: facebook-button-plugin.php:485
|
247 |
msgid "Html tag for Like Button:"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: facebook-button-plugin.php:489
|
251 |
msgid "Use this tag to improve validation of your site"
|
252 |
msgstr ""
|
253 |
|
254 |
# @ default
|
255 |
+
#: facebook-button-plugin.php:495
|
256 |
+
#: facebook-button-plugin.php:534
|
257 |
msgid "Save Changes"
|
258 |
msgstr "שמור שינויים"
|
259 |
|
260 |
+
#: facebook-button-plugin.php:501
|
261 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
262 |
msgstr ""
|
263 |
|
264 |
# @ facebook
|
265 |
+
#: facebook-button-plugin.php:502
|
266 |
#, fuzzy
|
267 |
msgid "Rate the plugin"
|
268 |
msgstr "תוספים מומלצים"
|
269 |
|
270 |
+
#: facebook-button-plugin.php:505
|
271 |
msgid "If there is something wrong about it, please contact us"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: facebook-button-plugin.php:516
|
275 |
msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: facebook-button-plugin.php:523
|
279 |
msgid "Show URL for pages"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: facebook-button-plugin.php:529
|
283 |
msgid "Example of site pages' tree"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: facebook-button-plugin.php:539
|
287 |
+
msgid "If you upgrade to Pro version all your settings will be saved."
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: facebook-button-plugin.php:546
|
291 |
+
msgid "Unlock premium options by upgrading to a PRO version."
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: facebook-button-plugin.php:547
|
295 |
+
#: facebook-button-plugin.php:813
|
296 |
+
msgid "Learn More"
|
297 |
+
msgstr ""
|
298 |
+
|
299 |
+
#: facebook-button-plugin.php:550
|
300 |
+
msgid "Go"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: facebook-button-plugin.php:562
|
304 |
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: facebook-button-plugin.php:564
|
308 |
msgid "Please, go to"
|
309 |
msgstr ""
|
310 |
|
311 |
# @ facebook
|
312 |
+
#: facebook-button-plugin.php:564
|
313 |
#, fuzzy
|
314 |
msgid "the setting page"
|
315 |
msgstr "הגדרות"
|
316 |
|
317 |
+
#: facebook-button-plugin.php:565
|
318 |
msgid "You will be redirected automatically in 5 seconds."
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: facebook-button-plugin.php:570
|
322 |
msgid "You can download and activate"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: facebook-button-plugin.php:572
|
326 |
msgid "version of this plugin by entering Your license key."
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: facebook-button-plugin.php:574
|
330 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: facebook-button-plugin.php:576
|
334 |
msgid "(your username is the email you specify when purchasing the product)."
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: facebook-button-plugin.php:584
|
338 |
+
#: facebook-button-plugin.php:594
|
339 |
msgid "Go!"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: facebook-button-plugin.php:587
|
343 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
344 |
msgstr ""
|
345 |
|
346 |
# @ facebook
|
347 |
+
#: facebook-button-plugin.php:733
|
348 |
msgid "FAQ"
|
349 |
msgstr "שאלות ותשובות"
|
350 |
|
351 |
# @ facebook
|
352 |
+
#: facebook-button-plugin.php:734
|
353 |
msgid "Support"
|
354 |
msgstr "תמיכה"
|
355 |
|
356 |
+
#: facebook-button-plugin.php:816
|
|
|
|
|
|
|
|
|
357 |
msgid "It's time to upgrade your <strong>Facebook Like Button</strong> to <strong>PRO</strong> version"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: facebook-button-plugin.php:817
|
361 |
msgid "Extend standard plugin functionality with new great options"
|
362 |
msgstr ""
|
363 |
|
languages/facebook-id_ID.mo
CHANGED
Binary file
|
languages/facebook-id_ID.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-
|
6 |
-
"PO-Revision-Date: 2014-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: nasrulhaq <nasrulhaq81@gmail.com>\n"
|
9 |
"Language: es_ES\n"
|
@@ -16,289 +16,298 @@ 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:
|
21 |
msgid "Facebook Button Settings"
|
22 |
msgstr "Pengaturan Facebook Button"
|
23 |
|
24 |
-
#: facebook-button-plugin.php:
|
25 |
msgid "Facebook Button"
|
26 |
msgstr "Tombol Facebook"
|
27 |
|
28 |
-
#: facebook-button-plugin.php:
|
29 |
msgid "requires"
|
30 |
msgstr "membutuhkan"
|
31 |
|
32 |
-
#: facebook-button-plugin.php:
|
33 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
34 |
msgstr "atau lebih tinggi, itulah mengapa di nonaktifkan! Harap tingkatkan versi Wordpress dan coba lagi"
|
35 |
|
36 |
-
#: facebook-button-plugin.php:
|
37 |
msgid "Back to the WordPress"
|
38 |
msgstr "Kembali ke Wordpress"
|
39 |
|
40 |
-
#: facebook-button-plugin.php:
|
41 |
msgid "Plugins page"
|
42 |
msgstr "Halaman Plugin"
|
43 |
|
44 |
-
#: facebook-button-plugin.php:
|
45 |
msgid "Settings saved"
|
46 |
msgstr "Simpan Pengaturan"
|
47 |
|
48 |
-
#: facebook-button-plugin.php:
|
49 |
msgid "Error: File size > 32K"
|
50 |
msgstr "SALAH: Ukuran file lebih besar dari 32KB"
|
51 |
|
52 |
-
#: facebook-button-plugin.php:
|
53 |
msgid "Error: Invalid file type"
|
54 |
msgstr "SALAH: Tipe data tidak benar"
|
55 |
|
56 |
-
#: facebook-button-plugin.php:
|
57 |
msgid "Error: moving file failed"
|
58 |
msgstr "Salah: gagal memindahkan data"
|
59 |
|
60 |
-
#: facebook-button-plugin.php:
|
61 |
msgid "Error: check image width or height"
|
62 |
msgstr "Salah: periksa lebar atau panjang gambar"
|
63 |
|
64 |
-
#: facebook-button-plugin.php:
|
65 |
msgid "Uploading Error: check image properties"
|
66 |
msgstr "Gagal Mengunggah: periksa properti gambar"
|
67 |
|
68 |
-
#: facebook-button-plugin.php:
|
69 |
-
#: facebook-button-plugin.php:
|
70 |
msgid "Wrong license key"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: facebook-button-plugin.php:
|
74 |
msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: facebook-button-plugin.php:
|
78 |
msgid "This license key is bind to another site"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: facebook-button-plugin.php:
|
82 |
msgid "Unfortunately, you have exceeded the number of available tries. Please, upload the plugin manually."
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: facebook-button-plugin.php:
|
86 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: facebook-button-plugin.php:
|
90 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: facebook-button-plugin.php:
|
94 |
-
#: facebook-button-plugin.php:
|
95 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: facebook-button-plugin.php:
|
99 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: facebook-button-plugin.php:
|
103 |
msgid "Please, enter Your license key"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: facebook-button-plugin.php:
|
107 |
-
#: facebook-button-plugin.php:
|
108 |
-
#: facebook-button-plugin.php:
|
109 |
msgid "Settings"
|
110 |
msgstr "Pengaturan"
|
111 |
|
112 |
-
#: facebook-button-plugin.php:
|
113 |
#, fuzzy
|
114 |
msgid "Extra settings"
|
115 |
msgstr "Pengaturan"
|
116 |
|
117 |
-
#: facebook-button-plugin.php:
|
118 |
msgid "Go PRO"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: facebook-button-plugin.php:
|
122 |
msgid "Notice:"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: facebook-button-plugin.php:
|
126 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: facebook-button-plugin.php:
|
130 |
msgid "Your Facebook ID:"
|
131 |
msgstr " ID Facebook:"
|
132 |
|
133 |
-
#: facebook-button-plugin.php:
|
134 |
msgid "Display button:"
|
135 |
msgstr "Tampilan tombol:"
|
136 |
|
137 |
-
#: facebook-button-plugin.php:
|
138 |
msgid "My Page"
|
139 |
msgstr "Halamanku"
|
140 |
|
141 |
-
#: facebook-button-plugin.php:
|
142 |
msgid "Like"
|
143 |
msgstr "Suka"
|
144 |
|
145 |
-
#: facebook-button-plugin.php:
|
146 |
msgid "Choose display settings:"
|
147 |
msgstr "Ubah pengaturan tampilan"
|
148 |
|
149 |
-
#: facebook-button-plugin.php:
|
150 |
msgid "Standard Facebook image"
|
151 |
msgstr "Standar gambar Facebook "
|
152 |
|
153 |
-
#: facebook-button-plugin.php:
|
154 |
msgid "Custom Facebook image"
|
155 |
msgstr "Kustom Gambar Facebook "
|
156 |
|
157 |
-
#: facebook-button-plugin.php:
|
158 |
msgid "Current image:"
|
159 |
msgstr "Gambar tertentu:"
|
160 |
|
161 |
-
#: facebook-button-plugin.php:
|
162 |
msgid "Facebook image:"
|
163 |
msgstr "Gambar Facebook:"
|
164 |
|
165 |
-
#: facebook-button-plugin.php:
|
166 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
167 |
msgstr "properti gambar: lebar gambar maks:100px; panjang gambar maks:40px; ukuran gambar maks:32Kb; tipe gambar:\"jpg\",\"jpeg\", \"png\"."
|
168 |
|
169 |
-
#: facebook-button-plugin.php:
|
170 |
msgid "Facebook Button Position:"
|
171 |
msgstr "Posisi Tombol Facebook"
|
172 |
|
173 |
-
#: facebook-button-plugin.php:
|
174 |
msgid "Before"
|
175 |
msgstr "Sebelum"
|
176 |
|
177 |
-
#: facebook-button-plugin.php:
|
178 |
msgid "After"
|
179 |
msgstr "Setelah"
|
180 |
|
181 |
-
#: facebook-button-plugin.php:
|
182 |
msgid "Before and After"
|
183 |
msgstr "Sebelum dan Setelah"
|
184 |
|
185 |
-
#: facebook-button-plugin.php:
|
186 |
msgid "Shortcode"
|
187 |
msgstr "Kode Pendek"
|
188 |
|
189 |
-
#: facebook-button-plugin.php:
|
190 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
191 |
msgstr "Jika anda ingin menambahkan tombol Facebook di website anda, cukup salin kode singkat kedalam posting atau page anda:"
|
192 |
|
193 |
-
#: facebook-button-plugin.php:
|
194 |
msgid "Facebook Button language:"
|
195 |
msgstr "Bahasa Facebook Button:"
|
196 |
|
197 |
-
#: facebook-button-plugin.php:
|
198 |
msgid "Change the language of Facebook Like Button"
|
199 |
msgstr "Ubah bahasa Facebook Like Button"
|
200 |
|
201 |
-
#: facebook-button-plugin.php:
|
202 |
msgid "Html tag for Like Button:"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: facebook-button-plugin.php:
|
206 |
msgid "Use this tag to improve validation of your site"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: facebook-button-plugin.php:
|
210 |
-
#: facebook-button-plugin.php:
|
211 |
msgid "Save Changes"
|
212 |
msgstr "Simpan Perubahan"
|
213 |
|
214 |
-
#: facebook-button-plugin.php:
|
215 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: facebook-button-plugin.php:
|
219 |
#, fuzzy
|
220 |
msgid "Rate the plugin"
|
221 |
msgstr "Eklenti Önerileri"
|
222 |
|
223 |
-
#: facebook-button-plugin.php:
|
224 |
msgid "If there is something wrong about it, please contact us"
|
225 |
msgstr ""
|
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 site pages' tree"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: facebook-button-plugin.php:
|
240 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: facebook-button-plugin.php:
|
244 |
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: facebook-button-plugin.php:
|
248 |
msgid "Please, go to"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: facebook-button-plugin.php:
|
252 |
#, fuzzy
|
253 |
msgid "the setting page"
|
254 |
msgstr "Simpan Pengaturan"
|
255 |
|
256 |
-
#: facebook-button-plugin.php:
|
257 |
msgid "You will be redirected automatically in 5 seconds."
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: facebook-button-plugin.php:
|
261 |
msgid "You can download and activate"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: facebook-button-plugin.php:
|
265 |
msgid "version of this plugin by entering Your license key."
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: facebook-button-plugin.php:
|
269 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: facebook-button-plugin.php:
|
273 |
msgid "(your username is the email you specify when purchasing the product)."
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: facebook-button-plugin.php:
|
277 |
-
#: facebook-button-plugin.php:
|
278 |
msgid "Go!"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: facebook-button-plugin.php:
|
282 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: facebook-button-plugin.php:
|
286 |
msgid "FAQ"
|
287 |
msgstr "SSS (Sık Sorulan Sorular)"
|
288 |
|
289 |
-
#: facebook-button-plugin.php:
|
290 |
msgid "Support"
|
291 |
msgstr "Dukungan"
|
292 |
|
293 |
-
#: facebook-button-plugin.php:
|
294 |
-
msgid "Learn More"
|
295 |
-
msgstr ""
|
296 |
-
|
297 |
-
#: facebook-button-plugin.php:837
|
298 |
msgid "It's time to upgrade your <strong>Facebook Like Button</strong> to <strong>PRO</strong> version"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: facebook-button-plugin.php:
|
302 |
msgid "Extend standard plugin functionality with new great options"
|
303 |
msgstr ""
|
304 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-04-14 12:42+0300\n"
|
6 |
+
"PO-Revision-Date: 2014-04-14 12:42+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: nasrulhaq <nasrulhaq81@gmail.com>\n"
|
9 |
"Language: es_ES\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: facebook-button-plugin.php:72
|
20 |
+
#: facebook-button-plugin.php:397
|
21 |
msgid "Facebook Button Settings"
|
22 |
msgstr "Pengaturan Facebook Button"
|
23 |
|
24 |
+
#: facebook-button-plugin.php:72
|
25 |
msgid "Facebook Button"
|
26 |
msgstr "Tombol Facebook"
|
27 |
|
28 |
+
#: facebook-button-plugin.php:188
|
29 |
msgid "requires"
|
30 |
msgstr "membutuhkan"
|
31 |
|
32 |
+
#: facebook-button-plugin.php:188
|
33 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
34 |
msgstr "atau lebih tinggi, itulah mengapa di nonaktifkan! Harap tingkatkan versi Wordpress dan coba lagi"
|
35 |
|
36 |
+
#: facebook-button-plugin.php:188
|
37 |
msgid "Back to the WordPress"
|
38 |
msgstr "Kembali ke Wordpress"
|
39 |
|
40 |
+
#: facebook-button-plugin.php:188
|
41 |
msgid "Plugins page"
|
42 |
msgstr "Halaman Plugin"
|
43 |
|
44 |
+
#: facebook-button-plugin.php:223
|
45 |
msgid "Settings saved"
|
46 |
msgstr "Simpan Pengaturan"
|
47 |
|
48 |
+
#: facebook-button-plugin.php:245
|
49 |
msgid "Error: File size > 32K"
|
50 |
msgstr "SALAH: Ukuran file lebih besar dari 32KB"
|
51 |
|
52 |
+
#: facebook-button-plugin.php:248
|
53 |
msgid "Error: Invalid file type"
|
54 |
msgstr "SALAH: Tipe data tidak benar"
|
55 |
|
56 |
+
#: facebook-button-plugin.php:256
|
57 |
msgid "Error: moving file failed"
|
58 |
msgstr "Salah: gagal memindahkan data"
|
59 |
|
60 |
+
#: facebook-button-plugin.php:259
|
61 |
msgid "Error: check image width or height"
|
62 |
msgstr "Salah: periksa lebar atau panjang gambar"
|
63 |
|
64 |
+
#: facebook-button-plugin.php:263
|
65 |
msgid "Uploading Error: check image properties"
|
66 |
msgstr "Gagal Mengunggah: periksa properti gambar"
|
67 |
|
68 |
+
#: facebook-button-plugin.php:288
|
69 |
+
#: facebook-button-plugin.php:327
|
70 |
msgid "Wrong license key"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: facebook-button-plugin.php:320
|
74 |
msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: facebook-button-plugin.php:329
|
78 |
msgid "This license key is bind to another site"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: facebook-button-plugin.php:331
|
82 |
msgid "Unfortunately, you have exceeded the number of available tries. Please, upload the plugin manually."
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: facebook-button-plugin.php:349
|
86 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: facebook-button-plugin.php:355
|
90 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: facebook-button-plugin.php:359
|
94 |
+
#: facebook-button-plugin.php:368
|
95 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: facebook-button-plugin.php:372
|
99 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: facebook-button-plugin.php:387
|
103 |
msgid "Please, enter Your license key"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: facebook-button-plugin.php:399
|
107 |
+
#: facebook-button-plugin.php:720
|
108 |
+
#: facebook-button-plugin.php:732
|
109 |
msgid "Settings"
|
110 |
msgstr "Pengaturan"
|
111 |
|
112 |
+
#: facebook-button-plugin.php:400
|
113 |
#, fuzzy
|
114 |
msgid "Extra settings"
|
115 |
msgstr "Pengaturan"
|
116 |
|
117 |
+
#: facebook-button-plugin.php:401
|
118 |
msgid "Go PRO"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: facebook-button-plugin.php:404
|
122 |
msgid "Notice:"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: facebook-button-plugin.php:404
|
126 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: facebook-button-plugin.php:410
|
130 |
msgid "Your Facebook ID:"
|
131 |
msgstr " ID Facebook:"
|
132 |
|
133 |
+
#: facebook-button-plugin.php:416
|
134 |
msgid "Display button:"
|
135 |
msgstr "Tampilan tombol:"
|
136 |
|
137 |
+
#: facebook-button-plugin.php:418
|
138 |
msgid "My Page"
|
139 |
msgstr "Halamanku"
|
140 |
|
141 |
+
#: facebook-button-plugin.php:419
|
142 |
msgid "Like"
|
143 |
msgstr "Suka"
|
144 |
|
145 |
+
#: facebook-button-plugin.php:424
|
146 |
msgid "Choose display settings:"
|
147 |
msgstr "Ubah pengaturan tampilan"
|
148 |
|
149 |
+
#: facebook-button-plugin.php:428
|
150 |
msgid "Standard Facebook image"
|
151 |
msgstr "Standar gambar Facebook "
|
152 |
|
153 |
+
#: facebook-button-plugin.php:430
|
154 |
msgid "Custom Facebook image"
|
155 |
msgstr "Kustom Gambar Facebook "
|
156 |
|
157 |
+
#: facebook-button-plugin.php:437
|
158 |
msgid "Current image:"
|
159 |
msgstr "Gambar tertentu:"
|
160 |
|
161 |
+
#: facebook-button-plugin.php:445
|
162 |
msgid "Facebook image:"
|
163 |
msgstr "Gambar Facebook:"
|
164 |
|
165 |
+
#: facebook-button-plugin.php:451
|
166 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
167 |
msgstr "properti gambar: lebar gambar maks:100px; panjang gambar maks:40px; ukuran gambar maks:32Kb; tipe gambar:\"jpg\",\"jpeg\", \"png\"."
|
168 |
|
169 |
+
#: facebook-button-plugin.php:456
|
170 |
msgid "Facebook Button Position:"
|
171 |
msgstr "Posisi Tombol Facebook"
|
172 |
|
173 |
+
#: facebook-button-plugin.php:460
|
174 |
msgid "Before"
|
175 |
msgstr "Sebelum"
|
176 |
|
177 |
+
#: facebook-button-plugin.php:461
|
178 |
msgid "After"
|
179 |
msgstr "Setelah"
|
180 |
|
181 |
+
#: facebook-button-plugin.php:462
|
182 |
msgid "Before and After"
|
183 |
msgstr "Sebelum dan Setelah"
|
184 |
|
185 |
+
#: facebook-button-plugin.php:463
|
186 |
msgid "Shortcode"
|
187 |
msgstr "Kode Pendek"
|
188 |
|
189 |
+
#: facebook-button-plugin.php:465
|
190 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
191 |
msgstr "Jika anda ingin menambahkan tombol Facebook di website anda, cukup salin kode singkat kedalam posting atau page anda:"
|
192 |
|
193 |
+
#: facebook-button-plugin.php:470
|
194 |
msgid "Facebook Button language:"
|
195 |
msgstr "Bahasa Facebook Button:"
|
196 |
|
197 |
+
#: facebook-button-plugin.php:481
|
198 |
msgid "Change the language of Facebook Like Button"
|
199 |
msgstr "Ubah bahasa Facebook Like Button"
|
200 |
|
201 |
+
#: facebook-button-plugin.php:485
|
202 |
msgid "Html tag for Like Button:"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: facebook-button-plugin.php:489
|
206 |
msgid "Use this tag to improve validation of your site"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: facebook-button-plugin.php:495
|
210 |
+
#: facebook-button-plugin.php:534
|
211 |
msgid "Save Changes"
|
212 |
msgstr "Simpan Perubahan"
|
213 |
|
214 |
+
#: facebook-button-plugin.php:501
|
215 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: facebook-button-plugin.php:502
|
219 |
#, fuzzy
|
220 |
msgid "Rate the plugin"
|
221 |
msgstr "Eklenti Önerileri"
|
222 |
|
223 |
+
#: facebook-button-plugin.php:505
|
224 |
msgid "If there is something wrong about it, please contact us"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: facebook-button-plugin.php:516
|
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:523
|
232 |
msgid "Show URL for pages"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: facebook-button-plugin.php:529
|
236 |
msgid "Example of site pages' tree"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: facebook-button-plugin.php:539
|
240 |
+
msgid "If you upgrade to Pro version all your settings will be saved."
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
#: facebook-button-plugin.php:546
|
244 |
+
msgid "Unlock premium options by upgrading to a PRO version."
|
245 |
+
msgstr ""
|
246 |
+
|
247 |
+
#: facebook-button-plugin.php:547
|
248 |
+
#: facebook-button-plugin.php:813
|
249 |
+
msgid "Learn More"
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: facebook-button-plugin.php:550
|
253 |
+
msgid "Go"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: facebook-button-plugin.php:562
|
257 |
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: facebook-button-plugin.php:564
|
261 |
msgid "Please, go to"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: facebook-button-plugin.php:564
|
265 |
#, fuzzy
|
266 |
msgid "the setting page"
|
267 |
msgstr "Simpan Pengaturan"
|
268 |
|
269 |
+
#: facebook-button-plugin.php:565
|
270 |
msgid "You will be redirected automatically in 5 seconds."
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: facebook-button-plugin.php:570
|
274 |
msgid "You can download and activate"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: facebook-button-plugin.php:572
|
278 |
msgid "version of this plugin by entering Your license key."
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: facebook-button-plugin.php:574
|
282 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: facebook-button-plugin.php:576
|
286 |
msgid "(your username is the email you specify when purchasing the product)."
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: facebook-button-plugin.php:584
|
290 |
+
#: facebook-button-plugin.php:594
|
291 |
msgid "Go!"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: facebook-button-plugin.php:587
|
295 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: facebook-button-plugin.php:733
|
299 |
msgid "FAQ"
|
300 |
msgstr "SSS (Sık Sorulan Sorular)"
|
301 |
|
302 |
+
#: facebook-button-plugin.php:734
|
303 |
msgid "Support"
|
304 |
msgstr "Dukungan"
|
305 |
|
306 |
+
#: facebook-button-plugin.php:816
|
|
|
|
|
|
|
|
|
307 |
msgid "It's time to upgrade your <strong>Facebook Like Button</strong> to <strong>PRO</strong> version"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: facebook-button-plugin.php:817
|
311 |
msgid "Extend standard plugin functionality with new great options"
|
312 |
msgstr ""
|
313 |
|
languages/facebook-ru_RU.mo
CHANGED
Binary file
|
languages/facebook-ru_RU.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-
|
6 |
-
"PO-Revision-Date: 2014-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
@@ -16,286 +16,301 @@ 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:
|
21 |
msgid "Facebook Button Settings"
|
22 |
msgstr "Настройки Facebook Кнопки"
|
23 |
|
24 |
-
#: facebook-button-plugin.php:
|
25 |
msgid "Facebook Button"
|
26 |
msgstr "Facebook кнопка"
|
27 |
|
28 |
-
#: facebook-button-plugin.php:
|
29 |
msgid "requires"
|
30 |
msgstr "требует"
|
31 |
|
32 |
-
#: facebook-button-plugin.php:
|
33 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
34 |
msgstr "или выше, поэтому он был деактивирован! Пожалуйста обновить WordPress и попробуйте еще раз."
|
35 |
|
36 |
-
#: facebook-button-plugin.php:
|
37 |
msgid "Back to the WordPress"
|
38 |
msgstr "Вернуться к WordPress на"
|
39 |
|
40 |
-
#: facebook-button-plugin.php:
|
41 |
msgid "Plugins page"
|
42 |
msgstr "Страницу плагинов"
|
43 |
|
44 |
-
#: facebook-button-plugin.php:
|
45 |
msgid "Settings saved"
|
46 |
msgstr "Настройки сохранены"
|
47 |
|
48 |
-
#: facebook-button-plugin.php:
|
49 |
msgid "Error: File size > 32K"
|
50 |
msgstr "Ошибка: Размер файла больше 32К"
|
51 |
|
52 |
-
#: facebook-button-plugin.php:
|
53 |
msgid "Error: Invalid file type"
|
54 |
msgstr "Ошибка: Некорректный тип файла"
|
55 |
|
56 |
-
#: facebook-button-plugin.php:
|
57 |
msgid "Error: moving file failed"
|
58 |
msgstr "Ошибка: При перемещении произошла ошибка"
|
59 |
|
60 |
-
#: facebook-button-plugin.php:
|
61 |
msgid "Error: check image width or height"
|
62 |
msgstr "Ошибка: Проверьте ширину и высоту изображения"
|
63 |
|
64 |
-
#: facebook-button-plugin.php:
|
65 |
msgid "Uploading Error: check image properties"
|
66 |
msgstr "Ошибка загрузки: Проверьте опции изображения"
|
67 |
|
68 |
-
#: facebook-button-plugin.php:
|
69 |
-
#: facebook-button-plugin.php:
|
70 |
msgid "Wrong license key"
|
71 |
msgstr "Неправильный лицензионный ключ"
|
72 |
|
73 |
-
#: facebook-button-plugin.php:
|
74 |
msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
|
75 |
msgstr "Что-то пошло не так. Повторите попытку позже. Если ошибка появится снова, пожалуйста, свяжитесь с нами <a href=http://support.bestwebsoft.com>BestWebSoft</a>. Приносим извинения за неудобства."
|
76 |
|
77 |
-
#: facebook-button-plugin.php:
|
78 |
msgid "This license key is bind to another site"
|
79 |
msgstr "Этот лицензионный ключ привязан к другому сайту"
|
80 |
|
81 |
-
#: facebook-button-plugin.php:
|
82 |
msgid "Unfortunately, you have exceeded the number of available tries. Please, upload the plugin manually."
|
83 |
msgstr "К сожалению, вы превысили количество доступных попыток в день. Пожалуйста, загрузите плагин вручную."
|
84 |
|
85 |
-
#: facebook-button-plugin.php:
|
86 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
87 |
msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
|
88 |
|
89 |
-
#: facebook-button-plugin.php:
|
90 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
91 |
msgstr "Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. Пожалуйста, загрузите плагин вручную"
|
92 |
|
93 |
-
#: facebook-button-plugin.php:
|
94 |
-
#: facebook-button-plugin.php:
|
95 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
96 |
msgstr "Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
|
97 |
|
98 |
-
#: facebook-button-plugin.php:
|
99 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
|
100 |
msgstr "Что-то пошло не так. Повторите попытку позже или загрузите плагин вручную. Приносим извинения за неудобства."
|
101 |
|
102 |
-
#: facebook-button-plugin.php:
|
103 |
msgid "Please, enter Your license key"
|
104 |
msgstr "Пожалуйста, введите Ваш лицензионный ключ"
|
105 |
|
106 |
-
#: facebook-button-plugin.php:
|
107 |
-
#: facebook-button-plugin.php:
|
108 |
-
#: facebook-button-plugin.php:
|
109 |
msgid "Settings"
|
110 |
msgstr "Настройки"
|
111 |
|
112 |
-
#: facebook-button-plugin.php:
|
113 |
msgid "Extra settings"
|
114 |
msgstr "Дополнительные настройки"
|
115 |
|
116 |
-
#: facebook-button-plugin.php:
|
117 |
msgid "Go PRO"
|
118 |
msgstr "Перейти на PRO версию"
|
119 |
|
120 |
-
#: facebook-button-plugin.php:
|
121 |
msgid "Notice:"
|
122 |
msgstr "Внимание:"
|
123 |
|
124 |
-
#: facebook-button-plugin.php:
|
125 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
126 |
msgstr "Настройки плагина были изменены. Для того, чтобы сохранить их, пожалуйста, не забудьте нажать кнопку \"Сохранить\"."
|
127 |
|
128 |
-
#: facebook-button-plugin.php:
|
129 |
msgid "Your Facebook ID:"
|
130 |
msgstr "Ваш Facebook ID:"
|
131 |
|
132 |
-
#: facebook-button-plugin.php:
|
133 |
msgid "Display button:"
|
134 |
msgstr "Отображение кнопок:"
|
135 |
|
136 |
-
#: facebook-button-plugin.php:
|
137 |
msgid "My Page"
|
138 |
msgstr "My Page"
|
139 |
|
140 |
-
#: facebook-button-plugin.php:
|
141 |
msgid "Like"
|
142 |
msgstr "Like"
|
143 |
|
144 |
-
#: facebook-button-plugin.php:
|
145 |
msgid "Choose display settings:"
|
146 |
msgstr "Выбор опций отображения:"
|
147 |
|
148 |
-
#: facebook-button-plugin.php:
|
149 |
msgid "Standard Facebook image"
|
150 |
msgstr "Стандартная картинка Facebook"
|
151 |
|
152 |
-
#: facebook-button-plugin.php:
|
153 |
msgid "Custom Facebook image"
|
154 |
msgstr "Пользовательская картинка Facebook"
|
155 |
|
156 |
-
#: facebook-button-plugin.php:
|
157 |
msgid "Current image:"
|
158 |
msgstr "Текущее изображение:"
|
159 |
|
160 |
-
#: facebook-button-plugin.php:
|
161 |
msgid "Facebook image:"
|
162 |
msgstr "Facebook изображение:"
|
163 |
|
164 |
-
#: facebook-button-plugin.php:
|
165 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
166 |
msgstr "Опции изображения для загрузки: максимальная ширина:100px; максимальная высота:40px; максимальный размер:32Kb; тип файла:\"jpg\", \"jpeg\", \"png\"."
|
167 |
|
168 |
-
#: facebook-button-plugin.php:
|
169 |
msgid "Facebook Button Position:"
|
170 |
msgstr "Позиции Facebook кнопки:"
|
171 |
|
172 |
-
#: facebook-button-plugin.php:
|
173 |
msgid "Before"
|
174 |
msgstr "Перед"
|
175 |
|
176 |
-
#: facebook-button-plugin.php:
|
177 |
msgid "After"
|
178 |
msgstr "После"
|
179 |
|
180 |
-
#: facebook-button-plugin.php:
|
181 |
msgid "Before and After"
|
182 |
msgstr "Перед и после"
|
183 |
|
184 |
-
#: facebook-button-plugin.php:
|
185 |
msgid "Shortcode"
|
186 |
msgstr "Шорткод"
|
187 |
|
188 |
-
#: facebook-button-plugin.php:
|
189 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
190 |
msgstr "Если вы хотите добавить Facebook кнопку на свой сайт, вам надо только скопировать и вставить шорткод в контент страницы или поста"
|
191 |
|
192 |
-
#: facebook-button-plugin.php:
|
193 |
msgid "Facebook Button language:"
|
194 |
msgstr "Язык для Facebook кнопки:"
|
195 |
|
196 |
-
#: facebook-button-plugin.php:
|
197 |
msgid "Change the language of Facebook Like Button"
|
198 |
msgstr "Выберите язык для Like кнопки"
|
199 |
|
200 |
-
#: facebook-button-plugin.php:
|
201 |
msgid "Html tag for Like Button:"
|
202 |
msgstr "html тэг для кнопки Like:"
|
203 |
|
204 |
-
#: facebook-button-plugin.php:
|
205 |
msgid "Use this tag to improve validation of your site"
|
206 |
msgstr "Используйте этот тэг для лучшей валидации вашего сайта"
|
207 |
|
208 |
-
#: facebook-button-plugin.php:
|
209 |
-
#: facebook-button-plugin.php:
|
210 |
msgid "Save Changes"
|
211 |
msgstr "Сохранить изменения"
|
212 |
|
213 |
-
#: facebook-button-plugin.php:
|
214 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
215 |
msgstr " Если вам понравился плагин то поставте нам 5 звезд на WordPress"
|
216 |
|
217 |
-
#: facebook-button-plugin.php:
|
218 |
msgid "Rate the plugin"
|
219 |
msgstr "Оценить плагин"
|
220 |
|
221 |
-
#: facebook-button-plugin.php:
|
222 |
msgid "If there is something wrong about it, please contact us"
|
223 |
msgstr "Если у вас есть какие-то вопросы, обращайтесь"
|
224 |
|
225 |
-
#: facebook-button-plugin.php:
|
226 |
msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
|
227 |
msgstr "Пожалуйста, выберите те типы постов (или отдельные страницы), где будут отображатся кнопки Facebook:"
|
228 |
|
229 |
-
#: facebook-button-plugin.php:
|
230 |
msgid "Show URL for pages"
|
231 |
msgstr "Отображать URL для страниц"
|
232 |
|
233 |
-
#: facebook-button-plugin.php:
|
234 |
msgid "Example of site pages' tree"
|
235 |
msgstr "Пример дерева страниц сайта"
|
236 |
|
237 |
-
#: facebook-button-plugin.php:
|
238 |
-
msgid "
|
239 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
240 |
|
241 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
242 |
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
243 |
msgstr "Поздравляем! PRO версия плагина была успешно загружена и активирована."
|
244 |
|
245 |
-
#: facebook-button-plugin.php:
|
246 |
msgid "Please, go to"
|
247 |
msgstr "Пожалуйста, перейдите на"
|
248 |
|
249 |
-
#: facebook-button-plugin.php:
|
250 |
msgid "the setting page"
|
251 |
msgstr "страницу настроек"
|
252 |
|
253 |
-
#: facebook-button-plugin.php:
|
254 |
msgid "You will be redirected automatically in 5 seconds."
|
255 |
msgstr "Вы будете перенаправлены автоматически через 5 секунд."
|
256 |
|
257 |
-
#: facebook-button-plugin.php:
|
258 |
msgid "You can download and activate"
|
259 |
msgstr "Вы можете скачать и активировать"
|
260 |
|
261 |
-
#: facebook-button-plugin.php:
|
262 |
msgid "version of this plugin by entering Your license key."
|
263 |
msgstr "версию этого плагина, введя ваш лицензионный ключ."
|
264 |
|
265 |
-
#: facebook-button-plugin.php:
|
266 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
267 |
msgstr "Вы можете найти ваш лицензионный ключ на вашей личной странице Client area, нажав на ссылку"
|
268 |
|
269 |
-
#: facebook-button-plugin.php:
|
270 |
msgid "(your username is the email you specify when purchasing the product)."
|
271 |
msgstr "(ваше имя пользователя - это электронный адрес, указанный при покупке продукта)."
|
272 |
|
273 |
-
#: facebook-button-plugin.php:
|
274 |
-
#: facebook-button-plugin.php:
|
275 |
msgid "Go!"
|
276 |
msgstr "Перейти!"
|
277 |
|
278 |
-
#: facebook-button-plugin.php:
|
279 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
280 |
msgstr "К сожалению, вы превысили количество доступных попыток в день. Пожалуйста, загрузите плагин вручную."
|
281 |
|
282 |
-
#: facebook-button-plugin.php:
|
283 |
msgid "FAQ"
|
284 |
msgstr "FAQ"
|
285 |
|
286 |
-
#: facebook-button-plugin.php:
|
287 |
msgid "Support"
|
288 |
msgstr "Поддержка"
|
289 |
|
290 |
-
#: facebook-button-plugin.php:
|
291 |
-
msgid "Learn More"
|
292 |
-
msgstr "Подробнее"
|
293 |
-
|
294 |
-
#: facebook-button-plugin.php:837
|
295 |
msgid "It's time to upgrade your <strong>Facebook Like Button</strong> to <strong>PRO</strong> version"
|
296 |
msgstr "Пора обновить ваш <strong>плагин Facebook Like Button</strong> до <strong>PRO</strong> версии"
|
297 |
|
298 |
-
#: facebook-button-plugin.php:
|
299 |
msgid "Extend standard plugin functionality with new great options"
|
300 |
msgstr "Расширение стандартного функционала плагина новыми опциями"
|
301 |
|
|
|
|
|
|
|
|
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-04-14 12:42+0300\n"
|
6 |
+
"PO-Revision-Date: 2014-04-14 12:42+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: facebook-button-plugin.php:72
|
20 |
+
#: facebook-button-plugin.php:397
|
21 |
msgid "Facebook Button Settings"
|
22 |
msgstr "Настройки Facebook Кнопки"
|
23 |
|
24 |
+
#: facebook-button-plugin.php:72
|
25 |
msgid "Facebook Button"
|
26 |
msgstr "Facebook кнопка"
|
27 |
|
28 |
+
#: facebook-button-plugin.php:188
|
29 |
msgid "requires"
|
30 |
msgstr "требует"
|
31 |
|
32 |
+
#: facebook-button-plugin.php:188
|
33 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
34 |
msgstr "или выше, поэтому он был деактивирован! Пожалуйста обновить WordPress и попробуйте еще раз."
|
35 |
|
36 |
+
#: facebook-button-plugin.php:188
|
37 |
msgid "Back to the WordPress"
|
38 |
msgstr "Вернуться к WordPress на"
|
39 |
|
40 |
+
#: facebook-button-plugin.php:188
|
41 |
msgid "Plugins page"
|
42 |
msgstr "Страницу плагинов"
|
43 |
|
44 |
+
#: facebook-button-plugin.php:223
|
45 |
msgid "Settings saved"
|
46 |
msgstr "Настройки сохранены"
|
47 |
|
48 |
+
#: facebook-button-plugin.php:245
|
49 |
msgid "Error: File size > 32K"
|
50 |
msgstr "Ошибка: Размер файла больше 32К"
|
51 |
|
52 |
+
#: facebook-button-plugin.php:248
|
53 |
msgid "Error: Invalid file type"
|
54 |
msgstr "Ошибка: Некорректный тип файла"
|
55 |
|
56 |
+
#: facebook-button-plugin.php:256
|
57 |
msgid "Error: moving file failed"
|
58 |
msgstr "Ошибка: При перемещении произошла ошибка"
|
59 |
|
60 |
+
#: facebook-button-plugin.php:259
|
61 |
msgid "Error: check image width or height"
|
62 |
msgstr "Ошибка: Проверьте ширину и высоту изображения"
|
63 |
|
64 |
+
#: facebook-button-plugin.php:263
|
65 |
msgid "Uploading Error: check image properties"
|
66 |
msgstr "Ошибка загрузки: Проверьте опции изображения"
|
67 |
|
68 |
+
#: facebook-button-plugin.php:288
|
69 |
+
#: facebook-button-plugin.php:327
|
70 |
msgid "Wrong license key"
|
71 |
msgstr "Неправильный лицензионный ключ"
|
72 |
|
73 |
+
#: facebook-button-plugin.php:320
|
74 |
msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
|
75 |
msgstr "Что-то пошло не так. Повторите попытку позже. Если ошибка появится снова, пожалуйста, свяжитесь с нами <a href=http://support.bestwebsoft.com>BestWebSoft</a>. Приносим извинения за неудобства."
|
76 |
|
77 |
+
#: facebook-button-plugin.php:329
|
78 |
msgid "This license key is bind to another site"
|
79 |
msgstr "Этот лицензионный ключ привязан к другому сайту"
|
80 |
|
81 |
+
#: facebook-button-plugin.php:331
|
82 |
msgid "Unfortunately, you have exceeded the number of available tries. Please, upload the plugin manually."
|
83 |
msgstr "К сожалению, вы превысили количество доступных попыток в день. Пожалуйста, загрузите плагин вручную."
|
84 |
|
85 |
+
#: facebook-button-plugin.php:349
|
86 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
87 |
msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
|
88 |
|
89 |
+
#: facebook-button-plugin.php:355
|
90 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
91 |
msgstr "Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. Пожалуйста, загрузите плагин вручную"
|
92 |
|
93 |
+
#: facebook-button-plugin.php:359
|
94 |
+
#: facebook-button-plugin.php:368
|
95 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
96 |
msgstr "Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
|
97 |
|
98 |
+
#: facebook-button-plugin.php:372
|
99 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
|
100 |
msgstr "Что-то пошло не так. Повторите попытку позже или загрузите плагин вручную. Приносим извинения за неудобства."
|
101 |
|
102 |
+
#: facebook-button-plugin.php:387
|
103 |
msgid "Please, enter Your license key"
|
104 |
msgstr "Пожалуйста, введите Ваш лицензионный ключ"
|
105 |
|
106 |
+
#: facebook-button-plugin.php:399
|
107 |
+
#: facebook-button-plugin.php:720
|
108 |
+
#: facebook-button-plugin.php:732
|
109 |
msgid "Settings"
|
110 |
msgstr "Настройки"
|
111 |
|
112 |
+
#: facebook-button-plugin.php:400
|
113 |
msgid "Extra settings"
|
114 |
msgstr "Дополнительные настройки"
|
115 |
|
116 |
+
#: facebook-button-plugin.php:401
|
117 |
msgid "Go PRO"
|
118 |
msgstr "Перейти на PRO версию"
|
119 |
|
120 |
+
#: facebook-button-plugin.php:404
|
121 |
msgid "Notice:"
|
122 |
msgstr "Внимание:"
|
123 |
|
124 |
+
#: facebook-button-plugin.php:404
|
125 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
126 |
msgstr "Настройки плагина были изменены. Для того, чтобы сохранить их, пожалуйста, не забудьте нажать кнопку \"Сохранить\"."
|
127 |
|
128 |
+
#: facebook-button-plugin.php:410
|
129 |
msgid "Your Facebook ID:"
|
130 |
msgstr "Ваш Facebook ID:"
|
131 |
|
132 |
+
#: facebook-button-plugin.php:416
|
133 |
msgid "Display button:"
|
134 |
msgstr "Отображение кнопок:"
|
135 |
|
136 |
+
#: facebook-button-plugin.php:418
|
137 |
msgid "My Page"
|
138 |
msgstr "My Page"
|
139 |
|
140 |
+
#: facebook-button-plugin.php:419
|
141 |
msgid "Like"
|
142 |
msgstr "Like"
|
143 |
|
144 |
+
#: facebook-button-plugin.php:424
|
145 |
msgid "Choose display settings:"
|
146 |
msgstr "Выбор опций отображения:"
|
147 |
|
148 |
+
#: facebook-button-plugin.php:428
|
149 |
msgid "Standard Facebook image"
|
150 |
msgstr "Стандартная картинка Facebook"
|
151 |
|
152 |
+
#: facebook-button-plugin.php:430
|
153 |
msgid "Custom Facebook image"
|
154 |
msgstr "Пользовательская картинка Facebook"
|
155 |
|
156 |
+
#: facebook-button-plugin.php:437
|
157 |
msgid "Current image:"
|
158 |
msgstr "Текущее изображение:"
|
159 |
|
160 |
+
#: facebook-button-plugin.php:445
|
161 |
msgid "Facebook image:"
|
162 |
msgstr "Facebook изображение:"
|
163 |
|
164 |
+
#: facebook-button-plugin.php:451
|
165 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
166 |
msgstr "Опции изображения для загрузки: максимальная ширина:100px; максимальная высота:40px; максимальный размер:32Kb; тип файла:\"jpg\", \"jpeg\", \"png\"."
|
167 |
|
168 |
+
#: facebook-button-plugin.php:456
|
169 |
msgid "Facebook Button Position:"
|
170 |
msgstr "Позиции Facebook кнопки:"
|
171 |
|
172 |
+
#: facebook-button-plugin.php:460
|
173 |
msgid "Before"
|
174 |
msgstr "Перед"
|
175 |
|
176 |
+
#: facebook-button-plugin.php:461
|
177 |
msgid "After"
|
178 |
msgstr "После"
|
179 |
|
180 |
+
#: facebook-button-plugin.php:462
|
181 |
msgid "Before and After"
|
182 |
msgstr "Перед и после"
|
183 |
|
184 |
+
#: facebook-button-plugin.php:463
|
185 |
msgid "Shortcode"
|
186 |
msgstr "Шорткод"
|
187 |
|
188 |
+
#: facebook-button-plugin.php:465
|
189 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
190 |
msgstr "Если вы хотите добавить Facebook кнопку на свой сайт, вам надо только скопировать и вставить шорткод в контент страницы или поста"
|
191 |
|
192 |
+
#: facebook-button-plugin.php:470
|
193 |
msgid "Facebook Button language:"
|
194 |
msgstr "Язык для Facebook кнопки:"
|
195 |
|
196 |
+
#: facebook-button-plugin.php:481
|
197 |
msgid "Change the language of Facebook Like Button"
|
198 |
msgstr "Выберите язык для Like кнопки"
|
199 |
|
200 |
+
#: facebook-button-plugin.php:485
|
201 |
msgid "Html tag for Like Button:"
|
202 |
msgstr "html тэг для кнопки Like:"
|
203 |
|
204 |
+
#: facebook-button-plugin.php:489
|
205 |
msgid "Use this tag to improve validation of your site"
|
206 |
msgstr "Используйте этот тэг для лучшей валидации вашего сайта"
|
207 |
|
208 |
+
#: facebook-button-plugin.php:495
|
209 |
+
#: facebook-button-plugin.php:534
|
210 |
msgid "Save Changes"
|
211 |
msgstr "Сохранить изменения"
|
212 |
|
213 |
+
#: facebook-button-plugin.php:501
|
214 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
215 |
msgstr " Если вам понравился плагин то поставте нам 5 звезд на WordPress"
|
216 |
|
217 |
+
#: facebook-button-plugin.php:502
|
218 |
msgid "Rate the plugin"
|
219 |
msgstr "Оценить плагин"
|
220 |
|
221 |
+
#: facebook-button-plugin.php:505
|
222 |
msgid "If there is something wrong about it, please contact us"
|
223 |
msgstr "Если у вас есть какие-то вопросы, обращайтесь"
|
224 |
|
225 |
+
#: facebook-button-plugin.php:516
|
226 |
msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
|
227 |
msgstr "Пожалуйста, выберите те типы постов (или отдельные страницы), где будут отображатся кнопки Facebook:"
|
228 |
|
229 |
+
#: facebook-button-plugin.php:523
|
230 |
msgid "Show URL for pages"
|
231 |
msgstr "Отображать URL для страниц"
|
232 |
|
233 |
+
#: facebook-button-plugin.php:529
|
234 |
msgid "Example of site pages' tree"
|
235 |
msgstr "Пример дерева страниц сайта"
|
236 |
|
237 |
+
#: facebook-button-plugin.php:539
|
238 |
+
msgid "If you upgrade to Pro version all your settings will be saved."
|
239 |
+
msgstr "При установке Pro версии плагина, все ваши настройки сохраняются."
|
240 |
+
|
241 |
+
#: facebook-button-plugin.php:546
|
242 |
+
msgid "Unlock premium options by upgrading to a PRO version."
|
243 |
+
msgstr "Активируйте премиум опции обновившись до PRO версии."
|
244 |
+
|
245 |
+
#: facebook-button-plugin.php:547
|
246 |
+
#: facebook-button-plugin.php:813
|
247 |
+
msgid "Learn More"
|
248 |
+
msgstr "Подробнее"
|
249 |
|
250 |
+
#: facebook-button-plugin.php:550
|
251 |
+
msgid "Go"
|
252 |
+
msgstr "Перейти на"
|
253 |
+
|
254 |
+
#: facebook-button-plugin.php:562
|
255 |
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
256 |
msgstr "Поздравляем! PRO версия плагина была успешно загружена и активирована."
|
257 |
|
258 |
+
#: facebook-button-plugin.php:564
|
259 |
msgid "Please, go to"
|
260 |
msgstr "Пожалуйста, перейдите на"
|
261 |
|
262 |
+
#: facebook-button-plugin.php:564
|
263 |
msgid "the setting page"
|
264 |
msgstr "страницу настроек"
|
265 |
|
266 |
+
#: facebook-button-plugin.php:565
|
267 |
msgid "You will be redirected automatically in 5 seconds."
|
268 |
msgstr "Вы будете перенаправлены автоматически через 5 секунд."
|
269 |
|
270 |
+
#: facebook-button-plugin.php:570
|
271 |
msgid "You can download and activate"
|
272 |
msgstr "Вы можете скачать и активировать"
|
273 |
|
274 |
+
#: facebook-button-plugin.php:572
|
275 |
msgid "version of this plugin by entering Your license key."
|
276 |
msgstr "версию этого плагина, введя ваш лицензионный ключ."
|
277 |
|
278 |
+
#: facebook-button-plugin.php:574
|
279 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
280 |
msgstr "Вы можете найти ваш лицензионный ключ на вашей личной странице Client area, нажав на ссылку"
|
281 |
|
282 |
+
#: facebook-button-plugin.php:576
|
283 |
msgid "(your username is the email you specify when purchasing the product)."
|
284 |
msgstr "(ваше имя пользователя - это электронный адрес, указанный при покупке продукта)."
|
285 |
|
286 |
+
#: facebook-button-plugin.php:584
|
287 |
+
#: facebook-button-plugin.php:594
|
288 |
msgid "Go!"
|
289 |
msgstr "Перейти!"
|
290 |
|
291 |
+
#: facebook-button-plugin.php:587
|
292 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
293 |
msgstr "К сожалению, вы превысили количество доступных попыток в день. Пожалуйста, загрузите плагин вручную."
|
294 |
|
295 |
+
#: facebook-button-plugin.php:733
|
296 |
msgid "FAQ"
|
297 |
msgstr "FAQ"
|
298 |
|
299 |
+
#: facebook-button-plugin.php:734
|
300 |
msgid "Support"
|
301 |
msgstr "Поддержка"
|
302 |
|
303 |
+
#: facebook-button-plugin.php:816
|
|
|
|
|
|
|
|
|
304 |
msgid "It's time to upgrade your <strong>Facebook Like Button</strong> to <strong>PRO</strong> version"
|
305 |
msgstr "Пора обновить ваш <strong>плагин Facebook Like Button</strong> до <strong>PRO</strong> версии"
|
306 |
|
307 |
+
#: facebook-button-plugin.php:817
|
308 |
msgid "Extend standard plugin functionality with new great options"
|
309 |
msgstr "Расширение стандартного функционала плагина новыми опциями"
|
310 |
|
311 |
+
#~ msgid ""
|
312 |
+
#~ "This functionality is available in the Pro version of the plugin. For "
|
313 |
+
#~ "more details, please follow the link"
|
314 |
+
#~ msgstr ""
|
315 |
+
#~ "Данный функционал доступен в Про версии плагина. Для более детальной "
|
316 |
+
#~ "информации смотрите"
|
languages/facebook-sr_RS.mo
CHANGED
Binary file
|
languages/facebook-sr_RS.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-
|
6 |
-
"PO-Revision-Date: 2014-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Georgijevic Team <http://www.georgijevic.info>\n"
|
9 |
"Language: \n"
|
@@ -16,302 +16,311 @@ 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:
|
21 |
#, fuzzy
|
22 |
msgid "Facebook Button Settings"
|
23 |
msgstr "Taster Facebook Opcija"
|
24 |
|
25 |
-
#: facebook-button-plugin.php:
|
26 |
#, fuzzy
|
27 |
msgid "Facebook Button"
|
28 |
msgstr "Facebook taster"
|
29 |
|
30 |
-
#: facebook-button-plugin.php:
|
31 |
msgid "requires"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: facebook-button-plugin.php:
|
35 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: facebook-button-plugin.php:
|
39 |
msgid "Back to the WordPress"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: facebook-button-plugin.php:
|
43 |
#, fuzzy
|
44 |
msgid "Plugins page"
|
45 |
msgstr "BWS Dodaci"
|
46 |
|
47 |
-
#: facebook-button-plugin.php:
|
48 |
#, fuzzy
|
49 |
msgid "Settings saved"
|
50 |
msgstr "Podešavanja"
|
51 |
|
52 |
-
#: facebook-button-plugin.php:
|
53 |
msgid "Error: File size > 32K"
|
54 |
msgstr "Greška: Veličina fajla prevazilazi 32К"
|
55 |
|
56 |
-
#: facebook-button-plugin.php:
|
57 |
msgid "Error: Invalid file type"
|
58 |
msgstr "Greška: Neispravan tip fajla"
|
59 |
|
60 |
-
#: facebook-button-plugin.php:
|
61 |
msgid "Error: moving file failed"
|
62 |
msgstr "Greška: premeštanje fajla nije uspelo"
|
63 |
|
64 |
-
#: facebook-button-plugin.php:
|
65 |
msgid "Error: check image width or height"
|
66 |
msgstr "Greška: Proverite širinu i visinu slike"
|
67 |
|
68 |
-
#: facebook-button-plugin.php:
|
69 |
msgid "Uploading Error: check image properties"
|
70 |
msgstr "Greška unosa: Proverite svojstva slike"
|
71 |
|
72 |
-
#: facebook-button-plugin.php:
|
73 |
-
#: facebook-button-plugin.php:
|
74 |
msgid "Wrong license key"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: facebook-button-plugin.php:
|
78 |
msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: facebook-button-plugin.php:
|
82 |
msgid "This license key is bind to another site"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: facebook-button-plugin.php:
|
86 |
msgid "Unfortunately, you have exceeded the number of available tries. Please, upload the plugin manually."
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: facebook-button-plugin.php:
|
90 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: facebook-button-plugin.php:
|
94 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: facebook-button-plugin.php:
|
98 |
-
#: facebook-button-plugin.php:
|
99 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: facebook-button-plugin.php:
|
103 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: facebook-button-plugin.php:
|
107 |
msgid "Please, enter Your license key"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: facebook-button-plugin.php:
|
111 |
-
#: facebook-button-plugin.php:
|
112 |
-
#: facebook-button-plugin.php:
|
113 |
msgid "Settings"
|
114 |
msgstr "Podešavanja"
|
115 |
|
116 |
-
#: facebook-button-plugin.php:
|
117 |
#, fuzzy
|
118 |
msgid "Extra settings"
|
119 |
msgstr "Podešavanja"
|
120 |
|
121 |
-
#: facebook-button-plugin.php:
|
122 |
msgid "Go PRO"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: facebook-button-plugin.php:
|
126 |
msgid "Notice:"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: facebook-button-plugin.php:
|
130 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: facebook-button-plugin.php:
|
134 |
#, fuzzy
|
135 |
msgid "Your Facebook ID:"
|
136 |
msgstr "Vaš Facebook Id:"
|
137 |
|
138 |
-
#: facebook-button-plugin.php:
|
139 |
msgid "Display button:"
|
140 |
msgstr "Prikaži taster:"
|
141 |
|
142 |
-
#: facebook-button-plugin.php:
|
143 |
msgid "My Page"
|
144 |
msgstr "Moja Strana"
|
145 |
|
146 |
-
#: facebook-button-plugin.php:
|
147 |
msgid "Like"
|
148 |
msgstr "Like"
|
149 |
|
150 |
-
#: facebook-button-plugin.php:
|
151 |
#, fuzzy
|
152 |
msgid "Choose display settings:"
|
153 |
msgstr "Izaberi opcije prikaza:"
|
154 |
|
155 |
-
#: facebook-button-plugin.php:
|
156 |
#, fuzzy
|
157 |
msgid "Standard Facebook image"
|
158 |
msgstr "Standardna Facebook slika"
|
159 |
|
160 |
-
#: facebook-button-plugin.php:
|
161 |
#, fuzzy
|
162 |
msgid "Custom Facebook image"
|
163 |
msgstr "Proizvoljna Facebook slika"
|
164 |
|
165 |
-
#: facebook-button-plugin.php:
|
166 |
msgid "Current image:"
|
167 |
msgstr "Aktuelna slika:"
|
168 |
|
169 |
-
#: facebook-button-plugin.php:
|
170 |
#, fuzzy
|
171 |
msgid "Facebook image:"
|
172 |
msgstr "Facebook slika:"
|
173 |
|
174 |
-
#: facebook-button-plugin.php:
|
175 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
176 |
msgstr "Svojstva slike: maksimalna širina:100px; maksimalna visina:40px; maksimalna veličina:32Kb; tip fajla:\"jpg\", \"jpeg\", \"png\"."
|
177 |
|
178 |
-
#: facebook-button-plugin.php:
|
179 |
#, fuzzy
|
180 |
msgid "Facebook Button Position:"
|
181 |
msgstr "Pozicija Facebook Tastera:"
|
182 |
|
183 |
-
#: facebook-button-plugin.php:
|
184 |
msgid "Before"
|
185 |
msgstr "Pre"
|
186 |
|
187 |
-
#: facebook-button-plugin.php:
|
188 |
msgid "After"
|
189 |
msgstr "Posle"
|
190 |
|
191 |
-
#: facebook-button-plugin.php:
|
192 |
msgid "Before and After"
|
193 |
msgstr "Pre i posle"
|
194 |
|
195 |
-
#: facebook-button-plugin.php:
|
196 |
msgid "Shortcode"
|
197 |
msgstr "Kratki kod"
|
198 |
|
199 |
-
#: facebook-button-plugin.php:
|
200 |
#, fuzzy
|
201 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
202 |
msgstr "Ako želite da dodate Facebook taster na vaš vebsajt, jednostavno iskopirajte ovaj kratak kod na vašu stranu ili članak:"
|
203 |
|
204 |
-
#: facebook-button-plugin.php:
|
205 |
#, fuzzy
|
206 |
msgid "Facebook Button language:"
|
207 |
msgstr "Jezik Facebook tastera"
|
208 |
|
209 |
-
#: facebook-button-plugin.php:
|
210 |
#, fuzzy
|
211 |
msgid "Change the language of Facebook Like Button"
|
212 |
msgstr "Izaberite jezik za Like taster"
|
213 |
|
214 |
-
#: facebook-button-plugin.php:
|
215 |
msgid "Html tag for Like Button:"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: facebook-button-plugin.php:
|
219 |
msgid "Use this tag to improve validation of your site"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: facebook-button-plugin.php:
|
223 |
-
#: facebook-button-plugin.php:
|
224 |
msgid "Save Changes"
|
225 |
msgstr "Sačuvaj Izmene"
|
226 |
|
227 |
-
#: facebook-button-plugin.php:
|
228 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: facebook-button-plugin.php:
|
232 |
#, fuzzy
|
233 |
msgid "Rate the plugin"
|
234 |
msgstr "Preporučeni dodaci"
|
235 |
|
236 |
-
#: facebook-button-plugin.php:
|
237 |
msgid "If there is something wrong about it, please contact us"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: facebook-button-plugin.php:
|
241 |
msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: facebook-button-plugin.php:
|
245 |
msgid "Show URL for pages"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: facebook-button-plugin.php:
|
249 |
msgid "Example of site pages' tree"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: facebook-button-plugin.php:
|
253 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: facebook-button-plugin.php:
|
257 |
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: facebook-button-plugin.php:
|
261 |
msgid "Please, go to"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: facebook-button-plugin.php:
|
265 |
#, fuzzy
|
266 |
msgid "the setting page"
|
267 |
msgstr "Podešavanja"
|
268 |
|
269 |
-
#: facebook-button-plugin.php:
|
270 |
msgid "You will be redirected automatically in 5 seconds."
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: facebook-button-plugin.php:
|
274 |
msgid "You can download and activate"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: facebook-button-plugin.php:
|
278 |
msgid "version of this plugin by entering Your license key."
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: facebook-button-plugin.php:
|
282 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: facebook-button-plugin.php:
|
286 |
msgid "(your username is the email you specify when purchasing the product)."
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: facebook-button-plugin.php:
|
290 |
-
#: facebook-button-plugin.php:
|
291 |
msgid "Go!"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: facebook-button-plugin.php:
|
295 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: facebook-button-plugin.php:
|
299 |
msgid "FAQ"
|
300 |
msgstr "FAQ"
|
301 |
|
302 |
-
#: facebook-button-plugin.php:
|
303 |
msgid "Support"
|
304 |
msgstr "Podrška"
|
305 |
|
306 |
-
#: facebook-button-plugin.php:
|
307 |
-
msgid "Learn More"
|
308 |
-
msgstr ""
|
309 |
-
|
310 |
-
#: facebook-button-plugin.php:837
|
311 |
msgid "It's time to upgrade your <strong>Facebook Like Button</strong> to <strong>PRO</strong> version"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: facebook-button-plugin.php:
|
315 |
msgid "Extend standard plugin functionality with new great options"
|
316 |
msgstr ""
|
317 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-04-14 12:42+0300\n"
|
6 |
+
"PO-Revision-Date: 2014-04-14 12:42+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Georgijevic Team <http://www.georgijevic.info>\n"
|
9 |
"Language: \n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: facebook-button-plugin.php:72
|
20 |
+
#: facebook-button-plugin.php:397
|
21 |
#, fuzzy
|
22 |
msgid "Facebook Button Settings"
|
23 |
msgstr "Taster Facebook Opcija"
|
24 |
|
25 |
+
#: facebook-button-plugin.php:72
|
26 |
#, fuzzy
|
27 |
msgid "Facebook Button"
|
28 |
msgstr "Facebook taster"
|
29 |
|
30 |
+
#: facebook-button-plugin.php:188
|
31 |
msgid "requires"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: facebook-button-plugin.php:188
|
35 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: facebook-button-plugin.php:188
|
39 |
msgid "Back to the WordPress"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: facebook-button-plugin.php:188
|
43 |
#, fuzzy
|
44 |
msgid "Plugins page"
|
45 |
msgstr "BWS Dodaci"
|
46 |
|
47 |
+
#: facebook-button-plugin.php:223
|
48 |
#, fuzzy
|
49 |
msgid "Settings saved"
|
50 |
msgstr "Podešavanja"
|
51 |
|
52 |
+
#: facebook-button-plugin.php:245
|
53 |
msgid "Error: File size > 32K"
|
54 |
msgstr "Greška: Veličina fajla prevazilazi 32К"
|
55 |
|
56 |
+
#: facebook-button-plugin.php:248
|
57 |
msgid "Error: Invalid file type"
|
58 |
msgstr "Greška: Neispravan tip fajla"
|
59 |
|
60 |
+
#: facebook-button-plugin.php:256
|
61 |
msgid "Error: moving file failed"
|
62 |
msgstr "Greška: premeštanje fajla nije uspelo"
|
63 |
|
64 |
+
#: facebook-button-plugin.php:259
|
65 |
msgid "Error: check image width or height"
|
66 |
msgstr "Greška: Proverite širinu i visinu slike"
|
67 |
|
68 |
+
#: facebook-button-plugin.php:263
|
69 |
msgid "Uploading Error: check image properties"
|
70 |
msgstr "Greška unosa: Proverite svojstva slike"
|
71 |
|
72 |
+
#: facebook-button-plugin.php:288
|
73 |
+
#: facebook-button-plugin.php:327
|
74 |
msgid "Wrong license key"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: facebook-button-plugin.php:320
|
78 |
msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: facebook-button-plugin.php:329
|
82 |
msgid "This license key is bind to another site"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: facebook-button-plugin.php:331
|
86 |
msgid "Unfortunately, you have exceeded the number of available tries. Please, upload the plugin manually."
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: facebook-button-plugin.php:349
|
90 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: facebook-button-plugin.php:355
|
94 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: facebook-button-plugin.php:359
|
98 |
+
#: facebook-button-plugin.php:368
|
99 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: facebook-button-plugin.php:372
|
103 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: facebook-button-plugin.php:387
|
107 |
msgid "Please, enter Your license key"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: facebook-button-plugin.php:399
|
111 |
+
#: facebook-button-plugin.php:720
|
112 |
+
#: facebook-button-plugin.php:732
|
113 |
msgid "Settings"
|
114 |
msgstr "Podešavanja"
|
115 |
|
116 |
+
#: facebook-button-plugin.php:400
|
117 |
#, fuzzy
|
118 |
msgid "Extra settings"
|
119 |
msgstr "Podešavanja"
|
120 |
|
121 |
+
#: facebook-button-plugin.php:401
|
122 |
msgid "Go PRO"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: facebook-button-plugin.php:404
|
126 |
msgid "Notice:"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: facebook-button-plugin.php:404
|
130 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: facebook-button-plugin.php:410
|
134 |
#, fuzzy
|
135 |
msgid "Your Facebook ID:"
|
136 |
msgstr "Vaš Facebook Id:"
|
137 |
|
138 |
+
#: facebook-button-plugin.php:416
|
139 |
msgid "Display button:"
|
140 |
msgstr "Prikaži taster:"
|
141 |
|
142 |
+
#: facebook-button-plugin.php:418
|
143 |
msgid "My Page"
|
144 |
msgstr "Moja Strana"
|
145 |
|
146 |
+
#: facebook-button-plugin.php:419
|
147 |
msgid "Like"
|
148 |
msgstr "Like"
|
149 |
|
150 |
+
#: facebook-button-plugin.php:424
|
151 |
#, fuzzy
|
152 |
msgid "Choose display settings:"
|
153 |
msgstr "Izaberi opcije prikaza:"
|
154 |
|
155 |
+
#: facebook-button-plugin.php:428
|
156 |
#, fuzzy
|
157 |
msgid "Standard Facebook image"
|
158 |
msgstr "Standardna Facebook slika"
|
159 |
|
160 |
+
#: facebook-button-plugin.php:430
|
161 |
#, fuzzy
|
162 |
msgid "Custom Facebook image"
|
163 |
msgstr "Proizvoljna Facebook slika"
|
164 |
|
165 |
+
#: facebook-button-plugin.php:437
|
166 |
msgid "Current image:"
|
167 |
msgstr "Aktuelna slika:"
|
168 |
|
169 |
+
#: facebook-button-plugin.php:445
|
170 |
#, fuzzy
|
171 |
msgid "Facebook image:"
|
172 |
msgstr "Facebook slika:"
|
173 |
|
174 |
+
#: facebook-button-plugin.php:451
|
175 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
176 |
msgstr "Svojstva slike: maksimalna širina:100px; maksimalna visina:40px; maksimalna veličina:32Kb; tip fajla:\"jpg\", \"jpeg\", \"png\"."
|
177 |
|
178 |
+
#: facebook-button-plugin.php:456
|
179 |
#, fuzzy
|
180 |
msgid "Facebook Button Position:"
|
181 |
msgstr "Pozicija Facebook Tastera:"
|
182 |
|
183 |
+
#: facebook-button-plugin.php:460
|
184 |
msgid "Before"
|
185 |
msgstr "Pre"
|
186 |
|
187 |
+
#: facebook-button-plugin.php:461
|
188 |
msgid "After"
|
189 |
msgstr "Posle"
|
190 |
|
191 |
+
#: facebook-button-plugin.php:462
|
192 |
msgid "Before and After"
|
193 |
msgstr "Pre i posle"
|
194 |
|
195 |
+
#: facebook-button-plugin.php:463
|
196 |
msgid "Shortcode"
|
197 |
msgstr "Kratki kod"
|
198 |
|
199 |
+
#: facebook-button-plugin.php:465
|
200 |
#, fuzzy
|
201 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
202 |
msgstr "Ako želite da dodate Facebook taster na vaš vebsajt, jednostavno iskopirajte ovaj kratak kod na vašu stranu ili članak:"
|
203 |
|
204 |
+
#: facebook-button-plugin.php:470
|
205 |
#, fuzzy
|
206 |
msgid "Facebook Button language:"
|
207 |
msgstr "Jezik Facebook tastera"
|
208 |
|
209 |
+
#: facebook-button-plugin.php:481
|
210 |
#, fuzzy
|
211 |
msgid "Change the language of Facebook Like Button"
|
212 |
msgstr "Izaberite jezik za Like taster"
|
213 |
|
214 |
+
#: facebook-button-plugin.php:485
|
215 |
msgid "Html tag for Like Button:"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: facebook-button-plugin.php:489
|
219 |
msgid "Use this tag to improve validation of your site"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: facebook-button-plugin.php:495
|
223 |
+
#: facebook-button-plugin.php:534
|
224 |
msgid "Save Changes"
|
225 |
msgstr "Sačuvaj Izmene"
|
226 |
|
227 |
+
#: facebook-button-plugin.php:501
|
228 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: facebook-button-plugin.php:502
|
232 |
#, fuzzy
|
233 |
msgid "Rate the plugin"
|
234 |
msgstr "Preporučeni dodaci"
|
235 |
|
236 |
+
#: facebook-button-plugin.php:505
|
237 |
msgid "If there is something wrong about it, please contact us"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: facebook-button-plugin.php:516
|
241 |
msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: facebook-button-plugin.php:523
|
245 |
msgid "Show URL for pages"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: facebook-button-plugin.php:529
|
249 |
msgid "Example of site pages' tree"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: facebook-button-plugin.php:539
|
253 |
+
msgid "If you upgrade to Pro version all your settings will be saved."
|
254 |
+
msgstr ""
|
255 |
+
|
256 |
+
#: facebook-button-plugin.php:546
|
257 |
+
msgid "Unlock premium options by upgrading to a PRO version."
|
258 |
+
msgstr ""
|
259 |
+
|
260 |
+
#: facebook-button-plugin.php:547
|
261 |
+
#: facebook-button-plugin.php:813
|
262 |
+
msgid "Learn More"
|
263 |
+
msgstr ""
|
264 |
+
|
265 |
+
#: facebook-button-plugin.php:550
|
266 |
+
msgid "Go"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: facebook-button-plugin.php:562
|
270 |
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: facebook-button-plugin.php:564
|
274 |
msgid "Please, go to"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: facebook-button-plugin.php:564
|
278 |
#, fuzzy
|
279 |
msgid "the setting page"
|
280 |
msgstr "Podešavanja"
|
281 |
|
282 |
+
#: facebook-button-plugin.php:565
|
283 |
msgid "You will be redirected automatically in 5 seconds."
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: facebook-button-plugin.php:570
|
287 |
msgid "You can download and activate"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: facebook-button-plugin.php:572
|
291 |
msgid "version of this plugin by entering Your license key."
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: facebook-button-plugin.php:574
|
295 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: facebook-button-plugin.php:576
|
299 |
msgid "(your username is the email you specify when purchasing the product)."
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: facebook-button-plugin.php:584
|
303 |
+
#: facebook-button-plugin.php:594
|
304 |
msgid "Go!"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: facebook-button-plugin.php:587
|
308 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: facebook-button-plugin.php:733
|
312 |
msgid "FAQ"
|
313 |
msgstr "FAQ"
|
314 |
|
315 |
+
#: facebook-button-plugin.php:734
|
316 |
msgid "Support"
|
317 |
msgstr "Podrška"
|
318 |
|
319 |
+
#: facebook-button-plugin.php:816
|
|
|
|
|
|
|
|
|
320 |
msgid "It's time to upgrade your <strong>Facebook Like Button</strong> to <strong>PRO</strong> version"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: facebook-button-plugin.php:817
|
324 |
msgid "Extend standard plugin functionality with new great options"
|
325 |
msgstr ""
|
326 |
|
languages/facebook-tr_TR.mo
CHANGED
Binary file
|
languages/facebook-tr_TR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-
|
6 |
-
"PO-Revision-Date: 2014-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"Language: es_ES\n"
|
@@ -16,301 +16,310 @@ 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:
|
21 |
#, fuzzy
|
22 |
msgid "Facebook Button Settings"
|
23 |
msgstr "Facebook Butonu Ayarları"
|
24 |
|
25 |
-
#: facebook-button-plugin.php:
|
26 |
#, fuzzy
|
27 |
msgid "Facebook Button"
|
28 |
msgstr "Facebook Butonu"
|
29 |
|
30 |
-
#: facebook-button-plugin.php:
|
31 |
msgid "requires"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: facebook-button-plugin.php:
|
35 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: facebook-button-plugin.php:
|
39 |
msgid "Back to the WordPress"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: facebook-button-plugin.php:
|
43 |
#, fuzzy
|
44 |
msgid "Plugins page"
|
45 |
msgstr "Плагины BWS"
|
46 |
|
47 |
-
#: facebook-button-plugin.php:
|
48 |
#, fuzzy
|
49 |
msgid "Settings saved"
|
50 |
msgstr "Ayarlar"
|
51 |
|
52 |
-
#: facebook-button-plugin.php:
|
53 |
msgid "Error: File size > 32K"
|
54 |
msgstr "HATA: Dosya boyutu 32KB'tan büyük!"
|
55 |
|
56 |
-
#: facebook-button-plugin.php:
|
57 |
msgid "Error: Invalid file type"
|
58 |
msgstr "HATA: geçersiz dosya uzantısı"
|
59 |
|
60 |
-
#: facebook-button-plugin.php:
|
61 |
msgid "Error: moving file failed"
|
62 |
msgstr "HATA: Dosya taşınamadı!"
|
63 |
|
64 |
-
#: facebook-button-plugin.php:
|
65 |
msgid "Error: check image width or height"
|
66 |
msgstr "HATA: Görselin genişlik ve yüksekliğini kontrol edin."
|
67 |
|
68 |
-
#: facebook-button-plugin.php:
|
69 |
msgid "Uploading Error: check image properties"
|
70 |
msgstr "Yükleme Hatası: Görselin özelliklerini kontol edin."
|
71 |
|
72 |
-
#: facebook-button-plugin.php:
|
73 |
-
#: facebook-button-plugin.php:
|
74 |
msgid "Wrong license key"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: facebook-button-plugin.php:
|
78 |
msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: facebook-button-plugin.php:
|
82 |
msgid "This license key is bind to another site"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: facebook-button-plugin.php:
|
86 |
msgid "Unfortunately, you have exceeded the number of available tries. Please, upload the plugin manually."
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: facebook-button-plugin.php:
|
90 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: facebook-button-plugin.php:
|
94 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: facebook-button-plugin.php:
|
98 |
-
#: facebook-button-plugin.php:
|
99 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: facebook-button-plugin.php:
|
103 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: facebook-button-plugin.php:
|
107 |
msgid "Please, enter Your license key"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: facebook-button-plugin.php:
|
111 |
-
#: facebook-button-plugin.php:
|
112 |
-
#: facebook-button-plugin.php:
|
113 |
msgid "Settings"
|
114 |
msgstr "Ayarlar"
|
115 |
|
116 |
-
#: facebook-button-plugin.php:
|
117 |
#, fuzzy
|
118 |
msgid "Extra settings"
|
119 |
msgstr "Ayarlar"
|
120 |
|
121 |
-
#: facebook-button-plugin.php:
|
122 |
msgid "Go PRO"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: facebook-button-plugin.php:
|
126 |
msgid "Notice:"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: facebook-button-plugin.php:
|
130 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: facebook-button-plugin.php:
|
134 |
#, fuzzy
|
135 |
msgid "Your Facebook ID:"
|
136 |
msgstr "Facebook ID:"
|
137 |
|
138 |
-
#: facebook-button-plugin.php:
|
139 |
msgid "Display button:"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: facebook-button-plugin.php:
|
143 |
msgid "My Page"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: facebook-button-plugin.php:
|
147 |
msgid "Like"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: facebook-button-plugin.php:
|
151 |
#, fuzzy
|
152 |
msgid "Choose display settings:"
|
153 |
msgstr "Gösterim Şeklini Seçin"
|
154 |
|
155 |
-
#: facebook-button-plugin.php:
|
156 |
#, fuzzy
|
157 |
msgid "Standard Facebook image"
|
158 |
msgstr "Standard Facebook Görseli"
|
159 |
|
160 |
-
#: facebook-button-plugin.php:
|
161 |
#, fuzzy
|
162 |
msgid "Custom Facebook image"
|
163 |
msgstr "Kişisel Facebook Görseli"
|
164 |
|
165 |
-
#: facebook-button-plugin.php:
|
166 |
msgid "Current image:"
|
167 |
msgstr "Şu andaki görsel:"
|
168 |
|
169 |
-
#: facebook-button-plugin.php:
|
170 |
#, fuzzy
|
171 |
msgid "Facebook image:"
|
172 |
msgstr "Facebook görseli:"
|
173 |
|
174 |
-
#: facebook-button-plugin.php:
|
175 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
176 |
msgstr "Görsel Özellikleri: maksimum genişlik: 100px; maksimum yükseklik: 40px; maksimum boyut: 32KB; izin verilen uzantılar: \"jpg\", \"jpeg\", \"png\"."
|
177 |
|
178 |
-
#: facebook-button-plugin.php:
|
179 |
#, fuzzy
|
180 |
msgid "Facebook Button Position:"
|
181 |
msgstr "Facebook Butonunun Konumu"
|
182 |
|
183 |
-
#: facebook-button-plugin.php:
|
184 |
msgid "Before"
|
185 |
msgstr "Önce"
|
186 |
|
187 |
-
#: facebook-button-plugin.php:
|
188 |
msgid "After"
|
189 |
msgstr "Sonra"
|
190 |
|
191 |
-
#: facebook-button-plugin.php:
|
192 |
msgid "Before and After"
|
193 |
msgstr "Önce ve Sonra"
|
194 |
|
195 |
-
#: facebook-button-plugin.php:
|
196 |
msgid "Shortcode"
|
197 |
msgstr "Kısakod Olarak"
|
198 |
|
199 |
-
#: facebook-button-plugin.php:
|
200 |
#, fuzzy
|
201 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
202 |
msgstr "Web sitenize Facebook butonu yerleştirmek istiyorsanız, aşağıdaki kodu kopyalayın ve sayfanızda/yazınızda butonun görünmesini istediğiniz yere yapıştırın.(HTML editörüyle!)"
|
203 |
|
204 |
-
#: facebook-button-plugin.php:
|
205 |
#, fuzzy
|
206 |
msgid "Facebook Button language:"
|
207 |
msgstr "Facebook Butonu"
|
208 |
|
209 |
-
#: facebook-button-plugin.php:
|
210 |
msgid "Change the language of Facebook Like Button"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: facebook-button-plugin.php:
|
214 |
msgid "Html tag for Like Button:"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: facebook-button-plugin.php:
|
218 |
msgid "Use this tag to improve validation of your site"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: facebook-button-plugin.php:
|
222 |
-
#: facebook-button-plugin.php:
|
223 |
msgid "Save Changes"
|
224 |
msgstr "Değişiklikleri Kaydet"
|
225 |
|
226 |
-
#: facebook-button-plugin.php:
|
227 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: facebook-button-plugin.php:
|
231 |
#, fuzzy
|
232 |
msgid "Rate the plugin"
|
233 |
msgstr "Eklenti Önerileri"
|
234 |
|
235 |
-
#: facebook-button-plugin.php:
|
236 |
msgid "If there is something wrong about it, please contact us"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: facebook-button-plugin.php:
|
240 |
msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: facebook-button-plugin.php:
|
244 |
msgid "Show URL for pages"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: facebook-button-plugin.php:
|
248 |
msgid "Example of site pages' tree"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: facebook-button-plugin.php:
|
252 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: facebook-button-plugin.php:
|
256 |
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: facebook-button-plugin.php:
|
260 |
msgid "Please, go to"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: facebook-button-plugin.php:
|
264 |
#, fuzzy
|
265 |
msgid "the setting page"
|
266 |
msgstr "Ayarlar"
|
267 |
|
268 |
-
#: facebook-button-plugin.php:
|
269 |
msgid "You will be redirected automatically in 5 seconds."
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: facebook-button-plugin.php:
|
273 |
msgid "You can download and activate"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: facebook-button-plugin.php:
|
277 |
msgid "version of this plugin by entering Your license key."
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: facebook-button-plugin.php:
|
281 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: facebook-button-plugin.php:
|
285 |
msgid "(your username is the email you specify when purchasing the product)."
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: facebook-button-plugin.php:
|
289 |
-
#: facebook-button-plugin.php:
|
290 |
msgid "Go!"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: facebook-button-plugin.php:
|
294 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: facebook-button-plugin.php:
|
298 |
msgid "FAQ"
|
299 |
msgstr "SSS (Sık Sorulan Sorular)"
|
300 |
|
301 |
-
#: facebook-button-plugin.php:
|
302 |
msgid "Support"
|
303 |
msgstr "Destek"
|
304 |
|
305 |
-
#: facebook-button-plugin.php:
|
306 |
-
msgid "Learn More"
|
307 |
-
msgstr ""
|
308 |
-
|
309 |
-
#: facebook-button-plugin.php:837
|
310 |
msgid "It's time to upgrade your <strong>Facebook Like Button</strong> to <strong>PRO</strong> version"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: facebook-button-plugin.php:
|
314 |
msgid "Extend standard plugin functionality with new great options"
|
315 |
msgstr ""
|
316 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-04-14 12:42+0300\n"
|
6 |
+
"PO-Revision-Date: 2014-04-14 12:43+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"Language: es_ES\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: facebook-button-plugin.php:72
|
20 |
+
#: facebook-button-plugin.php:397
|
21 |
#, fuzzy
|
22 |
msgid "Facebook Button Settings"
|
23 |
msgstr "Facebook Butonu Ayarları"
|
24 |
|
25 |
+
#: facebook-button-plugin.php:72
|
26 |
#, fuzzy
|
27 |
msgid "Facebook Button"
|
28 |
msgstr "Facebook Butonu"
|
29 |
|
30 |
+
#: facebook-button-plugin.php:188
|
31 |
msgid "requires"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: facebook-button-plugin.php:188
|
35 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: facebook-button-plugin.php:188
|
39 |
msgid "Back to the WordPress"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: facebook-button-plugin.php:188
|
43 |
#, fuzzy
|
44 |
msgid "Plugins page"
|
45 |
msgstr "Плагины BWS"
|
46 |
|
47 |
+
#: facebook-button-plugin.php:223
|
48 |
#, fuzzy
|
49 |
msgid "Settings saved"
|
50 |
msgstr "Ayarlar"
|
51 |
|
52 |
+
#: facebook-button-plugin.php:245
|
53 |
msgid "Error: File size > 32K"
|
54 |
msgstr "HATA: Dosya boyutu 32KB'tan büyük!"
|
55 |
|
56 |
+
#: facebook-button-plugin.php:248
|
57 |
msgid "Error: Invalid file type"
|
58 |
msgstr "HATA: geçersiz dosya uzantısı"
|
59 |
|
60 |
+
#: facebook-button-plugin.php:256
|
61 |
msgid "Error: moving file failed"
|
62 |
msgstr "HATA: Dosya taşınamadı!"
|
63 |
|
64 |
+
#: facebook-button-plugin.php:259
|
65 |
msgid "Error: check image width or height"
|
66 |
msgstr "HATA: Görselin genişlik ve yüksekliğini kontrol edin."
|
67 |
|
68 |
+
#: facebook-button-plugin.php:263
|
69 |
msgid "Uploading Error: check image properties"
|
70 |
msgstr "Yükleme Hatası: Görselin özelliklerini kontol edin."
|
71 |
|
72 |
+
#: facebook-button-plugin.php:288
|
73 |
+
#: facebook-button-plugin.php:327
|
74 |
msgid "Wrong license key"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: facebook-button-plugin.php:320
|
78 |
msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: facebook-button-plugin.php:329
|
82 |
msgid "This license key is bind to another site"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: facebook-button-plugin.php:331
|
86 |
msgid "Unfortunately, you have exceeded the number of available tries. Please, upload the plugin manually."
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: facebook-button-plugin.php:349
|
90 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: facebook-button-plugin.php:355
|
94 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: facebook-button-plugin.php:359
|
98 |
+
#: facebook-button-plugin.php:368
|
99 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: facebook-button-plugin.php:372
|
103 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: facebook-button-plugin.php:387
|
107 |
msgid "Please, enter Your license key"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: facebook-button-plugin.php:399
|
111 |
+
#: facebook-button-plugin.php:720
|
112 |
+
#: facebook-button-plugin.php:732
|
113 |
msgid "Settings"
|
114 |
msgstr "Ayarlar"
|
115 |
|
116 |
+
#: facebook-button-plugin.php:400
|
117 |
#, fuzzy
|
118 |
msgid "Extra settings"
|
119 |
msgstr "Ayarlar"
|
120 |
|
121 |
+
#: facebook-button-plugin.php:401
|
122 |
msgid "Go PRO"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: facebook-button-plugin.php:404
|
126 |
msgid "Notice:"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: facebook-button-plugin.php:404
|
130 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: facebook-button-plugin.php:410
|
134 |
#, fuzzy
|
135 |
msgid "Your Facebook ID:"
|
136 |
msgstr "Facebook ID:"
|
137 |
|
138 |
+
#: facebook-button-plugin.php:416
|
139 |
msgid "Display button:"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: facebook-button-plugin.php:418
|
143 |
msgid "My Page"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: facebook-button-plugin.php:419
|
147 |
msgid "Like"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: facebook-button-plugin.php:424
|
151 |
#, fuzzy
|
152 |
msgid "Choose display settings:"
|
153 |
msgstr "Gösterim Şeklini Seçin"
|
154 |
|
155 |
+
#: facebook-button-plugin.php:428
|
156 |
#, fuzzy
|
157 |
msgid "Standard Facebook image"
|
158 |
msgstr "Standard Facebook Görseli"
|
159 |
|
160 |
+
#: facebook-button-plugin.php:430
|
161 |
#, fuzzy
|
162 |
msgid "Custom Facebook image"
|
163 |
msgstr "Kişisel Facebook Görseli"
|
164 |
|
165 |
+
#: facebook-button-plugin.php:437
|
166 |
msgid "Current image:"
|
167 |
msgstr "Şu andaki görsel:"
|
168 |
|
169 |
+
#: facebook-button-plugin.php:445
|
170 |
#, fuzzy
|
171 |
msgid "Facebook image:"
|
172 |
msgstr "Facebook görseli:"
|
173 |
|
174 |
+
#: facebook-button-plugin.php:451
|
175 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
176 |
msgstr "Görsel Özellikleri: maksimum genişlik: 100px; maksimum yükseklik: 40px; maksimum boyut: 32KB; izin verilen uzantılar: \"jpg\", \"jpeg\", \"png\"."
|
177 |
|
178 |
+
#: facebook-button-plugin.php:456
|
179 |
#, fuzzy
|
180 |
msgid "Facebook Button Position:"
|
181 |
msgstr "Facebook Butonunun Konumu"
|
182 |
|
183 |
+
#: facebook-button-plugin.php:460
|
184 |
msgid "Before"
|
185 |
msgstr "Önce"
|
186 |
|
187 |
+
#: facebook-button-plugin.php:461
|
188 |
msgid "After"
|
189 |
msgstr "Sonra"
|
190 |
|
191 |
+
#: facebook-button-plugin.php:462
|
192 |
msgid "Before and After"
|
193 |
msgstr "Önce ve Sonra"
|
194 |
|
195 |
+
#: facebook-button-plugin.php:463
|
196 |
msgid "Shortcode"
|
197 |
msgstr "Kısakod Olarak"
|
198 |
|
199 |
+
#: facebook-button-plugin.php:465
|
200 |
#, fuzzy
|
201 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
202 |
msgstr "Web sitenize Facebook butonu yerleştirmek istiyorsanız, aşağıdaki kodu kopyalayın ve sayfanızda/yazınızda butonun görünmesini istediğiniz yere yapıştırın.(HTML editörüyle!)"
|
203 |
|
204 |
+
#: facebook-button-plugin.php:470
|
205 |
#, fuzzy
|
206 |
msgid "Facebook Button language:"
|
207 |
msgstr "Facebook Butonu"
|
208 |
|
209 |
+
#: facebook-button-plugin.php:481
|
210 |
msgid "Change the language of Facebook Like Button"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: facebook-button-plugin.php:485
|
214 |
msgid "Html tag for Like Button:"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: facebook-button-plugin.php:489
|
218 |
msgid "Use this tag to improve validation of your site"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: facebook-button-plugin.php:495
|
222 |
+
#: facebook-button-plugin.php:534
|
223 |
msgid "Save Changes"
|
224 |
msgstr "Değişiklikleri Kaydet"
|
225 |
|
226 |
+
#: facebook-button-plugin.php:501
|
227 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: facebook-button-plugin.php:502
|
231 |
#, fuzzy
|
232 |
msgid "Rate the plugin"
|
233 |
msgstr "Eklenti Önerileri"
|
234 |
|
235 |
+
#: facebook-button-plugin.php:505
|
236 |
msgid "If there is something wrong about it, please contact us"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: facebook-button-plugin.php:516
|
240 |
msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: facebook-button-plugin.php:523
|
244 |
msgid "Show URL for pages"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: facebook-button-plugin.php:529
|
248 |
msgid "Example of site pages' tree"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: facebook-button-plugin.php:539
|
252 |
+
msgid "If you upgrade to Pro version all your settings will be saved."
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
+
#: facebook-button-plugin.php:546
|
256 |
+
msgid "Unlock premium options by upgrading to a PRO version."
|
257 |
+
msgstr ""
|
258 |
+
|
259 |
+
#: facebook-button-plugin.php:547
|
260 |
+
#: facebook-button-plugin.php:813
|
261 |
+
msgid "Learn More"
|
262 |
+
msgstr ""
|
263 |
+
|
264 |
+
#: facebook-button-plugin.php:550
|
265 |
+
msgid "Go"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: facebook-button-plugin.php:562
|
269 |
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: facebook-button-plugin.php:564
|
273 |
msgid "Please, go to"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: facebook-button-plugin.php:564
|
277 |
#, fuzzy
|
278 |
msgid "the setting page"
|
279 |
msgstr "Ayarlar"
|
280 |
|
281 |
+
#: facebook-button-plugin.php:565
|
282 |
msgid "You will be redirected automatically in 5 seconds."
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: facebook-button-plugin.php:570
|
286 |
msgid "You can download and activate"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: facebook-button-plugin.php:572
|
290 |
msgid "version of this plugin by entering Your license key."
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: facebook-button-plugin.php:574
|
294 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: facebook-button-plugin.php:576
|
298 |
msgid "(your username is the email you specify when purchasing the product)."
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: facebook-button-plugin.php:584
|
302 |
+
#: facebook-button-plugin.php:594
|
303 |
msgid "Go!"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: facebook-button-plugin.php:587
|
307 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: facebook-button-plugin.php:733
|
311 |
msgid "FAQ"
|
312 |
msgstr "SSS (Sık Sorulan Sorular)"
|
313 |
|
314 |
+
#: facebook-button-plugin.php:734
|
315 |
msgid "Support"
|
316 |
msgstr "Destek"
|
317 |
|
318 |
+
#: facebook-button-plugin.php:816
|
|
|
|
|
|
|
|
|
319 |
msgid "It's time to upgrade your <strong>Facebook Like Button</strong> to <strong>PRO</strong> version"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: facebook-button-plugin.php:817
|
323 |
msgid "Extend standard plugin functionality with new great options"
|
324 |
msgstr ""
|
325 |
|
languages/facebook-uk.mo
CHANGED
Binary file
|
languages/facebook-uk.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-
|
6 |
-
"PO-Revision-Date: 2014-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ua_UA\n"
|
@@ -16,288 +16,297 @@ 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:
|
21 |
msgid "Facebook Button Settings"
|
22 |
msgstr "Установки кнопки Facebook"
|
23 |
|
24 |
-
#: facebook-button-plugin.php:
|
25 |
msgid "Facebook Button"
|
26 |
msgstr "кнопка FaceBook"
|
27 |
|
28 |
-
#: facebook-button-plugin.php:
|
29 |
msgid "requires"
|
30 |
msgstr "потребує"
|
31 |
|
32 |
-
#: facebook-button-plugin.php:
|
33 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
34 |
msgstr "чи вище, тому він був деактивований! Будь ласка оновіть WordPress та спробуйте ще раз."
|
35 |
|
36 |
-
#: facebook-button-plugin.php:
|
37 |
msgid "Back to the WordPress"
|
38 |
msgstr "Повернутися до WordPress на"
|
39 |
|
40 |
-
#: facebook-button-plugin.php:
|
41 |
msgid "Plugins page"
|
42 |
msgstr "Сторінку плагинів"
|
43 |
|
44 |
-
#: facebook-button-plugin.php:
|
45 |
msgid "Settings saved"
|
46 |
msgstr "Установки збережені"
|
47 |
|
48 |
-
#: facebook-button-plugin.php:
|
49 |
msgid "Error: File size > 32K"
|
50 |
msgstr "Помилка: Розмір файлу> 32K"
|
51 |
|
52 |
-
#: facebook-button-plugin.php:
|
53 |
msgid "Error: Invalid file type"
|
54 |
msgstr "Помилка: Невірний тип файлу"
|
55 |
|
56 |
-
#: facebook-button-plugin.php:
|
57 |
msgid "Error: moving file failed"
|
58 |
msgstr "Помилка: не вдалося Переміщення файлів"
|
59 |
|
60 |
-
#: facebook-button-plugin.php:
|
61 |
msgid "Error: check image width or height"
|
62 |
msgstr "Помилка: Перевірте ширину або висоту зображення"
|
63 |
|
64 |
-
#: facebook-button-plugin.php:
|
65 |
msgid "Uploading Error: check image properties"
|
66 |
msgstr "Помилка Завантаження: Перевірте властивості зображення"
|
67 |
|
68 |
-
#: facebook-button-plugin.php:
|
69 |
-
#: facebook-button-plugin.php:
|
70 |
msgid "Wrong license key"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: facebook-button-plugin.php:
|
74 |
msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: facebook-button-plugin.php:
|
78 |
msgid "This license key is bind to another site"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: facebook-button-plugin.php:
|
82 |
msgid "Unfortunately, you have exceeded the number of available tries. Please, upload the plugin manually."
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: facebook-button-plugin.php:
|
86 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: facebook-button-plugin.php:
|
90 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: facebook-button-plugin.php:
|
94 |
-
#: facebook-button-plugin.php:
|
95 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: facebook-button-plugin.php:
|
99 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: facebook-button-plugin.php:
|
103 |
msgid "Please, enter Your license key"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: facebook-button-plugin.php:
|
107 |
-
#: facebook-button-plugin.php:
|
108 |
-
#: facebook-button-plugin.php:
|
109 |
msgid "Settings"
|
110 |
msgstr "Установки"
|
111 |
|
112 |
-
#: facebook-button-plugin.php:
|
113 |
#, fuzzy
|
114 |
msgid "Extra settings"
|
115 |
msgstr "Установки"
|
116 |
|
117 |
-
#: facebook-button-plugin.php:
|
118 |
msgid "Go PRO"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: facebook-button-plugin.php:
|
122 |
msgid "Notice:"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: facebook-button-plugin.php:
|
126 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: facebook-button-plugin.php:
|
130 |
msgid "Your Facebook ID:"
|
131 |
msgstr "ID вашого Facebook акаунту"
|
132 |
|
133 |
-
#: facebook-button-plugin.php:
|
134 |
msgid "Display button:"
|
135 |
msgstr "Відображати кнопку:"
|
136 |
|
137 |
-
#: facebook-button-plugin.php:
|
138 |
msgid "My Page"
|
139 |
msgstr "Моя сторінка"
|
140 |
|
141 |
-
#: facebook-button-plugin.php:
|
142 |
msgid "Like"
|
143 |
msgstr "Like"
|
144 |
|
145 |
-
#: facebook-button-plugin.php:
|
146 |
msgid "Choose display settings:"
|
147 |
msgstr "Виберіть відображати установки:"
|
148 |
|
149 |
-
#: facebook-button-plugin.php:
|
150 |
msgid "Standard Facebook image"
|
151 |
msgstr "Стандартне зображення FaceBook "
|
152 |
|
153 |
-
#: facebook-button-plugin.php:
|
154 |
msgid "Custom Facebook image"
|
155 |
msgstr "Кастомне м FaceBook"
|
156 |
|
157 |
-
#: facebook-button-plugin.php:
|
158 |
msgid "Current image:"
|
159 |
msgstr "Поточне зображення:"
|
160 |
|
161 |
-
#: facebook-button-plugin.php:
|
162 |
msgid "Facebook image:"
|
163 |
msgstr "Зображення FaceBook :"
|
164 |
|
165 |
-
#: facebook-button-plugin.php:
|
166 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
167 |
msgstr "Властивості зображення: максимальна ширина зображення:1 00px; Максимальна висота зображення: 40px; максимальний розмір зображення: 32Kb; Зображення типів:\"jpg\", \"jpeg\", \"png\"."
|
168 |
|
169 |
-
#: facebook-button-plugin.php:
|
170 |
msgid "Facebook Button Position:"
|
171 |
msgstr "Розташування кнопки FaceBook:"
|
172 |
|
173 |
-
#: facebook-button-plugin.php:
|
174 |
msgid "Before"
|
175 |
msgstr "Перш ніж"
|
176 |
|
177 |
-
#: facebook-button-plugin.php:
|
178 |
msgid "After"
|
179 |
msgstr "Після того як"
|
180 |
|
181 |
-
#: facebook-button-plugin.php:
|
182 |
msgid "Before and After"
|
183 |
msgstr "До і після"
|
184 |
|
185 |
-
#: facebook-button-plugin.php:
|
186 |
msgid "Shortcode"
|
187 |
msgstr "Шорткод"
|
188 |
|
189 |
-
#: facebook-button-plugin.php:
|
190 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
191 |
msgstr "Якщо ви хочете додати кнопку FaceBook на ваш сайт, просто скопіюйте і помістіть цей шорткод на у пост або на сторінку:"
|
192 |
|
193 |
-
#: facebook-button-plugin.php:
|
194 |
msgid "Facebook Button language:"
|
195 |
msgstr "Мова кнопки FaceBook:"
|
196 |
|
197 |
-
#: facebook-button-plugin.php:
|
198 |
msgid "Change the language of Facebook Like Button"
|
199 |
msgstr "Змінити мову для конпки Like Facebook"
|
200 |
|
201 |
-
#: facebook-button-plugin.php:
|
202 |
msgid "Html tag for Like Button:"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: facebook-button-plugin.php:
|
206 |
msgid "Use this tag to improve validation of your site"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: facebook-button-plugin.php:
|
210 |
-
#: facebook-button-plugin.php:
|
211 |
msgid "Save Changes"
|
212 |
msgstr "Зберегти зміни"
|
213 |
|
214 |
-
#: facebook-button-plugin.php:
|
215 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: facebook-button-plugin.php:
|
219 |
msgid "Rate the plugin"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: facebook-button-plugin.php:
|
223 |
msgid "If there is something wrong about it, please contact us"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: facebook-button-plugin.php:
|
227 |
msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: facebook-button-plugin.php:
|
231 |
msgid "Show URL for pages"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: facebook-button-plugin.php:
|
235 |
msgid "Example of site pages' tree"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: facebook-button-plugin.php:
|
239 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: facebook-button-plugin.php:
|
243 |
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: facebook-button-plugin.php:
|
247 |
msgid "Please, go to"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: facebook-button-plugin.php:
|
251 |
#, fuzzy
|
252 |
msgid "the setting page"
|
253 |
msgstr "Установки збережені"
|
254 |
|
255 |
-
#: facebook-button-plugin.php:
|
256 |
msgid "You will be redirected automatically in 5 seconds."
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: facebook-button-plugin.php:
|
260 |
msgid "You can download and activate"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: facebook-button-plugin.php:
|
264 |
msgid "version of this plugin by entering Your license key."
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: facebook-button-plugin.php:
|
268 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: facebook-button-plugin.php:
|
272 |
msgid "(your username is the email you specify when purchasing the product)."
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: facebook-button-plugin.php:
|
276 |
-
#: facebook-button-plugin.php:
|
277 |
msgid "Go!"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: facebook-button-plugin.php:
|
281 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: facebook-button-plugin.php:
|
285 |
msgid "FAQ"
|
286 |
msgstr "Часті питання"
|
287 |
|
288 |
-
#: facebook-button-plugin.php:
|
289 |
msgid "Support"
|
290 |
msgstr "Підтримка"
|
291 |
|
292 |
-
#: facebook-button-plugin.php:
|
293 |
-
msgid "Learn More"
|
294 |
-
msgstr ""
|
295 |
-
|
296 |
-
#: facebook-button-plugin.php:837
|
297 |
msgid "It's time to upgrade your <strong>Facebook Like Button</strong> to <strong>PRO</strong> version"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: facebook-button-plugin.php:
|
301 |
msgid "Extend standard plugin functionality with new great options"
|
302 |
msgstr ""
|
303 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-04-14 12:43+0300\n"
|
6 |
+
"PO-Revision-Date: 2014-04-14 12:43+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ua_UA\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: facebook-button-plugin.php:72
|
20 |
+
#: facebook-button-plugin.php:397
|
21 |
msgid "Facebook Button Settings"
|
22 |
msgstr "Установки кнопки Facebook"
|
23 |
|
24 |
+
#: facebook-button-plugin.php:72
|
25 |
msgid "Facebook Button"
|
26 |
msgstr "кнопка FaceBook"
|
27 |
|
28 |
+
#: facebook-button-plugin.php:188
|
29 |
msgid "requires"
|
30 |
msgstr "потребує"
|
31 |
|
32 |
+
#: facebook-button-plugin.php:188
|
33 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
34 |
msgstr "чи вище, тому він був деактивований! Будь ласка оновіть WordPress та спробуйте ще раз."
|
35 |
|
36 |
+
#: facebook-button-plugin.php:188
|
37 |
msgid "Back to the WordPress"
|
38 |
msgstr "Повернутися до WordPress на"
|
39 |
|
40 |
+
#: facebook-button-plugin.php:188
|
41 |
msgid "Plugins page"
|
42 |
msgstr "Сторінку плагинів"
|
43 |
|
44 |
+
#: facebook-button-plugin.php:223
|
45 |
msgid "Settings saved"
|
46 |
msgstr "Установки збережені"
|
47 |
|
48 |
+
#: facebook-button-plugin.php:245
|
49 |
msgid "Error: File size > 32K"
|
50 |
msgstr "Помилка: Розмір файлу> 32K"
|
51 |
|
52 |
+
#: facebook-button-plugin.php:248
|
53 |
msgid "Error: Invalid file type"
|
54 |
msgstr "Помилка: Невірний тип файлу"
|
55 |
|
56 |
+
#: facebook-button-plugin.php:256
|
57 |
msgid "Error: moving file failed"
|
58 |
msgstr "Помилка: не вдалося Переміщення файлів"
|
59 |
|
60 |
+
#: facebook-button-plugin.php:259
|
61 |
msgid "Error: check image width or height"
|
62 |
msgstr "Помилка: Перевірте ширину або висоту зображення"
|
63 |
|
64 |
+
#: facebook-button-plugin.php:263
|
65 |
msgid "Uploading Error: check image properties"
|
66 |
msgstr "Помилка Завантаження: Перевірте властивості зображення"
|
67 |
|
68 |
+
#: facebook-button-plugin.php:288
|
69 |
+
#: facebook-button-plugin.php:327
|
70 |
msgid "Wrong license key"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: facebook-button-plugin.php:320
|
74 |
msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: facebook-button-plugin.php:329
|
78 |
msgid "This license key is bind to another site"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: facebook-button-plugin.php:331
|
82 |
msgid "Unfortunately, you have exceeded the number of available tries. Please, upload the plugin manually."
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: facebook-button-plugin.php:349
|
86 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: facebook-button-plugin.php:355
|
90 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: facebook-button-plugin.php:359
|
94 |
+
#: facebook-button-plugin.php:368
|
95 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: facebook-button-plugin.php:372
|
99 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: facebook-button-plugin.php:387
|
103 |
msgid "Please, enter Your license key"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: facebook-button-plugin.php:399
|
107 |
+
#: facebook-button-plugin.php:720
|
108 |
+
#: facebook-button-plugin.php:732
|
109 |
msgid "Settings"
|
110 |
msgstr "Установки"
|
111 |
|
112 |
+
#: facebook-button-plugin.php:400
|
113 |
#, fuzzy
|
114 |
msgid "Extra settings"
|
115 |
msgstr "Установки"
|
116 |
|
117 |
+
#: facebook-button-plugin.php:401
|
118 |
msgid "Go PRO"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: facebook-button-plugin.php:404
|
122 |
msgid "Notice:"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: facebook-button-plugin.php:404
|
126 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: facebook-button-plugin.php:410
|
130 |
msgid "Your Facebook ID:"
|
131 |
msgstr "ID вашого Facebook акаунту"
|
132 |
|
133 |
+
#: facebook-button-plugin.php:416
|
134 |
msgid "Display button:"
|
135 |
msgstr "Відображати кнопку:"
|
136 |
|
137 |
+
#: facebook-button-plugin.php:418
|
138 |
msgid "My Page"
|
139 |
msgstr "Моя сторінка"
|
140 |
|
141 |
+
#: facebook-button-plugin.php:419
|
142 |
msgid "Like"
|
143 |
msgstr "Like"
|
144 |
|
145 |
+
#: facebook-button-plugin.php:424
|
146 |
msgid "Choose display settings:"
|
147 |
msgstr "Виберіть відображати установки:"
|
148 |
|
149 |
+
#: facebook-button-plugin.php:428
|
150 |
msgid "Standard Facebook image"
|
151 |
msgstr "Стандартне зображення FaceBook "
|
152 |
|
153 |
+
#: facebook-button-plugin.php:430
|
154 |
msgid "Custom Facebook image"
|
155 |
msgstr "Кастомне м FaceBook"
|
156 |
|
157 |
+
#: facebook-button-plugin.php:437
|
158 |
msgid "Current image:"
|
159 |
msgstr "Поточне зображення:"
|
160 |
|
161 |
+
#: facebook-button-plugin.php:445
|
162 |
msgid "Facebook image:"
|
163 |
msgstr "Зображення FaceBook :"
|
164 |
|
165 |
+
#: facebook-button-plugin.php:451
|
166 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
167 |
msgstr "Властивості зображення: максимальна ширина зображення:1 00px; Максимальна висота зображення: 40px; максимальний розмір зображення: 32Kb; Зображення типів:\"jpg\", \"jpeg\", \"png\"."
|
168 |
|
169 |
+
#: facebook-button-plugin.php:456
|
170 |
msgid "Facebook Button Position:"
|
171 |
msgstr "Розташування кнопки FaceBook:"
|
172 |
|
173 |
+
#: facebook-button-plugin.php:460
|
174 |
msgid "Before"
|
175 |
msgstr "Перш ніж"
|
176 |
|
177 |
+
#: facebook-button-plugin.php:461
|
178 |
msgid "After"
|
179 |
msgstr "Після того як"
|
180 |
|
181 |
+
#: facebook-button-plugin.php:462
|
182 |
msgid "Before and After"
|
183 |
msgstr "До і після"
|
184 |
|
185 |
+
#: facebook-button-plugin.php:463
|
186 |
msgid "Shortcode"
|
187 |
msgstr "Шорткод"
|
188 |
|
189 |
+
#: facebook-button-plugin.php:465
|
190 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
191 |
msgstr "Якщо ви хочете додати кнопку FaceBook на ваш сайт, просто скопіюйте і помістіть цей шорткод на у пост або на сторінку:"
|
192 |
|
193 |
+
#: facebook-button-plugin.php:470
|
194 |
msgid "Facebook Button language:"
|
195 |
msgstr "Мова кнопки FaceBook:"
|
196 |
|
197 |
+
#: facebook-button-plugin.php:481
|
198 |
msgid "Change the language of Facebook Like Button"
|
199 |
msgstr "Змінити мову для конпки Like Facebook"
|
200 |
|
201 |
+
#: facebook-button-plugin.php:485
|
202 |
msgid "Html tag for Like Button:"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: facebook-button-plugin.php:489
|
206 |
msgid "Use this tag to improve validation of your site"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: facebook-button-plugin.php:495
|
210 |
+
#: facebook-button-plugin.php:534
|
211 |
msgid "Save Changes"
|
212 |
msgstr "Зберегти зміни"
|
213 |
|
214 |
+
#: facebook-button-plugin.php:501
|
215 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: facebook-button-plugin.php:502
|
219 |
msgid "Rate the plugin"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: facebook-button-plugin.php:505
|
223 |
msgid "If there is something wrong about it, please contact us"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: facebook-button-plugin.php:516
|
227 |
msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: facebook-button-plugin.php:523
|
231 |
msgid "Show URL for pages"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: facebook-button-plugin.php:529
|
235 |
msgid "Example of site pages' tree"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: facebook-button-plugin.php:539
|
239 |
+
msgid "If you upgrade to Pro version all your settings will be saved."
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: facebook-button-plugin.php:546
|
243 |
+
msgid "Unlock premium options by upgrading to a PRO version."
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: facebook-button-plugin.php:547
|
247 |
+
#: facebook-button-plugin.php:813
|
248 |
+
msgid "Learn More"
|
249 |
+
msgstr ""
|
250 |
+
|
251 |
+
#: facebook-button-plugin.php:550
|
252 |
+
msgid "Go"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: facebook-button-plugin.php:562
|
256 |
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: facebook-button-plugin.php:564
|
260 |
msgid "Please, go to"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: facebook-button-plugin.php:564
|
264 |
#, fuzzy
|
265 |
msgid "the setting page"
|
266 |
msgstr "Установки збережені"
|
267 |
|
268 |
+
#: facebook-button-plugin.php:565
|
269 |
msgid "You will be redirected automatically in 5 seconds."
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: facebook-button-plugin.php:570
|
273 |
msgid "You can download and activate"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: facebook-button-plugin.php:572
|
277 |
msgid "version of this plugin by entering Your license key."
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: facebook-button-plugin.php:574
|
281 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: facebook-button-plugin.php:576
|
285 |
msgid "(your username is the email you specify when purchasing the product)."
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: facebook-button-plugin.php:584
|
289 |
+
#: facebook-button-plugin.php:594
|
290 |
msgid "Go!"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: facebook-button-plugin.php:587
|
294 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: facebook-button-plugin.php:733
|
298 |
msgid "FAQ"
|
299 |
msgstr "Часті питання"
|
300 |
|
301 |
+
#: facebook-button-plugin.php:734
|
302 |
msgid "Support"
|
303 |
msgstr "Підтримка"
|
304 |
|
305 |
+
#: facebook-button-plugin.php:816
|
|
|
|
|
|
|
|
|
306 |
msgid "It's time to upgrade your <strong>Facebook Like Button</strong> to <strong>PRO</strong> version"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: facebook-button-plugin.php:817
|
310 |
msgid "Extend standard plugin functionality with new great options"
|
311 |
msgstr ""
|
312 |
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Facebook Like Button ===
|
2 |
Contributors: bestwebsoft
|
3 |
-
Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=
|
4 |
Tags: Facebook, Facebook Button, Like, Like button, Share, Share button, Facebook like, Facebook like button, Facebook button like, Button like, Facebook share, Facebook share button, Facebook button share
|
5 |
Requires at least: 3.0
|
6 |
-
Tested up to: 3.8.
|
7 |
-
Stable tag: 2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -14,6 +14,8 @@ Add Facebook button to your WordPress website.
|
|
14 |
|
15 |
Facebook Like Button Plugin allows you to add a Follow button the easiest way.
|
16 |
|
|
|
|
|
17 |
<a href="http://wordpress.org/plugins/facebook-button-plugin/faq/" target="_blank">FAQ</a>
|
18 |
|
19 |
<a href="http://support.bestwebsoft.com" target="_blank">Support</a>
|
@@ -63,6 +65,8 @@ We can fix some things for free for the users who provide translation of our plu
|
|
63 |
2. Activate the plugin via the 'Plugins' menu in your WordPress admin panel.
|
64 |
3. You can adjust the necessary settings in your WordPress admin panel - "Settings" > "Facebook Button".
|
65 |
|
|
|
|
|
66 |
== Frequently Asked Questions ==
|
67 |
|
68 |
= I cannot see the Facebook Button icon in the post after the plugin installation =
|
@@ -98,7 +102,7 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
|
|
98 |
1. the link to the page where the problem occurs
|
99 |
2. the name of the plugin and its version. If you are using a pro version - your order number.
|
100 |
3. the version of your WordPress installation
|
101 |
-
4. copy and paste into the message your system status report. Please read more here: <a href="
|
102 |
|
103 |
== Screenshots ==
|
104 |
|
@@ -109,7 +113,10 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
|
|
109 |
|
110 |
== Changelog ==
|
111 |
|
112 |
-
= V2.
|
|
|
|
|
|
|
113 |
* Budfix : Plugin optimization is done.
|
114 |
* Update : Plugin tabs is added.
|
115 |
|
@@ -232,6 +239,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
|
|
232 |
|
233 |
== Upgrade Notice ==
|
234 |
|
|
|
|
|
|
|
235 |
= V2.29 =
|
236 |
Plugin optimization is done. Plugin tabs is added.
|
237 |
|
1 |
=== Facebook Like Button ===
|
2 |
Contributors: bestwebsoft
|
3 |
+
Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=1&product_id=94
|
4 |
Tags: Facebook, Facebook Button, Like, Like button, Share, Share button, Facebook like, Facebook like button, Facebook button like, Button like, Facebook share, Facebook share button, Facebook button share
|
5 |
Requires at least: 3.0
|
6 |
+
Tested up to: 3.8.2
|
7 |
+
Stable tag: 2.30
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
14 |
|
15 |
Facebook Like Button Plugin allows you to add a Follow button the easiest way.
|
16 |
|
17 |
+
http://www.youtube.com/watch?v=QGv04uHVl5c
|
18 |
+
|
19 |
<a href="http://wordpress.org/plugins/facebook-button-plugin/faq/" target="_blank">FAQ</a>
|
20 |
|
21 |
<a href="http://support.bestwebsoft.com" target="_blank">Support</a>
|
65 |
2. Activate the plugin via the 'Plugins' menu in your WordPress admin panel.
|
66 |
3. You can adjust the necessary settings in your WordPress admin panel - "Settings" > "Facebook Button".
|
67 |
|
68 |
+
<a href="https://docs.google.com/document/d/1LDmKKxLHq0GavaGcevj4g-8SjLcYPruSKg5Kos9plxM/edit" target="_blank">View a Step-by-step Instruction on Facebook Button Installation</a>.
|
69 |
+
|
70 |
== Frequently Asked Questions ==
|
71 |
|
72 |
= I cannot see the Facebook Button icon in the post after the plugin installation =
|
102 |
1. the link to the page where the problem occurs
|
103 |
2. the name of the plugin and its version. If you are using a pro version - your order number.
|
104 |
3. the version of your WordPress installation
|
105 |
+
4. copy and paste into the message your system status report. Please read more here: <a href="https://docs.google.com/document/d/1Wi2X8RdRGXk9kMszQy1xItJrpN0ncXgioH935MaBKtc/edit" target="_blank">Instuction on System Status</a>
|
106 |
|
107 |
== Screenshots ==
|
108 |
|
113 |
|
114 |
== Changelog ==
|
115 |
|
116 |
+
= V2.30 - 14.04.2014 =
|
117 |
+
* Update : We updated all functionality for wordpress 3.8.2.
|
118 |
+
|
119 |
+
= V2.29 - 03.03.2014 =
|
120 |
* Budfix : Plugin optimization is done.
|
121 |
* Update : Plugin tabs is added.
|
122 |
|
239 |
|
240 |
== Upgrade Notice ==
|
241 |
|
242 |
+
= V2.30 =
|
243 |
+
We updated all functionality for wordpress 3.8.2.
|
244 |
+
|
245 |
= V2.29 =
|
246 |
Plugin optimization is done. Plugin tabs is added.
|
247 |
|