Version Description
- 05.11.2015 =
- NEW : Hungarian language file is added.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Facebook Button by BestWebSoft |
Version | 2.45 |
Comparing to | |
See all releases |
Code changes from version 2.44 to 2.45
- facebook-button-plugin.php +14 -12
- languages/facebook-button-plugin-hu_HU.mo +0 -0
- languages/facebook-button-plugin-hu_HU.po +323 -0
- readme.txt +9 -2
facebook-button-plugin.php
CHANGED
@@ -6,7 +6,7 @@ Description: Put Facebook Button in to your post.
|
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: facebook-button-plugin
|
8 |
Domain Path: /languages
|
9 |
-
Version: 2.
|
10 |
Author URI: http://bestwebsoft.com/
|
11 |
License: GPLv2 or later
|
12 |
*/
|
@@ -77,7 +77,7 @@ if ( ! function_exists( 'fcbkbttn_init' ) ) {
|
|
77 |
}
|
78 |
/* End function init */
|
79 |
|
80 |
-
|
81 |
if ( ! function_exists( 'fcbkbttn_admin_init' ) ) {
|
82 |
function fcbkbttn_admin_init() {
|
83 |
/* Add variable for bws_menu */
|
@@ -170,8 +170,7 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
|
|
170 |
if ( ! function_exists( 'get_plugins' ) || ! function_exists( 'is_plugin_active' ) )
|
171 |
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
172 |
|
173 |
-
|
174 |
-
$all_plugins = get_plugins();
|
175 |
|
176 |
if ( isset( $_REQUEST['fcbkbttn_form_submit'] ) && check_admin_referer( $plugin_basename, 'fcbkbttn_nonce_name' ) ) {
|
177 |
if ( isset( $_POST['bws_hide_premium_options'] ) ) {
|
@@ -244,7 +243,7 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
|
|
244 |
$error = __( "Error: Invalid file type", 'facebook-button-plugin' );
|
245 |
} else {
|
246 |
$size = GetImageSize( $filename );
|
247 |
-
if (
|
248 |
/* If file satisfies requirements, we will move them from temp to your plugin folder and rename to 'facebook_ico.jpg' */
|
249 |
if ( move_uploaded_file( $_FILES['uploadfile']['tmp_name'], $uploadfile ) ) {
|
250 |
$message .= '. ' . __( "Upload successful.", 'facebook-button-plugin' );
|
@@ -310,15 +309,16 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
|
|
310 |
bws_form_restore_default_confirm( $plugin_basename );
|
311 |
} else { /* check action ##*/ ?>
|
312 |
<br>
|
313 |
-
<div><?php
|
|
|
314 |
__( "If you would like to add Facebook buttons to your page or post, please use %s button", 'facebook-button-plugin' ),
|
315 |
-
'<span class="bws_code"><img style="vertical-align: sub;" src="' .
|
316 |
-
<div class="bws_help_box bws_help_box_right
|
317 |
<div class="bws_hidden_help_text" style="min-width: 180px;">
|
318 |
<?php printf(
|
319 |
__( "You can add Facebook buttons to your page or post by clicking on %s button in the content edit block using the Visual mode. If the button isn't displayed, please use the shortcode %s", 'facebook-button-plugin' ),
|
320 |
-
'<code><img style="vertical-align: sub;" src="' .
|
321 |
-
'<
|
322 |
); ?>
|
323 |
</div>
|
324 |
</div>
|
@@ -535,6 +535,7 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
|
|
535 |
<?php } ?>
|
536 |
<!-- end general -->
|
537 |
</form>
|
|
|
538 |
<?php bws_form_restore_default_settings( $plugin_basename );
|
539 |
}
|
540 |
} elseif ( 'extra' == $_GET['action'] ) { ?>
|
@@ -738,7 +739,7 @@ if ( ! function_exists( 'fcbkbttn_footer_script' ) ) {
|
|
738 |
if ( ! function_exists( 'fcbkbttn_admin_head' ) ) {
|
739 |
function fcbkbttn_admin_head() {
|
740 |
global $fcbkbttn_options, $fcbkbttn_locale, $fcbkbttn_lang_codes;
|
741 |
-
if ( isset( $_GET['page'] ) && "facebook-button-plugin.php" == $_GET['page'] ) {
|
742 |
wp_enqueue_script( 'fcbk_script', plugins_url( 'js/script.js', __FILE__ ), array( 'jquery' ) );
|
743 |
wp_enqueue_style( 'fcbk_stylesheet', plugins_url( 'css/style.css', __FILE__ ) );
|
744 |
} elseif ( ! is_admin() ) {
|
@@ -829,7 +830,8 @@ if ( ! function_exists ( 'fcbkbttn_plugin_banner' ) ) {
|
|
829 |
if ( isset( $fcbkbttn_options['first_install'] ) && strtotime( '-1 week' ) > $fcbkbttn_options['first_install'] )
|
830 |
bws_plugin_banner( $fcbkbttn_plugin_info, 'fcbkbttn', 'facebook-like-button', '45862a4b3cd7a03768666310fbdb19db', '78', '//ps.w.org/facebook-button-plugin/assets/icon-128x128.png' );
|
831 |
|
832 |
-
|
|
|
833 |
}
|
834 |
}
|
835 |
}
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: facebook-button-plugin
|
8 |
Domain Path: /languages
|
9 |
+
Version: 2.45
|
10 |
Author URI: http://bestwebsoft.com/
|
11 |
License: GPLv2 or later
|
12 |
*/
|
77 |
}
|
78 |
/* End function init */
|
79 |
|
80 |
+
/* Function for admin_init */
|
81 |
if ( ! function_exists( 'fcbkbttn_admin_init' ) ) {
|
82 |
function fcbkbttn_admin_init() {
|
83 |
/* Add variable for bws_menu */
|
170 |
if ( ! function_exists( 'get_plugins' ) || ! function_exists( 'is_plugin_active' ) )
|
171 |
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
172 |
|
173 |
+
$all_plugins = get_plugins();
|
|
|
174 |
|
175 |
if ( isset( $_REQUEST['fcbkbttn_form_submit'] ) && check_admin_referer( $plugin_basename, 'fcbkbttn_nonce_name' ) ) {
|
176 |
if ( isset( $_POST['bws_hide_premium_options'] ) ) {
|
243 |
$error = __( "Error: Invalid file type", 'facebook-button-plugin' );
|
244 |
} else {
|
245 |
$size = GetImageSize( $filename );
|
246 |
+
if ( $size && $size[0] <= $max_image_width && $size[1] <= $max_image_height ) {
|
247 |
/* If file satisfies requirements, we will move them from temp to your plugin folder and rename to 'facebook_ico.jpg' */
|
248 |
if ( move_uploaded_file( $_FILES['uploadfile']['tmp_name'], $uploadfile ) ) {
|
249 |
$message .= '. ' . __( "Upload successful.", 'facebook-button-plugin' );
|
309 |
bws_form_restore_default_confirm( $plugin_basename );
|
310 |
} else { /* check action ##*/ ?>
|
311 |
<br>
|
312 |
+
<div><?php $icon_shortcode = ( "facebook-button-plugin.php" == $_GET['page'] ) ? plugins_url( 'bws_menu/images/shortcode-icon.png', __FILE__ ) : plugins_url( 'social-buttons-pack/bws_menu/images/shortcode-icon.png' );
|
313 |
+
printf(
|
314 |
__( "If you would like to add Facebook buttons to your page or post, please use %s button", 'facebook-button-plugin' ),
|
315 |
+
'<span class="bws_code"><img style="vertical-align: sub;" src="' . $icon_shortcode . '" alt=""/></span>' ); ?>
|
316 |
+
<div class="bws_help_box bws_help_box_right dashicons dashicons-editor-help">
|
317 |
<div class="bws_hidden_help_text" style="min-width: 180px;">
|
318 |
<?php printf(
|
319 |
__( "You can add Facebook buttons to your page or post by clicking on %s button in the content edit block using the Visual mode. If the button isn't displayed, please use the shortcode %s", 'facebook-button-plugin' ),
|
320 |
+
'<code><img style="vertical-align: sub;" src="' . $icon_shortcode . '" alt="" /></code>',
|
321 |
+
'<code>[fb_button]</code>'
|
322 |
); ?>
|
323 |
</div>
|
324 |
</div>
|
535 |
<?php } ?>
|
536 |
<!-- end general -->
|
537 |
</form>
|
538 |
+
<!-- general -->
|
539 |
<?php bws_form_restore_default_settings( $plugin_basename );
|
540 |
}
|
541 |
} elseif ( 'extra' == $_GET['action'] ) { ?>
|
739 |
if ( ! function_exists( 'fcbkbttn_admin_head' ) ) {
|
740 |
function fcbkbttn_admin_head() {
|
741 |
global $fcbkbttn_options, $fcbkbttn_locale, $fcbkbttn_lang_codes;
|
742 |
+
if ( isset( $_GET['page'] ) && ( "facebook-button-plugin.php" == $_GET['page'] || "social-buttons.php" == $_GET['page'] ) ) {
|
743 |
wp_enqueue_script( 'fcbk_script', plugins_url( 'js/script.js', __FILE__ ), array( 'jquery' ) );
|
744 |
wp_enqueue_style( 'fcbk_stylesheet', plugins_url( 'css/style.css', __FILE__ ) );
|
745 |
} elseif ( ! is_admin() ) {
|
830 |
if ( isset( $fcbkbttn_options['first_install'] ) && strtotime( '-1 week' ) > $fcbkbttn_options['first_install'] )
|
831 |
bws_plugin_banner( $fcbkbttn_plugin_info, 'fcbkbttn', 'facebook-like-button', '45862a4b3cd7a03768666310fbdb19db', '78', '//ps.w.org/facebook-button-plugin/assets/icon-128x128.png' );
|
832 |
|
833 |
+
if ( ! is_network_admin() )
|
834 |
+
bws_plugin_banner_to_settings( $fcbkbttn_plugin_info, 'fcbk_bttn_plgn_options', 'facebook-button-plugin', 'admin.php?page=facebook-button-plugin.php' );
|
835 |
}
|
836 |
}
|
837 |
}
|
languages/facebook-button-plugin-hu_HU.mo
ADDED
Binary file
|
languages/facebook-button-plugin-hu_HU.po
ADDED
@@ -0,0 +1,323 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: facebook\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-11-04 14:12+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-11-04 14:12+0300\n"
|
7 |
+
"Last-Translator: Áprily Péter <info@aprily.com>\n"
|
8 |
+
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
+
"Language: ru_RU\n"
|
10 |
+
"MIME-Version: 1.0\n"
|
11 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
+
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
+
"X-Poedit-Basepath: ..\n"
|
15 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Generator: Poedit 1.5.4\n"
|
17 |
+
"X-Poedit-SearchPath-0: .\n"
|
18 |
+
|
19 |
+
#: facebook-button-plugin.php:34 facebook-button-plugin.php:293
|
20 |
+
msgid "Facebook Button Settings"
|
21 |
+
msgstr "Facebook Gomb Beállítások"
|
22 |
+
|
23 |
+
#: facebook-button-plugin.php:215
|
24 |
+
msgid "Settings saved"
|
25 |
+
msgstr "Beállítások mentve"
|
26 |
+
|
27 |
+
#: facebook-button-plugin.php:241
|
28 |
+
msgid "Error: File size > 32K"
|
29 |
+
msgstr "Hiba: File méret > 32k"
|
30 |
+
|
31 |
+
#: facebook-button-plugin.php:244
|
32 |
+
msgid "Error: Invalid file type"
|
33 |
+
msgstr "Hiba: Érvénytelen file típus"
|
34 |
+
|
35 |
+
#: facebook-button-plugin.php:250
|
36 |
+
msgid "Upload successful."
|
37 |
+
msgstr "A feltöltés sikeres."
|
38 |
+
|
39 |
+
#: facebook-button-plugin.php:260
|
40 |
+
msgid "Error: moving file failed"
|
41 |
+
msgstr "Hiba: file mozgatás sikertelen"
|
42 |
+
|
43 |
+
#: facebook-button-plugin.php:263
|
44 |
+
msgid "Error: check image width or height"
|
45 |
+
msgstr "Hiba: ellenőrizze a kép szélességét és magasságát"
|
46 |
+
|
47 |
+
#: facebook-button-plugin.php:267
|
48 |
+
msgid "Uploading Error: check image properties"
|
49 |
+
msgstr "Feltöltési Hiba: ellenőrizze a kép tulajdonságait"
|
50 |
+
|
51 |
+
#: facebook-button-plugin.php:280
|
52 |
+
msgid "All plugin settings were restored."
|
53 |
+
msgstr "Minden plugin paraméter visszaállítva."
|
54 |
+
|
55 |
+
#: facebook-button-plugin.php:295 facebook-button-plugin.php:786
|
56 |
+
#: facebook-button-plugin.php:800
|
57 |
+
msgid "Settings"
|
58 |
+
msgstr "Beállítások"
|
59 |
+
|
60 |
+
#: facebook-button-plugin.php:296
|
61 |
+
msgid "Extra settings"
|
62 |
+
msgstr "Extra beállítások"
|
63 |
+
|
64 |
+
#: facebook-button-plugin.php:297
|
65 |
+
msgid "Go PRO"
|
66 |
+
msgstr "PRO-ra váltás"
|
67 |
+
|
68 |
+
#: facebook-button-plugin.php:300
|
69 |
+
msgid "Please, enable JavaScript in Your browser."
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: facebook-button-plugin.php:314
|
73 |
+
#, fuzzy, php-format
|
74 |
+
msgid ""
|
75 |
+
"If you would like to add Facebook buttons to your page or post, please use "
|
76 |
+
"%s button"
|
77 |
+
msgstr ""
|
78 |
+
"Ha az oldalához Facebook gombot szeretne adni, csak másolja be ezt a rövid "
|
79 |
+
"kódot a bejegyzésbe vagy az oldalra:"
|
80 |
+
|
81 |
+
#: facebook-button-plugin.php:319
|
82 |
+
#, php-format
|
83 |
+
msgid ""
|
84 |
+
"You can add Facebook buttons to your page or post by clicking on %s button "
|
85 |
+
"in the content edit block using the Visual mode. If the button isn't "
|
86 |
+
"displayed, please use the shortcode %s"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: facebook-button-plugin.php:330
|
90 |
+
msgid "Display button"
|
91 |
+
msgstr "Gomb megjelenítése"
|
92 |
+
|
93 |
+
#: facebook-button-plugin.php:333
|
94 |
+
msgid "My Page"
|
95 |
+
msgstr "Oldalam"
|
96 |
+
|
97 |
+
#: facebook-button-plugin.php:334 facebook-button-plugin.php:441
|
98 |
+
msgid "Like"
|
99 |
+
msgstr "Like"
|
100 |
+
|
101 |
+
#: facebook-button-plugin.php:335
|
102 |
+
msgid "Share"
|
103 |
+
msgstr "Megosztás"
|
104 |
+
|
105 |
+
#: facebook-button-plugin.php:340
|
106 |
+
msgid "Facebook buttons position"
|
107 |
+
msgstr "Facebook gombok helye"
|
108 |
+
|
109 |
+
#: facebook-button-plugin.php:343
|
110 |
+
msgid "Before"
|
111 |
+
msgstr "Előtte"
|
112 |
+
|
113 |
+
#: facebook-button-plugin.php:344
|
114 |
+
msgid "After"
|
115 |
+
msgstr "Utána"
|
116 |
+
|
117 |
+
#: facebook-button-plugin.php:345
|
118 |
+
msgid "Before and After"
|
119 |
+
msgstr "Előtte és Utána"
|
120 |
+
|
121 |
+
#: facebook-button-plugin.php:346
|
122 |
+
msgid "Shortcode"
|
123 |
+
msgstr "Rövid kód"
|
124 |
+
|
125 |
+
#: facebook-button-plugin.php:351
|
126 |
+
msgid "Facebook buttons language"
|
127 |
+
msgstr "Facebook gomb nyelve"
|
128 |
+
|
129 |
+
#: facebook-button-plugin.php:362
|
130 |
+
#, fuzzy
|
131 |
+
msgid "Change the language of Facebook Button"
|
132 |
+
msgstr "Facebook Like Gomb nyelvének megváltoztatása"
|
133 |
+
|
134 |
+
#: facebook-button-plugin.php:367 facebook-button-plugin.php:370
|
135 |
+
#: facebook-button-plugin.php:375
|
136 |
+
msgid "Use the current site language"
|
137 |
+
msgstr ""
|
138 |
+
|
139 |
+
#: facebook-button-plugin.php:367 facebook-button-plugin.php:371
|
140 |
+
#: facebook-button-plugin.php:376
|
141 |
+
msgid "Using"
|
142 |
+
msgstr ""
|
143 |
+
|
144 |
+
#: facebook-button-plugin.php:371
|
145 |
+
msgid "Activate"
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: facebook-button-plugin.php:376
|
149 |
+
msgid "Download"
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: facebook-button-plugin.php:383
|
153 |
+
#, fuzzy
|
154 |
+
msgid "Display buttons in excerpt"
|
155 |
+
msgstr "Gomb megjelenítése"
|
156 |
+
|
157 |
+
#: facebook-button-plugin.php:389
|
158 |
+
msgid "Your Facebook ID or username"
|
159 |
+
msgstr "Facebook ID-je vagy felhasználóneve"
|
160 |
+
|
161 |
+
#: facebook-button-plugin.php:396
|
162 |
+
msgid "\"My page\" button image"
|
163 |
+
msgstr "\"Oldalam\" gomb képe"
|
164 |
+
|
165 |
+
#: facebook-button-plugin.php:401
|
166 |
+
msgid "Standard Facebook image"
|
167 |
+
msgstr "Normál Facebook kép"
|
168 |
+
|
169 |
+
#: facebook-button-plugin.php:402
|
170 |
+
msgid "Custom Facebook image"
|
171 |
+
msgstr "Egyéni Facebook kép"
|
172 |
+
|
173 |
+
#: facebook-button-plugin.php:405
|
174 |
+
msgid ""
|
175 |
+
"To use custom image you need to setup permissions to upload directory of "
|
176 |
+
"your site"
|
177 |
+
msgstr ""
|
178 |
+
"Egyedi kép használatához az oldala feltöltési könyvtárához jogosultságot "
|
179 |
+
"kell beállítania"
|
180 |
+
|
181 |
+
#: facebook-button-plugin.php:412
|
182 |
+
msgid "Current image"
|
183 |
+
msgstr "Aktuális kép"
|
184 |
+
|
185 |
+
#: facebook-button-plugin.php:420
|
186 |
+
msgid ""
|
187 |
+
"Image properties: max image width:100px; max image height:40px; max image "
|
188 |
+
"size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
189 |
+
msgstr ""
|
190 |
+
"Kép paraméterek: max kép szélesség: 100px; max kép magasság: 40px; max kép "
|
191 |
+
"méret: 32Kb; kép típusok:\"jpg\", \"jpeg\", \"png\"."
|
192 |
+
|
193 |
+
#: facebook-button-plugin.php:424
|
194 |
+
msgid "Button layout"
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: facebook-button-plugin.php:438
|
198 |
+
#, fuzzy
|
199 |
+
msgid "Like button action"
|
200 |
+
msgstr "Facebook gombok helye"
|
201 |
+
|
202 |
+
#: facebook-button-plugin.php:442
|
203 |
+
msgid "Recommend"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: facebook-button-plugin.php:447
|
207 |
+
#, fuzzy
|
208 |
+
msgid "Show faces"
|
209 |
+
msgstr "URL megjelenítése oldalakon"
|
210 |
+
|
211 |
+
#: facebook-button-plugin.php:453
|
212 |
+
msgid "Layout width"
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: facebook-button-plugin.php:459
|
216 |
+
msgid "Color scheme"
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: facebook-button-plugin.php:462
|
220 |
+
msgid "Light"
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: facebook-button-plugin.php:463
|
224 |
+
msgid "Dark"
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: facebook-button-plugin.php:468
|
228 |
+
msgid "Html tag for \"Like\" button"
|
229 |
+
msgstr "A \"Like\" gomb html címkéje"
|
230 |
+
|
231 |
+
#: facebook-button-plugin.php:473
|
232 |
+
msgid "Use this tag to improve validation of your site"
|
233 |
+
msgstr "Használja ezt a címkét oldala minősítésének javításához"
|
234 |
+
|
235 |
+
#: facebook-button-plugin.php:482 facebook-button-plugin.php:519
|
236 |
+
msgid "Close"
|
237 |
+
msgstr ""
|
238 |
+
|
239 |
+
#: facebook-button-plugin.php:486
|
240 |
+
msgid "\"Like\" for an entire site on every page:"
|
241 |
+
msgstr "\"Like\" a weboldal minden lapjára:"
|
242 |
+
|
243 |
+
#: facebook-button-plugin.php:488
|
244 |
+
msgid ""
|
245 |
+
"Notice: \"Like for the entire site\" option does not create an extra button. "
|
246 |
+
"This option merely allows your users to like the entire website when this "
|
247 |
+
"option is enabled, or a single post when this option is disabled, when "
|
248 |
+
"clicking the regular \"Like\" button."
|
249 |
+
msgstr ""
|
250 |
+
"Megjegyzés: \"Like az egész oldalnak\" beállítás nem hoz létre extra gombot. "
|
251 |
+
"Ez a beállítás csupán megengedi a felhasználóknak, hogy az egész oldalt "
|
252 |
+
"kedveljék, ha ez a beállítás engedélyezett vagy egy egyedi bejegyzést, ha ez "
|
253 |
+
"a beállítás kikapcsolt, ha a normál \"Like\" gombra kattintanak."
|
254 |
+
|
255 |
+
#: facebook-button-plugin.php:493 facebook-button-plugin.php:570
|
256 |
+
msgid "If you upgrade to Pro version all your settings will be saved."
|
257 |
+
msgstr "Ha a PRO verzióra vált, minden paramétere el lesz mentve."
|
258 |
+
|
259 |
+
#: facebook-button-plugin.php:500 facebook-button-plugin.php:528
|
260 |
+
#: facebook-button-plugin.php:577
|
261 |
+
#, fuzzy
|
262 |
+
msgid "Unlock premium options by upgrading to Pro version"
|
263 |
+
msgstr "A prémium paramétereket elérheti a PRO változatra váltással."
|
264 |
+
|
265 |
+
#: facebook-button-plugin.php:502 facebook-button-plugin.php:530
|
266 |
+
#: facebook-button-plugin.php:579
|
267 |
+
msgid "Learn More"
|
268 |
+
msgstr "Olvasson tovább"
|
269 |
+
|
270 |
+
#: facebook-button-plugin.php:510 facebook-button-plugin.php:565
|
271 |
+
msgid "Save Changes"
|
272 |
+
msgstr "Változások mentése"
|
273 |
+
|
274 |
+
#: facebook-button-plugin.php:522
|
275 |
+
#, fuzzy
|
276 |
+
msgid "Facebook Button preview:"
|
277 |
+
msgstr "Facebook Gomb Beállítások"
|
278 |
+
|
279 |
+
#: facebook-button-plugin.php:547
|
280 |
+
msgid ""
|
281 |
+
"Please choose the necessary post types (or single pages) where Facebook "
|
282 |
+
"button will be displayed:"
|
283 |
+
msgstr ""
|
284 |
+
"Kérjük válassza ki a szükséges bejegyzés típusokat (vagy egyedi oldalakat) "
|
285 |
+
"ahol a Facebook gomb megjelenjen:"
|
286 |
+
|
287 |
+
#: facebook-button-plugin.php:554
|
288 |
+
msgid "Show URL for pages"
|
289 |
+
msgstr "URL megjelenítése oldalakon"
|
290 |
+
|
291 |
+
#: facebook-button-plugin.php:560
|
292 |
+
msgid "Example of the site's pages tree"
|
293 |
+
msgstr "Példa az oldal lap struktúrájának fájára"
|
294 |
+
|
295 |
+
#: facebook-button-plugin.php:560
|
296 |
+
msgid "Example of site pages' tree"
|
297 |
+
msgstr "Példa oldal lapjainak fa struktúrájára"
|
298 |
+
|
299 |
+
#: facebook-button-plugin.php:692
|
300 |
+
#, fuzzy
|
301 |
+
msgid "Add Facebook buttons to your page or post"
|
302 |
+
msgstr "Facebook gombok helye"
|
303 |
+
|
304 |
+
#: facebook-button-plugin.php:801
|
305 |
+
msgid "FAQ"
|
306 |
+
msgstr "Gy.I.K."
|
307 |
+
|
308 |
+
#: facebook-button-plugin.php:802
|
309 |
+
msgid "Support"
|
310 |
+
msgstr "Támogatás"
|
311 |
+
|
312 |
+
#~ msgid "Notice:"
|
313 |
+
#~ msgstr "Megjegyzés:"
|
314 |
+
|
315 |
+
#~ msgid ""
|
316 |
+
#~ "The plugin's settings have been changed. In order to save them please "
|
317 |
+
#~ "don't forget to click the 'Save Changes' button."
|
318 |
+
#~ msgstr ""
|
319 |
+
#~ "A plugin beállításai megváltoztak. A mentésükhöz ne felejtsen a "
|
320 |
+
#~ "'Változások mentése' gombra kattintani."
|
321 |
+
|
322 |
+
#~ msgid "Go"
|
323 |
+
#~ msgstr "Mehet"
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://bestwebsoft.com/donate/
|
|
4 |
Tags: add button, add social button, add fb button, add facebook social button, add social buttons, add facebook button, add share button, add fb share button, add facebook share button, batton, best facebook plugin, best fb like button, best facebook like button, buton, button, button image, Button like, button position, FB, fb button, fb like, fb like button, fb share, Facebook, Facebook account button, facebook button, facebook button icon, facebook button language, Facebook button like, Facebook button share, Facebook ID, facebook like, facebook like button, Facebook Page, facebook share, facebook share button, follow, folow, follow button, icon, Like, like, likes, like button, My Page button, nice fb like button, nice facebook button, nice fb button, simple fb plugin, simple facebook plugin, social plugin, social plugins, Share, share button, social, social account, social button, wp plugin, wp social plugin, wordpress social plugin
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 4.3.1
|
7 |
-
Stable tag: 2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -14,7 +14,7 @@ Add Facebook buttons to your WordPress website.
|
|
14 |
|
15 |
Facebook Button plugin allows you to add a Follow button the easiest way. If your life is tightly connected with your Facebook account, our plugin is the best solution for you. It contains minimum settings. Just a few clicks and voila - Facebook Button is on your site.
|
16 |
|
17 |
-
http://www.youtube.com/watch?v=
|
18 |
|
19 |
<a href="http://www.youtube.com/watch?v=pAKsQPz3RZc" target="_blank">Facebook Button by BestWebSoft Video instruction on Installation</a>
|
20 |
|
@@ -47,6 +47,7 @@ There is also a premium version of the plugin <a href="http://bestwebsoft.com/pr
|
|
47 |
* Finnish (fi_FI) (thanks to <a href="mailto:juhani.honkanen@dnainternet.net">Juhani Honkanen</a>)
|
48 |
* French (fr_FR) (thanks to <a href="mailto:wpthemefr@gmail.com">Murat</a>)
|
49 |
* Indonesian (id_ID) (thanks to Nasrulhaq, www.al-badar.net)
|
|
|
50 |
* Russian (ru_RU)
|
51 |
* Turkish (tr_TR) (thanks to <a href="mailto:webmaster@canatasever.com">Can Atasever</a>)
|
52 |
* Ukrainian (uk)
|
@@ -113,6 +114,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
|
|
113 |
|
114 |
== Changelog ==
|
115 |
|
|
|
|
|
|
|
116 |
= V2.44 - 21.10.2015 =
|
117 |
* NEW : We added 'Show Faces' option.
|
118 |
* NEW : We added 'Button layout' option.
|
@@ -297,6 +301,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
|
|
297 |
|
298 |
== Upgrade Notice ==
|
299 |
|
|
|
|
|
|
|
300 |
= V2.44 =
|
301 |
We added 'Show Faces' option. We added 'Button layout' option. We added 'Layout width' option. We added 'Like button action' option. We added 'Color scheme' option. Textdomain was changed. We updated all functionality for wordpress 4.3.1.
|
302 |
|
4 |
Tags: add button, add social button, add fb button, add facebook social button, add social buttons, add facebook button, add share button, add fb share button, add facebook share button, batton, best facebook plugin, best fb like button, best facebook like button, buton, button, button image, Button like, button position, FB, fb button, fb like, fb like button, fb share, Facebook, Facebook account button, facebook button, facebook button icon, facebook button language, Facebook button like, Facebook button share, Facebook ID, facebook like, facebook like button, Facebook Page, facebook share, facebook share button, follow, folow, follow button, icon, Like, like, likes, like button, My Page button, nice fb like button, nice facebook button, nice fb button, simple fb plugin, simple facebook plugin, social plugin, social plugins, Share, share button, social, social account, social button, wp plugin, wp social plugin, wordpress social plugin
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 4.3.1
|
7 |
+
Stable tag: 2.45
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
14 |
|
15 |
Facebook Button plugin allows you to add a Follow button the easiest way. If your life is tightly connected with your Facebook account, our plugin is the best solution for you. It contains minimum settings. Just a few clicks and voila - Facebook Button is on your site.
|
16 |
|
17 |
+
http://www.youtube.com/watch?v=hGNQs-rF8b8
|
18 |
|
19 |
<a href="http://www.youtube.com/watch?v=pAKsQPz3RZc" target="_blank">Facebook Button by BestWebSoft Video instruction on Installation</a>
|
20 |
|
47 |
* Finnish (fi_FI) (thanks to <a href="mailto:juhani.honkanen@dnainternet.net">Juhani Honkanen</a>)
|
48 |
* French (fr_FR) (thanks to <a href="mailto:wpthemefr@gmail.com">Murat</a>)
|
49 |
* Indonesian (id_ID) (thanks to Nasrulhaq, www.al-badar.net)
|
50 |
+
* Hungarian (hu_HU) (thanks to <a href="mailto:solarside09@gmail.com">Peter Aprily</a> www.aprily.com)
|
51 |
* Russian (ru_RU)
|
52 |
* Turkish (tr_TR) (thanks to <a href="mailto:webmaster@canatasever.com">Can Atasever</a>)
|
53 |
* Ukrainian (uk)
|
114 |
|
115 |
== Changelog ==
|
116 |
|
117 |
+
= V2.45 - 05.11.2015 =
|
118 |
+
* NEW : Hungarian language file is added.
|
119 |
+
|
120 |
= V2.44 - 21.10.2015 =
|
121 |
* NEW : We added 'Show Faces' option.
|
122 |
* NEW : We added 'Button layout' option.
|
301 |
|
302 |
== Upgrade Notice ==
|
303 |
|
304 |
+
= V2.45 =
|
305 |
+
Hungarian language file is added.
|
306 |
+
|
307 |
= V2.44 =
|
308 |
We added 'Show Faces' option. We added 'Button layout' option. We added 'Layout width' option. We added 'Like button action' option. We added 'Color scheme' option. Textdomain was changed. We updated all functionality for wordpress 4.3.1.
|
309 |
|