Version Description
- 04.02.2016 =
- Bugfix : The conflict in the RSS feed was fixed.
- Update : All functionality for wordpress 4.4.2 was updated.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Facebook Button by BestWebSoft |
Version | 2.47 |
Comparing to | |
See all releases |
Code changes from version 2.46 to 2.47
- bws_menu/bws_functions.php +5 -3
- bws_menu/bws_menu.php +1 -1
- bws_menu/css/general_style.css +1 -1
- bws_menu/languages/bestwebsoft-pl_PL.mo +0 -0
- bws_menu/languages/bestwebsoft-pl_PL.po +1247 -0
- css/style.css +1 -0
- facebook-button-plugin.php +81 -17
- languages/facebook-button-plugin-fi_FI.mo +0 -0
- languages/facebook-button-plugin-fi_FI.po +157 -106
- languages/facebook-button-plugin-fr_FR.mo +0 -0
- languages/facebook-button-plugin-fr_FR.po +148 -103
- languages/facebook-button-plugin-hu_HU.mo +0 -0
- languages/facebook-button-plugin-hu_HU.po +88 -53
- languages/facebook-button-plugin-id_ID.mo +0 -0
- languages/facebook-button-plugin-id_ID.po +148 -103
- languages/facebook-button-plugin-ru_RU.mo +0 -0
- languages/facebook-button-plugin-ru_RU.po +91 -51
- languages/facebook-button-plugin-tr_TR.mo +0 -0
- languages/facebook-button-plugin-tr_TR.po +158 -106
- languages/facebook-button-plugin-uk.mo +0 -0
- languages/facebook-button-plugin-uk.po +122 -82
- readme.txt +12 -5
- screenshot-1.png +0 -0
- screenshot-2.png +0 -0
- screenshot-3.png +0 -0
bws_menu/bws_functions.php
CHANGED
@@ -704,7 +704,7 @@ if ( ! function_exists( 'bws_plugin_banner_to_settings' ) ) {
|
|
704 |
|
705 |
if ( ! function_exists( 'bws_show_settings_notice' ) ) {
|
706 |
function bws_show_settings_notice() { ?>
|
707 |
-
<div id="bws_save_settings_notice" class="updated fade" style="display:none">
|
708 |
<p>
|
709 |
<strong><?php _e( 'Notice', 'bestwebsoft' ); ?></strong>: <?php _e( "The plugin's settings have been changed.", 'bestwebsoft' ); ?>
|
710 |
<a class="bws_save_anchor" href="#bws-submit-button"><?php _e( 'Save Changes', 'bestwebsoft' ); ?></a>
|
@@ -718,7 +718,9 @@ if ( ! function_exists( 'bws_hide_premium_options' ) ) {
|
|
718 |
global $current_user;
|
719 |
if ( ! $current_user )
|
720 |
get_currentuserinfo();
|
721 |
-
|
|
|
|
|
722 |
$options['hide_premium_options'][] = $current_user->ID;
|
723 |
|
724 |
return array(
|
@@ -733,7 +735,7 @@ if ( ! function_exists( 'bws_hide_premium_options_check' ) ) {
|
|
733 |
if ( ! $current_user )
|
734 |
get_currentuserinfo();
|
735 |
|
736 |
-
if (
|
737 |
return true;
|
738 |
else
|
739 |
return false;
|
704 |
|
705 |
if ( ! function_exists( 'bws_show_settings_notice' ) ) {
|
706 |
function bws_show_settings_notice() { ?>
|
707 |
+
<div id="bws_save_settings_notice" class="updated fade below-h2" style="display:none;">
|
708 |
<p>
|
709 |
<strong><?php _e( 'Notice', 'bestwebsoft' ); ?></strong>: <?php _e( "The plugin's settings have been changed.", 'bestwebsoft' ); ?>
|
710 |
<a class="bws_save_anchor" href="#bws-submit-button"><?php _e( 'Save Changes', 'bestwebsoft' ); ?></a>
|
718 |
global $current_user;
|
719 |
if ( ! $current_user )
|
720 |
get_currentuserinfo();
|
721 |
+
if ( ! isset( $options['hide_premium_options'] ) || ! is_array( $options['hide_premium_options'] ) )
|
722 |
+
$options['hide_premium_options'] = array();
|
723 |
+
|
724 |
$options['hide_premium_options'][] = $current_user->ID;
|
725 |
|
726 |
return array(
|
735 |
if ( ! $current_user )
|
736 |
get_currentuserinfo();
|
737 |
|
738 |
+
if ( ! empty( $options['hide_premium_options'] ) && in_array( $current_user->ID, $options['hide_premium_options'] ) )
|
739 |
return true;
|
740 |
else
|
741 |
return false;
|
bws_menu/bws_menu.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
* Function for displaying BestWebSoft menu
|
4 |
-
* Version: 1.
|
5 |
*/
|
6 |
|
7 |
if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
|
1 |
<?php
|
2 |
/*
|
3 |
* Function for displaying BestWebSoft menu
|
4 |
+
* Version: 1.8.1
|
5 |
*/
|
6 |
|
7 |
if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
|
bws_menu/css/general_style.css
CHANGED
@@ -255,11 +255,11 @@ div.bws_banner_on_plugin_page .icon {
|
|
255 |
margin: 8px;
|
256 |
cursor: pointer;
|
257 |
}
|
|
|
258 |
.rtl .bws_banner_on_plugin_page .close_icon {
|
259 |
float: left;
|
260 |
}
|
261 |
.rtl div.bws_banner_on_plugin_page .icon,
|
262 |
-
.rtl div.bws_banner_on_plugin_page .button,
|
263 |
.rtl .bws_banner_on_plugin_page .text {
|
264 |
float: right;
|
265 |
}
|
255 |
margin: 8px;
|
256 |
cursor: pointer;
|
257 |
}
|
258 |
+
.rtl div.bws_banner_on_plugin_page .button,
|
259 |
.rtl .bws_banner_on_plugin_page .close_icon {
|
260 |
float: left;
|
261 |
}
|
262 |
.rtl div.bws_banner_on_plugin_page .icon,
|
|
|
263 |
.rtl .bws_banner_on_plugin_page .text {
|
264 |
float: right;
|
265 |
}
|
bws_menu/languages/bestwebsoft-pl_PL.mo
ADDED
Binary file
|
bws_menu/languages/bestwebsoft-pl_PL.po
ADDED
@@ -0,0 +1,1247 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: bestwebsoft\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-01-19 13:39+0300\n"
|
6 |
+
"PO-Revision-Date: 2016-01-19 13:39+0300\n"
|
7 |
+
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
+
"Language-Team: Damian Dąbrowski <contact@codester.pl>\n"
|
9 |
+
"Language: pl_PL\n"
|
10 |
+
"MIME-Version: 1.0\n"
|
11 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
+
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
+
"X-Poedit-Basepath: ..\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 1.5.4\n"
|
17 |
+
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
18 |
+
"|| n%100>=20) ? 1 : 2);\n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
|
21 |
+
#: bws_functions.php:65 bws_functions.php:89
|
22 |
+
msgid "requires"
|
23 |
+
msgstr "wymaga wersja"
|
24 |
+
|
25 |
+
#: bws_functions.php:67
|
26 |
+
msgid ""
|
27 |
+
"or higher, that is why it has been deactivated! Please upgrade WordPress and "
|
28 |
+
"try again."
|
29 |
+
msgstr ""
|
30 |
+
"lub nowsza, dlatego wtyczka została wyłączona. Zaktualizuj WordPress i "
|
31 |
+
"spróbuj ponownie."
|
32 |
+
|
33 |
+
#: bws_functions.php:68
|
34 |
+
msgid "Back to the WordPress"
|
35 |
+
msgstr "Wróć do WordPress"
|
36 |
+
|
37 |
+
#: bws_functions.php:70
|
38 |
+
msgid "Plugins page"
|
39 |
+
msgstr "Wtyczki"
|
40 |
+
|
41 |
+
#: bws_functions.php:91
|
42 |
+
msgid ""
|
43 |
+
"or higher! We do not guarantee that our plugin will work correctly. Please "
|
44 |
+
"upgrade to WordPress latest version."
|
45 |
+
msgstr ""
|
46 |
+
"lub nowsza! Nie gwarantujemy, że nasza wtyczka będzie działała poprawnie. "
|
47 |
+
"Proszę zaktualizować WordPress do najnowszej wersji."
|
48 |
+
|
49 |
+
#: bws_functions.php:148
|
50 |
+
msgid "It’s time to upgrade your"
|
51 |
+
msgstr "Czas by zaktualizować"
|
52 |
+
|
53 |
+
#: bws_functions.php:148
|
54 |
+
msgid "to"
|
55 |
+
msgstr "do"
|
56 |
+
|
57 |
+
#: bws_functions.php:148
|
58 |
+
msgid "version!"
|
59 |
+
msgstr "wersji!"
|
60 |
+
|
61 |
+
#: bws_functions.php:149
|
62 |
+
msgid "Extend standard plugin functionality with new great options."
|
63 |
+
msgstr "Rozszerz podstawowe funkcje wtyczki o nowe wspaniałe opcje."
|
64 |
+
|
65 |
+
#: bws_functions.php:152 bws_functions.php:593
|
66 |
+
msgid "Learn More"
|
67 |
+
msgstr "Dowiedz się więcej"
|
68 |
+
|
69 |
+
#: bws_functions.php:169
|
70 |
+
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
71 |
+
msgstr "Jeśli polubiłeś naszą wtyczkę daj nam 5 gwiazdek"
|
72 |
+
|
73 |
+
#: bws_functions.php:170
|
74 |
+
msgid "Rate the plugin"
|
75 |
+
msgstr "Oceń wtyczkę"
|
76 |
+
|
77 |
+
#: bws_functions.php:173
|
78 |
+
msgid "If there is something wrong about it, please contact us"
|
79 |
+
msgstr "Jeśli wystąpią problemy proszę, skontaktuj się z nami"
|
80 |
+
|
81 |
+
#: bws_functions.php:205
|
82 |
+
msgid "Check premium options on the plugin settings page!"
|
83 |
+
msgstr "Sprawdź dodatkowe opcje premium w ustawieniach wtyczki."
|
84 |
+
|
85 |
+
#: bws_functions.php:212 bws_functions.php:248
|
86 |
+
msgid "Wrong license key"
|
87 |
+
msgstr "Niepoprawny klucz licencji"
|
88 |
+
|
89 |
+
#: bws_functions.php:242 bws_functions.php:506 bws_functions.php:557
|
90 |
+
msgid ""
|
91 |
+
"Something went wrong. Please try again later. If the error appears again, "
|
92 |
+
"please contact us"
|
93 |
+
msgstr ""
|
94 |
+
"Coś poszło nie tak. Spróbuj ponownie później. Jeśli błąd pojawi się ponownie "
|
95 |
+
"proszę skontaktować się z nami"
|
96 |
+
|
97 |
+
#: bws_functions.php:242 bws_functions.php:506 bws_functions.php:557
|
98 |
+
msgid "We are sorry for inconvenience."
|
99 |
+
msgstr "Przepraszamy za niedogodności."
|
100 |
+
|
101 |
+
#: bws_functions.php:250
|
102 |
+
msgid "This license key is bind to another site"
|
103 |
+
msgstr "Ta licencja została przypisana do innej strony."
|
104 |
+
|
105 |
+
#: bws_functions.php:252 bws_functions.php:416
|
106 |
+
msgid ""
|
107 |
+
"Unfortunately, you have exceeded the number of available tries per day. "
|
108 |
+
"Please, upload the plugin manually."
|
109 |
+
msgstr ""
|
110 |
+
"Niestety, przekroczono liczb dostępnych prób na dziś. Proszę dodać wtyczkę "
|
111 |
+
"manualnie."
|
112 |
+
|
113 |
+
#: bws_functions.php:254
|
114 |
+
msgid ""
|
115 |
+
"Unfortunately, Your license has expired. To continue getting top-priority "
|
116 |
+
"support and plugin updates you should extend it in your"
|
117 |
+
msgstr ""
|
118 |
+
"Niestety, Twoja licencja wygasła. By nadal korzystać z szybkiego dostępu do "
|
119 |
+
"wsparcia oraz aktualizacji powinieneś przedłużyć licencję."
|
120 |
+
|
121 |
+
#: bws_functions.php:256
|
122 |
+
msgid ""
|
123 |
+
"Unfortunately, the Pro licence was already installed to this domain. The Pro "
|
124 |
+
"Trial license can be installed only once."
|
125 |
+
msgstr ""
|
126 |
+
"Niestety, licencja PRO była już przypisana do tej domeny. Licencja testowa "
|
127 |
+
"może być wykorzystana tylko raz."
|
128 |
+
|
129 |
+
#: bws_functions.php:277 bws_functions.php:299 bws_functions.php:321
|
130 |
+
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
131 |
+
msgstr ""
|
132 |
+
"Pobieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
|
133 |
+
"manualnie"
|
134 |
+
|
135 |
+
#: bws_functions.php:289
|
136 |
+
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
137 |
+
msgstr ""
|
138 |
+
"Otwieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
|
139 |
+
"manualnie"
|
140 |
+
|
141 |
+
#: bws_functions.php:295
|
142 |
+
msgid ""
|
143 |
+
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
144 |
+
"plugin manually"
|
145 |
+
msgstr ""
|
146 |
+
"Twój serwer nie wspiera ZipAcrchive lub Phar. Proszę dodać wtyczkę manualnie"
|
147 |
+
|
148 |
+
#: bws_functions.php:302
|
149 |
+
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
150 |
+
msgstr ""
|
151 |
+
"Folder uploadu jest chroniony przez zapisem. Proszę dodać wtyczkę manualnie"
|
152 |
+
|
153 |
+
#: bws_functions.php:325
|
154 |
+
msgid ""
|
155 |
+
"Something went wrong. Try again later or upload the plugin manually. We are "
|
156 |
+
"sorry for inconvenience."
|
157 |
+
msgstr ""
|
158 |
+
"Coś poszło nie tak. Spróbuj ponowie później lub dodaj wtyczkę manualnie. "
|
159 |
+
"Przepraszamy za niedogodności."
|
160 |
+
|
161 |
+
#: bws_functions.php:350
|
162 |
+
msgid "Please, enter Your license key"
|
163 |
+
msgstr "Proszę podać klucz licencji."
|
164 |
+
|
165 |
+
#: bws_functions.php:380
|
166 |
+
msgid ""
|
167 |
+
"Congratulations! The Pro version of the plugin is successfully download and "
|
168 |
+
"activated."
|
169 |
+
msgstr "Gratulacje! Wersja PRO została pobrana i aktywowana pomyślnie."
|
170 |
+
|
171 |
+
#: bws_functions.php:382 bws_functions.php:473
|
172 |
+
msgid "Please, go to"
|
173 |
+
msgstr "Proszę przejść do"
|
174 |
+
|
175 |
+
#: bws_functions.php:382 bws_functions.php:473
|
176 |
+
msgid "the setting page"
|
177 |
+
msgstr "ustawień"
|
178 |
+
|
179 |
+
#: bws_functions.php:383 bws_functions.php:474
|
180 |
+
msgid "You will be redirected automatically in 5 seconds."
|
181 |
+
msgstr "Zostaniesz automatycznie przekierowany w ciągu 5 sekund."
|
182 |
+
|
183 |
+
#: bws_functions.php:390
|
184 |
+
msgid "Show Pro features"
|
185 |
+
msgstr "Pokaż funkcje PRO"
|
186 |
+
|
187 |
+
#: bws_functions.php:397
|
188 |
+
msgid "You can download and activate"
|
189 |
+
msgstr "Możesz pobrać i aktywować wersję"
|
190 |
+
|
191 |
+
#: bws_functions.php:399
|
192 |
+
msgid "version of this plugin by entering Your license key."
|
193 |
+
msgstr "wtyczki poprzez podanie klucza licencji."
|
194 |
+
|
195 |
+
#: bws_functions.php:401 bws_functions.php:442
|
196 |
+
msgid ""
|
197 |
+
"You can find your license key on your personal page Client area, by clicking "
|
198 |
+
"on the link"
|
199 |
+
msgstr ""
|
200 |
+
"Możesz znaleźć Twój klucz licencji na indywidualnej stronie w Panelu Klienta "
|
201 |
+
"poprzez kliknięcie w link"
|
202 |
+
|
203 |
+
#: bws_functions.php:403 bws_functions.php:444
|
204 |
+
msgid "(your username is the email you specify when purchasing the product)."
|
205 |
+
msgstr "(twoja nazwa użytkownika to email podany podczas zakupu)."
|
206 |
+
|
207 |
+
#: bws_functions.php:407 bws_functions.php:691
|
208 |
+
msgid "or"
|
209 |
+
msgstr "lub"
|
210 |
+
|
211 |
+
#: bws_functions.php:407
|
212 |
+
#, php-format
|
213 |
+
msgid "Start Your Free %s-Day Trial Now"
|
214 |
+
msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
|
215 |
+
|
216 |
+
#: bws_functions.php:413 bws_functions.php:422 bws_functions.php:452
|
217 |
+
#: bws_functions.php:460 bws_menu.php:690 bws_menu.php:747
|
218 |
+
msgid "Activate"
|
219 |
+
msgstr "Aktywuj"
|
220 |
+
|
221 |
+
#: bws_functions.php:439 bws_functions.php:532
|
222 |
+
#, php-format
|
223 |
+
msgid ""
|
224 |
+
"In order to continue using the plugin it is necessary to buy a %s license."
|
225 |
+
msgstr ""
|
226 |
+
"W celu dalszego wykorzystywania wtyczki niezbędne jest wykupienie licencji "
|
227 |
+
"%s."
|
228 |
+
|
229 |
+
#: bws_functions.php:440
|
230 |
+
msgid "After that you can activate it by entering your license key."
|
231 |
+
msgstr "Po wszystkim możesz aktywować wtyczkę poprzez podanie klucza licencji."
|
232 |
+
|
233 |
+
#: bws_functions.php:454
|
234 |
+
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
235 |
+
msgstr "Niestety, przekroczono dzienną liczbę dostępnych prób."
|
236 |
+
|
237 |
+
#: bws_functions.php:471
|
238 |
+
msgid ""
|
239 |
+
"Congratulations! The Pro license of the plugin is successfully activated."
|
240 |
+
msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
|
241 |
+
|
242 |
+
#: bws_functions.php:512
|
243 |
+
msgid "Wrong license key."
|
244 |
+
msgstr "Niepoprawny klucz licencji"
|
245 |
+
|
246 |
+
#: bws_functions.php:514
|
247 |
+
msgid "This license key is bind to another site."
|
248 |
+
msgstr "Klucz licencji został przypisany do innej strony."
|
249 |
+
|
250 |
+
#: bws_functions.php:516
|
251 |
+
msgid ""
|
252 |
+
"This license key is valid, but Your license has expired. If you want to "
|
253 |
+
"update our plugin in future, you should extend the license."
|
254 |
+
msgstr ""
|
255 |
+
"Klucz jest poprawny, jednak Twoja licencja wygasła. Jeśli chcesz "
|
256 |
+
"aktualizować naszą wtyczkę w przyszłości powinieneś przedłużyć licencję."
|
257 |
+
|
258 |
+
#: bws_functions.php:518
|
259 |
+
msgid "Unfortunately, you have exceeded the number of available tries."
|
260 |
+
msgstr "Niestety, przekroczono liczbę dostępnych prób."
|
261 |
+
|
262 |
+
#: bws_functions.php:520
|
263 |
+
msgid ""
|
264 |
+
"Unfortunately, the Pro Trial licence was already installed to this domain. "
|
265 |
+
"The Pro Trial license can be installed only once."
|
266 |
+
msgstr ""
|
267 |
+
"Niestety, licencja PRO była już przypisana do tej domeny. Licencja testowa "
|
268 |
+
"może być wykorzystana tylko raz."
|
269 |
+
|
270 |
+
#: bws_functions.php:524
|
271 |
+
msgid "The Pro Trial license key is valid."
|
272 |
+
msgstr "Klucz licencji do testowej wersji PRO jest poprawny."
|
273 |
+
|
274 |
+
#: bws_functions.php:526
|
275 |
+
msgid "The license key is valid."
|
276 |
+
msgstr "Klucz licencji jest poprawny"
|
277 |
+
|
278 |
+
#: bws_functions.php:529
|
279 |
+
msgid "Your license will expire on"
|
280 |
+
msgstr "Twoja licencja wygaśnie"
|
281 |
+
|
282 |
+
#: bws_functions.php:562
|
283 |
+
msgid "Please, enter your license key"
|
284 |
+
msgstr "Podaj klucz licencji"
|
285 |
+
|
286 |
+
#: bws_functions.php:575
|
287 |
+
msgid ""
|
288 |
+
"If needed you can check if the license key is correct or reenter it in the "
|
289 |
+
"field below. You can find your license key on your personal page - Client "
|
290 |
+
"area - on our website"
|
291 |
+
msgstr ""
|
292 |
+
"Jeśli to konieczne możesz sprawdzić czy klucz jest poprawny lub umieścić go "
|
293 |
+
"w polu poniżej. Możesz znaleźć swój klucz na naszej stronie w strefie - "
|
294 |
+
"Panel Klienta"
|
295 |
+
|
296 |
+
#: bws_functions.php:575
|
297 |
+
msgid ""
|
298 |
+
"(your username is the email you specify when purchasing the product). If "
|
299 |
+
"necessary, please submit \"Lost your password?\" request."
|
300 |
+
msgstr ""
|
301 |
+
"(login to adres email podany przy zakupie). Jeśli to koniczne użyj opcji "
|
302 |
+
"\"Zgubiłeś swoje hasło?\"."
|
303 |
+
|
304 |
+
#: bws_functions.php:579
|
305 |
+
msgid "Check license key"
|
306 |
+
msgstr "Sprawdź klucz licencji"
|
307 |
+
|
308 |
+
#: bws_functions.php:593
|
309 |
+
msgid "WARNING: Illegal use notification"
|
310 |
+
msgstr "UWAGA: Odnotowano nielegalne użycie"
|
311 |
+
|
312 |
+
#: bws_functions.php:593
|
313 |
+
msgid ""
|
314 |
+
"You can use one license of the Pro plugin for one domain only. Please check "
|
315 |
+
"and edit your license or domain if necessary using you personal Client Area. "
|
316 |
+
"We strongly recommend you to solve the problem within 24 hours, otherwise "
|
317 |
+
"the Pro plugin will be deactivated."
|
318 |
+
msgstr ""
|
319 |
+
"Licencja wersji PRO może być wykorzystywana tylko na jednej domenie. Proszę "
|
320 |
+
"sprawdź i edytuj klucz licencji lub domenę, jeśli to konieczne wykorzystaj "
|
321 |
+
"Panel Klienta. Zalecamy rozwiązanie tego problemu w przeciągu 24 godzin, w "
|
322 |
+
"przeciwnym wypadku wersja PRO zostanie zablokowana."
|
323 |
+
|
324 |
+
#: bws_functions.php:601
|
325 |
+
msgid ""
|
326 |
+
"Notice: Your Pro Trial license has expired. To continue using the plugin you "
|
327 |
+
"should buy a Pro license"
|
328 |
+
msgstr ""
|
329 |
+
"Uwaga: Testowa wersja PRO niestety wygasła. Aby kontynuować korzystanie z "
|
330 |
+
"naszej wtyczki powinieneś zakupić klucz licencji."
|
331 |
+
|
332 |
+
#: bws_functions.php:603
|
333 |
+
msgid ""
|
334 |
+
"Your license has expired. To continue getting top-priority support and "
|
335 |
+
"plugin updates you should extend it."
|
336 |
+
msgstr ""
|
337 |
+
"Twoja licencja wygasła. Aby podtrzymać szybki dostęp do pomocy i "
|
338 |
+
"aktualizacji powinieneś przedłużyć licencję."
|
339 |
+
|
340 |
+
#: bws_functions.php:603 bws_functions.php:656 bws_menu.php:666
|
341 |
+
#: bws_menu.php:688 bws_menu.php:715 bws_menu.php:745 bws_menu.php:791
|
342 |
+
msgid "Learn more"
|
343 |
+
msgstr "Dowiedz się więcej"
|
344 |
+
|
345 |
+
#: bws_functions.php:613
|
346 |
+
#, php-format
|
347 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
348 |
+
msgstr "Uwaga: Wykorzystujesz próbną licencję wersji PRO dla %s."
|
349 |
+
|
350 |
+
#: bws_functions.php:615
|
351 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
352 |
+
msgstr "Uwaga: Wykorzystywana jest próbna licencja wtyczki."
|
353 |
+
|
354 |
+
#: bws_functions.php:618
|
355 |
+
msgid "The Pro Trial license will expire on"
|
356 |
+
msgstr "Licencja próbna wygaśnie"
|
357 |
+
|
358 |
+
#: bws_functions.php:656
|
359 |
+
msgid "You license for"
|
360 |
+
msgstr "Twoja licencja na"
|
361 |
+
|
362 |
+
#: bws_functions.php:656
|
363 |
+
msgid "expires on"
|
364 |
+
msgstr "wygasa"
|
365 |
+
|
366 |
+
#: bws_functions.php:656
|
367 |
+
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
368 |
+
msgstr ""
|
369 |
+
"zostaniesz wówczas pozbawiony SZYBKIEGO DOSTĘDO DO SUPPORTU oraz "
|
370 |
+
"AKTUALIZACJI."
|
371 |
+
|
372 |
+
#: bws_functions.php:687
|
373 |
+
msgid "Thank you for installing"
|
374 |
+
msgstr "Dziękujemy za instalację"
|
375 |
+
|
376 |
+
#: bws_functions.php:688
|
377 |
+
msgid "Let's get started"
|
378 |
+
msgstr "Zaczynajmny"
|
379 |
+
|
380 |
+
#: bws_functions.php:689
|
381 |
+
msgid "Configure Settings"
|
382 |
+
msgstr "Konfiguruj Ustawienia"
|
383 |
+
|
384 |
+
#: bws_functions.php:692
|
385 |
+
msgid "Add New"
|
386 |
+
msgstr "Dodaj nowy"
|
387 |
+
|
388 |
+
#: bws_functions.php:696
|
389 |
+
msgid "Close notice"
|
390 |
+
msgstr "Zamknij powiadomienie"
|
391 |
+
|
392 |
+
#: bws_functions.php:709
|
393 |
+
msgid "Notice"
|
394 |
+
msgstr "Uwaga"
|
395 |
+
|
396 |
+
#: bws_functions.php:709
|
397 |
+
msgid "The plugin's settings have been changed."
|
398 |
+
msgstr "Ustawienia wtyczki zostały zmienione."
|
399 |
+
|
400 |
+
#: bws_functions.php:710
|
401 |
+
msgid "Save Changes"
|
402 |
+
msgstr "Zapisz zmiany"
|
403 |
+
|
404 |
+
#: bws_functions.php:727
|
405 |
+
msgid ""
|
406 |
+
"You can always look at premium options by clicking on the \"Show Pro features"
|
407 |
+
"\" in the \"Go PRO\" tab"
|
408 |
+
msgstr ""
|
409 |
+
"Zawsze możesz sprawdzić funkcje premium poprzez kliknięcie \"Pokaż funkcje "
|
410 |
+
"PRO\" w zakładce \"Go PRO\""
|
411 |
+
|
412 |
+
#: bws_functions.php:807
|
413 |
+
msgid "Add BWS Plugins Shortcode"
|
414 |
+
msgstr "Dodaj BWS Shortcode"
|
415 |
+
|
416 |
+
#: bws_functions.php:827
|
417 |
+
#, fuzzy
|
418 |
+
msgid "Add shortcode"
|
419 |
+
msgstr "Dodaj BWS Shortcode"
|
420 |
+
|
421 |
+
#: bws_functions.php:827
|
422 |
+
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
423 |
+
msgstr ""
|
424 |
+
|
425 |
+
#: bws_functions.php:869
|
426 |
+
msgid "Close"
|
427 |
+
msgstr "Zamknij"
|
428 |
+
|
429 |
+
#: bws_functions.php:961
|
430 |
+
msgid "Restore all plugin settings to defaults"
|
431 |
+
msgstr "Przywróć wszystkie ustawienia do wartości domyśłnych"
|
432 |
+
|
433 |
+
#: bws_functions.php:963
|
434 |
+
msgid "Restore settings"
|
435 |
+
msgstr "Przywróć ustawienia"
|
436 |
+
|
437 |
+
#: bws_functions.php:974
|
438 |
+
msgid "Are you sure you want to restore all settings by default?"
|
439 |
+
msgstr ""
|
440 |
+
"Czy jesteś pewien, że chcesz przywrócić wszystkie ustawienia do wartości "
|
441 |
+
"domyślnych?"
|
442 |
+
|
443 |
+
#: bws_functions.php:977
|
444 |
+
msgid "Yes, restore all settings"
|
445 |
+
msgstr "Tak, przywróć wszystkie ustawienia"
|
446 |
+
|
447 |
+
#: bws_functions.php:978
|
448 |
+
msgid "No, go back to the settings page"
|
449 |
+
msgstr "Nie, wróć do ustawień"
|
450 |
+
|
451 |
+
#: bws_functions.php:1024
|
452 |
+
msgid "Plugin"
|
453 |
+
msgstr "Wtyczka"
|
454 |
+
|
455 |
+
#: bws_functions.php:1033
|
456 |
+
msgid "Shortcode settings"
|
457 |
+
msgstr "Ustawienia shortcode"
|
458 |
+
|
459 |
+
#: bws_functions.php:1038
|
460 |
+
msgid "The shortcode will be inserted"
|
461 |
+
msgstr "Shortcode zostanie umieszczony"
|
462 |
+
|
463 |
+
#: bws_functions.php:1043
|
464 |
+
msgid "Insert"
|
465 |
+
msgstr "Umieść"
|
466 |
+
|
467 |
+
#: bws_functions.php:1074
|
468 |
+
msgid "Visit Help Center"
|
469 |
+
msgstr ""
|
470 |
+
|
471 |
+
#: bws_functions.php:1079
|
472 |
+
msgid "FAQ"
|
473 |
+
msgstr "FAQ"
|
474 |
+
|
475 |
+
#: bws_functions.php:1085
|
476 |
+
msgid "For more information:"
|
477 |
+
msgstr ""
|
478 |
+
|
479 |
+
#: bws_functions.php:1086
|
480 |
+
msgid "Documentation"
|
481 |
+
msgstr ""
|
482 |
+
|
483 |
+
#: bws_functions.php:1087
|
484 |
+
msgid "Video Instructions"
|
485 |
+
msgstr ""
|
486 |
+
|
487 |
+
#: bws_functions.php:1088
|
488 |
+
#, fuzzy
|
489 |
+
msgid "Submit a Request"
|
490 |
+
msgstr "送信ボタン"
|
491 |
+
|
492 |
+
#: bws_menu.php:506
|
493 |
+
msgid "Not set"
|
494 |
+
msgstr "Nie ustawiono"
|
495 |
+
|
496 |
+
#: bws_menu.php:508 bws_menu.php:509
|
497 |
+
msgid "On"
|
498 |
+
msgstr "Włączone"
|
499 |
+
|
500 |
+
#: bws_menu.php:508 bws_menu.php:509
|
501 |
+
msgid "Off"
|
502 |
+
msgstr "Wyłączone"
|
503 |
+
|
504 |
+
#: bws_menu.php:510 bws_menu.php:511 bws_menu.php:512 bws_menu.php:513
|
505 |
+
#: bws_menu.php:514 bws_menu.php:526
|
506 |
+
msgid "N/A"
|
507 |
+
msgstr "Brak danych"
|
508 |
+
|
509 |
+
#: bws_menu.php:514
|
510 |
+
msgid " Mb"
|
511 |
+
msgstr " Mb"
|
512 |
+
|
513 |
+
#: bws_menu.php:515 bws_menu.php:516 bws_menu.php:517 bws_menu.php:522
|
514 |
+
msgid "Yes"
|
515 |
+
msgstr "Tak"
|
516 |
+
|
517 |
+
#: bws_menu.php:515 bws_menu.php:516 bws_menu.php:517 bws_menu.php:524
|
518 |
+
msgid "No"
|
519 |
+
msgstr "Nie"
|
520 |
+
|
521 |
+
#: bws_menu.php:534
|
522 |
+
msgid "Operating System"
|
523 |
+
msgstr "System operacyjny"
|
524 |
+
|
525 |
+
#: bws_menu.php:535
|
526 |
+
msgid "Server"
|
527 |
+
msgstr "Serwer"
|
528 |
+
|
529 |
+
#: bws_menu.php:536
|
530 |
+
msgid "Memory usage"
|
531 |
+
msgstr "Wykorzystanie pamięci"
|
532 |
+
|
533 |
+
#: bws_menu.php:537
|
534 |
+
msgid "MYSQL Version"
|
535 |
+
msgstr "Wersja MySQL"
|
536 |
+
|
537 |
+
#: bws_menu.php:538
|
538 |
+
msgid "SQL Mode"
|
539 |
+
msgstr "Tryb SQL"
|
540 |
+
|
541 |
+
#: bws_menu.php:539
|
542 |
+
msgid "PHP Version"
|
543 |
+
msgstr "Wersja PHP"
|
544 |
+
|
545 |
+
#: bws_menu.php:540
|
546 |
+
msgid "PHP Safe Mode"
|
547 |
+
msgstr "PHP Safe Mode"
|
548 |
+
|
549 |
+
#: bws_menu.php:541
|
550 |
+
msgid "PHP Allow URL fopen"
|
551 |
+
msgstr "Zezwól na PHP fopen"
|
552 |
+
|
553 |
+
#: bws_menu.php:542
|
554 |
+
msgid "PHP Memory Limit"
|
555 |
+
msgstr "PHP Limit pamięci"
|
556 |
+
|
557 |
+
#: bws_menu.php:543
|
558 |
+
msgid "PHP Max Upload Size"
|
559 |
+
msgstr "PHP Max rozmiar przesyłanego pliku"
|
560 |
+
|
561 |
+
#: bws_menu.php:544
|
562 |
+
msgid "PHP Max Post Size"
|
563 |
+
msgstr "PHP Max rozmiar przesyłania POST"
|
564 |
+
|
565 |
+
#: bws_menu.php:545
|
566 |
+
msgid "PHP Max Script Execute Time"
|
567 |
+
msgstr "PHP Max czas przetwarzania skryptu"
|
568 |
+
|
569 |
+
#: bws_menu.php:546
|
570 |
+
msgid "PHP Exif support"
|
571 |
+
msgstr "PHP Wsparcie Exif"
|
572 |
+
|
573 |
+
#: bws_menu.php:547
|
574 |
+
msgid "PHP IPTC support"
|
575 |
+
msgstr "PHP Wsparcie IPTC"
|
576 |
+
|
577 |
+
#: bws_menu.php:548
|
578 |
+
msgid "PHP XML support"
|
579 |
+
msgstr "PHP Wsparcie XML"
|
580 |
+
|
581 |
+
#: bws_menu.php:549
|
582 |
+
msgid "Site URL"
|
583 |
+
msgstr "Adres strony:"
|
584 |
+
|
585 |
+
#: bws_menu.php:550
|
586 |
+
msgid "Home URL"
|
587 |
+
msgstr "Adres strony głównej:"
|
588 |
+
|
589 |
+
#: bws_menu.php:553
|
590 |
+
msgid "WordPress Version"
|
591 |
+
msgstr "Wersja WordPress"
|
592 |
+
|
593 |
+
#: bws_menu.php:554
|
594 |
+
msgid "WordPress DB Version"
|
595 |
+
msgstr "Wersja Bazy Danych dla WordPress"
|
596 |
+
|
597 |
+
#: bws_menu.php:555
|
598 |
+
msgid "Multisite"
|
599 |
+
msgstr "Multisite"
|
600 |
+
|
601 |
+
#: bws_menu.php:556
|
602 |
+
msgid "Active Theme"
|
603 |
+
msgstr "Aktywny motyw"
|
604 |
+
|
605 |
+
#: bws_menu.php:571
|
606 |
+
msgid "Please enter a valid email address."
|
607 |
+
msgstr "Podaj poprawny adres email"
|
608 |
+
|
609 |
+
#: bws_menu.php:575
|
610 |
+
msgid "Email with system info is sent to "
|
611 |
+
msgstr "Wiadomość z informacjami systemowymi zostanie wysłana do "
|
612 |
+
|
613 |
+
#: bws_menu.php:579
|
614 |
+
msgid "Thank you for contacting us."
|
615 |
+
msgstr "Dziękujemy za kontakt."
|
616 |
+
|
617 |
+
#: bws_menu.php:612
|
618 |
+
msgid "Sorry, email message could not be delivered."
|
619 |
+
msgstr "Przepraszamy, wiadomość nie została dostarczona."
|
620 |
+
|
621 |
+
#: bws_menu.php:619
|
622 |
+
msgid "Need help?"
|
623 |
+
msgstr "Potrzebujesz pomocy?"
|
624 |
+
|
625 |
+
#: bws_menu.php:620
|
626 |
+
msgid "Client area"
|
627 |
+
msgstr "Panel Klienta"
|
628 |
+
|
629 |
+
#: bws_menu.php:621 bws_menu.php:930
|
630 |
+
msgid "System status"
|
631 |
+
msgstr "Status systemu"
|
632 |
+
|
633 |
+
#: bws_menu.php:626
|
634 |
+
msgid "Plugins"
|
635 |
+
msgstr "Wtyczki"
|
636 |
+
|
637 |
+
#: bws_menu.php:627
|
638 |
+
msgid "Themes"
|
639 |
+
msgstr "Motywy"
|
640 |
+
|
641 |
+
#: bws_menu.php:631
|
642 |
+
msgid "All"
|
643 |
+
msgstr "Wszystko"
|
644 |
+
|
645 |
+
#: bws_menu.php:632
|
646 |
+
msgid "Installed"
|
647 |
+
msgstr "Zainstalowane"
|
648 |
+
|
649 |
+
#: bws_menu.php:633
|
650 |
+
msgid "Recommended"
|
651 |
+
msgstr "Polecane"
|
652 |
+
|
653 |
+
#: bws_menu.php:637
|
654 |
+
msgid "Installed plugins"
|
655 |
+
msgstr "Zainstalowane"
|
656 |
+
|
657 |
+
#: bws_menu.php:669 bws_menu.php:718
|
658 |
+
msgid "Settings"
|
659 |
+
msgstr "Ustawienia"
|
660 |
+
|
661 |
+
#: bws_menu.php:690 bws_menu.php:747
|
662 |
+
msgid "Activate this plugin"
|
663 |
+
msgstr "Aktywuj wtyczkę"
|
664 |
+
|
665 |
+
#: bws_menu.php:705 bws_menu.php:735 bws_menu.php:781
|
666 |
+
msgid "Go"
|
667 |
+
msgstr "Go"
|
668 |
+
|
669 |
+
#: bws_menu.php:709 bws_menu.php:739 bws_menu.php:785
|
670 |
+
msgid "DONATE"
|
671 |
+
msgstr "DOTACJA"
|
672 |
+
|
673 |
+
#: bws_menu.php:755
|
674 |
+
msgid "Recommended plugins"
|
675 |
+
msgstr "Polecane"
|
676 |
+
|
677 |
+
#: bws_menu.php:793
|
678 |
+
msgid "Install now"
|
679 |
+
msgstr "Instaluj teraz"
|
680 |
+
|
681 |
+
#: bws_menu.php:814
|
682 |
+
msgid "Try again"
|
683 |
+
msgstr "Spróbuj ponownie"
|
684 |
+
|
685 |
+
#: bws_menu.php:832
|
686 |
+
#, php-format
|
687 |
+
msgid "Preview “%s”"
|
688 |
+
msgstr "Podgląd “%s”"
|
689 |
+
|
690 |
+
#: bws_menu.php:863
|
691 |
+
#, php-format
|
692 |
+
msgid "Install %s"
|
693 |
+
msgstr "Instaluj %s"
|
694 |
+
|
695 |
+
#: bws_menu.php:863
|
696 |
+
msgid "Install Now"
|
697 |
+
msgstr "Instaluj teraz"
|
698 |
+
|
699 |
+
#: bws_menu.php:866
|
700 |
+
#, php-format
|
701 |
+
msgid "Update to version %s"
|
702 |
+
msgstr "Aktualizuj do wersji %s"
|
703 |
+
|
704 |
+
#: bws_menu.php:866
|
705 |
+
msgid "Update"
|
706 |
+
msgstr "Aktualizuj"
|
707 |
+
|
708 |
+
#: bws_menu.php:873
|
709 |
+
#, php-format
|
710 |
+
msgid "Preview %s"
|
711 |
+
msgstr "Podgląd %s"
|
712 |
+
|
713 |
+
#: bws_menu.php:873
|
714 |
+
msgid "Preview"
|
715 |
+
msgstr "Podgląd"
|
716 |
+
|
717 |
+
#: bws_menu.php:879 bws_menu.php:911
|
718 |
+
#, php-format
|
719 |
+
msgid "By %s"
|
720 |
+
msgstr "Od %s"
|
721 |
+
|
722 |
+
#: bws_menu.php:885
|
723 |
+
msgid "Details"
|
724 |
+
msgstr "Szczegóły"
|
725 |
+
|
726 |
+
#: bws_menu.php:917
|
727 |
+
msgid "Already Installed"
|
728 |
+
msgstr "Zainstalowane"
|
729 |
+
|
730 |
+
#: bws_menu.php:933
|
731 |
+
msgid "Environment"
|
732 |
+
msgstr "Środowisko"
|
733 |
+
|
734 |
+
#: bws_menu.php:944
|
735 |
+
msgid "Active Plugins"
|
736 |
+
msgstr "Aktywne wtyczki"
|
737 |
+
|
738 |
+
#: bws_menu.php:957
|
739 |
+
msgid "Inactive Plugins"
|
740 |
+
msgstr "Nieaktywne wtyczki"
|
741 |
+
|
742 |
+
#: bws_menu.php:973
|
743 |
+
msgid "Send to support"
|
744 |
+
msgstr "Wyślij do supportu"
|
745 |
+
|
746 |
+
#: bws_menu.php:980
|
747 |
+
msgid "Send to custom email »"
|
748 |
+
msgstr "Prześlij na własny adres »"
|
749 |
+
|
750 |
+
#~ msgid "Pro plugins"
|
751 |
+
#~ msgstr "Pro Plugins"
|
752 |
+
|
753 |
+
#~ msgid "Activated plugins"
|
754 |
+
#~ msgstr "有効なプラグイン"
|
755 |
+
|
756 |
+
#~ msgid "Read more"
|
757 |
+
#~ msgstr "もっと読む"
|
758 |
+
|
759 |
+
#~ msgid "Purchase"
|
760 |
+
#~ msgstr "購入"
|
761 |
+
|
762 |
+
#~ msgid "Free plugins"
|
763 |
+
#~ msgstr "無料プラグイン"
|
764 |
+
|
765 |
+
#~ msgid "Download"
|
766 |
+
#~ msgstr "ダウンロード"
|
767 |
+
|
768 |
+
#~ msgid "Install now from wordpress.org"
|
769 |
+
#~ msgstr "wordpress.org から直ぐに導入"
|
770 |
+
|
771 |
+
#, fuzzy
|
772 |
+
#~ msgid "Activated theme"
|
773 |
+
#~ msgstr "有効なテーマ"
|
774 |
+
|
775 |
+
#, fuzzy
|
776 |
+
#~ msgid "Installed themes"
|
777 |
+
#~ msgstr "%s 導入"
|
778 |
+
|
779 |
+
#, fuzzy
|
780 |
+
#~ msgid "Recommended themes"
|
781 |
+
#~ msgstr "推奨プラグイン"
|
782 |
+
|
783 |
+
#, fuzzy
|
784 |
+
#~ msgid "installed"
|
785 |
+
#~ msgstr "%s 導入"
|
786 |
+
|
787 |
+
#~ msgid "Contact Form"
|
788 |
+
#~ msgstr "コンタクトフォーム"
|
789 |
+
|
790 |
+
#~ msgid "Contact Form Pro Extra Settings"
|
791 |
+
#~ msgstr "Contact Form Pro 用設定"
|
792 |
+
|
793 |
+
#~ msgid "Contact Form Pro"
|
794 |
+
#~ msgstr "Contact Form Pro"
|
795 |
+
|
796 |
+
#~ msgid "Name:"
|
797 |
+
#~ msgstr "名前:"
|
798 |
+
|
799 |
+
#~ msgid "Address:"
|
800 |
+
#~ msgstr "住所:"
|
801 |
+
|
802 |
+
#~ msgid "Email Address:"
|
803 |
+
#~ msgstr "Eメール:"
|
804 |
+
|
805 |
+
#~ msgid "Phone number:"
|
806 |
+
#~ msgstr "電話番号:"
|
807 |
+
|
808 |
+
#~ msgid "Subject:"
|
809 |
+
#~ msgstr "件名:"
|
810 |
+
|
811 |
+
#~ msgid "Message:"
|
812 |
+
#~ msgstr "メッセージ:"
|
813 |
+
|
814 |
+
#~ msgid "Attachment:"
|
815 |
+
#~ msgstr "添付:"
|
816 |
+
|
817 |
+
#~ msgid "Send me a copy"
|
818 |
+
#~ msgstr "コピーを自分に送る"
|
819 |
+
|
820 |
+
#~ msgid "Submit"
|
821 |
+
#~ msgstr "送信"
|
822 |
+
|
823 |
+
#~ msgid "Your name is required."
|
824 |
+
#~ msgstr "名前は必須です。"
|
825 |
+
|
826 |
+
#~ msgid "Address is required."
|
827 |
+
#~ msgstr "住所が必要です。"
|
828 |
+
|
829 |
+
#~ msgid "A valid email address is required."
|
830 |
+
#~ msgstr "有効なEメールアドレスlが必須です。"
|
831 |
+
|
832 |
+
#~ msgid "Phone number is required."
|
833 |
+
#~ msgstr "電話番号は必須です。"
|
834 |
+
|
835 |
+
#~ msgid "Subject is required."
|
836 |
+
#~ msgstr "件名は必須です。"
|
837 |
+
|
838 |
+
#~ msgid "Message text is required."
|
839 |
+
#~ msgstr "メッセージ本文は必須です。"
|
840 |
+
|
841 |
+
#~ msgid "File format is not valid."
|
842 |
+
#~ msgstr "添付が壊れています。"
|
843 |
+
|
844 |
+
#~ msgid "File upload error."
|
845 |
+
#~ msgstr "ファイル・アップロード・エラー。"
|
846 |
+
|
847 |
+
#~ msgid "The file could not be uploaded."
|
848 |
+
#~ msgstr "ファイルは、アップロード出来ませんでした。"
|
849 |
+
|
850 |
+
#~ msgid "This file is too large."
|
851 |
+
#~ msgstr "このファイルは大きすぎます。"
|
852 |
+
|
853 |
+
#~ msgid "Please fill out the CAPTCHA."
|
854 |
+
#~ msgstr "CAPTCHAを入力して下さい。"
|
855 |
+
|
856 |
+
#~ msgid "Please make corrections below and try again."
|
857 |
+
#~ msgstr "以下を修正し、再度試して下さい。"
|
858 |
+
|
859 |
+
#~ msgid ""
|
860 |
+
#~ "If the 'Redirect to page' option is selected then the URL field should be "
|
861 |
+
#~ "in the following format"
|
862 |
+
#~ msgstr ""
|
863 |
+
#~ "’ページに転送’オプションを選択した場合は、URLフィールドが、以下の形式にな"
|
864 |
+
#~ "ります"
|
865 |
+
|
866 |
+
#~ msgid "Such user does not exist. Settings are not saved."
|
867 |
+
#~ msgstr "このようなユーザは存在しません。設定は保存されません。"
|
868 |
+
|
869 |
+
#~ msgid ""
|
870 |
+
#~ "Please enter a valid email address in the 'FROM' field. Settings are not "
|
871 |
+
#~ "saved."
|
872 |
+
#~ msgstr ""
|
873 |
+
#~ "'送信者'フィールドに正確なEメール・アドレスを入力して下さい。設定は保存さ"
|
874 |
+
#~ "れません。"
|
875 |
+
|
876 |
+
#~ msgid "Settings saved."
|
877 |
+
#~ msgstr "設定保存."
|
878 |
+
|
879 |
+
#~ msgid ""
|
880 |
+
#~ "If you would like to add the Contact Form to your website, just copy and "
|
881 |
+
#~ "paste this shortcode to your post or page or widget:"
|
882 |
+
#~ msgstr ""
|
883 |
+
#~ "コンタクトフォームをあなたのサイトに追加したい場合は、このショートカットを"
|
884 |
+
#~ "投稿、ページ又はウェジットにコピーして貼り付けるだけです:"
|
885 |
+
|
886 |
+
#~ msgid ""
|
887 |
+
#~ "If have any problems with the standard shortcode [contact_form], you "
|
888 |
+
#~ "should use the shortcode"
|
889 |
+
#~ msgstr ""
|
890 |
+
#~ "標準的な短いコード [contact_form]に問題がある場合は、この短いコードをご利"
|
891 |
+
#~ "用下さい"
|
892 |
+
|
893 |
+
#~ msgid "They work the same way."
|
894 |
+
#~ msgstr "同様に動作します。"
|
895 |
+
|
896 |
+
#~ msgid ""
|
897 |
+
#~ "If you leave the fields empty, the messages will be sent to the email "
|
898 |
+
#~ "address specified during registration."
|
899 |
+
#~ msgstr ""
|
900 |
+
#~ "以下の項目の情報が空欄の場合、登録の際に記述したアドレスにメッセージが送ら"
|
901 |
+
#~ "れます。"
|
902 |
+
|
903 |
+
#~ msgid "The user's email address:"
|
904 |
+
#~ msgstr "wordpressユーザのemailを利用r:"
|
905 |
+
|
906 |
+
#~ msgid "Create a username"
|
907 |
+
#~ msgstr "ユーザ名の選択"
|
908 |
+
|
909 |
+
#~ msgid ""
|
910 |
+
#~ "Enter a username of the person who should get the messages from the "
|
911 |
+
#~ "contact form."
|
912 |
+
#~ msgstr "コンタクトフォームからメッセージを受け取る方のユーザ名を入力。"
|
913 |
+
|
914 |
+
#~ msgid "Use this email address:"
|
915 |
+
#~ msgstr "このemailを利用:"
|
916 |
+
|
917 |
+
#~ msgid "Enter the email address you want the messages forwarded to."
|
918 |
+
#~ msgstr "メッセージ受信用のemailを設定。"
|
919 |
+
|
920 |
+
#~ msgid "Additional options"
|
921 |
+
#~ msgstr "追加オプション"
|
922 |
+
|
923 |
+
#~ msgid "What to use?"
|
924 |
+
#~ msgstr "何用途?"
|
925 |
+
|
926 |
+
#~ msgid "Wp-mail"
|
927 |
+
#~ msgstr "WPメール"
|
928 |
+
|
929 |
+
#~ msgid "You can use the wp_mail function for mailing"
|
930 |
+
#~ msgstr "メールにwp_mali機能が利用できます"
|
931 |
+
|
932 |
+
#~ msgid "Mail"
|
933 |
+
#~ msgstr "メール"
|
934 |
+
|
935 |
+
#~ msgid "To send mail you can use the php mail function"
|
936 |
+
#~ msgstr "メールを送信するには、phpメール機能が利用できます"
|
937 |
+
|
938 |
+
#~ msgid "Change text of the 'FROM' field"
|
939 |
+
#~ msgstr "'送信者' フィールドのテキストを変更"
|
940 |
+
|
941 |
+
#~ msgid "Enter the email address in the 'From' field"
|
942 |
+
#~ msgstr "'送信者' フィールドにメールアドレスを入力して下さい"
|
943 |
+
|
944 |
+
#~ msgid "User email"
|
945 |
+
#~ msgstr "ユーザ・Eメール"
|
946 |
+
|
947 |
+
#~ msgid ""
|
948 |
+
#~ "The email address of the user who fills the form will be used in the "
|
949 |
+
#~ "field 'From'."
|
950 |
+
#~ msgstr ""
|
951 |
+
#~ "フォームを入力したユーザのEメール・アドレスは、'送信者'フィールドに使用さ"
|
952 |
+
#~ "れます。"
|
953 |
+
|
954 |
+
#~ msgid "This email address will be used in the 'From' field."
|
955 |
+
#~ msgstr "このEメール・アドレスは、'送信者'フィールドに使用されます。"
|
956 |
+
|
957 |
+
#~ msgid "Display fields"
|
958 |
+
#~ msgstr "フィールドを表示"
|
959 |
+
|
960 |
+
#~ msgid "Address"
|
961 |
+
#~ msgstr "住所"
|
962 |
+
|
963 |
+
#~ msgid "Phone"
|
964 |
+
#~ msgstr "電話"
|
965 |
+
|
966 |
+
#~ msgid "Attachment block"
|
967 |
+
#~ msgstr "添付ブロック"
|
968 |
+
|
969 |
+
#~ msgid "Users can attach the following file formats"
|
970 |
+
#~ msgstr "ユーザは、以下のタイプのファイルを添付できる"
|
971 |
+
|
972 |
+
#~ msgid "Captcha"
|
973 |
+
#~ msgstr "Captcha"
|
974 |
+
|
975 |
+
#~ msgid "(powered by bestwebsoft.com)"
|
976 |
+
#~ msgstr "(powered by bestwebsoft.com)"
|
977 |
+
|
978 |
+
#~ msgid "Download captcha"
|
979 |
+
#~ msgstr "captchaをダウンロード"
|
980 |
+
|
981 |
+
#, fuzzy
|
982 |
+
#~ msgid "Display tips below the Attachment block"
|
983 |
+
#~ msgstr "添付ブロックの下のチップス"
|
984 |
+
|
985 |
+
#, fuzzy
|
986 |
+
#~ msgid "Display 'Send me a copy' block"
|
987 |
+
#~ msgstr "コピーブロックを自分に送る"
|
988 |
+
|
989 |
+
#~ msgid "Name"
|
990 |
+
#~ msgstr "名前"
|
991 |
+
|
992 |
+
#~ msgid "Email Address"
|
993 |
+
#~ msgstr "Eメール・アドレス"
|
994 |
+
|
995 |
+
#~ msgid "Subject"
|
996 |
+
#~ msgstr "件名"
|
997 |
+
|
998 |
+
#~ msgid "Message"
|
999 |
+
#~ msgstr "メッセージ"
|
1000 |
+
|
1001 |
+
#~ msgid "Display additional info in the email"
|
1002 |
+
#~ msgstr "メール中に追加情報を表示"
|
1003 |
+
|
1004 |
+
#~ msgid "Sent from (ip address)"
|
1005 |
+
#~ msgstr "(IP-Adresse)から送られた"
|
1006 |
+
|
1007 |
+
#, fuzzy
|
1008 |
+
#~ msgid "Example: Sent from (IP address):\t127.0.0.1"
|
1009 |
+
#~ msgstr "(IP-Adresse)から送られた"
|
1010 |
+
|
1011 |
+
#~ msgid "Date/Time"
|
1012 |
+
#~ msgstr "日時"
|
1013 |
+
|
1014 |
+
#~ msgid "Sent from (referer)"
|
1015 |
+
#~ msgstr "(referer)から送られている"
|
1016 |
+
|
1017 |
+
#~ msgid "Using (user agent)"
|
1018 |
+
#~ msgstr "(user agent)使用"
|
1019 |
+
|
1020 |
+
#~ msgid "Language settings for the field names in the form"
|
1021 |
+
#~ msgstr "フォームのフィールド名用の言語設定"
|
1022 |
+
|
1023 |
+
#~ msgid "Add a language"
|
1024 |
+
#~ msgstr "言語の追加"
|
1025 |
+
|
1026 |
+
#~ msgid "Change the names of the contact form fields and error messages"
|
1027 |
+
#~ msgstr "コンタクト・フォームのフィールドの名前及びエラーメッセージを変更"
|
1028 |
+
|
1029 |
+
#~ msgid "English"
|
1030 |
+
#~ msgstr "英語"
|
1031 |
+
|
1032 |
+
#~ msgid "Error message for the Name field"
|
1033 |
+
#~ msgstr "名前フィールド用のエラーメッセージ"
|
1034 |
+
|
1035 |
+
#~ msgid "Error message for the Address field"
|
1036 |
+
#~ msgstr "住所フィールド用のエラーメッセージ"
|
1037 |
+
|
1038 |
+
#~ msgid "Error message for the Email field"
|
1039 |
+
#~ msgstr "Eメール・フィールド用のエラーメッセージ"
|
1040 |
+
|
1041 |
+
#~ msgid "Error message for the Phone field"
|
1042 |
+
#~ msgstr "電話フィールド用のエラーメッセージ"
|
1043 |
+
|
1044 |
+
#~ msgid "Error message for the Subject field"
|
1045 |
+
#~ msgstr "件名フィールド用のエラーメッセージ"
|
1046 |
+
|
1047 |
+
#~ msgid "Error message for the Message field"
|
1048 |
+
#~ msgstr "メッセージ・フィールド用のエラーメッセージ"
|
1049 |
+
|
1050 |
+
#~ msgid "Error message about the file type for the Attachment field"
|
1051 |
+
#~ msgstr "添付フィールド用の拡張子タイプに関するエラーメッセージ"
|
1052 |
+
|
1053 |
+
#~ msgid ""
|
1054 |
+
#~ "Error message while uploading a file for the Attachment field to the "
|
1055 |
+
#~ "server"
|
1056 |
+
#~ msgstr ""
|
1057 |
+
#~ "添付フィールド用のファイルをサーバにアップロード中のエラーメッセージ"
|
1058 |
+
|
1059 |
+
#~ msgid "Error message while moving the file for the Attachment field"
|
1060 |
+
#~ msgstr "添付フィールド用のファイルを移動中のエラーメッセージ"
|
1061 |
+
|
1062 |
+
#~ msgid ""
|
1063 |
+
#~ "Error message when file size limit for the Attachment field is exceeded"
|
1064 |
+
#~ msgstr "添付フィールド用のファイルサイズ制限を超した場合のエラーメッセージ"
|
1065 |
+
|
1066 |
+
#~ msgid "Error message for the Captcha field"
|
1067 |
+
#~ msgstr "Captcha フィールド用のエラーメッセージ"
|
1068 |
+
|
1069 |
+
#~ msgid "Error message for the whole form"
|
1070 |
+
#~ msgstr "全体フォーム用のエラーメッセージ"
|
1071 |
+
|
1072 |
+
#~ msgid "for this language"
|
1073 |
+
#~ msgstr "この言語用"
|
1074 |
+
|
1075 |
+
#~ msgid "Action after email is sent"
|
1076 |
+
#~ msgstr "メール送信後の行動"
|
1077 |
+
|
1078 |
+
#~ msgid "Display text"
|
1079 |
+
#~ msgstr "テキストを表示"
|
1080 |
+
|
1081 |
+
#~ msgid "Text"
|
1082 |
+
#~ msgstr "文字"
|
1083 |
+
|
1084 |
+
#~ msgid "Redirect to the page"
|
1085 |
+
#~ msgstr "ページに転送"
|
1086 |
+
|
1087 |
+
#~ msgid "Url"
|
1088 |
+
#~ msgstr "Url"
|
1089 |
+
|
1090 |
+
#~ msgid "Contact Form Pro | Extra Settings"
|
1091 |
+
#~ msgstr "Contact Form Pro | 追加設定"
|
1092 |
+
|
1093 |
+
#~ msgid ""
|
1094 |
+
#~ "This functionality is available in the Pro version of the plugin. For "
|
1095 |
+
#~ "more details, please follow the link"
|
1096 |
+
#~ msgstr ""
|
1097 |
+
#~ "この機能は、プラグインのProバージョンで利用できます。詳細は、リンクを参照"
|
1098 |
+
#~ "して下さい。"
|
1099 |
+
|
1100 |
+
#~ msgid "Errors output"
|
1101 |
+
#~ msgstr "エラー出力"
|
1102 |
+
|
1103 |
+
#~ msgid "Display error messages"
|
1104 |
+
#~ msgstr "エラーメッセージの表示"
|
1105 |
+
|
1106 |
+
#~ msgid "Color of the input field errors."
|
1107 |
+
#~ msgstr "入力フィールド・エラーの色"
|
1108 |
+
|
1109 |
+
#~ msgid "Display error messages & color of the input field errors"
|
1110 |
+
#~ msgstr "エラーメッセージと入力フィールド・エラーの色を表示"
|
1111 |
+
|
1112 |
+
#~ msgid "Add placeholder to the input blocks"
|
1113 |
+
#~ msgstr "プレースホルダーを入力ブロックに追加"
|
1114 |
+
|
1115 |
+
#~ msgid "Add tooltips"
|
1116 |
+
#~ msgstr "ツールチップの追加"
|
1117 |
+
|
1118 |
+
#~ msgid "Email address"
|
1119 |
+
#~ msgstr "Eメール・アドレス"
|
1120 |
+
|
1121 |
+
#~ msgid "Phone Number"
|
1122 |
+
#~ msgstr "電話番号"
|
1123 |
+
|
1124 |
+
#~ msgid "Attachment"
|
1125 |
+
#~ msgstr "添付"
|
1126 |
+
|
1127 |
+
#~ msgid "Style options"
|
1128 |
+
#~ msgstr "スタイル・オプション"
|
1129 |
+
|
1130 |
+
#~ msgid "Text color"
|
1131 |
+
#~ msgstr "文字色"
|
1132 |
+
|
1133 |
+
#~ msgid "Default"
|
1134 |
+
#~ msgstr "標準"
|
1135 |
+
|
1136 |
+
#~ msgid "Label text color"
|
1137 |
+
#~ msgstr "ラベル文字色"
|
1138 |
+
|
1139 |
+
#~ msgid "Placeholder color"
|
1140 |
+
#~ msgstr "プレースホルダ色"
|
1141 |
+
|
1142 |
+
#~ msgid "Errors color"
|
1143 |
+
#~ msgstr "エラーの色"
|
1144 |
+
|
1145 |
+
#~ msgid "Error text color"
|
1146 |
+
#~ msgstr "エラーテキストの色"
|
1147 |
+
|
1148 |
+
#~ msgid "Background color of the input field errors"
|
1149 |
+
#~ msgstr "入力フィールド・エラーの背景色"
|
1150 |
+
|
1151 |
+
#~ msgid "Border color of the input field errors"
|
1152 |
+
#~ msgstr "入力フィールド・エラーの罫線色"
|
1153 |
+
|
1154 |
+
#~ msgid "Placeholder color of the input field errors"
|
1155 |
+
#~ msgstr "入力フィールド・エラー用のプレースホルダ色"
|
1156 |
+
|
1157 |
+
#~ msgid "Input fields"
|
1158 |
+
#~ msgstr "フィールドを入力"
|
1159 |
+
|
1160 |
+
#~ msgid "Input fields background color"
|
1161 |
+
#~ msgstr "フィールドの背景色の入力"
|
1162 |
+
|
1163 |
+
#~ msgid "Text fields color"
|
1164 |
+
#~ msgstr "文字フィールド色"
|
1165 |
+
|
1166 |
+
#~ msgid "Border width in px, numbers only"
|
1167 |
+
#~ msgstr "罫線幅(px単位)、数値のみ"
|
1168 |
+
|
1169 |
+
#~ msgid "Border color"
|
1170 |
+
#~ msgstr "罫線色"
|
1171 |
+
|
1172 |
+
#~ msgid "Width in px, numbers only"
|
1173 |
+
#~ msgstr "px単位の幅、数字のみ"
|
1174 |
+
|
1175 |
+
#~ msgid "Button color"
|
1176 |
+
#~ msgstr "ボタンの色"
|
1177 |
+
|
1178 |
+
#~ msgid "Button text color"
|
1179 |
+
#~ msgstr "ボタン文字の色"
|
1180 |
+
|
1181 |
+
#~ msgid "Contact Form Pro | Preview"
|
1182 |
+
#~ msgstr "Contact Form Pro | プレビュー"
|
1183 |
+
|
1184 |
+
#~ msgid "Show with errors"
|
1185 |
+
#~ msgstr "エラーで表示"
|
1186 |
+
|
1187 |
+
#~ msgid "Please enter your full name..."
|
1188 |
+
#~ msgstr "貴方の氏名を入力して下さい..."
|
1189 |
+
|
1190 |
+
#~ msgid "Please enter your address..."
|
1191 |
+
#~ msgstr "貴方の住所を入力して下さい..."
|
1192 |
+
|
1193 |
+
#~ msgid "Please enter your email address..."
|
1194 |
+
#~ msgstr "貴方のEメール・アドレスを入力して下さい..."
|
1195 |
+
|
1196 |
+
#~ msgid "Please enter your phone number..."
|
1197 |
+
#~ msgstr "貴方の電話番号を入力して下さい..."
|
1198 |
+
|
1199 |
+
#~ msgid "Please enter subject..."
|
1200 |
+
#~ msgstr "件名を入力して下さい..."
|
1201 |
+
|
1202 |
+
#~ msgid ""
|
1203 |
+
#~ "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
|
1204 |
+
#~ "EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file "
|
1205 |
+
#~ "size: 2MB"
|
1206 |
+
#~ msgstr ""
|
1207 |
+
#~ "サポートしてるファイル形式: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, "
|
1208 |
+
#~ "BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. 最大"
|
1209 |
+
#~ "ファイルサイズ: 2MB"
|
1210 |
+
|
1211 |
+
#~ msgid "You can attach the following file formats"
|
1212 |
+
#~ msgstr "貴方は、以下のタイプのファイルを添付できます"
|
1213 |
+
|
1214 |
+
#~ msgid "Contact from"
|
1215 |
+
#~ msgstr "コンタクトフォーム"
|
1216 |
+
|
1217 |
+
#~ msgid "Email"
|
1218 |
+
#~ msgstr "Eメール"
|
1219 |
+
|
1220 |
+
#~ msgid "Site"
|
1221 |
+
#~ msgstr "サイト"
|
1222 |
+
|
1223 |
+
#~ msgid ""
|
1224 |
+
#~ "If you can see this MIME, it means that the MIME type is not supported by "
|
1225 |
+
#~ "your email client!"
|
1226 |
+
#~ msgstr ""
|
1227 |
+
#~ "このMIMEを見ている場合は、貴方のクライアントはMIMEタイプを読めません。"
|
1228 |
+
|
1229 |
+
#~ msgid "Support"
|
1230 |
+
#~ msgstr "サポート"
|
1231 |
+
|
1232 |
+
#~ msgid "Contact Form Options"
|
1233 |
+
#~ msgstr "コンタクトフォーム オプション"
|
1234 |
+
|
1235 |
+
#, fuzzy
|
1236 |
+
#~ msgid "Display Attachment tips"
|
1237 |
+
#~ msgstr "添付ブロックを表示"
|
1238 |
+
|
1239 |
+
#~ msgid "Please enter a valid email address. Settings are not saved."
|
1240 |
+
#~ msgstr "正確なemailを入力して下さい。設定は保存されません。"
|
1241 |
+
|
1242 |
+
#, fuzzy
|
1243 |
+
#~ msgid "E-Mail Address"
|
1244 |
+
#~ msgstr "E-Mail:"
|
1245 |
+
|
1246 |
+
#~ msgid "E-Mail Addresse:"
|
1247 |
+
#~ msgstr "Indirizzo e-mail:"
|
css/style.css
CHANGED
@@ -18,6 +18,7 @@
|
|
18 |
.fcbk_button a {
|
19 |
display: block;
|
20 |
border-bottom: 0px !important;
|
|
|
21 |
}
|
22 |
.fcbk_button a:hover {
|
23 |
opacity: 0.9;
|
18 |
.fcbk_button a {
|
19 |
display: block;
|
20 |
border-bottom: 0px !important;
|
21 |
+
box-shadow: none !important;
|
22 |
}
|
23 |
.fcbk_button a:hover {
|
24 |
opacity: 0.9;
|
facebook-button-plugin.php
CHANGED
@@ -6,12 +6,12 @@ Description: Put Facebook Button in to your post.
|
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: facebook-button-plugin
|
8 |
Domain Path: /languages
|
9 |
-
Version: 2.
|
10 |
Author URI: http://bestwebsoft.com/
|
11 |
License: GPLv2 or later
|
12 |
*/
|
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
|
@@ -198,9 +198,9 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
|
|
198 |
$fcbkbttn_options['width'] = intval( $_REQUEST['fcbkbttn_width'] );
|
199 |
$fcbkbttn_options['locale'] = $_REQUEST['fcbkbttn_locale'];
|
200 |
$fcbkbttn_options['html5'] = $_REQUEST['fcbkbttn_html5'];
|
201 |
-
if ( isset( $_FILES['
|
202 |
$fcbkbttn_options['count_icon'] = $fcbkbttn_options['count_icon'] + 1;
|
203 |
-
$file_ext = wp_check_filetype( $_FILES['
|
204 |
$fcbkbttn_options['extention'] = $file_ext['ext'];
|
205 |
}
|
206 |
|
@@ -213,7 +213,7 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
|
|
213 |
update_option( 'fcbk_bttn_plgn_options', $fcbkbttn_options );
|
214 |
$message = __( "Settings saved", 'facebook-button-plugin' );
|
215 |
|
216 |
-
if ( isset( $_FILES['
|
217 |
if ( ! $upload_dir["error"] ) {
|
218 |
$fcbkbttn_cstm_mg_folder = $upload_dir['basedir'] . '/facebook-image';
|
219 |
if ( ! is_dir( $fcbkbttn_cstm_mg_folder ) ) {
|
@@ -226,16 +226,16 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
|
|
226 |
$valid_types = array( 'jpg', 'jpeg', 'png' );
|
227 |
/* Construction to rename downloading file */
|
228 |
$new_name = 'facebook-ico' . $fcbkbttn_options['count_icon'];
|
229 |
-
$new_ext = wp_check_filetype( $_FILES['
|
230 |
$namefile = $new_name . '.' . $new_ext['ext'];
|
231 |
$uploadfile = $fcbkbttn_cstm_mg_folder . '/' . $namefile;
|
232 |
|
233 |
/* Checks is file download initiated by user */
|
234 |
-
if ( isset( $_FILES['
|
235 |
/* Checking is allowed download file given parameters */
|
236 |
-
if ( is_uploaded_file( $_FILES['
|
237 |
-
$filename = $_FILES['
|
238 |
-
$ext = substr( $_FILES['
|
239 |
if ( filesize( $filename ) > $max_image_size ) {
|
240 |
$error = __( "Error: File size > 32K", 'facebook-button-plugin' );
|
241 |
}
|
@@ -245,7 +245,7 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
|
|
245 |
$size = GetImageSize( $filename );
|
246 |
if ( $size && $size[0] <= $max_image_width && $size[1] <= $max_image_height ) {
|
247 |
/* If file satisfies requirements, we will move them from temp to your plugin folder and rename to 'facebook_ico.jpg' */
|
248 |
-
if ( move_uploaded_file( $_FILES['
|
249 |
$message .= '. ' . __( "Upload successful.", 'facebook-button-plugin' );
|
250 |
|
251 |
if ( 'standard' == $fcbkbttn_options['display_option'] ) {
|
@@ -296,11 +296,11 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
|
|
296 |
<a class="nav-tab bws_go_pro_tab<?php if ( isset( $_GET['action'] ) && 'go_pro' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=facebook-button-plugin.php&action=go_pro"><?php _e( 'Go PRO', 'facebook-button-plugin' ); ?></a>
|
297 |
</h2>
|
298 |
<!-- end general -->
|
299 |
-
<noscript><div class="error"><p><strong><?php _e( "Please, enable JavaScript in Your browser.", 'facebook-button-plugin' ); ?></strong></p></div></noscript>
|
300 |
-
<div class="updated fade" <?php if ( empty( $message ) || "" != $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
|
301 |
-
<div class="error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
|
302 |
<?php if ( ! empty( $hide_result['message'] ) ) { ?>
|
303 |
-
<div class="updated fade"><p><strong><?php echo $hide_result['message']; ?></strong></p></div>
|
304 |
<?php }
|
305 |
bws_show_settings_notice();
|
306 |
/*## check action */
|
@@ -385,6 +385,66 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
|
|
385 |
<input name='fcbkbttn_display_for_excerpt' type='checkbox' value='1' <?php if ( 1 == $fcbkbttn_options['display_for_excerpt'] ) echo 'checked="checked "'; ?>/>
|
386 |
</td>
|
387 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
388 |
<tr id="fcbkbttn_id_option" class="fcbkbttn_my_page" <?php if ( 1 != $fcbkbttn_options['my_page'] ) echo 'style="display:none"'; ?>>
|
389 |
<th scope="row"><?php _e( 'Your Facebook ID or username', 'facebook-button-plugin' ); ?></th>
|
390 |
<td>
|
@@ -416,7 +476,7 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
|
|
416 |
<tr class="fcbkbttn_my_page" id="fcbkbttn_display_option_custom" <?php if ( ! ( 1 == $fcbkbttn_options['my_page'] && 'custom' == $fcbkbttn_options['display_option'] ) ) echo 'style="display:none"'; ?>>
|
417 |
<th></th>
|
418 |
<td>
|
419 |
-
<input name="
|
420 |
<span class="bws_info"><?php _e( 'Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:"jpg", "jpeg", "png".', 'facebook-button-plugin' ); ?></span>
|
421 |
</td>
|
422 |
</tr>
|
@@ -641,6 +701,10 @@ if ( ! function_exists( 'fcbkbttn_button' ) ) {
|
|
641 |
/* Function taking from array 'fcbk_bttn_plgn_options' necessary information to create Facebook Button and reacting to your choise in plugin menu - points where it appears. */
|
642 |
if ( ! function_exists( 'fcbkbttn_display_button' ) ) {
|
643 |
function fcbkbttn_display_button( $content ) {
|
|
|
|
|
|
|
|
|
644 |
global $fcbkbttn_options;
|
645 |
/* Query the database to receive array 'fcbk_bttn_plgn_options' and receiving necessary information to create button */
|
646 |
$fcbkbttn_where = $fcbkbttn_options['where'];
|
@@ -702,7 +766,7 @@ if ( ! function_exists( 'fcbkbttn_shortcode_button_content' ) ) {
|
|
702 |
if ( ! function_exists( 'fcbkbttn_meta' ) ) {
|
703 |
function fcbkbttn_meta() {
|
704 |
global $fcbkbttn_options;
|
705 |
-
if ( 1 == $fcbkbttn_options['like'] ) {
|
706 |
if ( is_singular() ) {
|
707 |
$image = '';
|
708 |
if ( has_post_thumbnail( get_the_ID() ) ) {
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: facebook-button-plugin
|
8 |
Domain Path: /languages
|
9 |
+
Version: 2.47
|
10 |
Author URI: http://bestwebsoft.com/
|
11 |
License: GPLv2 or later
|
12 |
*/
|
13 |
|
14 |
+
/* Copyright 2016 BestWebSoft ( http://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
|
198 |
$fcbkbttn_options['width'] = intval( $_REQUEST['fcbkbttn_width'] );
|
199 |
$fcbkbttn_options['locale'] = $_REQUEST['fcbkbttn_locale'];
|
200 |
$fcbkbttn_options['html5'] = $_REQUEST['fcbkbttn_html5'];
|
201 |
+
if ( isset( $_FILES['fcbkbttn_uploadfile']['tmp_name'] ) && $_FILES['fcbkbttn_uploadfile']['tmp_name'] != "" ) {
|
202 |
$fcbkbttn_options['count_icon'] = $fcbkbttn_options['count_icon'] + 1;
|
203 |
+
$file_ext = wp_check_filetype( $_FILES['fcbkbttn_uploadfile']['name'] );
|
204 |
$fcbkbttn_options['extention'] = $file_ext['ext'];
|
205 |
}
|
206 |
|
213 |
update_option( 'fcbk_bttn_plgn_options', $fcbkbttn_options );
|
214 |
$message = __( "Settings saved", 'facebook-button-plugin' );
|
215 |
|
216 |
+
if ( isset( $_FILES['fcbkbttn_uploadfile']['tmp_name'] ) && "" != $_FILES['fcbkbttn_uploadfile']['tmp_name'] ) {
|
217 |
if ( ! $upload_dir["error"] ) {
|
218 |
$fcbkbttn_cstm_mg_folder = $upload_dir['basedir'] . '/facebook-image';
|
219 |
if ( ! is_dir( $fcbkbttn_cstm_mg_folder ) ) {
|
226 |
$valid_types = array( 'jpg', 'jpeg', 'png' );
|
227 |
/* Construction to rename downloading file */
|
228 |
$new_name = 'facebook-ico' . $fcbkbttn_options['count_icon'];
|
229 |
+
$new_ext = wp_check_filetype( $_FILES['fcbkbttn_uploadfile']['name'] );
|
230 |
$namefile = $new_name . '.' . $new_ext['ext'];
|
231 |
$uploadfile = $fcbkbttn_cstm_mg_folder . '/' . $namefile;
|
232 |
|
233 |
/* Checks is file download initiated by user */
|
234 |
+
if ( isset( $_FILES['fcbkbttn_uploadfile'] ) && 'custom' == $_REQUEST['fcbkbttn_display_option'] ) {
|
235 |
/* Checking is allowed download file given parameters */
|
236 |
+
if ( is_uploaded_file( $_FILES['fcbkbttn_uploadfile']['tmp_name'] ) ) {
|
237 |
+
$filename = $_FILES['fcbkbttn_uploadfile']['tmp_name'];
|
238 |
+
$ext = substr( $_FILES['fcbkbttn_uploadfile']['name'], 1 + strrpos( $_FILES['fcbkbttn_uploadfile']['name'], '.' ) );
|
239 |
if ( filesize( $filename ) > $max_image_size ) {
|
240 |
$error = __( "Error: File size > 32K", 'facebook-button-plugin' );
|
241 |
}
|
245 |
$size = GetImageSize( $filename );
|
246 |
if ( $size && $size[0] <= $max_image_width && $size[1] <= $max_image_height ) {
|
247 |
/* If file satisfies requirements, we will move them from temp to your plugin folder and rename to 'facebook_ico.jpg' */
|
248 |
+
if ( move_uploaded_file( $_FILES['fcbkbttn_uploadfile']['tmp_name'], $uploadfile ) ) {
|
249 |
$message .= '. ' . __( "Upload successful.", 'facebook-button-plugin' );
|
250 |
|
251 |
if ( 'standard' == $fcbkbttn_options['display_option'] ) {
|
296 |
<a class="nav-tab bws_go_pro_tab<?php if ( isset( $_GET['action'] ) && 'go_pro' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=facebook-button-plugin.php&action=go_pro"><?php _e( 'Go PRO', 'facebook-button-plugin' ); ?></a>
|
297 |
</h2>
|
298 |
<!-- end general -->
|
299 |
+
<noscript><div class="error below-h2"><p><strong><?php _e( "Please, enable JavaScript in Your browser.", 'facebook-button-plugin' ); ?></strong></p></div></noscript>
|
300 |
+
<div class="updated fade below-h2" <?php if ( empty( $message ) || "" != $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
|
301 |
+
<div class="error below-h2" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
|
302 |
<?php if ( ! empty( $hide_result['message'] ) ) { ?>
|
303 |
+
<div class="updated fade below-h2"><p><strong><?php echo $hide_result['message']; ?></strong></p></div>
|
304 |
<?php }
|
305 |
bws_show_settings_notice();
|
306 |
/*## check action */
|
385 |
<input name='fcbkbttn_display_for_excerpt' type='checkbox' value='1' <?php if ( 1 == $fcbkbttn_options['display_for_excerpt'] ) echo 'checked="checked "'; ?>/>
|
386 |
</td>
|
387 |
</tr>
|
388 |
+
</table>
|
389 |
+
<!-- general -->
|
390 |
+
<?php if ( ! $bws_hide_premium_options_check ) { ?>
|
391 |
+
<div class="bws_pro_version_bloc">
|
392 |
+
<div class="bws_pro_version_table_bloc">
|
393 |
+
<button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php _e( 'Close', 'facebook-button-plugin' ); ?>"></button>
|
394 |
+
<div class="bws_table_bg"></div>
|
395 |
+
<table class="form-table bws_pro_version">
|
396 |
+
<tr>
|
397 |
+
<th><?php _e( 'Meta tags', 'facebook-button-plugin' ); ?></th>
|
398 |
+
<td>
|
399 |
+
<fieldset>
|
400 |
+
<legend style="font-weight: 600;"><?php _e( 'Image', 'facebook-button-plugin' ); ?></legend>
|
401 |
+
<label>
|
402 |
+
<input disabled="disabled" type="radio" name="fcbkbttn_meta_image" value="featured_image" checked="checked" />
|
403 |
+
<?php _e( 'Featured Image', 'facebook-button-plugin' ); ?>
|
404 |
+
</label><br />
|
405 |
+
<label>
|
406 |
+
<input disabled="disabled" type="radio" name="fcbkbttn_meta_image" value="custom_image" />
|
407 |
+
<?php _e( 'Custom Image', 'facebook-button-plugin' ); ?> <span class="bws_info">(<?php _e( 'This image will be used for all of the posts', 'facebook-button-plugin' ); ?>)</span>
|
408 |
+
</label><br />
|
409 |
+
<input disabled="disabled" name="fcbkbttn_meta_uploadfile" type="file" />
|
410 |
+
</fieldset>
|
411 |
+
</td>
|
412 |
+
</tr>
|
413 |
+
<tr>
|
414 |
+
<th></th>
|
415 |
+
<td>
|
416 |
+
<fieldset>
|
417 |
+
<legend style="font-weight: 600;"><?php _e( 'Description', 'facebook-button-plugin' ); ?></legend>
|
418 |
+
<label>
|
419 |
+
<input disabled="disabled" type="radio" name="fcbkbttn_meta_description" value="post_excerpt" />
|
420 |
+
<?php _e( 'Post excerpt', 'facebook-button-plugin' );?>
|
421 |
+
</label><br />
|
422 |
+
<label>
|
423 |
+
<input disabled="disabled" type="radio" name="fcbkbttn_meta_description" value="custom" checked="checked" />
|
424 |
+
<input disabled="disabled" type="text" name="fcbkbttn_meta_description_custom" value="" /><br />
|
425 |
+
<span class="bws_info"><?php _e( 'This description will be used for all of the posts', 'facebook-button-plugin' ); ?></span>
|
426 |
+
</label>
|
427 |
+
</fieldset>
|
428 |
+
</td>
|
429 |
+
</tr>
|
430 |
+
<tr>
|
431 |
+
<th scope="row" colspan="2">
|
432 |
+
* <?php _e( 'If you upgrade to Pro version all your settings will be saved.', 'facebook-button-plugin' ); ?>
|
433 |
+
</th>
|
434 |
+
</tr>
|
435 |
+
</table>
|
436 |
+
</div>
|
437 |
+
<div class="bws_pro_version_tooltip">
|
438 |
+
<div class="bws_info">
|
439 |
+
<?php _e( 'Unlock premium options by upgrading to Pro version', 'facebook-button-plugin' ); ?>
|
440 |
+
</div>
|
441 |
+
<a class="bws_button" href="http://bestwebsoft.com/products/facebook-like-button/?k=427287ceae749cbd015b4bba6041c4b8&pn=78&v=<?php echo $fcbkbttn_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Facebook Button Pro"><?php _e( 'Learn More', 'facebook-button-plugin' ); ?></a>
|
442 |
+
<div class="clear"></div>
|
443 |
+
</div>
|
444 |
+
</div>
|
445 |
+
<?php } ?>
|
446 |
+
<!-- end general -->
|
447 |
+
<table class="form-table">
|
448 |
<tr id="fcbkbttn_id_option" class="fcbkbttn_my_page" <?php if ( 1 != $fcbkbttn_options['my_page'] ) echo 'style="display:none"'; ?>>
|
449 |
<th scope="row"><?php _e( 'Your Facebook ID or username', 'facebook-button-plugin' ); ?></th>
|
450 |
<td>
|
476 |
<tr class="fcbkbttn_my_page" id="fcbkbttn_display_option_custom" <?php if ( ! ( 1 == $fcbkbttn_options['my_page'] && 'custom' == $fcbkbttn_options['display_option'] ) ) echo 'style="display:none"'; ?>>
|
477 |
<th></th>
|
478 |
<td>
|
479 |
+
<input name="fcbkbttn_uploadfile" type="file" /><br />
|
480 |
<span class="bws_info"><?php _e( 'Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:"jpg", "jpeg", "png".', 'facebook-button-plugin' ); ?></span>
|
481 |
</td>
|
482 |
</tr>
|
701 |
/* Function taking from array 'fcbk_bttn_plgn_options' necessary information to create Facebook Button and reacting to your choise in plugin menu - points where it appears. */
|
702 |
if ( ! function_exists( 'fcbkbttn_display_button' ) ) {
|
703 |
function fcbkbttn_display_button( $content ) {
|
704 |
+
|
705 |
+
if ( is_feed() )
|
706 |
+
return $content;
|
707 |
+
|
708 |
global $fcbkbttn_options;
|
709 |
/* Query the database to receive array 'fcbk_bttn_plgn_options' and receiving necessary information to create button */
|
710 |
$fcbkbttn_where = $fcbkbttn_options['where'];
|
766 |
if ( ! function_exists( 'fcbkbttn_meta' ) ) {
|
767 |
function fcbkbttn_meta() {
|
768 |
global $fcbkbttn_options;
|
769 |
+
if ( 1 == $fcbkbttn_options['like'] || 1 == $fcbkbttn_options['share'] ) {
|
770 |
if ( is_singular() ) {
|
771 |
$image = '';
|
772 |
if ( has_post_thumbnail( get_the_ID() ) ) {
|
languages/facebook-button-plugin-fi_FI.mo
CHANGED
Binary file
|
languages/facebook-button-plugin-fi_FI.po
CHANGED
@@ -2,9 +2,9 @@ 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: bestwebsoft.com <
|
8 |
"Language-Team: Juhani Honkanen <juhani.honkanen@dnainternet.net>\n"
|
9 |
"Language: fi_FI\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -13,286 +13,337 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit 1.
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: facebook-button-plugin.php:34
|
21 |
-
#: facebook-button-plugin.php:290
|
22 |
msgid "Facebook Button Settings"
|
23 |
msgstr "Facebook Napin asetukset"
|
24 |
|
25 |
-
#: facebook-button-plugin.php:
|
26 |
msgid "Settings saved"
|
27 |
msgstr "Asetukset tallennettu"
|
28 |
|
29 |
-
#: facebook-button-plugin.php:
|
30 |
msgid "Error: File size > 32K"
|
31 |
msgstr "Virhe: Tiedoston koko > 32K"
|
32 |
|
33 |
-
#: facebook-button-plugin.php:
|
34 |
msgid "Error: Invalid file type"
|
35 |
msgstr "Virhe: Väärä tiedostotyyppi"
|
36 |
|
37 |
-
#: facebook-button-plugin.php:
|
38 |
msgid "Upload successful."
|
39 |
msgstr "Lataaminen onnistui"
|
40 |
|
41 |
-
#: facebook-button-plugin.php:
|
42 |
msgid "Error: moving file failed"
|
43 |
msgstr "Virhe: tiedoston siirto epäonnistui"
|
44 |
|
45 |
-
#: facebook-button-plugin.php:
|
46 |
msgid "Error: check image width or height"
|
47 |
msgstr "Virhe: tarkista kuvan leveys tai korkeus"
|
48 |
|
49 |
-
#: facebook-button-plugin.php:
|
50 |
msgid "Uploading Error: check image properties"
|
51 |
msgstr "Virhe latauksessa: tarkista kuvan ominaisuudet"
|
52 |
|
53 |
-
#: facebook-button-plugin.php:
|
54 |
msgid "All plugin settings were restored."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: facebook-button-plugin.php:
|
58 |
-
#: facebook-button-plugin.php:
|
59 |
-
#: facebook-button-plugin.php:797
|
60 |
msgid "Settings"
|
61 |
msgstr "Asetukset"
|
62 |
|
63 |
-
#: facebook-button-plugin.php:
|
64 |
msgid "Extra settings"
|
65 |
msgstr "Lisää asetuksia"
|
66 |
|
67 |
-
#: facebook-button-plugin.php:
|
68 |
msgid "Go PRO"
|
69 |
msgstr "Hanki PRO versio"
|
70 |
|
71 |
-
#: facebook-button-plugin.php:
|
72 |
msgid "Please, enable JavaScript in Your browser."
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: facebook-button-plugin.php:
|
76 |
#, fuzzy, php-format
|
77 |
-
msgid "
|
78 |
-
|
|
|
|
|
|
|
|
|
79 |
|
80 |
-
#: facebook-button-plugin.php:
|
81 |
#, php-format
|
82 |
-
msgid "
|
|
|
|
|
|
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: facebook-button-plugin.php:
|
86 |
#, fuzzy
|
87 |
msgid "Display button"
|
88 |
msgstr "Näytä nappi:"
|
89 |
|
90 |
-
#: facebook-button-plugin.php:
|
91 |
msgid "My Page"
|
92 |
msgstr "Minun sivuni"
|
93 |
|
94 |
-
#: facebook-button-plugin.php:
|
95 |
-
#: facebook-button-plugin.php:438
|
96 |
msgid "Like"
|
97 |
msgstr "Tykkää"
|
98 |
|
99 |
-
#: facebook-button-plugin.php:
|
100 |
msgid "Share"
|
101 |
msgstr "Jaa"
|
102 |
|
103 |
-
#: facebook-button-plugin.php:
|
104 |
#, fuzzy
|
105 |
msgid "Facebook buttons position"
|
106 |
msgstr "Facebook napin paikka:"
|
107 |
|
108 |
-
#: facebook-button-plugin.php:
|
109 |
msgid "Before"
|
110 |
msgstr "Ennen"
|
111 |
|
112 |
-
#: facebook-button-plugin.php:
|
113 |
msgid "After"
|
114 |
msgstr "Jälkeen"
|
115 |
|
116 |
-
#: facebook-button-plugin.php:
|
117 |
msgid "Before and After"
|
118 |
msgstr "Ennen ja Jälkeen"
|
119 |
|
120 |
-
#: facebook-button-plugin.php:
|
121 |
msgid "Shortcode"
|
122 |
msgstr "Lyhytkoodi"
|
123 |
|
124 |
-
#: facebook-button-plugin.php:
|
125 |
#, fuzzy
|
126 |
msgid "Facebook buttons language"
|
127 |
msgstr "Facebook Napin kieli:"
|
128 |
|
129 |
-
#: facebook-button-plugin.php:
|
130 |
-
|
|
|
131 |
msgstr "Vaihda Facebook napin kieli"
|
132 |
|
133 |
-
#: facebook-button-plugin.php:
|
134 |
-
#: facebook-button-plugin.php:
|
135 |
-
#: facebook-button-plugin.php:372
|
136 |
msgid "Use the current site language"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: facebook-button-plugin.php:
|
140 |
-
#: facebook-button-plugin.php:
|
141 |
-
#: facebook-button-plugin.php:373
|
142 |
msgid "Using"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: facebook-button-plugin.php:
|
146 |
msgid "Activate"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: facebook-button-plugin.php:
|
150 |
msgid "Download"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: facebook-button-plugin.php:
|
154 |
#, fuzzy
|
155 |
msgid "Display buttons in excerpt"
|
156 |
msgstr "Näytä nappi:"
|
157 |
|
158 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
159 |
#, fuzzy
|
160 |
msgid "Your Facebook ID or username"
|
161 |
msgstr "Sinun Facebook ID:si tai käyttäjänimesi:"
|
162 |
|
163 |
-
#: facebook-button-plugin.php:
|
164 |
msgid "\"My page\" button image"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: facebook-button-plugin.php:
|
168 |
msgid "Standard Facebook image"
|
169 |
msgstr "Standardi Facebook kuva"
|
170 |
|
171 |
-
#: facebook-button-plugin.php:
|
172 |
msgid "Custom Facebook image"
|
173 |
msgstr "Mukautettu Fecabook kuva"
|
174 |
|
175 |
-
#: facebook-button-plugin.php:
|
176 |
-
msgid "
|
|
|
|
|
177 |
msgstr "Käyttääksesi mukautettua, kuva pitää voida ladata hakemistoosi"
|
178 |
|
179 |
-
#: facebook-button-plugin.php:
|
180 |
#, fuzzy
|
181 |
msgid "Current image"
|
182 |
msgstr "Nykyinen kuva:"
|
183 |
|
184 |
-
#: facebook-button-plugin.php:
|
185 |
-
msgid "
|
186 |
-
|
|
|
|
|
|
|
|
|
187 |
|
188 |
-
#: facebook-button-plugin.php:
|
189 |
msgid "Button layout"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: facebook-button-plugin.php:
|
193 |
msgid "Like button action"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: facebook-button-plugin.php:
|
197 |
msgid "Recommend"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: facebook-button-plugin.php:
|
201 |
msgid "Show faces"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: facebook-button-plugin.php:
|
205 |
msgid "Layout width"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: facebook-button-plugin.php:
|
209 |
msgid "Color scheme"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: facebook-button-plugin.php:
|
213 |
msgid "Light"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: facebook-button-plugin.php:
|
217 |
msgid "Dark"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: facebook-button-plugin.php:
|
221 |
#, fuzzy
|
222 |
msgid "Html tag for \"Like\" button"
|
223 |
msgstr "HTML tagi Tykkää Napille:"
|
224 |
|
225 |
-
#: facebook-button-plugin.php:
|
226 |
msgid "Use this tag to improve validation of your site"
|
227 |
msgstr "Käytä tätä tagia parantamaan sivusi näkyvyyttä"
|
228 |
|
229 |
-
#: facebook-button-plugin.php:
|
230 |
-
#: facebook-button-plugin.php:516
|
231 |
-
msgid "Close"
|
232 |
-
msgstr ""
|
233 |
-
|
234 |
-
#: facebook-button-plugin.php:483
|
235 |
msgid "\"Like\" for an entire site on every page:"
|
236 |
msgstr "\"Like\" koko sivustolle ja kaikille sivuille:"
|
237 |
|
238 |
-
#: facebook-button-plugin.php:
|
239 |
-
msgid "
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
#: facebook-button-plugin.php:574
|
250 |
-
#, fuzzy
|
251 |
-
msgid "Unlock premium options by upgrading to Pro version"
|
252 |
-
msgstr "Ota käyttöön premium valinnat päivittämällä PRO versioon."
|
253 |
-
|
254 |
-
#: facebook-button-plugin.php:499
|
255 |
-
#: facebook-button-plugin.php:527
|
256 |
-
#: facebook-button-plugin.php:576
|
257 |
-
msgid "Learn More"
|
258 |
-
msgstr "Lue Lisää"
|
259 |
|
260 |
-
#: facebook-button-plugin.php:
|
261 |
-
#: facebook-button-plugin.php:562
|
262 |
msgid "Save Changes"
|
263 |
msgstr "Tallenna muutokset"
|
264 |
|
265 |
-
#: facebook-button-plugin.php:
|
266 |
#, fuzzy
|
267 |
msgid "Facebook Button preview:"
|
268 |
msgstr "Facebook Nappi"
|
269 |
|
270 |
-
#: facebook-button-plugin.php:
|
271 |
-
msgid "
|
272 |
-
|
|
|
|
|
|
|
|
|
273 |
|
274 |
-
#: facebook-button-plugin.php:
|
275 |
msgid "Show URL for pages"
|
276 |
msgstr "Näytä URL sivuilla"
|
277 |
|
278 |
-
#: facebook-button-plugin.php:
|
279 |
msgid "Example of the site's pages tree"
|
280 |
msgstr "Esimerkki sivuston sivuhakemistosta"
|
281 |
|
282 |
-
#: facebook-button-plugin.php:
|
283 |
msgid "Example of site pages' tree"
|
284 |
msgstr "Esimerkki sivun sivuhakemistosta"
|
285 |
|
286 |
-
#: facebook-button-plugin.php:
|
287 |
#, fuzzy
|
288 |
msgid "Add Facebook buttons to your page or post"
|
289 |
msgstr "Facebook napin paikka:"
|
290 |
|
291 |
-
#: facebook-button-plugin.php:
|
292 |
msgid "FAQ"
|
293 |
msgstr "FAQ"
|
294 |
|
295 |
-
#: facebook-button-plugin.php:
|
296 |
msgid "Support"
|
297 |
msgstr "Tuki"
|
298 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-02-04 12:31+0300\n"
|
6 |
+
"PO-Revision-Date: 2016-02-04 12:31+0300\n"
|
7 |
+
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: Juhani Honkanen <juhani.honkanen@dnainternet.net>\n"
|
9 |
"Language: fi_FI\n"
|
10 |
"MIME-Version: 1.0\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 1.5.4\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: facebook-button-plugin.php:34 facebook-button-plugin.php:292
|
|
|
21 |
msgid "Facebook Button Settings"
|
22 |
msgstr "Facebook Napin asetukset"
|
23 |
|
24 |
+
#: facebook-button-plugin.php:214
|
25 |
msgid "Settings saved"
|
26 |
msgstr "Asetukset tallennettu"
|
27 |
|
28 |
+
#: facebook-button-plugin.php:240
|
29 |
msgid "Error: File size > 32K"
|
30 |
msgstr "Virhe: Tiedoston koko > 32K"
|
31 |
|
32 |
+
#: facebook-button-plugin.php:243
|
33 |
msgid "Error: Invalid file type"
|
34 |
msgstr "Virhe: Väärä tiedostotyyppi"
|
35 |
|
36 |
+
#: facebook-button-plugin.php:249
|
37 |
msgid "Upload successful."
|
38 |
msgstr "Lataaminen onnistui"
|
39 |
|
40 |
+
#: facebook-button-plugin.php:259
|
41 |
msgid "Error: moving file failed"
|
42 |
msgstr "Virhe: tiedoston siirto epäonnistui"
|
43 |
|
44 |
+
#: facebook-button-plugin.php:262
|
45 |
msgid "Error: check image width or height"
|
46 |
msgstr "Virhe: tarkista kuvan leveys tai korkeus"
|
47 |
|
48 |
+
#: facebook-button-plugin.php:266
|
49 |
msgid "Uploading Error: check image properties"
|
50 |
msgstr "Virhe latauksessa: tarkista kuvan ominaisuudet"
|
51 |
|
52 |
+
#: facebook-button-plugin.php:279
|
53 |
msgid "All plugin settings were restored."
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: facebook-button-plugin.php:294 facebook-button-plugin.php:851
|
57 |
+
#: facebook-button-plugin.php:865
|
|
|
58 |
msgid "Settings"
|
59 |
msgstr "Asetukset"
|
60 |
|
61 |
+
#: facebook-button-plugin.php:295
|
62 |
msgid "Extra settings"
|
63 |
msgstr "Lisää asetuksia"
|
64 |
|
65 |
+
#: facebook-button-plugin.php:296
|
66 |
msgid "Go PRO"
|
67 |
msgstr "Hanki PRO versio"
|
68 |
|
69 |
+
#: facebook-button-plugin.php:299
|
70 |
msgid "Please, enable JavaScript in Your browser."
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: facebook-button-plugin.php:314
|
74 |
#, fuzzy, php-format
|
75 |
+
msgid ""
|
76 |
+
"If you would like to add Facebook buttons to your page or post, please use "
|
77 |
+
"%s button"
|
78 |
+
msgstr ""
|
79 |
+
"Mikäli haluat lisätä Facebook napin sivullesi, kopioi ja liitä tämä "
|
80 |
+
"lyhytkoodi artikkeliisi tai sivullesi:"
|
81 |
|
82 |
+
#: facebook-button-plugin.php:319
|
83 |
#, php-format
|
84 |
+
msgid ""
|
85 |
+
"You can add Facebook buttons to your page or post by clicking on %s button "
|
86 |
+
"in the content edit block using the Visual mode. If the button isn't "
|
87 |
+
"displayed, please use the shortcode %s"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: facebook-button-plugin.php:330
|
91 |
#, fuzzy
|
92 |
msgid "Display button"
|
93 |
msgstr "Näytä nappi:"
|
94 |
|
95 |
+
#: facebook-button-plugin.php:333
|
96 |
msgid "My Page"
|
97 |
msgstr "Minun sivuni"
|
98 |
|
99 |
+
#: facebook-button-plugin.php:334 facebook-button-plugin.php:501
|
|
|
100 |
msgid "Like"
|
101 |
msgstr "Tykkää"
|
102 |
|
103 |
+
#: facebook-button-plugin.php:335
|
104 |
msgid "Share"
|
105 |
msgstr "Jaa"
|
106 |
|
107 |
+
#: facebook-button-plugin.php:340
|
108 |
#, fuzzy
|
109 |
msgid "Facebook buttons position"
|
110 |
msgstr "Facebook napin paikka:"
|
111 |
|
112 |
+
#: facebook-button-plugin.php:343
|
113 |
msgid "Before"
|
114 |
msgstr "Ennen"
|
115 |
|
116 |
+
#: facebook-button-plugin.php:344
|
117 |
msgid "After"
|
118 |
msgstr "Jälkeen"
|
119 |
|
120 |
+
#: facebook-button-plugin.php:345
|
121 |
msgid "Before and After"
|
122 |
msgstr "Ennen ja Jälkeen"
|
123 |
|
124 |
+
#: facebook-button-plugin.php:346
|
125 |
msgid "Shortcode"
|
126 |
msgstr "Lyhytkoodi"
|
127 |
|
128 |
+
#: facebook-button-plugin.php:351
|
129 |
#, fuzzy
|
130 |
msgid "Facebook buttons language"
|
131 |
msgstr "Facebook Napin kieli:"
|
132 |
|
133 |
+
#: facebook-button-plugin.php:362
|
134 |
+
#, fuzzy
|
135 |
+
msgid "Change the language of Facebook Button"
|
136 |
msgstr "Vaihda Facebook napin kieli"
|
137 |
|
138 |
+
#: facebook-button-plugin.php:367 facebook-button-plugin.php:370
|
139 |
+
#: facebook-button-plugin.php:375
|
|
|
140 |
msgid "Use the current site language"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: facebook-button-plugin.php:367 facebook-button-plugin.php:371
|
144 |
+
#: facebook-button-plugin.php:376
|
|
|
145 |
msgid "Using"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: facebook-button-plugin.php:371
|
149 |
msgid "Activate"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: facebook-button-plugin.php:376
|
153 |
msgid "Download"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: facebook-button-plugin.php:383
|
157 |
#, fuzzy
|
158 |
msgid "Display buttons in excerpt"
|
159 |
msgstr "Näytä nappi:"
|
160 |
|
161 |
+
#: facebook-button-plugin.php:393 facebook-button-plugin.php:542
|
162 |
+
#: facebook-button-plugin.php:579
|
163 |
+
msgid "Close"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: facebook-button-plugin.php:397
|
167 |
+
msgid "Meta tags"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: facebook-button-plugin.php:400
|
171 |
+
msgid "Image"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: facebook-button-plugin.php:403
|
175 |
+
msgid "Featured Image"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: facebook-button-plugin.php:407
|
179 |
+
#, fuzzy
|
180 |
+
msgid "Custom Image"
|
181 |
+
msgstr "Mukautettu Fecabook kuva"
|
182 |
+
|
183 |
+
#: facebook-button-plugin.php:407
|
184 |
+
msgid "This image will be used for all of the posts"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: facebook-button-plugin.php:417
|
188 |
+
msgid "Description"
|
189 |
+
msgstr ""
|
190 |
+
|
191 |
+
#: facebook-button-plugin.php:420
|
192 |
+
msgid "Post excerpt"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: facebook-button-plugin.php:425
|
196 |
+
msgid "This description will be used for all of the posts"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: facebook-button-plugin.php:432 facebook-button-plugin.php:553
|
200 |
+
#: facebook-button-plugin.php:631
|
201 |
+
msgid "If you upgrade to Pro version all your settings will be saved."
|
202 |
+
msgstr "Mikäli päivität Pro versioon, kaikki asetuksesi tallennetaan."
|
203 |
+
|
204 |
+
#: facebook-button-plugin.php:439 facebook-button-plugin.php:560
|
205 |
+
#: facebook-button-plugin.php:588 facebook-button-plugin.php:638
|
206 |
+
#, fuzzy
|
207 |
+
msgid "Unlock premium options by upgrading to Pro version"
|
208 |
+
msgstr "Ota käyttöön premium valinnat päivittämällä PRO versioon."
|
209 |
+
|
210 |
+
#: facebook-button-plugin.php:441 facebook-button-plugin.php:562
|
211 |
+
#: facebook-button-plugin.php:590 facebook-button-plugin.php:640
|
212 |
+
msgid "Learn More"
|
213 |
+
msgstr "Lue Lisää"
|
214 |
+
|
215 |
+
#: facebook-button-plugin.php:449
|
216 |
#, fuzzy
|
217 |
msgid "Your Facebook ID or username"
|
218 |
msgstr "Sinun Facebook ID:si tai käyttäjänimesi:"
|
219 |
|
220 |
+
#: facebook-button-plugin.php:456
|
221 |
msgid "\"My page\" button image"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: facebook-button-plugin.php:461
|
225 |
msgid "Standard Facebook image"
|
226 |
msgstr "Standardi Facebook kuva"
|
227 |
|
228 |
+
#: facebook-button-plugin.php:462
|
229 |
msgid "Custom Facebook image"
|
230 |
msgstr "Mukautettu Fecabook kuva"
|
231 |
|
232 |
+
#: facebook-button-plugin.php:465
|
233 |
+
msgid ""
|
234 |
+
"To use custom image you need to setup permissions to upload directory of "
|
235 |
+
"your site"
|
236 |
msgstr "Käyttääksesi mukautettua, kuva pitää voida ladata hakemistoosi"
|
237 |
|
238 |
+
#: facebook-button-plugin.php:472
|
239 |
#, fuzzy
|
240 |
msgid "Current image"
|
241 |
msgstr "Nykyinen kuva:"
|
242 |
|
243 |
+
#: facebook-button-plugin.php:480
|
244 |
+
msgid ""
|
245 |
+
"Image properties: max image width:100px; max image height:40px; max image "
|
246 |
+
"size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
247 |
+
msgstr ""
|
248 |
+
"Kuvan ominaisuudet: max leveys 100px; max korkeus 40px; max koko 32Kb; kuvan "
|
249 |
+
"tyypit:\"jpg\", \"jpeg\", \"png\"."
|
250 |
|
251 |
+
#: facebook-button-plugin.php:484
|
252 |
msgid "Button layout"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: facebook-button-plugin.php:498
|
256 |
msgid "Like button action"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: facebook-button-plugin.php:502
|
260 |
msgid "Recommend"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: facebook-button-plugin.php:507
|
264 |
msgid "Show faces"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: facebook-button-plugin.php:513
|
268 |
msgid "Layout width"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: facebook-button-plugin.php:519
|
272 |
msgid "Color scheme"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: facebook-button-plugin.php:522
|
276 |
msgid "Light"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: facebook-button-plugin.php:523
|
280 |
msgid "Dark"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: facebook-button-plugin.php:528
|
284 |
#, fuzzy
|
285 |
msgid "Html tag for \"Like\" button"
|
286 |
msgstr "HTML tagi Tykkää Napille:"
|
287 |
|
288 |
+
#: facebook-button-plugin.php:533
|
289 |
msgid "Use this tag to improve validation of your site"
|
290 |
msgstr "Käytä tätä tagia parantamaan sivusi näkyvyyttä"
|
291 |
|
292 |
+
#: facebook-button-plugin.php:546
|
|
|
|
|
|
|
|
|
|
|
293 |
msgid "\"Like\" for an entire site on every page:"
|
294 |
msgstr "\"Like\" koko sivustolle ja kaikille sivuille:"
|
295 |
|
296 |
+
#: facebook-button-plugin.php:548
|
297 |
+
msgid ""
|
298 |
+
"Notice: \"Like for the entire site\" option does not create an extra button. "
|
299 |
+
"This option merely allows your users to like the entire website when this "
|
300 |
+
"option is enabled, or a single post when this option is disabled, when "
|
301 |
+
"clicking the regular \"Like\" button."
|
302 |
+
msgstr ""
|
303 |
+
"Huomautus: \"Tykkää koko sivustosta\" tämä valinta ei tee ylimääräistä "
|
304 |
+
"nappia. Tämä valinnan avulla käyttäjät tykkäävät koko sivustosta. Mikäli ei "
|
305 |
+
"ole valittu, niin käyttäjä tykkää vain yhdestä sivusta klikatessaan \"Tykkää"
|
306 |
+
"\" nappia."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
307 |
|
308 |
+
#: facebook-button-plugin.php:570 facebook-button-plugin.php:626
|
|
|
309 |
msgid "Save Changes"
|
310 |
msgstr "Tallenna muutokset"
|
311 |
|
312 |
+
#: facebook-button-plugin.php:582
|
313 |
#, fuzzy
|
314 |
msgid "Facebook Button preview:"
|
315 |
msgstr "Facebook Nappi"
|
316 |
|
317 |
+
#: facebook-button-plugin.php:608
|
318 |
+
msgid ""
|
319 |
+
"Please choose the necessary post types (or single pages) where Facebook "
|
320 |
+
"button will be displayed:"
|
321 |
+
msgstr ""
|
322 |
+
"Valitse haluamasi viestin tyyppi (tai yksittäiset sivut) joissa Facebook "
|
323 |
+
"nappi näytetään:"
|
324 |
|
325 |
+
#: facebook-button-plugin.php:615
|
326 |
msgid "Show URL for pages"
|
327 |
msgstr "Näytä URL sivuilla"
|
328 |
|
329 |
+
#: facebook-button-plugin.php:621
|
330 |
msgid "Example of the site's pages tree"
|
331 |
msgstr "Esimerkki sivuston sivuhakemistosta"
|
332 |
|
333 |
+
#: facebook-button-plugin.php:621
|
334 |
msgid "Example of site pages' tree"
|
335 |
msgstr "Esimerkki sivun sivuhakemistosta"
|
336 |
|
337 |
+
#: facebook-button-plugin.php:757
|
338 |
#, fuzzy
|
339 |
msgid "Add Facebook buttons to your page or post"
|
340 |
msgstr "Facebook napin paikka:"
|
341 |
|
342 |
+
#: facebook-button-plugin.php:866
|
343 |
msgid "FAQ"
|
344 |
msgstr "FAQ"
|
345 |
|
346 |
+
#: facebook-button-plugin.php:867
|
347 |
msgid "Support"
|
348 |
msgstr "Tuki"
|
349 |
|
languages/facebook-button-plugin-fr_FR.mo
CHANGED
Binary file
|
languages/facebook-button-plugin-fr_FR.po
CHANGED
@@ -2,9 +2,9 @@ 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: bestwebsoft.com <
|
8 |
"Language-Team: http://wptheme.fr/\n"
|
9 |
"Language: fr\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -13,285 +13,330 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit 1.
|
17 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: facebook-button-plugin.php:34
|
21 |
-
#: facebook-button-plugin.php:290
|
22 |
msgid "Facebook Button Settings"
|
23 |
msgstr "Réglages du bouton Facebook"
|
24 |
|
25 |
-
#: facebook-button-plugin.php:
|
26 |
msgid "Settings saved"
|
27 |
msgstr "Réglages sauvegardés "
|
28 |
|
29 |
-
#: facebook-button-plugin.php:
|
30 |
msgid "Error: File size > 32K"
|
31 |
msgstr "Erreur : Poids du fichier > 32K"
|
32 |
|
33 |
-
#: facebook-button-plugin.php:
|
34 |
msgid "Error: Invalid file type"
|
35 |
msgstr "Erreur : Type de fichier invalide"
|
36 |
|
37 |
-
#: facebook-button-plugin.php:
|
38 |
msgid "Upload successful."
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: facebook-button-plugin.php:
|
42 |
msgid "Error: moving file failed"
|
43 |
msgstr "Erreur : le déplacement du fichier a echoué"
|
44 |
|
45 |
-
#: facebook-button-plugin.php:
|
46 |
msgid "Error: check image width or height"
|
47 |
msgstr "Erreur : Vérifiez la taille et la largeur de l'image"
|
48 |
|
49 |
-
#: facebook-button-plugin.php:
|
50 |
msgid "Uploading Error: check image properties"
|
51 |
msgstr "Erreur d'upload : vérifiez les propriétés de l'image"
|
52 |
|
53 |
-
#: facebook-button-plugin.php:
|
54 |
msgid "All plugin settings were restored."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: facebook-button-plugin.php:
|
58 |
-
#: facebook-button-plugin.php:
|
59 |
-
#: facebook-button-plugin.php:797
|
60 |
msgid "Settings"
|
61 |
msgstr "Réglages"
|
62 |
|
63 |
-
#: facebook-button-plugin.php:
|
64 |
#, fuzzy
|
65 |
msgid "Extra settings"
|
66 |
msgstr "Réglages"
|
67 |
|
68 |
-
#: facebook-button-plugin.php:
|
69 |
msgid "Go PRO"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: facebook-button-plugin.php:
|
73 |
msgid "Please, enable JavaScript in Your browser."
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: facebook-button-plugin.php:
|
77 |
#, fuzzy, php-format
|
78 |
-
msgid "
|
79 |
-
|
|
|
|
|
|
|
|
|
80 |
|
81 |
-
#: facebook-button-plugin.php:
|
82 |
#, php-format
|
83 |
-
msgid "
|
|
|
|
|
|
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: facebook-button-plugin.php:
|
87 |
#, fuzzy
|
88 |
msgid "Display button"
|
89 |
msgstr "Afficher le bouton"
|
90 |
|
91 |
-
#: facebook-button-plugin.php:
|
92 |
msgid "My Page"
|
93 |
msgstr "Ma page"
|
94 |
|
95 |
-
#: facebook-button-plugin.php:
|
96 |
-
#: facebook-button-plugin.php:438
|
97 |
msgid "Like"
|
98 |
msgstr "Like"
|
99 |
|
100 |
-
#: facebook-button-plugin.php:
|
101 |
msgid "Share"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: facebook-button-plugin.php:
|
105 |
#, fuzzy
|
106 |
msgid "Facebook buttons position"
|
107 |
msgstr "Position du bouton Facebook"
|
108 |
|
109 |
-
#: facebook-button-plugin.php:
|
110 |
msgid "Before"
|
111 |
msgstr "Avant"
|
112 |
|
113 |
-
#: facebook-button-plugin.php:
|
114 |
msgid "After"
|
115 |
msgstr "Après"
|
116 |
|
117 |
-
#: facebook-button-plugin.php:
|
118 |
msgid "Before and After"
|
119 |
msgstr "Avant et après"
|
120 |
|
121 |
-
#: facebook-button-plugin.php:
|
122 |
msgid "Shortcode"
|
123 |
msgstr "Shortcode"
|
124 |
|
125 |
-
#: facebook-button-plugin.php:
|
126 |
#, fuzzy
|
127 |
msgid "Facebook buttons language"
|
128 |
msgstr "Langue du bouton Facebook"
|
129 |
|
130 |
-
#: facebook-button-plugin.php:
|
131 |
-
|
|
|
132 |
msgstr "Changer la langue du bouton Facebook"
|
133 |
|
134 |
-
#: facebook-button-plugin.php:
|
135 |
-
#: facebook-button-plugin.php:
|
136 |
-
#: facebook-button-plugin.php:372
|
137 |
msgid "Use the current site language"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: facebook-button-plugin.php:
|
141 |
-
#: facebook-button-plugin.php:
|
142 |
-
#: facebook-button-plugin.php:373
|
143 |
msgid "Using"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: facebook-button-plugin.php:
|
147 |
msgid "Activate"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: facebook-button-plugin.php:
|
151 |
msgid "Download"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: facebook-button-plugin.php:
|
155 |
#, fuzzy
|
156 |
msgid "Display buttons in excerpt"
|
157 |
msgstr "Afficher le bouton"
|
158 |
|
159 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
160 |
#, fuzzy
|
161 |
msgid "Your Facebook ID or username"
|
162 |
msgstr "Votre identifiant Facebook"
|
163 |
|
164 |
-
#: facebook-button-plugin.php:
|
165 |
msgid "\"My page\" button image"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: facebook-button-plugin.php:
|
169 |
msgid "Standard Facebook image"
|
170 |
msgstr "Image Facebook par défaut"
|
171 |
|
172 |
-
#: facebook-button-plugin.php:
|
173 |
msgid "Custom Facebook image"
|
174 |
msgstr "Image Facebook personnalisée"
|
175 |
|
176 |
-
#: facebook-button-plugin.php:
|
177 |
-
msgid "
|
|
|
|
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: facebook-button-plugin.php:
|
181 |
#, fuzzy
|
182 |
msgid "Current image"
|
183 |
msgstr "Image actuelle"
|
184 |
|
185 |
-
#: facebook-button-plugin.php:
|
186 |
-
msgid "
|
187 |
-
|
|
|
|
|
|
|
|
|
188 |
|
189 |
-
#: facebook-button-plugin.php:
|
190 |
msgid "Button layout"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: facebook-button-plugin.php:
|
194 |
msgid "Like button action"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: facebook-button-plugin.php:
|
198 |
msgid "Recommend"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: facebook-button-plugin.php:
|
202 |
msgid "Show faces"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: facebook-button-plugin.php:
|
206 |
msgid "Layout width"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: facebook-button-plugin.php:
|
210 |
msgid "Color scheme"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: facebook-button-plugin.php:
|
214 |
msgid "Light"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: facebook-button-plugin.php:
|
218 |
msgid "Dark"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: facebook-button-plugin.php:
|
222 |
msgid "Html tag for \"Like\" button"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: facebook-button-plugin.php:
|
226 |
msgid "Use this tag to improve validation of your site"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: facebook-button-plugin.php:
|
230 |
-
#: facebook-button-plugin.php:516
|
231 |
-
msgid "Close"
|
232 |
-
msgstr ""
|
233 |
-
|
234 |
-
#: facebook-button-plugin.php:483
|
235 |
msgid "\"Like\" for an entire site on every page:"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: facebook-button-plugin.php:
|
239 |
-
msgid "
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
msgid "If you upgrade to Pro version all your settings will be saved."
|
245 |
-
msgstr ""
|
246 |
-
|
247 |
-
#: facebook-button-plugin.php:497
|
248 |
-
#: facebook-button-plugin.php:525
|
249 |
-
#: facebook-button-plugin.php:574
|
250 |
-
msgid "Unlock premium options by upgrading to Pro version"
|
251 |
-
msgstr ""
|
252 |
-
|
253 |
-
#: facebook-button-plugin.php:499
|
254 |
-
#: facebook-button-plugin.php:527
|
255 |
-
#: facebook-button-plugin.php:576
|
256 |
-
msgid "Learn More"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: facebook-button-plugin.php:
|
260 |
-
#: facebook-button-plugin.php:562
|
261 |
msgid "Save Changes"
|
262 |
msgstr "Sauvegarder les changements"
|
263 |
|
264 |
-
#: facebook-button-plugin.php:
|
265 |
#, fuzzy
|
266 |
msgid "Facebook Button preview:"
|
267 |
msgstr "Bouton Facebook"
|
268 |
|
269 |
-
#: facebook-button-plugin.php:
|
270 |
-
msgid "
|
|
|
|
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: facebook-button-plugin.php:
|
274 |
msgid "Show URL for pages"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: facebook-button-plugin.php:
|
278 |
msgid "Example of the site's pages tree"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: facebook-button-plugin.php:
|
282 |
msgid "Example of site pages' tree"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: facebook-button-plugin.php:
|
286 |
#, fuzzy
|
287 |
msgid "Add Facebook buttons to your page or post"
|
288 |
msgstr "Position du bouton Facebook"
|
289 |
|
290 |
-
#: facebook-button-plugin.php:
|
291 |
msgid "FAQ"
|
292 |
msgstr "FAQ"
|
293 |
|
294 |
-
#: facebook-button-plugin.php:
|
295 |
msgid "Support"
|
296 |
msgstr "Support"
|
297 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-02-04 12:31+0300\n"
|
6 |
+
"PO-Revision-Date: 2016-02-04 12:31+0300\n"
|
7 |
+
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: http://wptheme.fr/\n"
|
9 |
"Language: fr\n"
|
10 |
"MIME-Version: 1.0\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 1.5.4\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: facebook-button-plugin.php:34 facebook-button-plugin.php:292
|
|
|
21 |
msgid "Facebook Button Settings"
|
22 |
msgstr "Réglages du bouton Facebook"
|
23 |
|
24 |
+
#: facebook-button-plugin.php:214
|
25 |
msgid "Settings saved"
|
26 |
msgstr "Réglages sauvegardés "
|
27 |
|
28 |
+
#: facebook-button-plugin.php:240
|
29 |
msgid "Error: File size > 32K"
|
30 |
msgstr "Erreur : Poids du fichier > 32K"
|
31 |
|
32 |
+
#: facebook-button-plugin.php:243
|
33 |
msgid "Error: Invalid file type"
|
34 |
msgstr "Erreur : Type de fichier invalide"
|
35 |
|
36 |
+
#: facebook-button-plugin.php:249
|
37 |
msgid "Upload successful."
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: facebook-button-plugin.php:259
|
41 |
msgid "Error: moving file failed"
|
42 |
msgstr "Erreur : le déplacement du fichier a echoué"
|
43 |
|
44 |
+
#: facebook-button-plugin.php:262
|
45 |
msgid "Error: check image width or height"
|
46 |
msgstr "Erreur : Vérifiez la taille et la largeur de l'image"
|
47 |
|
48 |
+
#: facebook-button-plugin.php:266
|
49 |
msgid "Uploading Error: check image properties"
|
50 |
msgstr "Erreur d'upload : vérifiez les propriétés de l'image"
|
51 |
|
52 |
+
#: facebook-button-plugin.php:279
|
53 |
msgid "All plugin settings were restored."
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: facebook-button-plugin.php:294 facebook-button-plugin.php:851
|
57 |
+
#: facebook-button-plugin.php:865
|
|
|
58 |
msgid "Settings"
|
59 |
msgstr "Réglages"
|
60 |
|
61 |
+
#: facebook-button-plugin.php:295
|
62 |
#, fuzzy
|
63 |
msgid "Extra settings"
|
64 |
msgstr "Réglages"
|
65 |
|
66 |
+
#: facebook-button-plugin.php:296
|
67 |
msgid "Go PRO"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: facebook-button-plugin.php:299
|
71 |
msgid "Please, enable JavaScript in Your browser."
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: facebook-button-plugin.php:314
|
75 |
#, fuzzy, php-format
|
76 |
+
msgid ""
|
77 |
+
"If you would like to add Facebook buttons to your page or post, please use "
|
78 |
+
"%s button"
|
79 |
+
msgstr ""
|
80 |
+
"Si vous souhaitez ajouter un bouton Facebook sur votre site internet, copier-"
|
81 |
+
"collez ce Shortcodedans votre page ou votre article"
|
82 |
|
83 |
+
#: facebook-button-plugin.php:319
|
84 |
#, php-format
|
85 |
+
msgid ""
|
86 |
+
"You can add Facebook buttons to your page or post by clicking on %s button "
|
87 |
+
"in the content edit block using the Visual mode. If the button isn't "
|
88 |
+
"displayed, please use the shortcode %s"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: facebook-button-plugin.php:330
|
92 |
#, fuzzy
|
93 |
msgid "Display button"
|
94 |
msgstr "Afficher le bouton"
|
95 |
|
96 |
+
#: facebook-button-plugin.php:333
|
97 |
msgid "My Page"
|
98 |
msgstr "Ma page"
|
99 |
|
100 |
+
#: facebook-button-plugin.php:334 facebook-button-plugin.php:501
|
|
|
101 |
msgid "Like"
|
102 |
msgstr "Like"
|
103 |
|
104 |
+
#: facebook-button-plugin.php:335
|
105 |
msgid "Share"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: facebook-button-plugin.php:340
|
109 |
#, fuzzy
|
110 |
msgid "Facebook buttons position"
|
111 |
msgstr "Position du bouton Facebook"
|
112 |
|
113 |
+
#: facebook-button-plugin.php:343
|
114 |
msgid "Before"
|
115 |
msgstr "Avant"
|
116 |
|
117 |
+
#: facebook-button-plugin.php:344
|
118 |
msgid "After"
|
119 |
msgstr "Après"
|
120 |
|
121 |
+
#: facebook-button-plugin.php:345
|
122 |
msgid "Before and After"
|
123 |
msgstr "Avant et après"
|
124 |
|
125 |
+
#: facebook-button-plugin.php:346
|
126 |
msgid "Shortcode"
|
127 |
msgstr "Shortcode"
|
128 |
|
129 |
+
#: facebook-button-plugin.php:351
|
130 |
#, fuzzy
|
131 |
msgid "Facebook buttons language"
|
132 |
msgstr "Langue du bouton Facebook"
|
133 |
|
134 |
+
#: facebook-button-plugin.php:362
|
135 |
+
#, fuzzy
|
136 |
+
msgid "Change the language of Facebook Button"
|
137 |
msgstr "Changer la langue du bouton Facebook"
|
138 |
|
139 |
+
#: facebook-button-plugin.php:367 facebook-button-plugin.php:370
|
140 |
+
#: facebook-button-plugin.php:375
|
|
|
141 |
msgid "Use the current site language"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: facebook-button-plugin.php:367 facebook-button-plugin.php:371
|
145 |
+
#: facebook-button-plugin.php:376
|
|
|
146 |
msgid "Using"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: facebook-button-plugin.php:371
|
150 |
msgid "Activate"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: facebook-button-plugin.php:376
|
154 |
msgid "Download"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: facebook-button-plugin.php:383
|
158 |
#, fuzzy
|
159 |
msgid "Display buttons in excerpt"
|
160 |
msgstr "Afficher le bouton"
|
161 |
|
162 |
+
#: facebook-button-plugin.php:393 facebook-button-plugin.php:542
|
163 |
+
#: facebook-button-plugin.php:579
|
164 |
+
msgid "Close"
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: facebook-button-plugin.php:397
|
168 |
+
msgid "Meta tags"
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: facebook-button-plugin.php:400
|
172 |
+
msgid "Image"
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: facebook-button-plugin.php:403
|
176 |
+
msgid "Featured Image"
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: facebook-button-plugin.php:407
|
180 |
+
#, fuzzy
|
181 |
+
msgid "Custom Image"
|
182 |
+
msgstr "Image Facebook personnalisée"
|
183 |
+
|
184 |
+
#: facebook-button-plugin.php:407
|
185 |
+
msgid "This image will be used for all of the posts"
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: facebook-button-plugin.php:417
|
189 |
+
msgid "Description"
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: facebook-button-plugin.php:420
|
193 |
+
msgid "Post excerpt"
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: facebook-button-plugin.php:425
|
197 |
+
msgid "This description will be used for all of the posts"
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: facebook-button-plugin.php:432 facebook-button-plugin.php:553
|
201 |
+
#: facebook-button-plugin.php:631
|
202 |
+
msgid "If you upgrade to Pro version all your settings will be saved."
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: facebook-button-plugin.php:439 facebook-button-plugin.php:560
|
206 |
+
#: facebook-button-plugin.php:588 facebook-button-plugin.php:638
|
207 |
+
msgid "Unlock premium options by upgrading to Pro version"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: facebook-button-plugin.php:441 facebook-button-plugin.php:562
|
211 |
+
#: facebook-button-plugin.php:590 facebook-button-plugin.php:640
|
212 |
+
msgid "Learn More"
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: facebook-button-plugin.php:449
|
216 |
#, fuzzy
|
217 |
msgid "Your Facebook ID or username"
|
218 |
msgstr "Votre identifiant Facebook"
|
219 |
|
220 |
+
#: facebook-button-plugin.php:456
|
221 |
msgid "\"My page\" button image"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: facebook-button-plugin.php:461
|
225 |
msgid "Standard Facebook image"
|
226 |
msgstr "Image Facebook par défaut"
|
227 |
|
228 |
+
#: facebook-button-plugin.php:462
|
229 |
msgid "Custom Facebook image"
|
230 |
msgstr "Image Facebook personnalisée"
|
231 |
|
232 |
+
#: facebook-button-plugin.php:465
|
233 |
+
msgid ""
|
234 |
+
"To use custom image you need to setup permissions to upload directory of "
|
235 |
+
"your site"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: facebook-button-plugin.php:472
|
239 |
#, fuzzy
|
240 |
msgid "Current image"
|
241 |
msgstr "Image actuelle"
|
242 |
|
243 |
+
#: facebook-button-plugin.php:480
|
244 |
+
msgid ""
|
245 |
+
"Image properties: max image width:100px; max image height:40px; max image "
|
246 |
+
"size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
247 |
+
msgstr ""
|
248 |
+
"Propriétés de l'image : largeur max:100px; hauteur max: 40px; poids max : "
|
249 |
+
"32kb; type d'image :\"jpg\", \"jpeg\", \"png\"."
|
250 |
|
251 |
+
#: facebook-button-plugin.php:484
|
252 |
msgid "Button layout"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: facebook-button-plugin.php:498
|
256 |
msgid "Like button action"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: facebook-button-plugin.php:502
|
260 |
msgid "Recommend"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: facebook-button-plugin.php:507
|
264 |
msgid "Show faces"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: facebook-button-plugin.php:513
|
268 |
msgid "Layout width"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: facebook-button-plugin.php:519
|
272 |
msgid "Color scheme"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: facebook-button-plugin.php:522
|
276 |
msgid "Light"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: facebook-button-plugin.php:523
|
280 |
msgid "Dark"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: facebook-button-plugin.php:528
|
284 |
msgid "Html tag for \"Like\" button"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: facebook-button-plugin.php:533
|
288 |
msgid "Use this tag to improve validation of your site"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: facebook-button-plugin.php:546
|
|
|
|
|
|
|
|
|
|
|
292 |
msgid "\"Like\" for an entire site on every page:"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: facebook-button-plugin.php:548
|
296 |
+
msgid ""
|
297 |
+
"Notice: \"Like for the entire site\" option does not create an extra button. "
|
298 |
+
"This option merely allows your users to like the entire website when this "
|
299 |
+
"option is enabled, or a single post when this option is disabled, when "
|
300 |
+
"clicking the regular \"Like\" button."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: facebook-button-plugin.php:570 facebook-button-plugin.php:626
|
|
|
304 |
msgid "Save Changes"
|
305 |
msgstr "Sauvegarder les changements"
|
306 |
|
307 |
+
#: facebook-button-plugin.php:582
|
308 |
#, fuzzy
|
309 |
msgid "Facebook Button preview:"
|
310 |
msgstr "Bouton Facebook"
|
311 |
|
312 |
+
#: facebook-button-plugin.php:608
|
313 |
+
msgid ""
|
314 |
+
"Please choose the necessary post types (or single pages) where Facebook "
|
315 |
+
"button will be displayed:"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: facebook-button-plugin.php:615
|
319 |
msgid "Show URL for pages"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: facebook-button-plugin.php:621
|
323 |
msgid "Example of the site's pages tree"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: facebook-button-plugin.php:621
|
327 |
msgid "Example of site pages' tree"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: facebook-button-plugin.php:757
|
331 |
#, fuzzy
|
332 |
msgid "Add Facebook buttons to your page or post"
|
333 |
msgstr "Position du bouton Facebook"
|
334 |
|
335 |
+
#: facebook-button-plugin.php:866
|
336 |
msgid "FAQ"
|
337 |
msgstr "FAQ"
|
338 |
|
339 |
+
#: facebook-button-plugin.php:867
|
340 |
msgid "Support"
|
341 |
msgstr "Support"
|
342 |
|
languages/facebook-button-plugin-hu_HU.mo
CHANGED
Binary file
|
languages/facebook-button-plugin-hu_HU.po
CHANGED
@@ -2,9 +2,9 @@ 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:
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: hu_HU\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -52,8 +52,8 @@ msgstr "Feltöltési Hiba: ellenőrizze a kép tulajdonságait"
|
|
52 |
msgid "All plugin settings were restored."
|
53 |
msgstr "Minden plugin paraméter visszaállítva."
|
54 |
|
55 |
-
#: facebook-button-plugin.php:294 facebook-button-plugin.php:
|
56 |
-
#: facebook-button-plugin.php:
|
57 |
msgid "Settings"
|
58 |
msgstr "Beállítások"
|
59 |
|
@@ -94,7 +94,7 @@ msgstr "Gomb megjelenítése"
|
|
94 |
msgid "My Page"
|
95 |
msgstr "Oldalam"
|
96 |
|
97 |
-
#: facebook-button-plugin.php:334 facebook-button-plugin.php:
|
98 |
msgid "Like"
|
99 |
msgstr "Like"
|
100 |
|
@@ -154,23 +154,77 @@ msgstr ""
|
|
154 |
msgid "Display buttons in excerpt"
|
155 |
msgstr "Gomb megjelenítése"
|
156 |
|
157 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
msgid "Your Facebook ID or username"
|
159 |
msgstr "Facebook ID-je vagy felhasználóneve"
|
160 |
|
161 |
-
#: facebook-button-plugin.php:
|
162 |
msgid "\"My page\" button image"
|
163 |
msgstr "\"Oldalam\" gomb képe"
|
164 |
|
165 |
-
#: facebook-button-plugin.php:
|
166 |
msgid "Standard Facebook image"
|
167 |
msgstr "Normál Facebook kép"
|
168 |
|
169 |
-
#: facebook-button-plugin.php:
|
170 |
msgid "Custom Facebook image"
|
171 |
msgstr "Egyéni Facebook kép"
|
172 |
|
173 |
-
#: facebook-button-plugin.php:
|
174 |
msgid ""
|
175 |
"To use custom image you need to setup permissions to upload directory of "
|
176 |
"your site"
|
@@ -178,11 +232,11 @@ msgstr ""
|
|
178 |
"Egyedi kép használatához az oldala feltöltési könyvtárához jogosultságot "
|
179 |
"kell beállítania"
|
180 |
|
181 |
-
#: facebook-button-plugin.php:
|
182 |
msgid "Current image"
|
183 |
msgstr "Aktuális kép"
|
184 |
|
185 |
-
#: facebook-button-plugin.php:
|
186 |
msgid ""
|
187 |
"Image properties: max image width:100px; max image height:40px; max image "
|
188 |
"size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
@@ -190,57 +244,53 @@ msgstr ""
|
|
190 |
"Kép paraméterek: max kép szélesség: 100px; max kép magasság: 40px; max kép "
|
191 |
"méret: 32Kb; kép típusok:\"jpg\", \"jpeg\", \"png\"."
|
192 |
|
193 |
-
#: facebook-button-plugin.php:
|
194 |
msgid "Button layout"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: facebook-button-plugin.php:
|
198 |
#, fuzzy
|
199 |
msgid "Like button action"
|
200 |
msgstr "Facebook gombok helye"
|
201 |
|
202 |
-
#: facebook-button-plugin.php:
|
203 |
msgid "Recommend"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: facebook-button-plugin.php:
|
207 |
#, fuzzy
|
208 |
msgid "Show faces"
|
209 |
msgstr "URL megjelenítése oldalakon"
|
210 |
|
211 |
-
#: facebook-button-plugin.php:
|
212 |
msgid "Layout width"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: facebook-button-plugin.php:
|
216 |
msgid "Color scheme"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: facebook-button-plugin.php:
|
220 |
msgid "Light"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: facebook-button-plugin.php:
|
224 |
msgid "Dark"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: facebook-button-plugin.php:
|
228 |
msgid "Html tag for \"Like\" button"
|
229 |
msgstr "A \"Like\" gomb html címkéje"
|
230 |
|
231 |
-
#: facebook-button-plugin.php:
|
232 |
msgid "Use this tag to improve validation of your site"
|
233 |
msgstr "Használja ezt a címkét oldala minősítésének javításához"
|
234 |
|
235 |
-
#: facebook-button-plugin.php:
|
236 |
-
msgid "Close"
|
237 |
-
msgstr ""
|
238 |
-
|
239 |
-
#: facebook-button-plugin.php:486
|
240 |
msgid "\"Like\" for an entire site on every page:"
|
241 |
msgstr "\"Like\" a weboldal minden lapjára:"
|
242 |
|
243 |
-
#: facebook-button-plugin.php:
|
244 |
msgid ""
|
245 |
"Notice: \"Like for the entire site\" option does not create an extra button. "
|
246 |
"This option merely allows your users to like the entire website when this "
|
@@ -252,31 +302,16 @@ msgstr ""
|
|
252 |
"kedveljék, ha ez a beállítás engedélyezett vagy egy egyedi bejegyzést, ha ez "
|
253 |
"a beállítás kikapcsolt, ha a normál \"Like\" gombra kattintanak."
|
254 |
|
255 |
-
#: facebook-button-plugin.php:
|
256 |
-
msgid "If you upgrade to Pro version all your settings will be saved."
|
257 |
-
msgstr "Ha a PRO verzióra vált, minden paramétere el lesz mentve."
|
258 |
-
|
259 |
-
#: facebook-button-plugin.php:500 facebook-button-plugin.php:528
|
260 |
-
#: facebook-button-plugin.php:578
|
261 |
-
#, fuzzy
|
262 |
-
msgid "Unlock premium options by upgrading to Pro version"
|
263 |
-
msgstr "A prémium paramétereket elérheti a PRO változatra váltással."
|
264 |
-
|
265 |
-
#: facebook-button-plugin.php:502 facebook-button-plugin.php:530
|
266 |
-
#: facebook-button-plugin.php:580
|
267 |
-
msgid "Learn More"
|
268 |
-
msgstr "Olvasson tovább"
|
269 |
-
|
270 |
-
#: facebook-button-plugin.php:510 facebook-button-plugin.php:566
|
271 |
msgid "Save Changes"
|
272 |
msgstr "Változások mentése"
|
273 |
|
274 |
-
#: facebook-button-plugin.php:
|
275 |
#, fuzzy
|
276 |
msgid "Facebook Button preview:"
|
277 |
msgstr "Facebook Gomb Beállítások"
|
278 |
|
279 |
-
#: facebook-button-plugin.php:
|
280 |
msgid ""
|
281 |
"Please choose the necessary post types (or single pages) where Facebook "
|
282 |
"button will be displayed:"
|
@@ -284,28 +319,28 @@ msgstr ""
|
|
284 |
"Kérjük válassza ki a szükséges bejegyzés típusokat (vagy egyedi oldalakat) "
|
285 |
"ahol a Facebook gomb megjelenjen:"
|
286 |
|
287 |
-
#: facebook-button-plugin.php:
|
288 |
msgid "Show URL for pages"
|
289 |
msgstr "URL megjelenítése oldalakon"
|
290 |
|
291 |
-
#: facebook-button-plugin.php:
|
292 |
msgid "Example of the site's pages tree"
|
293 |
msgstr "Példa az oldal lap struktúrájának fájára"
|
294 |
|
295 |
-
#: facebook-button-plugin.php:
|
296 |
msgid "Example of site pages' tree"
|
297 |
msgstr "Példa oldal lapjainak fa struktúrájára"
|
298 |
|
299 |
-
#: facebook-button-plugin.php:
|
300 |
#, fuzzy
|
301 |
msgid "Add Facebook buttons to your page or post"
|
302 |
msgstr "Facebook gombok helye"
|
303 |
|
304 |
-
#: facebook-button-plugin.php:
|
305 |
msgid "FAQ"
|
306 |
msgstr "Gy.I.K."
|
307 |
|
308 |
-
#: facebook-button-plugin.php:
|
309 |
msgid "Support"
|
310 |
msgstr "Támogatás"
|
311 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-02-04 12:31+0300\n"
|
6 |
+
"PO-Revision-Date: 2016-02-04 12:31+0300\n"
|
7 |
+
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: hu_HU\n"
|
10 |
"MIME-Version: 1.0\n"
|
52 |
msgid "All plugin settings were restored."
|
53 |
msgstr "Minden plugin paraméter visszaállítva."
|
54 |
|
55 |
+
#: facebook-button-plugin.php:294 facebook-button-plugin.php:851
|
56 |
+
#: facebook-button-plugin.php:865
|
57 |
msgid "Settings"
|
58 |
msgstr "Beállítások"
|
59 |
|
94 |
msgid "My Page"
|
95 |
msgstr "Oldalam"
|
96 |
|
97 |
+
#: facebook-button-plugin.php:334 facebook-button-plugin.php:501
|
98 |
msgid "Like"
|
99 |
msgstr "Like"
|
100 |
|
154 |
msgid "Display buttons in excerpt"
|
155 |
msgstr "Gomb megjelenítése"
|
156 |
|
157 |
+
#: facebook-button-plugin.php:393 facebook-button-plugin.php:542
|
158 |
+
#: facebook-button-plugin.php:579
|
159 |
+
msgid "Close"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: facebook-button-plugin.php:397
|
163 |
+
msgid "Meta tags"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: facebook-button-plugin.php:400
|
167 |
+
msgid "Image"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: facebook-button-plugin.php:403
|
171 |
+
msgid "Featured Image"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: facebook-button-plugin.php:407
|
175 |
+
#, fuzzy
|
176 |
+
msgid "Custom Image"
|
177 |
+
msgstr "Egyéni Facebook kép"
|
178 |
+
|
179 |
+
#: facebook-button-plugin.php:407
|
180 |
+
msgid "This image will be used for all of the posts"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: facebook-button-plugin.php:417
|
184 |
+
msgid "Description"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: facebook-button-plugin.php:420
|
188 |
+
msgid "Post excerpt"
|
189 |
+
msgstr ""
|
190 |
+
|
191 |
+
#: facebook-button-plugin.php:425
|
192 |
+
msgid "This description will be used for all of the posts"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: facebook-button-plugin.php:432 facebook-button-plugin.php:553
|
196 |
+
#: facebook-button-plugin.php:631
|
197 |
+
msgid "If you upgrade to Pro version all your settings will be saved."
|
198 |
+
msgstr "Ha a PRO verzióra vált, minden paramétere el lesz mentve."
|
199 |
+
|
200 |
+
#: facebook-button-plugin.php:439 facebook-button-plugin.php:560
|
201 |
+
#: facebook-button-plugin.php:588 facebook-button-plugin.php:638
|
202 |
+
#, fuzzy
|
203 |
+
msgid "Unlock premium options by upgrading to Pro version"
|
204 |
+
msgstr "A prémium paramétereket elérheti a PRO változatra váltással."
|
205 |
+
|
206 |
+
#: facebook-button-plugin.php:441 facebook-button-plugin.php:562
|
207 |
+
#: facebook-button-plugin.php:590 facebook-button-plugin.php:640
|
208 |
+
msgid "Learn More"
|
209 |
+
msgstr "Olvasson tovább"
|
210 |
+
|
211 |
+
#: facebook-button-plugin.php:449
|
212 |
msgid "Your Facebook ID or username"
|
213 |
msgstr "Facebook ID-je vagy felhasználóneve"
|
214 |
|
215 |
+
#: facebook-button-plugin.php:456
|
216 |
msgid "\"My page\" button image"
|
217 |
msgstr "\"Oldalam\" gomb képe"
|
218 |
|
219 |
+
#: facebook-button-plugin.php:461
|
220 |
msgid "Standard Facebook image"
|
221 |
msgstr "Normál Facebook kép"
|
222 |
|
223 |
+
#: facebook-button-plugin.php:462
|
224 |
msgid "Custom Facebook image"
|
225 |
msgstr "Egyéni Facebook kép"
|
226 |
|
227 |
+
#: facebook-button-plugin.php:465
|
228 |
msgid ""
|
229 |
"To use custom image you need to setup permissions to upload directory of "
|
230 |
"your site"
|
232 |
"Egyedi kép használatához az oldala feltöltési könyvtárához jogosultságot "
|
233 |
"kell beállítania"
|
234 |
|
235 |
+
#: facebook-button-plugin.php:472
|
236 |
msgid "Current image"
|
237 |
msgstr "Aktuális kép"
|
238 |
|
239 |
+
#: facebook-button-plugin.php:480
|
240 |
msgid ""
|
241 |
"Image properties: max image width:100px; max image height:40px; max image "
|
242 |
"size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
244 |
"Kép paraméterek: max kép szélesség: 100px; max kép magasság: 40px; max kép "
|
245 |
"méret: 32Kb; kép típusok:\"jpg\", \"jpeg\", \"png\"."
|
246 |
|
247 |
+
#: facebook-button-plugin.php:484
|
248 |
msgid "Button layout"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: facebook-button-plugin.php:498
|
252 |
#, fuzzy
|
253 |
msgid "Like button action"
|
254 |
msgstr "Facebook gombok helye"
|
255 |
|
256 |
+
#: facebook-button-plugin.php:502
|
257 |
msgid "Recommend"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: facebook-button-plugin.php:507
|
261 |
#, fuzzy
|
262 |
msgid "Show faces"
|
263 |
msgstr "URL megjelenítése oldalakon"
|
264 |
|
265 |
+
#: facebook-button-plugin.php:513
|
266 |
msgid "Layout width"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: facebook-button-plugin.php:519
|
270 |
msgid "Color scheme"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: facebook-button-plugin.php:522
|
274 |
msgid "Light"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: facebook-button-plugin.php:523
|
278 |
msgid "Dark"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: facebook-button-plugin.php:528
|
282 |
msgid "Html tag for \"Like\" button"
|
283 |
msgstr "A \"Like\" gomb html címkéje"
|
284 |
|
285 |
+
#: facebook-button-plugin.php:533
|
286 |
msgid "Use this tag to improve validation of your site"
|
287 |
msgstr "Használja ezt a címkét oldala minősítésének javításához"
|
288 |
|
289 |
+
#: facebook-button-plugin.php:546
|
|
|
|
|
|
|
|
|
290 |
msgid "\"Like\" for an entire site on every page:"
|
291 |
msgstr "\"Like\" a weboldal minden lapjára:"
|
292 |
|
293 |
+
#: facebook-button-plugin.php:548
|
294 |
msgid ""
|
295 |
"Notice: \"Like for the entire site\" option does not create an extra button. "
|
296 |
"This option merely allows your users to like the entire website when this "
|
302 |
"kedveljék, ha ez a beállítás engedélyezett vagy egy egyedi bejegyzést, ha ez "
|
303 |
"a beállítás kikapcsolt, ha a normál \"Like\" gombra kattintanak."
|
304 |
|
305 |
+
#: facebook-button-plugin.php:570 facebook-button-plugin.php:626
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
306 |
msgid "Save Changes"
|
307 |
msgstr "Változások mentése"
|
308 |
|
309 |
+
#: facebook-button-plugin.php:582
|
310 |
#, fuzzy
|
311 |
msgid "Facebook Button preview:"
|
312 |
msgstr "Facebook Gomb Beállítások"
|
313 |
|
314 |
+
#: facebook-button-plugin.php:608
|
315 |
msgid ""
|
316 |
"Please choose the necessary post types (or single pages) where Facebook "
|
317 |
"button will be displayed:"
|
319 |
"Kérjük válassza ki a szükséges bejegyzés típusokat (vagy egyedi oldalakat) "
|
320 |
"ahol a Facebook gomb megjelenjen:"
|
321 |
|
322 |
+
#: facebook-button-plugin.php:615
|
323 |
msgid "Show URL for pages"
|
324 |
msgstr "URL megjelenítése oldalakon"
|
325 |
|
326 |
+
#: facebook-button-plugin.php:621
|
327 |
msgid "Example of the site's pages tree"
|
328 |
msgstr "Példa az oldal lap struktúrájának fájára"
|
329 |
|
330 |
+
#: facebook-button-plugin.php:621
|
331 |
msgid "Example of site pages' tree"
|
332 |
msgstr "Példa oldal lapjainak fa struktúrájára"
|
333 |
|
334 |
+
#: facebook-button-plugin.php:757
|
335 |
#, fuzzy
|
336 |
msgid "Add Facebook buttons to your page or post"
|
337 |
msgstr "Facebook gombok helye"
|
338 |
|
339 |
+
#: facebook-button-plugin.php:866
|
340 |
msgid "FAQ"
|
341 |
msgstr "Gy.I.K."
|
342 |
|
343 |
+
#: facebook-button-plugin.php:867
|
344 |
msgid "Support"
|
345 |
msgstr "Támogatás"
|
346 |
|
languages/facebook-button-plugin-id_ID.mo
CHANGED
Binary file
|
languages/facebook-button-plugin-id_ID.po
CHANGED
@@ -2,9 +2,9 @@ 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: bestwebsoft.com <
|
8 |
"Language-Team: nasrulhaq <nasrulhaq81@gmail.com>\n"
|
9 |
"Language: es_ES\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -13,285 +13,330 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit 1.
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: facebook-button-plugin.php:34
|
20 |
-
#: facebook-button-plugin.php:290
|
21 |
msgid "Facebook Button Settings"
|
22 |
msgstr "Pengaturan Facebook Button"
|
23 |
|
24 |
-
#: facebook-button-plugin.php:
|
25 |
msgid "Settings saved"
|
26 |
msgstr "Simpan Pengaturan"
|
27 |
|
28 |
-
#: facebook-button-plugin.php:
|
29 |
msgid "Error: File size > 32K"
|
30 |
msgstr "SALAH: Ukuran file lebih besar dari 32KB"
|
31 |
|
32 |
-
#: facebook-button-plugin.php:
|
33 |
msgid "Error: Invalid file type"
|
34 |
msgstr "SALAH: Tipe data tidak benar"
|
35 |
|
36 |
-
#: facebook-button-plugin.php:
|
37 |
msgid "Upload successful."
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: facebook-button-plugin.php:
|
41 |
msgid "Error: moving file failed"
|
42 |
msgstr "Salah: gagal memindahkan data"
|
43 |
|
44 |
-
#: facebook-button-plugin.php:
|
45 |
msgid "Error: check image width or height"
|
46 |
msgstr "Salah: periksa lebar atau panjang gambar"
|
47 |
|
48 |
-
#: facebook-button-plugin.php:
|
49 |
msgid "Uploading Error: check image properties"
|
50 |
msgstr "Gagal Mengunggah: periksa properti gambar"
|
51 |
|
52 |
-
#: facebook-button-plugin.php:
|
53 |
msgid "All plugin settings were restored."
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: facebook-button-plugin.php:
|
57 |
-
#: facebook-button-plugin.php:
|
58 |
-
#: facebook-button-plugin.php:797
|
59 |
msgid "Settings"
|
60 |
msgstr "Pengaturan"
|
61 |
|
62 |
-
#: facebook-button-plugin.php:
|
63 |
#, fuzzy
|
64 |
msgid "Extra settings"
|
65 |
msgstr "Pengaturan"
|
66 |
|
67 |
-
#: facebook-button-plugin.php:
|
68 |
msgid "Go PRO"
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: facebook-button-plugin.php:
|
72 |
msgid "Please, enable JavaScript in Your browser."
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: facebook-button-plugin.php:
|
76 |
#, fuzzy, php-format
|
77 |
-
msgid "
|
78 |
-
|
|
|
|
|
|
|
|
|
79 |
|
80 |
-
#: facebook-button-plugin.php:
|
81 |
#, php-format
|
82 |
-
msgid "
|
|
|
|
|
|
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: facebook-button-plugin.php:
|
86 |
#, fuzzy
|
87 |
msgid "Display button"
|
88 |
msgstr "Tampilan tombol:"
|
89 |
|
90 |
-
#: facebook-button-plugin.php:
|
91 |
msgid "My Page"
|
92 |
msgstr "Halamanku"
|
93 |
|
94 |
-
#: facebook-button-plugin.php:
|
95 |
-
#: facebook-button-plugin.php:438
|
96 |
msgid "Like"
|
97 |
msgstr "Suka"
|
98 |
|
99 |
-
#: facebook-button-plugin.php:
|
100 |
msgid "Share"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: facebook-button-plugin.php:
|
104 |
#, fuzzy
|
105 |
msgid "Facebook buttons position"
|
106 |
msgstr "Posisi Tombol Facebook"
|
107 |
|
108 |
-
#: facebook-button-plugin.php:
|
109 |
msgid "Before"
|
110 |
msgstr "Sebelum"
|
111 |
|
112 |
-
#: facebook-button-plugin.php:
|
113 |
msgid "After"
|
114 |
msgstr "Setelah"
|
115 |
|
116 |
-
#: facebook-button-plugin.php:
|
117 |
msgid "Before and After"
|
118 |
msgstr "Sebelum dan Setelah"
|
119 |
|
120 |
-
#: facebook-button-plugin.php:
|
121 |
msgid "Shortcode"
|
122 |
msgstr "Kode Pendek"
|
123 |
|
124 |
-
#: facebook-button-plugin.php:
|
125 |
#, fuzzy
|
126 |
msgid "Facebook buttons language"
|
127 |
msgstr "Bahasa Facebook Button:"
|
128 |
|
129 |
-
#: facebook-button-plugin.php:
|
130 |
-
|
|
|
131 |
msgstr "Ubah bahasa Facebook Like Button"
|
132 |
|
133 |
-
#: facebook-button-plugin.php:
|
134 |
-
#: facebook-button-plugin.php:
|
135 |
-
#: facebook-button-plugin.php:372
|
136 |
msgid "Use the current site language"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: facebook-button-plugin.php:
|
140 |
-
#: facebook-button-plugin.php:
|
141 |
-
#: facebook-button-plugin.php:373
|
142 |
msgid "Using"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: facebook-button-plugin.php:
|
146 |
#, fuzzy
|
147 |
msgid "Activate"
|
148 |
msgstr "Aktif Eklentiler"
|
149 |
|
150 |
-
#: facebook-button-plugin.php:
|
151 |
msgid "Download"
|
152 |
msgstr "Ä°ndir"
|
153 |
|
154 |
-
#: facebook-button-plugin.php:
|
155 |
#, fuzzy
|
156 |
msgid "Display buttons in excerpt"
|
157 |
msgstr "Tampilan tombol:"
|
158 |
|
159 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
160 |
#, fuzzy
|
161 |
msgid "Your Facebook ID or username"
|
162 |
msgstr " ID Facebook:"
|
163 |
|
164 |
-
#: facebook-button-plugin.php:
|
165 |
msgid "\"My page\" button image"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: facebook-button-plugin.php:
|
169 |
msgid "Standard Facebook image"
|
170 |
msgstr "Standar gambar Facebook "
|
171 |
|
172 |
-
#: facebook-button-plugin.php:
|
173 |
msgid "Custom Facebook image"
|
174 |
msgstr "Kustom Gambar Facebook "
|
175 |
|
176 |
-
#: facebook-button-plugin.php:
|
177 |
-
msgid "
|
|
|
|
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: facebook-button-plugin.php:
|
181 |
#, fuzzy
|
182 |
msgid "Current image"
|
183 |
msgstr "Gambar tertentu:"
|
184 |
|
185 |
-
#: facebook-button-plugin.php:
|
186 |
-
msgid "
|
187 |
-
|
|
|
|
|
|
|
|
|
188 |
|
189 |
-
#: facebook-button-plugin.php:
|
190 |
msgid "Button layout"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: facebook-button-plugin.php:
|
194 |
msgid "Like button action"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: facebook-button-plugin.php:
|
198 |
msgid "Recommend"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: facebook-button-plugin.php:
|
202 |
msgid "Show faces"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: facebook-button-plugin.php:
|
206 |
msgid "Layout width"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: facebook-button-plugin.php:
|
210 |
msgid "Color scheme"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: facebook-button-plugin.php:
|
214 |
msgid "Light"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: facebook-button-plugin.php:
|
218 |
msgid "Dark"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: facebook-button-plugin.php:
|
222 |
msgid "Html tag for \"Like\" button"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: facebook-button-plugin.php:
|
226 |
msgid "Use this tag to improve validation of your site"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: facebook-button-plugin.php:
|
230 |
-
#: facebook-button-plugin.php:516
|
231 |
-
msgid "Close"
|
232 |
-
msgstr ""
|
233 |
-
|
234 |
-
#: facebook-button-plugin.php:483
|
235 |
msgid "\"Like\" for an entire site on every page:"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: facebook-button-plugin.php:
|
239 |
-
msgid "
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
msgid "If you upgrade to Pro version all your settings will be saved."
|
245 |
-
msgstr ""
|
246 |
-
|
247 |
-
#: facebook-button-plugin.php:497
|
248 |
-
#: facebook-button-plugin.php:525
|
249 |
-
#: facebook-button-plugin.php:574
|
250 |
-
msgid "Unlock premium options by upgrading to Pro version"
|
251 |
-
msgstr ""
|
252 |
-
|
253 |
-
#: facebook-button-plugin.php:499
|
254 |
-
#: facebook-button-plugin.php:527
|
255 |
-
#: facebook-button-plugin.php:576
|
256 |
-
msgid "Learn More"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: facebook-button-plugin.php:
|
260 |
-
#: facebook-button-plugin.php:562
|
261 |
msgid "Save Changes"
|
262 |
msgstr "Simpan Perubahan"
|
263 |
|
264 |
-
#: facebook-button-plugin.php:
|
265 |
#, fuzzy
|
266 |
msgid "Facebook Button preview:"
|
267 |
msgstr "Tombol Facebook"
|
268 |
|
269 |
-
#: facebook-button-plugin.php:
|
270 |
-
msgid "
|
|
|
|
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: facebook-button-plugin.php:
|
274 |
msgid "Show URL for pages"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: facebook-button-plugin.php:
|
278 |
msgid "Example of the site's pages tree"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: facebook-button-plugin.php:
|
282 |
msgid "Example of site pages' tree"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: facebook-button-plugin.php:
|
286 |
#, fuzzy
|
287 |
msgid "Add Facebook buttons to your page or post"
|
288 |
msgstr "Posisi Tombol Facebook"
|
289 |
|
290 |
-
#: facebook-button-plugin.php:
|
291 |
msgid "FAQ"
|
292 |
msgstr "SSS (Sık Sorulan Sorular)"
|
293 |
|
294 |
-
#: facebook-button-plugin.php:
|
295 |
msgid "Support"
|
296 |
msgstr "Dukungan"
|
297 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-02-04 12:31+0300\n"
|
6 |
+
"PO-Revision-Date: 2016-02-04 12:31+0300\n"
|
7 |
+
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: nasrulhaq <nasrulhaq81@gmail.com>\n"
|
9 |
"Language: es_ES\n"
|
10 |
"MIME-Version: 1.0\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: facebook-button-plugin.php:34 facebook-button-plugin.php:292
|
|
|
20 |
msgid "Facebook Button Settings"
|
21 |
msgstr "Pengaturan Facebook Button"
|
22 |
|
23 |
+
#: facebook-button-plugin.php:214
|
24 |
msgid "Settings saved"
|
25 |
msgstr "Simpan Pengaturan"
|
26 |
|
27 |
+
#: facebook-button-plugin.php:240
|
28 |
msgid "Error: File size > 32K"
|
29 |
msgstr "SALAH: Ukuran file lebih besar dari 32KB"
|
30 |
|
31 |
+
#: facebook-button-plugin.php:243
|
32 |
msgid "Error: Invalid file type"
|
33 |
msgstr "SALAH: Tipe data tidak benar"
|
34 |
|
35 |
+
#: facebook-button-plugin.php:249
|
36 |
msgid "Upload successful."
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: facebook-button-plugin.php:259
|
40 |
msgid "Error: moving file failed"
|
41 |
msgstr "Salah: gagal memindahkan data"
|
42 |
|
43 |
+
#: facebook-button-plugin.php:262
|
44 |
msgid "Error: check image width or height"
|
45 |
msgstr "Salah: periksa lebar atau panjang gambar"
|
46 |
|
47 |
+
#: facebook-button-plugin.php:266
|
48 |
msgid "Uploading Error: check image properties"
|
49 |
msgstr "Gagal Mengunggah: periksa properti gambar"
|
50 |
|
51 |
+
#: facebook-button-plugin.php:279
|
52 |
msgid "All plugin settings were restored."
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: facebook-button-plugin.php:294 facebook-button-plugin.php:851
|
56 |
+
#: facebook-button-plugin.php:865
|
|
|
57 |
msgid "Settings"
|
58 |
msgstr "Pengaturan"
|
59 |
|
60 |
+
#: facebook-button-plugin.php:295
|
61 |
#, fuzzy
|
62 |
msgid "Extra settings"
|
63 |
msgstr "Pengaturan"
|
64 |
|
65 |
+
#: facebook-button-plugin.php:296
|
66 |
msgid "Go PRO"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: facebook-button-plugin.php:299
|
70 |
msgid "Please, enable JavaScript in Your browser."
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: facebook-button-plugin.php:314
|
74 |
#, fuzzy, php-format
|
75 |
+
msgid ""
|
76 |
+
"If you would like to add Facebook buttons to your page or post, please use "
|
77 |
+
"%s button"
|
78 |
+
msgstr ""
|
79 |
+
"Jika anda ingin menambahkan tombol Facebook di website anda, cukup salin "
|
80 |
+
"kode singkat kedalam posting atau page anda:"
|
81 |
|
82 |
+
#: facebook-button-plugin.php:319
|
83 |
#, php-format
|
84 |
+
msgid ""
|
85 |
+
"You can add Facebook buttons to your page or post by clicking on %s button "
|
86 |
+
"in the content edit block using the Visual mode. If the button isn't "
|
87 |
+
"displayed, please use the shortcode %s"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: facebook-button-plugin.php:330
|
91 |
#, fuzzy
|
92 |
msgid "Display button"
|
93 |
msgstr "Tampilan tombol:"
|
94 |
|
95 |
+
#: facebook-button-plugin.php:333
|
96 |
msgid "My Page"
|
97 |
msgstr "Halamanku"
|
98 |
|
99 |
+
#: facebook-button-plugin.php:334 facebook-button-plugin.php:501
|
|
|
100 |
msgid "Like"
|
101 |
msgstr "Suka"
|
102 |
|
103 |
+
#: facebook-button-plugin.php:335
|
104 |
msgid "Share"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: facebook-button-plugin.php:340
|
108 |
#, fuzzy
|
109 |
msgid "Facebook buttons position"
|
110 |
msgstr "Posisi Tombol Facebook"
|
111 |
|
112 |
+
#: facebook-button-plugin.php:343
|
113 |
msgid "Before"
|
114 |
msgstr "Sebelum"
|
115 |
|
116 |
+
#: facebook-button-plugin.php:344
|
117 |
msgid "After"
|
118 |
msgstr "Setelah"
|
119 |
|
120 |
+
#: facebook-button-plugin.php:345
|
121 |
msgid "Before and After"
|
122 |
msgstr "Sebelum dan Setelah"
|
123 |
|
124 |
+
#: facebook-button-plugin.php:346
|
125 |
msgid "Shortcode"
|
126 |
msgstr "Kode Pendek"
|
127 |
|
128 |
+
#: facebook-button-plugin.php:351
|
129 |
#, fuzzy
|
130 |
msgid "Facebook buttons language"
|
131 |
msgstr "Bahasa Facebook Button:"
|
132 |
|
133 |
+
#: facebook-button-plugin.php:362
|
134 |
+
#, fuzzy
|
135 |
+
msgid "Change the language of Facebook Button"
|
136 |
msgstr "Ubah bahasa Facebook Like Button"
|
137 |
|
138 |
+
#: facebook-button-plugin.php:367 facebook-button-plugin.php:370
|
139 |
+
#: facebook-button-plugin.php:375
|
|
|
140 |
msgid "Use the current site language"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: facebook-button-plugin.php:367 facebook-button-plugin.php:371
|
144 |
+
#: facebook-button-plugin.php:376
|
|
|
145 |
msgid "Using"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: facebook-button-plugin.php:371
|
149 |
#, fuzzy
|
150 |
msgid "Activate"
|
151 |
msgstr "Aktif Eklentiler"
|
152 |
|
153 |
+
#: facebook-button-plugin.php:376
|
154 |
msgid "Download"
|
155 |
msgstr "Ä°ndir"
|
156 |
|
157 |
+
#: facebook-button-plugin.php:383
|
158 |
#, fuzzy
|
159 |
msgid "Display buttons in excerpt"
|
160 |
msgstr "Tampilan tombol:"
|
161 |
|
162 |
+
#: facebook-button-plugin.php:393 facebook-button-plugin.php:542
|
163 |
+
#: facebook-button-plugin.php:579
|
164 |
+
msgid "Close"
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: facebook-button-plugin.php:397
|
168 |
+
msgid "Meta tags"
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: facebook-button-plugin.php:400
|
172 |
+
msgid "Image"
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: facebook-button-plugin.php:403
|
176 |
+
msgid "Featured Image"
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: facebook-button-plugin.php:407
|
180 |
+
#, fuzzy
|
181 |
+
msgid "Custom Image"
|
182 |
+
msgstr "Kustom Gambar Facebook "
|
183 |
+
|
184 |
+
#: facebook-button-plugin.php:407
|
185 |
+
msgid "This image will be used for all of the posts"
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: facebook-button-plugin.php:417
|
189 |
+
msgid "Description"
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: facebook-button-plugin.php:420
|
193 |
+
msgid "Post excerpt"
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: facebook-button-plugin.php:425
|
197 |
+
msgid "This description will be used for all of the posts"
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: facebook-button-plugin.php:432 facebook-button-plugin.php:553
|
201 |
+
#: facebook-button-plugin.php:631
|
202 |
+
msgid "If you upgrade to Pro version all your settings will be saved."
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: facebook-button-plugin.php:439 facebook-button-plugin.php:560
|
206 |
+
#: facebook-button-plugin.php:588 facebook-button-plugin.php:638
|
207 |
+
msgid "Unlock premium options by upgrading to Pro version"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: facebook-button-plugin.php:441 facebook-button-plugin.php:562
|
211 |
+
#: facebook-button-plugin.php:590 facebook-button-plugin.php:640
|
212 |
+
msgid "Learn More"
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: facebook-button-plugin.php:449
|
216 |
#, fuzzy
|
217 |
msgid "Your Facebook ID or username"
|
218 |
msgstr " ID Facebook:"
|
219 |
|
220 |
+
#: facebook-button-plugin.php:456
|
221 |
msgid "\"My page\" button image"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: facebook-button-plugin.php:461
|
225 |
msgid "Standard Facebook image"
|
226 |
msgstr "Standar gambar Facebook "
|
227 |
|
228 |
+
#: facebook-button-plugin.php:462
|
229 |
msgid "Custom Facebook image"
|
230 |
msgstr "Kustom Gambar Facebook "
|
231 |
|
232 |
+
#: facebook-button-plugin.php:465
|
233 |
+
msgid ""
|
234 |
+
"To use custom image you need to setup permissions to upload directory of "
|
235 |
+
"your site"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: facebook-button-plugin.php:472
|
239 |
#, fuzzy
|
240 |
msgid "Current image"
|
241 |
msgstr "Gambar tertentu:"
|
242 |
|
243 |
+
#: facebook-button-plugin.php:480
|
244 |
+
msgid ""
|
245 |
+
"Image properties: max image width:100px; max image height:40px; max image "
|
246 |
+
"size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
247 |
+
msgstr ""
|
248 |
+
"properti gambar: lebar gambar maks:100px; panjang gambar maks:40px; ukuran "
|
249 |
+
"gambar maks:32Kb; tipe gambar:\"jpg\",\"jpeg\", \"png\"."
|
250 |
|
251 |
+
#: facebook-button-plugin.php:484
|
252 |
msgid "Button layout"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: facebook-button-plugin.php:498
|
256 |
msgid "Like button action"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: facebook-button-plugin.php:502
|
260 |
msgid "Recommend"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: facebook-button-plugin.php:507
|
264 |
msgid "Show faces"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: facebook-button-plugin.php:513
|
268 |
msgid "Layout width"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: facebook-button-plugin.php:519
|
272 |
msgid "Color scheme"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: facebook-button-plugin.php:522
|
276 |
msgid "Light"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: facebook-button-plugin.php:523
|
280 |
msgid "Dark"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: facebook-button-plugin.php:528
|
284 |
msgid "Html tag for \"Like\" button"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: facebook-button-plugin.php:533
|
288 |
msgid "Use this tag to improve validation of your site"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: facebook-button-plugin.php:546
|
|
|
|
|
|
|
|
|
|
|
292 |
msgid "\"Like\" for an entire site on every page:"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: facebook-button-plugin.php:548
|
296 |
+
msgid ""
|
297 |
+
"Notice: \"Like for the entire site\" option does not create an extra button. "
|
298 |
+
"This option merely allows your users to like the entire website when this "
|
299 |
+
"option is enabled, or a single post when this option is disabled, when "
|
300 |
+
"clicking the regular \"Like\" button."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: facebook-button-plugin.php:570 facebook-button-plugin.php:626
|
|
|
304 |
msgid "Save Changes"
|
305 |
msgstr "Simpan Perubahan"
|
306 |
|
307 |
+
#: facebook-button-plugin.php:582
|
308 |
#, fuzzy
|
309 |
msgid "Facebook Button preview:"
|
310 |
msgstr "Tombol Facebook"
|
311 |
|
312 |
+
#: facebook-button-plugin.php:608
|
313 |
+
msgid ""
|
314 |
+
"Please choose the necessary post types (or single pages) where Facebook "
|
315 |
+
"button will be displayed:"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: facebook-button-plugin.php:615
|
319 |
msgid "Show URL for pages"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: facebook-button-plugin.php:621
|
323 |
msgid "Example of the site's pages tree"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: facebook-button-plugin.php:621
|
327 |
msgid "Example of site pages' tree"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: facebook-button-plugin.php:757
|
331 |
#, fuzzy
|
332 |
msgid "Add Facebook buttons to your page or post"
|
333 |
msgstr "Posisi Tombol Facebook"
|
334 |
|
335 |
+
#: facebook-button-plugin.php:866
|
336 |
msgid "FAQ"
|
337 |
msgstr "SSS (Sık Sorulan Sorular)"
|
338 |
|
339 |
+
#: facebook-button-plugin.php:867
|
340 |
msgid "Support"
|
341 |
msgstr "Dukungan"
|
342 |
|
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"
|
@@ -52,8 +52,8 @@ msgstr "Ошибка загрузки: Проверьте опции изобр
|
|
52 |
msgid "All plugin settings were restored."
|
53 |
msgstr "Все настройки плагина восстановлены."
|
54 |
|
55 |
-
#: facebook-button-plugin.php:294 facebook-button-plugin.php:
|
56 |
-
#: facebook-button-plugin.php:
|
57 |
msgid "Settings"
|
58 |
msgstr "Настройки"
|
59 |
|
@@ -97,7 +97,7 @@ msgstr "Отображение кнопок"
|
|
97 |
msgid "My Page"
|
98 |
msgstr "Моя страница"
|
99 |
|
100 |
-
#: facebook-button-plugin.php:334 facebook-button-plugin.php:
|
101 |
msgid "Like"
|
102 |
msgstr "Нравиться"
|
103 |
|
@@ -155,23 +155,75 @@ msgstr "Загрузить"
|
|
155 |
msgid "Display buttons in excerpt"
|
156 |
msgstr "Отображать кнопки для цитаты"
|
157 |
|
158 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
159 |
msgid "Your Facebook ID or username"
|
160 |
msgstr "Ваш Facebook ID или имя пользователя"
|
161 |
|
162 |
-
#: facebook-button-plugin.php:
|
163 |
msgid "\"My page\" button image"
|
164 |
msgstr "Изображение кнопки \"Моя страница\""
|
165 |
|
166 |
-
#: facebook-button-plugin.php:
|
167 |
msgid "Standard Facebook image"
|
168 |
msgstr "Стандартная картинка Facebook"
|
169 |
|
170 |
-
#: facebook-button-plugin.php:
|
171 |
msgid "Custom Facebook image"
|
172 |
msgstr "Пользовательская картинка Facebook"
|
173 |
|
174 |
-
#: facebook-button-plugin.php:
|
175 |
msgid ""
|
176 |
"To use custom image you need to setup permissions to upload directory of "
|
177 |
"your site"
|
@@ -179,11 +231,11 @@ msgstr ""
|
|
179 |
"Для использования кастомного изображения Вам нужно выдать права доступа на "
|
180 |
"папку загрузок на вашем сайте"
|
181 |
|
182 |
-
#: facebook-button-plugin.php:
|
183 |
msgid "Current image"
|
184 |
msgstr "Текущее изображение"
|
185 |
|
186 |
-
#: facebook-button-plugin.php:
|
187 |
msgid ""
|
188 |
"Image properties: max image width:100px; max image height:40px; max image "
|
189 |
"size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
@@ -191,55 +243,51 @@ msgstr ""
|
|
191 |
"Опции изображения для загрузки: максимальная ширина:100px; максимальная "
|
192 |
"высота:40px; максимальный размер:32Kb; тип файла:\"jpg\", \"jpeg\", \"png\"."
|
193 |
|
194 |
-
#: facebook-button-plugin.php:
|
195 |
msgid "Button layout"
|
196 |
msgstr "Вид кнопок"
|
197 |
|
198 |
-
#: facebook-button-plugin.php:
|
199 |
msgid "Like button action"
|
200 |
msgstr "Действие кнопки \"Like\""
|
201 |
|
202 |
-
#: facebook-button-plugin.php:
|
203 |
msgid "Recommend"
|
204 |
msgstr "Рекомендую"
|
205 |
|
206 |
-
#: facebook-button-plugin.php:
|
207 |
msgid "Show faces"
|
208 |
msgstr "Показать лица"
|
209 |
|
210 |
-
#: facebook-button-plugin.php:
|
211 |
msgid "Layout width"
|
212 |
msgstr "Ширина блока"
|
213 |
|
214 |
-
#: facebook-button-plugin.php:
|
215 |
msgid "Color scheme"
|
216 |
msgstr "Цветовая схема"
|
217 |
|
218 |
-
#: facebook-button-plugin.php:
|
219 |
msgid "Light"
|
220 |
msgstr "Светлая"
|
221 |
|
222 |
-
#: facebook-button-plugin.php:
|
223 |
msgid "Dark"
|
224 |
msgstr "Тёмная"
|
225 |
|
226 |
-
#: facebook-button-plugin.php:
|
227 |
msgid "Html tag for \"Like\" button"
|
228 |
msgstr "Html тэг для кнопки \"Нравиться\""
|
229 |
|
230 |
-
#: facebook-button-plugin.php:
|
231 |
msgid "Use this tag to improve validation of your site"
|
232 |
msgstr "Используйте этот тэг для лучшей валидации вашего сайта"
|
233 |
|
234 |
-
#: facebook-button-plugin.php:
|
235 |
-
msgid "Close"
|
236 |
-
msgstr "Закрыть"
|
237 |
-
|
238 |
-
#: facebook-button-plugin.php:486
|
239 |
msgid "\"Like\" for an entire site on every page:"
|
240 |
msgstr "Ставить \"Нравиться\" всему сайту на каждой странице:"
|
241 |
|
242 |
-
#: facebook-button-plugin.php:
|
243 |
msgid ""
|
244 |
"Notice: \"Like for the entire site\" option does not create an extra button. "
|
245 |
"This option merely allows your users to like the entire website when this "
|
@@ -251,29 +299,15 @@ msgstr ""
|
|
251 |
"ставить \"Нравиться\" для всего сайта, если эта опция включена, или "
|
252 |
"\"Нравиться\" для отдельной записи, когда эта опция выключена."
|
253 |
|
254 |
-
#: facebook-button-plugin.php:
|
255 |
-
msgid "If you upgrade to Pro version all your settings will be saved."
|
256 |
-
msgstr "При установке Pro версии плагина, все ваши настройки сохраняются."
|
257 |
-
|
258 |
-
#: facebook-button-plugin.php:500 facebook-button-plugin.php:528
|
259 |
-
#: facebook-button-plugin.php:578
|
260 |
-
msgid "Unlock premium options by upgrading to Pro version"
|
261 |
-
msgstr "Активируйте премиум опции обновившись до Pro версии"
|
262 |
-
|
263 |
-
#: facebook-button-plugin.php:502 facebook-button-plugin.php:530
|
264 |
-
#: facebook-button-plugin.php:580
|
265 |
-
msgid "Learn More"
|
266 |
-
msgstr "Подробнее"
|
267 |
-
|
268 |
-
#: facebook-button-plugin.php:510 facebook-button-plugin.php:566
|
269 |
msgid "Save Changes"
|
270 |
msgstr "Сохранить изменения"
|
271 |
|
272 |
-
#: facebook-button-plugin.php:
|
273 |
msgid "Facebook Button preview:"
|
274 |
msgstr "Предварительный просмотр Facebook кнопок"
|
275 |
|
276 |
-
#: facebook-button-plugin.php:
|
277 |
msgid ""
|
278 |
"Please choose the necessary post types (or single pages) where Facebook "
|
279 |
"button will be displayed:"
|
@@ -281,30 +315,36 @@ msgstr ""
|
|
281 |
"Пожалуйста, выберите те типы постов (или отдельные страницы), где будут "
|
282 |
"отображаться кнопки Facebook:"
|
283 |
|
284 |
-
#: facebook-button-plugin.php:
|
285 |
msgid "Show URL for pages"
|
286 |
msgstr "Отображать URL для страниц"
|
287 |
|
288 |
-
#: facebook-button-plugin.php:
|
289 |
msgid "Example of the site's pages tree"
|
290 |
msgstr "Пример дерева страниц сайта"
|
291 |
|
292 |
-
#: facebook-button-plugin.php:
|
293 |
msgid "Example of site pages' tree"
|
294 |
msgstr "Пример дерева страниц сайта"
|
295 |
|
296 |
-
#: facebook-button-plugin.php:
|
297 |
msgid "Add Facebook buttons to your page or post"
|
298 |
msgstr "Добавить Facebook кнопки на вашу страницу или пост"
|
299 |
|
300 |
-
#: facebook-button-plugin.php:
|
301 |
msgid "FAQ"
|
302 |
msgstr "FAQ"
|
303 |
|
304 |
-
#: facebook-button-plugin.php:
|
305 |
msgid "Support"
|
306 |
msgstr "Поддержка"
|
307 |
|
|
|
|
|
|
|
|
|
|
|
|
|
308 |
#~ msgid "Notice:"
|
309 |
#~ msgstr "Внимание:"
|
310 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-02-04 12:31+0300\n"
|
6 |
+
"PO-Revision-Date: 2016-02-04 12:31+0300\n"
|
7 |
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
52 |
msgid "All plugin settings were restored."
|
53 |
msgstr "Все настройки плагина восстановлены."
|
54 |
|
55 |
+
#: facebook-button-plugin.php:294 facebook-button-plugin.php:851
|
56 |
+
#: facebook-button-plugin.php:865
|
57 |
msgid "Settings"
|
58 |
msgstr "Настройки"
|
59 |
|
97 |
msgid "My Page"
|
98 |
msgstr "Моя страница"
|
99 |
|
100 |
+
#: facebook-button-plugin.php:334 facebook-button-plugin.php:501
|
101 |
msgid "Like"
|
102 |
msgstr "Нравиться"
|
103 |
|
155 |
msgid "Display buttons in excerpt"
|
156 |
msgstr "Отображать кнопки для цитаты"
|
157 |
|
158 |
+
#: facebook-button-plugin.php:393 facebook-button-plugin.php:542
|
159 |
+
#: facebook-button-plugin.php:579
|
160 |
+
msgid "Close"
|
161 |
+
msgstr "Закрыть"
|
162 |
+
|
163 |
+
#: facebook-button-plugin.php:397
|
164 |
+
msgid "Meta tags"
|
165 |
+
msgstr "Мета теги"
|
166 |
+
|
167 |
+
#: facebook-button-plugin.php:400
|
168 |
+
msgid "Image"
|
169 |
+
msgstr "Изображение"
|
170 |
+
|
171 |
+
#: facebook-button-plugin.php:403
|
172 |
+
msgid "Featured Image"
|
173 |
+
msgstr "Миниатюра записи"
|
174 |
+
|
175 |
+
#: facebook-button-plugin.php:407
|
176 |
+
msgid "Custom Image"
|
177 |
+
msgstr "Пользовательское изображение"
|
178 |
+
|
179 |
+
#: facebook-button-plugin.php:407
|
180 |
+
msgid "This image will be used for all of the posts"
|
181 |
+
msgstr "Это изображение будет использоваться для всех постов"
|
182 |
+
|
183 |
+
#: facebook-button-plugin.php:417
|
184 |
+
msgid "Description"
|
185 |
+
msgstr "Краткое описание"
|
186 |
+
|
187 |
+
#: facebook-button-plugin.php:420
|
188 |
+
msgid "Post excerpt"
|
189 |
+
msgstr "Цитата"
|
190 |
+
|
191 |
+
#: facebook-button-plugin.php:425
|
192 |
+
msgid "This description will be used for all of the posts"
|
193 |
+
msgstr "Это краткое описание будет использоваться для всех постов"
|
194 |
+
|
195 |
+
#: facebook-button-plugin.php:432 facebook-button-plugin.php:553
|
196 |
+
#: facebook-button-plugin.php:631
|
197 |
+
msgid "If you upgrade to Pro version all your settings will be saved."
|
198 |
+
msgstr "При установке Pro версии плагина, все ваши настройки сохраняются."
|
199 |
+
|
200 |
+
#: facebook-button-plugin.php:439 facebook-button-plugin.php:560
|
201 |
+
#: facebook-button-plugin.php:588 facebook-button-plugin.php:638
|
202 |
+
msgid "Unlock premium options by upgrading to Pro version"
|
203 |
+
msgstr "Активируйте премиум опции обновившись до Pro версии"
|
204 |
+
|
205 |
+
#: facebook-button-plugin.php:441 facebook-button-plugin.php:562
|
206 |
+
#: facebook-button-plugin.php:590 facebook-button-plugin.php:640
|
207 |
+
msgid "Learn More"
|
208 |
+
msgstr "Подробнее"
|
209 |
+
|
210 |
+
#: facebook-button-plugin.php:449
|
211 |
msgid "Your Facebook ID or username"
|
212 |
msgstr "Ваш Facebook ID или имя пользователя"
|
213 |
|
214 |
+
#: facebook-button-plugin.php:456
|
215 |
msgid "\"My page\" button image"
|
216 |
msgstr "Изображение кнопки \"Моя страница\""
|
217 |
|
218 |
+
#: facebook-button-plugin.php:461
|
219 |
msgid "Standard Facebook image"
|
220 |
msgstr "Стандартная картинка Facebook"
|
221 |
|
222 |
+
#: facebook-button-plugin.php:462
|
223 |
msgid "Custom Facebook image"
|
224 |
msgstr "Пользовательская картинка Facebook"
|
225 |
|
226 |
+
#: facebook-button-plugin.php:465
|
227 |
msgid ""
|
228 |
"To use custom image you need to setup permissions to upload directory of "
|
229 |
"your site"
|
231 |
"Для использования кастомного изображения Вам нужно выдать права доступа на "
|
232 |
"папку загрузок на вашем сайте"
|
233 |
|
234 |
+
#: facebook-button-plugin.php:472
|
235 |
msgid "Current image"
|
236 |
msgstr "Текущее изображение"
|
237 |
|
238 |
+
#: facebook-button-plugin.php:480
|
239 |
msgid ""
|
240 |
"Image properties: max image width:100px; max image height:40px; max image "
|
241 |
"size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
243 |
"Опции изображения для загрузки: максимальная ширина:100px; максимальная "
|
244 |
"высота:40px; максимальный размер:32Kb; тип файла:\"jpg\", \"jpeg\", \"png\"."
|
245 |
|
246 |
+
#: facebook-button-plugin.php:484
|
247 |
msgid "Button layout"
|
248 |
msgstr "Вид кнопок"
|
249 |
|
250 |
+
#: facebook-button-plugin.php:498
|
251 |
msgid "Like button action"
|
252 |
msgstr "Действие кнопки \"Like\""
|
253 |
|
254 |
+
#: facebook-button-plugin.php:502
|
255 |
msgid "Recommend"
|
256 |
msgstr "Рекомендую"
|
257 |
|
258 |
+
#: facebook-button-plugin.php:507
|
259 |
msgid "Show faces"
|
260 |
msgstr "Показать лица"
|
261 |
|
262 |
+
#: facebook-button-plugin.php:513
|
263 |
msgid "Layout width"
|
264 |
msgstr "Ширина блока"
|
265 |
|
266 |
+
#: facebook-button-plugin.php:519
|
267 |
msgid "Color scheme"
|
268 |
msgstr "Цветовая схема"
|
269 |
|
270 |
+
#: facebook-button-plugin.php:522
|
271 |
msgid "Light"
|
272 |
msgstr "Светлая"
|
273 |
|
274 |
+
#: facebook-button-plugin.php:523
|
275 |
msgid "Dark"
|
276 |
msgstr "Тёмная"
|
277 |
|
278 |
+
#: facebook-button-plugin.php:528
|
279 |
msgid "Html tag for \"Like\" button"
|
280 |
msgstr "Html тэг для кнопки \"Нравиться\""
|
281 |
|
282 |
+
#: facebook-button-plugin.php:533
|
283 |
msgid "Use this tag to improve validation of your site"
|
284 |
msgstr "Используйте этот тэг для лучшей валидации вашего сайта"
|
285 |
|
286 |
+
#: facebook-button-plugin.php:546
|
|
|
|
|
|
|
|
|
287 |
msgid "\"Like\" for an entire site on every page:"
|
288 |
msgstr "Ставить \"Нравиться\" всему сайту на каждой странице:"
|
289 |
|
290 |
+
#: facebook-button-plugin.php:548
|
291 |
msgid ""
|
292 |
"Notice: \"Like for the entire site\" option does not create an extra button. "
|
293 |
"This option merely allows your users to like the entire website when this "
|
299 |
"ставить \"Нравиться\" для всего сайта, если эта опция включена, или "
|
300 |
"\"Нравиться\" для отдельной записи, когда эта опция выключена."
|
301 |
|
302 |
+
#: facebook-button-plugin.php:570 facebook-button-plugin.php:626
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
303 |
msgid "Save Changes"
|
304 |
msgstr "Сохранить изменения"
|
305 |
|
306 |
+
#: facebook-button-plugin.php:582
|
307 |
msgid "Facebook Button preview:"
|
308 |
msgstr "Предварительный просмотр Facebook кнопок"
|
309 |
|
310 |
+
#: facebook-button-plugin.php:608
|
311 |
msgid ""
|
312 |
"Please choose the necessary post types (or single pages) where Facebook "
|
313 |
"button will be displayed:"
|
315 |
"Пожалуйста, выберите те типы постов (или отдельные страницы), где будут "
|
316 |
"отображаться кнопки Facebook:"
|
317 |
|
318 |
+
#: facebook-button-plugin.php:615
|
319 |
msgid "Show URL for pages"
|
320 |
msgstr "Отображать URL для страниц"
|
321 |
|
322 |
+
#: facebook-button-plugin.php:621
|
323 |
msgid "Example of the site's pages tree"
|
324 |
msgstr "Пример дерева страниц сайта"
|
325 |
|
326 |
+
#: facebook-button-plugin.php:621
|
327 |
msgid "Example of site pages' tree"
|
328 |
msgstr "Пример дерева страниц сайта"
|
329 |
|
330 |
+
#: facebook-button-plugin.php:757
|
331 |
msgid "Add Facebook buttons to your page or post"
|
332 |
msgstr "Добавить Facebook кнопки на вашу страницу или пост"
|
333 |
|
334 |
+
#: facebook-button-plugin.php:866
|
335 |
msgid "FAQ"
|
336 |
msgstr "FAQ"
|
337 |
|
338 |
+
#: facebook-button-plugin.php:867
|
339 |
msgid "Support"
|
340 |
msgstr "Поддержка"
|
341 |
|
342 |
+
#~ msgid "None"
|
343 |
+
#~ msgstr "Не использовать"
|
344 |
+
|
345 |
+
#~ msgid "Custom description"
|
346 |
+
#~ msgstr "Пользовательское краткое описание"
|
347 |
+
|
348 |
#~ msgid "Notice:"
|
349 |
#~ msgstr "Внимание:"
|
350 |
|
languages/facebook-button-plugin-tr_TR.mo
CHANGED
Binary file
|
languages/facebook-button-plugin-tr_TR.po
CHANGED
@@ -2,9 +2,9 @@ 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: bestwebsoft.com <
|
8 |
"Language-Team: Can Atasever <webmaster@canatasever.com>\n"
|
9 |
"Language: tr\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -13,286 +13,338 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit 1.
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: facebook-button-plugin.php:34
|
21 |
-
#: facebook-button-plugin.php:290
|
22 |
msgid "Facebook Button Settings"
|
23 |
msgstr "Facebook Buton Ayarları"
|
24 |
|
25 |
-
#: facebook-button-plugin.php:
|
26 |
msgid "Settings saved"
|
27 |
msgstr "Ayarlar kaydedildi"
|
28 |
|
29 |
-
#: facebook-button-plugin.php:
|
30 |
msgid "Error: File size > 32K"
|
31 |
msgstr "HATA: Dosya boyutu > 32K"
|
32 |
|
33 |
-
#: facebook-button-plugin.php:
|
34 |
msgid "Error: Invalid file type"
|
35 |
msgstr "HATA: Geçersiz dosya türü"
|
36 |
|
37 |
-
#: facebook-button-plugin.php:
|
38 |
msgid "Upload successful."
|
39 |
msgstr "Yükleme başarılı"
|
40 |
|
41 |
-
#: facebook-button-plugin.php:
|
42 |
msgid "Error: moving file failed"
|
43 |
msgstr "HATA: dosya taşıma başarısız."
|
44 |
|
45 |
-
#: facebook-button-plugin.php:
|
46 |
msgid "Error: check image width or height"
|
47 |
msgstr "HATA: görselin genişliğini ya da yüksekliğini kontrol edin."
|
48 |
|
49 |
-
#: facebook-button-plugin.php:
|
50 |
msgid "Uploading Error: check image properties"
|
51 |
msgstr "Yükleme Hatası: görselin özelliklerini kontrol edin."
|
52 |
|
53 |
-
#: facebook-button-plugin.php:
|
54 |
msgid "All plugin settings were restored."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: facebook-button-plugin.php:
|
58 |
-
#: facebook-button-plugin.php:
|
59 |
-
#: facebook-button-plugin.php:797
|
60 |
msgid "Settings"
|
61 |
msgstr "Ayarlar"
|
62 |
|
63 |
-
#: facebook-button-plugin.php:
|
64 |
msgid "Extra settings"
|
65 |
msgstr "Ekstra Ayarlar"
|
66 |
|
67 |
-
#: facebook-button-plugin.php:
|
68 |
msgid "Go PRO"
|
69 |
msgstr "PRO'ya geçin"
|
70 |
|
71 |
-
#: facebook-button-plugin.php:
|
72 |
msgid "Please, enable JavaScript in Your browser."
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: facebook-button-plugin.php:
|
76 |
#, fuzzy, php-format
|
77 |
-
msgid "
|
78 |
-
|
|
|
|
|
|
|
|
|
79 |
|
80 |
-
#: facebook-button-plugin.php:
|
81 |
#, php-format
|
82 |
-
msgid "
|
|
|
|
|
|
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: facebook-button-plugin.php:
|
86 |
#, fuzzy
|
87 |
msgid "Display button"
|
88 |
msgstr "Butonu Göster:"
|
89 |
|
90 |
-
#: facebook-button-plugin.php:
|
91 |
msgid "My Page"
|
92 |
msgstr "Benim Sayfam"
|
93 |
|
94 |
-
#: facebook-button-plugin.php:
|
95 |
-
#: facebook-button-plugin.php:438
|
96 |
msgid "Like"
|
97 |
msgstr "Beğen"
|
98 |
|
99 |
-
#: facebook-button-plugin.php:
|
100 |
msgid "Share"
|
101 |
msgstr "Paylaş"
|
102 |
|
103 |
-
#: facebook-button-plugin.php:
|
104 |
#, fuzzy
|
105 |
msgid "Facebook buttons position"
|
106 |
msgstr "Facebook Butonu pozisyonu"
|
107 |
|
108 |
-
#: facebook-button-plugin.php:
|
109 |
msgid "Before"
|
110 |
msgstr "Önce"
|
111 |
|
112 |
-
#: facebook-button-plugin.php:
|
113 |
msgid "After"
|
114 |
msgstr "Sonra"
|
115 |
|
116 |
-
#: facebook-button-plugin.php:
|
117 |
msgid "Before and After"
|
118 |
msgstr "Önce ve Sonra"
|
119 |
|
120 |
-
#: facebook-button-plugin.php:
|
121 |
msgid "Shortcode"
|
122 |
msgstr "Kısa kod"
|
123 |
|
124 |
-
#: facebook-button-plugin.php:
|
125 |
#, fuzzy
|
126 |
msgid "Facebook buttons language"
|
127 |
msgstr "Facebook Butonu dili"
|
128 |
|
129 |
-
#: facebook-button-plugin.php:
|
130 |
-
|
|
|
131 |
msgstr "Facebook Beğen butonunun dilini değiştirin"
|
132 |
|
133 |
-
#: facebook-button-plugin.php:
|
134 |
-
#: facebook-button-plugin.php:
|
135 |
-
#: facebook-button-plugin.php:372
|
136 |
msgid "Use the current site language"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: facebook-button-plugin.php:
|
140 |
-
#: facebook-button-plugin.php:
|
141 |
-
#: facebook-button-plugin.php:373
|
142 |
msgid "Using"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: facebook-button-plugin.php:
|
146 |
msgid "Activate"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: facebook-button-plugin.php:
|
150 |
msgid "Download"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: facebook-button-plugin.php:
|
154 |
#, fuzzy
|
155 |
msgid "Display buttons in excerpt"
|
156 |
msgstr "Butonu Göster:"
|
157 |
|
158 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
159 |
#, fuzzy
|
160 |
msgid "Your Facebook ID or username"
|
161 |
msgstr "Facebook ID'niz:"
|
162 |
|
163 |
-
#: facebook-button-plugin.php:
|
164 |
msgid "\"My page\" button image"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: facebook-button-plugin.php:
|
168 |
msgid "Standard Facebook image"
|
169 |
msgstr "Standart Facebook görseli"
|
170 |
|
171 |
-
#: facebook-button-plugin.php:
|
172 |
msgid "Custom Facebook image"
|
173 |
msgstr "Özel Facebook görseli"
|
174 |
|
175 |
-
#: facebook-button-plugin.php:
|
176 |
-
msgid "
|
177 |
-
|
|
|
|
|
|
|
|
|
178 |
|
179 |
-
#: facebook-button-plugin.php:
|
180 |
#, fuzzy
|
181 |
msgid "Current image"
|
182 |
msgstr "Şu anki görsel:"
|
183 |
|
184 |
-
#: facebook-button-plugin.php:
|
185 |
-
msgid "
|
186 |
-
|
|
|
|
|
|
|
|
|
|
|
187 |
|
188 |
-
#: facebook-button-plugin.php:
|
189 |
msgid "Button layout"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: facebook-button-plugin.php:
|
193 |
msgid "Like button action"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: facebook-button-plugin.php:
|
197 |
msgid "Recommend"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: facebook-button-plugin.php:
|
201 |
msgid "Show faces"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: facebook-button-plugin.php:
|
205 |
msgid "Layout width"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: facebook-button-plugin.php:
|
209 |
msgid "Color scheme"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: facebook-button-plugin.php:
|
213 |
msgid "Light"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: facebook-button-plugin.php:
|
217 |
msgid "Dark"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: facebook-button-plugin.php:
|
221 |
#, fuzzy
|
222 |
msgid "Html tag for \"Like\" button"
|
223 |
msgstr "Beğen butonu için HTML etiketi:"
|
224 |
|
225 |
-
#: facebook-button-plugin.php:
|
226 |
msgid "Use this tag to improve validation of your site"
|
227 |
msgstr "Sitenizin doğrulamasını geliştirmek için bu etiketi kullanın"
|
228 |
|
229 |
-
#: facebook-button-plugin.php:
|
230 |
-
#: facebook-button-plugin.php:516
|
231 |
-
msgid "Close"
|
232 |
-
msgstr ""
|
233 |
-
|
234 |
-
#: facebook-button-plugin.php:483
|
235 |
msgid "\"Like\" for an entire site on every page:"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: facebook-button-plugin.php:
|
239 |
-
msgid "
|
|
|
|
|
|
|
|
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: facebook-button-plugin.php:
|
243 |
-
#: facebook-button-plugin.php:567
|
244 |
-
msgid "If you upgrade to Pro version all your settings will be saved."
|
245 |
-
msgstr "Aboneliğinizi PRO versiyonuna yükseltirseniz tüm değişiklikleriniz kaydedilecek."
|
246 |
-
|
247 |
-
#: facebook-button-plugin.php:497
|
248 |
-
#: facebook-button-plugin.php:525
|
249 |
-
#: facebook-button-plugin.php:574
|
250 |
-
#, fuzzy
|
251 |
-
msgid "Unlock premium options by upgrading to Pro version"
|
252 |
-
msgstr "PRO versiyonuna geçerek premium özellikleri aktifleştirin."
|
253 |
-
|
254 |
-
#: facebook-button-plugin.php:499
|
255 |
-
#: facebook-button-plugin.php:527
|
256 |
-
#: facebook-button-plugin.php:576
|
257 |
-
msgid "Learn More"
|
258 |
-
msgstr "Detaylı Bilgi"
|
259 |
-
|
260 |
-
#: facebook-button-plugin.php:507
|
261 |
-
#: facebook-button-plugin.php:562
|
262 |
msgid "Save Changes"
|
263 |
msgstr "Değişiklikleri Kaydet"
|
264 |
|
265 |
-
#: facebook-button-plugin.php:
|
266 |
#, fuzzy
|
267 |
msgid "Facebook Button preview:"
|
268 |
msgstr "Facebook Butonu"
|
269 |
|
270 |
-
#: facebook-button-plugin.php:
|
271 |
-
msgid "
|
272 |
-
|
|
|
|
|
|
|
|
|
273 |
|
274 |
-
#: facebook-button-plugin.php:
|
275 |
msgid "Show URL for pages"
|
276 |
msgstr "Sayfalar için URL göster"
|
277 |
|
278 |
-
#: facebook-button-plugin.php:
|
279 |
msgid "Example of the site's pages tree"
|
280 |
msgstr "Sitenin sayfalar izi için örnek"
|
281 |
|
282 |
-
#: facebook-button-plugin.php:
|
283 |
msgid "Example of site pages' tree"
|
284 |
msgstr "Site sayfaları izi için örnek"
|
285 |
|
286 |
-
#: facebook-button-plugin.php:
|
287 |
#, fuzzy
|
288 |
msgid "Add Facebook buttons to your page or post"
|
289 |
msgstr "Facebook Butonu pozisyonu"
|
290 |
|
291 |
-
#: facebook-button-plugin.php:
|
292 |
msgid "FAQ"
|
293 |
msgstr "SSS"
|
294 |
|
295 |
-
#: facebook-button-plugin.php:
|
296 |
msgid "Support"
|
297 |
msgstr "Destek"
|
298 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-02-04 12:31+0300\n"
|
6 |
+
"PO-Revision-Date: 2016-02-04 12:32+0300\n"
|
7 |
+
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: Can Atasever <webmaster@canatasever.com>\n"
|
9 |
"Language: tr\n"
|
10 |
"MIME-Version: 1.0\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 1.5.4\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: facebook-button-plugin.php:34 facebook-button-plugin.php:292
|
|
|
21 |
msgid "Facebook Button Settings"
|
22 |
msgstr "Facebook Buton Ayarları"
|
23 |
|
24 |
+
#: facebook-button-plugin.php:214
|
25 |
msgid "Settings saved"
|
26 |
msgstr "Ayarlar kaydedildi"
|
27 |
|
28 |
+
#: facebook-button-plugin.php:240
|
29 |
msgid "Error: File size > 32K"
|
30 |
msgstr "HATA: Dosya boyutu > 32K"
|
31 |
|
32 |
+
#: facebook-button-plugin.php:243
|
33 |
msgid "Error: Invalid file type"
|
34 |
msgstr "HATA: Geçersiz dosya türü"
|
35 |
|
36 |
+
#: facebook-button-plugin.php:249
|
37 |
msgid "Upload successful."
|
38 |
msgstr "Yükleme başarılı"
|
39 |
|
40 |
+
#: facebook-button-plugin.php:259
|
41 |
msgid "Error: moving file failed"
|
42 |
msgstr "HATA: dosya taşıma başarısız."
|
43 |
|
44 |
+
#: facebook-button-plugin.php:262
|
45 |
msgid "Error: check image width or height"
|
46 |
msgstr "HATA: görselin genişliğini ya da yüksekliğini kontrol edin."
|
47 |
|
48 |
+
#: facebook-button-plugin.php:266
|
49 |
msgid "Uploading Error: check image properties"
|
50 |
msgstr "Yükleme Hatası: görselin özelliklerini kontrol edin."
|
51 |
|
52 |
+
#: facebook-button-plugin.php:279
|
53 |
msgid "All plugin settings were restored."
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: facebook-button-plugin.php:294 facebook-button-plugin.php:851
|
57 |
+
#: facebook-button-plugin.php:865
|
|
|
58 |
msgid "Settings"
|
59 |
msgstr "Ayarlar"
|
60 |
|
61 |
+
#: facebook-button-plugin.php:295
|
62 |
msgid "Extra settings"
|
63 |
msgstr "Ekstra Ayarlar"
|
64 |
|
65 |
+
#: facebook-button-plugin.php:296
|
66 |
msgid "Go PRO"
|
67 |
msgstr "PRO'ya geçin"
|
68 |
|
69 |
+
#: facebook-button-plugin.php:299
|
70 |
msgid "Please, enable JavaScript in Your browser."
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: facebook-button-plugin.php:314
|
74 |
#, fuzzy, php-format
|
75 |
+
msgid ""
|
76 |
+
"If you would like to add Facebook buttons to your page or post, please use "
|
77 |
+
"%s button"
|
78 |
+
msgstr ""
|
79 |
+
"eğer web sitenize Facebook butonu eklemek isterseniz, verilen kısa kodu "
|
80 |
+
"sayfanıza ya da yazınıza eklemeniz yeterlidir."
|
81 |
|
82 |
+
#: facebook-button-plugin.php:319
|
83 |
#, php-format
|
84 |
+
msgid ""
|
85 |
+
"You can add Facebook buttons to your page or post by clicking on %s button "
|
86 |
+
"in the content edit block using the Visual mode. If the button isn't "
|
87 |
+
"displayed, please use the shortcode %s"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: facebook-button-plugin.php:330
|
91 |
#, fuzzy
|
92 |
msgid "Display button"
|
93 |
msgstr "Butonu Göster:"
|
94 |
|
95 |
+
#: facebook-button-plugin.php:333
|
96 |
msgid "My Page"
|
97 |
msgstr "Benim Sayfam"
|
98 |
|
99 |
+
#: facebook-button-plugin.php:334 facebook-button-plugin.php:501
|
|
|
100 |
msgid "Like"
|
101 |
msgstr "Beğen"
|
102 |
|
103 |
+
#: facebook-button-plugin.php:335
|
104 |
msgid "Share"
|
105 |
msgstr "Paylaş"
|
106 |
|
107 |
+
#: facebook-button-plugin.php:340
|
108 |
#, fuzzy
|
109 |
msgid "Facebook buttons position"
|
110 |
msgstr "Facebook Butonu pozisyonu"
|
111 |
|
112 |
+
#: facebook-button-plugin.php:343
|
113 |
msgid "Before"
|
114 |
msgstr "Önce"
|
115 |
|
116 |
+
#: facebook-button-plugin.php:344
|
117 |
msgid "After"
|
118 |
msgstr "Sonra"
|
119 |
|
120 |
+
#: facebook-button-plugin.php:345
|
121 |
msgid "Before and After"
|
122 |
msgstr "Önce ve Sonra"
|
123 |
|
124 |
+
#: facebook-button-plugin.php:346
|
125 |
msgid "Shortcode"
|
126 |
msgstr "Kısa kod"
|
127 |
|
128 |
+
#: facebook-button-plugin.php:351
|
129 |
#, fuzzy
|
130 |
msgid "Facebook buttons language"
|
131 |
msgstr "Facebook Butonu dili"
|
132 |
|
133 |
+
#: facebook-button-plugin.php:362
|
134 |
+
#, fuzzy
|
135 |
+
msgid "Change the language of Facebook Button"
|
136 |
msgstr "Facebook Beğen butonunun dilini değiştirin"
|
137 |
|
138 |
+
#: facebook-button-plugin.php:367 facebook-button-plugin.php:370
|
139 |
+
#: facebook-button-plugin.php:375
|
|
|
140 |
msgid "Use the current site language"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: facebook-button-plugin.php:367 facebook-button-plugin.php:371
|
144 |
+
#: facebook-button-plugin.php:376
|
|
|
145 |
msgid "Using"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: facebook-button-plugin.php:371
|
149 |
msgid "Activate"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: facebook-button-plugin.php:376
|
153 |
msgid "Download"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: facebook-button-plugin.php:383
|
157 |
#, fuzzy
|
158 |
msgid "Display buttons in excerpt"
|
159 |
msgstr "Butonu Göster:"
|
160 |
|
161 |
+
#: facebook-button-plugin.php:393 facebook-button-plugin.php:542
|
162 |
+
#: facebook-button-plugin.php:579
|
163 |
+
msgid "Close"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: facebook-button-plugin.php:397
|
167 |
+
msgid "Meta tags"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: facebook-button-plugin.php:400
|
171 |
+
msgid "Image"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: facebook-button-plugin.php:403
|
175 |
+
msgid "Featured Image"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: facebook-button-plugin.php:407
|
179 |
+
#, fuzzy
|
180 |
+
msgid "Custom Image"
|
181 |
+
msgstr "Özel Facebook görseli"
|
182 |
+
|
183 |
+
#: facebook-button-plugin.php:407
|
184 |
+
msgid "This image will be used for all of the posts"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: facebook-button-plugin.php:417
|
188 |
+
msgid "Description"
|
189 |
+
msgstr ""
|
190 |
+
|
191 |
+
#: facebook-button-plugin.php:420
|
192 |
+
msgid "Post excerpt"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: facebook-button-plugin.php:425
|
196 |
+
msgid "This description will be used for all of the posts"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: facebook-button-plugin.php:432 facebook-button-plugin.php:553
|
200 |
+
#: facebook-button-plugin.php:631
|
201 |
+
msgid "If you upgrade to Pro version all your settings will be saved."
|
202 |
+
msgstr ""
|
203 |
+
"Aboneliğinizi PRO versiyonuna yükseltirseniz tüm değişiklikleriniz "
|
204 |
+
"kaydedilecek."
|
205 |
+
|
206 |
+
#: facebook-button-plugin.php:439 facebook-button-plugin.php:560
|
207 |
+
#: facebook-button-plugin.php:588 facebook-button-plugin.php:638
|
208 |
+
#, fuzzy
|
209 |
+
msgid "Unlock premium options by upgrading to Pro version"
|
210 |
+
msgstr "PRO versiyonuna geçerek premium özellikleri aktifleştirin."
|
211 |
+
|
212 |
+
#: facebook-button-plugin.php:441 facebook-button-plugin.php:562
|
213 |
+
#: facebook-button-plugin.php:590 facebook-button-plugin.php:640
|
214 |
+
msgid "Learn More"
|
215 |
+
msgstr "Detaylı Bilgi"
|
216 |
+
|
217 |
+
#: facebook-button-plugin.php:449
|
218 |
#, fuzzy
|
219 |
msgid "Your Facebook ID or username"
|
220 |
msgstr "Facebook ID'niz:"
|
221 |
|
222 |
+
#: facebook-button-plugin.php:456
|
223 |
msgid "\"My page\" button image"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: facebook-button-plugin.php:461
|
227 |
msgid "Standard Facebook image"
|
228 |
msgstr "Standart Facebook görseli"
|
229 |
|
230 |
+
#: facebook-button-plugin.php:462
|
231 |
msgid "Custom Facebook image"
|
232 |
msgstr "Özel Facebook görseli"
|
233 |
|
234 |
+
#: facebook-button-plugin.php:465
|
235 |
+
msgid ""
|
236 |
+
"To use custom image you need to setup permissions to upload directory of "
|
237 |
+
"your site"
|
238 |
+
msgstr ""
|
239 |
+
"Özel görsel kullanmak için sitenizin dizinine yükleme yapılmasına izin "
|
240 |
+
"vermelisiniz."
|
241 |
|
242 |
+
#: facebook-button-plugin.php:472
|
243 |
#, fuzzy
|
244 |
msgid "Current image"
|
245 |
msgstr "Şu anki görsel:"
|
246 |
|
247 |
+
#: facebook-button-plugin.php:480
|
248 |
+
msgid ""
|
249 |
+
"Image properties: max image width:100px; max image height:40px; max image "
|
250 |
+
"size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
251 |
+
msgstr ""
|
252 |
+
"Görsel özellikleri: maksimum görsel genişliği: 100px; maksimum görsel "
|
253 |
+
"yüksekliği: 40px; maksimum görsel boyutu: 32 KB; uzantılar: \"jpg\", \"jpeg"
|
254 |
+
"\", \"png\"."
|
255 |
|
256 |
+
#: facebook-button-plugin.php:484
|
257 |
msgid "Button layout"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: facebook-button-plugin.php:498
|
261 |
msgid "Like button action"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: facebook-button-plugin.php:502
|
265 |
msgid "Recommend"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: facebook-button-plugin.php:507
|
269 |
msgid "Show faces"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: facebook-button-plugin.php:513
|
273 |
msgid "Layout width"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: facebook-button-plugin.php:519
|
277 |
msgid "Color scheme"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: facebook-button-plugin.php:522
|
281 |
msgid "Light"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: facebook-button-plugin.php:523
|
285 |
msgid "Dark"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: facebook-button-plugin.php:528
|
289 |
#, fuzzy
|
290 |
msgid "Html tag for \"Like\" button"
|
291 |
msgstr "Beğen butonu için HTML etiketi:"
|
292 |
|
293 |
+
#: facebook-button-plugin.php:533
|
294 |
msgid "Use this tag to improve validation of your site"
|
295 |
msgstr "Sitenizin doğrulamasını geliştirmek için bu etiketi kullanın"
|
296 |
|
297 |
+
#: facebook-button-plugin.php:546
|
|
|
|
|
|
|
|
|
|
|
298 |
msgid "\"Like\" for an entire site on every page:"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: facebook-button-plugin.php:548
|
302 |
+
msgid ""
|
303 |
+
"Notice: \"Like for the entire site\" option does not create an extra button. "
|
304 |
+
"This option merely allows your users to like the entire website when this "
|
305 |
+
"option is enabled, or a single post when this option is disabled, when "
|
306 |
+
"clicking the regular \"Like\" button."
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: facebook-button-plugin.php:570 facebook-button-plugin.php:626
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
310 |
msgid "Save Changes"
|
311 |
msgstr "Değişiklikleri Kaydet"
|
312 |
|
313 |
+
#: facebook-button-plugin.php:582
|
314 |
#, fuzzy
|
315 |
msgid "Facebook Button preview:"
|
316 |
msgstr "Facebook Butonu"
|
317 |
|
318 |
+
#: facebook-button-plugin.php:608
|
319 |
+
msgid ""
|
320 |
+
"Please choose the necessary post types (or single pages) where Facebook "
|
321 |
+
"button will be displayed:"
|
322 |
+
msgstr ""
|
323 |
+
"Lütfen Facebook butonunun gösterileceği yazı türlerini (ya da tek sayfaları) "
|
324 |
+
"seçin."
|
325 |
|
326 |
+
#: facebook-button-plugin.php:615
|
327 |
msgid "Show URL for pages"
|
328 |
msgstr "Sayfalar için URL göster"
|
329 |
|
330 |
+
#: facebook-button-plugin.php:621
|
331 |
msgid "Example of the site's pages tree"
|
332 |
msgstr "Sitenin sayfalar izi için örnek"
|
333 |
|
334 |
+
#: facebook-button-plugin.php:621
|
335 |
msgid "Example of site pages' tree"
|
336 |
msgstr "Site sayfaları izi için örnek"
|
337 |
|
338 |
+
#: facebook-button-plugin.php:757
|
339 |
#, fuzzy
|
340 |
msgid "Add Facebook buttons to your page or post"
|
341 |
msgstr "Facebook Butonu pozisyonu"
|
342 |
|
343 |
+
#: facebook-button-plugin.php:866
|
344 |
msgid "FAQ"
|
345 |
msgstr "SSS"
|
346 |
|
347 |
+
#: facebook-button-plugin.php:867
|
348 |
msgid "Support"
|
349 |
msgstr "Destek"
|
350 |
|
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: ua_UA\n"
|
@@ -16,60 +16,60 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: facebook-button-plugin.php:34 facebook-button-plugin.php:
|
20 |
msgid "Facebook Button Settings"
|
21 |
msgstr "Установки кнопки Facebook"
|
22 |
|
23 |
-
#: facebook-button-plugin.php:
|
24 |
msgid "Settings saved"
|
25 |
msgstr "Установки збережені"
|
26 |
|
27 |
-
#: facebook-button-plugin.php:
|
28 |
msgid "Error: File size > 32K"
|
29 |
msgstr "Помилка: Розмір файлу > 32K"
|
30 |
|
31 |
-
#: facebook-button-plugin.php:
|
32 |
msgid "Error: Invalid file type"
|
33 |
msgstr "Помилка: Невірний тип файлу"
|
34 |
|
35 |
-
#: facebook-button-plugin.php:
|
36 |
msgid "Upload successful."
|
37 |
msgstr "Файл був завантажений успішно"
|
38 |
|
39 |
-
#: facebook-button-plugin.php:
|
40 |
msgid "Error: moving file failed"
|
41 |
msgstr "Помилка: не вдалося переміщення файлів"
|
42 |
|
43 |
-
#: facebook-button-plugin.php:
|
44 |
msgid "Error: check image width or height"
|
45 |
msgstr "Помилка: Перевірте ширину або висоту зображення"
|
46 |
|
47 |
-
#: facebook-button-plugin.php:
|
48 |
msgid "Uploading Error: check image properties"
|
49 |
msgstr "Помилка Завантаження: Перевірте властивості зображення"
|
50 |
|
51 |
-
#: facebook-button-plugin.php:
|
52 |
msgid "All plugin settings were restored."
|
53 |
msgstr "Всі налаштування плагіну було скинуто до стандартних."
|
54 |
|
55 |
-
#: facebook-button-plugin.php:
|
56 |
-
#: facebook-button-plugin.php:
|
57 |
msgid "Settings"
|
58 |
msgstr "Установки"
|
59 |
|
60 |
-
#: facebook-button-plugin.php:
|
61 |
msgid "Extra settings"
|
62 |
msgstr "Додаткові налаштування"
|
63 |
|
64 |
-
#: facebook-button-plugin.php:
|
65 |
msgid "Go PRO"
|
66 |
msgstr "Перейти на PRO версію"
|
67 |
|
68 |
-
#: facebook-button-plugin.php:
|
69 |
msgid "Please, enable JavaScript in Your browser."
|
70 |
msgstr "Будь ласка, активуйте JavaScript у Вашому браузері."
|
71 |
|
72 |
-
#: facebook-button-plugin.php:
|
73 |
#, php-format
|
74 |
msgid ""
|
75 |
"If you would like to add Facebook buttons to your page or post, please use "
|
@@ -78,7 +78,7 @@ msgstr ""
|
|
78 |
"Якщо ви хочете додати кнопки Facebook на вашу сторінку або пост, будь ласка, "
|
79 |
"використовуйте кнопку %s"
|
80 |
|
81 |
-
#: facebook-button-plugin.php:
|
82 |
#, php-format
|
83 |
msgid ""
|
84 |
"You can add Facebook buttons to your page or post by clicking on %s button "
|
@@ -89,89 +89,141 @@ msgstr ""
|
|
89 |
"кнопку %s в блоці редагування контенту в режимі Visual. Якщо кнопка не "
|
90 |
"відображається, будь ласка, використовуйте шорткод %s"
|
91 |
|
92 |
-
#: facebook-button-plugin.php:
|
93 |
msgid "Display button"
|
94 |
msgstr "Відображати кнопку"
|
95 |
|
96 |
-
#: facebook-button-plugin.php:
|
97 |
msgid "My Page"
|
98 |
msgstr "Моя сторінка"
|
99 |
|
100 |
-
#: facebook-button-plugin.php:
|
101 |
msgid "Like"
|
102 |
msgstr "Подобається"
|
103 |
|
104 |
-
#: facebook-button-plugin.php:
|
105 |
msgid "Share"
|
106 |
msgstr "Поширити"
|
107 |
|
108 |
-
#: facebook-button-plugin.php:
|
109 |
msgid "Facebook buttons position"
|
110 |
msgstr "Розташування кнопок Facebook"
|
111 |
|
112 |
-
#: facebook-button-plugin.php:
|
113 |
msgid "Before"
|
114 |
msgstr "До"
|
115 |
|
116 |
-
#: facebook-button-plugin.php:
|
117 |
msgid "After"
|
118 |
msgstr "Після"
|
119 |
|
120 |
-
#: facebook-button-plugin.php:
|
121 |
msgid "Before and After"
|
122 |
msgstr "До та після"
|
123 |
|
124 |
-
#: facebook-button-plugin.php:
|
125 |
msgid "Shortcode"
|
126 |
msgstr "Шорткод"
|
127 |
|
128 |
-
#: facebook-button-plugin.php:
|
129 |
msgid "Facebook buttons language"
|
130 |
msgstr "Мова кнопок Facebook"
|
131 |
|
132 |
-
#: facebook-button-plugin.php:
|
133 |
msgid "Change the language of Facebook Button"
|
134 |
msgstr "Змінити мову для кнопок Facebook"
|
135 |
|
136 |
-
#: facebook-button-plugin.php:
|
137 |
-
#: facebook-button-plugin.php:
|
138 |
msgid "Use the current site language"
|
139 |
msgstr "Використовувати поточну мову сайту"
|
140 |
|
141 |
-
#: facebook-button-plugin.php:
|
142 |
-
#: facebook-button-plugin.php:
|
143 |
msgid "Using"
|
144 |
msgstr "Використовуючи"
|
145 |
|
146 |
-
#: facebook-button-plugin.php:
|
147 |
msgid "Activate"
|
148 |
msgstr "Активувати"
|
149 |
|
150 |
-
#: facebook-button-plugin.php:
|
151 |
msgid "Download"
|
152 |
msgstr "Завантажити"
|
153 |
|
154 |
-
#: facebook-button-plugin.php:
|
155 |
msgid "Display buttons in excerpt"
|
156 |
msgstr "Відображати кнопки в уривку"
|
157 |
|
158 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
159 |
msgid "Your Facebook ID or username"
|
160 |
msgstr "ID вашого Facebook акаунту"
|
161 |
|
162 |
-
#: facebook-button-plugin.php:
|
163 |
msgid "\"My page\" button image"
|
164 |
msgstr "Зображення кнопки \"Моя сторінка\""
|
165 |
|
166 |
-
#: facebook-button-plugin.php:
|
167 |
msgid "Standard Facebook image"
|
168 |
msgstr "Стандартне зображення Facebook "
|
169 |
|
170 |
-
#: facebook-button-plugin.php:
|
171 |
msgid "Custom Facebook image"
|
172 |
msgstr "Кастомне зображення Facebook"
|
173 |
|
174 |
-
#: facebook-button-plugin.php:
|
175 |
msgid ""
|
176 |
"To use custom image you need to setup permissions to upload directory of "
|
177 |
"your site"
|
@@ -179,11 +231,11 @@ msgstr ""
|
|
179 |
"Для використання кастомного зображення Вам необхідно видати права доступу на "
|
180 |
"папку завантажень на вашому сайті"
|
181 |
|
182 |
-
#: facebook-button-plugin.php:
|
183 |
msgid "Current image"
|
184 |
msgstr "Поточне зображення"
|
185 |
|
186 |
-
#: facebook-button-plugin.php:
|
187 |
msgid ""
|
188 |
"Image properties: max image width:100px; max image height:40px; max image "
|
189 |
"size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
@@ -192,55 +244,51 @@ msgstr ""
|
|
192 |
"висота зображення: 40px; максимальний розмір зображення: 32Kb; типи "
|
193 |
"зображеннь :\"jpg\", \"jpeg\", \"png\"."
|
194 |
|
195 |
-
#: facebook-button-plugin.php:
|
196 |
msgid "Button layout"
|
197 |
msgstr "Тип кнопок"
|
198 |
|
199 |
-
#: facebook-button-plugin.php:
|
200 |
msgid "Like button action"
|
201 |
msgstr "Дія кнопки \"Like\""
|
202 |
|
203 |
-
#: facebook-button-plugin.php:
|
204 |
msgid "Recommend"
|
205 |
msgstr "Рекомендую"
|
206 |
|
207 |
-
#: facebook-button-plugin.php:
|
208 |
msgid "Show faces"
|
209 |
msgstr "Показувати обличчя"
|
210 |
|
211 |
-
#: facebook-button-plugin.php:
|
212 |
msgid "Layout width"
|
213 |
msgstr "Ширина блоку"
|
214 |
|
215 |
-
#: facebook-button-plugin.php:
|
216 |
msgid "Color scheme"
|
217 |
msgstr "Кольорова схема"
|
218 |
|
219 |
-
#: facebook-button-plugin.php:
|
220 |
msgid "Light"
|
221 |
msgstr "Світла"
|
222 |
|
223 |
-
#: facebook-button-plugin.php:
|
224 |
msgid "Dark"
|
225 |
msgstr "Темна"
|
226 |
|
227 |
-
#: facebook-button-plugin.php:
|
228 |
msgid "Html tag for \"Like\" button"
|
229 |
msgstr "Html тег для кнопки \"Подобається\""
|
230 |
|
231 |
-
#: facebook-button-plugin.php:
|
232 |
msgid "Use this tag to improve validation of your site"
|
233 |
msgstr "Використовуйте цей тег для поліпшення валідації вашого сайту"
|
234 |
|
235 |
-
#: facebook-button-plugin.php:
|
236 |
-
msgid "Close"
|
237 |
-
msgstr "Закрити"
|
238 |
-
|
239 |
-
#: facebook-button-plugin.php:483
|
240 |
msgid "\"Like\" for an entire site on every page:"
|
241 |
msgstr "\"Подобається\" для всього сайту на кожній сторінці"
|
242 |
|
243 |
-
#: facebook-button-plugin.php:
|
244 |
msgid ""
|
245 |
"Notice: \"Like for the entire site\" option does not create an extra button. "
|
246 |
"This option merely allows your users to like the entire website when this "
|
@@ -252,29 +300,15 @@ msgstr ""
|
|
252 |
"плагіна ставити \"Подобається\" усьому сайту , якщо ця опція увімкнена, або "
|
253 |
"ставити \"Подобається\" окремим постам, якщо опція вимкнена."
|
254 |
|
255 |
-
#: facebook-button-plugin.php:
|
256 |
-
msgid "If you upgrade to Pro version all your settings will be saved."
|
257 |
-
msgstr "Якщо ви перейдете на Pro версію, усі установки будуть збережені."
|
258 |
-
|
259 |
-
#: facebook-button-plugin.php:497 facebook-button-plugin.php:525
|
260 |
-
#: facebook-button-plugin.php:574
|
261 |
-
msgid "Unlock premium options by upgrading to Pro version"
|
262 |
-
msgstr "Зробити доступними преміум-опції, перейшовши на Pro версію"
|
263 |
-
|
264 |
-
#: facebook-button-plugin.php:499 facebook-button-plugin.php:527
|
265 |
-
#: facebook-button-plugin.php:576
|
266 |
-
msgid "Learn More"
|
267 |
-
msgstr "Докладніше"
|
268 |
-
|
269 |
-
#: facebook-button-plugin.php:507 facebook-button-plugin.php:562
|
270 |
msgid "Save Changes"
|
271 |
msgstr "Зберегти зміни"
|
272 |
|
273 |
-
#: facebook-button-plugin.php:
|
274 |
msgid "Facebook Button preview:"
|
275 |
msgstr "Попередній перегляд Facebook кнопок:"
|
276 |
|
277 |
-
#: facebook-button-plugin.php:
|
278 |
msgid ""
|
279 |
"Please choose the necessary post types (or single pages) where Facebook "
|
280 |
"button will be displayed:"
|
@@ -282,30 +316,36 @@ msgstr ""
|
|
282 |
"Будь ласка, оберіть необхідні типи постів (чи сторінок), де буде "
|
283 |
"відображатися кнопка Facebook"
|
284 |
|
285 |
-
#: facebook-button-plugin.php:
|
286 |
msgid "Show URL for pages"
|
287 |
msgstr "Відображати URL сторінок"
|
288 |
|
289 |
-
#: facebook-button-plugin.php:
|
290 |
msgid "Example of the site's pages tree"
|
291 |
msgstr "Приклад дерева сторінок сайту"
|
292 |
|
293 |
-
#: facebook-button-plugin.php:
|
294 |
msgid "Example of site pages' tree"
|
295 |
msgstr "Приклад дерева сторінок сайту"
|
296 |
|
297 |
-
#: facebook-button-plugin.php:
|
298 |
msgid "Add Facebook buttons to your page or post"
|
299 |
msgstr "Додати кнопки Facebook на вашу сторінку або пост"
|
300 |
|
301 |
-
#: facebook-button-plugin.php:
|
302 |
msgid "FAQ"
|
303 |
msgstr "FAQ"
|
304 |
|
305 |
-
#: facebook-button-plugin.php:
|
306 |
msgid "Support"
|
307 |
msgstr "Підтримка"
|
308 |
|
|
|
|
|
|
|
|
|
|
|
|
|
309 |
#~ msgid "Notice:"
|
310 |
#~ msgstr "Нагадування:"
|
311 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-02-04 12:32+0300\n"
|
6 |
+
"PO-Revision-Date: 2016-02-04 12:32+0300\n"
|
7 |
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ua_UA\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: facebook-button-plugin.php:34 facebook-button-plugin.php:292
|
20 |
msgid "Facebook Button Settings"
|
21 |
msgstr "Установки кнопки Facebook"
|
22 |
|
23 |
+
#: facebook-button-plugin.php:214
|
24 |
msgid "Settings saved"
|
25 |
msgstr "Установки збережені"
|
26 |
|
27 |
+
#: facebook-button-plugin.php:240
|
28 |
msgid "Error: File size > 32K"
|
29 |
msgstr "Помилка: Розмір файлу > 32K"
|
30 |
|
31 |
+
#: facebook-button-plugin.php:243
|
32 |
msgid "Error: Invalid file type"
|
33 |
msgstr "Помилка: Невірний тип файлу"
|
34 |
|
35 |
+
#: facebook-button-plugin.php:249
|
36 |
msgid "Upload successful."
|
37 |
msgstr "Файл був завантажений успішно"
|
38 |
|
39 |
+
#: facebook-button-plugin.php:259
|
40 |
msgid "Error: moving file failed"
|
41 |
msgstr "Помилка: не вдалося переміщення файлів"
|
42 |
|
43 |
+
#: facebook-button-plugin.php:262
|
44 |
msgid "Error: check image width or height"
|
45 |
msgstr "Помилка: Перевірте ширину або висоту зображення"
|
46 |
|
47 |
+
#: facebook-button-plugin.php:266
|
48 |
msgid "Uploading Error: check image properties"
|
49 |
msgstr "Помилка Завантаження: Перевірте властивості зображення"
|
50 |
|
51 |
+
#: facebook-button-plugin.php:279
|
52 |
msgid "All plugin settings were restored."
|
53 |
msgstr "Всі налаштування плагіну було скинуто до стандартних."
|
54 |
|
55 |
+
#: facebook-button-plugin.php:294 facebook-button-plugin.php:851
|
56 |
+
#: facebook-button-plugin.php:865
|
57 |
msgid "Settings"
|
58 |
msgstr "Установки"
|
59 |
|
60 |
+
#: facebook-button-plugin.php:295
|
61 |
msgid "Extra settings"
|
62 |
msgstr "Додаткові налаштування"
|
63 |
|
64 |
+
#: facebook-button-plugin.php:296
|
65 |
msgid "Go PRO"
|
66 |
msgstr "Перейти на PRO версію"
|
67 |
|
68 |
+
#: facebook-button-plugin.php:299
|
69 |
msgid "Please, enable JavaScript in Your browser."
|
70 |
msgstr "Будь ласка, активуйте JavaScript у Вашому браузері."
|
71 |
|
72 |
+
#: facebook-button-plugin.php:314
|
73 |
#, php-format
|
74 |
msgid ""
|
75 |
"If you would like to add Facebook buttons to your page or post, please use "
|
78 |
"Якщо ви хочете додати кнопки Facebook на вашу сторінку або пост, будь ласка, "
|
79 |
"використовуйте кнопку %s"
|
80 |
|
81 |
+
#: facebook-button-plugin.php:319
|
82 |
#, php-format
|
83 |
msgid ""
|
84 |
"You can add Facebook buttons to your page or post by clicking on %s button "
|
89 |
"кнопку %s в блоці редагування контенту в режимі Visual. Якщо кнопка не "
|
90 |
"відображається, будь ласка, використовуйте шорткод %s"
|
91 |
|
92 |
+
#: facebook-button-plugin.php:330
|
93 |
msgid "Display button"
|
94 |
msgstr "Відображати кнопку"
|
95 |
|
96 |
+
#: facebook-button-plugin.php:333
|
97 |
msgid "My Page"
|
98 |
msgstr "Моя сторінка"
|
99 |
|
100 |
+
#: facebook-button-plugin.php:334 facebook-button-plugin.php:501
|
101 |
msgid "Like"
|
102 |
msgstr "Подобається"
|
103 |
|
104 |
+
#: facebook-button-plugin.php:335
|
105 |
msgid "Share"
|
106 |
msgstr "Поширити"
|
107 |
|
108 |
+
#: facebook-button-plugin.php:340
|
109 |
msgid "Facebook buttons position"
|
110 |
msgstr "Розташування кнопок Facebook"
|
111 |
|
112 |
+
#: facebook-button-plugin.php:343
|
113 |
msgid "Before"
|
114 |
msgstr "До"
|
115 |
|
116 |
+
#: facebook-button-plugin.php:344
|
117 |
msgid "After"
|
118 |
msgstr "Після"
|
119 |
|
120 |
+
#: facebook-button-plugin.php:345
|
121 |
msgid "Before and After"
|
122 |
msgstr "До та після"
|
123 |
|
124 |
+
#: facebook-button-plugin.php:346
|
125 |
msgid "Shortcode"
|
126 |
msgstr "Шорткод"
|
127 |
|
128 |
+
#: facebook-button-plugin.php:351
|
129 |
msgid "Facebook buttons language"
|
130 |
msgstr "Мова кнопок Facebook"
|
131 |
|
132 |
+
#: facebook-button-plugin.php:362
|
133 |
msgid "Change the language of Facebook Button"
|
134 |
msgstr "Змінити мову для кнопок Facebook"
|
135 |
|
136 |
+
#: facebook-button-plugin.php:367 facebook-button-plugin.php:370
|
137 |
+
#: facebook-button-plugin.php:375
|
138 |
msgid "Use the current site language"
|
139 |
msgstr "Використовувати поточну мову сайту"
|
140 |
|
141 |
+
#: facebook-button-plugin.php:367 facebook-button-plugin.php:371
|
142 |
+
#: facebook-button-plugin.php:376
|
143 |
msgid "Using"
|
144 |
msgstr "Використовуючи"
|
145 |
|
146 |
+
#: facebook-button-plugin.php:371
|
147 |
msgid "Activate"
|
148 |
msgstr "Активувати"
|
149 |
|
150 |
+
#: facebook-button-plugin.php:376
|
151 |
msgid "Download"
|
152 |
msgstr "Завантажити"
|
153 |
|
154 |
+
#: facebook-button-plugin.php:383
|
155 |
msgid "Display buttons in excerpt"
|
156 |
msgstr "Відображати кнопки в уривку"
|
157 |
|
158 |
+
#: facebook-button-plugin.php:393 facebook-button-plugin.php:542
|
159 |
+
#: facebook-button-plugin.php:579
|
160 |
+
msgid "Close"
|
161 |
+
msgstr "Закрити"
|
162 |
+
|
163 |
+
#: facebook-button-plugin.php:397
|
164 |
+
msgid "Meta tags"
|
165 |
+
msgstr "Мета теги"
|
166 |
+
|
167 |
+
#: facebook-button-plugin.php:400
|
168 |
+
msgid "Image"
|
169 |
+
msgstr "Зображення"
|
170 |
+
|
171 |
+
#: facebook-button-plugin.php:403
|
172 |
+
msgid "Featured Image"
|
173 |
+
msgstr "Головне зображення"
|
174 |
+
|
175 |
+
#: facebook-button-plugin.php:407
|
176 |
+
msgid "Custom Image"
|
177 |
+
msgstr "Користувацьке зображення"
|
178 |
+
|
179 |
+
#: facebook-button-plugin.php:407
|
180 |
+
msgid "This image will be used for all of the posts"
|
181 |
+
msgstr "Це зображення буде використовуватися для всiх записiв"
|
182 |
+
|
183 |
+
#: facebook-button-plugin.php:417
|
184 |
+
msgid "Description"
|
185 |
+
msgstr "Короткий опис"
|
186 |
+
|
187 |
+
#: facebook-button-plugin.php:420
|
188 |
+
msgid "Post excerpt"
|
189 |
+
msgstr "Уривок"
|
190 |
+
|
191 |
+
#: facebook-button-plugin.php:425
|
192 |
+
msgid "This description will be used for all of the posts"
|
193 |
+
msgstr "Цей короткий опис буде використовуватися у всiх постах"
|
194 |
+
|
195 |
+
#: facebook-button-plugin.php:432 facebook-button-plugin.php:553
|
196 |
+
#: facebook-button-plugin.php:631
|
197 |
+
msgid "If you upgrade to Pro version all your settings will be saved."
|
198 |
+
msgstr "Якщо ви перейдете на Pro версію, усі установки будуть збережені."
|
199 |
+
|
200 |
+
#: facebook-button-plugin.php:439 facebook-button-plugin.php:560
|
201 |
+
#: facebook-button-plugin.php:588 facebook-button-plugin.php:638
|
202 |
+
msgid "Unlock premium options by upgrading to Pro version"
|
203 |
+
msgstr "Зробити доступними преміум-опції, перейшовши на Pro версію"
|
204 |
+
|
205 |
+
#: facebook-button-plugin.php:441 facebook-button-plugin.php:562
|
206 |
+
#: facebook-button-plugin.php:590 facebook-button-plugin.php:640
|
207 |
+
msgid "Learn More"
|
208 |
+
msgstr "Докладніше"
|
209 |
+
|
210 |
+
#: facebook-button-plugin.php:449
|
211 |
msgid "Your Facebook ID or username"
|
212 |
msgstr "ID вашого Facebook акаунту"
|
213 |
|
214 |
+
#: facebook-button-plugin.php:456
|
215 |
msgid "\"My page\" button image"
|
216 |
msgstr "Зображення кнопки \"Моя сторінка\""
|
217 |
|
218 |
+
#: facebook-button-plugin.php:461
|
219 |
msgid "Standard Facebook image"
|
220 |
msgstr "Стандартне зображення Facebook "
|
221 |
|
222 |
+
#: facebook-button-plugin.php:462
|
223 |
msgid "Custom Facebook image"
|
224 |
msgstr "Кастомне зображення Facebook"
|
225 |
|
226 |
+
#: facebook-button-plugin.php:465
|
227 |
msgid ""
|
228 |
"To use custom image you need to setup permissions to upload directory of "
|
229 |
"your site"
|
231 |
"Для використання кастомного зображення Вам необхідно видати права доступу на "
|
232 |
"папку завантажень на вашому сайті"
|
233 |
|
234 |
+
#: facebook-button-plugin.php:472
|
235 |
msgid "Current image"
|
236 |
msgstr "Поточне зображення"
|
237 |
|
238 |
+
#: facebook-button-plugin.php:480
|
239 |
msgid ""
|
240 |
"Image properties: max image width:100px; max image height:40px; max image "
|
241 |
"size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
244 |
"висота зображення: 40px; максимальний розмір зображення: 32Kb; типи "
|
245 |
"зображеннь :\"jpg\", \"jpeg\", \"png\"."
|
246 |
|
247 |
+
#: facebook-button-plugin.php:484
|
248 |
msgid "Button layout"
|
249 |
msgstr "Тип кнопок"
|
250 |
|
251 |
+
#: facebook-button-plugin.php:498
|
252 |
msgid "Like button action"
|
253 |
msgstr "Дія кнопки \"Like\""
|
254 |
|
255 |
+
#: facebook-button-plugin.php:502
|
256 |
msgid "Recommend"
|
257 |
msgstr "Рекомендую"
|
258 |
|
259 |
+
#: facebook-button-plugin.php:507
|
260 |
msgid "Show faces"
|
261 |
msgstr "Показувати обличчя"
|
262 |
|
263 |
+
#: facebook-button-plugin.php:513
|
264 |
msgid "Layout width"
|
265 |
msgstr "Ширина блоку"
|
266 |
|
267 |
+
#: facebook-button-plugin.php:519
|
268 |
msgid "Color scheme"
|
269 |
msgstr "Кольорова схема"
|
270 |
|
271 |
+
#: facebook-button-plugin.php:522
|
272 |
msgid "Light"
|
273 |
msgstr "Світла"
|
274 |
|
275 |
+
#: facebook-button-plugin.php:523
|
276 |
msgid "Dark"
|
277 |
msgstr "Темна"
|
278 |
|
279 |
+
#: facebook-button-plugin.php:528
|
280 |
msgid "Html tag for \"Like\" button"
|
281 |
msgstr "Html тег для кнопки \"Подобається\""
|
282 |
|
283 |
+
#: facebook-button-plugin.php:533
|
284 |
msgid "Use this tag to improve validation of your site"
|
285 |
msgstr "Використовуйте цей тег для поліпшення валідації вашого сайту"
|
286 |
|
287 |
+
#: facebook-button-plugin.php:546
|
|
|
|
|
|
|
|
|
288 |
msgid "\"Like\" for an entire site on every page:"
|
289 |
msgstr "\"Подобається\" для всього сайту на кожній сторінці"
|
290 |
|
291 |
+
#: facebook-button-plugin.php:548
|
292 |
msgid ""
|
293 |
"Notice: \"Like for the entire site\" option does not create an extra button. "
|
294 |
"This option merely allows your users to like the entire website when this "
|
300 |
"плагіна ставити \"Подобається\" усьому сайту , якщо ця опція увімкнена, або "
|
301 |
"ставити \"Подобається\" окремим постам, якщо опція вимкнена."
|
302 |
|
303 |
+
#: facebook-button-plugin.php:570 facebook-button-plugin.php:626
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
304 |
msgid "Save Changes"
|
305 |
msgstr "Зберегти зміни"
|
306 |
|
307 |
+
#: facebook-button-plugin.php:582
|
308 |
msgid "Facebook Button preview:"
|
309 |
msgstr "Попередній перегляд Facebook кнопок:"
|
310 |
|
311 |
+
#: facebook-button-plugin.php:608
|
312 |
msgid ""
|
313 |
"Please choose the necessary post types (or single pages) where Facebook "
|
314 |
"button will be displayed:"
|
316 |
"Будь ласка, оберіть необхідні типи постів (чи сторінок), де буде "
|
317 |
"відображатися кнопка Facebook"
|
318 |
|
319 |
+
#: facebook-button-plugin.php:615
|
320 |
msgid "Show URL for pages"
|
321 |
msgstr "Відображати URL сторінок"
|
322 |
|
323 |
+
#: facebook-button-plugin.php:621
|
324 |
msgid "Example of the site's pages tree"
|
325 |
msgstr "Приклад дерева сторінок сайту"
|
326 |
|
327 |
+
#: facebook-button-plugin.php:621
|
328 |
msgid "Example of site pages' tree"
|
329 |
msgstr "Приклад дерева сторінок сайту"
|
330 |
|
331 |
+
#: facebook-button-plugin.php:757
|
332 |
msgid "Add Facebook buttons to your page or post"
|
333 |
msgstr "Додати кнопки Facebook на вашу сторінку або пост"
|
334 |
|
335 |
+
#: facebook-button-plugin.php:866
|
336 |
msgid "FAQ"
|
337 |
msgstr "FAQ"
|
338 |
|
339 |
+
#: facebook-button-plugin.php:867
|
340 |
msgid "Support"
|
341 |
msgstr "Підтримка"
|
342 |
|
343 |
+
#~ msgid "None"
|
344 |
+
#~ msgstr "Не використовувати"
|
345 |
+
|
346 |
+
#~ msgid "Custom description"
|
347 |
+
#~ msgstr "Користувацький короткий опис"
|
348 |
+
|
349 |
#~ msgid "Notice:"
|
350 |
#~ msgstr "Нагадування:"
|
351 |
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: bestwebsoft
|
|
3 |
Donate link: http://bestwebsoft.com/donate/
|
4 |
Tags: add button, add social button, add fb button, add facebook social button, add social buttons, add facebook button, add share button, add fb share button, add facebook share button, batton, best facebook plugin, best fb like button, best facebook like button, buton, button, button image, Button like, button position, FB, fb button, fb like, fb like button, fb share, Facebook, Facebook account button, facebook button, facebook button icon, facebook button language, Facebook button like, Facebook button share, Facebook ID, facebook like, facebook like button, Facebook Page, facebook share, facebook share button, follow, folow, follow button, icon, Like, like, likes, like button, My Page button, nice fb like button, nice facebook button, nice fb button, simple fb plugin, simple facebook plugin, social plugin, social plugins, Share, share button, social, social account, social button, wp plugin, wp social plugin, wordpress social plugin
|
5 |
Requires at least: 3.8
|
6 |
-
Tested up to: 4.4
|
7 |
-
Stable tag: 2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -104,16 +104,20 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
|
|
104 |
1. the link to the page where the problem occurs
|
105 |
2. the name of the plugin and its version. If you are using a pro version - your order number.
|
106 |
3. the version of your WordPress installation
|
107 |
-
4. copy and paste into the message your system status report. Please read more here: <a href="https://docs.google.com/document/d/1Wi2X8RdRGXk9kMszQy1xItJrpN0ncXgioH935MaBKtc/edit" target="_blank">
|
108 |
|
109 |
== Screenshots ==
|
110 |
|
111 |
1. Plugin settings page.
|
112 |
-
2. Displaying Facebook
|
113 |
-
3. Displaying Facebook
|
114 |
|
115 |
== Changelog ==
|
116 |
|
|
|
|
|
|
|
|
|
117 |
= V2.46 - 30.11.2015 =
|
118 |
* Bugfix : The bug with plugin menu duplicating was fixed.
|
119 |
|
@@ -304,6 +308,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
|
|
304 |
|
305 |
== Upgrade Notice ==
|
306 |
|
|
|
|
|
|
|
307 |
= V2.46 =
|
308 |
The bug with plugin menu duplicating was fixed.
|
309 |
|
3 |
Donate link: http://bestwebsoft.com/donate/
|
4 |
Tags: add button, add social button, add fb button, add facebook social button, add social buttons, add facebook button, add share button, add fb share button, add facebook share button, batton, best facebook plugin, best fb like button, best facebook like button, buton, button, button image, Button like, button position, FB, fb button, fb like, fb like button, fb share, Facebook, Facebook account button, facebook button, facebook button icon, facebook button language, Facebook button like, Facebook button share, Facebook ID, facebook like, facebook like button, Facebook Page, facebook share, facebook share button, follow, folow, follow button, icon, Like, like, likes, like button, My Page button, nice fb like button, nice facebook button, nice fb button, simple fb plugin, simple facebook plugin, social plugin, social plugins, Share, share button, social, social account, social button, wp plugin, wp social plugin, wordpress social plugin
|
5 |
Requires at least: 3.8
|
6 |
+
Tested up to: 4.4.2
|
7 |
+
Stable tag: 2.47
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
104 |
1. the link to the page where the problem occurs
|
105 |
2. the name of the plugin and its version. If you are using a pro version - your order number.
|
106 |
3. the version of your WordPress installation
|
107 |
+
4. copy and paste into the message your system status report. Please read more here: <a href="https://docs.google.com/document/d/1Wi2X8RdRGXk9kMszQy1xItJrpN0ncXgioH935MaBKtc/edit" target="_blank">Instruction on System Status</a>
|
108 |
|
109 |
== Screenshots ==
|
110 |
|
111 |
1. Plugin settings page.
|
112 |
+
2. Displaying Facebook Buttons before your post.
|
113 |
+
3. Displaying Facebook Buttons in your post via the shortcode.
|
114 |
|
115 |
== Changelog ==
|
116 |
|
117 |
+
= V2.47 - 04.02.2016 =
|
118 |
+
* Bugfix : The conflict in the RSS feed was fixed.
|
119 |
+
* Update : All functionality for wordpress 4.4.2 was updated.
|
120 |
+
|
121 |
= V2.46 - 30.11.2015 =
|
122 |
* Bugfix : The bug with plugin menu duplicating was fixed.
|
123 |
|
308 |
|
309 |
== Upgrade Notice ==
|
310 |
|
311 |
+
= V2.47 =
|
312 |
+
The conflict in the RSS feed was fixed. All functionality for wordpress 4.4.2 was updated.
|
313 |
+
|
314 |
= V2.46 =
|
315 |
The bug with plugin menu duplicating was fixed.
|
316 |
|
screenshot-1.png
CHANGED
Binary file
|
screenshot-2.png
CHANGED
Binary file
|
screenshot-3.png
CHANGED
Binary file
|