Version Description
- 15.01.2019 =
- NEW: Ability to disable Meta Tags has been added.
- NEW: Ability to enable Facebook buttons for archives has been added.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Facebook Button by BestWebSoft |
Version | 2.61 |
Comparing to | |
See all releases |
Code changes from version 2.60 to 2.61
- bws_menu/js/c_o_o_k_i_e.js +95 -95
- css/style.css +3 -0
- facebook-button-plugin.php +102 -7
- includes/class-fcbkbttn-settings.php +8 -1
- js/admin-script.js +72 -72
- js/script.js +10 -10
- languages/facebook-button-plugin-cs_CZ.mo +0 -0
- languages/facebook-button-plugin-cs_CZ.po +245 -84
- languages/facebook-button-plugin-ru_RU.mo +0 -0
- languages/facebook-button-plugin-ru_RU.po +95 -87
- languages/facebook-button-plugin-tr_TR.mo +0 -0
- languages/facebook-button-plugin-tr_TR.po +96 -87
- languages/facebook-button-plugin-uk.mo +0 -0
- languages/facebook-button-plugin-uk.po +95 -87
- readme.txt +599 -593
- screenshot-3.png +0 -0
bws_menu/js/c_o_o_k_i_e.js
CHANGED
@@ -1,96 +1,96 @@
|
|
1 |
-
/**
|
2 |
-
* Cookie plugin
|
3 |
-
*
|
4 |
-
* Copyright (c) 2006 Klaus Hartl (stilbuero.de)
|
5 |
-
* Dual licensed under the MIT and GPL licenses:
|
6 |
-
* http://www.opensource.org/licenses/mit-license.php
|
7 |
-
* http://www.gnu.org/licenses/gpl.html
|
8 |
-
*
|
9 |
-
*/
|
10 |
-
|
11 |
-
/**
|
12 |
-
* Create a cookie with the given name and value and other optional parameters.
|
13 |
-
*
|
14 |
-
* @example $.cookie('the_cookie', 'the_value');
|
15 |
-
* @desc Set the value of a cookie.
|
16 |
-
* @example $.cookie('the_cookie', 'the_value', { expires: 7, path: '/', domain: 'jquery.com', secure: true });
|
17 |
-
* @desc Create a cookie with all available options.
|
18 |
-
* @example $.cookie('the_cookie', 'the_value');
|
19 |
-
* @desc Create a session cookie.
|
20 |
-
* @example $.cookie('the_cookie', null);
|
21 |
-
* @desc Delete a cookie by passing null as value. Keep in mind that you have to use the same path and domain
|
22 |
-
* used when the cookie was set.
|
23 |
-
*
|
24 |
-
* @param String name The name of the cookie.
|
25 |
-
* @param String value The value of the cookie.
|
26 |
-
* @param Object options An object literal containing key/value pairs to provide optional cookie attributes.
|
27 |
-
* @option Number|Date expires Either an integer specifying the expiration date from now on in days or a Date object.
|
28 |
-
* If a negative value is specified (e.g. a date in the past), the cookie will be deleted.
|
29 |
-
* If set to null or omitted, the cookie will be a session cookie and will not be retained
|
30 |
-
* when the the browser exits.
|
31 |
-
* @option String path The value of the path atribute of the cookie (default: path of page that created the cookie).
|
32 |
-
* @option String domain The value of the domain attribute of the cookie (default: domain of page that created the cookie).
|
33 |
-
* @option Boolean secure If true, the secure attribute of the cookie will be set and the cookie transmission will
|
34 |
-
* require a secure protocol (like HTTPS).
|
35 |
-
* @type undefined
|
36 |
-
*
|
37 |
-
* @name $.cookie
|
38 |
-
* @cat Plugins/Cookie
|
39 |
-
* @author Klaus Hartl/klaus.hartl@stilbuero.de
|
40 |
-
*/
|
41 |
-
|
42 |
-
/**
|
43 |
-
* Get the value of a cookie with the given name.
|
44 |
-
*
|
45 |
-
* @example $.cookie('the_cookie');
|
46 |
-
* @desc Get the value of a cookie.
|
47 |
-
*
|
48 |
-
* @param String name The name of the cookie.
|
49 |
-
* @return The value of the cookie.
|
50 |
-
* @type String
|
51 |
-
*
|
52 |
-
* @name $.cookie
|
53 |
-
* @cat Plugins/Cookie
|
54 |
-
* @author Klaus Hartl/klaus.hartl@stilbuero.de
|
55 |
-
*/
|
56 |
-
jQuery.cookie = function(name, value, options) {
|
57 |
-
if (typeof value != 'undefined') { // name and value given, set cookie
|
58 |
-
options = options || {};
|
59 |
-
if (value === null) {
|
60 |
-
value = '';
|
61 |
-
options.expires = -1;
|
62 |
-
}
|
63 |
-
var expires = '';
|
64 |
-
if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) {
|
65 |
-
var date;
|
66 |
-
if (typeof options.expires == 'number') {
|
67 |
-
date = new Date();
|
68 |
-
date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));
|
69 |
-
} else {
|
70 |
-
date = options.expires;
|
71 |
-
}
|
72 |
-
expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE
|
73 |
-
}
|
74 |
-
// CAUTION: Needed to parenthesize options.path and options.domain
|
75 |
-
// in the following expressions, otherwise they evaluate to undefined
|
76 |
-
// in the packed version for some reason...
|
77 |
-
var path = options.path ? '; path=' + (options.path) : '';
|
78 |
-
var domain = options.domain ? '; domain=' + (options.domain) : '';
|
79 |
-
var secure = options.secure ? '; secure' : '';
|
80 |
-
document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
|
81 |
-
} else { // only name given, get cookie
|
82 |
-
var cookieValue = null;
|
83 |
-
if (document.cookie && document.cookie != '') {
|
84 |
-
var cookies = document.cookie.split(';');
|
85 |
-
for (var i = 0; i < cookies.length; i++) {
|
86 |
-
var cookie = jQuery.trim(cookies[i]);
|
87 |
-
// Does this cookie string begin with the name we want?
|
88 |
-
if (cookie.substring(0, name.length + 1) == (name + '=')) {
|
89 |
-
cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
|
90 |
-
break;
|
91 |
-
}
|
92 |
-
}
|
93 |
-
}
|
94 |
-
return cookieValue;
|
95 |
-
}
|
96 |
};
|
1 |
+
/**
|
2 |
+
* Cookie plugin
|
3 |
+
*
|
4 |
+
* Copyright (c) 2006 Klaus Hartl (stilbuero.de)
|
5 |
+
* Dual licensed under the MIT and GPL licenses:
|
6 |
+
* http://www.opensource.org/licenses/mit-license.php
|
7 |
+
* http://www.gnu.org/licenses/gpl.html
|
8 |
+
*
|
9 |
+
*/
|
10 |
+
|
11 |
+
/**
|
12 |
+
* Create a cookie with the given name and value and other optional parameters.
|
13 |
+
*
|
14 |
+
* @example $.cookie('the_cookie', 'the_value');
|
15 |
+
* @desc Set the value of a cookie.
|
16 |
+
* @example $.cookie('the_cookie', 'the_value', { expires: 7, path: '/', domain: 'jquery.com', secure: true });
|
17 |
+
* @desc Create a cookie with all available options.
|
18 |
+
* @example $.cookie('the_cookie', 'the_value');
|
19 |
+
* @desc Create a session cookie.
|
20 |
+
* @example $.cookie('the_cookie', null);
|
21 |
+
* @desc Delete a cookie by passing null as value. Keep in mind that you have to use the same path and domain
|
22 |
+
* used when the cookie was set.
|
23 |
+
*
|
24 |
+
* @param String name The name of the cookie.
|
25 |
+
* @param String value The value of the cookie.
|
26 |
+
* @param Object options An object literal containing key/value pairs to provide optional cookie attributes.
|
27 |
+
* @option Number|Date expires Either an integer specifying the expiration date from now on in days or a Date object.
|
28 |
+
* If a negative value is specified (e.g. a date in the past), the cookie will be deleted.
|
29 |
+
* If set to null or omitted, the cookie will be a session cookie and will not be retained
|
30 |
+
* when the the browser exits.
|
31 |
+
* @option String path The value of the path atribute of the cookie (default: path of page that created the cookie).
|
32 |
+
* @option String domain The value of the domain attribute of the cookie (default: domain of page that created the cookie).
|
33 |
+
* @option Boolean secure If true, the secure attribute of the cookie will be set and the cookie transmission will
|
34 |
+
* require a secure protocol (like HTTPS).
|
35 |
+
* @type undefined
|
36 |
+
*
|
37 |
+
* @name $.cookie
|
38 |
+
* @cat Plugins/Cookie
|
39 |
+
* @author Klaus Hartl/klaus.hartl@stilbuero.de
|
40 |
+
*/
|
41 |
+
|
42 |
+
/**
|
43 |
+
* Get the value of a cookie with the given name.
|
44 |
+
*
|
45 |
+
* @example $.cookie('the_cookie');
|
46 |
+
* @desc Get the value of a cookie.
|
47 |
+
*
|
48 |
+
* @param String name The name of the cookie.
|
49 |
+
* @return The value of the cookie.
|
50 |
+
* @type String
|
51 |
+
*
|
52 |
+
* @name $.cookie
|
53 |
+
* @cat Plugins/Cookie
|
54 |
+
* @author Klaus Hartl/klaus.hartl@stilbuero.de
|
55 |
+
*/
|
56 |
+
jQuery.cookie = function(name, value, options) {
|
57 |
+
if (typeof value != 'undefined') { // name and value given, set cookie
|
58 |
+
options = options || {};
|
59 |
+
if (value === null) {
|
60 |
+
value = '';
|
61 |
+
options.expires = -1;
|
62 |
+
}
|
63 |
+
var expires = '';
|
64 |
+
if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) {
|
65 |
+
var date;
|
66 |
+
if (typeof options.expires == 'number') {
|
67 |
+
date = new Date();
|
68 |
+
date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));
|
69 |
+
} else {
|
70 |
+
date = options.expires;
|
71 |
+
}
|
72 |
+
expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE
|
73 |
+
}
|
74 |
+
// CAUTION: Needed to parenthesize options.path and options.domain
|
75 |
+
// in the following expressions, otherwise they evaluate to undefined
|
76 |
+
// in the packed version for some reason...
|
77 |
+
var path = options.path ? '; path=' + (options.path) : '';
|
78 |
+
var domain = options.domain ? '; domain=' + (options.domain) : '';
|
79 |
+
var secure = options.secure ? '; secure' : '';
|
80 |
+
document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
|
81 |
+
} else { // only name given, get cookie
|
82 |
+
var cookieValue = null;
|
83 |
+
if (document.cookie && document.cookie != '') {
|
84 |
+
var cookies = document.cookie.split(';');
|
85 |
+
for (var i = 0; i < cookies.length; i++) {
|
86 |
+
var cookie = jQuery.trim(cookies[i]);
|
87 |
+
// Does this cookie string begin with the name we want?
|
88 |
+
if (cookie.substring(0, name.length + 1) == (name + '=')) {
|
89 |
+
cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
|
90 |
+
break;
|
91 |
+
}
|
92 |
+
}
|
93 |
+
}
|
94 |
+
return cookieValue;
|
95 |
+
}
|
96 |
};
|
css/style.css
CHANGED
@@ -60,6 +60,9 @@
|
|
60 |
display: inline-block !important;
|
61 |
margin-bottom: 10px;
|
62 |
}
|
|
|
|
|
|
|
63 |
|
64 |
@media screen and ( max-width: 1070px ) {
|
65 |
.fb-share-button.fb_iframe_widget.fb_iframe_widget_fluid {
|
60 |
display: inline-block !important;
|
61 |
margin-bottom: 10px;
|
62 |
}
|
63 |
+
.fcbkbttn_arhiv {
|
64 |
+
margin-bottom: 50px;
|
65 |
+
}
|
66 |
|
67 |
@media screen and ( max-width: 1070px ) {
|
68 |
.fb-share-button.fb_iframe_widget.fb_iframe_widget_fluid {
|
facebook-button-plugin.php
CHANGED
@@ -6,12 +6,12 @@ Description: Add Facebook Like, Share and Profile buttons to WordPress posts, pa
|
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: facebook-button-plugin
|
8 |
Domain Path: /languages
|
9 |
-
Version: 2.
|
10 |
Author URI: https://bestwebsoft.com/
|
11 |
License: GPLv2 or later
|
12 |
*/
|
13 |
|
14 |
-
/* Copyright
|
15 |
|
16 |
This program is free software; you can redistribute it and/or modify
|
17 |
it under the terms of the GNU General Public License, version 2, as
|
@@ -189,6 +189,7 @@ if ( ! function_exists( 'fcbkbttn_get_options_default' ) ) {
|
|
189 |
'html5' => 0,
|
190 |
'use_multilanguage_locale' => 0,
|
191 |
'display_for_excerpt' => 0,
|
|
|
192 |
'location' => 'left',
|
193 |
'id' => 1443946719181573
|
194 |
);
|
@@ -296,6 +297,73 @@ if ( ! function_exists( 'fcbkbttn_button' ) ) {
|
|
296 |
}
|
297 |
}
|
298 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
299 |
/* Function taking from array 'fcbkbttn_options' necessary information to create Facebook Button and reacting to your choise in plugin menu - points where it appears. */
|
300 |
if ( ! function_exists( 'fcbkbttn_display_button' ) ) {
|
301 |
function fcbkbttn_display_button( $content ) {
|
@@ -354,15 +422,15 @@ if ( ! function_exists( 'fcbkbttn_shortcode_button_content' ) ) {
|
|
354 |
/* Functions adds some right meta for Facebook */
|
355 |
if ( ! function_exists( 'fcbkbttn_meta' ) ) {
|
356 |
function fcbkbttn_meta() {
|
357 |
-
global $fcbkbttn_options, $post;
|
358 |
if ( ! empty( $fcbkbttn_options['like'] ) || ! empty( $fcbkbttn_options['share'] ) ) {
|
359 |
-
if ( is_singular() ) {
|
360 |
$image = '';
|
361 |
if ( has_post_thumbnail( get_the_ID() ) ) {
|
362 |
$image = wp_get_attachment_image_src( get_post_thumbnail_id(), 'medium' );
|
363 |
$image = $image[0];
|
364 |
}
|
365 |
-
|
366 |
$description = ( has_excerpt() ) ? get_the_excerpt() : strip_tags( substr( $post->post_content, 0, 200 ) );
|
367 |
|
368 |
$url = apply_filters( 'fcbkbttn_meta_url', esc_attr( get_permalink() ) );
|
@@ -372,15 +440,41 @@ if ( ! function_exists( 'fcbkbttn_meta' ) ) {
|
|
372 |
$meta_image = apply_filters( 'fcbkbttn_meta_image', esc_url( $image ) );
|
373 |
print "\n" . '<!-- fcbkbttn meta start -->';
|
374 |
print "\n" . '<meta property="og:url" content="' . $url . '"/>';
|
|
|
375 |
print "\n" . '<meta property="og:title" content="' . $title . '"/>';
|
376 |
print "\n" . '<meta property="og:site_name" content="' . $site_name . '"/>';
|
377 |
if ( ! empty( $image ) ) {
|
378 |
print "\n" . '<meta property="og:image" content="' . $meta_image . '"/>';
|
|
|
|
|
|
|
|
|
|
|
379 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
380 |
if ( ! empty( $description ) ) {
|
381 |
print "\n" . '<meta property="og:description" content="' . $description . '"/>';
|
382 |
}
|
383 |
-
print "\n" . '<!-- fcbkbttn meta end -->';
|
384 |
}
|
385 |
}
|
386 |
}
|
@@ -589,6 +683,7 @@ add_action( 'admin_menu', 'fcbkbttn_admin_menu' );
|
|
589 |
add_action( 'plugins_loaded', 'fcbkbttn_plugins_loaded' );
|
590 |
add_action( 'init', 'fcbkbttn_init' );
|
591 |
add_action( 'admin_init', 'fcbkbttn_admin_init' );
|
|
|
592 |
/* Adding stylesheets */
|
593 |
add_action( 'wp_enqueue_scripts', 'fcbkbttn_enqueue_scripts' );
|
594 |
add_action( 'admin_enqueue_scripts', 'fcbkbttn_enqueue_scripts' );
|
@@ -604,4 +699,4 @@ add_filter( 'bws_shortcode_button_content', 'fcbkbttn_shortcode_button_content'
|
|
604 |
add_filter( 'plugin_action_links', 'fcbkbttn_action_links', 10, 2 );
|
605 |
add_filter( 'plugin_row_meta', 'fcbkbttn_links', 10, 2 );
|
606 |
/* Adding banner */
|
607 |
-
add_action( 'admin_notices', 'fcbkbttn_plugin_banner' );
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: facebook-button-plugin
|
8 |
Domain Path: /languages
|
9 |
+
Version: 2.61
|
10 |
Author URI: https://bestwebsoft.com/
|
11 |
License: GPLv2 or later
|
12 |
*/
|
13 |
|
14 |
+
/* Copyright 2019 BestWebSoft ( https://support.bestwebsoft.com )
|
15 |
|
16 |
This program is free software; you can redistribute it and/or modify
|
17 |
it under the terms of the GNU General Public License, version 2, as
|
189 |
'html5' => 0,
|
190 |
'use_multilanguage_locale' => 0,
|
191 |
'display_for_excerpt' => 0,
|
192 |
+
'display_for_open_graph' => 0,
|
193 |
'location' => 'left',
|
194 |
'id' => 1443946719181573
|
195 |
);
|
297 |
}
|
298 |
}
|
299 |
|
300 |
+
if ( ! function_exists( 'fcbkbttn_function_display_arhive' ) ) {
|
301 |
+
function fcbkbttn_function_display_arhive()
|
302 |
+
{
|
303 |
+
global $post, $fcbkbttn_options,$wp;
|
304 |
+
if ( is_archive()) {
|
305 |
+
$if_large = '';
|
306 |
+
if ($fcbkbttn_options['size'] == 'large') {
|
307 |
+
$if_large = 'fcbkbttn_large_button';
|
308 |
+
}
|
309 |
+
if ('right' == $fcbkbttn_options['location']) {
|
310 |
+
$button = '<div class="fcbkbttn_buttons_block fcbkbttn_arhiv" id="fcbkbttn_right">';
|
311 |
+
} elseif ('middle' == $fcbkbttn_options['location']) {
|
312 |
+
$button = '<div class="fcbkbttn_buttons_block fcbkbttn_arhiv" id="fcbkbttn_middle">';
|
313 |
+
} elseif ('left' == $fcbkbttn_options['location']) {
|
314 |
+
$button = '<div class="fcbkbttn_buttons_block fcbkbttn_arhiv" id="fcbkbttn_left">';
|
315 |
+
}
|
316 |
+
if (!empty($fcbkbttn_options['my_page'])) {
|
317 |
+
$button .= '<div class="fcbkbttn_button">
|
318 |
+
<a href="https://www.facebook.com/' . $fcbkbttn_options['link'] . '" target="_blank">
|
319 |
+
<img src="' . $fcbkbttn_options['fb_img_link'] . '" alt="Fb-Button" />
|
320 |
+
</a>
|
321 |
+
</div>';
|
322 |
+
}
|
323 |
+
|
324 |
+
$permalink_page = home_url($wp->request);
|
325 |
+
$permalink = explode("/page/", $permalink_page);
|
326 |
+
$permalink_page = $permalink[0];
|
327 |
+
|
328 |
+
|
329 |
+
$location_share = ('right' == $fcbkbttn_options['location'] && "standard" == $fcbkbttn_options['layout_like_option']) ? 1 : 0;
|
330 |
+
if (!empty($fcbkbttn_options['share']) && !empty($location_share)) {
|
331 |
+
$button .= '<div class="fb-share-button ' . $if_large . ' " data-href="' . $permalink_page . '" data-type="' . $fcbkbttn_options['layout_share_option'] . '" data-size="' . $fcbkbttn_options['size'] . '"></div>';
|
332 |
+
}
|
333 |
+
|
334 |
+
if (!empty($fcbkbttn_options['like'])) {
|
335 |
+
$button .= '<div class="fcbkbttn_like ' . $if_large . '">';
|
336 |
+
|
337 |
+
if (!empty($fcbkbttn_options['html5'])) {
|
338 |
+
$button .= '<div class="fb-like fb-like-' . $fcbkbttn_options['layout_like_option'] . '" data-href="' . $permalink_page . '" data-colorscheme="' . $fcbkbttn_options['color_scheme'] . '" data-layout="' . $fcbkbttn_options['layout_like_option'] . '" data-action="' . $fcbkbttn_options['like_action'] . '" ';
|
339 |
+
if ('standard' == $fcbkbttn_options['layout_like_option']) {
|
340 |
+
$button .= ' data-width="' . $fcbkbttn_options['width'] . 'px"';
|
341 |
+
$button .= (!empty($fcbkbttn_options['faces'])) ? " data-show-faces='true'" : " data-show-faces='false'";
|
342 |
+
}
|
343 |
+
$button .= ' data-size="' . $fcbkbttn_options['size'] . '"';
|
344 |
+
$button .= '></div></div>';
|
345 |
+
} else {
|
346 |
+
$button .= '<fb:like href="' . $permalink_page . '" action="' . $fcbkbttn_options['like_action'] . '" colorscheme="' . $fcbkbttn_options['color_scheme'] . '" layout="' . $fcbkbttn_options['layout_like_option'] . '" ';
|
347 |
+
if ('standard' == $fcbkbttn_options['layout_like_option']) {
|
348 |
+
$button .= (!empty($fcbkbttn_options['faces'])) ? "show-faces='true'" : "show-faces='false'";
|
349 |
+
$button .= ' width="' . $fcbkbttn_options['width'] . 'px"';
|
350 |
+
}
|
351 |
+
|
352 |
+
$button .= ' size="' . $fcbkbttn_options['size'] . '"';
|
353 |
+
$button .= '></fb:like></div>';
|
354 |
+
}
|
355 |
+
}
|
356 |
+
|
357 |
+
|
358 |
+
if (!empty($fcbkbttn_options['share']) && empty($location_share)) {
|
359 |
+
$button .= '<div class="fb-share-button ' . $if_large . ' " data-href="' . $permalink_page . '" data-type="' . $fcbkbttn_options['layout_share_option'] . '" data-size="' . $fcbkbttn_options['size'] . '"></div>';
|
360 |
+
}
|
361 |
+
$button .= '</div>';
|
362 |
+
echo $button;
|
363 |
+
}
|
364 |
+
}
|
365 |
+
}
|
366 |
+
|
367 |
/* Function taking from array 'fcbkbttn_options' necessary information to create Facebook Button and reacting to your choise in plugin menu - points where it appears. */
|
368 |
if ( ! function_exists( 'fcbkbttn_display_button' ) ) {
|
369 |
function fcbkbttn_display_button( $content ) {
|
422 |
/* Functions adds some right meta for Facebook */
|
423 |
if ( ! function_exists( 'fcbkbttn_meta' ) ) {
|
424 |
function fcbkbttn_meta() {
|
425 |
+
global $fcbkbttn_options, $post, $wp;
|
426 |
if ( ! empty( $fcbkbttn_options['like'] ) || ! empty( $fcbkbttn_options['share'] ) ) {
|
427 |
+
if ( is_singular() && 0 == $fcbkbttn_options['display_for_open_graph'] ) {
|
428 |
$image = '';
|
429 |
if ( has_post_thumbnail( get_the_ID() ) ) {
|
430 |
$image = wp_get_attachment_image_src( get_post_thumbnail_id(), 'medium' );
|
431 |
$image = $image[0];
|
432 |
}
|
433 |
+
|
434 |
$description = ( has_excerpt() ) ? get_the_excerpt() : strip_tags( substr( $post->post_content, 0, 200 ) );
|
435 |
|
436 |
$url = apply_filters( 'fcbkbttn_meta_url', esc_attr( get_permalink() ) );
|
440 |
$meta_image = apply_filters( 'fcbkbttn_meta_image', esc_url( $image ) );
|
441 |
print "\n" . '<!-- fcbkbttn meta start -->';
|
442 |
print "\n" . '<meta property="og:url" content="' . $url . '"/>';
|
443 |
+
print "\n" . '<meta property="og:type" content="article"/>';
|
444 |
print "\n" . '<meta property="og:title" content="' . $title . '"/>';
|
445 |
print "\n" . '<meta property="og:site_name" content="' . $site_name . '"/>';
|
446 |
if ( ! empty( $image ) ) {
|
447 |
print "\n" . '<meta property="og:image" content="' . $meta_image . '"/>';
|
448 |
+
} else {
|
449 |
+
print "\n" . '<meta property="og:image" content=""/>';
|
450 |
+
}
|
451 |
+
if ( ! empty( $description ) ) {
|
452 |
+
print "\n" . '<meta property="og:description" content="' . $description . '"/>';
|
453 |
}
|
454 |
+
print "\n" . '<!-- fcbkbttn meta end -->' . "\n";
|
455 |
+
}
|
456 |
+
if ( is_archive() && 0 == $fcbkbttn_options['display_for_open_graph'] ) {
|
457 |
+
$image = '';
|
458 |
+
|
459 |
+
$permalink_page = home_url($wp->request);
|
460 |
+
$permalink = explode("/page/", $permalink_page);
|
461 |
+
$permalink_page = $permalink[0];
|
462 |
+
$name = get_the_archive_title();
|
463 |
+
$description = get_the_archive_description();
|
464 |
+
|
465 |
+
$url = apply_filters( 'fcbkbttn_meta_url', esc_attr( $permalink_page ) );
|
466 |
+
$description = apply_filters( 'fcbkbttn_meta_description', esc_attr( $description ) );
|
467 |
+
$title = apply_filters( 'fcbkbttn_meta_title', esc_attr( $name ) );
|
468 |
+
$site_name = apply_filters( 'fcbkbttn_meta_site_name', esc_attr( get_bloginfo() ) );
|
469 |
+
|
470 |
+
print "\n" . '<!-- fcbkbttn meta start -->';
|
471 |
+
print "\n" . '<meta property="og:url" content="' . $url . '"/>';
|
472 |
+
print "\n" . '<meta property="og:title" content="' . $title . '"/>';
|
473 |
+
print "\n" . '<meta property="og:site_name" content="' . $site_name . '"/>';
|
474 |
if ( ! empty( $description ) ) {
|
475 |
print "\n" . '<meta property="og:description" content="' . $description . '"/>';
|
476 |
}
|
477 |
+
print "\n" . '<!-- fcbkbttn meta end -->' . "\n";
|
478 |
}
|
479 |
}
|
480 |
}
|
683 |
add_action( 'plugins_loaded', 'fcbkbttn_plugins_loaded' );
|
684 |
add_action( 'init', 'fcbkbttn_init' );
|
685 |
add_action( 'admin_init', 'fcbkbttn_admin_init' );
|
686 |
+
add_action( 'loop_start' , 'fcbkbttn_function_display_arhive' );
|
687 |
/* Adding stylesheets */
|
688 |
add_action( 'wp_enqueue_scripts', 'fcbkbttn_enqueue_scripts' );
|
689 |
add_action( 'admin_enqueue_scripts', 'fcbkbttn_enqueue_scripts' );
|
699 |
add_filter( 'plugin_action_links', 'fcbkbttn_action_links', 10, 2 );
|
700 |
add_filter( 'plugin_row_meta', 'fcbkbttn_links', 10, 2 );
|
701 |
/* Adding banner */
|
702 |
+
add_action( 'admin_notices', 'fcbkbttn_plugin_banner' );
|
includes/class-fcbkbttn-settings.php
CHANGED
@@ -104,6 +104,7 @@ if ( ! class_exists( 'Fcbkbttn_Settings_Tabs' ) ) {
|
|
104 |
|
105 |
$this->options['use_multilanguage_locale'] = isset( $_REQUEST['fcbkbttn_use_multilanguage_locale'] ) ? 1 : 0;
|
106 |
$this->options['display_for_excerpt'] = isset( $_REQUEST['fcbkbttn_display_for_excerpt'] ) ? 1 : 0;
|
|
|
107 |
|
108 |
$this->options = apply_filters( 'fcbkbttn_before_save_options', $this->options );
|
109 |
update_option( 'fcbkbttn_options', $this->options );
|
@@ -281,6 +282,12 @@ if ( ! class_exists( 'Fcbkbttn_Settings_Tabs' ) ) {
|
|
281 |
<input name='fcbkbttn_display_for_excerpt' type='checkbox' value='1' <?php checked( $this->options['display_for_excerpt'] ); ?> /> <span class="bws_info"><?php _e( 'Enable to display buttons in excerpt.', 'facebook-button-plugin' ); ?></span>
|
282 |
</td>
|
283 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
284 |
<?php do_action( 'fcbkbttn_settings_page_action', $this->options ); ?>
|
285 |
</table>
|
286 |
<?php if ( ! $this->hide_pro_tabs ) { ?>
|
@@ -446,7 +453,7 @@ if ( ! class_exists( 'Fcbkbttn_Settings_Tabs' ) ) {
|
|
446 |
<th><?php _e( 'Layout Width', 'facebook-button-plugin' ); ?></th>
|
447 |
<td>
|
448 |
<label>
|
449 |
-
<input name="fcbkbttn_width" type="number" step="1" min="225" max="450" value="<?php echo $this->options['width']; ?>" />
|
450 |
<?php _e( 'px', 'facebook-button-plugin' ); ?>
|
451 |
</label>
|
452 |
</td>
|
104 |
|
105 |
$this->options['use_multilanguage_locale'] = isset( $_REQUEST['fcbkbttn_use_multilanguage_locale'] ) ? 1 : 0;
|
106 |
$this->options['display_for_excerpt'] = isset( $_REQUEST['fcbkbttn_display_for_excerpt'] ) ? 1 : 0;
|
107 |
+
$this->options['display_for_open_graph'] = isset( $_REQUEST['fcbkbttn_display_for_open_graph'] ) ? 1 : 0;
|
108 |
|
109 |
$this->options = apply_filters( 'fcbkbttn_before_save_options', $this->options );
|
110 |
update_option( 'fcbkbttn_options', $this->options );
|
282 |
<input name='fcbkbttn_display_for_excerpt' type='checkbox' value='1' <?php checked( $this->options['display_for_excerpt'] ); ?> /> <span class="bws_info"><?php _e( 'Enable to display buttons in excerpt.', 'facebook-button-plugin' ); ?></span>
|
283 |
</td>
|
284 |
</tr>
|
285 |
+
<tr>
|
286 |
+
<th><?php _e( 'Meta Tags', 'facebook-button-plugin' ); ?></th>
|
287 |
+
<td>
|
288 |
+
<input name='fcbkbttn_display_for_open_graph' type='checkbox' value='1' <?php checked( $this->options['display_for_open_graph'] ); ?> /> <span class="bws_info"><?php _e( 'Disable meta tags.', 'facebook-button-plugin' ); ?></span>
|
289 |
+
</td>
|
290 |
+
</tr>
|
291 |
<?php do_action( 'fcbkbttn_settings_page_action', $this->options ); ?>
|
292 |
</table>
|
293 |
<?php if ( ! $this->hide_pro_tabs ) { ?>
|
453 |
<th><?php _e( 'Layout Width', 'facebook-button-plugin' ); ?></th>
|
454 |
<td>
|
455 |
<label>
|
456 |
+
<input required name="fcbkbttn_width" type="number" step="1" min="225" max="450" value="<?php echo $this->options['width']; ?>" />
|
457 |
<?php _e( 'px', 'facebook-button-plugin' ); ?>
|
458 |
</label>
|
459 |
</td>
|
js/admin-script.js
CHANGED
@@ -1,73 +1,73 @@
|
|
1 |
-
( function( $ ) {
|
2 |
-
$( document ).ready( function() {
|
3 |
-
function fcbkbttn_my_page() {
|
4 |
-
if ( $( 'input[name="fcbkbttn_my_page"]' ).is( ':checked' ) ) {
|
5 |
-
$( '.fcbkbttn_my_page_enabled' ).show();
|
6 |
-
} else {
|
7 |
-
$( '.fcbkbttn_my_page_enabled' ).hide();
|
8 |
-
}
|
9 |
-
}
|
10 |
-
function fcbkbttn_display_option() {
|
11 |
-
if ( $( 'input[name="fcbkbttn_display_option"]:checked' ).val() == 'custom' ) {
|
12 |
-
$( '#fcbkbttn_display_option_custom' ).show();
|
13 |
-
} else {
|
14 |
-
$( '#fcbkbttn_display_option_custom' ).hide();
|
15 |
-
}
|
16 |
-
}
|
17 |
-
function fcbkbttn_like() {
|
18 |
-
if ( $( 'input[name="fcbkbttn_like"]' ).is( ':checked' ) ) {
|
19 |
-
$( '.fcbkbttn_like_enabled, .fcbkbttn_share_like_block' ).show();
|
20 |
-
fcbkbttn_layout_option();
|
21 |
-
} else {
|
22 |
-
$( '.fcbkbttn_like_enabled, .fcbkbttn_like_standard_layout' ).hide();
|
23 |
-
if( ! $( 'input[name="fcbkbttn_share"]' ).is( ':checked' ) ) {
|
24 |
-
$( '.fcbkbttn_share_like_block' ).hide();
|
25 |
-
} else {
|
26 |
-
$( '.fcbkbttn_share_like_block' ).show();
|
27 |
-
}
|
28 |
-
}
|
29 |
-
}
|
30 |
-
function fcbkbttn_share() {
|
31 |
-
if ( $( 'input[name="fcbkbttn_share"]' ).is( ':checked' ) ) {
|
32 |
-
$( '.fcbkbttn_share_enabled' ).show();
|
33 |
-
} else {
|
34 |
-
$( '.fcbkbttn_share_enabled' ).hide();
|
35 |
-
if( ! $( 'input[name="fcbkbttn_like"]' ).is( ':checked' ) ) {
|
36 |
-
$( '.fcbkbttn_share_like_block' ).hide();
|
37 |
-
} else {
|
38 |
-
$( '.fcbkbttn_share_like_block' ).show();
|
39 |
-
}
|
40 |
-
}
|
41 |
-
}
|
42 |
-
function fcbkbttn_layout_option() {
|
43 |
-
if ( $( 'input[name="fcbkbttn_like_layout"]:checked' ).val() == 'standard' ) {
|
44 |
-
$( '.fcbkbttn_like_standard_layout' ).show();
|
45 |
-
} else {
|
46 |
-
$( '.fcbkbttn_like_standard_layout' ).hide();
|
47 |
-
}
|
48 |
-
}
|
49 |
-
|
50 |
-
fcbkbttn_my_page();
|
51 |
-
$( 'input[name="fcbkbttn_my_page"]' ).on( 'change', function() {
|
52 |
-
fcbkbttn_my_page();
|
53 |
-
} );
|
54 |
-
fcbkbttn_display_option();
|
55 |
-
$( 'input[name="fcbkbttn_display_option"]' ).on( 'change', function() {
|
56 |
-
fcbkbttn_display_option();
|
57 |
-
} );
|
58 |
-
fcbkbttn_layout_option();
|
59 |
-
$( 'input[name="fcbkbttn_like_layout"]' ).on( 'change', function() {
|
60 |
-
fcbkbttn_layout_option();
|
61 |
-
} );
|
62 |
-
fcbkbttn_like();
|
63 |
-
$( 'input[name="fcbkbttn_like"]' ).on( 'change', function() {
|
64 |
-
fcbkbttn_like();
|
65 |
-
} );
|
66 |
-
fcbkbttn_share();
|
67 |
-
$( 'input[name="fcbkbttn_share"]' ).on( 'change', function() {
|
68 |
-
fcbkbttn_share();
|
69 |
-
} );
|
70 |
-
|
71 |
-
});
|
72 |
-
|
73 |
} )( jQuery );
|
1 |
+
( function( $ ) {
|
2 |
+
$( document ).ready( function() {
|
3 |
+
function fcbkbttn_my_page() {
|
4 |
+
if ( $( 'input[name="fcbkbttn_my_page"]' ).is( ':checked' ) ) {
|
5 |
+
$( '.fcbkbttn_my_page_enabled' ).show();
|
6 |
+
} else {
|
7 |
+
$( '.fcbkbttn_my_page_enabled' ).hide();
|
8 |
+
}
|
9 |
+
}
|
10 |
+
function fcbkbttn_display_option() {
|
11 |
+
if ( $( 'input[name="fcbkbttn_display_option"]:checked' ).val() == 'custom' ) {
|
12 |
+
$( '#fcbkbttn_display_option_custom' ).show();
|
13 |
+
} else {
|
14 |
+
$( '#fcbkbttn_display_option_custom' ).hide();
|
15 |
+
}
|
16 |
+
}
|
17 |
+
function fcbkbttn_like() {
|
18 |
+
if ( $( 'input[name="fcbkbttn_like"]' ).is( ':checked' ) ) {
|
19 |
+
$( '.fcbkbttn_like_enabled, .fcbkbttn_share_like_block' ).show();
|
20 |
+
fcbkbttn_layout_option();
|
21 |
+
} else {
|
22 |
+
$( '.fcbkbttn_like_enabled, .fcbkbttn_like_standard_layout' ).hide();
|
23 |
+
if( ! $( 'input[name="fcbkbttn_share"]' ).is( ':checked' ) ) {
|
24 |
+
$( '.fcbkbttn_share_like_block' ).hide();
|
25 |
+
} else {
|
26 |
+
$( '.fcbkbttn_share_like_block' ).show();
|
27 |
+
}
|
28 |
+
}
|
29 |
+
}
|
30 |
+
function fcbkbttn_share() {
|
31 |
+
if ( $( 'input[name="fcbkbttn_share"]' ).is( ':checked' ) ) {
|
32 |
+
$( '.fcbkbttn_share_enabled' ).show();
|
33 |
+
} else {
|
34 |
+
$( '.fcbkbttn_share_enabled' ).hide();
|
35 |
+
if( ! $( 'input[name="fcbkbttn_like"]' ).is( ':checked' ) ) {
|
36 |
+
$( '.fcbkbttn_share_like_block' ).hide();
|
37 |
+
} else {
|
38 |
+
$( '.fcbkbttn_share_like_block' ).show();
|
39 |
+
}
|
40 |
+
}
|
41 |
+
}
|
42 |
+
function fcbkbttn_layout_option() {
|
43 |
+
if ( $( 'input[name="fcbkbttn_like_layout"]:checked' ).val() == 'standard' ) {
|
44 |
+
$( '.fcbkbttn_like_standard_layout' ).show();
|
45 |
+
} else {
|
46 |
+
$( '.fcbkbttn_like_standard_layout' ).hide();
|
47 |
+
}
|
48 |
+
}
|
49 |
+
|
50 |
+
fcbkbttn_my_page();
|
51 |
+
$( 'input[name="fcbkbttn_my_page"]' ).on( 'change', function() {
|
52 |
+
fcbkbttn_my_page();
|
53 |
+
} );
|
54 |
+
fcbkbttn_display_option();
|
55 |
+
$( 'input[name="fcbkbttn_display_option"]' ).on( 'change', function() {
|
56 |
+
fcbkbttn_display_option();
|
57 |
+
} );
|
58 |
+
fcbkbttn_layout_option();
|
59 |
+
$( 'input[name="fcbkbttn_like_layout"]' ).on( 'change', function() {
|
60 |
+
fcbkbttn_layout_option();
|
61 |
+
} );
|
62 |
+
fcbkbttn_like();
|
63 |
+
$( 'input[name="fcbkbttn_like"]' ).on( 'change', function() {
|
64 |
+
fcbkbttn_like();
|
65 |
+
} );
|
66 |
+
fcbkbttn_share();
|
67 |
+
$( 'input[name="fcbkbttn_share"]' ).on( 'change', function() {
|
68 |
+
fcbkbttn_share();
|
69 |
+
} );
|
70 |
+
|
71 |
+
});
|
72 |
+
|
73 |
} )( jQuery );
|
js/script.js
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
-
( function( $ ) {
|
2 |
-
$( window ).on( 'load', function() {
|
3 |
-
var windowWidth = $( window ).width();
|
4 |
-
if ( windowWidth < 483 ) {
|
5 |
-
$( "._51m-._2pir._51mw" ).before( $( "._51m-.vTop.hCent" ) );
|
6 |
-
} else {
|
7 |
-
$( "._51m-.vTop.hCent" ).insertBefore( $( "._51m-._2pir._51mw" ) );
|
8 |
-
}
|
9 |
-
} );
|
10 |
-
} )( jQuery );
|
1 |
+
( function( $ ) {
|
2 |
+
$( window ).on( 'load', function() {
|
3 |
+
var windowWidth = $( window ).width();
|
4 |
+
if ( windowWidth < 483 ) {
|
5 |
+
$( "._51m-._2pir._51mw" ).before( $( "._51m-.vTop.hCent" ) );
|
6 |
+
} else {
|
7 |
+
$( "._51m-.vTop.hCent" ).insertBefore( $( "._51m-._2pir._51mw" ) );
|
8 |
+
}
|
9 |
+
} );
|
10 |
+
} )( jQuery );
|
languages/facebook-button-plugin-cs_CZ.mo
CHANGED
Binary file
|
languages/facebook-button-plugin-cs_CZ.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2018-
|
6 |
-
"PO-Revision-Date: 2018-
|
7 |
"Last-Translator: Mik013\n"
|
8 |
"Language-Team: Mik013\n"
|
9 |
"Language: cs_CZ\n"
|
@@ -13,38 +13,38 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit
|
17 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: facebook-button-plugin.php:
|
21 |
-
#: facebook-button-plugin.php:
|
22 |
msgid "Facebook Button Settings"
|
23 |
msgstr "Nastavení tlačítka Facebook"
|
24 |
|
25 |
-
#: facebook-button-plugin.php:
|
26 |
-
#: facebook-button-plugin.php:
|
27 |
msgid "Settings"
|
28 |
msgstr "Nastavení"
|
29 |
|
30 |
-
#: facebook-button-plugin.php:
|
31 |
msgid "Upgrade to Pro"
|
32 |
msgstr "Aktualizovat na Pro"
|
33 |
|
34 |
-
#: facebook-button-plugin.php:
|
35 |
msgid "Please, enable JavaScript in your browser."
|
36 |
-
msgstr "
|
37 |
|
38 |
-
#: facebook-button-plugin.php:
|
39 |
msgid "Add Facebook buttons to your page or post"
|
40 |
msgstr "Přidat Facebook tlačítka na vaši stránku nebo příspěvek"
|
41 |
|
42 |
-
#: facebook-button-plugin.php:
|
43 |
msgid "FAQ"
|
44 |
msgstr ""
|
45 |
"Časté dotazy <acronym title=\"Frequently asked questions\">(FAQ)</acronym>"
|
46 |
|
47 |
-
#: facebook-button-plugin.php:
|
48 |
msgid "Support"
|
49 |
msgstr "Podpora"
|
50 |
|
@@ -64,90 +64,122 @@ msgstr "Vlastní kód"
|
|
64 |
msgid "License Key"
|
65 |
msgstr "Licenční klíč"
|
66 |
|
67 |
-
#: includes/class-fcbkbttn-settings.php:
|
68 |
msgid "Settings saved"
|
69 |
msgstr "Nastavení uloženo"
|
70 |
|
71 |
-
#: includes/class-fcbkbttn-settings.php:
|
72 |
msgid "Error: File size must not exceed 32KB"
|
73 |
msgstr "Chyba: Velikost souboru nesmí přesáhnout 32KB"
|
74 |
|
75 |
-
#: includes/class-fcbkbttn-settings.php:
|
76 |
msgid "Error: Invalid file type"
|
77 |
msgstr "Chyba: Neplatný typ souboru"
|
78 |
|
79 |
-
#: includes/class-fcbkbttn-settings.php:
|
80 |
msgid "Upload successful."
|
81 |
msgstr "Úspěšně nahráno."
|
82 |
|
83 |
-
#: includes/class-fcbkbttn-settings.php:
|
84 |
msgid "Error: Failed to move file."
|
85 |
msgstr "Chyba: Soubor se nepodařilo přesunout."
|
86 |
|
87 |
-
#: includes/class-fcbkbttn-settings.php:
|
88 |
msgid "Error: Check image width or height."
|
89 |
msgstr "Chyba: zkontrolujte šířku nebo výšku obrázku."
|
90 |
|
91 |
-
#: includes/class-fcbkbttn-settings.php:
|
92 |
msgid "Uploading Error: Check image properties"
|
93 |
msgstr "Chyba nahrávání: zkontrolujte vlastnosti obrázku"
|
94 |
|
95 |
-
#: includes/class-fcbkbttn-settings.php:
|
96 |
msgid "General"
|
97 |
msgstr "Obecné"
|
98 |
|
99 |
-
#: includes/class-fcbkbttn-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
100 |
msgid "Buttons"
|
101 |
msgstr "Tlačítka"
|
102 |
|
103 |
-
#: includes/class-fcbkbttn-settings.php:
|
104 |
msgid "Profile URL"
|
105 |
msgstr "URL profilu"
|
106 |
|
107 |
-
#: includes/class-fcbkbttn-settings.php:
|
108 |
-
#: includes/class-fcbkbttn-settings.php:
|
109 |
msgid "Like"
|
110 |
msgstr "To se mi líbí"
|
111 |
|
112 |
-
#: includes/class-fcbkbttn-settings.php:
|
113 |
msgid "Share"
|
114 |
msgstr "Sdílet"
|
115 |
|
116 |
-
#: includes/class-fcbkbttn-settings.php:
|
117 |
msgid "Buttons Size"
|
118 |
msgstr "Velikost tlačítek"
|
119 |
|
120 |
-
#: includes/class-fcbkbttn-settings.php:
|
121 |
msgid "Small"
|
122 |
msgstr "Malá"
|
123 |
|
124 |
-
#: includes/class-fcbkbttn-settings.php:
|
125 |
msgid "Large"
|
126 |
msgstr "Velká"
|
127 |
|
128 |
-
#: includes/class-fcbkbttn-settings.php:
|
129 |
msgid "Buttons Position"
|
130 |
msgstr "Umístění tlačítek"
|
131 |
|
132 |
-
#: includes/class-fcbkbttn-settings.php:
|
133 |
msgid "Before content"
|
134 |
msgstr "Před obsahem"
|
135 |
|
136 |
-
#: includes/class-fcbkbttn-settings.php:
|
137 |
msgid "After content"
|
138 |
msgstr "Za obsahem"
|
139 |
|
140 |
-
#: includes/class-fcbkbttn-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
msgid "Language"
|
142 |
msgstr "Jazyk"
|
143 |
|
144 |
-
#: includes/class-fcbkbttn-settings.php:
|
145 |
msgid "Select the default language for Facebook button(-s)."
|
146 |
msgstr "Vyberte výchozí jazyk pro Facebook tlačítko/a."
|
147 |
|
148 |
-
#: includes/class-fcbkbttn-settings.php:
|
149 |
-
#: includes/class-fcbkbttn-settings.php:
|
150 |
-
#: includes/class-fcbkbttn-settings.php:
|
151 |
msgid ""
|
152 |
"Enable to switch language automatically on multilingual website using "
|
153 |
"Multilanguage plugin."
|
@@ -155,49 +187,57 @@ msgstr ""
|
|
155 |
"Povolit automatické přepnutí jazyka na vícejazyčných webech s pluginem "
|
156 |
"Multilanguage."
|
157 |
|
158 |
-
#: includes/class-fcbkbttn-settings.php:
|
159 |
msgid "Activate"
|
160 |
msgstr "Aktivovat"
|
161 |
|
162 |
-
#: includes/class-fcbkbttn-settings.php:
|
163 |
msgid "Install Now"
|
164 |
msgstr "Instalovat nyní"
|
165 |
|
166 |
-
#: includes/class-fcbkbttn-settings.php:
|
167 |
msgid "Excerpt"
|
168 |
msgstr "Stručný obsah"
|
169 |
|
170 |
-
#: includes/class-fcbkbttn-settings.php:
|
171 |
msgid "Enable to display buttons in excerpt."
|
172 |
msgstr "Zobrazit tlačítka ve stručném obsahu."
|
173 |
|
174 |
-
#: includes/class-fcbkbttn-settings.php:
|
175 |
-
|
176 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
177 |
msgid "Close"
|
178 |
msgstr "Zavřít"
|
179 |
|
180 |
-
#: includes/class-fcbkbttn-settings.php:
|
181 |
msgid "Meta Image"
|
182 |
msgstr "Meta obrázek"
|
183 |
|
184 |
-
#: includes/class-fcbkbttn-settings.php:
|
185 |
msgid "Featured Image"
|
186 |
msgstr "Vybraný obrázek"
|
187 |
|
188 |
-
#: includes/class-fcbkbttn-settings.php:
|
189 |
msgid "Custom Image"
|
190 |
msgstr "Vlastní obrázek"
|
191 |
|
192 |
-
#: includes/class-fcbkbttn-settings.php:
|
193 |
msgid "This image will be used for all posts"
|
194 |
msgstr "Tento obrázek bude použit pro všechny příspěvky"
|
195 |
|
196 |
-
#: includes/class-fcbkbttn-settings.php:
|
197 |
msgid "Meta Description"
|
198 |
msgstr "Meta popis"
|
199 |
|
200 |
-
#: includes/class-fcbkbttn-settings.php:
|
201 |
msgid ""
|
202 |
"This description will be used for all pages and posts. Leave blank to use "
|
203 |
"page description."
|
@@ -205,27 +245,27 @@ msgstr ""
|
|
205 |
"Tento popis bude použit pro všechny stránky a příspěvky. Ponechte nevyplněné "
|
206 |
"pro použití původního popisu stránky."
|
207 |
|
208 |
-
#: includes/class-fcbkbttn-settings.php:
|
209 |
msgid "Profile URL Button"
|
210 |
msgstr "Tlačítko URL profilu"
|
211 |
|
212 |
-
#: includes/class-fcbkbttn-settings.php:
|
213 |
msgid "Facebook ID or Username"
|
214 |
msgstr "Facebook ID nebo uživatelské jméno"
|
215 |
|
216 |
-
#: includes/class-fcbkbttn-settings.php:
|
217 |
msgid "Profile Button Image"
|
218 |
msgstr "Obrázek tlačítka profilu"
|
219 |
|
220 |
-
#: includes/class-fcbkbttn-settings.php:
|
221 |
msgid "Default"
|
222 |
msgstr "Výchozí"
|
223 |
|
224 |
-
#: includes/class-fcbkbttn-settings.php:
|
225 |
msgid "Custom image"
|
226 |
msgstr "Vlastní obrázek"
|
227 |
|
228 |
-
#: includes/class-fcbkbttn-settings.php:
|
229 |
msgid ""
|
230 |
"To use custom image, You need to setup permissions for upload directory of "
|
231 |
"your site"
|
@@ -233,90 +273,91 @@ msgstr ""
|
|
233 |
"Chcete-li použít vlastní obrázek, je nutné nastavit oprávnění ke složce "
|
234 |
"Upload na vašem webu"
|
235 |
|
236 |
-
#: includes/class-fcbkbttn-settings.php:
|
237 |
msgid "Current image"
|
238 |
msgstr "Aktuální obrázek"
|
239 |
|
240 |
-
#: includes/class-fcbkbttn-settings.php:
|
241 |
msgid ""
|
242 |
"Image requirements: max image width: 100px; max image height: 40px; max "
|
243 |
"image size: 32Kb; image types: \"jpg\", \"jpeg\", \"png\"."
|
244 |
msgstr ""
|
245 |
"Požadavky obrázku: maximální šířka:100px; maximální výška:40px; maximální "
|
246 |
-
"velikost:32Kb; typy obrázků:
|
|
|
247 |
|
248 |
-
#: includes/class-fcbkbttn-settings.php:
|
249 |
msgid "Like&Share Buttons"
|
250 |
msgstr "Tlačítka To se mi líbí a Sdílet"
|
251 |
|
252 |
-
#: includes/class-fcbkbttn-settings.php:
|
253 |
msgid "Like Button Layout"
|
254 |
msgstr "Vzhled tlačítka To se mi líbí"
|
255 |
|
256 |
-
#: includes/class-fcbkbttn-settings.php:
|
257 |
msgid "Share Button Layout"
|
258 |
msgstr "Vzhled tlačítka Sdílet"
|
259 |
|
260 |
-
#: includes/class-fcbkbttn-settings.php:
|
261 |
msgid "Like Button Action"
|
262 |
msgstr "Akce tlačítka To se mi líbí"
|
263 |
|
264 |
-
#: includes/class-fcbkbttn-settings.php:
|
265 |
msgid "Recommend"
|
266 |
msgstr "Doporučit"
|
267 |
|
268 |
-
#: includes/class-fcbkbttn-settings.php:
|
269 |
msgid "Friends Faces"
|
270 |
msgstr "Profilové foto přátel"
|
271 |
|
272 |
-
#: includes/class-fcbkbttn-settings.php:
|
273 |
msgid "Enable to show faces of your friends who submitted the button."
|
274 |
msgstr ""
|
275 |
"Zapnout zobrazování profilové fotky vašich přátel, kteří kliknuli na "
|
276 |
"tlačítko."
|
277 |
|
278 |
-
#: includes/class-fcbkbttn-settings.php:
|
279 |
msgid "Layout Width"
|
280 |
msgstr "Šířka layoutu"
|
281 |
|
282 |
-
#: includes/class-fcbkbttn-settings.php:
|
283 |
msgid "px"
|
284 |
msgstr "px"
|
285 |
|
286 |
-
#: includes/class-fcbkbttn-settings.php:
|
287 |
msgid "Theme"
|
288 |
msgstr "Šablona"
|
289 |
|
290 |
-
#: includes/class-fcbkbttn-settings.php:
|
291 |
msgid "Light"
|
292 |
msgstr "Světlé"
|
293 |
|
294 |
-
#: includes/class-fcbkbttn-settings.php:
|
295 |
msgid "Dark"
|
296 |
msgstr "Tmavé"
|
297 |
|
298 |
-
#: includes/class-fcbkbttn-settings.php:
|
299 |
msgid "Like Button HTML Tag"
|
300 |
msgstr "HTML tag pro tlačítko To se mi líbí"
|
301 |
|
302 |
-
#: includes/class-fcbkbttn-settings.php:
|
303 |
#, php-format
|
304 |
msgid "Tag %s can be used to improve website code validation."
|
305 |
msgstr "Ke zlepšení ověření kódu webové stránky lze použít štítek %s."
|
306 |
|
307 |
-
#: includes/class-fcbkbttn-settings.php:
|
308 |
msgid "URL to Like"
|
309 |
msgstr "URL pro To se mi líbí"
|
310 |
|
311 |
-
#: includes/class-fcbkbttn-settings.php:
|
312 |
msgid "Leave blank to use current page URL."
|
313 |
msgstr "Ponechte nevyplněné pro použití URL adresy aktuální stránky."
|
314 |
|
315 |
-
#: includes/class-fcbkbttn-settings.php:
|
316 |
msgid "Facebook Button Shortcode"
|
317 |
msgstr "Zkrácený kód Facebook tlačítek"
|
318 |
|
319 |
-
#: includes/class-fcbkbttn-settings.php:
|
320 |
msgid ""
|
321 |
"Add Facebook button(-s) to your posts, pages, custom post types or widgets "
|
322 |
"by using the following shortcode:"
|
@@ -324,26 +365,146 @@ msgstr ""
|
|
324 |
"Přidat Facebook tlačítko/a do příspěvků, stránek, vlastních typů příspěvků "
|
325 |
"nebo widgetů pomocí následujícího zkráceného kódu:"
|
326 |
|
327 |
-
#: includes/class-fcbkbttn-settings.php:
|
328 |
msgid "Facebook Buttons Preview"
|
329 |
msgstr "Náhled Facebook tlačítek"
|
330 |
|
331 |
-
#: includes/class-fcbkbttn-settings.php:
|
332 |
msgid "Display Settings"
|
333 |
msgstr "Nastavení zobrazení"
|
334 |
|
335 |
-
#: includes/class-fcbkbttn-settings.php:
|
336 |
msgid ""
|
337 |
"Please choose the necessary post types (or single pages) where Facebook "
|
338 |
"button will be displayed:"
|
339 |
msgstr ""
|
340 |
-
"
|
341 |
-
"
|
342 |
|
343 |
-
#: includes/class-fcbkbttn-settings.php:
|
344 |
msgid "Show URL for pages"
|
345 |
msgstr "Zobrazit URL pro stránky"
|
346 |
|
347 |
-
#: includes/class-fcbkbttn-settings.php:
|
348 |
msgid "Example of site pages tree"
|
349 |
msgstr "Příklad stromu stránek webu"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-12-27 13:37+0200\n"
|
6 |
+
"PO-Revision-Date: 2018-12-27 13:37+0200\n"
|
7 |
"Last-Translator: Mik013\n"
|
8 |
"Language-Team: Mik013\n"
|
9 |
"Language: cs_CZ\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 2.0.6\n"
|
17 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: facebook-button-plugin.php:38 facebook-button-plugin.php:46
|
21 |
+
#: facebook-button-plugin.php:221 includes/class-fcbkbttn-settings.php:188
|
22 |
msgid "Facebook Button Settings"
|
23 |
msgstr "Nastavení tlačítka Facebook"
|
24 |
|
25 |
+
#: facebook-button-plugin.php:47 facebook-button-plugin.php:479
|
26 |
+
#: facebook-button-plugin.php:493 includes/class-fcbkbttn-settings.php:23
|
27 |
msgid "Settings"
|
28 |
msgstr "Nastavení"
|
29 |
|
30 |
+
#: facebook-button-plugin.php:62
|
31 |
msgid "Upgrade to Pro"
|
32 |
msgstr "Aktualizovat na Pro"
|
33 |
|
34 |
+
#: facebook-button-plugin.php:224
|
35 |
msgid "Please, enable JavaScript in your browser."
|
36 |
+
msgstr "Povolte JavaScript ve vašem prohlížeči."
|
37 |
|
38 |
+
#: facebook-button-plugin.php:346
|
39 |
msgid "Add Facebook buttons to your page or post"
|
40 |
msgstr "Přidat Facebook tlačítka na vaši stránku nebo příspěvek"
|
41 |
|
42 |
+
#: facebook-button-plugin.php:495
|
43 |
msgid "FAQ"
|
44 |
msgstr ""
|
45 |
"Časté dotazy <acronym title=\"Frequently asked questions\">(FAQ)</acronym>"
|
46 |
|
47 |
+
#: facebook-button-plugin.php:496
|
48 |
msgid "Support"
|
49 |
msgstr "Podpora"
|
50 |
|
64 |
msgid "License Key"
|
65 |
msgstr "Licenční klíč"
|
66 |
|
67 |
+
#: includes/class-fcbkbttn-settings.php:111
|
68 |
msgid "Settings saved"
|
69 |
msgstr "Nastavení uloženo"
|
70 |
|
71 |
+
#: includes/class-fcbkbttn-settings.php:141
|
72 |
msgid "Error: File size must not exceed 32KB"
|
73 |
msgstr "Chyba: Velikost souboru nesmí přesáhnout 32KB"
|
74 |
|
75 |
+
#: includes/class-fcbkbttn-settings.php:144
|
76 |
msgid "Error: Invalid file type"
|
77 |
msgstr "Chyba: Neplatný typ souboru"
|
78 |
|
79 |
+
#: includes/class-fcbkbttn-settings.php:150
|
80 |
msgid "Upload successful."
|
81 |
msgstr "Úspěšně nahráno."
|
82 |
|
83 |
+
#: includes/class-fcbkbttn-settings.php:158
|
84 |
msgid "Error: Failed to move file."
|
85 |
msgstr "Chyba: Soubor se nepodařilo přesunout."
|
86 |
|
87 |
+
#: includes/class-fcbkbttn-settings.php:161
|
88 |
msgid "Error: Check image width or height."
|
89 |
msgstr "Chyba: zkontrolujte šířku nebo výšku obrázku."
|
90 |
|
91 |
+
#: includes/class-fcbkbttn-settings.php:165
|
92 |
msgid "Uploading Error: Check image properties"
|
93 |
msgstr "Chyba nahrávání: zkontrolujte vlastnosti obrázku"
|
94 |
|
95 |
+
#: includes/class-fcbkbttn-settings.php:192
|
96 |
msgid "General"
|
97 |
msgstr "Obecné"
|
98 |
|
99 |
+
#: includes/class-fcbkbttn-settings.php:195
|
100 |
+
msgid "Change App ID"
|
101 |
+
msgstr "Změnit App ID"
|
102 |
+
|
103 |
+
#: includes/class-fcbkbttn-settings.php:199
|
104 |
+
msgid "You can use standard App ID or"
|
105 |
+
msgstr "Můžete použít standardní ID, nebo"
|
106 |
+
|
107 |
+
#: includes/class-fcbkbttn-settings.php:199
|
108 |
+
msgid "create a new one"
|
109 |
+
msgstr "vytvořte nové"
|
110 |
+
|
111 |
+
#: includes/class-fcbkbttn-settings.php:199
|
112 |
+
msgid " Leave blank to use standard App ID."
|
113 |
+
msgstr " Pro použití standardního ID ponechejte prázdné."
|
114 |
+
|
115 |
+
#: includes/class-fcbkbttn-settings.php:203
|
116 |
msgid "Buttons"
|
117 |
msgstr "Tlačítka"
|
118 |
|
119 |
+
#: includes/class-fcbkbttn-settings.php:206
|
120 |
msgid "Profile URL"
|
121 |
msgstr "URL profilu"
|
122 |
|
123 |
+
#: includes/class-fcbkbttn-settings.php:207
|
124 |
+
#: includes/class-fcbkbttn-settings.php:435
|
125 |
msgid "Like"
|
126 |
msgstr "To se mi líbí"
|
127 |
|
128 |
+
#: includes/class-fcbkbttn-settings.php:208
|
129 |
msgid "Share"
|
130 |
msgstr "Sdílet"
|
131 |
|
132 |
+
#: includes/class-fcbkbttn-settings.php:213
|
133 |
msgid "Buttons Size"
|
134 |
msgstr "Velikost tlačítek"
|
135 |
|
136 |
+
#: includes/class-fcbkbttn-settings.php:216
|
137 |
msgid "Small"
|
138 |
msgstr "Malá"
|
139 |
|
140 |
+
#: includes/class-fcbkbttn-settings.php:217
|
141 |
msgid "Large"
|
142 |
msgstr "Velká"
|
143 |
|
144 |
+
#: includes/class-fcbkbttn-settings.php:222
|
145 |
msgid "Buttons Position"
|
146 |
msgstr "Umístění tlačítek"
|
147 |
|
148 |
+
#: includes/class-fcbkbttn-settings.php:227
|
149 |
msgid "Before content"
|
150 |
msgstr "Před obsahem"
|
151 |
|
152 |
+
#: includes/class-fcbkbttn-settings.php:232
|
153 |
msgid "After content"
|
154 |
msgstr "Za obsahem"
|
155 |
|
156 |
+
#: includes/class-fcbkbttn-settings.php:238
|
157 |
+
msgid "Buttons Align"
|
158 |
+
msgstr "Zarovnání tlačítek"
|
159 |
+
|
160 |
+
#: includes/class-fcbkbttn-settings.php:241
|
161 |
+
msgid "Right"
|
162 |
+
msgstr "Vpravo"
|
163 |
+
|
164 |
+
#: includes/class-fcbkbttn-settings.php:242
|
165 |
+
msgid "Center"
|
166 |
+
msgstr "Na střed"
|
167 |
+
|
168 |
+
#: includes/class-fcbkbttn-settings.php:243
|
169 |
+
msgid "Left"
|
170 |
+
msgstr "Vlevo"
|
171 |
+
|
172 |
+
#: includes/class-fcbkbttn-settings.php:248
|
173 |
msgid "Language"
|
174 |
msgstr "Jazyk"
|
175 |
|
176 |
+
#: includes/class-fcbkbttn-settings.php:259
|
177 |
msgid "Select the default language for Facebook button(-s)."
|
178 |
msgstr "Vyberte výchozí jazyk pro Facebook tlačítko/a."
|
179 |
|
180 |
+
#: includes/class-fcbkbttn-settings.php:268
|
181 |
+
#: includes/class-fcbkbttn-settings.php:271
|
182 |
+
#: includes/class-fcbkbttn-settings.php:275
|
183 |
msgid ""
|
184 |
"Enable to switch language automatically on multilingual website using "
|
185 |
"Multilanguage plugin."
|
187 |
"Povolit automatické přepnutí jazyka na vícejazyčných webech s pluginem "
|
188 |
"Multilanguage."
|
189 |
|
190 |
+
#: includes/class-fcbkbttn-settings.php:271
|
191 |
msgid "Activate"
|
192 |
msgstr "Aktivovat"
|
193 |
|
194 |
+
#: includes/class-fcbkbttn-settings.php:275
|
195 |
msgid "Install Now"
|
196 |
msgstr "Instalovat nyní"
|
197 |
|
198 |
+
#: includes/class-fcbkbttn-settings.php:280
|
199 |
msgid "Excerpt"
|
200 |
msgstr "Stručný obsah"
|
201 |
|
202 |
+
#: includes/class-fcbkbttn-settings.php:282
|
203 |
msgid "Enable to display buttons in excerpt."
|
204 |
msgstr "Zobrazit tlačítka ve stručném obsahu."
|
205 |
|
206 |
+
#: includes/class-fcbkbttn-settings.php:286
|
207 |
+
msgid "Open Graph"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/class-fcbkbttn-settings.php:288
|
211 |
+
msgid "Turn off meta open graph"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/class-fcbkbttn-settings.php:296
|
215 |
+
#: includes/class-fcbkbttn-settings.php:493
|
216 |
+
#: includes/class-fcbkbttn-settings.php:547
|
217 |
msgid "Close"
|
218 |
msgstr "Zavřít"
|
219 |
|
220 |
+
#: includes/class-fcbkbttn-settings.php:300
|
221 |
msgid "Meta Image"
|
222 |
msgstr "Meta obrázek"
|
223 |
|
224 |
+
#: includes/class-fcbkbttn-settings.php:305
|
225 |
msgid "Featured Image"
|
226 |
msgstr "Vybraný obrázek"
|
227 |
|
228 |
+
#: includes/class-fcbkbttn-settings.php:309
|
229 |
msgid "Custom Image"
|
230 |
msgstr "Vlastní obrázek"
|
231 |
|
232 |
+
#: includes/class-fcbkbttn-settings.php:309
|
233 |
msgid "This image will be used for all posts"
|
234 |
msgstr "Tento obrázek bude použit pro všechny příspěvky"
|
235 |
|
236 |
+
#: includes/class-fcbkbttn-settings.php:316
|
237 |
msgid "Meta Description"
|
238 |
msgstr "Meta popis"
|
239 |
|
240 |
+
#: includes/class-fcbkbttn-settings.php:320
|
241 |
msgid ""
|
242 |
"This description will be used for all pages and posts. Leave blank to use "
|
243 |
"page description."
|
245 |
"Tento popis bude použit pro všechny stránky a příspěvky. Ponechte nevyplněné "
|
246 |
"pro použití původního popisu stránky."
|
247 |
|
248 |
+
#: includes/class-fcbkbttn-settings.php:328
|
249 |
msgid "Profile URL Button"
|
250 |
msgstr "Tlačítko URL profilu"
|
251 |
|
252 |
+
#: includes/class-fcbkbttn-settings.php:331
|
253 |
msgid "Facebook ID or Username"
|
254 |
msgstr "Facebook ID nebo uživatelské jméno"
|
255 |
|
256 |
+
#: includes/class-fcbkbttn-settings.php:338
|
257 |
msgid "Profile Button Image"
|
258 |
msgstr "Obrázek tlačítka profilu"
|
259 |
|
260 |
+
#: includes/class-fcbkbttn-settings.php:345
|
261 |
msgid "Default"
|
262 |
msgstr "Výchozí"
|
263 |
|
264 |
+
#: includes/class-fcbkbttn-settings.php:350
|
265 |
msgid "Custom image"
|
266 |
msgstr "Vlastní obrázek"
|
267 |
|
268 |
+
#: includes/class-fcbkbttn-settings.php:354
|
269 |
msgid ""
|
270 |
"To use custom image, You need to setup permissions for upload directory of "
|
271 |
"your site"
|
273 |
"Chcete-li použít vlastní obrázek, je nutné nastavit oprávnění ke složce "
|
274 |
"Upload na vašem webu"
|
275 |
|
276 |
+
#: includes/class-fcbkbttn-settings.php:361
|
277 |
msgid "Current image"
|
278 |
msgstr "Aktuální obrázek"
|
279 |
|
280 |
+
#: includes/class-fcbkbttn-settings.php:369
|
281 |
msgid ""
|
282 |
"Image requirements: max image width: 100px; max image height: 40px; max "
|
283 |
"image size: 32Kb; image types: \"jpg\", \"jpeg\", \"png\"."
|
284 |
msgstr ""
|
285 |
"Požadavky obrázku: maximální šířka:100px; maximální výška:40px; maximální "
|
286 |
+
"velikost:32Kb; typy obrázků: „jpg“, „jpeg“, „"
|
287 |
+
"png“."
|
288 |
|
289 |
+
#: includes/class-fcbkbttn-settings.php:373
|
290 |
msgid "Like&Share Buttons"
|
291 |
msgstr "Tlačítka To se mi líbí a Sdílet"
|
292 |
|
293 |
+
#: includes/class-fcbkbttn-settings.php:376
|
294 |
msgid "Like Button Layout"
|
295 |
msgstr "Vzhled tlačítka To se mi líbí"
|
296 |
|
297 |
+
#: includes/class-fcbkbttn-settings.php:399
|
298 |
msgid "Share Button Layout"
|
299 |
msgstr "Vzhled tlačítka Sdílet"
|
300 |
|
301 |
+
#: includes/class-fcbkbttn-settings.php:430
|
302 |
msgid "Like Button Action"
|
303 |
msgstr "Akce tlačítka To se mi líbí"
|
304 |
|
305 |
+
#: includes/class-fcbkbttn-settings.php:440
|
306 |
msgid "Recommend"
|
307 |
msgstr "Doporučit"
|
308 |
|
309 |
+
#: includes/class-fcbkbttn-settings.php:446
|
310 |
msgid "Friends Faces"
|
311 |
msgstr "Profilové foto přátel"
|
312 |
|
313 |
+
#: includes/class-fcbkbttn-settings.php:449
|
314 |
msgid "Enable to show faces of your friends who submitted the button."
|
315 |
msgstr ""
|
316 |
"Zapnout zobrazování profilové fotky vašich přátel, kteří kliknuli na "
|
317 |
"tlačítko."
|
318 |
|
319 |
+
#: includes/class-fcbkbttn-settings.php:453
|
320 |
msgid "Layout Width"
|
321 |
msgstr "Šířka layoutu"
|
322 |
|
323 |
+
#: includes/class-fcbkbttn-settings.php:457
|
324 |
msgid "px"
|
325 |
msgstr "px"
|
326 |
|
327 |
+
#: includes/class-fcbkbttn-settings.php:462
|
328 |
msgid "Theme"
|
329 |
msgstr "Šablona"
|
330 |
|
331 |
+
#: includes/class-fcbkbttn-settings.php:467
|
332 |
msgid "Light"
|
333 |
msgstr "Světlé"
|
334 |
|
335 |
+
#: includes/class-fcbkbttn-settings.php:472
|
336 |
msgid "Dark"
|
337 |
msgstr "Tmavé"
|
338 |
|
339 |
+
#: includes/class-fcbkbttn-settings.php:478
|
340 |
msgid "Like Button HTML Tag"
|
341 |
msgstr "HTML tag pro tlačítko To se mi líbí"
|
342 |
|
343 |
+
#: includes/class-fcbkbttn-settings.php:485
|
344 |
#, php-format
|
345 |
msgid "Tag %s can be used to improve website code validation."
|
346 |
msgstr "Ke zlepšení ověření kódu webové stránky lze použít štítek %s."
|
347 |
|
348 |
+
#: includes/class-fcbkbttn-settings.php:497
|
349 |
msgid "URL to Like"
|
350 |
msgstr "URL pro To se mi líbí"
|
351 |
|
352 |
+
#: includes/class-fcbkbttn-settings.php:499
|
353 |
msgid "Leave blank to use current page URL."
|
354 |
msgstr "Ponechte nevyplněné pro použití URL adresy aktuální stránky."
|
355 |
|
356 |
+
#: includes/class-fcbkbttn-settings.php:526
|
357 |
msgid "Facebook Button Shortcode"
|
358 |
msgstr "Zkrácený kód Facebook tlačítek"
|
359 |
|
360 |
+
#: includes/class-fcbkbttn-settings.php:529
|
361 |
msgid ""
|
362 |
"Add Facebook button(-s) to your posts, pages, custom post types or widgets "
|
363 |
"by using the following shortcode:"
|
365 |
"Přidat Facebook tlačítko/a do příspěvků, stránek, vlastních typů příspěvků "
|
366 |
"nebo widgetů pomocí následujícího zkráceného kódu:"
|
367 |
|
368 |
+
#: includes/class-fcbkbttn-settings.php:548
|
369 |
msgid "Facebook Buttons Preview"
|
370 |
msgstr "Náhled Facebook tlačítek"
|
371 |
|
372 |
+
#: includes/class-fcbkbttn-settings.php:562
|
373 |
msgid "Display Settings"
|
374 |
msgstr "Nastavení zobrazení"
|
375 |
|
376 |
+
#: includes/class-fcbkbttn-settings.php:571
|
377 |
msgid ""
|
378 |
"Please choose the necessary post types (or single pages) where Facebook "
|
379 |
"button will be displayed:"
|
380 |
msgstr ""
|
381 |
+
"Vyberte požadované typy příspěvků (nebo jednotlivé stránky), kde budou "
|
382 |
+
"zobrazeno tlačítko Facebook:"
|
383 |
|
384 |
+
#: includes/class-fcbkbttn-settings.php:578
|
385 |
msgid "Show URL for pages"
|
386 |
msgstr "Zobrazit URL pro stránky"
|
387 |
|
388 |
+
#: includes/class-fcbkbttn-settings.php:584
|
389 |
msgid "Example of site pages tree"
|
390 |
msgstr "Příklad stromu stránek webu"
|
391 |
+
|
392 |
+
#, fuzzy
|
393 |
+
#~| msgid "Settings"
|
394 |
+
#~ msgid "Shortcode settings"
|
395 |
+
#~ msgstr "Nastavení"
|
396 |
+
|
397 |
+
#, fuzzy
|
398 |
+
#~| msgid "License Key"
|
399 |
+
#~ msgid "Wrong license key"
|
400 |
+
#~ msgstr "Licenční klíč"
|
401 |
+
|
402 |
+
#, fuzzy
|
403 |
+
#~| msgid "License Key"
|
404 |
+
#~ msgid "Wrong license key."
|
405 |
+
#~ msgstr "Licenční klíč"
|
406 |
+
|
407 |
+
#, fuzzy
|
408 |
+
#~| msgid "Profile URL"
|
409 |
+
#~ msgid "Home URL"
|
410 |
+
#~ msgstr "URL profilu"
|
411 |
+
|
412 |
+
#, fuzzy
|
413 |
+
#~| msgid "Activate"
|
414 |
+
#~ msgid "Active Theme"
|
415 |
+
#~ msgstr "Aktivovat"
|
416 |
+
|
417 |
+
#, fuzzy
|
418 |
+
#~| msgid "Theme"
|
419 |
+
#~ msgid "Themes"
|
420 |
+
#~ msgstr "Šablona"
|
421 |
+
|
422 |
+
#, fuzzy
|
423 |
+
#~| msgid "License Key"
|
424 |
+
#~ msgid "Check license key"
|
425 |
+
#~ msgstr "Licenční klíč"
|
426 |
+
|
427 |
+
#, fuzzy
|
428 |
+
#~| msgid "Activate"
|
429 |
+
#~ msgid "Activate Plugin"
|
430 |
+
#~ msgstr "Aktivovat"
|
431 |
+
|
432 |
+
#, fuzzy
|
433 |
+
#~| msgid "Install Now"
|
434 |
+
#~ msgid "Installed"
|
435 |
+
#~ msgstr "Instalovat nyní"
|
436 |
+
|
437 |
+
#, fuzzy
|
438 |
+
#~| msgid "Support"
|
439 |
+
#~ msgid "Send to support"
|
440 |
+
#~ msgstr "Podpora"
|
441 |
+
|
442 |
+
#, fuzzy
|
443 |
+
#~| msgid "Activate"
|
444 |
+
#~ msgid "Inactive"
|
445 |
+
#~ msgstr "Aktivovat"
|
446 |
+
|
447 |
+
#, fuzzy
|
448 |
+
#~| msgid "Activate"
|
449 |
+
#~ msgid "Active"
|
450 |
+
#~ msgstr "Aktivovat"
|
451 |
+
|
452 |
+
#, fuzzy
|
453 |
+
#~| msgid "License Key"
|
454 |
+
#~ msgid "License"
|
455 |
+
#~ msgstr "Licenční klíč"
|
456 |
+
|
457 |
+
#, fuzzy
|
458 |
+
#~| msgid "Display Settings"
|
459 |
+
#~ msgid "Miscellaneous Settings"
|
460 |
+
#~ msgstr "Nastavení zobrazení"
|
461 |
+
|
462 |
+
#, fuzzy
|
463 |
+
#~| msgid "Enable to display buttons in excerpt."
|
464 |
+
#~ msgid "Enable to display plugin Pro options."
|
465 |
+
#~ msgstr "Zobrazit tlačítka ve stručném obsahu."
|
466 |
+
|
467 |
+
#, fuzzy
|
468 |
+
#~| msgid "Display Settings"
|
469 |
+
#~ msgid "Default Settings"
|
470 |
+
#~ msgstr "Nastavení zobrazení"
|
471 |
+
|
472 |
+
#, fuzzy
|
473 |
+
#~| msgid "Settings"
|
474 |
+
#~ msgid "Restore Settings"
|
475 |
+
#~ msgstr "Nastavení"
|
476 |
+
|
477 |
+
#, fuzzy
|
478 |
+
#~| msgid "Settings saved"
|
479 |
+
#~ msgid "Settings page"
|
480 |
+
#~ msgstr "Nastavení uloženo"
|
481 |
+
|
482 |
+
#, fuzzy
|
483 |
+
#~| msgid "Support"
|
484 |
+
#~ msgid "Contact Support"
|
485 |
+
#~ msgstr "Podpora"
|
486 |
+
|
487 |
+
#, fuzzy
|
488 |
+
#~| msgid "Activate"
|
489 |
+
#~ msgid "Deactivate"
|
490 |
+
#~ msgstr "Aktivovat"
|
491 |
+
|
492 |
+
#, fuzzy
|
493 |
+
#~| msgid "Settings saved"
|
494 |
+
#~ msgid "the setting page"
|
495 |
+
#~ msgstr "Nastavení uloženo"
|
496 |
+
|
497 |
+
#, fuzzy
|
498 |
+
#~| msgid "Upload successful."
|
499 |
+
#~ msgid "File %s edited successfully."
|
500 |
+
#~ msgstr "Úspěšně nahráno."
|
501 |
+
|
502 |
+
#, fuzzy
|
503 |
+
#~| msgid "After content"
|
504 |
+
#~ msgid "Content"
|
505 |
+
#~ msgstr "Za obsahem"
|
506 |
+
|
507 |
+
#, fuzzy
|
508 |
+
#~| msgid "Recommend"
|
509 |
+
#~ msgid "Recommended"
|
510 |
+
#~ msgstr "Doporučit"
|
languages/facebook-button-plugin-ru_RU.mo
CHANGED
Binary file
|
languages/facebook-button-plugin-ru_RU.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
@@ -13,36 +13,36 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: facebook-button-plugin.php:
|
20 |
-
#: facebook-button-plugin.php:
|
21 |
msgid "Facebook Button Settings"
|
22 |
msgstr "Настройки Facebook Button"
|
23 |
|
24 |
-
#: facebook-button-plugin.php:
|
25 |
-
#: facebook-button-plugin.php:
|
26 |
msgid "Settings"
|
27 |
msgstr "Настройки"
|
28 |
|
29 |
-
#: facebook-button-plugin.php:
|
30 |
msgid "Upgrade to Pro"
|
31 |
msgstr "Обновиться до Pro"
|
32 |
|
33 |
-
#: facebook-button-plugin.php:
|
34 |
msgid "Please, enable JavaScript in your browser."
|
35 |
msgstr "Пожалуйста, включите поддержку JavaScript в вашем браузере."
|
36 |
|
37 |
-
#: facebook-button-plugin.php:
|
38 |
msgid "Add Facebook buttons to your page or post"
|
39 |
msgstr "Добавить Facebook кнопки на вашу страницу или запись"
|
40 |
|
41 |
-
#: facebook-button-plugin.php:
|
42 |
msgid "FAQ"
|
43 |
msgstr "FAQ"
|
44 |
|
45 |
-
#: facebook-button-plugin.php:
|
46 |
msgid "Support"
|
47 |
msgstr "Поддержка"
|
48 |
|
@@ -62,122 +62,122 @@ msgstr "Пользовательский код"
|
|
62 |
msgid "License Key"
|
63 |
msgstr "Лицензионный ключ"
|
64 |
|
65 |
-
#: includes/class-fcbkbttn-settings.php:
|
66 |
msgid "Settings saved"
|
67 |
msgstr "Настройки сохранены"
|
68 |
|
69 |
-
#: includes/class-fcbkbttn-settings.php:
|
70 |
msgid "Error: File size must not exceed 32KB"
|
71 |
msgstr "Ошибка: Размер файла не должен превышать 32КБ"
|
72 |
|
73 |
-
#: includes/class-fcbkbttn-settings.php:
|
74 |
msgid "Error: Invalid file type"
|
75 |
msgstr "Ошибка: Некорректный тип файла"
|
76 |
|
77 |
-
#: includes/class-fcbkbttn-settings.php:
|
78 |
msgid "Upload successful."
|
79 |
msgstr "Загрузка прошла удачно."
|
80 |
|
81 |
-
#: includes/class-fcbkbttn-settings.php:
|
82 |
msgid "Error: Failed to move file."
|
83 |
msgstr "Ошибка: При перемещении файла произошла ошибка."
|
84 |
|
85 |
-
#: includes/class-fcbkbttn-settings.php:
|
86 |
msgid "Error: Check image width or height."
|
87 |
msgstr "Ошибка: Проверьте ширину и высоту изображения."
|
88 |
|
89 |
-
#: includes/class-fcbkbttn-settings.php:
|
90 |
msgid "Uploading Error: Check image properties"
|
91 |
msgstr "Ошибка загрузки: Проверьте параметры изображения"
|
92 |
|
93 |
-
#: includes/class-fcbkbttn-settings.php:
|
94 |
msgid "General"
|
95 |
msgstr "Общее"
|
96 |
|
97 |
-
#: includes/class-fcbkbttn-settings.php:
|
98 |
msgid "Change App ID"
|
99 |
msgstr "Изменить App ID"
|
100 |
|
101 |
-
#: includes/class-fcbkbttn-settings.php:
|
102 |
msgid "You can use standard App ID or"
|
103 |
msgstr "Вы можете использовать стандартный App ID или"
|
104 |
|
105 |
-
#: includes/class-fcbkbttn-settings.php:
|
106 |
msgid "create a new one"
|
107 |
msgstr "создать свой собственный."
|
108 |
|
109 |
-
#: includes/class-fcbkbttn-settings.php:
|
110 |
msgid " Leave blank to use standard App ID."
|
111 |
msgstr "Чтобы использовать стандартный App ID, оставьте это поле пустым."
|
112 |
|
113 |
-
#: includes/class-fcbkbttn-settings.php:
|
114 |
msgid "Buttons"
|
115 |
msgstr "Кнопки"
|
116 |
|
117 |
-
#: includes/class-fcbkbttn-settings.php:
|
118 |
msgid "Profile URL"
|
119 |
msgstr "URL профиля"
|
120 |
|
121 |
-
#: includes/class-fcbkbttn-settings.php:
|
122 |
-
#: includes/class-fcbkbttn-settings.php:
|
123 |
msgid "Like"
|
124 |
msgstr "Нравится"
|
125 |
|
126 |
-
#: includes/class-fcbkbttn-settings.php:
|
127 |
msgid "Share"
|
128 |
msgstr "Поделиться"
|
129 |
|
130 |
-
#: includes/class-fcbkbttn-settings.php:
|
131 |
msgid "Buttons Size"
|
132 |
msgstr "Размер кнопок"
|
133 |
|
134 |
-
#: includes/class-fcbkbttn-settings.php:
|
135 |
msgid "Small"
|
136 |
msgstr "Маленькие"
|
137 |
|
138 |
-
#: includes/class-fcbkbttn-settings.php:
|
139 |
msgid "Large"
|
140 |
msgstr "Большие"
|
141 |
|
142 |
-
#: includes/class-fcbkbttn-settings.php:
|
143 |
msgid "Buttons Position"
|
144 |
msgstr "Позиция кнопок"
|
145 |
|
146 |
-
#: includes/class-fcbkbttn-settings.php:
|
147 |
msgid "Before content"
|
148 |
msgstr "Перед содержимым"
|
149 |
|
150 |
-
#: includes/class-fcbkbttn-settings.php:
|
151 |
msgid "After content"
|
152 |
msgstr "После содержимого"
|
153 |
|
154 |
-
#: includes/class-fcbkbttn-settings.php:
|
155 |
msgid "Buttons Align"
|
156 |
msgstr "Выравнивание кнопок"
|
157 |
|
158 |
-
#: includes/class-fcbkbttn-settings.php:
|
159 |
msgid "Right"
|
160 |
msgstr "Справа"
|
161 |
|
162 |
-
#: includes/class-fcbkbttn-settings.php:
|
163 |
msgid "Center"
|
164 |
msgstr "По середине"
|
165 |
|
166 |
-
#: includes/class-fcbkbttn-settings.php:
|
167 |
msgid "Left"
|
168 |
msgstr "Слева"
|
169 |
|
170 |
-
#: includes/class-fcbkbttn-settings.php:
|
171 |
msgid "Language"
|
172 |
msgstr "Язык"
|
173 |
|
174 |
-
#: includes/class-fcbkbttn-settings.php:
|
175 |
msgid "Select the default language for Facebook button(-s)."
|
176 |
msgstr "Выберите язык отображения по умолчанию для кнопок Facebook."
|
177 |
|
178 |
-
#: includes/class-fcbkbttn-settings.php:
|
179 |
-
#: includes/class-fcbkbttn-settings.php:
|
180 |
-
#: includes/class-fcbkbttn-settings.php:
|
181 |
msgid ""
|
182 |
"Enable to switch language automatically on multilingual website using "
|
183 |
"Multilanguage plugin."
|
@@ -185,49 +185,57 @@ msgstr ""
|
|
185 |
"Включите, чтобы переключить язык автоматически на многоязычном сайте, "
|
186 |
"используя плагин Multilanguage."
|
187 |
|
188 |
-
#: includes/class-fcbkbttn-settings.php:
|
189 |
msgid "Activate"
|
190 |
msgstr "Активировать"
|
191 |
|
192 |
-
#: includes/class-fcbkbttn-settings.php:
|
193 |
msgid "Install Now"
|
194 |
msgstr "Установить сейчас"
|
195 |
|
196 |
-
#: includes/class-fcbkbttn-settings.php:
|
197 |
msgid "Excerpt"
|
198 |
msgstr "Цитата"
|
199 |
|
200 |
-
#: includes/class-fcbkbttn-settings.php:
|
201 |
msgid "Enable to display buttons in excerpt."
|
202 |
msgstr "Включите, чтоб отображать кнопки для цитаты."
|
203 |
|
|
|
|
|
|
|
|
|
204 |
#: includes/class-fcbkbttn-settings.php:288
|
205 |
-
|
206 |
-
|
|
|
|
|
|
|
|
|
207 |
msgid "Close"
|
208 |
msgstr "Закрыть"
|
209 |
|
210 |
-
#: includes/class-fcbkbttn-settings.php:
|
211 |
msgid "Meta Image"
|
212 |
msgstr "Мета изображение"
|
213 |
|
214 |
-
#: includes/class-fcbkbttn-settings.php:
|
215 |
msgid "Featured Image"
|
216 |
msgstr "Миниатюра записи"
|
217 |
|
218 |
-
#: includes/class-fcbkbttn-settings.php:
|
219 |
msgid "Custom Image"
|
220 |
msgstr "Пользовательское изображение"
|
221 |
|
222 |
-
#: includes/class-fcbkbttn-settings.php:
|
223 |
msgid "This image will be used for all posts"
|
224 |
msgstr "Это изображение будет использоваться для всех записей"
|
225 |
|
226 |
-
#: includes/class-fcbkbttn-settings.php:
|
227 |
msgid "Meta Description"
|
228 |
msgstr "Мета описание"
|
229 |
|
230 |
-
#: includes/class-fcbkbttn-settings.php:
|
231 |
msgid ""
|
232 |
"This description will be used for all pages and posts. Leave blank to use "
|
233 |
"page description."
|
@@ -235,27 +243,27 @@ msgstr ""
|
|
235 |
"Это описание будет использоваться для всех записей и страниц. Оставьте "
|
236 |
"пустым, чтобы использовать описание страницы."
|
237 |
|
238 |
-
#: includes/class-fcbkbttn-settings.php:
|
239 |
msgid "Profile URL Button"
|
240 |
msgstr "Кнопка URL профиля"
|
241 |
|
242 |
-
#: includes/class-fcbkbttn-settings.php:
|
243 |
msgid "Facebook ID or Username"
|
244 |
msgstr "Facebook ID или имя пользователя"
|
245 |
|
246 |
-
#: includes/class-fcbkbttn-settings.php:
|
247 |
msgid "Profile Button Image"
|
248 |
msgstr "Изображение кнопки профиля"
|
249 |
|
250 |
-
#: includes/class-fcbkbttn-settings.php:
|
251 |
msgid "Default"
|
252 |
msgstr "По умолчанию"
|
253 |
|
254 |
-
#: includes/class-fcbkbttn-settings.php:
|
255 |
msgid "Custom image"
|
256 |
msgstr "Пользовательское изображение"
|
257 |
|
258 |
-
#: includes/class-fcbkbttn-settings.php:
|
259 |
msgid ""
|
260 |
"To use custom image, You need to setup permissions for upload directory of "
|
261 |
"your site"
|
@@ -263,11 +271,11 @@ msgstr ""
|
|
263 |
"Для использования пользовательского изображения, вам нужно выдать права "
|
264 |
"доступа на папку загрузок на вашем сайте"
|
265 |
|
266 |
-
#: includes/class-fcbkbttn-settings.php:
|
267 |
msgid "Current image"
|
268 |
msgstr "Текущее изображение"
|
269 |
|
270 |
-
#: includes/class-fcbkbttn-settings.php:
|
271 |
msgid ""
|
272 |
"Image requirements: max image width: 100px; max image height: 40px; max "
|
273 |
"image size: 32Kb; image types: \"jpg\", \"jpeg\", \"png\"."
|
@@ -275,76 +283,76 @@ msgstr ""
|
|
275 |
"Требования к изображению: максимальная ширина: 100px; максимальная высота: "
|
276 |
"40px; максимальный размер: 32Kb; тип файла: \"jpg\", \"jpeg\", \"png\"."
|
277 |
|
278 |
-
#: includes/class-fcbkbttn-settings.php:
|
279 |
msgid "Like&Share Buttons"
|
280 |
msgstr "Кнопки \"Нравится\" и \"Поделиться\""
|
281 |
|
282 |
-
#: includes/class-fcbkbttn-settings.php:
|
283 |
msgid "Like Button Layout"
|
284 |
msgstr "Вид кнопки \"Нравится\""
|
285 |
|
286 |
-
#: includes/class-fcbkbttn-settings.php:
|
287 |
msgid "Share Button Layout"
|
288 |
msgstr "Вид кнопки \"Поделиться\""
|
289 |
|
290 |
-
#: includes/class-fcbkbttn-settings.php:
|
291 |
msgid "Like Button Action"
|
292 |
msgstr "Действие кнопки \"Нравится\""
|
293 |
|
294 |
-
#: includes/class-fcbkbttn-settings.php:
|
295 |
msgid "Recommend"
|
296 |
msgstr "Рекомендую"
|
297 |
|
298 |
-
#: includes/class-fcbkbttn-settings.php:
|
299 |
msgid "Friends Faces"
|
300 |
msgstr "Лица друзей"
|
301 |
|
302 |
-
#: includes/class-fcbkbttn-settings.php:
|
303 |
msgid "Enable to show faces of your friends who submitted the button."
|
304 |
msgstr "Включите, чтобы показать лица своих друзей, которые нажали кнопку."
|
305 |
|
306 |
-
#: includes/class-fcbkbttn-settings.php:
|
307 |
msgid "Layout Width"
|
308 |
msgstr "Ширина блока"
|
309 |
|
310 |
-
#: includes/class-fcbkbttn-settings.php:
|
311 |
msgid "px"
|
312 |
msgstr "пикс"
|
313 |
|
314 |
-
#: includes/class-fcbkbttn-settings.php:
|
315 |
msgid "Theme"
|
316 |
msgstr "Тема"
|
317 |
|
318 |
-
#: includes/class-fcbkbttn-settings.php:
|
319 |
msgid "Light"
|
320 |
msgstr "Светлая"
|
321 |
|
322 |
-
#: includes/class-fcbkbttn-settings.php:
|
323 |
msgid "Dark"
|
324 |
msgstr "Тёмная"
|
325 |
|
326 |
-
#: includes/class-fcbkbttn-settings.php:
|
327 |
msgid "Like Button HTML Tag"
|
328 |
msgstr "HTML тег кнопки \"Нравится\""
|
329 |
|
330 |
-
#: includes/class-fcbkbttn-settings.php:
|
331 |
#, php-format
|
332 |
msgid "Tag %s can be used to improve website code validation."
|
333 |
msgstr "Тег %s может быть использован для улучшения валидации кода сайта."
|
334 |
|
335 |
-
#: includes/class-fcbkbttn-settings.php:
|
336 |
msgid "URL to Like"
|
337 |
msgstr "URL кнопки \"Нравится\""
|
338 |
|
339 |
-
#: includes/class-fcbkbttn-settings.php:
|
340 |
msgid "Leave blank to use current page URL."
|
341 |
msgstr "Оставьте пустым, чтобы использовать ссылку на текущую страницу."
|
342 |
|
343 |
-
#: includes/class-fcbkbttn-settings.php:
|
344 |
msgid "Facebook Button Shortcode"
|
345 |
msgstr "Шорткод Facebook Button"
|
346 |
|
347 |
-
#: includes/class-fcbkbttn-settings.php:
|
348 |
msgid ""
|
349 |
"Add Facebook button(-s) to your posts, pages, custom post types or widgets "
|
350 |
"by using the following shortcode:"
|
@@ -352,15 +360,15 @@ msgstr ""
|
|
352 |
"Добавить кнопки Facebook на ваши записи, страницы, пользовательские типы "
|
353 |
"записей или виджеты с помощью данного шорткода:"
|
354 |
|
355 |
-
#: includes/class-fcbkbttn-settings.php:
|
356 |
msgid "Facebook Buttons Preview"
|
357 |
msgstr "Предварительный просмотр Facebook кнопок"
|
358 |
|
359 |
-
#: includes/class-fcbkbttn-settings.php:
|
360 |
msgid "Display Settings"
|
361 |
msgstr "Настройка отображения"
|
362 |
|
363 |
-
#: includes/class-fcbkbttn-settings.php:
|
364 |
msgid ""
|
365 |
"Please choose the necessary post types (or single pages) where Facebook "
|
366 |
"button will be displayed:"
|
@@ -368,11 +376,11 @@ msgstr ""
|
|
368 |
"Пожалуйста, выберите те типы записей (или отдельные страницы), где будут "
|
369 |
"отображаться кнопки Facebook:"
|
370 |
|
371 |
-
#: includes/class-fcbkbttn-settings.php:
|
372 |
msgid "Show URL for pages"
|
373 |
msgstr "Отображать URL для страниц"
|
374 |
|
375 |
-
#: includes/class-fcbkbttn-settings.php:
|
376 |
msgid "Example of site pages tree"
|
377 |
msgstr "Пример дерева страниц сайта"
|
378 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-01-03 15:37+0200\n"
|
6 |
+
"PO-Revision-Date: 2019-01-03 15:38+0200\n"
|
7 |
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 2.0.6\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: facebook-button-plugin.php:38 facebook-button-plugin.php:46
|
20 |
+
#: facebook-button-plugin.php:221 includes/class-fcbkbttn-settings.php:188
|
21 |
msgid "Facebook Button Settings"
|
22 |
msgstr "Настройки Facebook Button"
|
23 |
|
24 |
+
#: facebook-button-plugin.php:47 facebook-button-plugin.php:586
|
25 |
+
#: facebook-button-plugin.php:600 includes/class-fcbkbttn-settings.php:23
|
26 |
msgid "Settings"
|
27 |
msgstr "Настройки"
|
28 |
|
29 |
+
#: facebook-button-plugin.php:62
|
30 |
msgid "Upgrade to Pro"
|
31 |
msgstr "Обновиться до Pro"
|
32 |
|
33 |
+
#: facebook-button-plugin.php:224
|
34 |
msgid "Please, enable JavaScript in your browser."
|
35 |
msgstr "Пожалуйста, включите поддержку JavaScript в вашем браузере."
|
36 |
|
37 |
+
#: facebook-button-plugin.php:424
|
38 |
msgid "Add Facebook buttons to your page or post"
|
39 |
msgstr "Добавить Facebook кнопки на вашу страницу или запись"
|
40 |
|
41 |
+
#: facebook-button-plugin.php:602
|
42 |
msgid "FAQ"
|
43 |
msgstr "FAQ"
|
44 |
|
45 |
+
#: facebook-button-plugin.php:603
|
46 |
msgid "Support"
|
47 |
msgstr "Поддержка"
|
48 |
|
62 |
msgid "License Key"
|
63 |
msgstr "Лицензионный ключ"
|
64 |
|
65 |
+
#: includes/class-fcbkbttn-settings.php:111
|
66 |
msgid "Settings saved"
|
67 |
msgstr "Настройки сохранены"
|
68 |
|
69 |
+
#: includes/class-fcbkbttn-settings.php:141
|
70 |
msgid "Error: File size must not exceed 32KB"
|
71 |
msgstr "Ошибка: Размер файла не должен превышать 32КБ"
|
72 |
|
73 |
+
#: includes/class-fcbkbttn-settings.php:144
|
74 |
msgid "Error: Invalid file type"
|
75 |
msgstr "Ошибка: Некорректный тип файла"
|
76 |
|
77 |
+
#: includes/class-fcbkbttn-settings.php:150
|
78 |
msgid "Upload successful."
|
79 |
msgstr "Загрузка прошла удачно."
|
80 |
|
81 |
+
#: includes/class-fcbkbttn-settings.php:158
|
82 |
msgid "Error: Failed to move file."
|
83 |
msgstr "Ошибка: При перемещении файла произошла ошибка."
|
84 |
|
85 |
+
#: includes/class-fcbkbttn-settings.php:161
|
86 |
msgid "Error: Check image width or height."
|
87 |
msgstr "Ошибка: Проверьте ширину и высоту изображения."
|
88 |
|
89 |
+
#: includes/class-fcbkbttn-settings.php:165
|
90 |
msgid "Uploading Error: Check image properties"
|
91 |
msgstr "Ошибка загрузки: Проверьте параметры изображения"
|
92 |
|
93 |
+
#: includes/class-fcbkbttn-settings.php:192
|
94 |
msgid "General"
|
95 |
msgstr "Общее"
|
96 |
|
97 |
+
#: includes/class-fcbkbttn-settings.php:195
|
98 |
msgid "Change App ID"
|
99 |
msgstr "Изменить App ID"
|
100 |
|
101 |
+
#: includes/class-fcbkbttn-settings.php:199
|
102 |
msgid "You can use standard App ID or"
|
103 |
msgstr "Вы можете использовать стандартный App ID или"
|
104 |
|
105 |
+
#: includes/class-fcbkbttn-settings.php:199
|
106 |
msgid "create a new one"
|
107 |
msgstr "создать свой собственный."
|
108 |
|
109 |
+
#: includes/class-fcbkbttn-settings.php:199
|
110 |
msgid " Leave blank to use standard App ID."
|
111 |
msgstr "Чтобы использовать стандартный App ID, оставьте это поле пустым."
|
112 |
|
113 |
+
#: includes/class-fcbkbttn-settings.php:203
|
114 |
msgid "Buttons"
|
115 |
msgstr "Кнопки"
|
116 |
|
117 |
+
#: includes/class-fcbkbttn-settings.php:206
|
118 |
msgid "Profile URL"
|
119 |
msgstr "URL профиля"
|
120 |
|
121 |
+
#: includes/class-fcbkbttn-settings.php:207
|
122 |
+
#: includes/class-fcbkbttn-settings.php:435
|
123 |
msgid "Like"
|
124 |
msgstr "Нравится"
|
125 |
|
126 |
+
#: includes/class-fcbkbttn-settings.php:208
|
127 |
msgid "Share"
|
128 |
msgstr "Поделиться"
|
129 |
|
130 |
+
#: includes/class-fcbkbttn-settings.php:213
|
131 |
msgid "Buttons Size"
|
132 |
msgstr "Размер кнопок"
|
133 |
|
134 |
+
#: includes/class-fcbkbttn-settings.php:216
|
135 |
msgid "Small"
|
136 |
msgstr "Маленькие"
|
137 |
|
138 |
+
#: includes/class-fcbkbttn-settings.php:217
|
139 |
msgid "Large"
|
140 |
msgstr "Большие"
|
141 |
|
142 |
+
#: includes/class-fcbkbttn-settings.php:222
|
143 |
msgid "Buttons Position"
|
144 |
msgstr "Позиция кнопок"
|
145 |
|
146 |
+
#: includes/class-fcbkbttn-settings.php:227
|
147 |
msgid "Before content"
|
148 |
msgstr "Перед содержимым"
|
149 |
|
150 |
+
#: includes/class-fcbkbttn-settings.php:232
|
151 |
msgid "After content"
|
152 |
msgstr "После содержимого"
|
153 |
|
154 |
+
#: includes/class-fcbkbttn-settings.php:238
|
155 |
msgid "Buttons Align"
|
156 |
msgstr "Выравнивание кнопок"
|
157 |
|
158 |
+
#: includes/class-fcbkbttn-settings.php:241
|
159 |
msgid "Right"
|
160 |
msgstr "Справа"
|
161 |
|
162 |
+
#: includes/class-fcbkbttn-settings.php:242
|
163 |
msgid "Center"
|
164 |
msgstr "По середине"
|
165 |
|
166 |
+
#: includes/class-fcbkbttn-settings.php:243
|
167 |
msgid "Left"
|
168 |
msgstr "Слева"
|
169 |
|
170 |
+
#: includes/class-fcbkbttn-settings.php:248
|
171 |
msgid "Language"
|
172 |
msgstr "Язык"
|
173 |
|
174 |
+
#: includes/class-fcbkbttn-settings.php:259
|
175 |
msgid "Select the default language for Facebook button(-s)."
|
176 |
msgstr "Выберите язык отображения по умолчанию для кнопок Facebook."
|
177 |
|
178 |
+
#: includes/class-fcbkbttn-settings.php:268
|
179 |
+
#: includes/class-fcbkbttn-settings.php:271
|
180 |
+
#: includes/class-fcbkbttn-settings.php:275
|
181 |
msgid ""
|
182 |
"Enable to switch language automatically on multilingual website using "
|
183 |
"Multilanguage plugin."
|
185 |
"Включите, чтобы переключить язык автоматически на многоязычном сайте, "
|
186 |
"используя плагин Multilanguage."
|
187 |
|
188 |
+
#: includes/class-fcbkbttn-settings.php:271
|
189 |
msgid "Activate"
|
190 |
msgstr "Активировать"
|
191 |
|
192 |
+
#: includes/class-fcbkbttn-settings.php:275
|
193 |
msgid "Install Now"
|
194 |
msgstr "Установить сейчас"
|
195 |
|
196 |
+
#: includes/class-fcbkbttn-settings.php:280
|
197 |
msgid "Excerpt"
|
198 |
msgstr "Цитата"
|
199 |
|
200 |
+
#: includes/class-fcbkbttn-settings.php:282
|
201 |
msgid "Enable to display buttons in excerpt."
|
202 |
msgstr "Включите, чтоб отображать кнопки для цитаты."
|
203 |
|
204 |
+
#: includes/class-fcbkbttn-settings.php:286
|
205 |
+
msgid "Meta Tags"
|
206 |
+
msgstr "Мета теги"
|
207 |
+
|
208 |
#: includes/class-fcbkbttn-settings.php:288
|
209 |
+
msgid "Disable meta tags."
|
210 |
+
msgstr "Выключить мета теги ."
|
211 |
+
|
212 |
+
#: includes/class-fcbkbttn-settings.php:296
|
213 |
+
#: includes/class-fcbkbttn-settings.php:493
|
214 |
+
#: includes/class-fcbkbttn-settings.php:547
|
215 |
msgid "Close"
|
216 |
msgstr "Закрыть"
|
217 |
|
218 |
+
#: includes/class-fcbkbttn-settings.php:300
|
219 |
msgid "Meta Image"
|
220 |
msgstr "Мета изображение"
|
221 |
|
222 |
+
#: includes/class-fcbkbttn-settings.php:305
|
223 |
msgid "Featured Image"
|
224 |
msgstr "Миниатюра записи"
|
225 |
|
226 |
+
#: includes/class-fcbkbttn-settings.php:309
|
227 |
msgid "Custom Image"
|
228 |
msgstr "Пользовательское изображение"
|
229 |
|
230 |
+
#: includes/class-fcbkbttn-settings.php:309
|
231 |
msgid "This image will be used for all posts"
|
232 |
msgstr "Это изображение будет использоваться для всех записей"
|
233 |
|
234 |
+
#: includes/class-fcbkbttn-settings.php:316
|
235 |
msgid "Meta Description"
|
236 |
msgstr "Мета описание"
|
237 |
|
238 |
+
#: includes/class-fcbkbttn-settings.php:320
|
239 |
msgid ""
|
240 |
"This description will be used for all pages and posts. Leave blank to use "
|
241 |
"page description."
|
243 |
"Это описание будет использоваться для всех записей и страниц. Оставьте "
|
244 |
"пустым, чтобы использовать описание страницы."
|
245 |
|
246 |
+
#: includes/class-fcbkbttn-settings.php:328
|
247 |
msgid "Profile URL Button"
|
248 |
msgstr "Кнопка URL профиля"
|
249 |
|
250 |
+
#: includes/class-fcbkbttn-settings.php:331
|
251 |
msgid "Facebook ID or Username"
|
252 |
msgstr "Facebook ID или имя пользователя"
|
253 |
|
254 |
+
#: includes/class-fcbkbttn-settings.php:338
|
255 |
msgid "Profile Button Image"
|
256 |
msgstr "Изображение кнопки профиля"
|
257 |
|
258 |
+
#: includes/class-fcbkbttn-settings.php:345
|
259 |
msgid "Default"
|
260 |
msgstr "По умолчанию"
|
261 |
|
262 |
+
#: includes/class-fcbkbttn-settings.php:350
|
263 |
msgid "Custom image"
|
264 |
msgstr "Пользовательское изображение"
|
265 |
|
266 |
+
#: includes/class-fcbkbttn-settings.php:354
|
267 |
msgid ""
|
268 |
"To use custom image, You need to setup permissions for upload directory of "
|
269 |
"your site"
|
271 |
"Для использования пользовательского изображения, вам нужно выдать права "
|
272 |
"доступа на папку загрузок на вашем сайте"
|
273 |
|
274 |
+
#: includes/class-fcbkbttn-settings.php:361
|
275 |
msgid "Current image"
|
276 |
msgstr "Текущее изображение"
|
277 |
|
278 |
+
#: includes/class-fcbkbttn-settings.php:369
|
279 |
msgid ""
|
280 |
"Image requirements: max image width: 100px; max image height: 40px; max "
|
281 |
"image size: 32Kb; image types: \"jpg\", \"jpeg\", \"png\"."
|
283 |
"Требования к изображению: максимальная ширина: 100px; максимальная высота: "
|
284 |
"40px; максимальный размер: 32Kb; тип файла: \"jpg\", \"jpeg\", \"png\"."
|
285 |
|
286 |
+
#: includes/class-fcbkbttn-settings.php:373
|
287 |
msgid "Like&Share Buttons"
|
288 |
msgstr "Кнопки \"Нравится\" и \"Поделиться\""
|
289 |
|
290 |
+
#: includes/class-fcbkbttn-settings.php:376
|
291 |
msgid "Like Button Layout"
|
292 |
msgstr "Вид кнопки \"Нравится\""
|
293 |
|
294 |
+
#: includes/class-fcbkbttn-settings.php:399
|
295 |
msgid "Share Button Layout"
|
296 |
msgstr "Вид кнопки \"Поделиться\""
|
297 |
|
298 |
+
#: includes/class-fcbkbttn-settings.php:430
|
299 |
msgid "Like Button Action"
|
300 |
msgstr "Действие кнопки \"Нравится\""
|
301 |
|
302 |
+
#: includes/class-fcbkbttn-settings.php:440
|
303 |
msgid "Recommend"
|
304 |
msgstr "Рекомендую"
|
305 |
|
306 |
+
#: includes/class-fcbkbttn-settings.php:446
|
307 |
msgid "Friends Faces"
|
308 |
msgstr "Лица друзей"
|
309 |
|
310 |
+
#: includes/class-fcbkbttn-settings.php:449
|
311 |
msgid "Enable to show faces of your friends who submitted the button."
|
312 |
msgstr "Включите, чтобы показать лица своих друзей, которые нажали кнопку."
|
313 |
|
314 |
+
#: includes/class-fcbkbttn-settings.php:453
|
315 |
msgid "Layout Width"
|
316 |
msgstr "Ширина блока"
|
317 |
|
318 |
+
#: includes/class-fcbkbttn-settings.php:457
|
319 |
msgid "px"
|
320 |
msgstr "пикс"
|
321 |
|
322 |
+
#: includes/class-fcbkbttn-settings.php:462
|
323 |
msgid "Theme"
|
324 |
msgstr "Тема"
|
325 |
|
326 |
+
#: includes/class-fcbkbttn-settings.php:467
|
327 |
msgid "Light"
|
328 |
msgstr "Светлая"
|
329 |
|
330 |
+
#: includes/class-fcbkbttn-settings.php:472
|
331 |
msgid "Dark"
|
332 |
msgstr "Тёмная"
|
333 |
|
334 |
+
#: includes/class-fcbkbttn-settings.php:478
|
335 |
msgid "Like Button HTML Tag"
|
336 |
msgstr "HTML тег кнопки \"Нравится\""
|
337 |
|
338 |
+
#: includes/class-fcbkbttn-settings.php:485
|
339 |
#, php-format
|
340 |
msgid "Tag %s can be used to improve website code validation."
|
341 |
msgstr "Тег %s может быть использован для улучшения валидации кода сайта."
|
342 |
|
343 |
+
#: includes/class-fcbkbttn-settings.php:497
|
344 |
msgid "URL to Like"
|
345 |
msgstr "URL кнопки \"Нравится\""
|
346 |
|
347 |
+
#: includes/class-fcbkbttn-settings.php:499
|
348 |
msgid "Leave blank to use current page URL."
|
349 |
msgstr "Оставьте пустым, чтобы использовать ссылку на текущую страницу."
|
350 |
|
351 |
+
#: includes/class-fcbkbttn-settings.php:526
|
352 |
msgid "Facebook Button Shortcode"
|
353 |
msgstr "Шорткод Facebook Button"
|
354 |
|
355 |
+
#: includes/class-fcbkbttn-settings.php:529
|
356 |
msgid ""
|
357 |
"Add Facebook button(-s) to your posts, pages, custom post types or widgets "
|
358 |
"by using the following shortcode:"
|
360 |
"Добавить кнопки Facebook на ваши записи, страницы, пользовательские типы "
|
361 |
"записей или виджеты с помощью данного шорткода:"
|
362 |
|
363 |
+
#: includes/class-fcbkbttn-settings.php:548
|
364 |
msgid "Facebook Buttons Preview"
|
365 |
msgstr "Предварительный просмотр Facebook кнопок"
|
366 |
|
367 |
+
#: includes/class-fcbkbttn-settings.php:562
|
368 |
msgid "Display Settings"
|
369 |
msgstr "Настройка отображения"
|
370 |
|
371 |
+
#: includes/class-fcbkbttn-settings.php:571
|
372 |
msgid ""
|
373 |
"Please choose the necessary post types (or single pages) where Facebook "
|
374 |
"button will be displayed:"
|
376 |
"Пожалуйста, выберите те типы записей (или отдельные страницы), где будут "
|
377 |
"отображаться кнопки Facebook:"
|
378 |
|
379 |
+
#: includes/class-fcbkbttn-settings.php:578
|
380 |
msgid "Show URL for pages"
|
381 |
msgstr "Отображать URL для страниц"
|
382 |
|
383 |
+
#: includes/class-fcbkbttn-settings.php:584
|
384 |
msgid "Example of site pages tree"
|
385 |
msgstr "Пример дерева страниц сайта"
|
386 |
|
languages/facebook-button-plugin-tr_TR.mo
CHANGED
Binary file
|
languages/facebook-button-plugin-tr_TR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: Can Atasever <webmaster@canatasever.com>\n"
|
9 |
"Language: tr\n"
|
@@ -13,38 +13,38 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: facebook-button-plugin.php:
|
21 |
-
#: facebook-button-plugin.php:
|
22 |
msgid "Facebook Button Settings"
|
23 |
msgstr "Facebook Buton Ayarları"
|
24 |
|
25 |
-
#: facebook-button-plugin.php:
|
26 |
-
#: facebook-button-plugin.php:
|
27 |
msgid "Settings"
|
28 |
msgstr "Ayarlar"
|
29 |
|
30 |
-
#: facebook-button-plugin.php:
|
31 |
msgid "Upgrade to Pro"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: facebook-button-plugin.php:
|
35 |
msgid "Please, enable JavaScript in your browser."
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: facebook-button-plugin.php:
|
39 |
#, fuzzy
|
40 |
msgid "Add Facebook buttons to your page or post"
|
41 |
msgstr "Facebook Butonu pozisyonu"
|
42 |
|
43 |
-
#: facebook-button-plugin.php:
|
44 |
msgid "FAQ"
|
45 |
msgstr "SSS"
|
46 |
|
47 |
-
#: facebook-button-plugin.php:
|
48 |
msgid "Support"
|
49 |
msgstr "Destek"
|
50 |
|
@@ -67,205 +67,214 @@ msgstr "Özel Facebook görseli"
|
|
67 |
msgid "License Key"
|
68 |
msgstr "Hatalı lisans anahtarı"
|
69 |
|
70 |
-
#: includes/class-fcbkbttn-settings.php:
|
71 |
msgid "Settings saved"
|
72 |
msgstr "Ayarlar kaydedildi"
|
73 |
|
74 |
-
#: includes/class-fcbkbttn-settings.php:
|
75 |
msgid "Error: File size must not exceed 32KB"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: includes/class-fcbkbttn-settings.php:
|
79 |
msgid "Error: Invalid file type"
|
80 |
msgstr "HATA: Geçersiz dosya türü"
|
81 |
|
82 |
-
#: includes/class-fcbkbttn-settings.php:
|
83 |
msgid "Upload successful."
|
84 |
msgstr "Yükleme başarılı"
|
85 |
|
86 |
-
#: includes/class-fcbkbttn-settings.php:
|
87 |
msgid "Error: Failed to move file."
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: includes/class-fcbkbttn-settings.php:
|
91 |
msgid "Error: Check image width or height."
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: includes/class-fcbkbttn-settings.php:
|
95 |
msgid "Uploading Error: Check image properties"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: includes/class-fcbkbttn-settings.php:
|
99 |
msgid "General"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: includes/class-fcbkbttn-settings.php:
|
103 |
msgid "Change App ID"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: includes/class-fcbkbttn-settings.php:
|
107 |
msgid "You can use standard App ID or"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: includes/class-fcbkbttn-settings.php:
|
111 |
msgid "create a new one"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: includes/class-fcbkbttn-settings.php:
|
115 |
msgid " Leave blank to use standard App ID."
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: includes/class-fcbkbttn-settings.php:
|
119 |
#, fuzzy
|
120 |
msgid "Buttons"
|
121 |
msgstr "Facebook Butonu pozisyonu"
|
122 |
|
123 |
-
#: includes/class-fcbkbttn-settings.php:
|
124 |
msgid "Profile URL"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: includes/class-fcbkbttn-settings.php:
|
128 |
-
#: includes/class-fcbkbttn-settings.php:
|
129 |
msgid "Like"
|
130 |
msgstr "Beğen"
|
131 |
|
132 |
-
#: includes/class-fcbkbttn-settings.php:
|
133 |
msgid "Share"
|
134 |
msgstr "Paylaş"
|
135 |
|
136 |
-
#: includes/class-fcbkbttn-settings.php:
|
137 |
msgid "Buttons Size"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: includes/class-fcbkbttn-settings.php:
|
141 |
msgid "Small"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: includes/class-fcbkbttn-settings.php:
|
145 |
msgid "Large"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: includes/class-fcbkbttn-settings.php:
|
149 |
#, fuzzy
|
150 |
msgid "Buttons Position"
|
151 |
msgstr "Facebook Butonu pozisyonu"
|
152 |
|
153 |
-
#: includes/class-fcbkbttn-settings.php:
|
154 |
#, fuzzy
|
155 |
msgid "Before content"
|
156 |
msgstr "Önce ve Sonra"
|
157 |
|
158 |
-
#: includes/class-fcbkbttn-settings.php:
|
159 |
msgid "After content"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: includes/class-fcbkbttn-settings.php:
|
163 |
msgid "Buttons Align"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: includes/class-fcbkbttn-settings.php:
|
167 |
msgid "Right"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: includes/class-fcbkbttn-settings.php:
|
171 |
msgid "Center"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: includes/class-fcbkbttn-settings.php:
|
175 |
msgid "Left"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: includes/class-fcbkbttn-settings.php:
|
179 |
msgid "Language"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: includes/class-fcbkbttn-settings.php:
|
183 |
#, fuzzy
|
184 |
msgid "Select the default language for Facebook button(-s)."
|
185 |
msgstr "Facebook Beğen butonunun dilini değiştirin"
|
186 |
|
187 |
-
#: includes/class-fcbkbttn-settings.php:
|
188 |
-
#: includes/class-fcbkbttn-settings.php:
|
189 |
-
#: includes/class-fcbkbttn-settings.php:
|
190 |
msgid ""
|
191 |
"Enable to switch language automatically on multilingual website using "
|
192 |
"Multilanguage plugin."
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: includes/class-fcbkbttn-settings.php:
|
196 |
msgid "Activate"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: includes/class-fcbkbttn-settings.php:
|
200 |
msgid "Install Now"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: includes/class-fcbkbttn-settings.php:
|
204 |
msgid "Excerpt"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: includes/class-fcbkbttn-settings.php:
|
208 |
#, fuzzy
|
209 |
msgid "Enable to display buttons in excerpt."
|
210 |
msgstr "Butonu Göster:"
|
211 |
|
|
|
|
|
|
|
|
|
|
|
212 |
#: includes/class-fcbkbttn-settings.php:288
|
213 |
-
|
214 |
-
|
|
|
|
|
|
|
|
|
215 |
msgid "Close"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: includes/class-fcbkbttn-settings.php:
|
219 |
#, fuzzy
|
220 |
msgid "Meta Image"
|
221 |
msgstr "Özel Facebook görseli"
|
222 |
|
223 |
-
#: includes/class-fcbkbttn-settings.php:
|
224 |
msgid "Featured Image"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: includes/class-fcbkbttn-settings.php:
|
228 |
#, fuzzy
|
229 |
msgid "Custom Image"
|
230 |
msgstr "Özel Facebook görseli"
|
231 |
|
232 |
-
#: includes/class-fcbkbttn-settings.php:
|
233 |
msgid "This image will be used for all posts"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: includes/class-fcbkbttn-settings.php:
|
237 |
msgid "Meta Description"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: includes/class-fcbkbttn-settings.php:
|
241 |
msgid ""
|
242 |
"This description will be used for all pages and posts. Leave blank to use "
|
243 |
"page description."
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: includes/class-fcbkbttn-settings.php:
|
247 |
msgid "Profile URL Button"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: includes/class-fcbkbttn-settings.php:
|
251 |
#, fuzzy
|
252 |
msgid "Facebook ID or Username"
|
253 |
msgstr "Facebook ID'niz:"
|
254 |
|
255 |
-
#: includes/class-fcbkbttn-settings.php:
|
256 |
msgid "Profile Button Image"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: includes/class-fcbkbttn-settings.php:
|
260 |
msgid "Default"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: includes/class-fcbkbttn-settings.php:
|
264 |
#, fuzzy
|
265 |
msgid "Custom image"
|
266 |
msgstr "Özel Facebook görseli"
|
267 |
|
268 |
-
#: includes/class-fcbkbttn-settings.php:
|
269 |
#, fuzzy
|
270 |
msgid ""
|
271 |
"To use custom image, You need to setup permissions for upload directory of "
|
@@ -274,103 +283,103 @@ msgstr ""
|
|
274 |
"Özel görsel kullanmak için sitenizin dizinine yükleme yapılmasına izin "
|
275 |
"vermelisiniz."
|
276 |
|
277 |
-
#: includes/class-fcbkbttn-settings.php:
|
278 |
#, fuzzy
|
279 |
msgid "Current image"
|
280 |
msgstr "Şu anki görsel:"
|
281 |
|
282 |
-
#: includes/class-fcbkbttn-settings.php:
|
283 |
msgid ""
|
284 |
"Image requirements: max image width: 100px; max image height: 40px; max "
|
285 |
"image size: 32Kb; image types: \"jpg\", \"jpeg\", \"png\"."
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: includes/class-fcbkbttn-settings.php:
|
289 |
msgid "Like&Share Buttons"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: includes/class-fcbkbttn-settings.php:
|
293 |
msgid "Like Button Layout"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: includes/class-fcbkbttn-settings.php:
|
297 |
msgid "Share Button Layout"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: includes/class-fcbkbttn-settings.php:
|
301 |
msgid "Like Button Action"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: includes/class-fcbkbttn-settings.php:
|
305 |
msgid "Recommend"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: includes/class-fcbkbttn-settings.php:
|
309 |
msgid "Friends Faces"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: includes/class-fcbkbttn-settings.php:
|
313 |
msgid "Enable to show faces of your friends who submitted the button."
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: includes/class-fcbkbttn-settings.php:
|
317 |
msgid "Layout Width"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: includes/class-fcbkbttn-settings.php:
|
321 |
msgid "px"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: includes/class-fcbkbttn-settings.php:
|
325 |
msgid "Theme"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: includes/class-fcbkbttn-settings.php:
|
329 |
msgid "Light"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: includes/class-fcbkbttn-settings.php:
|
333 |
msgid "Dark"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: includes/class-fcbkbttn-settings.php:
|
337 |
msgid "Like Button HTML Tag"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: includes/class-fcbkbttn-settings.php:
|
341 |
#, php-format
|
342 |
msgid "Tag %s can be used to improve website code validation."
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: includes/class-fcbkbttn-settings.php:
|
346 |
msgid "URL to Like"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: includes/class-fcbkbttn-settings.php:
|
350 |
msgid "Leave blank to use current page URL."
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: includes/class-fcbkbttn-settings.php:
|
354 |
msgid "Facebook Button Shortcode"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: includes/class-fcbkbttn-settings.php:
|
358 |
msgid ""
|
359 |
"Add Facebook button(-s) to your posts, pages, custom post types or widgets "
|
360 |
"by using the following shortcode:"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: includes/class-fcbkbttn-settings.php:
|
364 |
#, fuzzy
|
365 |
msgid "Facebook Buttons Preview"
|
366 |
msgstr "Facebook Butonu"
|
367 |
|
368 |
-
#: includes/class-fcbkbttn-settings.php:
|
369 |
#, fuzzy
|
370 |
msgid "Display Settings"
|
371 |
msgstr "Butonu Göster:"
|
372 |
|
373 |
-
#: includes/class-fcbkbttn-settings.php:
|
374 |
msgid ""
|
375 |
"Please choose the necessary post types (or single pages) where Facebook "
|
376 |
"button will be displayed:"
|
@@ -378,11 +387,11 @@ msgstr ""
|
|
378 |
"Lütfen Facebook butonunun gösterileceği yazı türlerini (ya da tek sayfaları) "
|
379 |
"seçin."
|
380 |
|
381 |
-
#: includes/class-fcbkbttn-settings.php:
|
382 |
msgid "Show URL for pages"
|
383 |
msgstr "Sayfalar için URL göster"
|
384 |
|
385 |
-
#: includes/class-fcbkbttn-settings.php:
|
386 |
msgid "Example of site pages tree"
|
387 |
msgstr ""
|
388 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-01-03 15:40+0200\n"
|
6 |
+
"PO-Revision-Date: 2019-01-03 15:40+0200\n"
|
7 |
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: Can Atasever <webmaster@canatasever.com>\n"
|
9 |
"Language: tr\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 2.0.6\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: facebook-button-plugin.php:38 facebook-button-plugin.php:46
|
21 |
+
#: facebook-button-plugin.php:221 includes/class-fcbkbttn-settings.php:188
|
22 |
msgid "Facebook Button Settings"
|
23 |
msgstr "Facebook Buton Ayarları"
|
24 |
|
25 |
+
#: facebook-button-plugin.php:47 facebook-button-plugin.php:586
|
26 |
+
#: facebook-button-plugin.php:600 includes/class-fcbkbttn-settings.php:23
|
27 |
msgid "Settings"
|
28 |
msgstr "Ayarlar"
|
29 |
|
30 |
+
#: facebook-button-plugin.php:62
|
31 |
msgid "Upgrade to Pro"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: facebook-button-plugin.php:224
|
35 |
msgid "Please, enable JavaScript in your browser."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: facebook-button-plugin.php:424
|
39 |
#, fuzzy
|
40 |
msgid "Add Facebook buttons to your page or post"
|
41 |
msgstr "Facebook Butonu pozisyonu"
|
42 |
|
43 |
+
#: facebook-button-plugin.php:602
|
44 |
msgid "FAQ"
|
45 |
msgstr "SSS"
|
46 |
|
47 |
+
#: facebook-button-plugin.php:603
|
48 |
msgid "Support"
|
49 |
msgstr "Destek"
|
50 |
|
67 |
msgid "License Key"
|
68 |
msgstr "Hatalı lisans anahtarı"
|
69 |
|
70 |
+
#: includes/class-fcbkbttn-settings.php:111
|
71 |
msgid "Settings saved"
|
72 |
msgstr "Ayarlar kaydedildi"
|
73 |
|
74 |
+
#: includes/class-fcbkbttn-settings.php:141
|
75 |
msgid "Error: File size must not exceed 32KB"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: includes/class-fcbkbttn-settings.php:144
|
79 |
msgid "Error: Invalid file type"
|
80 |
msgstr "HATA: Geçersiz dosya türü"
|
81 |
|
82 |
+
#: includes/class-fcbkbttn-settings.php:150
|
83 |
msgid "Upload successful."
|
84 |
msgstr "Yükleme başarılı"
|
85 |
|
86 |
+
#: includes/class-fcbkbttn-settings.php:158
|
87 |
msgid "Error: Failed to move file."
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: includes/class-fcbkbttn-settings.php:161
|
91 |
msgid "Error: Check image width or height."
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: includes/class-fcbkbttn-settings.php:165
|
95 |
msgid "Uploading Error: Check image properties"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: includes/class-fcbkbttn-settings.php:192
|
99 |
msgid "General"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: includes/class-fcbkbttn-settings.php:195
|
103 |
msgid "Change App ID"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: includes/class-fcbkbttn-settings.php:199
|
107 |
msgid "You can use standard App ID or"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: includes/class-fcbkbttn-settings.php:199
|
111 |
msgid "create a new one"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: includes/class-fcbkbttn-settings.php:199
|
115 |
msgid " Leave blank to use standard App ID."
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: includes/class-fcbkbttn-settings.php:203
|
119 |
#, fuzzy
|
120 |
msgid "Buttons"
|
121 |
msgstr "Facebook Butonu pozisyonu"
|
122 |
|
123 |
+
#: includes/class-fcbkbttn-settings.php:206
|
124 |
msgid "Profile URL"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: includes/class-fcbkbttn-settings.php:207
|
128 |
+
#: includes/class-fcbkbttn-settings.php:435
|
129 |
msgid "Like"
|
130 |
msgstr "Beğen"
|
131 |
|
132 |
+
#: includes/class-fcbkbttn-settings.php:208
|
133 |
msgid "Share"
|
134 |
msgstr "Paylaş"
|
135 |
|
136 |
+
#: includes/class-fcbkbttn-settings.php:213
|
137 |
msgid "Buttons Size"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: includes/class-fcbkbttn-settings.php:216
|
141 |
msgid "Small"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: includes/class-fcbkbttn-settings.php:217
|
145 |
msgid "Large"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: includes/class-fcbkbttn-settings.php:222
|
149 |
#, fuzzy
|
150 |
msgid "Buttons Position"
|
151 |
msgstr "Facebook Butonu pozisyonu"
|
152 |
|
153 |
+
#: includes/class-fcbkbttn-settings.php:227
|
154 |
#, fuzzy
|
155 |
msgid "Before content"
|
156 |
msgstr "Önce ve Sonra"
|
157 |
|
158 |
+
#: includes/class-fcbkbttn-settings.php:232
|
159 |
msgid "After content"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: includes/class-fcbkbttn-settings.php:238
|
163 |
msgid "Buttons Align"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: includes/class-fcbkbttn-settings.php:241
|
167 |
msgid "Right"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: includes/class-fcbkbttn-settings.php:242
|
171 |
msgid "Center"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: includes/class-fcbkbttn-settings.php:243
|
175 |
msgid "Left"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: includes/class-fcbkbttn-settings.php:248
|
179 |
msgid "Language"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: includes/class-fcbkbttn-settings.php:259
|
183 |
#, fuzzy
|
184 |
msgid "Select the default language for Facebook button(-s)."
|
185 |
msgstr "Facebook Beğen butonunun dilini değiştirin"
|
186 |
|
187 |
+
#: includes/class-fcbkbttn-settings.php:268
|
188 |
+
#: includes/class-fcbkbttn-settings.php:271
|
189 |
+
#: includes/class-fcbkbttn-settings.php:275
|
190 |
msgid ""
|
191 |
"Enable to switch language automatically on multilingual website using "
|
192 |
"Multilanguage plugin."
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: includes/class-fcbkbttn-settings.php:271
|
196 |
msgid "Activate"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: includes/class-fcbkbttn-settings.php:275
|
200 |
msgid "Install Now"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: includes/class-fcbkbttn-settings.php:280
|
204 |
msgid "Excerpt"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: includes/class-fcbkbttn-settings.php:282
|
208 |
#, fuzzy
|
209 |
msgid "Enable to display buttons in excerpt."
|
210 |
msgstr "Butonu Göster:"
|
211 |
|
212 |
+
#: includes/class-fcbkbttn-settings.php:286
|
213 |
+
#, fuzzy
|
214 |
+
msgid "Meta Tags"
|
215 |
+
msgstr "Özel Facebook görseli"
|
216 |
+
|
217 |
#: includes/class-fcbkbttn-settings.php:288
|
218 |
+
msgid "Disable meta tags."
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: includes/class-fcbkbttn-settings.php:296
|
222 |
+
#: includes/class-fcbkbttn-settings.php:493
|
223 |
+
#: includes/class-fcbkbttn-settings.php:547
|
224 |
msgid "Close"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: includes/class-fcbkbttn-settings.php:300
|
228 |
#, fuzzy
|
229 |
msgid "Meta Image"
|
230 |
msgstr "Özel Facebook görseli"
|
231 |
|
232 |
+
#: includes/class-fcbkbttn-settings.php:305
|
233 |
msgid "Featured Image"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: includes/class-fcbkbttn-settings.php:309
|
237 |
#, fuzzy
|
238 |
msgid "Custom Image"
|
239 |
msgstr "Özel Facebook görseli"
|
240 |
|
241 |
+
#: includes/class-fcbkbttn-settings.php:309
|
242 |
msgid "This image will be used for all posts"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: includes/class-fcbkbttn-settings.php:316
|
246 |
msgid "Meta Description"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: includes/class-fcbkbttn-settings.php:320
|
250 |
msgid ""
|
251 |
"This description will be used for all pages and posts. Leave blank to use "
|
252 |
"page description."
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: includes/class-fcbkbttn-settings.php:328
|
256 |
msgid "Profile URL Button"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: includes/class-fcbkbttn-settings.php:331
|
260 |
#, fuzzy
|
261 |
msgid "Facebook ID or Username"
|
262 |
msgstr "Facebook ID'niz:"
|
263 |
|
264 |
+
#: includes/class-fcbkbttn-settings.php:338
|
265 |
msgid "Profile Button Image"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: includes/class-fcbkbttn-settings.php:345
|
269 |
msgid "Default"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: includes/class-fcbkbttn-settings.php:350
|
273 |
#, fuzzy
|
274 |
msgid "Custom image"
|
275 |
msgstr "Özel Facebook görseli"
|
276 |
|
277 |
+
#: includes/class-fcbkbttn-settings.php:354
|
278 |
#, fuzzy
|
279 |
msgid ""
|
280 |
"To use custom image, You need to setup permissions for upload directory of "
|
283 |
"Özel görsel kullanmak için sitenizin dizinine yükleme yapılmasına izin "
|
284 |
"vermelisiniz."
|
285 |
|
286 |
+
#: includes/class-fcbkbttn-settings.php:361
|
287 |
#, fuzzy
|
288 |
msgid "Current image"
|
289 |
msgstr "Şu anki görsel:"
|
290 |
|
291 |
+
#: includes/class-fcbkbttn-settings.php:369
|
292 |
msgid ""
|
293 |
"Image requirements: max image width: 100px; max image height: 40px; max "
|
294 |
"image size: 32Kb; image types: \"jpg\", \"jpeg\", \"png\"."
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: includes/class-fcbkbttn-settings.php:373
|
298 |
msgid "Like&Share Buttons"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: includes/class-fcbkbttn-settings.php:376
|
302 |
msgid "Like Button Layout"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: includes/class-fcbkbttn-settings.php:399
|
306 |
msgid "Share Button Layout"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: includes/class-fcbkbttn-settings.php:430
|
310 |
msgid "Like Button Action"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: includes/class-fcbkbttn-settings.php:440
|
314 |
msgid "Recommend"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: includes/class-fcbkbttn-settings.php:446
|
318 |
msgid "Friends Faces"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: includes/class-fcbkbttn-settings.php:449
|
322 |
msgid "Enable to show faces of your friends who submitted the button."
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: includes/class-fcbkbttn-settings.php:453
|
326 |
msgid "Layout Width"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: includes/class-fcbkbttn-settings.php:457
|
330 |
msgid "px"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: includes/class-fcbkbttn-settings.php:462
|
334 |
msgid "Theme"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: includes/class-fcbkbttn-settings.php:467
|
338 |
msgid "Light"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: includes/class-fcbkbttn-settings.php:472
|
342 |
msgid "Dark"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: includes/class-fcbkbttn-settings.php:478
|
346 |
msgid "Like Button HTML Tag"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: includes/class-fcbkbttn-settings.php:485
|
350 |
#, php-format
|
351 |
msgid "Tag %s can be used to improve website code validation."
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: includes/class-fcbkbttn-settings.php:497
|
355 |
msgid "URL to Like"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: includes/class-fcbkbttn-settings.php:499
|
359 |
msgid "Leave blank to use current page URL."
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: includes/class-fcbkbttn-settings.php:526
|
363 |
msgid "Facebook Button Shortcode"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: includes/class-fcbkbttn-settings.php:529
|
367 |
msgid ""
|
368 |
"Add Facebook button(-s) to your posts, pages, custom post types or widgets "
|
369 |
"by using the following shortcode:"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: includes/class-fcbkbttn-settings.php:548
|
373 |
#, fuzzy
|
374 |
msgid "Facebook Buttons Preview"
|
375 |
msgstr "Facebook Butonu"
|
376 |
|
377 |
+
#: includes/class-fcbkbttn-settings.php:562
|
378 |
#, fuzzy
|
379 |
msgid "Display Settings"
|
380 |
msgstr "Butonu Göster:"
|
381 |
|
382 |
+
#: includes/class-fcbkbttn-settings.php:571
|
383 |
msgid ""
|
384 |
"Please choose the necessary post types (or single pages) where Facebook "
|
385 |
"button will be displayed:"
|
387 |
"Lütfen Facebook butonunun gösterileceği yazı türlerini (ya da tek sayfaları) "
|
388 |
"seçin."
|
389 |
|
390 |
+
#: includes/class-fcbkbttn-settings.php:578
|
391 |
msgid "Show URL for pages"
|
392 |
msgstr "Sayfalar için URL göster"
|
393 |
|
394 |
+
#: includes/class-fcbkbttn-settings.php:584
|
395 |
msgid "Example of site pages tree"
|
396 |
msgstr ""
|
397 |
|
languages/facebook-button-plugin-uk.mo
CHANGED
Binary file
|
languages/facebook-button-plugin-uk.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: uk\n"
|
@@ -13,38 +13,38 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit
|
17 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
18 |
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: facebook-button-plugin.php:
|
22 |
-
#: facebook-button-plugin.php:
|
23 |
msgid "Facebook Button Settings"
|
24 |
msgstr "Налаштування Facebook Button"
|
25 |
|
26 |
-
#: facebook-button-plugin.php:
|
27 |
-
#: facebook-button-plugin.php:
|
28 |
msgid "Settings"
|
29 |
msgstr "Налаштування"
|
30 |
|
31 |
-
#: facebook-button-plugin.php:
|
32 |
msgid "Upgrade to Pro"
|
33 |
msgstr "Оновитися до Pro"
|
34 |
|
35 |
-
#: facebook-button-plugin.php:
|
36 |
msgid "Please, enable JavaScript in your browser."
|
37 |
msgstr "Будь ласка, активуйте JavaScript у Вашому браузері."
|
38 |
|
39 |
-
#: facebook-button-plugin.php:
|
40 |
msgid "Add Facebook buttons to your page or post"
|
41 |
msgstr "Додати кнопки Facebook на вашу сторінку або запис"
|
42 |
|
43 |
-
#: facebook-button-plugin.php:
|
44 |
msgid "FAQ"
|
45 |
msgstr "FAQ"
|
46 |
|
47 |
-
#: facebook-button-plugin.php:
|
48 |
msgid "Support"
|
49 |
msgstr "Підтримка"
|
50 |
|
@@ -64,122 +64,122 @@ msgstr "Користувацький код"
|
|
64 |
msgid "License Key"
|
65 |
msgstr "Ліцензійний ключ"
|
66 |
|
67 |
-
#: includes/class-fcbkbttn-settings.php:
|
68 |
msgid "Settings saved"
|
69 |
msgstr "Налаштування збережені"
|
70 |
|
71 |
-
#: includes/class-fcbkbttn-settings.php:
|
72 |
msgid "Error: File size must not exceed 32KB"
|
73 |
msgstr "Помилка: Розмiр файлу не повинен перевищувати 32КБ"
|
74 |
|
75 |
-
#: includes/class-fcbkbttn-settings.php:
|
76 |
msgid "Error: Invalid file type"
|
77 |
msgstr "Помилка: Невірний тип файлу"
|
78 |
|
79 |
-
#: includes/class-fcbkbttn-settings.php:
|
80 |
msgid "Upload successful."
|
81 |
msgstr "Файл був завантажений успішно"
|
82 |
|
83 |
-
#: includes/class-fcbkbttn-settings.php:
|
84 |
msgid "Error: Failed to move file."
|
85 |
msgstr "Помилка: Не вдалося переміщення файлу."
|
86 |
|
87 |
-
#: includes/class-fcbkbttn-settings.php:
|
88 |
msgid "Error: Check image width or height."
|
89 |
msgstr "Помилка: Перевірте ширину або висоту зображення."
|
90 |
|
91 |
-
#: includes/class-fcbkbttn-settings.php:
|
92 |
msgid "Uploading Error: Check image properties"
|
93 |
msgstr "Помилка завантаження: Перевірте властивості зображення"
|
94 |
|
95 |
-
#: includes/class-fcbkbttn-settings.php:
|
96 |
msgid "General"
|
97 |
msgstr "Загальне"
|
98 |
|
99 |
-
#: includes/class-fcbkbttn-settings.php:
|
100 |
msgid "Change App ID"
|
101 |
msgstr "Змінити App ID"
|
102 |
|
103 |
-
#: includes/class-fcbkbttn-settings.php:
|
104 |
msgid "You can use standard App ID or"
|
105 |
msgstr "Ви можете використовувати стандартний App ID або"
|
106 |
|
107 |
-
#: includes/class-fcbkbttn-settings.php:
|
108 |
msgid "create a new one"
|
109 |
msgstr "створити свій власний."
|
110 |
|
111 |
-
#: includes/class-fcbkbttn-settings.php:
|
112 |
msgid " Leave blank to use standard App ID."
|
113 |
msgstr "Щоб використовувати стандартний App ID, залиште це поле порожнім."
|
114 |
|
115 |
-
#: includes/class-fcbkbttn-settings.php:
|
116 |
msgid "Buttons"
|
117 |
msgstr "Кнопки"
|
118 |
|
119 |
-
#: includes/class-fcbkbttn-settings.php:
|
120 |
msgid "Profile URL"
|
121 |
msgstr "URL профілю"
|
122 |
|
123 |
-
#: includes/class-fcbkbttn-settings.php:
|
124 |
-
#: includes/class-fcbkbttn-settings.php:
|
125 |
msgid "Like"
|
126 |
msgstr "Подобається"
|
127 |
|
128 |
-
#: includes/class-fcbkbttn-settings.php:
|
129 |
msgid "Share"
|
130 |
msgstr "Поширити"
|
131 |
|
132 |
-
#: includes/class-fcbkbttn-settings.php:
|
133 |
msgid "Buttons Size"
|
134 |
msgstr "Розмiр кнопок"
|
135 |
|
136 |
-
#: includes/class-fcbkbttn-settings.php:
|
137 |
msgid "Small"
|
138 |
msgstr "Малi"
|
139 |
|
140 |
-
#: includes/class-fcbkbttn-settings.php:
|
141 |
msgid "Large"
|
142 |
msgstr "Великi"
|
143 |
|
144 |
-
#: includes/class-fcbkbttn-settings.php:
|
145 |
msgid "Buttons Position"
|
146 |
msgstr "Розташування кнопок"
|
147 |
|
148 |
-
#: includes/class-fcbkbttn-settings.php:
|
149 |
msgid "Before content"
|
150 |
msgstr "Перед вмістом"
|
151 |
|
152 |
-
#: includes/class-fcbkbttn-settings.php:
|
153 |
msgid "After content"
|
154 |
msgstr "Після вмісту"
|
155 |
|
156 |
-
#: includes/class-fcbkbttn-settings.php:
|
157 |
msgid "Buttons Align"
|
158 |
msgstr "Вирівнювання кнопок"
|
159 |
|
160 |
-
#: includes/class-fcbkbttn-settings.php:
|
161 |
msgid "Right"
|
162 |
msgstr "Зправа"
|
163 |
|
164 |
-
#: includes/class-fcbkbttn-settings.php:
|
165 |
msgid "Center"
|
166 |
msgstr "По середині"
|
167 |
|
168 |
-
#: includes/class-fcbkbttn-settings.php:
|
169 |
msgid "Left"
|
170 |
msgstr "Зліва"
|
171 |
|
172 |
-
#: includes/class-fcbkbttn-settings.php:
|
173 |
msgid "Language"
|
174 |
msgstr "Мова"
|
175 |
|
176 |
-
#: includes/class-fcbkbttn-settings.php:
|
177 |
msgid "Select the default language for Facebook button(-s)."
|
178 |
msgstr "Оберіть мову за замовчуванням для кнопок Facebook."
|
179 |
|
180 |
-
#: includes/class-fcbkbttn-settings.php:
|
181 |
-
#: includes/class-fcbkbttn-settings.php:
|
182 |
-
#: includes/class-fcbkbttn-settings.php:
|
183 |
msgid ""
|
184 |
"Enable to switch language automatically on multilingual website using "
|
185 |
"Multilanguage plugin."
|
@@ -187,49 +187,57 @@ msgstr ""
|
|
187 |
"Включiть, щоб перемкнути мову автоматично на багатомовному сайті, "
|
188 |
"використовуючи плагін Multilanguage."
|
189 |
|
190 |
-
#: includes/class-fcbkbttn-settings.php:
|
191 |
msgid "Activate"
|
192 |
msgstr "Активувати"
|
193 |
|
194 |
-
#: includes/class-fcbkbttn-settings.php:
|
195 |
msgid "Install Now"
|
196 |
msgstr "Встановити зараз"
|
197 |
|
198 |
-
#: includes/class-fcbkbttn-settings.php:
|
199 |
msgid "Excerpt"
|
200 |
msgstr "Уривок"
|
201 |
|
202 |
-
#: includes/class-fcbkbttn-settings.php:
|
203 |
msgid "Enable to display buttons in excerpt."
|
204 |
msgstr "Ввімкнути для відображення кнопок в уривку."
|
205 |
|
|
|
|
|
|
|
|
|
206 |
#: includes/class-fcbkbttn-settings.php:288
|
207 |
-
|
208 |
-
|
|
|
|
|
|
|
|
|
209 |
msgid "Close"
|
210 |
msgstr "Закрити"
|
211 |
|
212 |
-
#: includes/class-fcbkbttn-settings.php:
|
213 |
msgid "Meta Image"
|
214 |
msgstr "Мета зображення"
|
215 |
|
216 |
-
#: includes/class-fcbkbttn-settings.php:
|
217 |
msgid "Featured Image"
|
218 |
msgstr "Головне зображення"
|
219 |
|
220 |
-
#: includes/class-fcbkbttn-settings.php:
|
221 |
msgid "Custom Image"
|
222 |
msgstr "Користувацьке зображення"
|
223 |
|
224 |
-
#: includes/class-fcbkbttn-settings.php:
|
225 |
msgid "This image will be used for all posts"
|
226 |
msgstr "Це зображення буде використовуватися для всiх записiв"
|
227 |
|
228 |
-
#: includes/class-fcbkbttn-settings.php:
|
229 |
msgid "Meta Description"
|
230 |
msgstr "Мета опис"
|
231 |
|
232 |
-
#: includes/class-fcbkbttn-settings.php:
|
233 |
msgid ""
|
234 |
"This description will be used for all pages and posts. Leave blank to use "
|
235 |
"page description."
|
@@ -237,27 +245,27 @@ msgstr ""
|
|
237 |
"Цей опис буде використовуватися для всіх записів і сторінок. Залиште "
|
238 |
"порожнім, щоб використовувати опис сторінки."
|
239 |
|
240 |
-
#: includes/class-fcbkbttn-settings.php:
|
241 |
msgid "Profile URL Button"
|
242 |
msgstr "Кнопка URL профілю"
|
243 |
|
244 |
-
#: includes/class-fcbkbttn-settings.php:
|
245 |
msgid "Facebook ID or Username"
|
246 |
msgstr "Facebook ID або Ім'я користувача"
|
247 |
|
248 |
-
#: includes/class-fcbkbttn-settings.php:
|
249 |
msgid "Profile Button Image"
|
250 |
msgstr "Зображення кнопки профілю"
|
251 |
|
252 |
-
#: includes/class-fcbkbttn-settings.php:
|
253 |
msgid "Default"
|
254 |
msgstr "За замовчуванням"
|
255 |
|
256 |
-
#: includes/class-fcbkbttn-settings.php:
|
257 |
msgid "Custom image"
|
258 |
msgstr "Користувацьке зображення"
|
259 |
|
260 |
-
#: includes/class-fcbkbttn-settings.php:
|
261 |
msgid ""
|
262 |
"To use custom image, You need to setup permissions for upload directory of "
|
263 |
"your site"
|
@@ -265,11 +273,11 @@ msgstr ""
|
|
265 |
"Для використання користувацького зображення, вам необхідно видати права "
|
266 |
"доступу на папку завантажень на вашому сайті"
|
267 |
|
268 |
-
#: includes/class-fcbkbttn-settings.php:
|
269 |
msgid "Current image"
|
270 |
msgstr "Поточне зображення"
|
271 |
|
272 |
-
#: includes/class-fcbkbttn-settings.php:
|
273 |
msgid ""
|
274 |
"Image requirements: max image width: 100px; max image height: 40px; max "
|
275 |
"image size: 32Kb; image types: \"jpg\", \"jpeg\", \"png\"."
|
@@ -278,76 +286,76 @@ msgstr ""
|
|
278 |
"висота зображення: 40px; максимальний розмір зображення: 32Kb; типи "
|
279 |
"зображеннь : \"jpg\", \"jpeg\", \"png\"."
|
280 |
|
281 |
-
#: includes/class-fcbkbttn-settings.php:
|
282 |
msgid "Like&Share Buttons"
|
283 |
msgstr "Кнопки \"Подобається\" та \"Поширити\""
|
284 |
|
285 |
-
#: includes/class-fcbkbttn-settings.php:
|
286 |
msgid "Like Button Layout"
|
287 |
msgstr "Вид кнопки \"Подобається\""
|
288 |
|
289 |
-
#: includes/class-fcbkbttn-settings.php:
|
290 |
msgid "Share Button Layout"
|
291 |
msgstr "Вид кнопки \"Поширити\""
|
292 |
|
293 |
-
#: includes/class-fcbkbttn-settings.php:
|
294 |
msgid "Like Button Action"
|
295 |
msgstr "Дія кнопки \"Подобається\""
|
296 |
|
297 |
-
#: includes/class-fcbkbttn-settings.php:
|
298 |
msgid "Recommend"
|
299 |
msgstr "Рекомендую"
|
300 |
|
301 |
-
#: includes/class-fcbkbttn-settings.php:
|
302 |
msgid "Friends Faces"
|
303 |
msgstr "Обличчя друзів"
|
304 |
|
305 |
-
#: includes/class-fcbkbttn-settings.php:
|
306 |
msgid "Enable to show faces of your friends who submitted the button."
|
307 |
msgstr "Включiть, щоб показати обличчя своїх друзів, які натиснули кнопку."
|
308 |
|
309 |
-
#: includes/class-fcbkbttn-settings.php:
|
310 |
msgid "Layout Width"
|
311 |
msgstr "Ширина блоку"
|
312 |
|
313 |
-
#: includes/class-fcbkbttn-settings.php:
|
314 |
msgid "px"
|
315 |
msgstr "пікс"
|
316 |
|
317 |
-
#: includes/class-fcbkbttn-settings.php:
|
318 |
msgid "Theme"
|
319 |
msgstr "Тема"
|
320 |
|
321 |
-
#: includes/class-fcbkbttn-settings.php:
|
322 |
msgid "Light"
|
323 |
msgstr "Світла"
|
324 |
|
325 |
-
#: includes/class-fcbkbttn-settings.php:
|
326 |
msgid "Dark"
|
327 |
msgstr "Темна"
|
328 |
|
329 |
-
#: includes/class-fcbkbttn-settings.php:
|
330 |
msgid "Like Button HTML Tag"
|
331 |
msgstr "HTML тег кнопки \"Подобається\""
|
332 |
|
333 |
-
#: includes/class-fcbkbttn-settings.php:
|
334 |
#, php-format
|
335 |
msgid "Tag %s can be used to improve website code validation."
|
336 |
msgstr "Тег %s може бути використаний для поліпшення валідації коду сайту."
|
337 |
|
338 |
-
#: includes/class-fcbkbttn-settings.php:
|
339 |
msgid "URL to Like"
|
340 |
msgstr "URL кнопки \"Подобається\""
|
341 |
|
342 |
-
#: includes/class-fcbkbttn-settings.php:
|
343 |
msgid "Leave blank to use current page URL."
|
344 |
msgstr "Залиште порожнім, щоб використовувати посилання на поточну сторінку."
|
345 |
|
346 |
-
#: includes/class-fcbkbttn-settings.php:
|
347 |
msgid "Facebook Button Shortcode"
|
348 |
msgstr "Шорткод Facebook Button"
|
349 |
|
350 |
-
#: includes/class-fcbkbttn-settings.php:
|
351 |
msgid ""
|
352 |
"Add Facebook button(-s) to your posts, pages, custom post types or widgets "
|
353 |
"by using the following shortcode:"
|
@@ -355,15 +363,15 @@ msgstr ""
|
|
355 |
"Додати кнопки Facebook на ваші записи, сторінки, користувацькі типи записів "
|
356 |
"або віджети за допомогою даного шорткода:"
|
357 |
|
358 |
-
#: includes/class-fcbkbttn-settings.php:
|
359 |
msgid "Facebook Buttons Preview"
|
360 |
msgstr "Попередній перегляд Facebook кнопок"
|
361 |
|
362 |
-
#: includes/class-fcbkbttn-settings.php:
|
363 |
msgid "Display Settings"
|
364 |
msgstr "Налаштування відображення"
|
365 |
|
366 |
-
#: includes/class-fcbkbttn-settings.php:
|
367 |
msgid ""
|
368 |
"Please choose the necessary post types (or single pages) where Facebook "
|
369 |
"button will be displayed:"
|
@@ -371,11 +379,11 @@ msgstr ""
|
|
371 |
"Будь ласка, оберіть необхідні типи записів (чи сторінок), де буде "
|
372 |
"відображатися кнопка Facebook"
|
373 |
|
374 |
-
#: includes/class-fcbkbttn-settings.php:
|
375 |
msgid "Show URL for pages"
|
376 |
msgstr "Відображати URL сторінок"
|
377 |
|
378 |
-
#: includes/class-fcbkbttn-settings.php:
|
379 |
msgid "Example of site pages tree"
|
380 |
msgstr "Приклад дерева сторінок сайту"
|
381 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-01-03 15:38+0200\n"
|
6 |
+
"PO-Revision-Date: 2019-01-03 15:40+0200\n"
|
7 |
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: uk\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 2.0.6\n"
|
17 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
18 |
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: facebook-button-plugin.php:38 facebook-button-plugin.php:46
|
22 |
+
#: facebook-button-plugin.php:221 includes/class-fcbkbttn-settings.php:188
|
23 |
msgid "Facebook Button Settings"
|
24 |
msgstr "Налаштування Facebook Button"
|
25 |
|
26 |
+
#: facebook-button-plugin.php:47 facebook-button-plugin.php:586
|
27 |
+
#: facebook-button-plugin.php:600 includes/class-fcbkbttn-settings.php:23
|
28 |
msgid "Settings"
|
29 |
msgstr "Налаштування"
|
30 |
|
31 |
+
#: facebook-button-plugin.php:62
|
32 |
msgid "Upgrade to Pro"
|
33 |
msgstr "Оновитися до Pro"
|
34 |
|
35 |
+
#: facebook-button-plugin.php:224
|
36 |
msgid "Please, enable JavaScript in your browser."
|
37 |
msgstr "Будь ласка, активуйте JavaScript у Вашому браузері."
|
38 |
|
39 |
+
#: facebook-button-plugin.php:424
|
40 |
msgid "Add Facebook buttons to your page or post"
|
41 |
msgstr "Додати кнопки Facebook на вашу сторінку або запис"
|
42 |
|
43 |
+
#: facebook-button-plugin.php:602
|
44 |
msgid "FAQ"
|
45 |
msgstr "FAQ"
|
46 |
|
47 |
+
#: facebook-button-plugin.php:603
|
48 |
msgid "Support"
|
49 |
msgstr "Підтримка"
|
50 |
|
64 |
msgid "License Key"
|
65 |
msgstr "Ліцензійний ключ"
|
66 |
|
67 |
+
#: includes/class-fcbkbttn-settings.php:111
|
68 |
msgid "Settings saved"
|
69 |
msgstr "Налаштування збережені"
|
70 |
|
71 |
+
#: includes/class-fcbkbttn-settings.php:141
|
72 |
msgid "Error: File size must not exceed 32KB"
|
73 |
msgstr "Помилка: Розмiр файлу не повинен перевищувати 32КБ"
|
74 |
|
75 |
+
#: includes/class-fcbkbttn-settings.php:144
|
76 |
msgid "Error: Invalid file type"
|
77 |
msgstr "Помилка: Невірний тип файлу"
|
78 |
|
79 |
+
#: includes/class-fcbkbttn-settings.php:150
|
80 |
msgid "Upload successful."
|
81 |
msgstr "Файл був завантажений успішно"
|
82 |
|
83 |
+
#: includes/class-fcbkbttn-settings.php:158
|
84 |
msgid "Error: Failed to move file."
|
85 |
msgstr "Помилка: Не вдалося переміщення файлу."
|
86 |
|
87 |
+
#: includes/class-fcbkbttn-settings.php:161
|
88 |
msgid "Error: Check image width or height."
|
89 |
msgstr "Помилка: Перевірте ширину або висоту зображення."
|
90 |
|
91 |
+
#: includes/class-fcbkbttn-settings.php:165
|
92 |
msgid "Uploading Error: Check image properties"
|
93 |
msgstr "Помилка завантаження: Перевірте властивості зображення"
|
94 |
|
95 |
+
#: includes/class-fcbkbttn-settings.php:192
|
96 |
msgid "General"
|
97 |
msgstr "Загальне"
|
98 |
|
99 |
+
#: includes/class-fcbkbttn-settings.php:195
|
100 |
msgid "Change App ID"
|
101 |
msgstr "Змінити App ID"
|
102 |
|
103 |
+
#: includes/class-fcbkbttn-settings.php:199
|
104 |
msgid "You can use standard App ID or"
|
105 |
msgstr "Ви можете використовувати стандартний App ID або"
|
106 |
|
107 |
+
#: includes/class-fcbkbttn-settings.php:199
|
108 |
msgid "create a new one"
|
109 |
msgstr "створити свій власний."
|
110 |
|
111 |
+
#: includes/class-fcbkbttn-settings.php:199
|
112 |
msgid " Leave blank to use standard App ID."
|
113 |
msgstr "Щоб використовувати стандартний App ID, залиште це поле порожнім."
|
114 |
|
115 |
+
#: includes/class-fcbkbttn-settings.php:203
|
116 |
msgid "Buttons"
|
117 |
msgstr "Кнопки"
|
118 |
|
119 |
+
#: includes/class-fcbkbttn-settings.php:206
|
120 |
msgid "Profile URL"
|
121 |
msgstr "URL профілю"
|
122 |
|
123 |
+
#: includes/class-fcbkbttn-settings.php:207
|
124 |
+
#: includes/class-fcbkbttn-settings.php:435
|
125 |
msgid "Like"
|
126 |
msgstr "Подобається"
|
127 |
|
128 |
+
#: includes/class-fcbkbttn-settings.php:208
|
129 |
msgid "Share"
|
130 |
msgstr "Поширити"
|
131 |
|
132 |
+
#: includes/class-fcbkbttn-settings.php:213
|
133 |
msgid "Buttons Size"
|
134 |
msgstr "Розмiр кнопок"
|
135 |
|
136 |
+
#: includes/class-fcbkbttn-settings.php:216
|
137 |
msgid "Small"
|
138 |
msgstr "Малi"
|
139 |
|
140 |
+
#: includes/class-fcbkbttn-settings.php:217
|
141 |
msgid "Large"
|
142 |
msgstr "Великi"
|
143 |
|
144 |
+
#: includes/class-fcbkbttn-settings.php:222
|
145 |
msgid "Buttons Position"
|
146 |
msgstr "Розташування кнопок"
|
147 |
|
148 |
+
#: includes/class-fcbkbttn-settings.php:227
|
149 |
msgid "Before content"
|
150 |
msgstr "Перед вмістом"
|
151 |
|
152 |
+
#: includes/class-fcbkbttn-settings.php:232
|
153 |
msgid "After content"
|
154 |
msgstr "Після вмісту"
|
155 |
|
156 |
+
#: includes/class-fcbkbttn-settings.php:238
|
157 |
msgid "Buttons Align"
|
158 |
msgstr "Вирівнювання кнопок"
|
159 |
|
160 |
+
#: includes/class-fcbkbttn-settings.php:241
|
161 |
msgid "Right"
|
162 |
msgstr "Зправа"
|
163 |
|
164 |
+
#: includes/class-fcbkbttn-settings.php:242
|
165 |
msgid "Center"
|
166 |
msgstr "По середині"
|
167 |
|
168 |
+
#: includes/class-fcbkbttn-settings.php:243
|
169 |
msgid "Left"
|
170 |
msgstr "Зліва"
|
171 |
|
172 |
+
#: includes/class-fcbkbttn-settings.php:248
|
173 |
msgid "Language"
|
174 |
msgstr "Мова"
|
175 |
|
176 |
+
#: includes/class-fcbkbttn-settings.php:259
|
177 |
msgid "Select the default language for Facebook button(-s)."
|
178 |
msgstr "Оберіть мову за замовчуванням для кнопок Facebook."
|
179 |
|
180 |
+
#: includes/class-fcbkbttn-settings.php:268
|
181 |
+
#: includes/class-fcbkbttn-settings.php:271
|
182 |
+
#: includes/class-fcbkbttn-settings.php:275
|
183 |
msgid ""
|
184 |
"Enable to switch language automatically on multilingual website using "
|
185 |
"Multilanguage plugin."
|
187 |
"Включiть, щоб перемкнути мову автоматично на багатомовному сайті, "
|
188 |
"використовуючи плагін Multilanguage."
|
189 |
|
190 |
+
#: includes/class-fcbkbttn-settings.php:271
|
191 |
msgid "Activate"
|
192 |
msgstr "Активувати"
|
193 |
|
194 |
+
#: includes/class-fcbkbttn-settings.php:275
|
195 |
msgid "Install Now"
|
196 |
msgstr "Встановити зараз"
|
197 |
|
198 |
+
#: includes/class-fcbkbttn-settings.php:280
|
199 |
msgid "Excerpt"
|
200 |
msgstr "Уривок"
|
201 |
|
202 |
+
#: includes/class-fcbkbttn-settings.php:282
|
203 |
msgid "Enable to display buttons in excerpt."
|
204 |
msgstr "Ввімкнути для відображення кнопок в уривку."
|
205 |
|
206 |
+
#: includes/class-fcbkbttn-settings.php:286
|
207 |
+
msgid "Meta Tags"
|
208 |
+
msgstr "Мета теги"
|
209 |
+
|
210 |
#: includes/class-fcbkbttn-settings.php:288
|
211 |
+
msgid "Disable meta tags."
|
212 |
+
msgstr "Вимкнути мета теги."
|
213 |
+
|
214 |
+
#: includes/class-fcbkbttn-settings.php:296
|
215 |
+
#: includes/class-fcbkbttn-settings.php:493
|
216 |
+
#: includes/class-fcbkbttn-settings.php:547
|
217 |
msgid "Close"
|
218 |
msgstr "Закрити"
|
219 |
|
220 |
+
#: includes/class-fcbkbttn-settings.php:300
|
221 |
msgid "Meta Image"
|
222 |
msgstr "Мета зображення"
|
223 |
|
224 |
+
#: includes/class-fcbkbttn-settings.php:305
|
225 |
msgid "Featured Image"
|
226 |
msgstr "Головне зображення"
|
227 |
|
228 |
+
#: includes/class-fcbkbttn-settings.php:309
|
229 |
msgid "Custom Image"
|
230 |
msgstr "Користувацьке зображення"
|
231 |
|
232 |
+
#: includes/class-fcbkbttn-settings.php:309
|
233 |
msgid "This image will be used for all posts"
|
234 |
msgstr "Це зображення буде використовуватися для всiх записiв"
|
235 |
|
236 |
+
#: includes/class-fcbkbttn-settings.php:316
|
237 |
msgid "Meta Description"
|
238 |
msgstr "Мета опис"
|
239 |
|
240 |
+
#: includes/class-fcbkbttn-settings.php:320
|
241 |
msgid ""
|
242 |
"This description will be used for all pages and posts. Leave blank to use "
|
243 |
"page description."
|
245 |
"Цей опис буде використовуватися для всіх записів і сторінок. Залиште "
|
246 |
"порожнім, щоб використовувати опис сторінки."
|
247 |
|
248 |
+
#: includes/class-fcbkbttn-settings.php:328
|
249 |
msgid "Profile URL Button"
|
250 |
msgstr "Кнопка URL профілю"
|
251 |
|
252 |
+
#: includes/class-fcbkbttn-settings.php:331
|
253 |
msgid "Facebook ID or Username"
|
254 |
msgstr "Facebook ID або Ім'я користувача"
|
255 |
|
256 |
+
#: includes/class-fcbkbttn-settings.php:338
|
257 |
msgid "Profile Button Image"
|
258 |
msgstr "Зображення кнопки профілю"
|
259 |
|
260 |
+
#: includes/class-fcbkbttn-settings.php:345
|
261 |
msgid "Default"
|
262 |
msgstr "За замовчуванням"
|
263 |
|
264 |
+
#: includes/class-fcbkbttn-settings.php:350
|
265 |
msgid "Custom image"
|
266 |
msgstr "Користувацьке зображення"
|
267 |
|
268 |
+
#: includes/class-fcbkbttn-settings.php:354
|
269 |
msgid ""
|
270 |
"To use custom image, You need to setup permissions for upload directory of "
|
271 |
"your site"
|
273 |
"Для використання користувацького зображення, вам необхідно видати права "
|
274 |
"доступу на папку завантажень на вашому сайті"
|
275 |
|
276 |
+
#: includes/class-fcbkbttn-settings.php:361
|
277 |
msgid "Current image"
|
278 |
msgstr "Поточне зображення"
|
279 |
|
280 |
+
#: includes/class-fcbkbttn-settings.php:369
|
281 |
msgid ""
|
282 |
"Image requirements: max image width: 100px; max image height: 40px; max "
|
283 |
"image size: 32Kb; image types: \"jpg\", \"jpeg\", \"png\"."
|
286 |
"висота зображення: 40px; максимальний розмір зображення: 32Kb; типи "
|
287 |
"зображеннь : \"jpg\", \"jpeg\", \"png\"."
|
288 |
|
289 |
+
#: includes/class-fcbkbttn-settings.php:373
|
290 |
msgid "Like&Share Buttons"
|
291 |
msgstr "Кнопки \"Подобається\" та \"Поширити\""
|
292 |
|
293 |
+
#: includes/class-fcbkbttn-settings.php:376
|
294 |
msgid "Like Button Layout"
|
295 |
msgstr "Вид кнопки \"Подобається\""
|
296 |
|
297 |
+
#: includes/class-fcbkbttn-settings.php:399
|
298 |
msgid "Share Button Layout"
|
299 |
msgstr "Вид кнопки \"Поширити\""
|
300 |
|
301 |
+
#: includes/class-fcbkbttn-settings.php:430
|
302 |
msgid "Like Button Action"
|
303 |
msgstr "Дія кнопки \"Подобається\""
|
304 |
|
305 |
+
#: includes/class-fcbkbttn-settings.php:440
|
306 |
msgid "Recommend"
|
307 |
msgstr "Рекомендую"
|
308 |
|
309 |
+
#: includes/class-fcbkbttn-settings.php:446
|
310 |
msgid "Friends Faces"
|
311 |
msgstr "Обличчя друзів"
|
312 |
|
313 |
+
#: includes/class-fcbkbttn-settings.php:449
|
314 |
msgid "Enable to show faces of your friends who submitted the button."
|
315 |
msgstr "Включiть, щоб показати обличчя своїх друзів, які натиснули кнопку."
|
316 |
|
317 |
+
#: includes/class-fcbkbttn-settings.php:453
|
318 |
msgid "Layout Width"
|
319 |
msgstr "Ширина блоку"
|
320 |
|
321 |
+
#: includes/class-fcbkbttn-settings.php:457
|
322 |
msgid "px"
|
323 |
msgstr "пікс"
|
324 |
|
325 |
+
#: includes/class-fcbkbttn-settings.php:462
|
326 |
msgid "Theme"
|
327 |
msgstr "Тема"
|
328 |
|
329 |
+
#: includes/class-fcbkbttn-settings.php:467
|
330 |
msgid "Light"
|
331 |
msgstr "Світла"
|
332 |
|
333 |
+
#: includes/class-fcbkbttn-settings.php:472
|
334 |
msgid "Dark"
|
335 |
msgstr "Темна"
|
336 |
|
337 |
+
#: includes/class-fcbkbttn-settings.php:478
|
338 |
msgid "Like Button HTML Tag"
|
339 |
msgstr "HTML тег кнопки \"Подобається\""
|
340 |
|
341 |
+
#: includes/class-fcbkbttn-settings.php:485
|
342 |
#, php-format
|
343 |
msgid "Tag %s can be used to improve website code validation."
|
344 |
msgstr "Тег %s може бути використаний для поліпшення валідації коду сайту."
|
345 |
|
346 |
+
#: includes/class-fcbkbttn-settings.php:497
|
347 |
msgid "URL to Like"
|
348 |
msgstr "URL кнопки \"Подобається\""
|
349 |
|
350 |
+
#: includes/class-fcbkbttn-settings.php:499
|
351 |
msgid "Leave blank to use current page URL."
|
352 |
msgstr "Залиште порожнім, щоб використовувати посилання на поточну сторінку."
|
353 |
|
354 |
+
#: includes/class-fcbkbttn-settings.php:526
|
355 |
msgid "Facebook Button Shortcode"
|
356 |
msgstr "Шорткод Facebook Button"
|
357 |
|
358 |
+
#: includes/class-fcbkbttn-settings.php:529
|
359 |
msgid ""
|
360 |
"Add Facebook button(-s) to your posts, pages, custom post types or widgets "
|
361 |
"by using the following shortcode:"
|
363 |
"Додати кнопки Facebook на ваші записи, сторінки, користувацькі типи записів "
|
364 |
"або віджети за допомогою даного шорткода:"
|
365 |
|
366 |
+
#: includes/class-fcbkbttn-settings.php:548
|
367 |
msgid "Facebook Buttons Preview"
|
368 |
msgstr "Попередній перегляд Facebook кнопок"
|
369 |
|
370 |
+
#: includes/class-fcbkbttn-settings.php:562
|
371 |
msgid "Display Settings"
|
372 |
msgstr "Налаштування відображення"
|
373 |
|
374 |
+
#: includes/class-fcbkbttn-settings.php:571
|
375 |
msgid ""
|
376 |
"Please choose the necessary post types (or single pages) where Facebook "
|
377 |
"button will be displayed:"
|
379 |
"Будь ласка, оберіть необхідні типи записів (чи сторінок), де буде "
|
380 |
"відображатися кнопка Facebook"
|
381 |
|
382 |
+
#: includes/class-fcbkbttn-settings.php:578
|
383 |
msgid "Show URL for pages"
|
384 |
msgstr "Відображати URL сторінок"
|
385 |
|
386 |
+
#: includes/class-fcbkbttn-settings.php:584
|
387 |
msgid "Example of site pages tree"
|
388 |
msgstr "Приклад дерева сторінок сайту"
|
389 |
|
readme.txt
CHANGED
@@ -1,593 +1,599 @@
|
|
1 |
-
=== Facebook Button by BestWebSoft ===
|
2 |
-
Contributors: bestwebsoft
|
3 |
-
Donate link: https://bestwebsoft.com/donate/
|
4 |
-
Tags: facebook buttons, share, like, add share button, social buttons, facebook, facebook button icon, follow, follow button, like button, share button, facebook plugin
|
5 |
-
Requires at least: 3.9
|
6 |
-
Tested up to: 5.0
|
7 |
-
Stable tag: 2.
|
8 |
-
License: GPLv2 or later
|
9 |
-
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
-
|
11 |
-
Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and widgets.
|
12 |
-
|
13 |
-
== Description ==
|
14 |
-
|
15 |
-
Facebook plugin is the best social media solution which adds Follow, Like, and Share buttons to your WordPress website posts, pages or widgets. This is a great way to receive positive feedback from your visitors, earn media exposure, and consumer validation for your brand.
|
16 |
-
|
17 |
-
Customize the appearance, configure settings, and enable other advanced options to get more social traffic to your website and keep your visitors involved!
|
18 |
-
|
19 |
-
[View Demo](https://bestwebsoft.com/demo-for-facebook-buttons/?ref=readme)
|
20 |
-
|
21 |
-
https://www.youtube.com/watch?v=hGNQs-rF8b8
|
22 |
-
|
23 |
-
= Free Features =
|
24 |
-
|
25 |
-
* Add Facebook buttons such as:
|
26 |
-
* Like
|
27 |
-
* Share
|
28 |
-
* Follow
|
29 |
-
* Сhange Facebook App ID
|
30 |
-
* Change color scheme for Share button
|
31 |
-
* Select layout for Like and Share buttons:
|
32 |
-
* Standard
|
33 |
-
* Box count
|
34 |
-
* Button count
|
35 |
-
* Button
|
36 |
-
* Select buttons
|
37 |
-
* Position:
|
38 |
-
* Before content
|
39 |
-
* After content
|
40 |
-
* Before and after
|
41 |
-
* Custom position (using shortcode)
|
42 |
-
* Align:
|
43 |
-
* Right
|
44 |
-
* Left
|
45 |
-
* Center
|
46 |
-
* Show/hide faces option
|
47 |
-
*
|
48 |
-
*
|
49 |
-
*
|
50 |
-
*
|
51 |
-
*
|
52 |
-
*
|
53 |
-
*
|
54 |
-
*
|
55 |
-
|
56 |
-
|
57 |
-
>
|
58 |
-
>
|
59 |
-
>
|
60 |
-
>
|
61 |
-
> *
|
62 |
-
>
|
63 |
-
> *
|
64 |
-
>
|
65 |
-
>
|
66 |
-
> *
|
67 |
-
>
|
68 |
-
> *
|
69 |
-
> *
|
70 |
-
>
|
71 |
-
>
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
* [[Doc]
|
79 |
-
* [[Doc]
|
80 |
-
* [[
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
*
|
90 |
-
*
|
91 |
-
*
|
92 |
-
*
|
93 |
-
*
|
94 |
-
*
|
95 |
-
*
|
96 |
-
*
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
* [
|
104 |
-
* [
|
105 |
-
* [
|
106 |
-
* [
|
107 |
-
* [
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
- The
|
154 |
-
- The
|
155 |
-
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
*
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
* Bugfix:
|
172 |
-
* Bugfix:
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
* Bugfix
|
178 |
-
|
179 |
-
= V2.
|
180 |
-
*
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
*
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
*
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
*
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
*
|
197 |
-
|
198 |
-
= V2.
|
199 |
-
* Update :
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
*
|
204 |
-
|
205 |
-
= V2.
|
206 |
-
*
|
207 |
-
|
208 |
-
= V2.
|
209 |
-
* Update :
|
210 |
-
|
211 |
-
= V2.
|
212 |
-
*
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
*
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
*
|
221 |
-
|
222 |
-
= V2.
|
223 |
-
*
|
224 |
-
|
225 |
-
= V2.
|
226 |
-
* NEW :
|
227 |
-
|
228 |
-
|
229 |
-
* NEW : We added '
|
230 |
-
* NEW : We added '
|
231 |
-
*
|
232 |
-
*
|
233 |
-
|
234 |
-
|
235 |
-
*
|
236 |
-
|
237 |
-
= V2.
|
238 |
-
*
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
* Update :
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
*
|
247 |
-
|
248 |
-
= V2.
|
249 |
-
*
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
* Update :
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
*
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
* Update :
|
263 |
-
|
264 |
-
= V2.
|
265 |
-
*
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
*
|
270 |
-
|
271 |
-
= V2.
|
272 |
-
*
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
* Bugfix : Problem with
|
277 |
-
|
278 |
-
= V2.
|
279 |
-
*
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
*
|
285 |
-
|
286 |
-
= V2.
|
287 |
-
*
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
*
|
292 |
-
|
293 |
-
|
294 |
-
*
|
295 |
-
*
|
296 |
-
*
|
297 |
-
*
|
298 |
-
|
299 |
-
|
300 |
-
*
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
*
|
306 |
-
|
307 |
-
|
308 |
-
*
|
309 |
-
|
310 |
-
|
311 |
-
*
|
312 |
-
|
313 |
-
= V2.
|
314 |
-
*
|
315 |
-
|
316 |
-
|
317 |
-
*
|
318 |
-
|
319 |
-
|
320 |
-
*
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
* Update :
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
*
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
*
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
*
|
337 |
-
|
338 |
-
= V2.
|
339 |
-
*
|
340 |
-
|
341 |
-
= V2.
|
342 |
-
*
|
343 |
-
|
344 |
-
= V2.
|
345 |
-
*
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
*
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
*
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
*
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
*
|
362 |
-
|
363 |
-
= V2.
|
364 |
-
*
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
*
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
*
|
374 |
-
|
375 |
-
= V2.
|
376 |
-
*
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
*
|
381 |
-
|
382 |
-
= V2.
|
383 |
-
*
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
*
|
388 |
-
|
389 |
-
= V2.
|
390 |
-
* Bugfix :
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
* Changed :
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
*
|
400 |
-
|
401 |
-
= V2.
|
402 |
-
*
|
403 |
-
|
404 |
-
=
|
405 |
-
*
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
*
|
418 |
-
|
419 |
-
= V2.
|
420 |
-
*
|
421 |
-
|
422 |
-
= V2.
|
423 |
-
* Bugs fixed.
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
*
|
435 |
-
|
436 |
-
= V2.
|
437 |
-
*
|
438 |
-
|
439 |
-
= V2.
|
440 |
-
*
|
441 |
-
|
442 |
-
= V2.
|
443 |
-
*
|
444 |
-
|
445 |
-
= V2.
|
446 |
-
|
447 |
-
|
448 |
-
= V2.
|
449 |
-
|
450 |
-
|
451 |
-
= V2.
|
452 |
-
|
453 |
-
|
454 |
-
= V2.
|
455 |
-
|
456 |
-
|
457 |
-
= V2.
|
458 |
-
|
459 |
-
|
460 |
-
= V2.
|
461 |
-
|
462 |
-
|
463 |
-
= V2.
|
464 |
-
|
465 |
-
|
466 |
-
= V2.
|
467 |
-
We added
|
468 |
-
|
469 |
-
= V2.
|
470 |
-
|
471 |
-
|
472 |
-
= V2.
|
473 |
-
|
474 |
-
|
475 |
-
= V2.
|
476 |
-
|
477 |
-
|
478 |
-
= V2.
|
479 |
-
|
480 |
-
|
481 |
-
= V2.
|
482 |
-
We updated
|
483 |
-
|
484 |
-
= V2.
|
485 |
-
|
486 |
-
|
487 |
-
= V2.
|
488 |
-
|
489 |
-
|
490 |
-
= V2.
|
491 |
-
|
492 |
-
|
493 |
-
= V2.
|
494 |
-
|
495 |
-
|
496 |
-
= V2.
|
497 |
-
|
498 |
-
|
499 |
-
= V2.
|
500 |
-
|
501 |
-
|
502 |
-
= V2.
|
503 |
-
|
504 |
-
|
505 |
-
= V2.
|
506 |
-
|
507 |
-
|
508 |
-
= V2.
|
509 |
-
|
510 |
-
|
511 |
-
= V2.
|
512 |
-
|
513 |
-
|
514 |
-
= V2.
|
515 |
-
|
516 |
-
|
517 |
-
= V2.
|
518 |
-
|
519 |
-
|
520 |
-
= V2.
|
521 |
-
|
522 |
-
|
523 |
-
= V2.
|
524 |
-
|
525 |
-
|
526 |
-
= V2.
|
527 |
-
We updated all functionality for wordpress 3.
|
528 |
-
|
529 |
-
= V2.
|
530 |
-
|
531 |
-
|
532 |
-
= V2.
|
533 |
-
|
534 |
-
|
535 |
-
= V2.
|
536 |
-
|
537 |
-
|
538 |
-
= V2.
|
539 |
-
The
|
540 |
-
|
541 |
-
= V2.
|
542 |
-
The
|
543 |
-
|
544 |
-
= V2.
|
545 |
-
|
546 |
-
|
547 |
-
= V2.
|
548 |
-
|
549 |
-
|
550 |
-
= V2.
|
551 |
-
|
552 |
-
|
553 |
-
= V2.
|
554 |
-
|
555 |
-
|
556 |
-
= V2.
|
557 |
-
The
|
558 |
-
|
559 |
-
= V2.
|
560 |
-
|
561 |
-
|
562 |
-
= V2.
|
563 |
-
|
564 |
-
|
565 |
-
= V2.
|
566 |
-
|
567 |
-
|
568 |
-
= V2.
|
569 |
-
|
570 |
-
|
571 |
-
= V2.
|
572 |
-
BWS
|
573 |
-
|
574 |
-
= V2.
|
575 |
-
|
576 |
-
|
577 |
-
= V2.
|
578 |
-
|
579 |
-
|
580 |
-
= V2.
|
581 |
-
|
582 |
-
|
583 |
-
= V2.
|
584 |
-
|
585 |
-
|
586 |
-
= V2.
|
587 |
-
|
588 |
-
|
589 |
-
= V2.
|
590 |
-
|
591 |
-
|
592 |
-
=
|
593 |
-
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
=== Facebook Button by BestWebSoft ===
|
2 |
+
Contributors: bestwebsoft
|
3 |
+
Donate link: https://bestwebsoft.com/donate/
|
4 |
+
Tags: facebook buttons, share, like, add share button, social buttons, facebook, facebook button icon, follow, follow button, like button, share button, facebook plugin
|
5 |
+
Requires at least: 3.9
|
6 |
+
Tested up to: 5.0.2
|
7 |
+
Stable tag: 2.61
|
8 |
+
License: GPLv2 or later
|
9 |
+
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
+
|
11 |
+
Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and widgets.
|
12 |
+
|
13 |
+
== Description ==
|
14 |
+
|
15 |
+
Facebook plugin is the best social media solution which adds Follow, Like, and Share buttons to your WordPress website posts, pages or widgets. This is a great way to receive positive feedback from your visitors, earn media exposure, and consumer validation for your brand.
|
16 |
+
|
17 |
+
Customize the appearance, configure settings, and enable other advanced options to get more social traffic to your website and keep your visitors involved!
|
18 |
+
|
19 |
+
[View Demo](https://bestwebsoft.com/demo-for-facebook-buttons/?ref=readme)
|
20 |
+
|
21 |
+
https://www.youtube.com/watch?v=hGNQs-rF8b8
|
22 |
+
|
23 |
+
= Free Features =
|
24 |
+
|
25 |
+
* Add Facebook buttons such as:
|
26 |
+
* Like
|
27 |
+
* Share
|
28 |
+
* Follow
|
29 |
+
* Сhange Facebook App ID
|
30 |
+
* Change color scheme for Share button
|
31 |
+
* Select layout for Like and Share buttons:
|
32 |
+
* Standard
|
33 |
+
* Box count
|
34 |
+
* Button count
|
35 |
+
* Button
|
36 |
+
* Select buttons
|
37 |
+
* Position:
|
38 |
+
* Before content
|
39 |
+
* After content
|
40 |
+
* Before and after
|
41 |
+
* Custom position (using shortcode)
|
42 |
+
* Align:
|
43 |
+
* Right
|
44 |
+
* Left
|
45 |
+
* Center
|
46 |
+
* Show/hide faces option
|
47 |
+
* Disable Meta Tags [NEW]
|
48 |
+
* Compatible with [Multilanguage](https://bestwebsoft.com/products/wordpress/plugins/multilanguage/?k=ce7cc6ad47715a97a579a6d9b59ed8b3) (current website language detection)
|
49 |
+
* Choose Like button action - like or recommend
|
50 |
+
* Use a standard Follow button image or replace it with custom one
|
51 |
+
* Add custom code via plugin settings page
|
52 |
+
* Compatible with latest WordPress version
|
53 |
+
* Incredibly simple settings for fast setup without modifying code
|
54 |
+
* Detailed step-by-step documentation and videos
|
55 |
+
* Multilingual and RTL ready
|
56 |
+
|
57 |
+
> **Pro Features**
|
58 |
+
>
|
59 |
+
> All features from Free version included plus:
|
60 |
+
>
|
61 |
+
> * Display Facebook buttons for certain pages and/or post types
|
62 |
+
> * Сhange meta tags:
|
63 |
+
> * Image
|
64 |
+
> * Description
|
65 |
+
> * Enable like option for:
|
66 |
+
> * Entire website
|
67 |
+
> * Single pages
|
68 |
+
> * Facebook button preview
|
69 |
+
> * Configure all subsites on the network
|
70 |
+
> * Get answer to your support question within one business day ([Support Policy](https://bestwebsoft.com/support-policy/))
|
71 |
+
>
|
72 |
+
> [Upgrade to Pro Now](https://bestwebsoft.com/products/wordpress/plugins/facebook-like-button/?k=4caab51af6593e97ad1e329fe0f53072)
|
73 |
+
|
74 |
+
If you have a feature suggestion or idea you'd like to see in the plugin, we'd love to hear about it! [Suggest a Feature](https://support.bestwebsoft.com/hc/en-us/requests/new)
|
75 |
+
|
76 |
+
= Documentation & Videos =
|
77 |
+
|
78 |
+
* [[Doc] How to Use](https://docs.google.com/document/d/1gy5uDVoebmYRUvlKRwBmc97jdJFz7GvUCtXy3L7r_Yg/)
|
79 |
+
* [[Doc] Installation](https://docs.google.com/document/d/1-hvn6WRvWnOqj5v5pLUk7Awyu87lq5B_dO-Tv-MC9JQ/)
|
80 |
+
* [[Doc] Purchase](https://docs.google.com/document/d/1EUdBVvnm7IHZ6y0DNyldZypUQKpB8UVPToSc_LdOYQI/)
|
81 |
+
* [[Video] Installation Instruction](https://www.youtube.com/watch?v=pAKsQPz3RZc)
|
82 |
+
|
83 |
+
= Help & Support =
|
84 |
+
|
85 |
+
Visit our Help Center if you have any questions, our friendly Support Team is happy to help — <https://support.bestwebsoft.com/>
|
86 |
+
|
87 |
+
= Translation =
|
88 |
+
|
89 |
+
* Czech (cs_CZ) (thanks to [Michal Kučera](mailto:kucerami@gmail.com) www.n0lim.it)
|
90 |
+
* Finnish (fi_FI) (thanks to [Juhani Honkanen](mailto:juhani.honkanen@dnainternet.net))
|
91 |
+
* French (fr_FR) (thanks to [Murat](mailto:wpthemefr@gmail.com))
|
92 |
+
* Indonesian (id_ID) (thanks to Nasrulhaq, www.al-badar.net)
|
93 |
+
* Hungarian (hu_HU) (thanks to [Peter Aprily](mailto:solarside09@gmail.com) www.aprily.com)
|
94 |
+
* Russian (ru_RU)
|
95 |
+
* Spanish (es_ES) (thanks to [Africa Boleko](mailto:info@markekimika.es) www.markekimika.es)
|
96 |
+
* Turkish (tr_TR) (thanks to [Can Atasever](mailto:webmaster@canatasever.com))
|
97 |
+
* Ukrainian (uk)
|
98 |
+
|
99 |
+
Some of these translations are not complete. We are constantly adding new features which should be translated. If you would like to create your own language pack or update the existing one, you can send [the text of PO and MO files](https://codex.wordpress.org/Translating_WordPress) to [BestWebSoft](https://support.bestwebsoft.com/hc/en-us/requests/new) and we'll add it to the plugin. You can download the latest version of the program for work with PO and MO [files Poedit](https://www.poedit.net/download.php).
|
100 |
+
|
101 |
+
= Recommended Plugins =
|
102 |
+
|
103 |
+
* [Updater](https://bestwebsoft.com/products/wordpress/plugins/updater/?k=5019f1216fc048f1419fe4645da69381) - Automatically check and update WordPress website core with all installed plugins and themes to the latest versions.
|
104 |
+
* [Google +1](https://bestwebsoft.com/products/wordpress/plugins/google-plus-one/?k=1f911e6a8a57be8dec36aa4c617773d2) - Add Google +1 Share, Follow, Hangout buttons and profile badge to WordPress posts, pages and widgets.
|
105 |
+
* [LinkedIn](https://bestwebsoft.com/products/wordpress/plugins/linkedin/?k=b51477f9bcefca82ad8a4a1901806171) - Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. 5 plugins included – profile, insider, etc.
|
106 |
+
* [Multilanguage](https://bestwebsoft.com/products/wordpress/plugins/multilanguage/?k=ce7cc6ad47715a97a579a6d9b59ed8b3) - Translate WordPress website content to other languages manually. Create multilingual pages, posts, widgets, menus, etc.
|
107 |
+
* [Pinterest](https://bestwebsoft.com/products/wordpress/plugins/pinterest/?k=6c0ee1d224732f70f3099746cfc82c92) - Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, Profile) to WordPress posts, pages, and widgets.
|
108 |
+
* [Twitter](https://bestwebsoft.com/products/wordpress/plugins/twitter/?k=f1d29ef28baa75cc05d52def8ca1021d) - Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts, pages, and widgets.
|
109 |
+
|
110 |
+
== Installation ==
|
111 |
+
|
112 |
+
1. Upload the folder `facebook-button-plugin` to the directory `/wp-content/plugins/`.
|
113 |
+
2. Activate the plugin via the 'Plugins' menu in your WordPress admin panel.
|
114 |
+
3. You can adjust the necessary settings in your WordPress admin panel - "Facebook Button".
|
115 |
+
|
116 |
+
[View a Step-by-step Instruction on Facebook Button by BestWebSoft Installation](https://docs.google.com/document/d/1-hvn6WRvWnOqj5v5pLUk7Awyu87lq5B_dO-Tv-MC9JQ/)
|
117 |
+
|
118 |
+
https://www.youtube.com/watch?v=pAKsQPz3RZc
|
119 |
+
|
120 |
+
== Frequently Asked Questions ==
|
121 |
+
|
122 |
+
= After the plugin installation and settings adjustment on the settings page, it is still not working =
|
123 |
+
|
124 |
+
1. You should click "Save Changes". Make sure that you got the message "Settings saved".
|
125 |
+
2. Refresh your web page where Facebook Button icon should be placed.
|
126 |
+
|
127 |
+
= How to change Facebook Button icon ("Profile URL")? =
|
128 |
+
|
129 |
+
1. In WordPress admin panel, please go to Facebook Button settings page and choose one of the listed positions: Default Profile Button Image or Custom Profile Button Image. Then click "Save Changes".
|
130 |
+
2. If you choose Custom Profile Button Image, you can upload your own picture. You should click "Choose file" and choose an image in your folder. Then click "Save Changes".
|
131 |
+
|
132 |
+
= How to set Facebook Button position on the page? =
|
133 |
+
|
134 |
+
In WordPress admin panel, please go to Facebook Button settings page and choose one of the listed positions: Before content or After content. Then click "Save Changes".
|
135 |
+
|
136 |
+
= After clicking Facebook Button icon, I see the Facebook Home page instead of the necessary account page =
|
137 |
+
|
138 |
+
1. In WordPress admin panel, please go to Facebook Button settings page and enter your Facebook ID or username. Then click "Save Changes".
|
139 |
+
2. If you do not have the Facebook account yet, you should create it here. After the account is created, please follow the instructions above.
|
140 |
+
|
141 |
+
= When people like and/or leave comments to my post, will this be displayed on my Facebook page? =
|
142 |
+
|
143 |
+
No, it will not. The case is: Like for a WordPress site is a Like of a certain URL, but not the page content, while on Facebook it's Like of the content, not the URL. I.e. these are two different things, and it is impossible to link them.
|
144 |
+
For more data on the Like button, please check the developers' page (<https://developers.facebook.com/docs/plugins/like-button>).
|
145 |
+
|
146 |
+
= If I install a new version of the plugin, will I lose all the likes I got on the previous version (I mean will they switch to zero on my website?)? =
|
147 |
+
|
148 |
+
You will not lose them because they are stored on the Facebook server.
|
149 |
+
|
150 |
+
= I have some problems with the plugin's work. What Information should I provide to receive proper support? =
|
151 |
+
|
152 |
+
Please make sure that the problem hasn't been discussed yet on our forum (<https://support.bestwebsoft.com>). If no, please provide the following data along with your problem's description:
|
153 |
+
- The link to the page where the problem occurs
|
154 |
+
- The name of the plugin and its version. If you are using a pro version - your order number.
|
155 |
+
- The version of your WordPress installation
|
156 |
+
- Copy and paste into the message your system status report. Please read more here: [Instruction on System Status](https://docs.google.com/document/d/1Wi2X8RdRGXk9kMszQy1xItJrpN0ncXgioH935MaBKtc/)
|
157 |
+
|
158 |
+
== Screenshots ==
|
159 |
+
|
160 |
+
1. Displaying Facebook Buttons before your post.
|
161 |
+
2. Displaying Facebook Buttons in your post via the shortcode.
|
162 |
+
3. Plugin settings page.
|
163 |
+
|
164 |
+
== Changelog ==
|
165 |
+
|
166 |
+
= V2.61 - 15.01.2019 =
|
167 |
+
* NEW: Ability to disable Meta Tags has been added.
|
168 |
+
* NEW: Ability to enable Facebook buttons for archives has been added.
|
169 |
+
|
170 |
+
= V2.60 - 26.11.2018 =
|
171 |
+
* Bugfix: The compatibility with Custom Admin Page plugin has been fixed.
|
172 |
+
* Bugfix: The compatibility with Graph API v3.2 has been fixed.
|
173 |
+
|
174 |
+
= V2.59 - 30.05.2018 =
|
175 |
+
* Bugfix: Bug with incorrect Facebook buttons displaying has been fixed.
|
176 |
+
* Bugfix: Bug with incorrect Facebook buttons preview has been fixed.
|
177 |
+
* Bugfix: Compatibility with Graph API v2.12 has been fixed.
|
178 |
+
|
179 |
+
= V2.58 - 12.03.2018 =
|
180 |
+
* Bugfix : Bug with incorrect Facebook buttons displaying has been fixed.
|
181 |
+
|
182 |
+
= V2.57 - 09.03.2018 =
|
183 |
+
* NEW : Ability to change buttons align has been added.
|
184 |
+
* NEW : Ability to change Facebook App ID has been added.
|
185 |
+
|
186 |
+
= V2.56 - 24.01.2018 =
|
187 |
+
* Bugfix : Compatibility with Multilanguage plugin by BestWebSoft has been fixed.
|
188 |
+
* Update : The Czech language file has been updated.
|
189 |
+
|
190 |
+
= V2.55 - 20.07.2017 =
|
191 |
+
* NEW : Ability to choose buttons size has been added.
|
192 |
+
* Update : Default button appearance has been updated.
|
193 |
+
|
194 |
+
= V2.54 - 06.04.2017 =
|
195 |
+
* NEW : Czech language file is added.
|
196 |
+
* Bugfix : Bug with incorrect My Page Facebook button link was fixed.
|
197 |
+
|
198 |
+
= V2.53 - 31.01.2017 =
|
199 |
+
* Update : The plugin settings page has been updated.
|
200 |
+
|
201 |
+
= V2.52 - 14.11.2016 =
|
202 |
+
* Update : Compatibility with Pagination plugin was added.
|
203 |
+
* Pro : Tree of site pages was updated.
|
204 |
+
|
205 |
+
= V2.51 - 03.10.2016 =
|
206 |
+
* NEW : Spain language file is added.
|
207 |
+
|
208 |
+
= V2.50 - 08.08.2016 =
|
209 |
+
* Update : All functionality for wordpress 4.6 was updated.
|
210 |
+
|
211 |
+
= V2.49 - 06.07.2016 =
|
212 |
+
* Update : Images size for meta property 'og:image' has been changed.
|
213 |
+
|
214 |
+
= V2.48 - 06.05.2016 =
|
215 |
+
* NEW : Ability to add custom styles.
|
216 |
+
* Update : All functionality for wordpress 4.5.1 was updated.
|
217 |
+
|
218 |
+
= V2.47 - 04.02.2016 =
|
219 |
+
* Bugfix : The conflict in the RSS feed was fixed.
|
220 |
+
* Update : All functionality for wordpress 4.4.2 was updated.
|
221 |
+
|
222 |
+
= V2.46 - 30.11.2015 =
|
223 |
+
* Bugfix : The bug with plugin menu duplicating was fixed.
|
224 |
+
|
225 |
+
= V2.45 - 05.11.2015 =
|
226 |
+
* NEW : Hungarian language file is added.
|
227 |
+
|
228 |
+
= V2.44 - 21.10.2015 =
|
229 |
+
* NEW : We added 'Show Faces' option.
|
230 |
+
* NEW : We added 'Button layout' option.
|
231 |
+
* NEW : We added 'Layout width' option.
|
232 |
+
* NEW : We added 'Like button action' option.
|
233 |
+
* NEW : We added 'Color scheme' option.
|
234 |
+
* Update : Textdomain was changed.
|
235 |
+
* Update : We updated all functionality for wordpress 4.3.1.
|
236 |
+
|
237 |
+
= V2.43 - 26.08.2015 =
|
238 |
+
* NEW : Option to display the button in excerpt.
|
239 |
+
|
240 |
+
= V2.42 - 24.08.2015 =
|
241 |
+
* Update : We added buttons displaying for the excerpt.
|
242 |
+
* Update : We updated all functionality for wordpress 4.3.
|
243 |
+
|
244 |
+
= V2.41 - 16.07.2015 =
|
245 |
+
* Update : Ability to use the current site language for Facebook buttons (Using Multilanguage by BestWebSoft).
|
246 |
+
* Bugfix : We fixed the 'share' button displaying bug (when the shortcode is used).
|
247 |
+
|
248 |
+
= V2.40 - 15.06.2015 =
|
249 |
+
* NEW : Ability to restore settings to defaults.
|
250 |
+
|
251 |
+
= V2.39 - 18.05.2015 =
|
252 |
+
* Update : We updated option titles on the Settings page for the convenience of users.
|
253 |
+
* Update : Scripts were placed into a separate js file.
|
254 |
+
* Update : We updated all functionality for wordpress 4.2.2.
|
255 |
+
|
256 |
+
= V2.38 - 23.04.2015 =
|
257 |
+
* Update : Button styles are updated.
|
258 |
+
* NEW : The Finnish language file is added to the plugin.
|
259 |
+
|
260 |
+
= V2.37 - 31.03.2015 =
|
261 |
+
* Update : We updated all functionality for wordpress 4.1.1.
|
262 |
+
* Update : BWS plugins section is updated.
|
263 |
+
|
264 |
+
= V2.36 - 05.01.2015 =
|
265 |
+
* Update : We updated all functionality for wordpress 4.1.
|
266 |
+
|
267 |
+
= V2.35 - 13.11.2014 =
|
268 |
+
* Bugfix : Plugin optimization is done.
|
269 |
+
* Update : BWS plugins section is updated.
|
270 |
+
|
271 |
+
= V2.34 - 13.08.2014 =
|
272 |
+
* Bugfix : Security Exploit was fixed.
|
273 |
+
|
274 |
+
= V2.33 - 06.08.2014 =
|
275 |
+
* Update : We updated all functionality for wordpress 4.0-beta2.
|
276 |
+
* Bugfix : Problem with custom images after updating plugin was fixed.
|
277 |
+
|
278 |
+
= V2.32 - 19.06.2014 =
|
279 |
+
* Bugfix : Problem with showing Like button was fixed.
|
280 |
+
|
281 |
+
= V2.31 - 11.06.2014 =
|
282 |
+
* NEW : Share button was added.
|
283 |
+
* Update : We updated all functionality for wordpress 3.9.1.
|
284 |
+
* Bugfix : Problem with switching user was fixed.
|
285 |
+
|
286 |
+
= V2.30 - 14.04.2014 =
|
287 |
+
* Update : We updated all functionality for wordpress 3.8.2.
|
288 |
+
|
289 |
+
= V2.29 - 03.03.2014 =
|
290 |
+
* Bugfix : Plugin optimization is done.
|
291 |
+
* Update : Plugin tabs is added.
|
292 |
+
|
293 |
+
= V2.28 - 13.02.2014 =
|
294 |
+
* NEW : Html5 version of Like button is added.
|
295 |
+
* Update : Screenshots are updated.
|
296 |
+
* Update : BWS plugins section is updated.
|
297 |
+
* Update : We updated all functionality for wordpress 3.8.1.
|
298 |
+
* Bugfix : Problem with blinking of Like button is fixed.
|
299 |
+
* Bugfix : Problem with getting wrong thumbnails when putting Like is fixed.
|
300 |
+
* Bugfix : Problem with language of Like button when using shortcode is fixed.
|
301 |
+
|
302 |
+
= V2.27 - 23.12.2013 =
|
303 |
+
* NEW : The French language file is added to the plugin.
|
304 |
+
* Update : We updated all functionality for wordpress 3.8.
|
305 |
+
* Update : BWS plugins section is updated.
|
306 |
+
|
307 |
+
= V2.26 - 28.11.2013 =
|
308 |
+
* NEW : We added posibility to add images with png extension as custom image for My Page button.
|
309 |
+
* Update : New default image for the My Page button.
|
310 |
+
* Update : The Indonesian language file is added to the plugin.
|
311 |
+
* Update : We updated our screenshots.
|
312 |
+
|
313 |
+
= V2.25 - 06.11.2013 =
|
314 |
+
* Bugfix : Problem with styles is fixed.
|
315 |
+
|
316 |
+
= V2.24 - 31.10.2013 =
|
317 |
+
* NEW : Add checking installed wordpress version.
|
318 |
+
* Update : Activation of radio button or checkbox by clicking on its label.
|
319 |
+
* Update : We updated all functionality for wordpress 3.7.1.
|
320 |
+
* Bugfix : Problem with undefined variable post_ID for multisite fixed.
|
321 |
+
|
322 |
+
= V2.23 - 02.10.2013 =
|
323 |
+
* Update : We updated all functionality for wordpress 3.6.1.
|
324 |
+
* Update : The Ukrainian language file is added to the plugin.
|
325 |
+
|
326 |
+
= V2.22 - 04.09.2013 =
|
327 |
+
* Update : We updated all functionality for wordpress 3.6.
|
328 |
+
* Update : Function for displaying BWS plugins section placed in a separate file and has own language files.
|
329 |
+
|
330 |
+
= V2.21 - 18.07.2013 =
|
331 |
+
* NEW : Added an ability to view and send system information by mail.
|
332 |
+
* Update : We updated all functionality for wordpress 3.5.2.
|
333 |
+
|
334 |
+
= V2.20 - 27.05.2013 =
|
335 |
+
* Bugfix : The error related to creation the path to the Facebook button image is fixed.
|
336 |
+
* Update : BWS plugins section is updated.
|
337 |
+
|
338 |
+
= V2.19 - 17.04.2013 =
|
339 |
+
* NEW : The English language is updated in the plugin.
|
340 |
+
|
341 |
+
= V2.18 - 22.03.2013 =
|
342 |
+
* Bugfix : The bug of displaying icons in the admin menu is fixed.
|
343 |
+
|
344 |
+
= V2.17 - 04.03.2013 =
|
345 |
+
* NEW : The Ukrainian language file is added to the plugin.
|
346 |
+
|
347 |
+
= V2.16 - 01.03.2013 =
|
348 |
+
* Update : We updated CSS file.
|
349 |
+
* Update : We updated all functionality for wordpress 3.5.1.
|
350 |
+
|
351 |
+
= V2.15 - 20.12.2012 =
|
352 |
+
* NEW : The Persian and Serbian language files are added to the plugin.
|
353 |
+
* Update : We updated all functionality for wordpress 3.5.
|
354 |
+
|
355 |
+
= V2.14 - 24.07.2012 =
|
356 |
+
* NEW : The Arabic language file is added to the plugin.
|
357 |
+
* Bugfix : Cross Site Request Forgery bug is fixed.
|
358 |
+
|
359 |
+
= V2.13 - 10.07.2012 =
|
360 |
+
* NEW : The Hebrew language file is added to the plugin.
|
361 |
+
* Update : We updated all functionality for wordpress 3.4.1.
|
362 |
+
|
363 |
+
= V2.12 - 29.06.2012 =
|
364 |
+
* Bugfix : The bug with saved 'sortcode option is fixed.
|
365 |
+
|
366 |
+
= V2.11 - 27.06.2012 =
|
367 |
+
* NEW : A possibility to change language for Like button.
|
368 |
+
* Update : We updated all functionality for wordpress 3.4.
|
369 |
+
|
370 |
+
= V2.10 - 04.04.2012 =
|
371 |
+
* NEW : A possibility to turn off the display of the buttons.
|
372 |
+
* NEW : The Turkish language file is added to the plugin.
|
373 |
+
* Bugfix : The bug with upload custom image for button is fixed.
|
374 |
+
|
375 |
+
= V2.09 - 12.03.2012 =
|
376 |
+
* Changed : BWS plugins section.
|
377 |
+
|
378 |
+
= V2.08 - 24.02.2012 =
|
379 |
+
* NEW : The Spanish language file is added to the plugin.
|
380 |
+
* Change : Code that is used to connect styles and scripts is added to the plugin for correct SSL verification.
|
381 |
+
|
382 |
+
= V2.07 - 02.01.2012 =
|
383 |
+
* Changed : BWS plugins section.
|
384 |
+
|
385 |
+
= V2.06 - 27.12.2011 =
|
386 |
+
* NEW : Language files are added to the plugin.
|
387 |
+
* NEW : Style for facebook button block is added.
|
388 |
+
|
389 |
+
= V2.05 - 23.08.2011 =
|
390 |
+
* Bugfix : Redirect to profile page bug is fixed.
|
391 |
+
|
392 |
+
= V2.04 - 22.08.2011 =
|
393 |
+
* Bugfix : BWS Plugin's menu section was fixed and right now it is consisted of 3 parts: activated, installed and recommended plugins.
|
394 |
+
* Bugfix : The bug of positioning in admin menu is fixed.
|
395 |
+
* Changed : Facebook button plugin functionality was changed in connection with the change of Facebook API.
|
396 |
+
|
397 |
+
= V2.03 - 14.07.2011 =
|
398 |
+
* Changed : BWS Plugin's menu sections was fixed and right now it is consisted of 2 parts: installed and recommended plugins.
|
399 |
+
* Bugfix : Displaying of the icons is fixed.
|
400 |
+
|
401 |
+
= V2.02 =
|
402 |
+
* The bug with the link to the settings page is fixed in this version.
|
403 |
+
|
404 |
+
= V2.01 =
|
405 |
+
* Usability at the settings page of the plugin was improved.
|
406 |
+
|
407 |
+
= V1 =
|
408 |
+
* Ability to install Facebook Button icon with a link to the account page, including settings adjustment functionality via WordPress admin panel.
|
409 |
+
|
410 |
+
== Upgrade Notice ==
|
411 |
+
|
412 |
+
= V2.61 =
|
413 |
+
* Functionality expanded.
|
414 |
+
|
415 |
+
= V2.60 =
|
416 |
+
* Bugs fixed.
|
417 |
+
* Usability improved.
|
418 |
+
|
419 |
+
= V2.59 =
|
420 |
+
* Bugs fixed.
|
421 |
+
|
422 |
+
= V2.58 =
|
423 |
+
* Bugs fixed.
|
424 |
+
|
425 |
+
= V2.57 =
|
426 |
+
* Functionality expanded.
|
427 |
+
|
428 |
+
= V2.56 =
|
429 |
+
* Bugs fixed.
|
430 |
+
* Languages updated.
|
431 |
+
|
432 |
+
= V2.55 =
|
433 |
+
* Functionality expanded.
|
434 |
+
* Appearance improved.
|
435 |
+
|
436 |
+
= V2.54 =
|
437 |
+
* Languages updated.
|
438 |
+
|
439 |
+
= V2.53 =
|
440 |
+
* Usability improved.
|
441 |
+
|
442 |
+
= V2.52 =
|
443 |
+
* Functionality improved.
|
444 |
+
|
445 |
+
= V2.51 =
|
446 |
+
* New languages added
|
447 |
+
|
448 |
+
= V2.50 =
|
449 |
+
* The compatibility with new WordPress version updated.
|
450 |
+
|
451 |
+
= V2.49 =
|
452 |
+
Images size for meta property 'og:image' has been changed.
|
453 |
+
|
454 |
+
= V2.48 =
|
455 |
+
Ability to add custom styles. All functionality for wordpress 4.5.1 was updated.
|
456 |
+
|
457 |
+
= V2.47 =
|
458 |
+
The conflict in the RSS feed was fixed. All functionality for wordpress 4.4.2 was updated.
|
459 |
+
|
460 |
+
= V2.46 =
|
461 |
+
The bug with plugin menu duplicating was fixed.
|
462 |
+
|
463 |
+
= V2.45 =
|
464 |
+
Hungarian language file is added.
|
465 |
+
|
466 |
+
= V2.44 =
|
467 |
+
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.
|
468 |
+
|
469 |
+
= V2.43 =
|
470 |
+
Option to display the button in excerpt.
|
471 |
+
|
472 |
+
= V2.42 =
|
473 |
+
We added buttons displaying for the excerpt. We updated all functionality for wordpress 4.3.
|
474 |
+
|
475 |
+
= V2.41 =
|
476 |
+
Ability to use the current site language for Facebook buttons (Using Multilanguage by BestWebSoft). We fixed the 'share' button displaying bug (when the shortcode is used).
|
477 |
+
|
478 |
+
= V2.40 =
|
479 |
+
Ability to restore settings to defaults.
|
480 |
+
|
481 |
+
= V2.39 =
|
482 |
+
We updated option titles on the Settings page for the convenience of users. Scripts were placed into a separate js file. We updated all functionality for wordpress 4.2.2.
|
483 |
+
|
484 |
+
= V2.38 =
|
485 |
+
Button styles are updated. The Finnish language file is added to the plugin.
|
486 |
+
|
487 |
+
= V2.37 =
|
488 |
+
We updated all functionality for wordpress 4.1.1. BWS plugins section is updated.
|
489 |
+
|
490 |
+
= V2.36 =
|
491 |
+
We updated all functionality for wordpress 4.1.
|
492 |
+
|
493 |
+
= V2.35 =
|
494 |
+
Plugin optimization is done. BWS plugins section is updated.
|
495 |
+
|
496 |
+
= V2.34 =
|
497 |
+
Security Exploit was fixed.
|
498 |
+
|
499 |
+
= V2.33 =
|
500 |
+
We updated all functionality for wordpress 4.0-beta2. Problem with custom images after updating plugin was fixed.
|
501 |
+
|
502 |
+
= V2.32 =
|
503 |
+
Problem with showing Like button was fixed.
|
504 |
+
|
505 |
+
= V2.31 =
|
506 |
+
Share button was added. We updated all functionality for wordpress 3.9.1. Problem with switching user was fixed.
|
507 |
+
|
508 |
+
= V2.30 =
|
509 |
+
We updated all functionality for wordpress 3.8.2.
|
510 |
+
|
511 |
+
= V2.29 =
|
512 |
+
Plugin optimization is done. Plugin tabs is added.
|
513 |
+
|
514 |
+
= V2.28 =
|
515 |
+
Html5 version of Like button is added. Screenshots are updated. BWS plugins section is updated. We updated all functionality for wordpress 3.8.1. Problem with blink of Like button is fixed. Problem with wrong thumbnails when putting Like is fixed. Problem with language of Like button when using shortcode is fixed.
|
516 |
+
|
517 |
+
= V2.27 =
|
518 |
+
The French language file is added to the plugin. We updated all functionality for wordpress 3.8. BWS plugins section is updated.
|
519 |
+
|
520 |
+
= V2.26 =
|
521 |
+
We added posibility to add images with png extension as custom image for My Page button. New default image for the My Page button. The Indonesian language file is added to the plugin. We updated our screenshots.
|
522 |
+
|
523 |
+
= V2.25 =
|
524 |
+
Problem with styles is fixed.
|
525 |
+
|
526 |
+
= V2.24 =
|
527 |
+
Add checking installed wordpress version. Activation of radio button or checkbox by clicking on its label. We updated all functionality for wordpress 3.7.1. Problem with undefined variable post_ID for multisite fixed.
|
528 |
+
|
529 |
+
= V2.23 =
|
530 |
+
We updated all functionality for wordpress 3.6.1. The Ukrainian language file is added to the plugin.
|
531 |
+
|
532 |
+
= V2.22 =
|
533 |
+
We updated all functionality for wordpress 3.6. Function for displaying BWS plugins section placed in a separate file and has own language files.
|
534 |
+
|
535 |
+
= V2.21 =
|
536 |
+
Added an ability to view and send system information by mail. We updated all functionality for wordpress 3.5.2.
|
537 |
+
|
538 |
+
= V2.20 =
|
539 |
+
The error related to creation the path to the Facebook button image is fixed. BWS plugins section is updated.
|
540 |
+
|
541 |
+
= V2.19 =
|
542 |
+
The English language is updated in the plugin.
|
543 |
+
|
544 |
+
= V2.18 =
|
545 |
+
The bug of displaying icons in the admin menu was fixed.
|
546 |
+
|
547 |
+
= V2.17 =
|
548 |
+
The Ukrainian language file is added to the plugin.
|
549 |
+
|
550 |
+
= V2.16 =
|
551 |
+
We updated CSS file. We updated all functionality for wordpress 3.5.1.
|
552 |
+
|
553 |
+
= V2.15 =
|
554 |
+
Persian and Serbian language files are added to the plugin. We updated all functionality for wordpress 3.5.
|
555 |
+
|
556 |
+
= V2.14 =
|
557 |
+
The Arabic language file is added to the plugin. Cross Site Request Forgery bug was fixed.
|
558 |
+
|
559 |
+
= V2.13 =
|
560 |
+
The Hebrew language file is added to the plugin. We updated all functionality for wordpress 3.4.1.
|
561 |
+
|
562 |
+
= V2.12 =
|
563 |
+
The bug with saved 'sortcode' option is fixed.
|
564 |
+
|
565 |
+
= V2.11 =
|
566 |
+
Added a possibility to change language for Like button. We updated all functionality for wordpress 3.4.
|
567 |
+
|
568 |
+
= V2.10 =
|
569 |
+
Added a possibility to turn off the display of the buttons. The Turkish language file is added to the plugin. The bug with upload custom image for button is fixed.
|
570 |
+
|
571 |
+
= V2.09 =
|
572 |
+
BWS plugins section has been changed.
|
573 |
+
|
574 |
+
= V2.08 =
|
575 |
+
The Spanish language file is added to the plugin. Code that is used to connect styles and scripts is added to the plugin for correct SSL verification.
|
576 |
+
|
577 |
+
= V2.07 =
|
578 |
+
BWS plugin's section was changes.
|
579 |
+
|
580 |
+
= V2.06 =
|
581 |
+
Language files are added to the plugin. Style for facebook button block was added.
|
582 |
+
|
583 |
+
= V2.05 =
|
584 |
+
Redirect to profile page bug is fixed.
|
585 |
+
|
586 |
+
= V2.04 =
|
587 |
+
BWS Panel sections was fixed and right now it is consisted of 3 parts: activated, installed and recommended plugins. The bug of positioning in admin menu is fixed. Facebook button plugin functionality was changed in connection with the change of Facebook API.
|
588 |
+
|
589 |
+
= V2.03 =
|
590 |
+
BWS Panel sections was fixed and right now it is consisted of 2 parts: installed and recommended plugins. Icons displaying is fixed.
|
591 |
+
|
592 |
+
= V2.02 =
|
593 |
+
The bug of adjustment the link to the page is fixed in this version. Please upgrade the plugin immediately. Thank you
|
594 |
+
|
595 |
+
= V2.01 =
|
596 |
+
Usability at the settings page of the plugin was improved.
|
597 |
+
|
598 |
+
= V1 =
|
599 |
+
Ability to install Facebook Button icon with a link to the account page is created, including settings adjustment functionality via WordPress admin panel.
|
screenshot-3.png
CHANGED
Binary file
|