Facebook Button by BestWebSoft - Version 2.08

Version Description

  • 24.02.2012 =
  • NEW : Added Spanish language file for plugin.
  • Change : Code to include styles and scripts in a plug for the correct SSL verification
Download this release

Release Info

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

Code changes from version 2.07 to 2.08

css/style.css CHANGED
@@ -13,4 +13,21 @@
13
 
14
  #fb-root {
15
 
16
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
 
14
  #fb-root {
15
 
16
+ }
17
+
18
+ #adminmenu #toplevel_page_bws_plugins div.wp-menu-image
19
+ {
20
+ background: url("../images/icon_16.png") no-repeat scroll center center transparent;
21
+ }
22
+ #adminmenu #toplevel_page_bws_plugins:hover div.wp-menu-image, #adminmenu #toplevel_page_bws_plugins.wp-has-current-submenu div.wp-menu-image
23
+ {
24
+ background: url("../images/icon_16_c.png") no-repeat scroll center center transparent;
25
+ }
26
+ .wrap #icon-options-general.icon32-bws
27
+ {
28
+ background: url("../images/icon_36.png") no-repeat scroll left top transparent;
29
+ }
30
+ #toplevel_page_bws_plugins .wp-submenu .wp-first-item
31
+ {
32
+ display:none;
33
+ }
facebook-button-plugin.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Facebook Button Plugin
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: Put Facebook Button in to your post.
6
  Author: BestWebSoft
7
- Version: 2.07
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
@@ -29,10 +29,10 @@ if( ! function_exists( 'bws_add_menu_render' ) ) {
29
  function bws_add_menu_render() {
30
  global $title;
31
  $active_plugins = get_option('active_plugins');
32
- $all_plugins = get_plugins();
33
 
34
  $array_activate = array();
35
- $array_install = array();
36
  $array_recomend = array();
37
  $count_activate = $count_install = $count_recomend = 0;
38
  $array_plugins = array(
@@ -42,27 +42,24 @@ if( ! function_exists( 'bws_add_menu_render' ) ) {
42
  array( 'twitter-plugin\/twitter.php', 'Twitter Plugin', 'http://wordpress.org/extend/plugins/twitter-plugin/', 'http://bestwebsoft.com/plugin/twitter-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Twitter+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=twitter.php' ),
43
  array( 'portfolio\/portfolio.php', 'Portfolio', 'http://wordpress.org/extend/plugins/portfolio/', 'http://bestwebsoft.com/plugin/portfolio-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Portfolio+bestwebsoft&plugin-search-input=Search+Plugins', '' ),
44
  array( 'gallery-plugin\/gallery-plugin.php', 'Gallery', 'http://wordpress.org/extend/plugins/gallery-plugin/', 'http://bestwebsoft.com/plugin/gallery-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Gallery+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', '' ),
45
- array( 'adsense-plugin\/adsense-plugin.php', 'Google AdSense Plugin', 'http://wordpress.org/extend/plugins/adsense-plugin/', 'http://bestwebsoft.com/plugin/google-adsense-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Adsense+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=adsense-plugin.php' )
 
46
  );
47
- foreach($array_plugins as $plugins)
48
- {
49
- if( 0 < count( preg_grep( "/".$plugins[0]."/", $active_plugins ) ) )
50
- {
51
  $array_activate[$count_activate]['title'] = $plugins[1];
52
  $array_activate[$count_activate]['link'] = $plugins[2];
53
  $array_activate[$count_activate]['href'] = $plugins[3];
54
  $array_activate[$count_activate]['url'] = $plugins[5];
55
  $count_activate++;
56
  }
57
- else if( array_key_exists(str_replace("\\", "", $plugins[0]), $all_plugins) )
58
- {
59
  $array_install[$count_install]['title'] = $plugins[1];
60
  $array_install[$count_install]['link'] = $plugins[2];
61
  $array_install[$count_install]['href'] = $plugins[3];
62
  $count_install++;
63
  }
64
- else
65
- {
66
  $array_recomend[$count_recomend]['title'] = $plugins[1];
67
  $array_recomend[$count_recomend]['link'] = $plugins[2];
68
  $array_recomend[$count_recomend]['href'] = $plugins[3];
@@ -94,7 +91,7 @@ if( ! function_exists( 'bws_add_menu_render' ) ) {
94
  <div>
95
  <h3><?php _e( 'Recommended plugins', 'facebook' ); ?></h3>
96
  <?php foreach( $array_recomend as $recomend_plugin ) { ?>
97
- <div style="float:left; width:200px;"><?php echo $recomend_plugin['title']; ?></div> <p><a href="<?php echo $recomend_plugin['link']; ?>" target="_blank"><?php echo __( "Read more", 'facebook'); ?></a> <a href="<?php echo $recomend_plugin['href']; ?>" target="_blank"><?php echo __( "Download", 'facebook'); ?></a> <a class="install-now" href="<?php echo get_bloginfo( "url" ) . $recomend_plugin['slug']; ?>" title="<?php esc_attr( sprintf( __( 'Install %s' ), $recomend_plugin['title'] ) ) ?>"><?php echo __( 'Install now from wordpress.org', 'facebook' ) ?></a></p>
98
  <?php } ?>
99
  <span style="color: rgb(136, 136, 136); font-size: 10px;"><?php _e( 'If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site', 'facebook' ); ?> <a href="http://bestwebsoft.com/contact/">http://bestwebsoft.com/contact/</a></span>
100
  </div>
@@ -104,32 +101,6 @@ if( ! function_exists( 'bws_add_menu_render' ) ) {
104
  }
105
  }
106
 
107
- if( ! function_exists( 'bws_plugin_header' ) ) {
108
- function bws_plugin_header() {
109
- global $post_type;
110
- ?>
111
- <style>
112
- #adminmenu #toplevel_page_bws_plugins div.wp-menu-image
113
- {
114
- background: url("<?php echo get_bloginfo('url');?>/wp-content/plugins/facebook-button-plugin/img/icon_16.png") no-repeat scroll center center transparent;
115
- }
116
- #adminmenu #toplevel_page_bws_plugins:hover div.wp-menu-image,#adminmenu #toplevel_page_bws_plugins.wp-has-current-submenu div.wp-menu-image
117
- {
118
- background: url("<?php echo get_bloginfo('url');?>/wp-content/plugins/facebook-button-plugin/img/icon_16_c.png") no-repeat scroll center center transparent;
119
- }
120
- .wrap #icon-options-general.icon32-bws
121
- {
122
- background: url("<?php echo get_bloginfo('url');?>/wp-content/plugins/facebook-button-plugin/img/icon_36.png") no-repeat scroll left top transparent;
123
- }
124
- #toplevel_page_bws_plugins .wp-submenu .wp-first-item
125
- {
126
- display:none;
127
- }
128
- </style>
129
- <?php
130
- }
131
- }
132
-
133
  if( ! function_exists( 'fcbk_bttn_plgn_add_pages' ) ) {
134
  function fcbk_bttn_plgn_add_pages() {
135
  add_menu_page( 'BWS Plugins', 'BWS Plugins', 'manage_options', 'bws_plugins', 'bws_add_menu_render', plugins_url( "img/px.png", __FILE__ ), 1001);
@@ -335,12 +306,13 @@ if( ! function_exists( 'fcbk_bttn_plgn_update_option' ) ) {
335
  //Function 'facebook_button' taking from array 'fcbk_bttn_plgn_options_array' necessary information to create FaceBook Button and reacting to your choise in plugin menu - points where it appears.
336
  if( ! function_exists( 'fcbk_bttn_plgn_display_button' ) ) {
337
  function fcbk_bttn_plgn_display_button ( $content ) {
 
338
  //Query the database to receive array 'fcbk_bttn_plgn_options_array' and receiving necessary information to create button
339
  $fcbk_bttn_plgn_options_array = get_option ( 'fcbk_bttn_plgn_options_array' );
340
  $fcbk_bttn_plgn_where = $fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_where' ];
341
  $img = $fcbk_bttn_plgn_options_array [ 'fb_img_link' ];
342
  $url = $fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_link' ];
343
- $permalink_post = get_permalink ( $post_ID );
344
  //Button
345
  $button = '<div id="fcbk_share">
346
  <div class="fcbk_button">
@@ -439,15 +411,13 @@ if ( ! function_exists ( 'fcbk_admin_head' ) ) {
439
  //Add language files
440
  add_action( 'init', 'fcbk_plugin_init' );
441
 
442
- add_action( 'admin_head', 'bws_plugin_header');
443
-
444
  add_action( 'init', 'fcbk_admin_head' );
445
 
446
  // adds "Settings" link to the plugin action page
447
- add_filter( 'plugin_action_links', 'fcbk_bttn_plgn_action_links',10,2);
448
 
449
  //Additional links on the plugin page
450
- add_filter( 'plugin_row_meta', 'fcbk_bttn_plgn_links',10,2);
451
 
452
  //Calling a function add administrative menu.
453
  add_action( 'admin_menu', 'fcbk_bttn_plgn_add_pages' );
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: Put Facebook Button in to your post.
6
  Author: BestWebSoft
7
+ Version: 2.08
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
29
  function bws_add_menu_render() {
30
  global $title;
31
  $active_plugins = get_option('active_plugins');
32
+ $all_plugins = get_plugins();
33
 
34
  $array_activate = array();
35
+ $array_install = array();
36
  $array_recomend = array();
37
  $count_activate = $count_install = $count_recomend = 0;
38
  $array_plugins = array(
42
  array( 'twitter-plugin\/twitter.php', 'Twitter Plugin', 'http://wordpress.org/extend/plugins/twitter-plugin/', 'http://bestwebsoft.com/plugin/twitter-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Twitter+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=twitter.php' ),
43
  array( 'portfolio\/portfolio.php', 'Portfolio', 'http://wordpress.org/extend/plugins/portfolio/', 'http://bestwebsoft.com/plugin/portfolio-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Portfolio+bestwebsoft&plugin-search-input=Search+Plugins', '' ),
44
  array( 'gallery-plugin\/gallery-plugin.php', 'Gallery', 'http://wordpress.org/extend/plugins/gallery-plugin/', 'http://bestwebsoft.com/plugin/gallery-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Gallery+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', '' ),
45
+ array( 'adsense-plugin\/adsense-plugin.php', 'Google AdSense Plugin', 'http://wordpress.org/extend/plugins/adsense-plugin/', 'http://bestwebsoft.com/plugin/google-adsense-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Adsense+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=adsense-plugin.php' ),
46
+ array( 'custom-search-plugin\/custom-search-plugin.php', 'Custom Search Plugin', 'http://wordpress.org/extend/plugins/custom-search-plugin/', 'http://bestwebsoft.com/plugin/custom-search-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Custom+Search+plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=custom_search.php' )
47
  );
48
+ foreach($array_plugins as $plugins) {
49
+ if( 0 < count( preg_grep( "/".$plugins[0]."/", $active_plugins ) ) ) {
 
 
50
  $array_activate[$count_activate]['title'] = $plugins[1];
51
  $array_activate[$count_activate]['link'] = $plugins[2];
52
  $array_activate[$count_activate]['href'] = $plugins[3];
53
  $array_activate[$count_activate]['url'] = $plugins[5];
54
  $count_activate++;
55
  }
56
+ else if( array_key_exists(str_replace("\\", "", $plugins[0]), $all_plugins) ) {
 
57
  $array_install[$count_install]['title'] = $plugins[1];
58
  $array_install[$count_install]['link'] = $plugins[2];
59
  $array_install[$count_install]['href'] = $plugins[3];
60
  $count_install++;
61
  }
62
+ else {
 
63
  $array_recomend[$count_recomend]['title'] = $plugins[1];
64
  $array_recomend[$count_recomend]['link'] = $plugins[2];
65
  $array_recomend[$count_recomend]['href'] = $plugins[3];
91
  <div>
92
  <h3><?php _e( 'Recommended plugins', 'facebook' ); ?></h3>
93
  <?php foreach( $array_recomend as $recomend_plugin ) { ?>
94
+ <div style="float:left; width:200px;"><?php echo $recomend_plugin['title']; ?></div> <p><a href="<?php echo $recomend_plugin['link']; ?>" target="_blank"><?php echo __( "Read more", 'facebook'); ?></a> <a href="<?php echo $recomend_plugin['href']; ?>" target="_blank"><?php echo __( "Download", 'facebook'); ?></a> <a class="install-now" href="<?php echo get_bloginfo( "url" ) . $recomend_plugin['slug']; ?>" title="<?php esc_attr( sprintf( __( 'Install %s' ), $recomend_plugin['title'] ) ) ?>" target="_blank"><?php echo __( 'Install now from wordpress.org', 'facebook' ) ?></a></p>
95
  <?php } ?>
96
  <span style="color: rgb(136, 136, 136); font-size: 10px;"><?php _e( 'If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site', 'facebook' ); ?> <a href="http://bestwebsoft.com/contact/">http://bestwebsoft.com/contact/</a></span>
97
  </div>
101
  }
102
  }
103
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
104
  if( ! function_exists( 'fcbk_bttn_plgn_add_pages' ) ) {
105
  function fcbk_bttn_plgn_add_pages() {
106
  add_menu_page( 'BWS Plugins', 'BWS Plugins', 'manage_options', 'bws_plugins', 'bws_add_menu_render', plugins_url( "img/px.png", __FILE__ ), 1001);
306
  //Function 'facebook_button' taking from array 'fcbk_bttn_plgn_options_array' necessary information to create FaceBook Button and reacting to your choise in plugin menu - points where it appears.
307
  if( ! function_exists( 'fcbk_bttn_plgn_display_button' ) ) {
308
  function fcbk_bttn_plgn_display_button ( $content ) {
309
+ global $post;
310
  //Query the database to receive array 'fcbk_bttn_plgn_options_array' and receiving necessary information to create button
311
  $fcbk_bttn_plgn_options_array = get_option ( 'fcbk_bttn_plgn_options_array' );
312
  $fcbk_bttn_plgn_where = $fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_where' ];
313
  $img = $fcbk_bttn_plgn_options_array [ 'fb_img_link' ];
314
  $url = $fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_link' ];
315
+ $permalink_post = get_permalink ( $post->ID );
316
  //Button
317
  $button = '<div id="fcbk_share">
318
  <div class="fcbk_button">
411
  //Add language files
412
  add_action( 'init', 'fcbk_plugin_init' );
413
 
 
 
414
  add_action( 'init', 'fcbk_admin_head' );
415
 
416
  // adds "Settings" link to the plugin action page
417
+ add_filter( 'plugin_action_links', 'fcbk_bttn_plgn_action_links', 10, 2 );
418
 
419
  //Additional links on the plugin page
420
+ add_filter( 'plugin_row_meta', 'fcbk_bttn_plgn_links', 10, 2 );
421
 
422
  //Calling a function add administrative menu.
423
  add_action( 'admin_menu', 'fcbk_bttn_plgn_add_pages' );
languages/facebook-es_ES.mo ADDED
Binary file
languages/facebook-es_ES.po ADDED
@@ -0,0 +1,161 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: facebook\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-02-24 16:09+0200\n"
6
+ "PO-Revision-Date: 2012-02-24 16:09+0200\n"
7
+ "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
+ "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: __;_e\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "X-Poedit-Language: Spanish\n"
15
+ "X-Poedit-Country: SPAIN\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: facebook-button-plugin.php:76
20
+ msgid "Activated plugins"
21
+ msgstr "Plugins activados"
22
+
23
+ #: facebook-button-plugin.php:78
24
+ #: facebook-button-plugin.php:86
25
+ #: facebook-button-plugin.php:94
26
+ msgid "Read more"
27
+ msgstr "Leer mas"
28
+
29
+ #: facebook-button-plugin.php:78
30
+ #: facebook-button-plugin.php:375
31
+ #: facebook-button-plugin.php:387
32
+ msgid "Settings"
33
+ msgstr "Opciones"
34
+
35
+ #: facebook-button-plugin.php:84
36
+ msgid "Installed plugins"
37
+ msgstr "Plugins instalados"
38
+
39
+ #: facebook-button-plugin.php:92
40
+ msgid "Recommended plugins"
41
+ msgstr "Plugins recomendados"
42
+
43
+ #: facebook-button-plugin.php:94
44
+ msgid "Download"
45
+ msgstr "Descargar"
46
+
47
+ #: facebook-button-plugin.php:94
48
+ #, php-format
49
+ msgid "Install %s"
50
+ msgstr "Instalar %s"
51
+
52
+ #: facebook-button-plugin.php:94
53
+ msgid "Install now from wordpress.org"
54
+ msgstr "Instalar ahora desde wordpress.org"
55
+
56
+ #: facebook-button-plugin.php:96
57
+ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
58
+ msgstr "Si tiene alguna pregunta, por favor contacte con nosotros via plugin@bestwebsoft.com o rellenando el formulariod e contacto de nuestra web"
59
+
60
+ #: facebook-button-plugin.php:107
61
+ #: facebook-button-plugin.php:215
62
+ msgid "FaceBook Button Options"
63
+ msgstr "Opciones del botón de Facebook"
64
+
65
+ #: facebook-button-plugin.php:107
66
+ msgid "FaceBook Button"
67
+ msgstr "Botón FaceBook"
68
+
69
+ #: facebook-button-plugin.php:155
70
+ msgid "Options saved."
71
+ msgstr "Opciones guardadas"
72
+
73
+ #: facebook-button-plugin.php:178
74
+ msgid "Error: File size > 32K"
75
+ msgstr "Error: Archivo > 32К"
76
+
77
+ #: facebook-button-plugin.php:181
78
+ msgid "Error: Invalid file type"
79
+ msgstr "error: Tipo de archivo no válido"
80
+
81
+ #: facebook-button-plugin.php:191
82
+ msgid "Error: moving file failed"
83
+ msgstr "Error: Fallo moviendo el archivo"
84
+
85
+ #: facebook-button-plugin.php:195
86
+ msgid "Error: check image width or height"
87
+ msgstr "Error: Revisa el alto o ancho de la imagen"
88
+
89
+ #: facebook-button-plugin.php:200
90
+ msgid "Uploading Error: check image properties"
91
+ msgstr "Error de subida: Revisa las propiedades de la imagen"
92
+
93
+ #: facebook-button-plugin.php:222
94
+ msgid "Your's FaceBook Id:"
95
+ msgstr "Su FaceBook Id:"
96
+
97
+ #: facebook-button-plugin.php:229
98
+ msgid "Choose display option:"
99
+ msgstr "Seleccione opciones de visualización:"
100
+
101
+ #: facebook-button-plugin.php:233
102
+ msgid "Standart FaceBook image"
103
+ msgstr "Imagen estandar de FaceBook"
104
+
105
+ #: facebook-button-plugin.php:234
106
+ msgid "Custom FaceBook image"
107
+ msgstr "Imagen personalizada de FaceBook"
108
+
109
+ #: facebook-button-plugin.php:240
110
+ msgid "Current image:"
111
+ msgstr "Imagen actual:"
112
+
113
+ #: facebook-button-plugin.php:253
114
+ msgid "FaceBook image:"
115
+ msgstr "Imagen de FaceBook:"
116
+
117
+ #: facebook-button-plugin.php:257
118
+ msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\"."
119
+ msgstr "Propiedades de la imagen: Ancho máx.: 100px; Alto máx.: 40px; Tamaño máx: 32Kb; Tipo de imagen: \"jpg\", \"jpeg\"."
120
+
121
+ #: facebook-button-plugin.php:265
122
+ msgid "FaceBook Button Position:"
123
+ msgstr "Posición del botón Facebook:"
124
+
125
+ #: facebook-button-plugin.php:269
126
+ msgid "Before"
127
+ msgstr "Antes"
128
+
129
+ #: facebook-button-plugin.php:270
130
+ msgid "After"
131
+ msgstr "Después"
132
+
133
+ #: facebook-button-plugin.php:271
134
+ msgid "Before and After"
135
+ msgstr "Antes y después"
136
+
137
+ #: facebook-button-plugin.php:272
138
+ msgid "Shortcode"
139
+ msgstr "Shortcode"
140
+
141
+ #: facebook-button-plugin.php:274
142
+ msgid "If you would like to add a FaceBook button to your website, just copy and put this shortcode onto your post or page:"
143
+ msgstr "Si desea agregar un botón de Facebook para su sitio web, sólo tiene que copiar y pegar el código en su web o la página:"
144
+
145
+ #: facebook-button-plugin.php:280
146
+ msgid "Save Changes"
147
+ msgstr ""
148
+
149
+ #: facebook-button-plugin.php:388
150
+ msgid "FAQ"
151
+ msgstr "FAQ"
152
+
153
+ #: facebook-button-plugin.php:389
154
+ msgid "Support"
155
+ msgstr "Soporte"
156
+
157
+ #~ msgid "Install Now"
158
+ #~ msgstr "Установить сейчас"
159
+
160
+ #~ msgid "BWS Plugins"
161
+ #~ msgstr "Плагины BWS"
languages/facebook-ru_RU.mo CHANGED
Binary file
languages/facebook-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: facebook\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-01-02 16:14+0200\n"
6
- "PO-Revision-Date: 2012-01-02 16:19+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,141 +16,141 @@ msgstr ""
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: facebook-button-plugin.php:79
20
  msgid "Activated plugins"
21
  msgstr "Активированные плагины"
22
 
23
- #: facebook-button-plugin.php:81
24
- #: facebook-button-plugin.php:89
25
- #: facebook-button-plugin.php:97
26
  msgid "Read more"
27
  msgstr "Подробнее..."
28
 
29
- #: facebook-button-plugin.php:81
30
- #: facebook-button-plugin.php:404
31
- #: facebook-button-plugin.php:416
32
  msgid "Settings"
33
  msgstr "Настройки"
34
 
35
- #: facebook-button-plugin.php:87
36
  msgid "Installed plugins"
37
  msgstr "Установленные плагины"
38
 
39
- #: facebook-button-plugin.php:95
40
  msgid "Recommended plugins"
41
  msgstr "Рекомендованные к установке плагины"
42
 
43
- #: facebook-button-plugin.php:97
44
  msgid "Download"
45
  msgstr "Скачать"
46
 
47
- #: facebook-button-plugin.php:97
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Установлено %s"
51
 
52
- #: facebook-button-plugin.php:97
53
  msgid "Install now from wordpress.org"
54
  msgstr "Установить с wordpress.org"
55
 
56
- #: facebook-button-plugin.php:99
57
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
58
  msgstr "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или заполните контактную форму на нашем сайте"
59
 
60
- #: facebook-button-plugin.php:136
61
- #: facebook-button-plugin.php:244
62
  msgid "FaceBook Button Options"
63
  msgstr "Настройки FaceBook Кнопки"
64
 
65
- #: facebook-button-plugin.php:136
66
  msgid "FaceBook Button"
67
  msgstr "FaceBook кнопка"
68
 
69
- #: facebook-button-plugin.php:184
70
  msgid "Options saved."
71
  msgstr "Опции сохранены"
72
 
73
- #: facebook-button-plugin.php:207
74
  msgid "Error: File size > 32K"
75
  msgstr "Ошибка: Размер файла больше 32К"
76
 
77
- #: facebook-button-plugin.php:210
78
  msgid "Error: Invalid file type"
79
  msgstr "Ошибка: Некорректный тип файла"
80
 
81
- #: facebook-button-plugin.php:220
82
  msgid "Error: moving file failed"
83
  msgstr "Ошибка: При перемещении произошла ошибка"
84
 
85
- #: facebook-button-plugin.php:224
86
  msgid "Error: check image width or height"
87
  msgstr "Ошибка: Проверьте ширину и высоту изображения"
88
 
89
- #: facebook-button-plugin.php:229
90
  msgid "Uploading Error: check image properties"
91
  msgstr "Ошибка загрузки: Проверьте опции изображения"
92
 
93
- #: facebook-button-plugin.php:251
94
  msgid "Your's FaceBook Id:"
95
  msgstr "Ваш FaceBook Id:"
96
 
97
- #: facebook-button-plugin.php:258
98
  msgid "Choose display option:"
99
  msgstr "Выбор опций отображения:"
100
 
101
- #: facebook-button-plugin.php:262
102
  msgid "Standart FaceBook image"
103
  msgstr "Стандартная картинка FaceBook"
104
 
105
- #: facebook-button-plugin.php:263
106
  msgid "Custom FaceBook image"
107
  msgstr "Пользовательская картинка FaceBook"
108
 
109
- #: facebook-button-plugin.php:269
110
  msgid "Current image:"
111
  msgstr "Текущее изображение:"
112
 
113
- #: facebook-button-plugin.php:282
114
  msgid "FaceBook image:"
115
  msgstr "FaceBook изображение:"
116
 
117
- #: facebook-button-plugin.php:286
118
  msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\"."
119
  msgstr "Опции изображения для загрузки: максимальная ширина:100px; максимальная высота:40px; максимальный размер:32Kb; тип файла:\"jpg\", \"jpeg\"."
120
 
121
- #: facebook-button-plugin.php:294
122
  msgid "FaceBook Button Position:"
123
  msgstr "Позиции FaceBook кнопки:"
124
 
125
- #: facebook-button-plugin.php:298
126
  msgid "Before"
127
  msgstr "Перед"
128
 
129
- #: facebook-button-plugin.php:299
130
  msgid "After"
131
  msgstr "После"
132
 
133
- #: facebook-button-plugin.php:300
134
  msgid "Before and After"
135
  msgstr "Перед и после"
136
 
137
- #: facebook-button-plugin.php:301
138
  msgid "Shortcode"
139
  msgstr "Шорткод"
140
 
141
- #: facebook-button-plugin.php:303
142
  msgid "If you would like to add a FaceBook button to your website, just copy and put this shortcode onto your post or page:"
143
  msgstr "Если вы хотите добавить FaceBook кнопку на свой сайт, вам надо только скопировать и вставить шорткод в контент страницы или поста"
144
 
145
- #: facebook-button-plugin.php:309
146
  msgid "Save Changes"
147
  msgstr ""
148
 
149
- #: facebook-button-plugin.php:417
150
  msgid "FAQ"
151
  msgstr "FAQ"
152
 
153
- #: facebook-button-plugin.php:418
154
  msgid "Support"
155
  msgstr "Поддержка"
156
 
2
  msgstr ""
3
  "Project-Id-Version: facebook\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-02-24 16:02+0200\n"
6
+ "PO-Revision-Date: 2012-02-24 16:02+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: facebook-button-plugin.php:76
20
  msgid "Activated plugins"
21
  msgstr "Активированные плагины"
22
 
23
+ #: facebook-button-plugin.php:78
24
+ #: facebook-button-plugin.php:86
25
+ #: facebook-button-plugin.php:94
26
  msgid "Read more"
27
  msgstr "Подробнее..."
28
 
29
+ #: facebook-button-plugin.php:78
30
+ #: facebook-button-plugin.php:375
31
+ #: facebook-button-plugin.php:387
32
  msgid "Settings"
33
  msgstr "Настройки"
34
 
35
+ #: facebook-button-plugin.php:84
36
  msgid "Installed plugins"
37
  msgstr "Установленные плагины"
38
 
39
+ #: facebook-button-plugin.php:92
40
  msgid "Recommended plugins"
41
  msgstr "Рекомендованные к установке плагины"
42
 
43
+ #: facebook-button-plugin.php:94
44
  msgid "Download"
45
  msgstr "Скачать"
46
 
47
+ #: facebook-button-plugin.php:94
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Установлено %s"
51
 
52
+ #: facebook-button-plugin.php:94
53
  msgid "Install now from wordpress.org"
54
  msgstr "Установить с wordpress.org"
55
 
56
+ #: facebook-button-plugin.php:96
57
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
58
  msgstr "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или заполните контактную форму на нашем сайте"
59
 
60
+ #: facebook-button-plugin.php:107
61
+ #: facebook-button-plugin.php:215
62
  msgid "FaceBook Button Options"
63
  msgstr "Настройки FaceBook Кнопки"
64
 
65
+ #: facebook-button-plugin.php:107
66
  msgid "FaceBook Button"
67
  msgstr "FaceBook кнопка"
68
 
69
+ #: facebook-button-plugin.php:155
70
  msgid "Options saved."
71
  msgstr "Опции сохранены"
72
 
73
+ #: facebook-button-plugin.php:178
74
  msgid "Error: File size > 32K"
75
  msgstr "Ошибка: Размер файла больше 32К"
76
 
77
+ #: facebook-button-plugin.php:181
78
  msgid "Error: Invalid file type"
79
  msgstr "Ошибка: Некорректный тип файла"
80
 
81
+ #: facebook-button-plugin.php:191
82
  msgid "Error: moving file failed"
83
  msgstr "Ошибка: При перемещении произошла ошибка"
84
 
85
+ #: facebook-button-plugin.php:195
86
  msgid "Error: check image width or height"
87
  msgstr "Ошибка: Проверьте ширину и высоту изображения"
88
 
89
+ #: facebook-button-plugin.php:200
90
  msgid "Uploading Error: check image properties"
91
  msgstr "Ошибка загрузки: Проверьте опции изображения"
92
 
93
+ #: facebook-button-plugin.php:222
94
  msgid "Your's FaceBook Id:"
95
  msgstr "Ваш FaceBook Id:"
96
 
97
+ #: facebook-button-plugin.php:229
98
  msgid "Choose display option:"
99
  msgstr "Выбор опций отображения:"
100
 
101
+ #: facebook-button-plugin.php:233
102
  msgid "Standart FaceBook image"
103
  msgstr "Стандартная картинка FaceBook"
104
 
105
+ #: facebook-button-plugin.php:234
106
  msgid "Custom FaceBook image"
107
  msgstr "Пользовательская картинка FaceBook"
108
 
109
+ #: facebook-button-plugin.php:240
110
  msgid "Current image:"
111
  msgstr "Текущее изображение:"
112
 
113
+ #: facebook-button-plugin.php:253
114
  msgid "FaceBook image:"
115
  msgstr "FaceBook изображение:"
116
 
117
+ #: facebook-button-plugin.php:257
118
  msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\"."
119
  msgstr "Опции изображения для загрузки: максимальная ширина:100px; максимальная высота:40px; максимальный размер:32Kb; тип файла:\"jpg\", \"jpeg\"."
120
 
121
+ #: facebook-button-plugin.php:265
122
  msgid "FaceBook Button Position:"
123
  msgstr "Позиции FaceBook кнопки:"
124
 
125
+ #: facebook-button-plugin.php:269
126
  msgid "Before"
127
  msgstr "Перед"
128
 
129
+ #: facebook-button-plugin.php:270
130
  msgid "After"
131
  msgstr "После"
132
 
133
+ #: facebook-button-plugin.php:271
134
  msgid "Before and After"
135
  msgstr "Перед и после"
136
 
137
+ #: facebook-button-plugin.php:272
138
  msgid "Shortcode"
139
  msgstr "Шорткод"
140
 
141
+ #: facebook-button-plugin.php:274
142
  msgid "If you would like to add a FaceBook button to your website, just copy and put this shortcode onto your post or page:"
143
  msgstr "Если вы хотите добавить FaceBook кнопку на свой сайт, вам надо только скопировать и вставить шорткод в контент страницы или поста"
144
 
145
+ #: facebook-button-plugin.php:280
146
  msgid "Save Changes"
147
  msgstr ""
148
 
149
+ #: facebook-button-plugin.php:388
150
  msgid "FAQ"
151
  msgstr "FAQ"
152
 
153
+ #: facebook-button-plugin.php:389
154
  msgid "Support"
155
  msgstr "Поддержка"
156
 
readme.txt CHANGED
@@ -1,11 +1,10 @@
1
  === Facebook Like Button Plugin ===
2
  Contributors: bestwebsoft
3
- Contributors: bestwebsoft
4
- Donate link: http://bestwebsoft.com/
5
  Tags: Facebook, Facebook Button, Like, Like button, Share, Share button, Facebook like, Facebook like button, Facebook button like, Button like, Facebook share, Facebook share button, Facebook button share
6
  Requires at least: 2.9
7
  Tested up to: 3.3
8
- Stable tag: 2.07
9
 
10
  Add Facebook button to your WordPress website
11
 
@@ -26,6 +25,7 @@ Facebook Button Plugin allows you to add follow button in the most easiest and f
26
  = Translate =
27
 
28
  * Russian (ru_RU)
 
29
 
30
  == Installation ==
31
 
@@ -72,6 +72,10 @@ Facebook Button Plugin allows you to add follow button in the most easiest and f
72
 
73
  == Changelog ==
74
 
 
 
 
 
75
  = V2.07 - 02.01.2012 =
76
  * Changed : BWS plugins section.
77
 
@@ -102,7 +106,10 @@ Facebook Button Plugin allows you to add follow button in the most easiest and f
102
 
103
  == Upgrade Notice ==
104
 
105
- = V2.07 - 02.01.2012 =
 
 
 
106
  BWS plugins section was changes.
107
 
108
  = V2.06 =
1
  === Facebook Like Button Plugin ===
2
  Contributors: bestwebsoft
3
+ Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=1&product_id=13
 
4
  Tags: Facebook, Facebook Button, Like, Like button, Share, Share button, Facebook like, Facebook like button, Facebook button like, Button like, Facebook share, Facebook share button, Facebook button share
5
  Requires at least: 2.9
6
  Tested up to: 3.3
7
+ Stable tag: 2.08
8
 
9
  Add Facebook button to your WordPress website
10
 
25
  = Translate =
26
 
27
  * Russian (ru_RU)
28
+ * Spanish (es_ES) (thanks Jesús Parra)
29
 
30
  == Installation ==
31
 
72
 
73
  == Changelog ==
74
 
75
+ = V2.08 - 24.02.2012 =
76
+ * NEW : Added Spanish language file for plugin.
77
+ * Change : Code to include styles and scripts in a plug for the correct SSL verification
78
+
79
  = V2.07 - 02.01.2012 =
80
  * Changed : BWS plugins section.
81
 
106
 
107
  == Upgrade Notice ==
108
 
109
+ = V2.08 =
110
+ Added Spanish language file for plugin. Changed code to include styles and scripts in a plug for the correct SSL verification.
111
+
112
+ = V2.07 =
113
  BWS plugins section was changes.
114
 
115
  = V2.06 =