Version Description
- 04.04.2012 =
- NEW : A possibility to turn off the display of the buttons.
- NEW : Turkish language file is added to the plugin.
- Bugfix : The bug with upload custom image for button is fixed.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Facebook Button by BestWebSoft |
Version | 2.10 |
Comparing to | |
See all releases |
Code changes from version 2.09 to 2.10
- facebook-button-plugin.php +47 -24
- languages/facebook-es_ES.mo +0 -0
- languages/facebook-es_ES.po +39 -39
- languages/facebook-ru_RU.mo +0 -0
- languages/facebook-ru_RU.po +39 -39
- languages/facebook-tr_TR.mo +0 -0
- languages/facebook-tr_TR.po +161 -0
- readme.txt +16 -1
- screenshot-1.jpg +0 -0
- screenshot-2.jpg +0 -0
- screenshot-3.jpg +0 -0
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 |
*/
|
@@ -44,7 +44,8 @@ if( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
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 |
-
array( '
|
|
|
48 |
);
|
49 |
foreach($array_plugins as $plugins) {
|
50 |
if( 0 < count( preg_grep( "/".$plugins[0]."/", $active_plugins ) ) ) {
|
@@ -118,6 +119,8 @@ if( ! function_exists( 'fcbk_bttn_plgn_settings' ) ) {
|
|
118 |
|
119 |
$fcbk_bttn_plgn_options_array_default = array(
|
120 |
'fcbk_bttn_plgn_link' => '',
|
|
|
|
|
121 |
'fcbk_bttn_plgn_where' => '',
|
122 |
'fcbk_bttn_plgn_display_option' => '',
|
123 |
'fcbk_bttn_plgn_count_icon' => 1,
|
@@ -130,6 +133,7 @@ if( ! function_exists( 'fcbk_bttn_plgn_settings' ) ) {
|
|
130 |
$fcbk_bttn_plgn_options_array = get_option( 'fcbk_bttn_plgn_options_array' );
|
131 |
|
132 |
$fcbk_bttn_plgn_options_array = array_merge( $fcbk_bttn_plgn_options_array_default, $fcbk_bttn_plgn_options_array );
|
|
|
133 |
}
|
134 |
}
|
135 |
|
@@ -138,6 +142,10 @@ if( ! function_exists( 'fcbk_bttn_plgn_settings_page' ) ) {
|
|
138 |
function fcbk_bttn_plgn_settings_page()
|
139 |
{
|
140 |
global $fcbk_bttn_plgn_options_array;
|
|
|
|
|
|
|
|
|
141 |
|
142 |
$message = "";
|
143 |
$error = "";
|
@@ -147,6 +155,8 @@ if( ! function_exists( 'fcbk_bttn_plgn_settings_page' ) ) {
|
|
147 |
$fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_link' ] = $_REQUEST [ 'fcbk_bttn_plgn_link' ];
|
148 |
$fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_where' ] = $_REQUEST [ 'fcbk_bttn_plgn_where' ];
|
149 |
$fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_display_option' ] = $_REQUEST [ 'fcbk_bttn_plgn_display_option' ];
|
|
|
|
|
150 |
if ( isset ( $_FILES [ 'uploadfile' ] [ 'tmp_name' ] ) && $_FILES [ 'uploadfile' ] [ 'tmp_name' ] != "" ) {
|
151 |
$fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_count_icon' ] = $fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_count_icon' ] + 1;
|
152 |
}
|
@@ -206,12 +216,6 @@ if( ! function_exists( 'fcbk_bttn_plgn_settings_page' ) ) {
|
|
206 |
}
|
207 |
?>
|
208 |
<div class="wrap">
|
209 |
-
<style>
|
210 |
-
.wrap #icon-options-general.icon32-bws
|
211 |
-
{
|
212 |
-
background: url("../wp-content/plugins/facebook-button-plugin/img/icon_36.png") no-repeat scroll left top transparent;
|
213 |
-
}
|
214 |
-
</style>
|
215 |
<div class="icon32 icon32-bws" id="icon-options-general"></div>
|
216 |
<h2><?php echo __( "FaceBook Button Options", 'facebook' ); ?></h2>
|
217 |
<div class="updated fade" <?php if( ! isset( $_REQUEST['fcbk_bttn_plgn_form_submit'] ) || $error != "" ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
|
@@ -225,6 +229,13 @@ if( ! function_exists( 'fcbk_bttn_plgn_settings_page' ) ) {
|
|
225 |
<input name='fcbk_bttn_plgn_link' type='text' value='<?php echo $fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_link' ] ?>' style="width:200px;" />
|
226 |
</td>
|
227 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
228 |
<tr>
|
229 |
<th>
|
230 |
<?php echo __( "Choose display option:", 'facebook' ); ?>
|
@@ -232,7 +243,9 @@ if( ! function_exists( 'fcbk_bttn_plgn_settings_page' ) ) {
|
|
232 |
<td>
|
233 |
<select name="fcbk_bttn_plgn_display_option" onchange="if ( this . value == 'custom' ) { getElementById ( 'fcbk_bttn_plgn_display_option_custom' ) . style.display = 'block'; } else { getElementById ( 'fcbk_bttn_plgn_display_option_custom' ) . style.display = 'none'; }" style="width:200px;" >
|
234 |
<option <?php if ( $fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_display_option' ] == 'standart' ) echo 'selected="selected"'; ?> value="standart"><?php echo __( "Standart FaceBook image", 'facebook' ); ?></option>
|
|
|
235 |
<option <?php if ( $fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_display_option' ] == 'custom' ) echo 'selected="selected"'; ?> value="custom"><?php echo __( "Custom FaceBook image", 'facebook' ); ?></option>
|
|
|
236 |
</select>
|
237 |
</td>
|
238 |
</tr>
|
@@ -315,18 +328,23 @@ if( ! function_exists( 'fcbk_bttn_plgn_display_button' ) ) {
|
|
315 |
$url = $fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_link' ];
|
316 |
$permalink_post = get_permalink ( $post->ID );
|
317 |
//Button
|
318 |
-
$button = '<div id="fcbk_share">
|
319 |
-
|
|
|
320 |
<a name="fcbk_share" href="http://www.facebook.com/' . $url . '" target="blank">
|
321 |
<img src="' . $img . '" alt="Fb-Button" />
|
322 |
</a>
|
323 |
-
</div>
|
324 |
-
|
|
|
|
|
325 |
<div id="fb-root"></div>
|
326 |
<script src="http://connect.facebook.net/en_US/all.js#appId=224313110927811&xfbml=1"></script>
|
327 |
<fb:like href="' . $permalink_post . '" send="false" layout="button_count" width="450" show_faces="false" font=""></fb:like>
|
328 |
-
</div>
|
329 |
-
|
|
|
|
|
330 |
//Indication where show FaceBook Button depending on selected item in admin page.
|
331 |
if ( $fcbk_bttn_plgn_where == 'before' ) {
|
332 |
return $button . $content;
|
@@ -350,18 +368,23 @@ if( ! function_exists( 'fcbk_bttn_plgn_shortcode' ) ) {
|
|
350 |
$img = $fcbk_bttn_plgn_options_array [ 'fb_img_link' ];
|
351 |
$url = $fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_link' ];
|
352 |
$permalink_post = get_permalink ( $post_ID );
|
353 |
-
$button =
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
|
|
|
|
|
|
360 |
<div id="fb-root"></div>
|
361 |
<script src="http://connect.facebook.net/en_US/all.js#appId=224313110927811&xfbml=1"></script>
|
362 |
-
<fb:like href="'
|
363 |
-
</div>
|
364 |
-
|
|
|
|
|
365 |
return $button;
|
366 |
}
|
367 |
}
|
4 |
Plugin URI: http://bestwebsoft.com/plugin/
|
5 |
Description: Put Facebook Button in to your post.
|
6 |
Author: BestWebSoft
|
7 |
+
Version: 2.10
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
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 |
+
array( 'quotes-and-tips\/quotes-and-tips.php', 'Quotes and Tips', 'http://wordpress.org/extend/plugins/quotes-and-tips/', 'http://bestwebsoft.com/plugin/quotes-and-tips/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Quotes+and+Tips+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=quotes-and-tips.php' ),
|
48 |
+
array( 'google-sitemap-plugin\/google-sitemap-plugin.php', 'Google sitemap plugin', 'http://wordpress.org/extend/plugins/google-sitemap-plugin/', 'http://bestwebsoft.com/plugin/google-sitemap-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Google+sitemap+plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=google-sitemap-plugin.php' )
|
49 |
);
|
50 |
foreach($array_plugins as $plugins) {
|
51 |
if( 0 < count( preg_grep( "/".$plugins[0]."/", $active_plugins ) ) ) {
|
119 |
|
120 |
$fcbk_bttn_plgn_options_array_default = array(
|
121 |
'fcbk_bttn_plgn_link' => '',
|
122 |
+
'fcbk_bttn_plgn_my_page' => 1,
|
123 |
+
'fcbk_bttn_plgn_like' => 1,
|
124 |
'fcbk_bttn_plgn_where' => '',
|
125 |
'fcbk_bttn_plgn_display_option' => '',
|
126 |
'fcbk_bttn_plgn_count_icon' => 1,
|
133 |
$fcbk_bttn_plgn_options_array = get_option( 'fcbk_bttn_plgn_options_array' );
|
134 |
|
135 |
$fcbk_bttn_plgn_options_array = array_merge( $fcbk_bttn_plgn_options_array_default, $fcbk_bttn_plgn_options_array );
|
136 |
+
update_option( 'fcbk_bttn_plgn_options_array', $fcbk_bttn_plgn_options_array );
|
137 |
}
|
138 |
}
|
139 |
|
142 |
function fcbk_bttn_plgn_settings_page()
|
143 |
{
|
144 |
global $fcbk_bttn_plgn_options_array;
|
145 |
+
$copy = false;
|
146 |
+
|
147 |
+
if( @copy( plugin_dir_path( __FILE__ )."img/facebook-ico.jpg", plugin_dir_path( __FILE__ )."img/facebook-ico3.jpg" ) !== false )
|
148 |
+
$copy = true;
|
149 |
|
150 |
$message = "";
|
151 |
$error = "";
|
155 |
$fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_link' ] = $_REQUEST [ 'fcbk_bttn_plgn_link' ];
|
156 |
$fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_where' ] = $_REQUEST [ 'fcbk_bttn_plgn_where' ];
|
157 |
$fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_display_option' ] = $_REQUEST [ 'fcbk_bttn_plgn_display_option' ];
|
158 |
+
$fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_my_page' ] = isset( $_REQUEST [ 'fcbk_bttn_plgn_my_page' ] ) ? 1 : 0 ;
|
159 |
+
$fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_like' ] = isset( $_REQUEST [ 'fcbk_bttn_plgn_like' ] ) ? 1 : 0 ;
|
160 |
if ( isset ( $_FILES [ 'uploadfile' ] [ 'tmp_name' ] ) && $_FILES [ 'uploadfile' ] [ 'tmp_name' ] != "" ) {
|
161 |
$fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_count_icon' ] = $fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_count_icon' ] + 1;
|
162 |
}
|
216 |
}
|
217 |
?>
|
218 |
<div class="wrap">
|
|
|
|
|
|
|
|
|
|
|
|
|
219 |
<div class="icon32 icon32-bws" id="icon-options-general"></div>
|
220 |
<h2><?php echo __( "FaceBook Button Options", 'facebook' ); ?></h2>
|
221 |
<div class="updated fade" <?php if( ! isset( $_REQUEST['fcbk_bttn_plgn_form_submit'] ) || $error != "" ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
|
229 |
<input name='fcbk_bttn_plgn_link' type='text' value='<?php echo $fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_link' ] ?>' style="width:200px;" />
|
230 |
</td>
|
231 |
</tr>
|
232 |
+
<tr valign="top">
|
233 |
+
<th scope="row"><?php _e( "Display button:", 'facebook' ); ?></th>
|
234 |
+
<td>
|
235 |
+
<input name='fcbk_bttn_plgn_my_page' type='checkbox' value='1' <?php if( $fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_my_page' ] == 1 ) echo 'checked="checked "'; ?>/> <label for="fcbk_bttn_plgn_my_page"><?php echo __( "My Page", 'captcha' ); ?></label><br />
|
236 |
+
<input name='fcbk_bttn_plgn_like' type='checkbox' value='1' <?php if( $fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_like' ] == 1 ) echo 'checked="checked "'; ?>/> <label for="fcbk_bttn_plgn_like"><?php echo __( "Like", 'captcha' ); ?></label><br />
|
237 |
+
</td>
|
238 |
+
</tr>
|
239 |
<tr>
|
240 |
<th>
|
241 |
<?php echo __( "Choose display option:", 'facebook' ); ?>
|
243 |
<td>
|
244 |
<select name="fcbk_bttn_plgn_display_option" onchange="if ( this . value == 'custom' ) { getElementById ( 'fcbk_bttn_plgn_display_option_custom' ) . style.display = 'block'; } else { getElementById ( 'fcbk_bttn_plgn_display_option_custom' ) . style.display = 'none'; }" style="width:200px;" >
|
245 |
<option <?php if ( $fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_display_option' ] == 'standart' ) echo 'selected="selected"'; ?> value="standart"><?php echo __( "Standart FaceBook image", 'facebook' ); ?></option>
|
246 |
+
<?php if( $copy || $fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_display_option' ] == 'custom' ) { ?>
|
247 |
<option <?php if ( $fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_display_option' ] == 'custom' ) echo 'selected="selected"'; ?> value="custom"><?php echo __( "Custom FaceBook image", 'facebook' ); ?></option>
|
248 |
+
<?php } ?>
|
249 |
</select>
|
250 |
</td>
|
251 |
</tr>
|
328 |
$url = $fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_link' ];
|
329 |
$permalink_post = get_permalink ( $post->ID );
|
330 |
//Button
|
331 |
+
$button = '<div id="fcbk_share">';
|
332 |
+
if( $fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_my_page' ] == 1 ) {
|
333 |
+
$button .= '<div class="fcbk_button">
|
334 |
<a name="fcbk_share" href="http://www.facebook.com/' . $url . '" target="blank">
|
335 |
<img src="' . $img . '" alt="Fb-Button" />
|
336 |
</a>
|
337 |
+
</div>';
|
338 |
+
}
|
339 |
+
if( $fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_like' ] == 1 ) {
|
340 |
+
$button .= '<div class="fcbk_like">
|
341 |
<div id="fb-root"></div>
|
342 |
<script src="http://connect.facebook.net/en_US/all.js#appId=224313110927811&xfbml=1"></script>
|
343 |
<fb:like href="' . $permalink_post . '" send="false" layout="button_count" width="450" show_faces="false" font=""></fb:like>
|
344 |
+
</div>';
|
345 |
+
}
|
346 |
+
|
347 |
+
$button .= '</div>';
|
348 |
//Indication where show FaceBook Button depending on selected item in admin page.
|
349 |
if ( $fcbk_bttn_plgn_where == 'before' ) {
|
350 |
return $button . $content;
|
368 |
$img = $fcbk_bttn_plgn_options_array [ 'fb_img_link' ];
|
369 |
$url = $fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_link' ];
|
370 |
$permalink_post = get_permalink ( $post_ID );
|
371 |
+
$button = '<div id="fcbk_share">';
|
372 |
+
if( $fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_my_page' ] == 1 ) {
|
373 |
+
$button .= '<div class="fcbk_button">
|
374 |
+
<a name="fcbk_share" href="http://www.facebook.com/' . $url . '" target="blank">
|
375 |
+
<img src="' . $img . '" alt="Fb-Button" />
|
376 |
+
</a>
|
377 |
+
</div>';
|
378 |
+
}
|
379 |
+
if( $fcbk_bttn_plgn_options_array [ 'fcbk_bttn_plgn_like' ] == 1 ) {
|
380 |
+
$button .= '<div class="fcbk_like">
|
381 |
<div id="fb-root"></div>
|
382 |
<script src="http://connect.facebook.net/en_US/all.js#appId=224313110927811&xfbml=1"></script>
|
383 |
+
<fb:like href="' . $permalink_post . '" send="false" layout="button_count" width="450" show_faces="false" font=""></fb:like>
|
384 |
+
</div>';
|
385 |
+
}
|
386 |
+
|
387 |
+
$button .= '</div>';
|
388 |
return $button;
|
389 |
}
|
390 |
}
|
languages/facebook-es_ES.mo
CHANGED
Binary file
|
languages/facebook-es_ES.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,89 +16,89 @@ 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 "Plugins activados"
|
22 |
|
23 |
-
#: facebook-button-plugin.php:
|
24 |
-
#: facebook-button-plugin.php:
|
25 |
-
#: facebook-button-plugin.php:
|
26 |
msgid "Read more"
|
27 |
msgstr "Leer mas"
|
28 |
|
29 |
-
#: facebook-button-plugin.php:
|
30 |
-
#: facebook-button-plugin.php:
|
31 |
-
#: facebook-button-plugin.php:
|
32 |
msgid "Settings"
|
33 |
msgstr "Opciones"
|
34 |
|
35 |
-
#: facebook-button-plugin.php:
|
36 |
msgid "Installed plugins"
|
37 |
msgstr "Plugins instalados"
|
38 |
|
39 |
-
#: facebook-button-plugin.php:
|
40 |
msgid "Recommended plugins"
|
41 |
msgstr "Plugins recomendados"
|
42 |
|
43 |
-
#: facebook-button-plugin.php:
|
44 |
msgid "Download"
|
45 |
msgstr "Descargar"
|
46 |
|
47 |
-
#: facebook-button-plugin.php:
|
48 |
#, php-format
|
49 |
msgid "Install %s"
|
50 |
msgstr "Instalar %s"
|
51 |
|
52 |
-
#: facebook-button-plugin.php:
|
53 |
msgid "Install now from wordpress.org"
|
54 |
msgstr "Instalar ahora desde wordpress.org"
|
55 |
|
56 |
-
#: facebook-button-plugin.php:
|
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:
|
61 |
-
#: facebook-button-plugin.php:
|
62 |
msgid "FaceBook Button Options"
|
63 |
msgstr "Opciones del botón de Facebook"
|
64 |
|
65 |
-
#: facebook-button-plugin.php:
|
66 |
msgid "FaceBook Button"
|
67 |
msgstr "Botón FaceBook"
|
68 |
|
69 |
-
#: facebook-button-plugin.php:
|
70 |
msgid "Options saved."
|
71 |
msgstr "Opciones guardadas"
|
72 |
|
73 |
-
#: facebook-button-plugin.php:
|
74 |
msgid "Error: File size > 32K"
|
75 |
msgstr "Error: Archivo > 32К"
|
76 |
|
77 |
-
#: facebook-button-plugin.php:
|
78 |
msgid "Error: Invalid file type"
|
79 |
msgstr "error: Tipo de archivo no válido"
|
80 |
|
81 |
-
#: facebook-button-plugin.php:
|
82 |
msgid "Error: moving file failed"
|
83 |
msgstr "Error: Fallo moviendo el archivo"
|
84 |
|
85 |
-
#: facebook-button-plugin.php:
|
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:
|
90 |
msgid "Uploading Error: check image properties"
|
91 |
msgstr "Error de subida: Revisa las propiedades de la imagen"
|
92 |
|
93 |
-
#: facebook-button-plugin.php:
|
94 |
msgid "Your's FaceBook Id:"
|
95 |
msgstr "Su FaceBook Id:"
|
96 |
|
97 |
-
#: facebook-button-plugin.php:
|
98 |
msgid "Choose display option:"
|
99 |
msgstr "Seleccione opciones de visualización:"
|
100 |
|
101 |
-
#: facebook-button-plugin.php:
|
102 |
msgid "Standart FaceBook image"
|
103 |
msgstr "Imagen estandar de FaceBook"
|
104 |
|
@@ -106,51 +106,51 @@ msgstr "Imagen estandar de FaceBook"
|
|
106 |
msgid "Custom FaceBook image"
|
107 |
msgstr "Imagen personalizada de FaceBook"
|
108 |
|
109 |
-
#: facebook-button-plugin.php:
|
110 |
msgid "Current image:"
|
111 |
msgstr "Imagen actual:"
|
112 |
|
113 |
-
#: facebook-button-plugin.php:
|
114 |
msgid "FaceBook image:"
|
115 |
msgstr "Imagen de FaceBook:"
|
116 |
|
117 |
-
#: facebook-button-plugin.php:
|
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:
|
122 |
msgid "FaceBook Button Position:"
|
123 |
msgstr "Posición del botón Facebook:"
|
124 |
|
125 |
-
#: facebook-button-plugin.php:
|
126 |
msgid "Before"
|
127 |
msgstr "Antes"
|
128 |
|
129 |
-
#: facebook-button-plugin.php:
|
130 |
msgid "After"
|
131 |
msgstr "Después"
|
132 |
|
133 |
-
#: facebook-button-plugin.php:
|
134 |
msgid "Before and After"
|
135 |
msgstr "Antes y después"
|
136 |
|
137 |
-
#: facebook-button-plugin.php:
|
138 |
msgid "Shortcode"
|
139 |
msgstr "Shortcode"
|
140 |
|
141 |
-
#: facebook-button-plugin.php:
|
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:
|
146 |
msgid "Save Changes"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: facebook-button-plugin.php:
|
150 |
msgid "FAQ"
|
151 |
msgstr "FAQ"
|
152 |
|
153 |
-
#: facebook-button-plugin.php:
|
154 |
msgid "Support"
|
155 |
msgstr "Soporte"
|
156 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-04-04 20:15+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-04-04 20:15+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:78
|
20 |
msgid "Activated plugins"
|
21 |
msgstr "Plugins activados"
|
22 |
|
23 |
+
#: facebook-button-plugin.php:80
|
24 |
+
#: facebook-button-plugin.php:88
|
25 |
+
#: facebook-button-plugin.php:96
|
26 |
msgid "Read more"
|
27 |
msgstr "Leer mas"
|
28 |
|
29 |
+
#: facebook-button-plugin.php:80
|
30 |
+
#: facebook-button-plugin.php:378
|
31 |
+
#: facebook-button-plugin.php:390
|
32 |
msgid "Settings"
|
33 |
msgstr "Opciones"
|
34 |
|
35 |
+
#: facebook-button-plugin.php:86
|
36 |
msgid "Installed plugins"
|
37 |
msgstr "Plugins instalados"
|
38 |
|
39 |
+
#: facebook-button-plugin.php:94
|
40 |
msgid "Recommended plugins"
|
41 |
msgstr "Plugins recomendados"
|
42 |
|
43 |
+
#: facebook-button-plugin.php:96
|
44 |
msgid "Download"
|
45 |
msgstr "Descargar"
|
46 |
|
47 |
+
#: facebook-button-plugin.php:96
|
48 |
#, php-format
|
49 |
msgid "Install %s"
|
50 |
msgstr "Instalar %s"
|
51 |
|
52 |
+
#: facebook-button-plugin.php:96
|
53 |
msgid "Install now from wordpress.org"
|
54 |
msgstr "Instalar ahora desde wordpress.org"
|
55 |
|
56 |
+
#: facebook-button-plugin.php:98
|
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:109
|
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:109
|
66 |
msgid "FaceBook Button"
|
67 |
msgstr "Botón FaceBook"
|
68 |
|
69 |
+
#: facebook-button-plugin.php:161
|
70 |
msgid "Options saved."
|
71 |
msgstr "Opciones guardadas"
|
72 |
|
73 |
+
#: facebook-button-plugin.php:184
|
74 |
msgid "Error: File size > 32K"
|
75 |
msgstr "Error: Archivo > 32К"
|
76 |
|
77 |
+
#: facebook-button-plugin.php:187
|
78 |
msgid "Error: Invalid file type"
|
79 |
msgstr "error: Tipo de archivo no válido"
|
80 |
|
81 |
+
#: facebook-button-plugin.php:197
|
82 |
msgid "Error: moving file failed"
|
83 |
msgstr "Error: Fallo moviendo el archivo"
|
84 |
|
85 |
+
#: facebook-button-plugin.php:201
|
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:206
|
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 |
|
106 |
msgid "Custom FaceBook image"
|
107 |
msgstr "Imagen personalizada de FaceBook"
|
108 |
|
109 |
+
#: facebook-button-plugin.php:242
|
110 |
msgid "Current image:"
|
111 |
msgstr "Imagen actual:"
|
112 |
|
113 |
+
#: facebook-button-plugin.php:255
|
114 |
msgid "FaceBook image:"
|
115 |
msgstr "Imagen de FaceBook:"
|
116 |
|
117 |
+
#: facebook-button-plugin.php:259
|
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:267
|
122 |
msgid "FaceBook Button Position:"
|
123 |
msgstr "Posición del botón Facebook:"
|
124 |
|
125 |
+
#: facebook-button-plugin.php:271
|
126 |
msgid "Before"
|
127 |
msgstr "Antes"
|
128 |
|
129 |
+
#: facebook-button-plugin.php:272
|
130 |
msgid "After"
|
131 |
msgstr "Después"
|
132 |
|
133 |
+
#: facebook-button-plugin.php:273
|
134 |
msgid "Before and After"
|
135 |
msgstr "Antes y después"
|
136 |
|
137 |
+
#: facebook-button-plugin.php:274
|
138 |
msgid "Shortcode"
|
139 |
msgstr "Shortcode"
|
140 |
|
141 |
+
#: facebook-button-plugin.php:276
|
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:282
|
146 |
msgid "Save Changes"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: facebook-button-plugin.php:391
|
150 |
msgid "FAQ"
|
151 |
msgstr "FAQ"
|
152 |
|
153 |
+
#: facebook-button-plugin.php:392
|
154 |
msgid "Support"
|
155 |
msgstr "Soporte"
|
156 |
|
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-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,89 +16,89 @@ 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 |
-
#: facebook-button-plugin.php:
|
31 |
-
#: facebook-button-plugin.php:
|
32 |
msgid "Settings"
|
33 |
msgstr "Настройки"
|
34 |
|
35 |
-
#: facebook-button-plugin.php:
|
36 |
msgid "Installed plugins"
|
37 |
msgstr "Установленные плагины"
|
38 |
|
39 |
-
#: facebook-button-plugin.php:
|
40 |
msgid "Recommended plugins"
|
41 |
msgstr "Рекомендованные к установке плагины"
|
42 |
|
43 |
-
#: facebook-button-plugin.php:
|
44 |
msgid "Download"
|
45 |
msgstr "Скачать"
|
46 |
|
47 |
-
#: facebook-button-plugin.php:
|
48 |
#, php-format
|
49 |
msgid "Install %s"
|
50 |
msgstr "Установлено %s"
|
51 |
|
52 |
-
#: facebook-button-plugin.php:
|
53 |
msgid "Install now from wordpress.org"
|
54 |
msgstr "Установить с wordpress.org"
|
55 |
|
56 |
-
#: facebook-button-plugin.php:
|
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:
|
61 |
-
#: facebook-button-plugin.php:
|
62 |
msgid "FaceBook Button Options"
|
63 |
msgstr "Настройки FaceBook Кнопки"
|
64 |
|
65 |
-
#: facebook-button-plugin.php:
|
66 |
msgid "FaceBook Button"
|
67 |
msgstr "FaceBook кнопка"
|
68 |
|
69 |
-
#: facebook-button-plugin.php:
|
70 |
msgid "Options saved."
|
71 |
msgstr "Опции сохранены"
|
72 |
|
73 |
-
#: facebook-button-plugin.php:
|
74 |
msgid "Error: File size > 32K"
|
75 |
msgstr "Ошибка: Размер файла больше 32К"
|
76 |
|
77 |
-
#: facebook-button-plugin.php:
|
78 |
msgid "Error: Invalid file type"
|
79 |
msgstr "Ошибка: Некорректный тип файла"
|
80 |
|
81 |
-
#: facebook-button-plugin.php:
|
82 |
msgid "Error: moving file failed"
|
83 |
msgstr "Ошибка: При перемещении произошла ошибка"
|
84 |
|
85 |
-
#: facebook-button-plugin.php:
|
86 |
msgid "Error: check image width or height"
|
87 |
msgstr "Ошибка: Проверьте ширину и высоту изображения"
|
88 |
|
89 |
-
#: facebook-button-plugin.php:
|
90 |
msgid "Uploading Error: check image properties"
|
91 |
msgstr "Ошибка загрузки: Проверьте опции изображения"
|
92 |
|
93 |
-
#: facebook-button-plugin.php:
|
94 |
msgid "Your's FaceBook Id:"
|
95 |
msgstr "Ваш FaceBook Id:"
|
96 |
|
97 |
-
#: facebook-button-plugin.php:
|
98 |
msgid "Choose display option:"
|
99 |
msgstr "Выбор опций отображения:"
|
100 |
|
101 |
-
#: facebook-button-plugin.php:
|
102 |
msgid "Standart FaceBook image"
|
103 |
msgstr "Стандартная картинка FaceBook"
|
104 |
|
@@ -106,51 +106,51 @@ msgstr "Стандартная картинка FaceBook"
|
|
106 |
msgid "Custom FaceBook image"
|
107 |
msgstr "Пользовательская картинка FaceBook"
|
108 |
|
109 |
-
#: facebook-button-plugin.php:
|
110 |
msgid "Current image:"
|
111 |
msgstr "Текущее изображение:"
|
112 |
|
113 |
-
#: facebook-button-plugin.php:
|
114 |
msgid "FaceBook image:"
|
115 |
msgstr "FaceBook изображение:"
|
116 |
|
117 |
-
#: facebook-button-plugin.php:
|
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:
|
122 |
msgid "FaceBook Button Position:"
|
123 |
msgstr "Позиции FaceBook кнопки:"
|
124 |
|
125 |
-
#: facebook-button-plugin.php:
|
126 |
msgid "Before"
|
127 |
msgstr "Перед"
|
128 |
|
129 |
-
#: facebook-button-plugin.php:
|
130 |
msgid "After"
|
131 |
msgstr "После"
|
132 |
|
133 |
-
#: facebook-button-plugin.php:
|
134 |
msgid "Before and After"
|
135 |
msgstr "Перед и после"
|
136 |
|
137 |
-
#: facebook-button-plugin.php:
|
138 |
msgid "Shortcode"
|
139 |
msgstr "Шорткод"
|
140 |
|
141 |
-
#: facebook-button-plugin.php:
|
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:
|
146 |
msgid "Save Changes"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: facebook-button-plugin.php:
|
150 |
msgid "FAQ"
|
151 |
msgstr "FAQ"
|
152 |
|
153 |
-
#: facebook-button-plugin.php:
|
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-04-04 20:15+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-04-04 20:15+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:78
|
20 |
msgid "Activated plugins"
|
21 |
msgstr "Активированные плагины"
|
22 |
|
23 |
+
#: facebook-button-plugin.php:80
|
24 |
+
#: facebook-button-plugin.php:88
|
25 |
+
#: facebook-button-plugin.php:96
|
26 |
msgid "Read more"
|
27 |
msgstr "Подробнее..."
|
28 |
|
29 |
+
#: facebook-button-plugin.php:80
|
30 |
+
#: facebook-button-plugin.php:378
|
31 |
+
#: facebook-button-plugin.php:390
|
32 |
msgid "Settings"
|
33 |
msgstr "Настройки"
|
34 |
|
35 |
+
#: facebook-button-plugin.php:86
|
36 |
msgid "Installed plugins"
|
37 |
msgstr "Установленные плагины"
|
38 |
|
39 |
+
#: facebook-button-plugin.php:94
|
40 |
msgid "Recommended plugins"
|
41 |
msgstr "Рекомендованные к установке плагины"
|
42 |
|
43 |
+
#: facebook-button-plugin.php:96
|
44 |
msgid "Download"
|
45 |
msgstr "Скачать"
|
46 |
|
47 |
+
#: facebook-button-plugin.php:96
|
48 |
#, php-format
|
49 |
msgid "Install %s"
|
50 |
msgstr "Установлено %s"
|
51 |
|
52 |
+
#: facebook-button-plugin.php:96
|
53 |
msgid "Install now from wordpress.org"
|
54 |
msgstr "Установить с wordpress.org"
|
55 |
|
56 |
+
#: facebook-button-plugin.php:98
|
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:109
|
61 |
+
#: facebook-button-plugin.php:215
|
62 |
msgid "FaceBook Button Options"
|
63 |
msgstr "Настройки FaceBook Кнопки"
|
64 |
|
65 |
+
#: facebook-button-plugin.php:109
|
66 |
msgid "FaceBook Button"
|
67 |
msgstr "FaceBook кнопка"
|
68 |
|
69 |
+
#: facebook-button-plugin.php:161
|
70 |
msgid "Options saved."
|
71 |
msgstr "Опции сохранены"
|
72 |
|
73 |
+
#: facebook-button-plugin.php:184
|
74 |
msgid "Error: File size > 32K"
|
75 |
msgstr "Ошибка: Размер файла больше 32К"
|
76 |
|
77 |
+
#: facebook-button-plugin.php:187
|
78 |
msgid "Error: Invalid file type"
|
79 |
msgstr "Ошибка: Некорректный тип файла"
|
80 |
|
81 |
+
#: facebook-button-plugin.php:197
|
82 |
msgid "Error: moving file failed"
|
83 |
msgstr "Ошибка: При перемещении произошла ошибка"
|
84 |
|
85 |
+
#: facebook-button-plugin.php:201
|
86 |
msgid "Error: check image width or height"
|
87 |
msgstr "Ошибка: Проверьте ширину и высоту изображения"
|
88 |
|
89 |
+
#: facebook-button-plugin.php:206
|
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 |
|
106 |
msgid "Custom FaceBook image"
|
107 |
msgstr "Пользовательская картинка FaceBook"
|
108 |
|
109 |
+
#: facebook-button-plugin.php:242
|
110 |
msgid "Current image:"
|
111 |
msgstr "Текущее изображение:"
|
112 |
|
113 |
+
#: facebook-button-plugin.php:255
|
114 |
msgid "FaceBook image:"
|
115 |
msgstr "FaceBook изображение:"
|
116 |
|
117 |
+
#: facebook-button-plugin.php:259
|
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:267
|
122 |
msgid "FaceBook Button Position:"
|
123 |
msgstr "Позиции FaceBook кнопки:"
|
124 |
|
125 |
+
#: facebook-button-plugin.php:271
|
126 |
msgid "Before"
|
127 |
msgstr "Перед"
|
128 |
|
129 |
+
#: facebook-button-plugin.php:272
|
130 |
msgid "After"
|
131 |
msgstr "После"
|
132 |
|
133 |
+
#: facebook-button-plugin.php:273
|
134 |
msgid "Before and After"
|
135 |
msgstr "Перед и после"
|
136 |
|
137 |
+
#: facebook-button-plugin.php:274
|
138 |
msgid "Shortcode"
|
139 |
msgstr "Шорткод"
|
140 |
|
141 |
+
#: facebook-button-plugin.php:276
|
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:282
|
146 |
msgid "Save Changes"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: facebook-button-plugin.php:391
|
150 |
msgid "FAQ"
|
151 |
msgstr "FAQ"
|
152 |
|
153 |
+
#: facebook-button-plugin.php:392
|
154 |
msgid "Support"
|
155 |
msgstr "Поддержка"
|
156 |
|
languages/facebook-tr_TR.mo
ADDED
Binary file
|
languages/facebook-tr_TR.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-04-04 20:15+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-04-04 20:15+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:78
|
20 |
+
msgid "Activated plugins"
|
21 |
+
msgstr "Aktif Eklentiler"
|
22 |
+
|
23 |
+
#: facebook-button-plugin.php:80
|
24 |
+
#: facebook-button-plugin.php:88
|
25 |
+
#: facebook-button-plugin.php:96
|
26 |
+
msgid "Read more"
|
27 |
+
msgstr "Devamını Oku"
|
28 |
+
|
29 |
+
#: facebook-button-plugin.php:80
|
30 |
+
#: facebook-button-plugin.php:378
|
31 |
+
#: facebook-button-plugin.php:390
|
32 |
+
msgid "Settings"
|
33 |
+
msgstr "Ayarlar"
|
34 |
+
|
35 |
+
#: facebook-button-plugin.php:86
|
36 |
+
msgid "Installed plugins"
|
37 |
+
msgstr "Yüklü eklentiler"
|
38 |
+
|
39 |
+
#: facebook-button-plugin.php:94
|
40 |
+
msgid "Recommended plugins"
|
41 |
+
msgstr "Eklenti Önerileri"
|
42 |
+
|
43 |
+
#: facebook-button-plugin.php:96
|
44 |
+
msgid "Download"
|
45 |
+
msgstr "İndir"
|
46 |
+
|
47 |
+
#: facebook-button-plugin.php:96
|
48 |
+
#, php-format
|
49 |
+
msgid "Install %s"
|
50 |
+
msgstr "%s 'i yükle"
|
51 |
+
|
52 |
+
#: facebook-button-plugin.php:96
|
53 |
+
msgid "Install now from wordpress.org"
|
54 |
+
msgstr "wordpress.org'dan yükle"
|
55 |
+
|
56 |
+
#: facebook-button-plugin.php:98
|
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 "Sormak istediğiniz herhangi bir sorunuz varsa bize plugin@bestwebsoft.com adresine e-posta atarak ya da sitemizdeki iletişim formunu kullanarak ulaşabilirsiniz."
|
59 |
+
|
60 |
+
#: facebook-button-plugin.php:109
|
61 |
+
#: facebook-button-plugin.php:215
|
62 |
+
msgid "FaceBook Button Options"
|
63 |
+
msgstr "Facebook Butonu Ayarları"
|
64 |
+
|
65 |
+
#: facebook-button-plugin.php:109
|
66 |
+
msgid "FaceBook Button"
|
67 |
+
msgstr "Facebook Butonu"
|
68 |
+
|
69 |
+
#: facebook-button-plugin.php:161
|
70 |
+
msgid "Options saved."
|
71 |
+
msgstr "Değişiklikler Kaydedildi."
|
72 |
+
|
73 |
+
#: facebook-button-plugin.php:184
|
74 |
+
msgid "Error: File size > 32K"
|
75 |
+
msgstr "HATA: Dosya boyutu 32KB'tan büyük!"
|
76 |
+
|
77 |
+
#: facebook-button-plugin.php:187
|
78 |
+
msgid "Error: Invalid file type"
|
79 |
+
msgstr "HATA: geçersiz dosya uzantısı"
|
80 |
+
|
81 |
+
#: facebook-button-plugin.php:197
|
82 |
+
msgid "Error: moving file failed"
|
83 |
+
msgstr "HATA: Dosya taşınamadı!"
|
84 |
+
|
85 |
+
#: facebook-button-plugin.php:201
|
86 |
+
msgid "Error: check image width or height"
|
87 |
+
msgstr "HATA: Görselin genişlik ve yüksekliğini kontrol edin."
|
88 |
+
|
89 |
+
#: facebook-button-plugin.php:206
|
90 |
+
msgid "Uploading Error: check image properties"
|
91 |
+
msgstr "Yükleme Hatası: Görselin özelliklerini kontol edin."
|
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 "Gösterim Şeklini Seçin"
|
100 |
+
|
101 |
+
#: facebook-button-plugin.php:233
|
102 |
+
msgid "Standart FaceBook image"
|
103 |
+
msgstr "Standard Facebook Görseli"
|
104 |
+
|
105 |
+
#: facebook-button-plugin.php:235
|
106 |
+
msgid "Custom FaceBook image"
|
107 |
+
msgstr "Kişisel Facebook Görseli"
|
108 |
+
|
109 |
+
#: facebook-button-plugin.php:242
|
110 |
+
msgid "Current image:"
|
111 |
+
msgstr "Şu andaki görsel:"
|
112 |
+
|
113 |
+
#: facebook-button-plugin.php:255
|
114 |
+
msgid "FaceBook image:"
|
115 |
+
msgstr "Facebook görseli:"
|
116 |
+
|
117 |
+
#: facebook-button-plugin.php:259
|
118 |
+
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\"."
|
119 |
+
msgstr "Görsel Özellikleri: maksimum genişlik: 100px; maksimum yükseklik: 40px; maksimum boyut: 32KB; izin verilen uzantılar: \"jpg\", \"jpeg\"."
|
120 |
+
|
121 |
+
#: facebook-button-plugin.php:267
|
122 |
+
msgid "FaceBook Button Position:"
|
123 |
+
msgstr "Facebook Butonunun Konumu"
|
124 |
+
|
125 |
+
#: facebook-button-plugin.php:271
|
126 |
+
msgid "Before"
|
127 |
+
msgstr "Önce"
|
128 |
+
|
129 |
+
#: facebook-button-plugin.php:272
|
130 |
+
msgid "After"
|
131 |
+
msgstr "Sonra"
|
132 |
+
|
133 |
+
#: facebook-button-plugin.php:273
|
134 |
+
msgid "Before and After"
|
135 |
+
msgstr "Önce ve Sonra"
|
136 |
+
|
137 |
+
#: facebook-button-plugin.php:274
|
138 |
+
msgid "Shortcode"
|
139 |
+
msgstr "Kısakod Olarak"
|
140 |
+
|
141 |
+
#: facebook-button-plugin.php:276
|
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 "Web sitenize Facebook butonu yerleştirmek istiyorsanız, aşağıdaki kodu kopyalayın ve sayfanızda/yazınızda butonun görünmesini istediğiniz yere yapıştırın.(HTML editörüyle!)"
|
144 |
+
|
145 |
+
#: facebook-button-plugin.php:282
|
146 |
+
msgid "Save Changes"
|
147 |
+
msgstr "Değişiklikleri Kaydet"
|
148 |
+
|
149 |
+
#: facebook-button-plugin.php:391
|
150 |
+
msgid "FAQ"
|
151 |
+
msgstr "SSS (Sık Sorulan Sorular)"
|
152 |
+
|
153 |
+
#: facebook-button-plugin.php:392
|
154 |
+
msgid "Support"
|
155 |
+
msgstr "Destek"
|
156 |
+
|
157 |
+
#~ msgid "Install Now"
|
158 |
+
#~ msgstr "Установить сейчас"
|
159 |
+
|
160 |
+
#~ msgid "BWS Plugins"
|
161 |
+
#~ msgstr "Плагины BWS"
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10
|
|
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.1
|
7 |
-
Stable tag: 2.
|
8 |
|
9 |
Add Facebook button to your WordPress website
|
10 |
|
@@ -26,6 +26,13 @@ Facebook Button Plugin allows you to add follow button in the most easiest and f
|
|
26 |
|
27 |
* Russian (ru_RU)
|
28 |
* Spanish (es_ES) (thanks to Jesús Parra)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
|
30 |
== Installation ==
|
31 |
|
@@ -72,6 +79,11 @@ Facebook Button Plugin allows you to add follow button in the most easiest and f
|
|
72 |
|
73 |
== Changelog ==
|
74 |
|
|
|
|
|
|
|
|
|
|
|
75 |
= V2.09 - 12.03.2012 =
|
76 |
* Changed : BWS plugins section.
|
77 |
|
@@ -109,6 +121,9 @@ Facebook Button Plugin allows you to add follow button in the most easiest and f
|
|
109 |
|
110 |
== Upgrade Notice ==
|
111 |
|
|
|
|
|
|
|
112 |
= V2.09 =
|
113 |
BWS plugins section has been changed.
|
114 |
|
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.1
|
7 |
+
Stable tag: 2.10
|
8 |
|
9 |
Add Facebook button to your WordPress website
|
10 |
|
26 |
|
27 |
* Russian (ru_RU)
|
28 |
* Spanish (es_ES) (thanks to Jesús Parra)
|
29 |
+
* Turkish (tr_TR) (thanks to Can Atasever, <a href="http://www.candanblog.com">www.candanblog.com</a>)
|
30 |
+
|
31 |
+
If you create your own language pack or update an existing one, you can send <a href="http://codex.wordpress.org/Translating_WordPress" target="_blank"> text in PO and MO files</a> for <a href="http://bestwebsoft.com/" target="_blank">BWS</a> and we'll add it to the plugin. You can download the latest version of the program for work with PO and MO files <a href="http://www.poedit.net/download.php" target="_blank">Poedit</a>.
|
32 |
+
|
33 |
+
= Technical support =
|
34 |
+
|
35 |
+
Dear users, if you have any questions or propositions regarding our plugins (current options, new options, current issues) please feel free to contact us. Please note that we accept requests in English only. All messages on another languages wouldn't be accepted.
|
36 |
|
37 |
== Installation ==
|
38 |
|
79 |
|
80 |
== Changelog ==
|
81 |
|
82 |
+
= V2.10 - 04.04.2012 =
|
83 |
+
* NEW : A possibility to turn off the display of the buttons.
|
84 |
+
* NEW : Turkish language file is added to the plugin.
|
85 |
+
* Bugfix : The bug with upload custom image for button is fixed.
|
86 |
+
|
87 |
= V2.09 - 12.03.2012 =
|
88 |
* Changed : BWS plugins section.
|
89 |
|
121 |
|
122 |
== Upgrade Notice ==
|
123 |
|
124 |
+
= V2.10 =
|
125 |
+
Added a possibility to turn off the display of the buttons. Turkish language file is added to the plugin. The bug with upload custom image for button is fixed.
|
126 |
+
|
127 |
= V2.09 =
|
128 |
BWS plugins section has been changed.
|
129 |
|
screenshot-1.jpg
CHANGED
Binary file
|
screenshot-2.jpg
CHANGED
Binary file
|
screenshot-3.jpg
CHANGED
Binary file
|