Facebook Button by BestWebSoft - Version 2.46

Version Description

  • 30.11.2015 =
  • Bugfix : The bug with plugin menu duplicating was fixed.
Download this release

Release Info

Developer bestwebsoft
Plugin Icon 128x128 Facebook Button by BestWebSoft
Version 2.46
Comparing to
See all releases

Code changes from version 2.45 to 2.46

bws_menu/bws_functions.php CHANGED
@@ -1,19 +1,45 @@
1
  <?php
2
  /*
3
  * General functions for BestWebSoft plugins
4
- * Version: 1.1.3
5
  */
6
 
 
 
 
 
7
  if ( ! function_exists ( 'bws_add_general_menu' ) ) {
8
  function bws_add_general_menu() {
9
- add_menu_page( 'BWS Plugins', 'BWS Plugins', 'manage_options', 'bws_plugins', 'bws_add_menu_render', plugins_url( 'images/px.png', __FILE__ ), 1001 );
10
  }
11
  }
12
 
13
  /**
14
- * Function check if plugin is compatible with current WP version - for old plugin version
15
  * @return void
16
  */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  if ( ! function_exists ( 'bws_wp_version_check' ) ) {
18
  function bws_wp_version_check( $plugin_basename, $plugin_info, $require_wp ) {
19
  bws_wp_min_version_check( $plugin_basename, $plugin_info, '3.8' , $require_wp );
@@ -328,13 +354,19 @@ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
328
  }
329
  }
330
 
331
- /* compatibility function (Menu Version: 1.7.6) */
 
 
 
332
  if ( ! function_exists( 'bws_go_pro_tab' ) ) {
333
  function bws_go_pro_tab( $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated = false, $trial_days_number = false ) {
334
  bws_go_pro_tab_show( false, $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated, $trial_days_number );
335
  }
336
  }
337
 
 
 
 
338
  if ( ! function_exists( 'bws_go_pro_tab_show' ) ) {
339
  function bws_go_pro_tab_show( $bws_hide_premium_options_check, $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated = false, $trial_days_number = false ) {
340
  global $wp_version, $bstwbsftwppdtplgns_options;
@@ -922,11 +954,11 @@ if ( ! class_exists( 'BWS_admin_tooltip' ) ) {
922
  }
923
 
924
  if ( ! function_exists ( 'bws_form_restore_default_settings' ) ) {
925
- function bws_form_restore_default_settings( $plugin_basename ) { ?>
926
  <form method="post" action="">
927
  <p><?php _e( 'Restore all plugin settings to defaults', 'bestwebsoft' ); ?></p>
928
  <p>
929
- <input type="submit" class="button" value="<?php _e( 'Restore settings', 'bestwebsoft' ); ?>" />
930
  </p>
931
  <input type="hidden" name="bws_restore_default" value="submit" />
932
  <?php wp_nonce_field( $plugin_basename, 'bws_settings_nonce_name' ); ?>
@@ -961,12 +993,14 @@ if ( ! function_exists( 'bws_add_editor_buttons' ) ) {
961
  }
962
  }
963
  }
 
964
  if ( ! function_exists( 'bws_add_buttons' ) ){
965
  function bws_add_buttons( $plugin_array ) {
966
  $plugin_array['add_bws_shortcode'] = plugins_url( 'js/shortcode-button.js', __FILE__ );
967
  return $plugin_array;
968
  }
969
  }
 
970
  if ( ! function_exists( 'bws_register_buttons' ) ) {
971
  function bws_register_buttons( $buttons ) {
972
  array_push( $buttons, 'add_bws_shortcode' ); /* dropcap', 'recentposts */
1
  <?php
2
  /*
3
  * General functions for BestWebSoft plugins
 
4
  */
5
 
6
+ /**
7
+ * Function add BWS Plugins page - for old plugin version
8
+ * @deprecated 1.7.9
9
+ */
10
  if ( ! function_exists ( 'bws_add_general_menu' ) ) {
11
  function bws_add_general_menu() {
12
+ bws_general_menu();
13
  }
14
  }
15
 
16
  /**
17
+ * Function add BWS Plugins page
18
  * @return void
19
  */
20
+ if ( ! function_exists ( 'bws_general_menu' ) ) {
21
+ function bws_general_menu() {
22
+ global $menu, $bws_general_menu_exist;
23
+
24
+ if ( ! $bws_general_menu_exist ) {
25
+ /* we check also menu exist in global array as in old plugins $bws_general_menu_exist variable not exist */
26
+ foreach ( $menu as $value_menu ) {
27
+ if ( 'bws_plugins' == $value_menu[2] ) {
28
+ $bws_general_menu_exist = true;
29
+ return;
30
+ }
31
+ }
32
+
33
+ add_menu_page( 'BWS Plugins', 'BWS Plugins', 'manage_options', 'bws_plugins', 'bws_add_menu_render', plugins_url( 'images/px.png', __FILE__ ), 1001 );
34
+ $bws_general_menu_exist = true;
35
+ }
36
+ }
37
+ }
38
+
39
+ /**
40
+ * Function check if plugin is compatible with current WP version - for old plugin version
41
+ * @deprecated 1.7.4
42
+ */
43
  if ( ! function_exists ( 'bws_wp_version_check' ) ) {
44
  function bws_wp_version_check( $plugin_basename, $plugin_info, $require_wp ) {
45
  bws_wp_min_version_check( $plugin_basename, $plugin_info, '3.8' , $require_wp );
354
  }
355
  }
356
 
357
+ /**
358
+ * Function display GO PRO tab - for old plugin version
359
+ * @deprecated 1.7.6
360
+ */
361
  if ( ! function_exists( 'bws_go_pro_tab' ) ) {
362
  function bws_go_pro_tab( $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated = false, $trial_days_number = false ) {
363
  bws_go_pro_tab_show( false, $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated, $trial_days_number );
364
  }
365
  }
366
 
367
+ /**
368
+ * Function display GO PRO tab
369
+ */
370
  if ( ! function_exists( 'bws_go_pro_tab_show' ) ) {
371
  function bws_go_pro_tab_show( $bws_hide_premium_options_check, $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated = false, $trial_days_number = false ) {
372
  global $wp_version, $bstwbsftwppdtplgns_options;
954
  }
955
 
956
  if ( ! function_exists ( 'bws_form_restore_default_settings' ) ) {
957
+ function bws_form_restore_default_settings( $plugin_basename, $change_permission_attr = '' ) { ?>
958
  <form method="post" action="">
959
  <p><?php _e( 'Restore all plugin settings to defaults', 'bestwebsoft' ); ?></p>
960
  <p>
961
+ <input <?php echo $change_permission_attr; ?> type="submit" class="button" value="<?php _e( 'Restore settings', 'bestwebsoft' ); ?>" />
962
  </p>
963
  <input type="hidden" name="bws_restore_default" value="submit" />
964
  <?php wp_nonce_field( $plugin_basename, 'bws_settings_nonce_name' ); ?>
993
  }
994
  }
995
  }
996
+
997
  if ( ! function_exists( 'bws_add_buttons' ) ){
998
  function bws_add_buttons( $plugin_array ) {
999
  $plugin_array['add_bws_shortcode'] = plugins_url( 'js/shortcode-button.js', __FILE__ );
1000
  return $plugin_array;
1001
  }
1002
  }
1003
+
1004
  if ( ! function_exists( 'bws_register_buttons' ) ) {
1005
  function bws_register_buttons( $buttons ) {
1006
  array_push( $buttons, 'add_bws_shortcode' ); /* dropcap', 'recentposts */
bws_menu/bws_include.php CHANGED
@@ -1,7 +1,6 @@
1
  <?php
2
  /*
3
  * Get latest version
4
- * Version: 1.0.0
5
  */
6
 
7
  if ( ! function_exists ( 'bws_include_init' ) ) {
1
  <?php
2
  /*
3
  * Get latest version
 
4
  */
5
 
6
  if ( ! function_exists ( 'bws_include_init' ) ) {
bws_menu/bws_menu.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
- * Version: 1.7.7
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
@@ -613,8 +613,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
613
  }
614
  } ?>
615
  <div class="wrap">
616
- <div class="icon32 icon32-bws" id="icon-options-general"></div>
617
- <h2>
618
  <span class="bws_main title">BestWebSoft</span>
619
  <ul class="subsubsub bws_title_menu">
620
  <li><a href="<?php echo esc_url( 'http://support.bestwebsoft.com/home' ); ?>" target="_blank"><?php _e( 'Need help?', 'bestwebsoft' ); ?></a></li> |
@@ -622,12 +621,10 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
622
  <li><a class="bws_system_status <?php if ( isset( $_GET['action'] ) && 'system_status' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=bws_plugins&amp;action=system_status"><?php _e( 'System status', 'bestwebsoft' ); ?></a></li>
623
  </ul>
624
  <div class="clear"></div>
625
- </h2>
626
  <h2 class="nav-tab-wrapper">
627
  <a class="nav-tab<?php if ( !isset( $_GET['action'] ) ) echo ' nav-tab-active'; ?>" href="admin.php?page=bws_plugins"><?php _e( 'Plugins', 'bestwebsoft' ); ?></a>
628
- <?php if ( $wp_version >= '3.4' ) { ?>
629
- <a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'themes' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=bws_plugins&amp;action=themes"><?php _e( 'Themes', 'bestwebsoft' ); ?></a>
630
- <?php } ?>
631
  </h2>
632
  <?php if ( ! isset( $_GET['action'] ) ) { ?>
633
  <ul class="subsubsub">
@@ -637,7 +634,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
637
  </ul>
638
  <div class="clear"></div>
639
  <?php if ( ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] ) || !isset( $_GET['sub'] ) ) { ?>
640
- <h4 class="bws_installed"><?php _e( 'Installed plugins', 'bestwebsoft' ); ?></h4>
641
  <?php foreach ( $all_plugins as $key_plugin => $value_plugin ) {
642
  if ( isset( $bws_plugins_pro[ $key_plugin ] ) )
643
  $key_plugin = $bws_plugins_pro[ $key_plugin ];
@@ -755,7 +752,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
755
  } ?>
756
  <div class="clear"></div>
757
  <?php if ( ( isset( $_GET['sub'] ) && 'recommended' == $_GET['sub'] ) || !isset( $_GET['sub'] ) ) { ?>
758
- <h4 class="bws_recommended"><?php _e( 'Recommended plugins', 'bestwebsoft' ); ?></h4>
759
  <?php foreach ( $recommend_plugins as $key_plugin => $value_plugin ) {
760
 
761
  if ( isset( $bws_plugins[ $key_plugin ] ) ) {
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
+ * Version: 1.7.9
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
613
  }
614
  } ?>
615
  <div class="wrap">
616
+ <h1>
 
617
  <span class="bws_main title">BestWebSoft</span>
618
  <ul class="subsubsub bws_title_menu">
619
  <li><a href="<?php echo esc_url( 'http://support.bestwebsoft.com/home' ); ?>" target="_blank"><?php _e( 'Need help?', 'bestwebsoft' ); ?></a></li> |
621
  <li><a class="bws_system_status <?php if ( isset( $_GET['action'] ) && 'system_status' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=bws_plugins&amp;action=system_status"><?php _e( 'System status', 'bestwebsoft' ); ?></a></li>
622
  </ul>
623
  <div class="clear"></div>
624
+ </h1>
625
  <h2 class="nav-tab-wrapper">
626
  <a class="nav-tab<?php if ( !isset( $_GET['action'] ) ) echo ' nav-tab-active'; ?>" href="admin.php?page=bws_plugins"><?php _e( 'Plugins', 'bestwebsoft' ); ?></a>
627
+ <a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'themes' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=bws_plugins&amp;action=themes"><?php _e( 'Themes', 'bestwebsoft' ); ?></a>
 
 
628
  </h2>
629
  <?php if ( ! isset( $_GET['action'] ) ) { ?>
630
  <ul class="subsubsub">
634
  </ul>
635
  <div class="clear"></div>
636
  <?php if ( ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] ) || !isset( $_GET['sub'] ) ) { ?>
637
+ <h3 class="bws_installed"><?php _e( 'Installed plugins', 'bestwebsoft' ); ?></h3>
638
  <?php foreach ( $all_plugins as $key_plugin => $value_plugin ) {
639
  if ( isset( $bws_plugins_pro[ $key_plugin ] ) )
640
  $key_plugin = $bws_plugins_pro[ $key_plugin ];
752
  } ?>
753
  <div class="clear"></div>
754
  <?php if ( ( isset( $_GET['sub'] ) && 'recommended' == $_GET['sub'] ) || !isset( $_GET['sub'] ) ) { ?>
755
+ <h3 class="bws_recommended"><?php _e( 'Recommended plugins', 'bestwebsoft' ); ?></h3>
756
  <?php foreach ( $recommend_plugins as $key_plugin => $value_plugin ) {
757
 
758
  if ( isset( $bws_plugins[ $key_plugin ] ) ) {
bws_menu/css/general_style.css CHANGED
@@ -392,8 +392,6 @@ span.bws_code {
392
  .rtl .bws_hidden_help_text:before {
393
  margin-right: -2px;
394
  }
395
-
396
-
397
  /* bws shortcode insert */
398
  #bws_shortcode_content,
399
  #bws_shortcode_select_plugin {
392
  .rtl .bws_hidden_help_text:before {
393
  margin-right: -2px;
394
  }
 
 
395
  /* bws shortcode insert */
396
  #bws_shortcode_content,
397
  #bws_shortcode_select_plugin {
bws_menu/css/style.css CHANGED
@@ -24,15 +24,15 @@
24
  float: left;
25
  margin-right: 30px;
26
  }
27
- h4.bws_installed,
28
- h4.bws_recommended {
29
  color: #999;
30
  font-weight: bold;
31
  text-transform: uppercase;
32
  font-size: 14px;
33
  }
34
- h4.bws_installed:before,
35
- h4.bws_recommended:before {
36
  border-radius: 9px;
37
  content: "";
38
  display: inline-block;
@@ -42,10 +42,10 @@ h4.bws_recommended:before {
42
  width: 8px;
43
  margin-right: 7px;
44
  }
45
- h4.bws_recommended:before {
46
  background: #0074a2;
47
  }
48
- h4.bws_installed:before {
49
  background: #00a22e;
50
  }
51
  .bws_product_box {
24
  float: left;
25
  margin-right: 30px;
26
  }
27
+ .bws_installed,
28
+ .bws_recommended {
29
  color: #999;
30
  font-weight: bold;
31
  text-transform: uppercase;
32
  font-size: 14px;
33
  }
34
+ .bws_installed:before,
35
+ .bws_recommended:before {
36
  border-radius: 9px;
37
  content: "";
38
  display: inline-block;
42
  width: 8px;
43
  margin-right: 7px;
44
  }
45
+ .bws_recommended:before {
46
  background: #0074a2;
47
  }
48
+ .bws_installed:before {
49
  background: #00a22e;
50
  }
51
  .bws_product_box {
bws_menu/js/bws_tooltip.js CHANGED
@@ -34,7 +34,7 @@
34
  });
35
  /* function to display pointer */
36
  function displayPointer( cssSelector ) {
37
- cssSelector.pointer(pointer_options).pointer({
38
  pointerClass: 'wp-pointer ' + pointer_options["tooltip_id"],
39
  content: pointer_options['content'],
40
  position: {
34
  });
35
  /* function to display pointer */
36
  function displayPointer( cssSelector ) {
37
+ cssSelector.pointer( pointer_options ).pointer({
38
  pointerClass: 'wp-pointer ' + pointer_options["tooltip_id"],
39
  content: pointer_options['content'],
40
  position: {
bws_menu/js/shortcode-button.js CHANGED
@@ -1,122 +1,124 @@
1
- (function($) {
2
- var win;
3
- tinymce.create( 'tinymce.plugins.BWSButton', {
4
- /**
5
- * Initializes the plugin, this will be executed after the plugin has been created.
6
- * This call is done before the editor instance has finished it's initialization so use the onInit event
7
- * of the editor instance to intercept that event.
8
- *
9
- * @param {tinymce.Editor} ed Editor instance that the plugin is initialized in.
10
- * @param {string} url Absolute URL to where the plugin is located.
11
- */
12
- init : function( ed, url ) {
13
- ed.addButton( 'add_bws_shortcode', {
14
- title : bws_shortcode_button.title,
15
- classes: 'bws_shortcode_button widget btn',
16
- image : bws_shortcode_button.icon_url,
17
- onclick: function() {
18
- if ( bws_shortcode_button.wp_version < '3.9' ) {
19
- /* triggers the thickbox */
20
- var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width;
21
- W = W - 80;
22
- H = H - 84;
23
- tb_show( bws_shortcode_button.title, '#TB_inline?width=' + W + '&height=' + H + '&inlineId=bws_shortcode_popup' );
24
-
25
- var current_object = '#TB_ajaxContent';
26
- } else {
27
- win = ed.windowManager.open( {
28
- width: 400,
29
- height: 400,
30
- inline: true,
31
- title: bws_shortcode_button.title,
32
- body: {
33
- id : 'bws-shortcode-content',
34
- type: 'container',
35
- classes: 'bws-shortcode',
36
- html: $( '#bws_shortcode_popup' ).html()
37
- },
38
- buttons: [{
39
- text: 'Insert',
40
- classes: 'button-primary primary bws_shortcode_insert',
41
- onclick: function( e ) {
42
- var shortcode = $( '.mce-container-body #bws_shortcode_display' ).text();
43
- if ( '' != shortcode ) {
44
- /* insert shortcode to tinymce */
45
- ed.insertContent( shortcode );
46
- }
47
- ed.windowManager.close();
 
 
48
  },
49
- },
50
- {
51
- text: 'Cancel',
52
- onclick: 'close'
53
- }],
54
-
55
- });
56
- var current_object = '.mce-container-body';
57
- }
58
- var select_count = $( current_object + ' select#bws_shortcode_select option').length;
59
- if ( 1 == select_count ) {
60
- $( current_object + ' #bws_shortcode_select_plugin' ).hide();
61
- }
62
-
63
- var plugin = $( current_object + ' #bws_shortcode_select option:selected' ).val();
64
- $( current_object + ' #bws_shortcode_content > div' ).hide();
65
- $( current_object + ' #bws_shortcode_content > #' + plugin ).show();
66
-
67
- if ( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).length > 0 ) {
68
- $( current_object + ' #bws_shortcode_display' ).text( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).val() );
69
- }
70
 
71
- $( current_object + ' #bws_shortcode_select' ).on( 'change',function() {
72
  var plugin = $( current_object + ' #bws_shortcode_select option:selected' ).val();
73
  $( current_object + ' #bws_shortcode_content > div' ).hide();
74
  $( current_object + ' #bws_shortcode_content > #' + plugin ).show();
 
75
  if ( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).length > 0 ) {
76
  $( current_object + ' #bws_shortcode_display' ).text( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).val() );
77
- } else {
78
- $( current_object + ' #bws_shortcode_display' ).text( '' );
79
  }
80
- });
81
 
82
- $.each( bws_shortcode_button.function_name, function( index, value ) {
83
- eval( value + '();' );
84
- });
85
- }
86
- });
87
- },
88
-
89
- /**
90
- * Creates control instances based in the incomming name. This method is normally not
91
- * needed since the addButton method of the tinymce.Editor class is a more easy way of adding buttons
92
- * but you sometimes need to create more complex controls like listboxes, split buttons etc then this
93
- * method can be used to create those.
94
- *
95
- * @param {String} n Name of the control to create.
96
- * @param {tinymce.ControlManager} cm Control manager to use inorder to create new control.
97
- * @return {tinymce.ui.Control} New control instance or null if no control was created.
98
- */
99
- createControl : function(n, cm) {
100
- return null;
101
- },
102
-
103
- /**
104
- * Returns information about the plugin as a name/value array.
105
- * The current keys are longname, author, authorurl, infourl and version.
106
- *
107
- * @return {Object} Name/value array containing information about the plugin.
108
- */
109
- getInfo : function() {
110
- return {
111
- longname : 'BWS Shortcode Buttons',
112
- author : 'BWS',
113
- authorurl : 'http://bestwebsoft.com',
114
- infourl : '',
115
- version : "0.1"
116
- };
117
- }
118
- });
119
-
120
- /* Register plugin */
121
- tinymce.PluginManager.add( 'add_bws_shortcode', tinymce.plugins.BWSButton );
 
 
 
 
 
 
 
 
 
 
 
 
122
  })(jQuery);
1
+ (function($) {
2
+ if ( typeof bws_shortcode_button != 'undefined' ) {
3
+ var win;
4
+ tinymce.create( 'tinymce.plugins.BWSButton', {
5
+ /**
6
+ * Initializes the plugin, this will be executed after the plugin has been created.
7
+ * This call is done before the editor instance has finished it's initialization so use the onInit event
8
+ * of the editor instance to intercept that event.
9
+ *
10
+ * @param {tinymce.Editor} ed Editor instance that the plugin is initialized in.
11
+ * @param {string} url Absolute URL to where the plugin is located.
12
+ */
13
+ init : function( ed, url ) {
14
+ ed.addButton( 'add_bws_shortcode', {
15
+ title : bws_shortcode_button.title,
16
+ classes: 'bws_shortcode_button widget btn',
17
+ image : bws_shortcode_button.icon_url,
18
+ onclick: function() {
19
+ if ( bws_shortcode_button.wp_version < '3.9' ) {
20
+ /* triggers the thickbox */
21
+ var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width;
22
+ W = W - 80;
23
+ H = H - 84;
24
+ tb_show( bws_shortcode_button.title, '#TB_inline?width=' + W + '&height=' + H + '&inlineId=bws_shortcode_popup' );
25
+
26
+ var current_object = '#TB_ajaxContent';
27
+ } else {
28
+ win = ed.windowManager.open( {
29
+ width: 400,
30
+ height: 400,
31
+ inline: true,
32
+ title: bws_shortcode_button.title,
33
+ body: {
34
+ id : 'bws-shortcode-content',
35
+ type: 'container',
36
+ classes: 'bws-shortcode',
37
+ html: $( '#bws_shortcode_popup' ).html()
38
+ },
39
+ buttons: [{
40
+ text: 'Insert',
41
+ classes: 'button-primary primary bws_shortcode_insert',
42
+ onclick: function( e ) {
43
+ var shortcode = $( '.mce-container-body #bws_shortcode_display' ).text();
44
+ if ( '' != shortcode ) {
45
+ /* insert shortcode to tinymce */
46
+ ed.insertContent( shortcode );
47
+ }
48
+ ed.windowManager.close();
49
+ },
50
  },
51
+ {
52
+ text: 'Cancel',
53
+ onclick: 'close'
54
+ }],
55
+
56
+ });
57
+ var current_object = '.mce-container-body';
58
+ }
59
+ var select_count = $( current_object + ' select#bws_shortcode_select option').length;
60
+ if ( 1 == select_count ) {
61
+ $( current_object + ' #bws_shortcode_select_plugin' ).hide();
62
+ }
 
 
 
 
 
 
 
 
 
63
 
 
64
  var plugin = $( current_object + ' #bws_shortcode_select option:selected' ).val();
65
  $( current_object + ' #bws_shortcode_content > div' ).hide();
66
  $( current_object + ' #bws_shortcode_content > #' + plugin ).show();
67
+
68
  if ( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).length > 0 ) {
69
  $( current_object + ' #bws_shortcode_display' ).text( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).val() );
 
 
70
  }
 
71
 
72
+ $( current_object + ' #bws_shortcode_select' ).on( 'change',function() {
73
+ var plugin = $( current_object + ' #bws_shortcode_select option:selected' ).val();
74
+ $( current_object + ' #bws_shortcode_content > div' ).hide();
75
+ $( current_object + ' #bws_shortcode_content > #' + plugin ).show();
76
+ if ( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).length > 0 ) {
77
+ $( current_object + ' #bws_shortcode_display' ).text( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).val() );
78
+ } else {
79
+ $( current_object + ' #bws_shortcode_display' ).text( '' );
80
+ }
81
+ });
82
+
83
+ $.each( bws_shortcode_button.function_name, function( index, value ) {
84
+ eval( value + '();' );
85
+ });
86
+ }
87
+ });
88
+ },
89
+
90
+ /**
91
+ * Creates control instances based in the incomming name. This method is normally not
92
+ * needed since the addButton method of the tinymce.Editor class is a more easy way of adding buttons
93
+ * but you sometimes need to create more complex controls like listboxes, split buttons etc then this
94
+ * method can be used to create those.
95
+ *
96
+ * @param {String} n Name of the control to create.
97
+ * @param {tinymce.ControlManager} cm Control manager to use inorder to create new control.
98
+ * @return {tinymce.ui.Control} New control instance or null if no control was created.
99
+ */
100
+ createControl : function(n, cm) {
101
+ return null;
102
+ },
103
+
104
+ /**
105
+ * Returns information about the plugin as a name/value array.
106
+ * The current keys are longname, author, authorurl, infourl and version.
107
+ *
108
+ * @return {Object} Name/value array containing information about the plugin.
109
+ */
110
+ getInfo : function() {
111
+ return {
112
+ longname : 'BWS Shortcode Buttons',
113
+ author : 'BWS',
114
+ authorurl : 'http://bestwebsoft.com',
115
+ infourl : '',
116
+ version : "0.1"
117
+ };
118
+ }
119
+ });
120
+
121
+ /* Register plugin */
122
+ tinymce.PluginManager.add( 'add_bws_shortcode', tinymce.plugins.BWSButton );
123
+ }
124
  })(jQuery);
bws_menu/languages/bestwebsoft-fr_FR.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-fr_FR.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-10-09 14:42+0300\n"
6
- "PO-Revision-Date: 2015-10-09 14:42+0300\n"
7
- "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
10
  "MIME-Version: 1.0\n"
@@ -14,17 +14,20 @@ msgstr ""
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "Plural-Forms: nplurals=2;plural=n>2;\n"
17
- "X-Generator: Poedit 1.5.7\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: bws_functions.php:39
21
- #: bws_functions.php:63
22
  msgid "requires"
23
  msgstr "obligatoire"
24
 
25
  #: bws_functions.php:41
26
- msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
27
- msgstr "ou supérieure, c'est pourquoi il a été désactivé! Merci de faire la mise à jour de WordPress puis de ré-essayer."
 
 
 
 
28
 
29
  #: bws_functions.php:42
30
  msgid "Back to the WordPress"
@@ -35,8 +38,12 @@ msgid "Plugins page"
35
  msgstr "Page des extensions"
36
 
37
  #: bws_functions.php:65
38
- msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
 
 
39
  msgstr ""
 
 
40
 
41
  #: bws_functions.php:122
42
  msgid "It’s time to upgrade your"
@@ -52,16 +59,19 @@ msgstr "version"
52
 
53
  #: bws_functions.php:123
54
  msgid "Extend standard plugin functionality with new great options."
55
- msgstr "Etend les fonctionalités classiques de l'extension avec des nouvelles options."
 
 
56
 
57
- #: bws_functions.php:126
58
- #: bws_functions.php:561
59
  msgid "Learn More"
60
  msgstr "En savoir plus"
61
 
62
  #: bws_functions.php:143
63
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
64
- msgstr "Si notre extension vous satisfait, merci de la notée avec 5 étoiles dans Wordpress"
 
 
65
 
66
  #: bws_functions.php:144
67
  msgid "Rate the plugin"
@@ -74,21 +84,22 @@ msgstr "Si vous avez une question, n'hésitez pas à nous contacter"
74
  #: bws_functions.php:179
75
  msgid "Check premium options on the plugin settings page!"
76
  msgstr ""
 
77
 
78
- #: bws_functions.php:186
79
- #: bws_functions.php:222
80
  msgid "Wrong license key"
81
  msgstr "Clé de licence incorrecte"
82
 
83
- #: bws_functions.php:216
84
- #: bws_functions.php:474
85
- #: bws_functions.php:525
86
- msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
87
- msgstr "Il est survenu une erreur. Essayer de nouveau. Si l'erreur se produit de nouveau, merci de contacter <a href=http://support.bestwebsoft.com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
 
 
 
88
 
89
- #: bws_functions.php:216
90
- #: bws_functions.php:474
91
- #: bws_functions.php:525
92
  msgid "We are sorry for inconvenience."
93
  msgstr "Nous sommes désolés pour le désagrément."
94
 
@@ -96,69 +107,91 @@ msgstr "Nous sommes désolés pour le désagrément."
96
  msgid "This license key is bind to another site"
97
  msgstr "La clé de licence correspond à un autre site."
98
 
99
- #: bws_functions.php:226
100
- #: bws_functions.php:384
101
- msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
102
- msgstr "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de télécharger l'extension manuellement."
 
 
 
103
 
104
  #: bws_functions.php:228
105
- msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
106
- msgstr "Désoler, votre licence est terminée. Pour continuer à disposer du support rapide et des mises à jour de l'extension vous devez la renouveller dans votre"
 
 
 
 
107
 
108
  #: bws_functions.php:230
109
- #, fuzzy
110
- msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
111
- msgstr "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne peut-être installée qu'une seule fois."
 
 
 
112
 
113
- #: bws_functions.php:251
114
- #: bws_functions.php:273
115
- #: bws_functions.php:295
116
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
117
- msgstr "Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension manuellement."
 
 
118
 
119
  #: bws_functions.php:263
120
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
121
- msgstr "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension manuellement."
 
 
122
 
123
  #: bws_functions.php:269
124
- msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
125
- msgstr "Votre server n'a pas le support du format des archives ZIP ou Phar. Merci de télécharger l'extension manuellement."
 
 
 
 
126
 
127
  #: bws_functions.php:276
128
  msgid "UploadDir is not writable. Please, upload the plugin manually"
129
- msgstr "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension manuellement."
 
 
130
 
131
  #: bws_functions.php:299
132
- msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
133
- msgstr "Il est survenu une erreur. Essayer de nouveau ou bien télécharger l'extension manuellement.Nous sommes désolés pour le désagrément."
 
 
 
 
134
 
135
  #: bws_functions.php:324
136
  msgid "Please, enter Your license key"
137
  msgstr "Merci de saisir votre clé de licence"
138
 
139
  #: bws_functions.php:348
140
- #, fuzzy
141
- msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
142
- msgstr "Félicitations! La version PRO de cette extension a été téléchargée et activée avec succès."
 
 
 
143
 
144
- #: bws_functions.php:350
145
- #: bws_functions.php:441
146
  msgid "Please, go to"
147
- msgstr "Merci d'allez à"
148
 
149
- #: bws_functions.php:350
150
- #: bws_functions.php:441
151
  msgid "the setting page"
152
  msgstr "Options supplémentaires"
153
 
154
- #: bws_functions.php:351
155
- #: bws_functions.php:442
156
  msgid "You will be redirected automatically in 5 seconds."
157
  msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
158
 
159
  #: bws_functions.php:358
160
  msgid "Show Pro features"
161
- msgstr ""
162
 
163
  #: bws_functions.php:365
164
  msgid "You can download and activate"
@@ -168,18 +201,21 @@ msgstr "Vous pouvez télécharger et activer la version "
168
  msgid "version of this plugin by entering Your license key."
169
  msgstr " de cette extension en donnant votre clé de licence."
170
 
171
- #: bws_functions.php:369
172
- #: bws_functions.php:410
173
- msgid "You can find your license key on your personal page Client area, by clicking on the link"
174
- msgstr "Vous pouvez trouver votre clé de licence sur votre page personnelle dans la zone cliente en cliquant sur le lien"
 
 
 
175
 
176
- #: bws_functions.php:371
177
- #: bws_functions.php:412
178
  msgid "(your username is the email you specify when purchasing the product)."
179
- msgstr "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de l'achat de l'extension)."
 
 
180
 
181
- #: bws_functions.php:375
182
- #: bws_functions.php:659
183
  msgid "or"
184
  msgstr "ou"
185
 
@@ -188,33 +224,36 @@ msgstr "ou"
188
  msgid "Start Your Free %s-Day Trial Now"
189
  msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
190
 
191
- #: bws_functions.php:381
192
- #: bws_functions.php:390
193
- #: bws_functions.php:420
194
- #: bws_functions.php:428
195
- #: bws_menu.php:693
196
- #: bws_menu.php:750
197
  msgid "Activate"
198
  msgstr "Activé"
199
 
200
- #: bws_functions.php:407
201
- #: bws_functions.php:500
202
  #, php-format
203
- msgid "In order to continue using the plugin it is necessary to buy a %s license."
204
- msgstr "Afin de pouvoir continuer à utiliser cette extension il est nécessaire d'acheter une licence %s."
 
 
 
205
 
206
  #: bws_functions.php:408
207
  msgid "After that you can activate it by entering your license key."
208
- msgstr " Après vous pouvez activer cette extension en donnant votre clé de licence."
 
209
 
210
  #: bws_functions.php:422
211
  msgid "Unfortunately, you have exceeded the number of available tries per day."
212
- msgstr "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de télécharger l'extension manuellement."
 
 
213
 
214
  #: bws_functions.php:439
215
- #, fuzzy
216
- msgid "Congratulations! The Pro license of the plugin is successfully activated."
217
- msgstr "Félicitations! La version PRO de cette extension a été téléchargée et activée avec succès."
 
 
218
 
219
  #: bws_functions.php:480
220
  msgid "Wrong license key."
@@ -225,20 +264,29 @@ msgid "This license key is bind to another site."
225
  msgstr "La clé de licence correspond à un autre site."
226
 
227
  #: bws_functions.php:484
228
- msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
229
- msgstr "La clé de licence est valide mais votre durée de validité est passée. Pour continuer à disposer du support rapide et des mises à jour de l'extension vous devez la renouveller."
 
 
 
 
 
230
 
231
  #: bws_functions.php:486
232
  msgid "Unfortunately, you have exceeded the number of available tries."
233
- msgstr "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de télécharger l'extension manuellement."
 
 
234
 
235
  #: bws_functions.php:488
236
- #, fuzzy
237
- msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
238
- msgstr "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne peut-être installée qu'une seule fois."
 
 
 
239
 
240
  #: bws_functions.php:492
241
- #, fuzzy
242
  msgid "The Pro Trial license key is valid."
243
  msgstr "La clé de licence d'évaluation est valide."
244
 
@@ -255,12 +303,23 @@ msgid "Please, enter your license key"
255
  msgstr "Merci de saisir votre clé de licence"
256
 
257
  #: bws_functions.php:543
258
- msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
259
- msgstr "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la saisir de nouveau dans le champ ci-dessous. Vous pouvez trouver votre clé de licence sur votre page personnelle (zone client) sur notre site web."
 
 
 
 
 
 
260
 
261
  #: bws_functions.php:543
262
- msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
263
- msgstr "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de l'achat de l'extension). Si nécessaire, utilisez la fonction de demande de mot de passe perdu."
 
 
 
 
 
264
 
265
  #: bws_functions.php:547
266
  msgid "Check license key"
@@ -271,42 +330,52 @@ msgid "WARNING: Illegal use notification"
271
  msgstr "AVERTISSEMENT : Notification d'utilisation abusive"
272
 
273
  #: bws_functions.php:561
274
- msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
275
- msgstr "Nous avons détecté une utilisation abusive de notre extension. Nous vous recommandons de résoudre ce problème dans les 24 heures, sinon l'extension sera rendue inactive. Merci de vous rendre dans votre espace personel"
 
 
 
 
 
 
 
 
 
276
 
277
  #: bws_functions.php:569
278
- #, fuzzy
279
- msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
280
- msgstr "Votre licence d'évaluation est terminée. Pour continuer à disposer du support rapide et des mises à jour de l'extension vous devez la renouveller."
 
 
 
281
 
282
  #: bws_functions.php:571
283
- msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
284
- msgstr "Votre licence est terminée. Pour continuer à disposer du support rapide et des mises à jour de l'extension vous devez la renouveller."
 
 
 
 
285
 
286
- #: bws_functions.php:571
287
- #: bws_functions.php:624
288
- #: bws_menu.php:669
289
- #: bws_menu.php:691
290
- #: bws_menu.php:718
291
- #: bws_menu.php:748
292
- #: bws_menu.php:794
293
  msgid "Learn more"
294
  msgstr "En savoir plus"
295
 
296
  #: bws_functions.php:581
297
- #, fuzzy, php-format
298
  msgid "Notice: You are using the Pro Trial license of %s plugin."
299
- msgstr "Avertissement : vous utilisez la version d'évaluation de l'extension %s."
 
300
 
301
  #: bws_functions.php:583
302
- #, fuzzy
303
  msgid "Notice: You are using the Pro Trial license of plugin."
304
  msgstr "Avertissement : vous utilisez la version d'évaluation de l'extension."
305
 
306
  #: bws_functions.php:586
307
- #, fuzzy
308
  msgid "The Pro Trial license will expire on"
309
- msgstr "Votre licence se termine le "
310
 
311
  #: bws_functions.php:624
312
  msgid "You license for"
@@ -318,150 +387,138 @@ msgstr "se termine le"
318
 
319
  #: bws_functions.php:624
320
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
321
- msgstr "et vous ne diposerez plus du support rapide et des mises à jour."
322
 
323
  #: bws_functions.php:655
324
- #, fuzzy
325
  msgid "Thank you for installing"
326
- msgstr "Merci de nous avoir contacté."
327
 
328
  #: bws_functions.php:656
329
  msgid "Let's get started"
330
- msgstr ""
331
 
332
  #: bws_functions.php:657
333
- #, fuzzy
334
  msgid "Configure Settings"
335
- msgstr "Options du formulaire de Contact"
336
 
337
  #: bws_functions.php:660
338
  msgid "Add New"
339
- msgstr ""
340
 
341
  #: bws_functions.php:664
342
  msgid "Close notice"
343
- msgstr ""
344
 
345
  #: bws_functions.php:677
346
  msgid "Notice"
347
- msgstr ""
348
 
349
  #: bws_functions.php:677
350
  msgid "The plugin's settings have been changed."
351
- msgstr ""
352
 
353
  #: bws_functions.php:678
354
  msgid "Save Changes"
355
  msgstr "Sauvegarder les modifications"
356
 
357
  #: bws_functions.php:693
358
- msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
 
 
359
  msgstr ""
 
 
360
 
361
  #: bws_functions.php:773
362
- #, fuzzy
363
  msgid "Add BWS Plugins Shortcode"
364
- msgstr "Utiliser le code court"
365
 
366
  #: bws_functions.php:793
367
- #, fuzzy
368
  msgid "Add shortcode"
369
- msgstr "Utiliser le code court"
370
 
371
  #: bws_functions.php:793
372
  msgid "Add BestWebSoft plugins' shortcodes using this button."
373
- msgstr ""
374
 
375
- #: bws_functions.php:833
376
  msgid "Close"
377
  msgstr "Fermer"
378
 
379
- #: bws_functions.php:925
380
  msgid "Restore all plugin settings to defaults"
381
- msgstr ""
382
 
383
- #: bws_functions.php:927
384
- #, fuzzy
385
  msgid "Restore settings"
386
- msgstr "Options supplémentaires"
387
 
388
- #: bws_functions.php:938
389
- #, fuzzy
390
  msgid "Are you sure you want to restore all settings by default?"
391
- msgstr "Etes vous sûr de vouloir supprimer cette langue ?"
392
 
393
- #: bws_functions.php:941
394
  msgid "Yes, restore all settings"
395
- msgstr ""
396
 
397
- #: bws_functions.php:942
398
- #, fuzzy
399
  msgid "No, go back to the settings page"
400
- msgstr "Options supplémentaires"
401
 
402
- #: bws_functions.php:986
403
- #, fuzzy
404
  msgid "Plugin"
405
- msgstr "Extensions"
406
 
407
- #: bws_functions.php:995
408
- #, fuzzy
409
  msgid "Shortcode settings"
410
- msgstr "Options supplémentaires"
411
 
412
- #: bws_functions.php:1000
413
  msgid "The shortcode will be inserted"
414
- msgstr ""
415
 
416
- #: bws_functions.php:1005
417
  msgid "Insert"
418
- msgstr ""
419
 
420
- #: bws_functions.php:1036
421
  msgid "Visit Help Center"
422
- msgstr ""
423
 
424
- #: bws_functions.php:1041
425
  msgid "FAQ"
426
  msgstr "FAQ"
427
 
428
- #: bws_functions.php:1047
429
  msgid "For more information:"
430
- msgstr ""
431
 
432
- #: bws_functions.php:1048
433
  msgid "Documentation"
434
- msgstr ""
435
 
436
- #: bws_functions.php:1049
437
  msgid "Video Instructions"
438
- msgstr ""
439
 
440
- #: bws_functions.php:1050
441
- #, fuzzy
442
  msgid "Submit a Request"
443
- msgstr "Bouton Envoyer"
444
 
445
  #: bws_menu.php:506
446
  msgid "Not set"
447
  msgstr "Not set"
448
 
449
- #: bws_menu.php:508
450
- #: bws_menu.php:509
451
  msgid "On"
452
  msgstr "On"
453
 
454
- #: bws_menu.php:508
455
- #: bws_menu.php:509
456
  msgid "Off"
457
  msgstr "Off"
458
 
459
- #: bws_menu.php:510
460
- #: bws_menu.php:511
461
- #: bws_menu.php:512
462
- #: bws_menu.php:513
463
- #: bws_menu.php:514
464
- #: bws_menu.php:526
465
  msgid "N/A"
466
  msgstr "N/A"
467
 
@@ -469,17 +526,11 @@ msgstr "N/A"
469
  msgid " Mb"
470
  msgstr " Mb"
471
 
472
- #: bws_menu.php:515
473
- #: bws_menu.php:516
474
- #: bws_menu.php:517
475
- #: bws_menu.php:522
476
  msgid "Yes"
477
  msgstr "Yes"
478
 
479
- #: bws_menu.php:515
480
- #: bws_menu.php:516
481
- #: bws_menu.php:517
482
- #: bws_menu.php:524
483
  msgid "No"
484
  msgstr "No"
485
 
@@ -591,8 +642,7 @@ msgstr "Besoin d'aide ?"
591
  msgid "Client area"
592
  msgstr "Espace client"
593
 
594
- #: bws_menu.php:622
595
- #: bws_menu.php:933
596
  msgid "System status"
597
  msgstr "System status"
598
 
@@ -618,33 +668,27 @@ msgstr "Recommandé"
618
 
619
  #: bws_menu.php:640
620
  msgid "Installed plugins"
621
- msgstr "Plugin installé"
622
 
623
- #: bws_menu.php:672
624
- #: bws_menu.php:721
625
  msgid "Settings"
626
  msgstr "Réglages"
627
 
628
- #: bws_menu.php:693
629
- #: bws_menu.php:750
630
  msgid "Activate this plugin"
631
  msgstr "Activer cette extension"
632
 
633
- #: bws_menu.php:708
634
- #: bws_menu.php:738
635
- #: bws_menu.php:784
636
  msgid "Go"
637
  msgstr "Passez"
638
 
639
- #: bws_menu.php:712
640
- #: bws_menu.php:742
641
- #: bws_menu.php:788
642
  msgid "DONATE"
643
  msgstr "Faire un don"
644
 
645
  #: bws_menu.php:758
646
  msgid "Recommended plugins"
647
- msgstr "Plugin recommandé"
648
 
649
  #: bws_menu.php:796
650
  msgid "Install now"
@@ -666,12 +710,12 @@ msgstr "%s installé"
666
 
667
  #: bws_menu.php:866
668
  msgid "Install Now"
669
- msgstr "Installa Ora"
670
 
671
  #: bws_menu.php:869
672
  #, php-format
673
  msgid "Update to version %s"
674
- msgstr "Mettre à jour pour la version %s"
675
 
676
  #: bws_menu.php:869
677
  msgid "Update"
@@ -686,8 +730,7 @@ msgstr "Pré-visualiser %s"
686
  msgid "Preview"
687
  msgstr "Pré-visualiser"
688
 
689
- #: bws_menu.php:882
690
- #: bws_menu.php:914
691
  #, php-format
692
  msgid "By %s"
693
  msgstr "Par %s"
@@ -702,15 +745,15 @@ msgstr "Déjà installé"
702
 
703
  #: bws_menu.php:936
704
  msgid "Environment"
705
- msgstr "Environment"
706
 
707
  #: bws_menu.php:947
708
  msgid "Active Plugins"
709
- msgstr "Plugin actifs"
710
 
711
  #: bws_menu.php:960
712
  msgid "Inactive Plugins"
713
- msgstr "Plugin inactifs"
714
 
715
  #: bws_menu.php:976
716
  msgid "Send to support"
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-11-17 13:31+0300\n"
6
+ "PO-Revision-Date: 2015-11-17 13:31+0300\n"
7
+ "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
10
  "MIME-Version: 1.0\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "Plural-Forms: nplurals=2;plural=n>2;\n"
17
+ "X-Generator: Poedit 1.5.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: bws_functions.php:39 bws_functions.php:63
 
21
  msgid "requires"
22
  msgstr "obligatoire"
23
 
24
  #: bws_functions.php:41
25
+ msgid ""
26
+ "or higher, that is why it has been deactivated! Please upgrade WordPress and "
27
+ "try again."
28
+ msgstr ""
29
+ "ou supérieure, c'est pourquoi il a été désactivé! Merci de faire la mise à "
30
+ "jour de WordPress puis de ré-essayer."
31
 
32
  #: bws_functions.php:42
33
  msgid "Back to the WordPress"
38
  msgstr "Page des extensions"
39
 
40
  #: bws_functions.php:65
41
+ msgid ""
42
+ "or higher! We do not guarantee that our plugin will work correctly. Please "
43
+ "upgrade to WordPress latest version."
44
  msgstr ""
45
+ "ou plus ! Nous ne garantissons pas que notre extension fonctionne "
46
+ "correctement. Merci de mettre à jour Wordpress avec la dernière version."
47
 
48
  #: bws_functions.php:122
49
  msgid "It’s time to upgrade your"
59
 
60
  #: bws_functions.php:123
61
  msgid "Extend standard plugin functionality with new great options."
62
+ msgstr ""
63
+ "Étend les fonctionnalités classiques de l'extension avec des nouvelles "
64
+ "options."
65
 
66
+ #: bws_functions.php:126 bws_functions.php:561
 
67
  msgid "Learn More"
68
  msgstr "En savoir plus"
69
 
70
  #: bws_functions.php:143
71
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
72
+ msgstr ""
73
+ "Si notre extension vous satisfait, merci de la notée avec 5 étoiles dans "
74
+ "Wordpress"
75
 
76
  #: bws_functions.php:144
77
  msgid "Rate the plugin"
84
  #: bws_functions.php:179
85
  msgid "Check premium options on the plugin settings page!"
86
  msgstr ""
87
+ "Vérifier les options premium sur la page des paramètres de l'extension!"
88
 
89
+ #: bws_functions.php:186 bws_functions.php:222
 
90
  msgid "Wrong license key"
91
  msgstr "Clé de licence incorrecte"
92
 
93
+ #: bws_functions.php:216 bws_functions.php:474 bws_functions.php:525
94
+ msgid ""
95
+ "Something went wrong. Please try again later. If the error appears again, "
96
+ "please contact us"
97
+ msgstr ""
98
+ "Il est survenu une erreur. Essayer de nouveau. Si l'erreur se produit de "
99
+ "nouveau, merci de contacter <a href=http://support.bestwebsoft."
100
+ "com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
101
 
102
+ #: bws_functions.php:216 bws_functions.php:474 bws_functions.php:525
 
 
103
  msgid "We are sorry for inconvenience."
104
  msgstr "Nous sommes désolés pour le désagrément."
105
 
107
  msgid "This license key is bind to another site"
108
  msgstr "La clé de licence correspond à un autre site."
109
 
110
+ #: bws_functions.php:226 bws_functions.php:384
111
+ msgid ""
112
+ "Unfortunately, you have exceeded the number of available tries per day. "
113
+ "Please, upload the plugin manually."
114
+ msgstr ""
115
+ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
116
+ "télécharger l'extension manuellement."
117
 
118
  #: bws_functions.php:228
119
+ msgid ""
120
+ "Unfortunately, Your license has expired. To continue getting top-priority "
121
+ "support and plugin updates you should extend it in your"
122
+ msgstr ""
123
+ "Désoler, votre licence est terminée. Pour continuer à disposer du support "
124
+ "rapide et des mises à jour de l'extension vous devez la renouveler dans votre"
125
 
126
  #: bws_functions.php:230
127
+ msgid ""
128
+ "Unfortunately, the Pro licence was already installed to this domain. The Pro "
129
+ "Trial license can be installed only once."
130
+ msgstr ""
131
+ "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne "
132
+ "peut-être installée qu'une seule fois."
133
 
134
+ #: bws_functions.php:251 bws_functions.php:273 bws_functions.php:295
 
 
135
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
136
+ msgstr ""
137
+ "Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension "
138
+ "manuellement."
139
 
140
  #: bws_functions.php:263
141
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
142
+ msgstr ""
143
+ "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
144
+ "manuellement."
145
 
146
  #: bws_functions.php:269
147
+ msgid ""
148
+ "Your server does not support either ZipArchive or Phar. Please, upload the "
149
+ "plugin manually"
150
+ msgstr ""
151
+ "Votre serveur n'a pas le support du format des archives ZIP ou Phar. Merci "
152
+ "de télécharger l'extension manuellement."
153
 
154
  #: bws_functions.php:276
155
  msgid "UploadDir is not writable. Please, upload the plugin manually"
156
+ msgstr ""
157
+ "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
158
+ "manuellement."
159
 
160
  #: bws_functions.php:299
161
+ msgid ""
162
+ "Something went wrong. Try again later or upload the plugin manually. We are "
163
+ "sorry for inconvenience."
164
+ msgstr ""
165
+ "Il est survenu une erreur. Essayer de nouveau ou bien télécharger "
166
+ "l'extension manuellement.Nous sommes désolés pour le désagrément."
167
 
168
  #: bws_functions.php:324
169
  msgid "Please, enter Your license key"
170
  msgstr "Merci de saisir votre clé de licence"
171
 
172
  #: bws_functions.php:348
173
+ msgid ""
174
+ "Congratulations! The Pro version of the plugin is successfully download and "
175
+ "activated."
176
+ msgstr ""
177
+ "Félicitations! La version PRO de cette extension a été téléchargée et "
178
+ "activée avec succès."
179
 
180
+ #: bws_functions.php:350 bws_functions.php:441
 
181
  msgid "Please, go to"
182
+ msgstr "Merci d’aller à"
183
 
184
+ #: bws_functions.php:350 bws_functions.php:441
 
185
  msgid "the setting page"
186
  msgstr "Options supplémentaires"
187
 
188
+ #: bws_functions.php:351 bws_functions.php:442
 
189
  msgid "You will be redirected automatically in 5 seconds."
190
  msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
191
 
192
  #: bws_functions.php:358
193
  msgid "Show Pro features"
194
+ msgstr "Voir les fonctionnalités de la version PRO"
195
 
196
  #: bws_functions.php:365
197
  msgid "You can download and activate"
201
  msgid "version of this plugin by entering Your license key."
202
  msgstr " de cette extension en donnant votre clé de licence."
203
 
204
+ #: bws_functions.php:369 bws_functions.php:410
205
+ msgid ""
206
+ "You can find your license key on your personal page Client area, by clicking "
207
+ "on the link"
208
+ msgstr ""
209
+ "Vous pouvez trouver votre clé de licence sur votre page personnelle dans la "
210
+ "zone cliente en cliquant sur le lien"
211
 
212
+ #: bws_functions.php:371 bws_functions.php:412
 
213
  msgid "(your username is the email you specify when purchasing the product)."
214
+ msgstr ""
215
+ "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de "
216
+ "l'achat de l'extension)."
217
 
218
+ #: bws_functions.php:375 bws_functions.php:659
 
219
  msgid "or"
220
  msgstr "ou"
221
 
224
  msgid "Start Your Free %s-Day Trial Now"
225
  msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
226
 
227
+ #: bws_functions.php:381 bws_functions.php:390 bws_functions.php:420
228
+ #: bws_functions.php:428 bws_menu.php:693 bws_menu.php:750
 
 
 
 
229
  msgid "Activate"
230
  msgstr "Activé"
231
 
232
+ #: bws_functions.php:407 bws_functions.php:500
 
233
  #, php-format
234
+ msgid ""
235
+ "In order to continue using the plugin it is necessary to buy a %s license."
236
+ msgstr ""
237
+ "Afin de pouvoir continuer à utiliser cette extension il est nécessaire "
238
+ "d'acheter une licence %s."
239
 
240
  #: bws_functions.php:408
241
  msgid "After that you can activate it by entering your license key."
242
+ msgstr ""
243
+ " Après vous pouvez activer cette extension en donnant votre clé de licence."
244
 
245
  #: bws_functions.php:422
246
  msgid "Unfortunately, you have exceeded the number of available tries per day."
247
+ msgstr ""
248
+ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
249
+ "télécharger l'extension manuellement."
250
 
251
  #: bws_functions.php:439
252
+ msgid ""
253
+ "Congratulations! The Pro license of the plugin is successfully activated."
254
+ msgstr ""
255
+ "Félicitations! La version PRO de cette extension a été téléchargée et "
256
+ "activée avec succès."
257
 
258
  #: bws_functions.php:480
259
  msgid "Wrong license key."
264
  msgstr "La clé de licence correspond à un autre site."
265
 
266
  #: bws_functions.php:484
267
+ msgid ""
268
+ "This license key is valid, but Your license has expired. If you want to "
269
+ "update our plugin in future, you should extend the license."
270
+ msgstr ""
271
+ "La clé de licence est valide mais votre durée de validité est passée. Pour "
272
+ "continuer à disposer du support rapide et des mises à jour de l'extension "
273
+ "vous devez la renouveller."
274
 
275
  #: bws_functions.php:486
276
  msgid "Unfortunately, you have exceeded the number of available tries."
277
+ msgstr ""
278
+ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
279
+ "télécharger l'extension manuellement."
280
 
281
  #: bws_functions.php:488
282
+ msgid ""
283
+ "Unfortunately, the Pro Trial licence was already installed to this domain. "
284
+ "The Pro Trial license can be installed only once."
285
+ msgstr ""
286
+ "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne "
287
+ "peut-être installée qu'une seule fois."
288
 
289
  #: bws_functions.php:492
 
290
  msgid "The Pro Trial license key is valid."
291
  msgstr "La clé de licence d'évaluation est valide."
292
 
303
  msgstr "Merci de saisir votre clé de licence"
304
 
305
  #: bws_functions.php:543
306
+ msgid ""
307
+ "If needed you can check if the license key is correct or reenter it in the "
308
+ "field below. You can find your license key on your personal page - Client "
309
+ "area - on our website"
310
+ msgstr ""
311
+ "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la "
312
+ "saisir de nouveau dans le champ ci-dessous. Vous pouvez trouver votre clé de "
313
+ "licence sur votre page personnelle (zone client) sur notre site web."
314
 
315
  #: bws_functions.php:543
316
+ msgid ""
317
+ "(your username is the email you specify when purchasing the product). If "
318
+ "necessary, please submit \"Lost your password?\" request."
319
+ msgstr ""
320
+ "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de "
321
+ "l'achat de l'extension). Si nécessaire, utilisez la fonction de demande de "
322
+ "mot de passe perdu."
323
 
324
  #: bws_functions.php:547
325
  msgid "Check license key"
330
  msgstr "AVERTISSEMENT : Notification d'utilisation abusive"
331
 
332
  #: bws_functions.php:561
333
+ msgid ""
334
+ "You can use one license of the Pro plugin for one domain only. Please check "
335
+ "and edit your license or domain if necessary using you personal Client Area. "
336
+ "We strongly recommend you to solve the problem within 24 hours, otherwise "
337
+ "the Pro plugin will be deactivated."
338
+ msgstr ""
339
+ "Vous ne pouvez utilisez qu'une licence de la version Pro de l'extension pour "
340
+ "un seul domaine. Merci de vérifier et de modifier votre licence ou votre "
341
+ "domaine si nécessaire en utilisant votre zone client. Nous vous recommandons "
342
+ "de résoudre ce problème dans les 24 heures, sinon l'extension sera rendue "
343
+ "inactive."
344
 
345
  #: bws_functions.php:569
346
+ msgid ""
347
+ "Notice: Your Pro Trial license has expired. To continue using the plugin you "
348
+ "should buy a Pro license"
349
+ msgstr ""
350
+ "Votre licence d'évaluation est terminée. Pour continuer à disposer du "
351
+ "support rapide et des mises à jour de l'extension vous devez la renouveler."
352
 
353
  #: bws_functions.php:571
354
+ msgid ""
355
+ "Your license has expired. To continue getting top-priority support and "
356
+ "plugin updates you should extend it."
357
+ msgstr ""
358
+ "Votre licence est terminée. Pour continuer à disposer du support rapide et "
359
+ "des mises à jour de l'extension vous devez la renouveller."
360
 
361
+ #: bws_functions.php:571 bws_functions.php:624 bws_menu.php:669
362
+ #: bws_menu.php:691 bws_menu.php:718 bws_menu.php:748 bws_menu.php:794
 
 
 
 
 
363
  msgid "Learn more"
364
  msgstr "En savoir plus"
365
 
366
  #: bws_functions.php:581
367
+ #, php-format
368
  msgid "Notice: You are using the Pro Trial license of %s plugin."
369
+ msgstr ""
370
+ "Avertissement : vous utilisez la version d'évaluation de l'extension %s."
371
 
372
  #: bws_functions.php:583
 
373
  msgid "Notice: You are using the Pro Trial license of plugin."
374
  msgstr "Avertissement : vous utilisez la version d'évaluation de l'extension."
375
 
376
  #: bws_functions.php:586
 
377
  msgid "The Pro Trial license will expire on"
378
+ msgstr "La licence PRO d'évaluation expirera le"
379
 
380
  #: bws_functions.php:624
381
  msgid "You license for"
387
 
388
  #: bws_functions.php:624
389
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
390
+ msgstr "et vous ne disposerez plus du support rapide et des mises à jour."
391
 
392
  #: bws_functions.php:655
 
393
  msgid "Thank you for installing"
394
+ msgstr "Merci d'avoir installé"
395
 
396
  #: bws_functions.php:656
397
  msgid "Let's get started"
398
+ msgstr "Démarrer"
399
 
400
  #: bws_functions.php:657
 
401
  msgid "Configure Settings"
402
+ msgstr "Configuration des paramètres"
403
 
404
  #: bws_functions.php:660
405
  msgid "Add New"
406
+ msgstr "Ajouter"
407
 
408
  #: bws_functions.php:664
409
  msgid "Close notice"
410
+ msgstr "Effacer l'avertissement"
411
 
412
  #: bws_functions.php:677
413
  msgid "Notice"
414
+ msgstr "Avertissement"
415
 
416
  #: bws_functions.php:677
417
  msgid "The plugin's settings have been changed."
418
+ msgstr "Les paramètres de l'extension ont été modifiés."
419
 
420
  #: bws_functions.php:678
421
  msgid "Save Changes"
422
  msgstr "Sauvegarder les modifications"
423
 
424
  #: bws_functions.php:693
425
+ msgid ""
426
+ "You can always look at premium options by clicking on the \"Show Pro features"
427
+ "\" in the \"Go PRO\" tab"
428
  msgstr ""
429
+ "Vous pouvez toujours consulter les options premium en cliquant sur le lien "
430
+ "\"Voir les fonctionnalités de la version PRO\" dans l'onglet Passer PRO"
431
 
432
  #: bws_functions.php:773
 
433
  msgid "Add BWS Plugins Shortcode"
434
+ msgstr "Ajouter le code court de l'extension BWS"
435
 
436
  #: bws_functions.php:793
 
437
  msgid "Add shortcode"
438
+ msgstr "Ajouter le code court"
439
 
440
  #: bws_functions.php:793
441
  msgid "Add BestWebSoft plugins' shortcodes using this button."
442
+ msgstr "Ajouter le code court des extensions BestWebSoft avec ce bouton."
443
 
444
+ #: bws_functions.php:835
445
  msgid "Close"
446
  msgstr "Fermer"
447
 
448
+ #: bws_functions.php:927
449
  msgid "Restore all plugin settings to defaults"
450
+ msgstr "Remettre les valeurs par défaut des paramètres de l'extension"
451
 
452
+ #: bws_functions.php:929
 
453
  msgid "Restore settings"
454
+ msgstr "Remettre les paramètres"
455
 
456
+ #: bws_functions.php:940
 
457
  msgid "Are you sure you want to restore all settings by default?"
458
+ msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
459
 
460
+ #: bws_functions.php:943
461
  msgid "Yes, restore all settings"
462
+ msgstr "Oui, remettre les valeurs par défaut"
463
 
464
+ #: bws_functions.php:944
 
465
  msgid "No, go back to the settings page"
466
+ msgstr "Non, retourner à la page des paramètres"
467
 
468
+ #: bws_functions.php:988
 
469
  msgid "Plugin"
470
+ msgstr "Extension"
471
 
472
+ #: bws_functions.php:997
 
473
  msgid "Shortcode settings"
474
+ msgstr "Paramètres du code court"
475
 
476
+ #: bws_functions.php:1002
477
  msgid "The shortcode will be inserted"
478
+ msgstr "Le code court sera inséré"
479
 
480
+ #: bws_functions.php:1007
481
  msgid "Insert"
482
+ msgstr "Insérer"
483
 
484
+ #: bws_functions.php:1038
485
  msgid "Visit Help Center"
486
+ msgstr "Visiter le site du support"
487
 
488
+ #: bws_functions.php:1043
489
  msgid "FAQ"
490
  msgstr "FAQ"
491
 
492
+ #: bws_functions.php:1049
493
  msgid "For more information:"
494
+ msgstr "Pour plus d'informations&nbsp;:"
495
 
496
+ #: bws_functions.php:1050
497
  msgid "Documentation"
498
+ msgstr "Documentation"
499
 
500
+ #: bws_functions.php:1051
501
  msgid "Video Instructions"
502
+ msgstr "Vidéo explicative"
503
 
504
+ #: bws_functions.php:1052
 
505
  msgid "Submit a Request"
506
+ msgstr "Soumettre une requête"
507
 
508
  #: bws_menu.php:506
509
  msgid "Not set"
510
  msgstr "Not set"
511
 
512
+ #: bws_menu.php:508 bws_menu.php:509
 
513
  msgid "On"
514
  msgstr "On"
515
 
516
+ #: bws_menu.php:508 bws_menu.php:509
 
517
  msgid "Off"
518
  msgstr "Off"
519
 
520
+ #: bws_menu.php:510 bws_menu.php:511 bws_menu.php:512 bws_menu.php:513
521
+ #: bws_menu.php:514 bws_menu.php:526
 
 
 
 
522
  msgid "N/A"
523
  msgstr "N/A"
524
 
526
  msgid " Mb"
527
  msgstr " Mb"
528
 
529
+ #: bws_menu.php:515 bws_menu.php:516 bws_menu.php:517 bws_menu.php:522
 
 
 
530
  msgid "Yes"
531
  msgstr "Yes"
532
 
533
+ #: bws_menu.php:515 bws_menu.php:516 bws_menu.php:517 bws_menu.php:524
 
 
 
534
  msgid "No"
535
  msgstr "No"
536
 
642
  msgid "Client area"
643
  msgstr "Espace client"
644
 
645
+ #: bws_menu.php:622 bws_menu.php:933
 
646
  msgid "System status"
647
  msgstr "System status"
648
 
668
 
669
  #: bws_menu.php:640
670
  msgid "Installed plugins"
671
+ msgstr "Extensions installées"
672
 
673
+ #: bws_menu.php:672 bws_menu.php:721
 
674
  msgid "Settings"
675
  msgstr "Réglages"
676
 
677
+ #: bws_menu.php:693 bws_menu.php:750
 
678
  msgid "Activate this plugin"
679
  msgstr "Activer cette extension"
680
 
681
+ #: bws_menu.php:708 bws_menu.php:738 bws_menu.php:784
 
 
682
  msgid "Go"
683
  msgstr "Passez"
684
 
685
+ #: bws_menu.php:712 bws_menu.php:742 bws_menu.php:788
 
 
686
  msgid "DONATE"
687
  msgstr "Faire un don"
688
 
689
  #: bws_menu.php:758
690
  msgid "Recommended plugins"
691
+ msgstr "Extensions recommandées"
692
 
693
  #: bws_menu.php:796
694
  msgid "Install now"
710
 
711
  #: bws_menu.php:866
712
  msgid "Install Now"
713
+ msgstr "Installer maintenant"
714
 
715
  #: bws_menu.php:869
716
  #, php-format
717
  msgid "Update to version %s"
718
+ msgstr "Mettre à jour avec la version %s"
719
 
720
  #: bws_menu.php:869
721
  msgid "Update"
730
  msgid "Preview"
731
  msgstr "Pré-visualiser"
732
 
733
+ #: bws_menu.php:882 bws_menu.php:914
 
734
  #, php-format
735
  msgid "By %s"
736
  msgstr "Par %s"
745
 
746
  #: bws_menu.php:936
747
  msgid "Environment"
748
+ msgstr "Environnent"
749
 
750
  #: bws_menu.php:947
751
  msgid "Active Plugins"
752
+ msgstr "Extensions actives"
753
 
754
  #: bws_menu.php:960
755
  msgid "Inactive Plugins"
756
+ msgstr "Extensions inactives"
757
 
758
  #: bws_menu.php:976
759
  msgid "Send to support"
facebook-button-plugin.php CHANGED
@@ -6,7 +6,7 @@ Description: Put Facebook Button in to your post.
6
  Author: BestWebSoft
7
  Text Domain: facebook-button-plugin
8
  Domain Path: /languages
9
- Version: 2.45
10
  Author URI: http://bestwebsoft.com/
11
  License: GPLv2 or later
12
  */
@@ -30,7 +30,7 @@ License: GPLv2 or later
30
  /* Add BWS menu */
31
  if ( ! function_exists( 'fcbkbttn_add_pages' ) ) {
32
  function fcbkbttn_add_pages() {
33
- bws_add_general_menu( plugin_basename( __FILE__ ) );
34
  $settings = add_submenu_page( 'bws_plugins', __( 'Facebook Button Settings', 'facebook-button-plugin' ), 'Facebook Button', 'manage_options', 'facebook-button-plugin.php', 'fcbkbttn_settings_page' );
35
  add_action( 'load-' . $settings, 'fcbkbttn_add_tabs' );
36
  }
@@ -289,7 +289,7 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
289
  }/* end GO PRO ##*/ ?>
290
  <!-- general -->
291
  <div class="wrap">
292
- <h2><?php _e( 'Facebook Button Settings', 'facebook-button-plugin' ); ?></h2>
293
  <h2 class="nav-tab-wrapper">
294
  <a class="nav-tab<?php if ( ! isset( $_GET['action'] ) ) echo ' nav-tab-active'; ?>" href="admin.php?page=facebook-button-plugin.php"><?php _e( 'Settings', 'facebook-button-plugin' ); ?></a>
295
  <a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'extra' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=facebook-button-plugin.php&amp;action=extra"><?php _e( 'Extra settings', 'facebook-button-plugin' ); ?></a>
6
  Author: BestWebSoft
7
  Text Domain: facebook-button-plugin
8
  Domain Path: /languages
9
+ Version: 2.46
10
  Author URI: http://bestwebsoft.com/
11
  License: GPLv2 or later
12
  */
30
  /* Add BWS menu */
31
  if ( ! function_exists( 'fcbkbttn_add_pages' ) ) {
32
  function fcbkbttn_add_pages() {
33
+ bws_general_menu();
34
  $settings = add_submenu_page( 'bws_plugins', __( 'Facebook Button Settings', 'facebook-button-plugin' ), 'Facebook Button', 'manage_options', 'facebook-button-plugin.php', 'fcbkbttn_settings_page' );
35
  add_action( 'load-' . $settings, 'fcbkbttn_add_tabs' );
36
  }
289
  }/* end GO PRO ##*/ ?>
290
  <!-- general -->
291
  <div class="wrap">
292
+ <h1><?php _e( 'Facebook Button Settings', 'facebook-button-plugin' ); ?></h1>
293
  <h2 class="nav-tab-wrapper">
294
  <a class="nav-tab<?php if ( ! isset( $_GET['action'] ) ) echo ' nav-tab-active'; ?>" href="admin.php?page=facebook-button-plugin.php"><?php _e( 'Settings', 'facebook-button-plugin' ); ?></a>
295
  <a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'extra' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=facebook-button-plugin.php&amp;action=extra"><?php _e( 'Extra settings', 'facebook-button-plugin' ); ?></a>
languages/facebook-button-plugin-hu_HU.mo CHANGED
Binary file
languages/facebook-button-plugin-hu_HU.po CHANGED
@@ -1,71 +1,71 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: facebook\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-11-04 14:12+0300\n"
6
- "PO-Revision-Date: 2015-11-04 14:12+0300\n"
7
  "Last-Translator: Áprily Péter <info@aprily.com>\n"
8
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
9
- "Language: ru_RU\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: facebook-button-plugin.php:34 facebook-button-plugin.php:293
20
  msgid "Facebook Button Settings"
21
  msgstr "Facebook Gomb Beállítások"
22
 
23
- #: facebook-button-plugin.php:215
24
  msgid "Settings saved"
25
  msgstr "Beállítások mentve"
26
 
27
- #: facebook-button-plugin.php:241
28
  msgid "Error: File size > 32K"
29
  msgstr "Hiba: File méret > 32k"
30
 
31
- #: facebook-button-plugin.php:244
32
  msgid "Error: Invalid file type"
33
  msgstr "Hiba: Érvénytelen file típus"
34
 
35
- #: facebook-button-plugin.php:250
36
  msgid "Upload successful."
37
  msgstr "A feltöltés sikeres."
38
 
39
- #: facebook-button-plugin.php:260
40
  msgid "Error: moving file failed"
41
  msgstr "Hiba: file mozgatás sikertelen"
42
 
43
- #: facebook-button-plugin.php:263
44
  msgid "Error: check image width or height"
45
  msgstr "Hiba: ellenőrizze a kép szélességét és magasságát"
46
 
47
- #: facebook-button-plugin.php:267
48
  msgid "Uploading Error: check image properties"
49
  msgstr "Feltöltési Hiba: ellenőrizze a kép tulajdonságait"
50
 
51
- #: facebook-button-plugin.php:280
52
  msgid "All plugin settings were restored."
53
  msgstr "Minden plugin paraméter visszaállítva."
54
 
55
- #: facebook-button-plugin.php:295 facebook-button-plugin.php:786
56
- #: facebook-button-plugin.php:800
57
  msgid "Settings"
58
  msgstr "Beállítások"
59
 
60
- #: facebook-button-plugin.php:296
61
  msgid "Extra settings"
62
  msgstr "Extra beállítások"
63
 
64
- #: facebook-button-plugin.php:297
65
  msgid "Go PRO"
66
  msgstr "PRO-ra váltás"
67
 
68
- #: facebook-button-plugin.php:300
69
  msgid "Please, enable JavaScript in Your browser."
70
  msgstr ""
71
 
@@ -252,22 +252,22 @@ msgstr ""
252
  "kedveljék, ha ez a beállítás engedélyezett vagy egy egyedi bejegyzést, ha ez "
253
  "a beállítás kikapcsolt, ha a normál \"Like\" gombra kattintanak."
254
 
255
- #: facebook-button-plugin.php:493 facebook-button-plugin.php:570
256
  msgid "If you upgrade to Pro version all your settings will be saved."
257
  msgstr "Ha a PRO verzióra vált, minden paramétere el lesz mentve."
258
 
259
  #: facebook-button-plugin.php:500 facebook-button-plugin.php:528
260
- #: facebook-button-plugin.php:577
261
  #, fuzzy
262
  msgid "Unlock premium options by upgrading to Pro version"
263
  msgstr "A prémium paramétereket elérheti a PRO változatra váltással."
264
 
265
  #: facebook-button-plugin.php:502 facebook-button-plugin.php:530
266
- #: facebook-button-plugin.php:579
267
  msgid "Learn More"
268
  msgstr "Olvasson tovább"
269
 
270
- #: facebook-button-plugin.php:510 facebook-button-plugin.php:565
271
  msgid "Save Changes"
272
  msgstr "Változások mentése"
273
 
@@ -276,7 +276,7 @@ msgstr "Változások mentése"
276
  msgid "Facebook Button preview:"
277
  msgstr "Facebook Gomb Beállítások"
278
 
279
- #: facebook-button-plugin.php:547
280
  msgid ""
281
  "Please choose the necessary post types (or single pages) where Facebook "
282
  "button will be displayed:"
@@ -284,28 +284,28 @@ msgstr ""
284
  "Kérjük válassza ki a szükséges bejegyzés típusokat (vagy egyedi oldalakat) "
285
  "ahol a Facebook gomb megjelenjen:"
286
 
287
- #: facebook-button-plugin.php:554
288
  msgid "Show URL for pages"
289
  msgstr "URL megjelenítése oldalakon"
290
 
291
- #: facebook-button-plugin.php:560
292
  msgid "Example of the site's pages tree"
293
  msgstr "Példa az oldal lap struktúrájának fájára"
294
 
295
- #: facebook-button-plugin.php:560
296
  msgid "Example of site pages' tree"
297
  msgstr "Példa oldal lapjainak fa struktúrájára"
298
 
299
- #: facebook-button-plugin.php:692
300
  #, fuzzy
301
  msgid "Add Facebook buttons to your page or post"
302
  msgstr "Facebook gombok helye"
303
 
304
- #: facebook-button-plugin.php:801
305
  msgid "FAQ"
306
  msgstr "Gy.I.K."
307
 
308
- #: facebook-button-plugin.php:802
309
  msgid "Support"
310
  msgstr "Támogatás"
311
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: facebook-button-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-11-30 11:23+0300\n"
6
+ "PO-Revision-Date: 2015-11-30 11:23+0300\n"
7
  "Last-Translator: Áprily Péter <info@aprily.com>\n"
8
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
9
+ "Language: hu_HU\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: facebook-button-plugin.php:34 facebook-button-plugin.php:292
20
  msgid "Facebook Button Settings"
21
  msgstr "Facebook Gomb Beállítások"
22
 
23
+ #: facebook-button-plugin.php:214
24
  msgid "Settings saved"
25
  msgstr "Beállítások mentve"
26
 
27
+ #: facebook-button-plugin.php:240
28
  msgid "Error: File size > 32K"
29
  msgstr "Hiba: File méret > 32k"
30
 
31
+ #: facebook-button-plugin.php:243
32
  msgid "Error: Invalid file type"
33
  msgstr "Hiba: Érvénytelen file típus"
34
 
35
+ #: facebook-button-plugin.php:249
36
  msgid "Upload successful."
37
  msgstr "A feltöltés sikeres."
38
 
39
+ #: facebook-button-plugin.php:259
40
  msgid "Error: moving file failed"
41
  msgstr "Hiba: file mozgatás sikertelen"
42
 
43
+ #: facebook-button-plugin.php:262
44
  msgid "Error: check image width or height"
45
  msgstr "Hiba: ellenőrizze a kép szélességét és magasságát"
46
 
47
+ #: facebook-button-plugin.php:266
48
  msgid "Uploading Error: check image properties"
49
  msgstr "Feltöltési Hiba: ellenőrizze a kép tulajdonságait"
50
 
51
+ #: facebook-button-plugin.php:279
52
  msgid "All plugin settings were restored."
53
  msgstr "Minden plugin paraméter visszaállítva."
54
 
55
+ #: facebook-button-plugin.php:294 facebook-button-plugin.php:787
56
+ #: facebook-button-plugin.php:801
57
  msgid "Settings"
58
  msgstr "Beállítások"
59
 
60
+ #: facebook-button-plugin.php:295
61
  msgid "Extra settings"
62
  msgstr "Extra beállítások"
63
 
64
+ #: facebook-button-plugin.php:296
65
  msgid "Go PRO"
66
  msgstr "PRO-ra váltás"
67
 
68
+ #: facebook-button-plugin.php:299
69
  msgid "Please, enable JavaScript in Your browser."
70
  msgstr ""
71
 
252
  "kedveljék, ha ez a beállítás engedélyezett vagy egy egyedi bejegyzést, ha ez "
253
  "a beállítás kikapcsolt, ha a normál \"Like\" gombra kattintanak."
254
 
255
+ #: facebook-button-plugin.php:493 facebook-button-plugin.php:571
256
  msgid "If you upgrade to Pro version all your settings will be saved."
257
  msgstr "Ha a PRO verzióra vált, minden paramétere el lesz mentve."
258
 
259
  #: facebook-button-plugin.php:500 facebook-button-plugin.php:528
260
+ #: facebook-button-plugin.php:578
261
  #, fuzzy
262
  msgid "Unlock premium options by upgrading to Pro version"
263
  msgstr "A prémium paramétereket elérheti a PRO változatra váltással."
264
 
265
  #: facebook-button-plugin.php:502 facebook-button-plugin.php:530
266
+ #: facebook-button-plugin.php:580
267
  msgid "Learn More"
268
  msgstr "Olvasson tovább"
269
 
270
+ #: facebook-button-plugin.php:510 facebook-button-plugin.php:566
271
  msgid "Save Changes"
272
  msgstr "Változások mentése"
273
 
276
  msgid "Facebook Button preview:"
277
  msgstr "Facebook Gomb Beállítások"
278
 
279
+ #: facebook-button-plugin.php:548
280
  msgid ""
281
  "Please choose the necessary post types (or single pages) where Facebook "
282
  "button will be displayed:"
284
  "Kérjük válassza ki a szükséges bejegyzés típusokat (vagy egyedi oldalakat) "
285
  "ahol a Facebook gomb megjelenjen:"
286
 
287
+ #: facebook-button-plugin.php:555
288
  msgid "Show URL for pages"
289
  msgstr "URL megjelenítése oldalakon"
290
 
291
+ #: facebook-button-plugin.php:561
292
  msgid "Example of the site's pages tree"
293
  msgstr "Példa az oldal lap struktúrájának fájára"
294
 
295
+ #: facebook-button-plugin.php:561
296
  msgid "Example of site pages' tree"
297
  msgstr "Példa oldal lapjainak fa struktúrájára"
298
 
299
+ #: facebook-button-plugin.php:693
300
  #, fuzzy
301
  msgid "Add Facebook buttons to your page or post"
302
  msgstr "Facebook gombok helye"
303
 
304
+ #: facebook-button-plugin.php:802
305
  msgid "FAQ"
306
  msgstr "Gy.I.K."
307
 
308
+ #: facebook-button-plugin.php:803
309
  msgid "Support"
310
  msgstr "Támogatás"
311
 
languages/facebook-button-plugin-ru_RU.mo CHANGED
Binary file
languages/facebook-button-plugin-ru_RU.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: 2015-10-13 14:09+0300\n"
6
- "PO-Revision-Date: 2015-10-21 13:29+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
@@ -16,60 +16,60 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: facebook-button-plugin.php:34 facebook-button-plugin.php:290
20
  msgid "Facebook Button Settings"
21
  msgstr "Настройки Facebook Button"
22
 
23
- #: facebook-button-plugin.php:212
24
  msgid "Settings saved"
25
  msgstr "Настройки сохранены"
26
 
27
- #: facebook-button-plugin.php:238
28
  msgid "Error: File size > 32K"
29
  msgstr "Ошибка: Размер файла > 32К"
30
 
31
- #: facebook-button-plugin.php:241
32
  msgid "Error: Invalid file type"
33
  msgstr "Ошибка: Некорректный тип файла"
34
 
35
- #: facebook-button-plugin.php:247
36
  msgid "Upload successful."
37
  msgstr "Загрузка прошла удачно."
38
 
39
- #: facebook-button-plugin.php:257
40
  msgid "Error: moving file failed"
41
  msgstr "Ошибка: При перемещении произошла ошибка"
42
 
43
- #: facebook-button-plugin.php:260
44
  msgid "Error: check image width or height"
45
  msgstr "Ошибка: Проверьте ширину и высоту изображения"
46
 
47
- #: facebook-button-plugin.php:264
48
  msgid "Uploading Error: check image properties"
49
  msgstr "Ошибка загрузки: Проверьте опции изображения"
50
 
51
- #: facebook-button-plugin.php:277
52
  msgid "All plugin settings were restored."
53
  msgstr "Все настройки плагина восстановлены."
54
 
55
- #: facebook-button-plugin.php:292 facebook-button-plugin.php:783
56
- #: facebook-button-plugin.php:797
57
  msgid "Settings"
58
  msgstr "Настройки"
59
 
60
- #: facebook-button-plugin.php:293
61
  msgid "Extra settings"
62
  msgstr "Дополнительные настройки"
63
 
64
- #: facebook-button-plugin.php:294
65
  msgid "Go PRO"
66
  msgstr "Перейти на PRO версию"
67
 
68
- #: facebook-button-plugin.php:297
69
  msgid "Please, enable JavaScript in Your browser."
70
  msgstr "Пожалуйста, включите поддержку JavaScript в вашем браузере."
71
 
72
- #: facebook-button-plugin.php:311
73
  #, php-format
74
  msgid ""
75
  "If you would like to add Facebook buttons to your page or post, please use "
@@ -78,7 +78,7 @@ msgstr ""
78
  "Если вы хотите добавить Facebook кнопки на вашу страницу или пост, то "
79
  "используйте кнопку %s"
80
 
81
- #: facebook-button-plugin.php:316
82
  #, php-format
83
  msgid ""
84
  "You can add Facebook buttons to your page or post by clicking on %s button "
@@ -89,89 +89,89 @@ msgstr ""
89
  "кнопку %s в блоке редактирования контента в режиме Visual. Если кнопка не "
90
  "отображается, пожалуйста, используйте шорткод %s"
91
 
92
- #: facebook-button-plugin.php:327
93
  msgid "Display button"
94
  msgstr "Отображение кнопок"
95
 
96
- #: facebook-button-plugin.php:330
97
  msgid "My Page"
98
  msgstr "Моя страница"
99
 
100
- #: facebook-button-plugin.php:331 facebook-button-plugin.php:438
101
  msgid "Like"
102
  msgstr "Нравиться"
103
 
104
- #: facebook-button-plugin.php:332
105
  msgid "Share"
106
  msgstr "Поделиться"
107
 
108
- #: facebook-button-plugin.php:337
109
  msgid "Facebook buttons position"
110
  msgstr "Позиции Facebook кнопки"
111
 
112
- #: facebook-button-plugin.php:340
113
  msgid "Before"
114
  msgstr "Перед"
115
 
116
- #: facebook-button-plugin.php:341
117
  msgid "After"
118
  msgstr "После"
119
 
120
- #: facebook-button-plugin.php:342
121
  msgid "Before and After"
122
  msgstr "Перед и после"
123
 
124
- #: facebook-button-plugin.php:343
125
  msgid "Shortcode"
126
  msgstr "Шорткод"
127
 
128
- #: facebook-button-plugin.php:348
129
  msgid "Facebook buttons language"
130
  msgstr "Язык для Facebook кнопки"
131
 
132
- #: facebook-button-plugin.php:359
133
  msgid "Change the language of Facebook Button"
134
  msgstr "Выберите язык для Facebook кнопок"
135
 
136
- #: facebook-button-plugin.php:364 facebook-button-plugin.php:367
137
- #: facebook-button-plugin.php:372
138
  msgid "Use the current site language"
139
  msgstr "Использовать текущий язык сайта"
140
 
141
- #: facebook-button-plugin.php:364 facebook-button-plugin.php:368
142
- #: facebook-button-plugin.php:373
143
  msgid "Using"
144
  msgstr "Используя"
145
 
146
- #: facebook-button-plugin.php:368
147
  msgid "Activate"
148
  msgstr "Активировать"
149
 
150
- #: facebook-button-plugin.php:373
151
  msgid "Download"
152
  msgstr "Загрузить"
153
 
154
- #: facebook-button-plugin.php:380
155
  msgid "Display buttons in excerpt"
156
  msgstr "Отображать кнопки для цитаты"
157
 
158
- #: facebook-button-plugin.php:386
159
  msgid "Your Facebook ID or username"
160
  msgstr "Ваш Facebook ID или имя пользователя"
161
 
162
- #: facebook-button-plugin.php:393
163
  msgid "\"My page\" button image"
164
  msgstr "Изображение кнопки \"Моя страница\""
165
 
166
- #: facebook-button-plugin.php:398
167
  msgid "Standard Facebook image"
168
  msgstr "Стандартная картинка Facebook"
169
 
170
- #: facebook-button-plugin.php:399
171
  msgid "Custom Facebook image"
172
  msgstr "Пользовательская картинка Facebook"
173
 
174
- #: facebook-button-plugin.php:402
175
  msgid ""
176
  "To use custom image you need to setup permissions to upload directory of "
177
  "your site"
@@ -179,11 +179,11 @@ msgstr ""
179
  "Для использования кастомного изображения Вам нужно выдать права доступа на "
180
  "папку загрузок на вашем сайте"
181
 
182
- #: facebook-button-plugin.php:409
183
  msgid "Current image"
184
  msgstr "Текущее изображение"
185
 
186
- #: facebook-button-plugin.php:417
187
  msgid ""
188
  "Image properties: max image width:100px; max image height:40px; max image "
189
  "size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
@@ -191,55 +191,55 @@ msgstr ""
191
  "Опции изображения для загрузки: максимальная ширина:100px; максимальная "
192
  "высота:40px; максимальный размер:32Kb; тип файла:\"jpg\", \"jpeg\", \"png\"."
193
 
194
- #: facebook-button-plugin.php:421
195
  msgid "Button layout"
196
  msgstr "Вид кнопок"
197
 
198
- #: facebook-button-plugin.php:435
199
  msgid "Like button action"
200
  msgstr "Действие кнопки \"Like\""
201
 
202
- #: facebook-button-plugin.php:439
203
  msgid "Recommend"
204
  msgstr "Рекомендую"
205
 
206
- #: facebook-button-plugin.php:444
207
  msgid "Show faces"
208
  msgstr "Показать лица"
209
 
210
- #: facebook-button-plugin.php:450
211
  msgid "Layout width"
212
  msgstr "Ширина блока"
213
 
214
- #: facebook-button-plugin.php:456
215
  msgid "Color scheme"
216
  msgstr "Цветовая схема"
217
 
218
- #: facebook-button-plugin.php:459
219
  msgid "Light"
220
  msgstr "Светлая"
221
 
222
- #: facebook-button-plugin.php:460
223
  msgid "Dark"
224
  msgstr "Тёмная"
225
 
226
- #: facebook-button-plugin.php:465
227
  msgid "Html tag for \"Like\" button"
228
  msgstr "Html тэг для кнопки \"Нравиться\""
229
 
230
- #: facebook-button-plugin.php:470
231
  msgid "Use this tag to improve validation of your site"
232
  msgstr "Используйте этот тэг для лучшей валидации вашего сайта"
233
 
234
- #: facebook-button-plugin.php:479 facebook-button-plugin.php:516
235
  msgid "Close"
236
  msgstr "Закрыть"
237
 
238
- #: facebook-button-plugin.php:483
239
  msgid "\"Like\" for an entire site on every page:"
240
  msgstr "Ставить \"Нравиться\" всему сайту на каждой странице:"
241
 
242
- #: facebook-button-plugin.php:485
243
  msgid ""
244
  "Notice: \"Like for the entire site\" option does not create an extra button. "
245
  "This option merely allows your users to like the entire website when this "
@@ -251,29 +251,29 @@ msgstr ""
251
  "ставить \"Нравиться\" для всего сайта, если эта опция включена, или "
252
  "\"Нравиться\" для отдельной записи, когда эта опция выключена."
253
 
254
- #: facebook-button-plugin.php:490 facebook-button-plugin.php:567
255
  msgid "If you upgrade to Pro version all your settings will be saved."
256
  msgstr "При установке Pro версии плагина, все ваши настройки сохраняются."
257
 
258
- #: facebook-button-plugin.php:497 facebook-button-plugin.php:525
259
- #: facebook-button-plugin.php:574
260
  msgid "Unlock premium options by upgrading to Pro version"
261
  msgstr "Активируйте премиум опции обновившись до Pro версии"
262
 
263
- #: facebook-button-plugin.php:499 facebook-button-plugin.php:527
264
- #: facebook-button-plugin.php:576
265
  msgid "Learn More"
266
  msgstr "Подробнее"
267
 
268
- #: facebook-button-plugin.php:507 facebook-button-plugin.php:562
269
  msgid "Save Changes"
270
  msgstr "Сохранить изменения"
271
 
272
- #: facebook-button-plugin.php:519
273
  msgid "Facebook Button preview:"
274
  msgstr "Предварительный просмотр Facebook кнопок"
275
 
276
- #: facebook-button-plugin.php:544
277
  msgid ""
278
  "Please choose the necessary post types (or single pages) where Facebook "
279
  "button will be displayed:"
@@ -281,27 +281,27 @@ msgstr ""
281
  "Пожалуйста, выберите те типы постов (или отдельные страницы), где будут "
282
  "отображаться кнопки Facebook:"
283
 
284
- #: facebook-button-plugin.php:551
285
  msgid "Show URL for pages"
286
  msgstr "Отображать URL для страниц"
287
 
288
- #: facebook-button-plugin.php:557
289
  msgid "Example of the site's pages tree"
290
  msgstr "Пример дерева страниц сайта"
291
 
292
- #: facebook-button-plugin.php:557
293
  msgid "Example of site pages' tree"
294
  msgstr "Пример дерева страниц сайта"
295
 
296
- #: facebook-button-plugin.php:689
297
  msgid "Add Facebook buttons to your page or post"
298
  msgstr "Добавить Facebook кнопки на вашу страницу или пост"
299
 
300
- #: facebook-button-plugin.php:798
301
  msgid "FAQ"
302
  msgstr "FAQ"
303
 
304
- #: facebook-button-plugin.php:799
305
  msgid "Support"
306
  msgstr "Поддержка"
307
 
2
  msgstr ""
3
  "Project-Id-Version: facebook-button-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-11-30 11:23+0300\n"
6
+ "PO-Revision-Date: 2015-11-30 11:23+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: facebook-button-plugin.php:34 facebook-button-plugin.php:292
20
  msgid "Facebook Button Settings"
21
  msgstr "Настройки Facebook Button"
22
 
23
+ #: facebook-button-plugin.php:214
24
  msgid "Settings saved"
25
  msgstr "Настройки сохранены"
26
 
27
+ #: facebook-button-plugin.php:240
28
  msgid "Error: File size > 32K"
29
  msgstr "Ошибка: Размер файла > 32К"
30
 
31
+ #: facebook-button-plugin.php:243
32
  msgid "Error: Invalid file type"
33
  msgstr "Ошибка: Некорректный тип файла"
34
 
35
+ #: facebook-button-plugin.php:249
36
  msgid "Upload successful."
37
  msgstr "Загрузка прошла удачно."
38
 
39
+ #: facebook-button-plugin.php:259
40
  msgid "Error: moving file failed"
41
  msgstr "Ошибка: При перемещении произошла ошибка"
42
 
43
+ #: facebook-button-plugin.php:262
44
  msgid "Error: check image width or height"
45
  msgstr "Ошибка: Проверьте ширину и высоту изображения"
46
 
47
+ #: facebook-button-plugin.php:266
48
  msgid "Uploading Error: check image properties"
49
  msgstr "Ошибка загрузки: Проверьте опции изображения"
50
 
51
+ #: facebook-button-plugin.php:279
52
  msgid "All plugin settings were restored."
53
  msgstr "Все настройки плагина восстановлены."
54
 
55
+ #: facebook-button-plugin.php:294 facebook-button-plugin.php:787
56
+ #: facebook-button-plugin.php:801
57
  msgid "Settings"
58
  msgstr "Настройки"
59
 
60
+ #: facebook-button-plugin.php:295
61
  msgid "Extra settings"
62
  msgstr "Дополнительные настройки"
63
 
64
+ #: facebook-button-plugin.php:296
65
  msgid "Go PRO"
66
  msgstr "Перейти на PRO версию"
67
 
68
+ #: facebook-button-plugin.php:299
69
  msgid "Please, enable JavaScript in Your browser."
70
  msgstr "Пожалуйста, включите поддержку JavaScript в вашем браузере."
71
 
72
+ #: facebook-button-plugin.php:314
73
  #, php-format
74
  msgid ""
75
  "If you would like to add Facebook buttons to your page or post, please use "
78
  "Если вы хотите добавить Facebook кнопки на вашу страницу или пост, то "
79
  "используйте кнопку %s"
80
 
81
+ #: facebook-button-plugin.php:319
82
  #, php-format
83
  msgid ""
84
  "You can add Facebook buttons to your page or post by clicking on %s button "
89
  "кнопку %s в блоке редактирования контента в режиме Visual. Если кнопка не "
90
  "отображается, пожалуйста, используйте шорткод %s"
91
 
92
+ #: facebook-button-plugin.php:330
93
  msgid "Display button"
94
  msgstr "Отображение кнопок"
95
 
96
+ #: facebook-button-plugin.php:333
97
  msgid "My Page"
98
  msgstr "Моя страница"
99
 
100
+ #: facebook-button-plugin.php:334 facebook-button-plugin.php:441
101
  msgid "Like"
102
  msgstr "Нравиться"
103
 
104
+ #: facebook-button-plugin.php:335
105
  msgid "Share"
106
  msgstr "Поделиться"
107
 
108
+ #: facebook-button-plugin.php:340
109
  msgid "Facebook buttons position"
110
  msgstr "Позиции Facebook кнопки"
111
 
112
+ #: facebook-button-plugin.php:343
113
  msgid "Before"
114
  msgstr "Перед"
115
 
116
+ #: facebook-button-plugin.php:344
117
  msgid "After"
118
  msgstr "После"
119
 
120
+ #: facebook-button-plugin.php:345
121
  msgid "Before and After"
122
  msgstr "Перед и после"
123
 
124
+ #: facebook-button-plugin.php:346
125
  msgid "Shortcode"
126
  msgstr "Шорткод"
127
 
128
+ #: facebook-button-plugin.php:351
129
  msgid "Facebook buttons language"
130
  msgstr "Язык для Facebook кнопки"
131
 
132
+ #: facebook-button-plugin.php:362
133
  msgid "Change the language of Facebook Button"
134
  msgstr "Выберите язык для Facebook кнопок"
135
 
136
+ #: facebook-button-plugin.php:367 facebook-button-plugin.php:370
137
+ #: facebook-button-plugin.php:375
138
  msgid "Use the current site language"
139
  msgstr "Использовать текущий язык сайта"
140
 
141
+ #: facebook-button-plugin.php:367 facebook-button-plugin.php:371
142
+ #: facebook-button-plugin.php:376
143
  msgid "Using"
144
  msgstr "Используя"
145
 
146
+ #: facebook-button-plugin.php:371
147
  msgid "Activate"
148
  msgstr "Активировать"
149
 
150
+ #: facebook-button-plugin.php:376
151
  msgid "Download"
152
  msgstr "Загрузить"
153
 
154
+ #: facebook-button-plugin.php:383
155
  msgid "Display buttons in excerpt"
156
  msgstr "Отображать кнопки для цитаты"
157
 
158
+ #: facebook-button-plugin.php:389
159
  msgid "Your Facebook ID or username"
160
  msgstr "Ваш Facebook ID или имя пользователя"
161
 
162
+ #: facebook-button-plugin.php:396
163
  msgid "\"My page\" button image"
164
  msgstr "Изображение кнопки \"Моя страница\""
165
 
166
+ #: facebook-button-plugin.php:401
167
  msgid "Standard Facebook image"
168
  msgstr "Стандартная картинка Facebook"
169
 
170
+ #: facebook-button-plugin.php:402
171
  msgid "Custom Facebook image"
172
  msgstr "Пользовательская картинка Facebook"
173
 
174
+ #: facebook-button-plugin.php:405
175
  msgid ""
176
  "To use custom image you need to setup permissions to upload directory of "
177
  "your site"
179
  "Для использования кастомного изображения Вам нужно выдать права доступа на "
180
  "папку загрузок на вашем сайте"
181
 
182
+ #: facebook-button-plugin.php:412
183
  msgid "Current image"
184
  msgstr "Текущее изображение"
185
 
186
+ #: facebook-button-plugin.php:420
187
  msgid ""
188
  "Image properties: max image width:100px; max image height:40px; max image "
189
  "size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
191
  "Опции изображения для загрузки: максимальная ширина:100px; максимальная "
192
  "высота:40px; максимальный размер:32Kb; тип файла:\"jpg\", \"jpeg\", \"png\"."
193
 
194
+ #: facebook-button-plugin.php:424
195
  msgid "Button layout"
196
  msgstr "Вид кнопок"
197
 
198
+ #: facebook-button-plugin.php:438
199
  msgid "Like button action"
200
  msgstr "Действие кнопки \"Like\""
201
 
202
+ #: facebook-button-plugin.php:442
203
  msgid "Recommend"
204
  msgstr "Рекомендую"
205
 
206
+ #: facebook-button-plugin.php:447
207
  msgid "Show faces"
208
  msgstr "Показать лица"
209
 
210
+ #: facebook-button-plugin.php:453
211
  msgid "Layout width"
212
  msgstr "Ширина блока"
213
 
214
+ #: facebook-button-plugin.php:459
215
  msgid "Color scheme"
216
  msgstr "Цветовая схема"
217
 
218
+ #: facebook-button-plugin.php:462
219
  msgid "Light"
220
  msgstr "Светлая"
221
 
222
+ #: facebook-button-plugin.php:463
223
  msgid "Dark"
224
  msgstr "Тёмная"
225
 
226
+ #: facebook-button-plugin.php:468
227
  msgid "Html tag for \"Like\" button"
228
  msgstr "Html тэг для кнопки \"Нравиться\""
229
 
230
+ #: facebook-button-plugin.php:473
231
  msgid "Use this tag to improve validation of your site"
232
  msgstr "Используйте этот тэг для лучшей валидации вашего сайта"
233
 
234
+ #: facebook-button-plugin.php:482 facebook-button-plugin.php:519
235
  msgid "Close"
236
  msgstr "Закрыть"
237
 
238
+ #: facebook-button-plugin.php:486
239
  msgid "\"Like\" for an entire site on every page:"
240
  msgstr "Ставить \"Нравиться\" всему сайту на каждой странице:"
241
 
242
+ #: facebook-button-plugin.php:488
243
  msgid ""
244
  "Notice: \"Like for the entire site\" option does not create an extra button. "
245
  "This option merely allows your users to like the entire website when this "
251
  "ставить \"Нравиться\" для всего сайта, если эта опция включена, или "
252
  "\"Нравиться\" для отдельной записи, когда эта опция выключена."
253
 
254
+ #: facebook-button-plugin.php:493 facebook-button-plugin.php:571
255
  msgid "If you upgrade to Pro version all your settings will be saved."
256
  msgstr "При установке Pro версии плагина, все ваши настройки сохраняются."
257
 
258
+ #: facebook-button-plugin.php:500 facebook-button-plugin.php:528
259
+ #: facebook-button-plugin.php:578
260
  msgid "Unlock premium options by upgrading to Pro version"
261
  msgstr "Активируйте премиум опции обновившись до Pro версии"
262
 
263
+ #: facebook-button-plugin.php:502 facebook-button-plugin.php:530
264
+ #: facebook-button-plugin.php:580
265
  msgid "Learn More"
266
  msgstr "Подробнее"
267
 
268
+ #: facebook-button-plugin.php:510 facebook-button-plugin.php:566
269
  msgid "Save Changes"
270
  msgstr "Сохранить изменения"
271
 
272
+ #: facebook-button-plugin.php:522
273
  msgid "Facebook Button preview:"
274
  msgstr "Предварительный просмотр Facebook кнопок"
275
 
276
+ #: facebook-button-plugin.php:548
277
  msgid ""
278
  "Please choose the necessary post types (or single pages) where Facebook "
279
  "button will be displayed:"
281
  "Пожалуйста, выберите те типы постов (или отдельные страницы), где будут "
282
  "отображаться кнопки Facebook:"
283
 
284
+ #: facebook-button-plugin.php:555
285
  msgid "Show URL for pages"
286
  msgstr "Отображать URL для страниц"
287
 
288
+ #: facebook-button-plugin.php:561
289
  msgid "Example of the site's pages tree"
290
  msgstr "Пример дерева страниц сайта"
291
 
292
+ #: facebook-button-plugin.php:561
293
  msgid "Example of site pages' tree"
294
  msgstr "Пример дерева страниц сайта"
295
 
296
+ #: facebook-button-plugin.php:693
297
  msgid "Add Facebook buttons to your page or post"
298
  msgstr "Добавить Facebook кнопки на вашу страницу или пост"
299
 
300
+ #: facebook-button-plugin.php:802
301
  msgid "FAQ"
302
  msgstr "FAQ"
303
 
304
+ #: facebook-button-plugin.php:803
305
  msgid "Support"
306
  msgstr "Поддержка"
307
 
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: bestwebsoft
3
  Donate link: http://bestwebsoft.com/donate/
4
  Tags: add button, add social button, add fb button, add facebook social button, add social buttons, add facebook button, add share button, add fb share button, add facebook share button, batton, best facebook plugin, best fb like button, best facebook like button, buton, button, button image, Button like, button position, FB, fb button, fb like, fb like button, fb share, Facebook, Facebook account button, facebook button, facebook button icon, facebook button language, Facebook button like, Facebook button share, Facebook ID, facebook like, facebook like button, Facebook Page, facebook share, facebook share button, follow, folow, follow button, icon, Like, like, likes, like button, My Page button, nice fb like button, nice facebook button, nice fb button, simple fb plugin, simple facebook plugin, social plugin, social plugins, Share, share button, social, social account, social button, wp plugin, wp social plugin, wordpress social plugin
5
  Requires at least: 3.8
6
- Tested up to: 4.3.1
7
- Stable tag: 2.45
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -114,6 +114,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
114
 
115
  == Changelog ==
116
 
 
 
 
117
  = V2.45 - 05.11.2015 =
118
  * NEW : Hungarian language file is added.
119
 
@@ -301,6 +304,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
301
 
302
  == Upgrade Notice ==
303
 
 
 
 
304
  = V2.45 =
305
  Hungarian language file is added.
306
 
3
  Donate link: http://bestwebsoft.com/donate/
4
  Tags: add button, add social button, add fb button, add facebook social button, add social buttons, add facebook button, add share button, add fb share button, add facebook share button, batton, best facebook plugin, best fb like button, best facebook like button, buton, button, button image, Button like, button position, FB, fb button, fb like, fb like button, fb share, Facebook, Facebook account button, facebook button, facebook button icon, facebook button language, Facebook button like, Facebook button share, Facebook ID, facebook like, facebook like button, Facebook Page, facebook share, facebook share button, follow, folow, follow button, icon, Like, like, likes, like button, My Page button, nice fb like button, nice facebook button, nice fb button, simple fb plugin, simple facebook plugin, social plugin, social plugins, Share, share button, social, social account, social button, wp plugin, wp social plugin, wordpress social plugin
5
  Requires at least: 3.8
6
+ Tested up to: 4.4
7
+ Stable tag: 2.46
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
114
 
115
  == Changelog ==
116
 
117
+ = V2.46 - 30.11.2015 =
118
+ * Bugfix : The bug with plugin menu duplicating was fixed.
119
+
120
  = V2.45 - 05.11.2015 =
121
  * NEW : Hungarian language file is added.
122
 
304
 
305
  == Upgrade Notice ==
306
 
307
+ = V2.46 =
308
+ The bug with plugin menu duplicating was fixed.
309
+
310
  = V2.45 =
311
  Hungarian language file is added.
312