Version Description
- 02.01.2012 =
- Changed : BWS plugins section.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Facebook Button by BestWebSoft |
Version | 2.07 |
Comparing to | |
See all releases |
Code changes from version 2011.2.06 to 2.07
- facebook-button-plugin.php +21 -20
- languages/facebook-ru_RU.mo +0 -0
- languages/facebook-ru_RU.po +51 -49
- readme.txt +44 -20
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.
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
@@ -35,37 +35,38 @@ if( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
35 |
$array_install = array();
|
36 |
$array_recomend = array();
|
37 |
$count_activate = $count_install = $count_recomend = 0;
|
38 |
-
$array_plugins
|
39 |
-
array( 'captcha\/captcha.php', 'Captcha', 'http://wordpress.org/extend/plugins/captcha/', 'http://bestwebsoft.com/plugin/captcha-plugin/', '/wp-admin/
|
40 |
-
array( 'contact-form-plugin\/contact_form.php', 'Contact Form', 'http://wordpress.org/extend/plugins/contact-form-plugin/', 'http://bestwebsoft.com/plugin/contact-form/', '/wp-admin/
|
41 |
-
array( 'facebook-button-plugin\/facebook-button-plugin.php', 'Facebook Like Button Plugin', 'http://wordpress.org/extend/plugins/facebook-button-plugin/', 'http://bestwebsoft.com/plugin/facebook-like-button-plugin/', '/wp-admin/
|
42 |
-
array( 'twitter-plugin\/twitter.php', 'Twitter Plugin', 'http://wordpress.org/extend/plugins/twitter-plugin/', 'http://bestwebsoft.com/plugin/twitter-plugin/', '/wp-admin/
|
43 |
-
array( 'portfolio\/portfolio.php', 'Portfolio', 'http://wordpress.org/extend/plugins/portfolio/', 'http://bestwebsoft.com/plugin/portfolio-plugin/', '/wp-admin/
|
44 |
-
array( 'gallery-plugin\/gallery-plugin.php', 'Gallery', 'http://wordpress.org/extend/plugins/gallery-plugin/', 'http://bestwebsoft.com/plugin/gallery-plugin/', '/wp-admin/
|
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/
|
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']
|
53 |
-
$array_activate[$count_activate]['href']
|
|
|
54 |
$count_activate++;
|
55 |
}
|
56 |
else if( array_key_exists(str_replace("\\", "", $plugins[0]), $all_plugins) )
|
57 |
{
|
58 |
$array_install[$count_install]['title'] = $plugins[1];
|
59 |
-
$array_install[$count_install]['link']
|
60 |
-
$array_install[$count_install]['href']
|
61 |
$count_install++;
|
62 |
}
|
63 |
else
|
64 |
{
|
65 |
$array_recomend[$count_recomend]['title'] = $plugins[1];
|
66 |
-
$array_recomend[$count_recomend]['link']
|
67 |
-
$array_recomend[$count_recomend]['href']
|
68 |
-
$array_recomend[$count_recomend]['slug']
|
69 |
$count_recomend++;
|
70 |
}
|
71 |
}
|
@@ -77,7 +78,7 @@ if( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
77 |
<div>
|
78 |
<h3><?php _e( 'Activated plugins', 'facebook' ); ?></h3>
|
79 |
<?php foreach( $array_activate as $activate_plugin ) { ?>
|
80 |
-
<div style="float:left; width:200px;"><?php echo $activate_plugin['title']; ?></div> <p><a href="<?php echo $activate_plugin['link']; ?>"><?php echo __( "Read more", 'facebook'); ?></a></p>
|
81 |
<?php } ?>
|
82 |
</div>
|
83 |
<?php } ?>
|
@@ -85,7 +86,7 @@ if( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
85 |
<div>
|
86 |
<h3><?php _e( 'Installed plugins', 'facebook' ); ?></h3>
|
87 |
<?php foreach($array_install as $install_plugin) { ?>
|
88 |
-
<div style="float:left; width:200px;"><?php echo $install_plugin['title']; ?></div> <p><a href="<?php echo $install_plugin['link']; ?>"><?php echo __( "Read more", 'facebook'); ?></a></p>
|
89 |
<?php } ?>
|
90 |
</div>
|
91 |
<?php } ?>
|
@@ -93,7 +94,7 @@ if( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
93 |
<div>
|
94 |
<h3><?php _e( 'Recommended plugins', 'facebook' ); ?></h3>
|
95 |
<?php foreach( $array_recomend as $recomend_plugin ) { ?>
|
96 |
-
<div style="float:left; width:200px;"><?php echo $recomend_plugin['title']; ?></div> <p><a href="<?php echo $recomend_plugin['link']; ?>"><?php echo __( "Read more", 'facebook'); ?></a> <a href="<?php echo $recomend_plugin['href']; ?>"><?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
|
97 |
<?php } ?>
|
98 |
<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>
|
99 |
</div>
|
@@ -131,7 +132,7 @@ if( ! function_exists( 'bws_plugin_header' ) ) {
|
|
131 |
|
132 |
if( ! function_exists( 'fcbk_bttn_plgn_add_pages' ) ) {
|
133 |
function fcbk_bttn_plgn_add_pages() {
|
134 |
-
add_menu_page(
|
135 |
add_submenu_page( 'bws_plugins', __( 'FaceBook Button Options', 'facebook' ), __( 'FaceBook Button', 'facebook' ), 'manage_options', "facebook-button-plugin.php", 'fcbk_bttn_plgn_settings_page');
|
136 |
|
137 |
//call register settings function
|
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 |
*/
|
35 |
$array_install = array();
|
36 |
$array_recomend = array();
|
37 |
$count_activate = $count_install = $count_recomend = 0;
|
38 |
+
$array_plugins = array(
|
39 |
+
array( 'captcha\/captcha.php', 'Captcha', 'http://wordpress.org/extend/plugins/captcha/', 'http://bestwebsoft.com/plugin/captcha-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Captcha+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=captcha.php' ),
|
40 |
+
array( 'contact-form-plugin\/contact_form.php', 'Contact Form', 'http://wordpress.org/extend/plugins/contact-form-plugin/', 'http://bestwebsoft.com/plugin/contact-form/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Contact+Form+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=contact_form.php' ),
|
41 |
+
array( 'facebook-button-plugin\/facebook-button-plugin.php', 'Facebook Like Button Plugin', 'http://wordpress.org/extend/plugins/facebook-button-plugin/', 'http://bestwebsoft.com/plugin/facebook-like-button-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Facebook+Like+Button+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=facebook-button-plugin.php' ),
|
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];
|
69 |
+
$array_recomend[$count_recomend]['slug'] = $plugins[4];
|
70 |
$count_recomend++;
|
71 |
}
|
72 |
}
|
78 |
<div>
|
79 |
<h3><?php _e( 'Activated plugins', 'facebook' ); ?></h3>
|
80 |
<?php foreach( $array_activate as $activate_plugin ) { ?>
|
81 |
+
<div style="float:left; width:200px;"><?php echo $activate_plugin['title']; ?></div> <p><a href="<?php echo $activate_plugin['link']; ?>" target="_blank"><?php echo __( "Read more", 'facebook'); ?></a> <a href="<?php echo $activate_plugin['url']; ?>"><?php echo __( "Settings", 'facebook'); ?></a></p>
|
82 |
<?php } ?>
|
83 |
</div>
|
84 |
<?php } ?>
|
86 |
<div>
|
87 |
<h3><?php _e( 'Installed plugins', 'facebook' ); ?></h3>
|
88 |
<?php foreach($array_install as $install_plugin) { ?>
|
89 |
+
<div style="float:left; width:200px;"><?php echo $install_plugin['title']; ?></div> <p><a href="<?php echo $install_plugin['link']; ?>" target="_blank"><?php echo __( "Read more", 'facebook'); ?></a></p>
|
90 |
<?php } ?>
|
91 |
</div>
|
92 |
<?php } ?>
|
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>
|
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);
|
136 |
add_submenu_page( 'bws_plugins', __( 'FaceBook Button Options', 'facebook' ), __( 'FaceBook Button', 'facebook' ), 'manage_options', "facebook-button-plugin.php", 'fcbk_bttn_plgn_settings_page');
|
137 |
|
138 |
//call register settings function
|
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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,144 +16,146 @@ msgstr ""
|
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: facebook-button-plugin.php:
|
20 |
msgid "Activated plugins"
|
21 |
msgstr "Активированные плагины"
|
22 |
|
23 |
-
#: facebook-button-plugin.php:
|
24 |
-
#: facebook-button-plugin.php:
|
25 |
-
#: facebook-button-plugin.php:
|
26 |
msgid "Read more"
|
27 |
-
msgstr "
|
28 |
|
29 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
msgid "Installed plugins"
|
31 |
msgstr "Установленные плагины"
|
32 |
|
33 |
-
#: facebook-button-plugin.php:
|
34 |
msgid "Recommended plugins"
|
35 |
msgstr "Рекомендованные к установке плагины"
|
36 |
|
37 |
-
#: facebook-button-plugin.php:
|
38 |
msgid "Download"
|
39 |
msgstr "Скачать"
|
40 |
|
41 |
-
#: facebook-button-plugin.php:
|
42 |
#, php-format
|
43 |
msgid "Install %s"
|
44 |
msgstr "Установлено %s"
|
45 |
|
46 |
-
#: facebook-button-plugin.php:
|
47 |
-
msgid "Install
|
48 |
-
msgstr "Установить
|
49 |
|
50 |
-
#: facebook-button-plugin.php:
|
51 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
52 |
msgstr "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или заполните контактную форму на нашем сайте"
|
53 |
|
54 |
-
#: facebook-button-plugin.php:
|
55 |
-
|
56 |
-
msgstr "Плагины BWS"
|
57 |
-
|
58 |
-
#: facebook-button-plugin.php:135
|
59 |
-
#: facebook-button-plugin.php:243
|
60 |
msgid "FaceBook Button Options"
|
61 |
msgstr "Настройки FaceBook Кнопки"
|
62 |
|
63 |
-
#: facebook-button-plugin.php:
|
64 |
msgid "FaceBook Button"
|
65 |
msgstr "FaceBook кнопка"
|
66 |
|
67 |
-
#: facebook-button-plugin.php:
|
68 |
msgid "Options saved."
|
69 |
msgstr "Опции сохранены"
|
70 |
|
71 |
-
#: facebook-button-plugin.php:
|
72 |
msgid "Error: File size > 32K"
|
73 |
msgstr "Ошибка: Размер файла больше 32К"
|
74 |
|
75 |
-
#: facebook-button-plugin.php:
|
76 |
msgid "Error: Invalid file type"
|
77 |
msgstr "Ошибка: Некорректный тип файла"
|
78 |
|
79 |
-
#: facebook-button-plugin.php:
|
80 |
msgid "Error: moving file failed"
|
81 |
msgstr "Ошибка: При перемещении произошла ошибка"
|
82 |
|
83 |
-
#: facebook-button-plugin.php:
|
84 |
msgid "Error: check image width or height"
|
85 |
msgstr "Ошибка: Проверьте ширину и высоту изображения"
|
86 |
|
87 |
-
#: facebook-button-plugin.php:
|
88 |
msgid "Uploading Error: check image properties"
|
89 |
msgstr "Ошибка загрузки: Проверьте опции изображения"
|
90 |
|
91 |
-
#: facebook-button-plugin.php:
|
92 |
msgid "Your's FaceBook Id:"
|
93 |
msgstr "Ваш FaceBook Id:"
|
94 |
|
95 |
-
#: facebook-button-plugin.php:
|
96 |
msgid "Choose display option:"
|
97 |
msgstr "Выбор опций отображения:"
|
98 |
|
99 |
-
#: facebook-button-plugin.php:
|
100 |
msgid "Standart FaceBook image"
|
101 |
msgstr "Стандартная картинка FaceBook"
|
102 |
|
103 |
-
#: facebook-button-plugin.php:
|
104 |
msgid "Custom FaceBook image"
|
105 |
msgstr "Пользовательская картинка FaceBook"
|
106 |
|
107 |
-
#: facebook-button-plugin.php:
|
108 |
msgid "Current image:"
|
109 |
msgstr "Текущее изображение:"
|
110 |
|
111 |
-
#: facebook-button-plugin.php:
|
112 |
msgid "FaceBook image:"
|
113 |
msgstr "FaceBook изображение:"
|
114 |
|
115 |
-
#: facebook-button-plugin.php:
|
116 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\"."
|
117 |
msgstr "Опции изображения для загрузки: максимальная ширина:100px; максимальная высота:40px; максимальный размер:32Kb; тип файла:\"jpg\", \"jpeg\"."
|
118 |
|
119 |
-
#: facebook-button-plugin.php:
|
120 |
msgid "FaceBook Button Position:"
|
121 |
msgstr "Позиции FaceBook кнопки:"
|
122 |
|
123 |
-
#: facebook-button-plugin.php:
|
124 |
msgid "Before"
|
125 |
msgstr "Перед"
|
126 |
|
127 |
-
#: facebook-button-plugin.php:
|
128 |
msgid "After"
|
129 |
msgstr "После"
|
130 |
|
131 |
-
#: facebook-button-plugin.php:
|
132 |
msgid "Before and After"
|
133 |
msgstr "Перед и после"
|
134 |
|
135 |
-
#: facebook-button-plugin.php:
|
136 |
msgid "Shortcode"
|
137 |
msgstr "Шорткод"
|
138 |
|
139 |
-
#: facebook-button-plugin.php:
|
140 |
msgid "If you would like to add a FaceBook button to your website, just copy and put this shortcode onto your post or page:"
|
141 |
msgstr "Если вы хотите добавить FaceBook кнопку на свой сайт, вам надо только скопировать и вставить шорткод в контент страницы или поста"
|
142 |
|
143 |
-
#: facebook-button-plugin.php:
|
144 |
msgid "Save Changes"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: facebook-button-plugin.php:
|
148 |
-
#: facebook-button-plugin.php:415
|
149 |
-
msgid "Settings"
|
150 |
-
msgstr "Настройки"
|
151 |
-
|
152 |
-
#: facebook-button-plugin.php:416
|
153 |
msgid "FAQ"
|
154 |
msgstr "FAQ"
|
155 |
|
156 |
-
#: facebook-button-plugin.php:
|
157 |
msgid "Support"
|
158 |
msgstr "Поддержка"
|
159 |
|
|
|
|
|
|
|
|
|
|
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 |
"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 |
|
157 |
+
#~ msgid "Install Now"
|
158 |
+
#~ msgstr "Установить сейчас"
|
159 |
+
|
160 |
+
#~ msgid "BWS Plugins"
|
161 |
+
#~ msgstr "Плагины BWS"
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ 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:
|
9 |
|
10 |
Add Facebook button to your WordPress website
|
11 |
|
@@ -13,6 +13,20 @@ Add Facebook button to your WordPress website
|
|
13 |
|
14 |
Facebook Button Plugin allows you to add follow button in the most easiest and flexible way.
|
15 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
== Installation ==
|
17 |
|
18 |
1. Upload `facebook-button-plugin` folder to the `/wp-content/plugins/` directory.
|
@@ -58,46 +72,56 @@ Facebook Button Plugin allows you to add follow button in the most easiest and f
|
|
58 |
|
59 |
== Changelog ==
|
60 |
|
61 |
-
=
|
62 |
-
*
|
|
|
|
|
|
|
|
|
63 |
|
64 |
-
=
|
65 |
-
* The bug of redirect to profile page is fixed.
|
66 |
|
67 |
-
=
|
68 |
-
* BWS Plugins sections was fixed and right now it is consisted with 3 parts: activated, installed and recommended plugins.
|
|
|
|
|
69 |
|
70 |
-
=
|
71 |
-
* BWS Plugins sections was fixed and right now it is consisted with 2 parts: installed and recommended plugins.
|
|
|
72 |
|
73 |
-
=
|
74 |
-
* The bug of the setting page link is fixed in this version.
|
75 |
|
76 |
-
=
|
77 |
* Usability at the settings page of plugin was improved.
|
78 |
|
79 |
-
=
|
80 |
* Ability to install Facebook Button icon with link to the account page, including settings adjustment functionality via WordPress admin panel.
|
81 |
|
82 |
== Upgrade Notice ==
|
83 |
|
84 |
-
=
|
|
|
|
|
|
|
85 |
Added language files for plugin. Added style for facebook button block.
|
86 |
|
87 |
-
=
|
88 |
The bug of redirect to profile page is fixed.
|
89 |
|
90 |
-
=
|
91 |
BWS Plugins sections was fixed and right now it is consisted with 3 parts: activated, installed and recommended plugins. The bug of position in the admin menu is fixed. Facebook button plugin functionality was changed in connection with the change of Facebook API.
|
92 |
|
93 |
-
=
|
94 |
BWS Plugins sections was fixed and right now it is consisted with 2 parts: installed and recommended plugins. Icons displaying is fixed.
|
95 |
|
96 |
-
=
|
97 |
The bug of the setting page link is fixed in this version. Please upgrade the plugin immediately. Thank you
|
98 |
|
99 |
-
=
|
100 |
Usability at the settings page of plugin was improved.
|
101 |
|
102 |
-
=
|
103 |
Ability to install Facebook Button icon with link to the account page, including settings adjustment functionality via WordPress admin panel.
|
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 |
|
13 |
|
14 |
Facebook Button Plugin allows you to add follow button in the most easiest and flexible way.
|
15 |
|
16 |
+
<a href="http://wordpress.org/extend/plugins/facebook-button-plugin/faq/" target="_blank">FAQ</a>
|
17 |
+
<a href="http://bestwebsoft.com/plugin/facebook-like-button-plugin/" target="_blank">Support</a>
|
18 |
+
|
19 |
+
= Features =
|
20 |
+
|
21 |
+
* Actions: Ability to add follow button in the most easiest and flexible way.
|
22 |
+
* Actions: Ability to add facebook like button in the most easiest and flexible way.
|
23 |
+
* Display: This plugin allows you to select the position for the button: before, after, before and after or using shortcode.
|
24 |
+
* Display: There is a possibility use a standard image or replace it with another image.
|
25 |
+
|
26 |
+
= Translate =
|
27 |
+
|
28 |
+
* Russian (ru_RU)
|
29 |
+
|
30 |
== Installation ==
|
31 |
|
32 |
1. Upload `facebook-button-plugin` folder to the `/wp-content/plugins/` directory.
|
72 |
|
73 |
== Changelog ==
|
74 |
|
75 |
+
= V2.07 - 02.01.2012 =
|
76 |
+
* Changed : BWS plugins section.
|
77 |
+
|
78 |
+
= V2.06 - 27.12.2011 =
|
79 |
+
* NEW : Added language files for plugin.
|
80 |
+
* NEW : Added style for facebook button block.
|
81 |
|
82 |
+
= V2.05 - 23.08.2011 =
|
83 |
+
* Bugfix : The bug of redirect to profile page is fixed.
|
84 |
|
85 |
+
= V2.04 - 22.08.2011 =
|
86 |
+
* Bugfix : BWS Plugins sections was fixed and right now it is consisted with 3 parts: activated, installed and recommended plugins.
|
87 |
+
* Bugfix : The bug of position in the admin menu is fixed.
|
88 |
+
* Changed : Facebook button plugin functionality was changed in connection with the change of Facebook API.
|
89 |
|
90 |
+
= V2.03 - 14.07.2011 =
|
91 |
+
* Changed : BWS Plugins sections was fixed and right now it is consisted with 2 parts: installed and recommended plugins.
|
92 |
+
* Bugfix : Icons displaying is fixed.
|
93 |
|
94 |
+
= V2.02 =
|
95 |
+
* The bug of the setting page link is fixed in this version.
|
96 |
|
97 |
+
= V2.01 =
|
98 |
* Usability at the settings page of plugin was improved.
|
99 |
|
100 |
+
= V1 =
|
101 |
* Ability to install Facebook Button icon with link to the account page, including settings adjustment functionality via WordPress admin panel.
|
102 |
|
103 |
== Upgrade Notice ==
|
104 |
|
105 |
+
= V2.07 - 02.01.2012 =
|
106 |
+
BWS plugins section was changes.
|
107 |
+
|
108 |
+
= V2.06 =
|
109 |
Added language files for plugin. Added style for facebook button block.
|
110 |
|
111 |
+
= V2.05 =
|
112 |
The bug of redirect to profile page is fixed.
|
113 |
|
114 |
+
= V2.04 =
|
115 |
BWS Plugins sections was fixed and right now it is consisted with 3 parts: activated, installed and recommended plugins. The bug of position in the admin menu is fixed. Facebook button plugin functionality was changed in connection with the change of Facebook API.
|
116 |
|
117 |
+
= V2.03 =
|
118 |
BWS Plugins sections was fixed and right now it is consisted with 2 parts: installed and recommended plugins. Icons displaying is fixed.
|
119 |
|
120 |
+
= V2.02 =
|
121 |
The bug of the setting page link is fixed in this version. Please upgrade the plugin immediately. Thank you
|
122 |
|
123 |
+
= V2.01 =
|
124 |
Usability at the settings page of plugin was improved.
|
125 |
|
126 |
+
= V1 =
|
127 |
Ability to install Facebook Button icon with link to the account page, including settings adjustment functionality via WordPress admin panel.
|