Version Description
- 27.05.2013 =
- Bugfix : The error related to creation the path to the Facebook button image is fixed.
- Update : BWS plugins section is updated.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Facebook Button by BestWebSoft |
Version | 2.20 |
Comparing to | |
See all releases |
Code changes from version 2.19 to 2.20
- facebook-button-plugin.php +99 -48
- languages/facebook-ar_AR.mo +0 -0
- languages/facebook-ar_AR.po +76 -50
- languages/facebook-es_ES.mo +0 -0
- languages/facebook-es_ES.po +76 -50
- languages/facebook-fa_IR.mo +0 -0
- languages/facebook-fa_IR.po +75 -50
- languages/facebook-he_IL.mo +0 -0
- languages/facebook-he_IL.po +79 -49
- languages/facebook-ru_RU.mo +0 -0
- languages/facebook-ru_RU.po +72 -49
- languages/facebook-sr_RS.mo +0 -0
- languages/facebook-sr_RS.po +75 -50
- languages/facebook-tr_TR.mo +0 -0
- languages/facebook-tr_TR.po +76 -50
- languages/facebook-uk.mo +0 -0
- languages/facebook-uk.po +75 -50
- readme.txt +13 -6
facebook-button-plugin.php
CHANGED
@@ -4,12 +4,12 @@ Plugin Name: Facebook Button Plugin
|
|
4 |
Plugin URI: http://bestwebsoft.com/plugin/
|
5 |
Description: Put Facebook Button in to your post.
|
6 |
Author: BestWebSoft
|
7 |
-
Version: 2.
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
11 |
|
12 |
-
/* Copyright 2011 BestWebSoft (
|
13 |
|
14 |
This program is free software; you can redistribute it and/or modify
|
15 |
it under the terms of the GNU General Public License, version 2, as
|
@@ -25,83 +25,134 @@ License: GPLv2 or later
|
|
25 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
26 |
*/
|
27 |
|
28 |
-
if( ! function_exists( 'bws_add_menu_render' ) ) {
|
29 |
function bws_add_menu_render() {
|
30 |
global $title;
|
|
|
31 |
$active_plugins = get_option('active_plugins');
|
32 |
-
$all_plugins
|
33 |
|
34 |
$array_activate = array();
|
35 |
$array_install = array();
|
36 |
$array_recomend = array();
|
37 |
$count_activate = $count_install = $count_recomend = 0;
|
38 |
$array_plugins = array(
|
39 |
-
array( 'captcha\/captcha.php', 'Captcha', 'http://
|
40 |
-
array( 'contact-form-plugin\/contact_form.php', 'Contact Form', 'http://
|
41 |
-
array( 'facebook-button-plugin\/facebook-button-plugin.php', 'Facebook Like Button Plugin', 'http://
|
42 |
-
array( 'twitter-plugin\/twitter.php', 'Twitter Plugin', 'http://
|
43 |
-
array( 'portfolio\/portfolio.php', 'Portfolio', 'http://
|
44 |
-
array( 'gallery-plugin\/gallery-plugin.php', 'Gallery', 'http://
|
45 |
-
array( 'adsense-plugin\/adsense-plugin.php', 'Google AdSense Plugin', 'http://
|
46 |
-
array( 'custom-search-plugin\/custom-search-plugin.php', 'Custom Search Plugin', 'http://
|
47 |
-
array( 'quotes-and-tips\/quotes-and-tips.php', 'Quotes and Tips', 'http://
|
48 |
-
array( 'google-sitemap-plugin\/google-sitemap-plugin.php', 'Google sitemap plugin', 'http://
|
49 |
-
array( 'updater\/updater.php', 'Updater', 'http://
|
50 |
);
|
51 |
-
foreach($array_plugins as $plugins) {
|
52 |
if( 0 < count( preg_grep( "/".$plugins[0]."/", $active_plugins ) ) ) {
|
53 |
-
$array_activate[$count_activate][
|
54 |
-
$array_activate[$count_activate][
|
55 |
-
$array_activate[$count_activate][
|
56 |
-
$array_activate[$count_activate][
|
57 |
$count_activate++;
|
58 |
-
}
|
59 |
-
|
60 |
-
$array_install[$count_install][
|
61 |
-
$array_install[$count_install][
|
62 |
-
$array_install[$count_install]['href'] = $plugins[3];
|
63 |
$count_install++;
|
64 |
-
}
|
65 |
-
|
66 |
-
$array_recomend[$count_recomend][
|
67 |
-
$array_recomend[$count_recomend][
|
68 |
-
$array_recomend[$count_recomend][
|
69 |
-
$array_recomend[$count_recomend]['slug'] = $plugins[4];
|
70 |
$count_recomend++;
|
71 |
}
|
72 |
}
|
73 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
<div class="wrap">
|
75 |
<div class="icon32 icon32-bws" id="icon-options-general"></div>
|
76 |
<h2><?php echo $title;?></h2>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
<?php if( 0 < $count_activate ) { ?>
|
78 |
-
<div>
|
79 |
-
<
|
80 |
<?php foreach( $array_activate as $activate_plugin ) { ?>
|
81 |
-
<div style="float:left; width:200px;"><?php echo $activate_plugin[
|
82 |
<?php } ?>
|
83 |
</div>
|
84 |
<?php } ?>
|
85 |
<?php if( 0 < $count_install ) { ?>
|
86 |
-
<div>
|
87 |
-
<
|
88 |
-
<?php foreach($array_install as $install_plugin) { ?>
|
89 |
-
<div style="float:left; width:200px;"><?php echo $install_plugin[
|
90 |
<?php } ?>
|
91 |
</div>
|
92 |
<?php } ?>
|
93 |
<?php if( 0 < $count_recomend ) { ?>
|
94 |
-
<div>
|
95 |
-
<
|
96 |
-
<?php foreach( $array_recomend as $recomend_plugin ) { ?>
|
97 |
-
<div style="float:left; width:200px;"><?php echo $recomend_plugin[
|
98 |
<?php } ?>
|
99 |
-
<span style="color: rgb(136, 136, 136); font-size: 10px;"><?php _e( 'If you have any questions, please contact us via plugin@bestwebsoft.com or fill out the contact form on our website', 'facebook' ); ?> <a href="http://bestwebsoft.com/contact/">http://bestwebsoft.com/contact/</a></span>
|
100 |
</div>
|
101 |
-
<?php } ?>
|
|
|
|
|
102 |
</div>
|
103 |
-
|
104 |
-
}
|
105 |
}
|
106 |
|
107 |
if( ! function_exists( 'fcbk_bttn_plgn_add_pages' ) ) {
|
@@ -531,7 +582,7 @@ if ( ! function_exists ( 'fcbk_bttn_plgn_links' ) ) {
|
|
531 |
if ($file == $base) {
|
532 |
$links[] = '<a href="admin.php?page=facebook-button-plugin.php">' . __( 'Settings','facebook' ) . '</a>';
|
533 |
$links[] = '<a href="http://wordpress.org/extend/plugins/facebook-button-plugin/faq/" target="_blank">' . __( 'FAQ','facebook' ) . '</a>';
|
534 |
-
$links[] = '<a href="
|
535 |
}
|
536 |
return $links;
|
537 |
}
|
4 |
Plugin URI: http://bestwebsoft.com/plugin/
|
5 |
Description: Put Facebook Button in to your post.
|
6 |
Author: BestWebSoft
|
7 |
+
Version: 2.20
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
11 |
|
12 |
+
/* Copyright 2011 BestWebSoft ( http://support.bestwebsoft.com )
|
13 |
|
14 |
This program is free software; you can redistribute it and/or modify
|
15 |
it under the terms of the GNU General Public License, version 2, as
|
25 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
26 |
*/
|
27 |
|
28 |
+
if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
29 |
function bws_add_menu_render() {
|
30 |
global $title;
|
31 |
+
|
32 |
$active_plugins = get_option('active_plugins');
|
33 |
+
$all_plugins = get_plugins();
|
34 |
|
35 |
$array_activate = array();
|
36 |
$array_install = array();
|
37 |
$array_recomend = array();
|
38 |
$count_activate = $count_install = $count_recomend = 0;
|
39 |
$array_plugins = array(
|
40 |
+
array( 'captcha\/captcha.php', 'Captcha', 'http://bestwebsoft.com/plugin/captcha-plugin/', 'http://bestwebsoft.com/plugin/captcha-plugin/#download', '/wp-admin/plugin-install.php?tab=search&type=term&s=Captcha+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=captcha.php' ),
|
41 |
+
array( 'contact-form-plugin\/contact_form.php', 'Contact Form', 'http://bestwebsoft.com/plugin/contact-form/', 'http://bestwebsoft.com/plugin/contact-form/#download', '/wp-admin/plugin-install.php?tab=search&type=term&s=Contact+Form+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=contact_form.php' ),
|
42 |
+
array( 'facebook-button-plugin\/facebook-button-plugin.php', 'Facebook Like Button Plugin', 'http://bestwebsoft.com/plugin/facebook-like-button-plugin/', 'http://bestwebsoft.com/plugin/facebook-like-button-plugin/#download', '/wp-admin/plugin-install.php?tab=search&type=term&s=Facebook+Like+Button+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=facebook-button-plugin.php' ),
|
43 |
+
array( 'twitter-plugin\/twitter.php', 'Twitter Plugin', 'http://bestwebsoft.com/plugin/twitter-plugin/', 'http://bestwebsoft.com/plugin/twitter-plugin/#download', '/wp-admin/plugin-install.php?tab=search&type=term&s=Twitter+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=twitter.php' ),
|
44 |
+
array( 'portfolio\/portfolio.php', 'Portfolio', 'http://bestwebsoft.com/plugin/portfolio-plugin/', 'http://bestwebsoft.com/plugin/portfolio-plugin/#download', '/wp-admin/plugin-install.php?tab=search&type=term&s=Portfolio+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=portfolio.php' ),
|
45 |
+
array( 'gallery-plugin\/gallery-plugin.php', 'Gallery', 'http://bestwebsoft.com/plugin/gallery-plugin/', 'http://bestwebsoft.com/plugin/gallery-plugin/#download', '/wp-admin/plugin-install.php?tab=search&type=term&s=Gallery+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=gallery-plugin.php' ),
|
46 |
+
array( 'adsense-plugin\/adsense-plugin.php', 'Google AdSense Plugin', 'http://bestwebsoft.com/plugin/google-adsense-plugin/', 'http://bestwebsoft.com/plugin/google-adsense-plugin/#download', '/wp-admin/plugin-install.php?tab=search&type=term&s=Adsense+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=adsense-plugin.php' ),
|
47 |
+
array( 'custom-search-plugin\/custom-search-plugin.php', 'Custom Search Plugin', 'http://bestwebsoft.com/plugin/custom-search-plugin/', 'http://bestwebsoft.com/plugin/custom-search-plugin/#download', '/wp-admin/plugin-install.php?tab=search&type=term&s=Custom+Search+plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=custom_search.php' ),
|
48 |
+
array( 'quotes-and-tips\/quotes-and-tips.php', 'Quotes and Tips', 'http://bestwebsoft.com/plugin/quotes-and-tips/', 'http://bestwebsoft.com/plugin/quotes-and-tips/#download', '/wp-admin/plugin-install.php?tab=search&type=term&s=Quotes+and+Tips+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=quotes-and-tips.php' ),
|
49 |
+
array( 'google-sitemap-plugin\/google-sitemap-plugin.php', 'Google sitemap plugin', 'http://bestwebsoft.com/plugin/google-sitemap-plugin/', 'http://bestwebsoft.com/plugin/google-sitemap-plugin/#download', '/wp-admin/plugin-install.php?tab=search&type=term&s=Google+sitemap+plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=google-sitemap-plugin.php' ),
|
50 |
+
array( 'updater\/updater.php', 'Updater', 'http://bestwebsoft.com/plugin/updater-plugin/', 'http://bestwebsoft.com/plugin/updater-plugin/#download', '/wp-admin/plugin-install.php?tab=search&s=updater+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=updater-options' )
|
51 |
);
|
52 |
+
foreach ( $array_plugins as $plugins ) {
|
53 |
if( 0 < count( preg_grep( "/".$plugins[0]."/", $active_plugins ) ) ) {
|
54 |
+
$array_activate[$count_activate]["title"] = $plugins[1];
|
55 |
+
$array_activate[$count_activate]["link"] = $plugins[2];
|
56 |
+
$array_activate[$count_activate]["href"] = $plugins[3];
|
57 |
+
$array_activate[$count_activate]["url"] = $plugins[5];
|
58 |
$count_activate++;
|
59 |
+
} else if ( array_key_exists(str_replace( "\\", "", $plugins[0]), $all_plugins ) ) {
|
60 |
+
$array_install[$count_install]["title"] = $plugins[1];
|
61 |
+
$array_install[$count_install]["link"] = $plugins[2];
|
62 |
+
$array_install[$count_install]["href"] = $plugins[3];
|
|
|
63 |
$count_install++;
|
64 |
+
} else {
|
65 |
+
$array_recomend[$count_recomend]["title"] = $plugins[1];
|
66 |
+
$array_recomend[$count_recomend]["link"] = $plugins[2];
|
67 |
+
$array_recomend[$count_recomend]["href"] = $plugins[3];
|
68 |
+
$array_recomend[$count_recomend]["slug"] = $plugins[4];
|
|
|
69 |
$count_recomend++;
|
70 |
}
|
71 |
}
|
72 |
+
$array_activate_pro = array();
|
73 |
+
$array_install_pro = array();
|
74 |
+
$array_recomend_pro = array();
|
75 |
+
$count_activate_pro = $count_install_pro = $count_recomend_pro = 0;
|
76 |
+
$array_plugins_pro = array(
|
77 |
+
array( 'gallery-plugin-pro\/gallery-plugin-pro.php', 'Gallery Pro', 'http://bestwebsoft.com/plugin/gallery-pro/', 'http://bestwebsoft.com/plugin/gallery-pro/#purchase', 'admin.php?page=gallery-plugin-pro.php' )
|
78 |
+
);
|
79 |
+
foreach ( $array_plugins_pro as $plugins ) {
|
80 |
+
if( 0 < count( preg_grep( "/".$plugins[0]."/", $active_plugins ) ) ) {
|
81 |
+
$array_activate_pro[$count_activate_pro]["title"] = $plugins[1];
|
82 |
+
$array_activate_pro[$count_activate_pro]["link"] = $plugins[2];
|
83 |
+
$array_activate_pro[$count_activate_pro]["href"] = $plugins[3];
|
84 |
+
$array_activate_pro[$count_activate_pro]["url"] = $plugins[4];
|
85 |
+
$count_activate_pro++;
|
86 |
+
} else if( array_key_exists(str_replace( "\\", "", $plugins[0]), $all_plugins ) ) {
|
87 |
+
$array_install_pro[$count_install_pro]["title"] = $plugins[1];
|
88 |
+
$array_install_pro[$count_install_pro]["link"] = $plugins[2];
|
89 |
+
$array_install_pro[$count_install_pro]["href"] = $plugins[3];
|
90 |
+
$count_install_pro++;
|
91 |
+
} else {
|
92 |
+
$array_recomend_pro[$count_recomend_pro]["title"] = $plugins[1];
|
93 |
+
$array_recomend_pro[$count_recomend_pro]["link"] = $plugins[2];
|
94 |
+
$array_recomend_pro[$count_recomend_pro]["href"] = $plugins[3];
|
95 |
+
$count_recomend_pro++;
|
96 |
+
}
|
97 |
+
} ?>
|
98 |
<div class="wrap">
|
99 |
<div class="icon32 icon32-bws" id="icon-options-general"></div>
|
100 |
<h2><?php echo $title;?></h2>
|
101 |
+
<h3 style="color: blue"><?php _e( 'Pro plugins', 'facebook' ); ?></h3>
|
102 |
+
<?php if( 0 < $count_activate_pro ) { ?>
|
103 |
+
<div style="padding-left:15px;">
|
104 |
+
<h4><?php _e( 'Activated plugins', 'facebook' ); ?></h4>
|
105 |
+
<?php foreach ( $array_activate_pro as $activate_plugin ) { ?>
|
106 |
+
<div style="float:left; width:200px;"><?php echo $activate_plugin["title"]; ?></div> <p><a href="<?php echo $activate_plugin["link"]; ?>" target="_blank"><?php echo __( "Read more", 'facebook' ); ?></a> <a href="<?php echo $activate_plugin["url"]; ?>"><?php echo __( "Settings", 'facebook' ); ?></a></p>
|
107 |
+
<?php } ?>
|
108 |
+
</div>
|
109 |
+
<?php } ?>
|
110 |
+
<?php if( 0 < $count_install_pro ) { ?>
|
111 |
+
<div style="padding-left:15px;">
|
112 |
+
<h4><?php _e( 'Installed plugins', 'facebook' ); ?></h4>
|
113 |
+
<?php foreach ( $array_install_pro as $install_plugin) { ?>
|
114 |
+
<div style="float:left; width:200px;"><?php echo $install_plugin["title"]; ?></div> <p><a href="<?php echo $install_plugin["link"]; ?>" target="_blank"><?php echo __( "Read more", 'facebook' ); ?></a></p>
|
115 |
+
<?php } ?>
|
116 |
+
</div>
|
117 |
+
<?php } ?>
|
118 |
+
<?php if( 0 < $count_recomend_pro ) { ?>
|
119 |
+
<div style="padding-left:15px;">
|
120 |
+
<h4><?php _e( 'Recommended plugins', 'facebook' ); ?></h4>
|
121 |
+
<?php foreach ( $array_recomend_pro as $recomend_plugin ) { ?>
|
122 |
+
<div style="float:left; width:200px;"><?php echo $recomend_plugin["title"]; ?></div> <p><a href="<?php echo $recomend_plugin["link"]; ?>" target="_blank"><?php echo __( "Read more", 'facebook' ); ?></a> <a href="<?php echo $recomend_plugin["href"]; ?>" target="_blank"><?php echo __( "Purchase", 'facebook' ); ?></a></p>
|
123 |
+
<?php } ?>
|
124 |
+
</div>
|
125 |
+
<?php } ?>
|
126 |
+
<br />
|
127 |
+
<h3 style="color: green"><?php _e( 'Free plugins', 'facebook' ); ?></h3>
|
128 |
<?php if( 0 < $count_activate ) { ?>
|
129 |
+
<div style="padding-left:15px;">
|
130 |
+
<h4><?php _e( 'Activated plugins', 'facebook' ); ?></h4>
|
131 |
<?php foreach( $array_activate as $activate_plugin ) { ?>
|
132 |
+
<div style="float:left; width:200px;"><?php echo $activate_plugin["title"]; ?></div> <p><a href="<?php echo $activate_plugin["link"]; ?>" target="_blank"><?php echo __( "Read more", 'facebook' ); ?></a> <a href="<?php echo $activate_plugin["url"]; ?>"><?php echo __( "Settings", 'facebook' ); ?></a></p>
|
133 |
<?php } ?>
|
134 |
</div>
|
135 |
<?php } ?>
|
136 |
<?php if( 0 < $count_install ) { ?>
|
137 |
+
<div style="padding-left:15px;">
|
138 |
+
<h4><?php _e( 'Installed plugins', 'facebook' ); ?></h4>
|
139 |
+
<?php foreach ( $array_install as $install_plugin ) { ?>
|
140 |
+
<div style="float:left; width:200px;"><?php echo $install_plugin["title"]; ?></div> <p><a href="<?php echo $install_plugin["link"]; ?>" target="_blank"><?php echo __( "Read more", 'facebook' ); ?></a></p>
|
141 |
<?php } ?>
|
142 |
</div>
|
143 |
<?php } ?>
|
144 |
<?php if( 0 < $count_recomend ) { ?>
|
145 |
+
<div style="padding-left:15px;">
|
146 |
+
<h4><?php _e( 'Recommended plugins', 'facebook' ); ?></h4>
|
147 |
+
<?php foreach ( $array_recomend as $recomend_plugin ) { ?>
|
148 |
+
<div style="float:left; width:200px;"><?php echo $recomend_plugin["title"]; ?></div> <p><a href="<?php echo $recomend_plugin["link"]; ?>" target="_blank"><?php echo __( "Read more", 'facebook' ); ?></a> <a href="<?php echo $recomend_plugin["href"]; ?>" target="_blank"><?php echo __( "Download", 'facebook' ); ?></a> <a class="install-now" href="<?php echo get_bloginfo( "url" ) . $recomend_plugin["slug"]; ?>" title="<?php esc_attr( sprintf( __( 'Install %s' ), $recomend_plugin["title"] ) ) ?>" target="_blank"><?php echo __( 'Install now from wordpress.org', 'facebook' ) ?></a></p>
|
149 |
<?php } ?>
|
|
|
150 |
</div>
|
151 |
+
<?php } ?>
|
152 |
+
<br />
|
153 |
+
<span style="color: rgb(136, 136, 136); font-size: 10px;"><?php _e( 'If you have any questions, please contact us via', 'facebook' ); ?> <a href="http://support.bestwebsoft.com">http://support.bestwebsoft.com</a></span>
|
154 |
</div>
|
155 |
+
<?php }
|
|
|
156 |
}
|
157 |
|
158 |
if( ! function_exists( 'fcbk_bttn_plgn_add_pages' ) ) {
|
582 |
if ($file == $base) {
|
583 |
$links[] = '<a href="admin.php?page=facebook-button-plugin.php">' . __( 'Settings','facebook' ) . '</a>';
|
584 |
$links[] = '<a href="http://wordpress.org/extend/plugins/facebook-button-plugin/faq/" target="_blank">' . __( 'FAQ','facebook' ) . '</a>';
|
585 |
+
$links[] = '<a href="http://support.bestwebsoft.com">' . __( 'Support','facebook' ) . '</a>';
|
586 |
}
|
587 |
return $links;
|
588 |
}
|
languages/facebook-ar_AR.mo
CHANGED
Binary file
|
languages/facebook-ar_AR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Albayan Design Hani aladoli <info@albayan-design.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,181 +16,207 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
msgid "Activated plugins"
|
21 |
msgstr "الاضافات المفعله "
|
22 |
|
23 |
-
#: facebook-button-plugin.php:
|
24 |
-
#: facebook-button-plugin.php:
|
25 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
26 |
msgid "Read more"
|
27 |
msgstr "اقراء المزيد"
|
28 |
|
29 |
-
#: facebook-button-plugin.php:
|
30 |
-
#: facebook-button-plugin.php:
|
31 |
-
#: facebook-button-plugin.php:
|
|
|
32 |
msgid "Settings"
|
33 |
msgstr "الاعدادات "
|
34 |
|
35 |
-
#: facebook-button-plugin.php:
|
|
|
36 |
msgid "Installed plugins"
|
37 |
msgstr "الاضافات المنزلة "
|
38 |
|
39 |
-
#: facebook-button-plugin.php:
|
|
|
40 |
msgid "Recommended plugins"
|
41 |
msgstr "اضافات موصي بها"
|
42 |
|
43 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
msgid "Download"
|
45 |
msgstr "تحميل"
|
46 |
|
47 |
-
#: facebook-button-plugin.php:
|
48 |
#, php-format
|
49 |
msgid "Install %s"
|
50 |
msgstr "تنزيل %s"
|
51 |
|
52 |
-
#: facebook-button-plugin.php:
|
53 |
msgid "Install now from wordpress.org"
|
54 |
msgstr "حملها الا من wordpress.org"
|
55 |
|
56 |
-
#: facebook-button-plugin.php:
|
57 |
-
|
58 |
-
|
59 |
-
msgstr "اذا كان لديك اي استفسار او سؤال الرجاء الاتصال بنا عبر بريدنا الالكتروني : contact us via plugin@bestwebsoft.com , او المراسلة الفورية من واجهة الاتصال بنا علي موقعنا الخاص"
|
60 |
|
61 |
-
#: facebook-button-plugin.php:
|
62 |
-
#: facebook-button-plugin.php:
|
63 |
#, fuzzy
|
64 |
msgid "Facebook Button Settings"
|
65 |
msgstr "اعدادات زر الفيس بوك"
|
66 |
|
67 |
-
#: facebook-button-plugin.php:
|
68 |
#, fuzzy
|
69 |
msgid "Facebook Button"
|
70 |
msgstr "زر الفيس بوك"
|
71 |
|
72 |
-
#: facebook-button-plugin.php:
|
73 |
#, fuzzy
|
74 |
msgid "Settings saved"
|
75 |
msgstr "الاعدادات "
|
76 |
|
77 |
-
#: facebook-button-plugin.php:
|
78 |
msgid "Error: File size > 32K"
|
79 |
msgstr "خطاء : حجم الملف : > 32К"
|
80 |
|
81 |
-
#: facebook-button-plugin.php:
|
82 |
msgid "Error: Invalid file type"
|
83 |
msgstr "خطاء : نوع الملف غير صحيح"
|
84 |
|
85 |
-
#: facebook-button-plugin.php:
|
86 |
msgid "Error: moving file failed"
|
87 |
msgstr "خطاء : فشل في نقل الملف"
|
88 |
|
89 |
-
#: facebook-button-plugin.php:
|
90 |
msgid "Error: check image width or height"
|
91 |
msgstr "خطاء : تأكد من عرض وطول الصورة"
|
92 |
|
93 |
-
#: facebook-button-plugin.php:
|
94 |
msgid "Uploading Error: check image properties"
|
95 |
msgstr "خطاء في الرفع : تأكد من خصائص الصورة"
|
96 |
|
97 |
-
#: facebook-button-plugin.php:
|
98 |
#, fuzzy
|
99 |
msgid "Your Facebook ID:"
|
100 |
msgstr "اسم حسابك علي الفيس بوك :"
|
101 |
|
102 |
-
#: facebook-button-plugin.php:
|
103 |
msgid "Display button:"
|
104 |
msgstr "عرض الزر :"
|
105 |
|
106 |
-
#: facebook-button-plugin.php:
|
107 |
msgid "My Page"
|
108 |
msgstr "صفحتي"
|
109 |
|
110 |
-
#: facebook-button-plugin.php:
|
111 |
msgid "Like"
|
112 |
msgstr "اعجاب "
|
113 |
|
114 |
-
#: facebook-button-plugin.php:
|
115 |
#, fuzzy
|
116 |
msgid "Choose display settings:"
|
117 |
msgstr "اختار خيار العرض :"
|
118 |
|
119 |
-
#: facebook-button-plugin.php:
|
120 |
#, fuzzy
|
121 |
msgid "Standard Facebook image"
|
122 |
msgstr "صورة الفيس بوك الافتراضية "
|
123 |
|
124 |
-
#: facebook-button-plugin.php:
|
125 |
#, fuzzy
|
126 |
msgid "Custom Facebook image"
|
127 |
msgstr "صورة خاصة للـ فيس بوك"
|
128 |
|
129 |
-
#: facebook-button-plugin.php:
|
130 |
msgid "Current image:"
|
131 |
msgstr "الصورة الحالية : "
|
132 |
|
133 |
-
#: facebook-button-plugin.php:
|
134 |
#, fuzzy
|
135 |
msgid "Facebook image:"
|
136 |
msgstr "صورة الفيس بوك : "
|
137 |
|
138 |
-
#: facebook-button-plugin.php:
|
139 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\"."
|
140 |
msgstr "Propiedades de la imagen: Ancho máx.: 100px; Alto máx.: 40px; Tamaño máx: 32Kb; Tipo de imagen: \"jpg\", \"jpeg\"."
|
141 |
|
142 |
-
#: facebook-button-plugin.php:
|
143 |
#, fuzzy
|
144 |
msgid "Facebook Button Position:"
|
145 |
msgstr "مكان زر الفيس بوك :"
|
146 |
|
147 |
-
#: facebook-button-plugin.php:
|
148 |
msgid "Before"
|
149 |
msgstr "قبل"
|
150 |
|
151 |
-
#: facebook-button-plugin.php:
|
152 |
msgid "After"
|
153 |
msgstr "بعد"
|
154 |
|
155 |
-
#: facebook-button-plugin.php:
|
156 |
msgid "Before and After"
|
157 |
msgstr "قبل و بعد"
|
158 |
|
159 |
-
#: facebook-button-plugin.php:
|
160 |
msgid "Shortcode"
|
161 |
msgstr "الكود"
|
162 |
|
163 |
-
#: facebook-button-plugin.php:
|
164 |
#, fuzzy
|
165 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
166 |
msgstr "اذا كنت ترغب في اضافة زر الفيس بوك علي موقعك انسخ هذه الكود وضعه في المكان المراد ظهور الزر فيه"
|
167 |
|
168 |
-
#: facebook-button-plugin.php:
|
169 |
#, fuzzy
|
170 |
msgid "Facebook Button language:"
|
171 |
msgstr "للغه زر الفيس بوك :"
|
172 |
|
173 |
-
#: facebook-button-plugin.php:
|
174 |
#, fuzzy
|
175 |
msgid "Change the language of Facebook Like Button"
|
176 |
msgstr "اختار اللغه للـ زر الاغحاب"
|
177 |
|
178 |
-
#: facebook-button-plugin.php:
|
179 |
msgid "Save Changes"
|
180 |
msgstr "حفظ التغييرات"
|
181 |
|
182 |
-
#: facebook-button-plugin.php:
|
183 |
msgid "FAQ"
|
184 |
msgstr "أسئلة وأجوبة"
|
185 |
|
186 |
-
#: facebook-button-plugin.php:
|
187 |
msgid "Support"
|
188 |
msgstr "الدعم"
|
189 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
190 |
#~ msgid "Options saved."
|
191 |
#~ msgstr "تم حفظ الاعدادات"
|
192 |
#~ msgid "Install Now"
|
193 |
#~ msgstr "Установить сейчас"
|
194 |
-
#~ msgid "BWS Plugins"
|
195 |
-
#~ msgstr "Плагины BWS"
|
196 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-05-27 13:59+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-05-27 13:59+0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Albayan Design Hani aladoli <info@albayan-design.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: facebook-button-plugin.php:101
|
20 |
+
#, fuzzy
|
21 |
+
msgid "Pro plugins"
|
22 |
+
msgstr "Плагины BWS"
|
23 |
+
|
24 |
+
#: facebook-button-plugin.php:104
|
25 |
+
#: facebook-button-plugin.php:130
|
26 |
msgid "Activated plugins"
|
27 |
msgstr "الاضافات المفعله "
|
28 |
|
29 |
+
#: facebook-button-plugin.php:106
|
30 |
+
#: facebook-button-plugin.php:114
|
31 |
+
#: facebook-button-plugin.php:122
|
32 |
+
#: facebook-button-plugin.php:132
|
33 |
+
#: facebook-button-plugin.php:140
|
34 |
+
#: facebook-button-plugin.php:148
|
35 |
msgid "Read more"
|
36 |
msgstr "اقراء المزيد"
|
37 |
|
38 |
+
#: facebook-button-plugin.php:106
|
39 |
+
#: facebook-button-plugin.php:132
|
40 |
+
#: facebook-button-plugin.php:571
|
41 |
+
#: facebook-button-plugin.php:583
|
42 |
msgid "Settings"
|
43 |
msgstr "الاعدادات "
|
44 |
|
45 |
+
#: facebook-button-plugin.php:112
|
46 |
+
#: facebook-button-plugin.php:138
|
47 |
msgid "Installed plugins"
|
48 |
msgstr "الاضافات المنزلة "
|
49 |
|
50 |
+
#: facebook-button-plugin.php:120
|
51 |
+
#: facebook-button-plugin.php:146
|
52 |
msgid "Recommended plugins"
|
53 |
msgstr "اضافات موصي بها"
|
54 |
|
55 |
+
#: facebook-button-plugin.php:122
|
56 |
+
msgid "Purchase"
|
57 |
+
msgstr ""
|
58 |
+
|
59 |
+
#: facebook-button-plugin.php:127
|
60 |
+
#, fuzzy
|
61 |
+
msgid "Free plugins"
|
62 |
+
msgstr "اضافات موصي بها"
|
63 |
+
|
64 |
+
#: facebook-button-plugin.php:148
|
65 |
msgid "Download"
|
66 |
msgstr "تحميل"
|
67 |
|
68 |
+
#: facebook-button-plugin.php:148
|
69 |
#, php-format
|
70 |
msgid "Install %s"
|
71 |
msgstr "تنزيل %s"
|
72 |
|
73 |
+
#: facebook-button-plugin.php:148
|
74 |
msgid "Install now from wordpress.org"
|
75 |
msgstr "حملها الا من wordpress.org"
|
76 |
|
77 |
+
#: facebook-button-plugin.php:153
|
78 |
+
msgid "If you have any questions, please contact us via"
|
79 |
+
msgstr ""
|
|
|
80 |
|
81 |
+
#: facebook-button-plugin.php:161
|
82 |
+
#: facebook-button-plugin.php:274
|
83 |
#, fuzzy
|
84 |
msgid "Facebook Button Settings"
|
85 |
msgstr "اعدادات زر الفيس بوك"
|
86 |
|
87 |
+
#: facebook-button-plugin.php:161
|
88 |
#, fuzzy
|
89 |
msgid "Facebook Button"
|
90 |
msgstr "زر الفيس بوك"
|
91 |
|
92 |
+
#: facebook-button-plugin.php:221
|
93 |
#, fuzzy
|
94 |
msgid "Settings saved"
|
95 |
msgstr "الاعدادات "
|
96 |
|
97 |
+
#: facebook-button-plugin.php:243
|
98 |
msgid "Error: File size > 32K"
|
99 |
msgstr "خطاء : حجم الملف : > 32К"
|
100 |
|
101 |
+
#: facebook-button-plugin.php:246
|
102 |
msgid "Error: Invalid file type"
|
103 |
msgstr "خطاء : نوع الملف غير صحيح"
|
104 |
|
105 |
+
#: facebook-button-plugin.php:256
|
106 |
msgid "Error: moving file failed"
|
107 |
msgstr "خطاء : فشل في نقل الملف"
|
108 |
|
109 |
+
#: facebook-button-plugin.php:260
|
110 |
msgid "Error: check image width or height"
|
111 |
msgstr "خطاء : تأكد من عرض وطول الصورة"
|
112 |
|
113 |
+
#: facebook-button-plugin.php:265
|
114 |
msgid "Uploading Error: check image properties"
|
115 |
msgstr "خطاء في الرفع : تأكد من خصائص الصورة"
|
116 |
|
117 |
+
#: facebook-button-plugin.php:281
|
118 |
#, fuzzy
|
119 |
msgid "Your Facebook ID:"
|
120 |
msgstr "اسم حسابك علي الفيس بوك :"
|
121 |
|
122 |
+
#: facebook-button-plugin.php:287
|
123 |
msgid "Display button:"
|
124 |
msgstr "عرض الزر :"
|
125 |
|
126 |
+
#: facebook-button-plugin.php:289
|
127 |
msgid "My Page"
|
128 |
msgstr "صفحتي"
|
129 |
|
130 |
+
#: facebook-button-plugin.php:290
|
131 |
msgid "Like"
|
132 |
msgstr "اعجاب "
|
133 |
|
134 |
+
#: facebook-button-plugin.php:295
|
135 |
#, fuzzy
|
136 |
msgid "Choose display settings:"
|
137 |
msgstr "اختار خيار العرض :"
|
138 |
|
139 |
+
#: facebook-button-plugin.php:299
|
140 |
#, fuzzy
|
141 |
msgid "Standard Facebook image"
|
142 |
msgstr "صورة الفيس بوك الافتراضية "
|
143 |
|
144 |
+
#: facebook-button-plugin.php:301
|
145 |
#, fuzzy
|
146 |
msgid "Custom Facebook image"
|
147 |
msgstr "صورة خاصة للـ فيس بوك"
|
148 |
|
149 |
+
#: facebook-button-plugin.php:308
|
150 |
msgid "Current image:"
|
151 |
msgstr "الصورة الحالية : "
|
152 |
|
153 |
+
#: facebook-button-plugin.php:321
|
154 |
#, fuzzy
|
155 |
msgid "Facebook image:"
|
156 |
msgstr "صورة الفيس بوك : "
|
157 |
|
158 |
+
#: facebook-button-plugin.php:325
|
159 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\"."
|
160 |
msgstr "Propiedades de la imagen: Ancho máx.: 100px; Alto máx.: 40px; Tamaño máx: 32Kb; Tipo de imagen: \"jpg\", \"jpeg\"."
|
161 |
|
162 |
+
#: facebook-button-plugin.php:333
|
163 |
#, fuzzy
|
164 |
msgid "Facebook Button Position:"
|
165 |
msgstr "مكان زر الفيس بوك :"
|
166 |
|
167 |
+
#: facebook-button-plugin.php:337
|
168 |
msgid "Before"
|
169 |
msgstr "قبل"
|
170 |
|
171 |
+
#: facebook-button-plugin.php:338
|
172 |
msgid "After"
|
173 |
msgstr "بعد"
|
174 |
|
175 |
+
#: facebook-button-plugin.php:339
|
176 |
msgid "Before and After"
|
177 |
msgstr "قبل و بعد"
|
178 |
|
179 |
+
#: facebook-button-plugin.php:340
|
180 |
msgid "Shortcode"
|
181 |
msgstr "الكود"
|
182 |
|
183 |
+
#: facebook-button-plugin.php:342
|
184 |
#, fuzzy
|
185 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
186 |
msgstr "اذا كنت ترغب في اضافة زر الفيس بوك علي موقعك انسخ هذه الكود وضعه في المكان المراد ظهور الزر فيه"
|
187 |
|
188 |
+
#: facebook-button-plugin.php:347
|
189 |
#, fuzzy
|
190 |
msgid "Facebook Button language:"
|
191 |
msgstr "للغه زر الفيس بوك :"
|
192 |
|
193 |
+
#: facebook-button-plugin.php:458
|
194 |
#, fuzzy
|
195 |
msgid "Change the language of Facebook Like Button"
|
196 |
msgstr "اختار اللغه للـ زر الاغحاب"
|
197 |
|
198 |
+
#: facebook-button-plugin.php:464
|
199 |
msgid "Save Changes"
|
200 |
msgstr "حفظ التغييرات"
|
201 |
|
202 |
+
#: facebook-button-plugin.php:584
|
203 |
msgid "FAQ"
|
204 |
msgstr "أسئلة وأجوبة"
|
205 |
|
206 |
+
#: facebook-button-plugin.php:585
|
207 |
msgid "Support"
|
208 |
msgstr "الدعم"
|
209 |
|
210 |
+
#, fuzzy
|
211 |
+
#~ msgid ""
|
212 |
+
#~ "If you have any questions, please contact us via plugin@bestwebsoft.com "
|
213 |
+
#~ "or fill out the contact form on our website"
|
214 |
+
#~ msgstr ""
|
215 |
+
#~ "اذا كان لديك اي استفسار او سؤال الرجاء الاتصال بنا عبر بريدنا "
|
216 |
+
#~ "الالكتروني : contact us via plugin@bestwebsoft.com , او المراسلة "
|
217 |
+
#~ "الفورية من واجهة الاتصال بنا علي موقعنا الخاص"
|
218 |
#~ msgid "Options saved."
|
219 |
#~ msgstr "تم حفظ الاعدادات"
|
220 |
#~ msgid "Install Now"
|
221 |
#~ msgstr "Установить сейчас"
|
|
|
|
|
222 |
|
languages/facebook-es_ES.mo
CHANGED
Binary file
|
languages/facebook-es_ES.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,180 +16,206 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
msgid "Activated plugins"
|
21 |
msgstr "Plugins activados"
|
22 |
|
23 |
-
#: facebook-button-plugin.php:
|
24 |
-
#: facebook-button-plugin.php:
|
25 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
26 |
msgid "Read more"
|
27 |
msgstr "Leer mas"
|
28 |
|
29 |
-
#: facebook-button-plugin.php:
|
30 |
-
#: facebook-button-plugin.php:
|
31 |
-
#: facebook-button-plugin.php:
|
|
|
32 |
msgid "Settings"
|
33 |
msgstr "Opciones"
|
34 |
|
35 |
-
#: facebook-button-plugin.php:
|
|
|
36 |
msgid "Installed plugins"
|
37 |
msgstr "Plugins instalados"
|
38 |
|
39 |
-
#: facebook-button-plugin.php:
|
|
|
40 |
msgid "Recommended plugins"
|
41 |
msgstr "Plugins recomendados"
|
42 |
|
43 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
msgid "Download"
|
45 |
msgstr "Descargar"
|
46 |
|
47 |
-
#: facebook-button-plugin.php:
|
48 |
#, php-format
|
49 |
msgid "Install %s"
|
50 |
msgstr "Instalar %s"
|
51 |
|
52 |
-
#: facebook-button-plugin.php:
|
53 |
msgid "Install now from wordpress.org"
|
54 |
msgstr "Instalar ahora desde wordpress.org"
|
55 |
|
56 |
-
#: facebook-button-plugin.php:
|
57 |
-
|
58 |
-
|
59 |
-
msgstr "Si tiene alguna pregunta, por favor contacte con nosotros via plugin@bestwebsoft.com o rellenando el formulariod e contacto de nuestra web"
|
60 |
|
61 |
-
#: facebook-button-plugin.php:
|
62 |
-
#: facebook-button-plugin.php:
|
63 |
#, fuzzy
|
64 |
msgid "Facebook Button Settings"
|
65 |
msgstr "Opciones del botón de Facebook"
|
66 |
|
67 |
-
#: facebook-button-plugin.php:
|
68 |
#, fuzzy
|
69 |
msgid "Facebook Button"
|
70 |
msgstr "Botón FaceBook"
|
71 |
|
72 |
-
#: facebook-button-plugin.php:
|
73 |
#, fuzzy
|
74 |
msgid "Settings saved"
|
75 |
msgstr "Opciones"
|
76 |
|
77 |
-
#: facebook-button-plugin.php:
|
78 |
msgid "Error: File size > 32K"
|
79 |
msgstr "Error: Archivo > 32К"
|
80 |
|
81 |
-
#: facebook-button-plugin.php:
|
82 |
msgid "Error: Invalid file type"
|
83 |
msgstr "error: Tipo de archivo no válido"
|
84 |
|
85 |
-
#: facebook-button-plugin.php:
|
86 |
msgid "Error: moving file failed"
|
87 |
msgstr "Error: Fallo moviendo el archivo"
|
88 |
|
89 |
-
#: facebook-button-plugin.php:
|
90 |
msgid "Error: check image width or height"
|
91 |
msgstr "Error: Revisa el alto o ancho de la imagen"
|
92 |
|
93 |
-
#: facebook-button-plugin.php:
|
94 |
msgid "Uploading Error: check image properties"
|
95 |
msgstr "Error de subida: Revisa las propiedades de la imagen"
|
96 |
|
97 |
-
#: facebook-button-plugin.php:
|
98 |
#, fuzzy
|
99 |
msgid "Your Facebook ID:"
|
100 |
msgstr "Su FaceBook Id:"
|
101 |
|
102 |
-
#: facebook-button-plugin.php:
|
103 |
msgid "Display button:"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: facebook-button-plugin.php:
|
107 |
msgid "My Page"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: facebook-button-plugin.php:
|
111 |
msgid "Like"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: facebook-button-plugin.php:
|
115 |
#, fuzzy
|
116 |
msgid "Choose display settings:"
|
117 |
msgstr "Seleccione opciones de visualización:"
|
118 |
|
119 |
-
#: facebook-button-plugin.php:
|
120 |
#, fuzzy
|
121 |
msgid "Standard Facebook image"
|
122 |
msgstr "Imagen estandar de FaceBook"
|
123 |
|
124 |
-
#: facebook-button-plugin.php:
|
125 |
#, fuzzy
|
126 |
msgid "Custom Facebook image"
|
127 |
msgstr "Imagen personalizada de FaceBook"
|
128 |
|
129 |
-
#: facebook-button-plugin.php:
|
130 |
msgid "Current image:"
|
131 |
msgstr "Imagen actual:"
|
132 |
|
133 |
-
#: facebook-button-plugin.php:
|
134 |
#, fuzzy
|
135 |
msgid "Facebook image:"
|
136 |
msgstr "Imagen de FaceBook:"
|
137 |
|
138 |
-
#: facebook-button-plugin.php:
|
139 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\"."
|
140 |
msgstr "Propiedades de la imagen: Ancho máx.: 100px; Alto máx.: 40px; Tamaño máx: 32Kb; Tipo de imagen: \"jpg\", \"jpeg\"."
|
141 |
|
142 |
-
#: facebook-button-plugin.php:
|
143 |
#, fuzzy
|
144 |
msgid "Facebook Button Position:"
|
145 |
msgstr "Posición del botón Facebook:"
|
146 |
|
147 |
-
#: facebook-button-plugin.php:
|
148 |
msgid "Before"
|
149 |
msgstr "Antes"
|
150 |
|
151 |
-
#: facebook-button-plugin.php:
|
152 |
msgid "After"
|
153 |
msgstr "Después"
|
154 |
|
155 |
-
#: facebook-button-plugin.php:
|
156 |
msgid "Before and After"
|
157 |
msgstr "Antes y después"
|
158 |
|
159 |
-
#: facebook-button-plugin.php:
|
160 |
msgid "Shortcode"
|
161 |
msgstr "Shortcode"
|
162 |
|
163 |
-
#: facebook-button-plugin.php:
|
164 |
#, fuzzy
|
165 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
166 |
msgstr "Si desea agregar un botón de Facebook para su sitio web, sólo tiene que copiar y pegar el código en su web o la página:"
|
167 |
|
168 |
-
#: facebook-button-plugin.php:
|
169 |
#, fuzzy
|
170 |
msgid "Facebook Button language:"
|
171 |
msgstr "Botón FaceBook"
|
172 |
|
173 |
-
#: facebook-button-plugin.php:
|
174 |
msgid "Change the language of Facebook Like Button"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: facebook-button-plugin.php:
|
178 |
msgid "Save Changes"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: facebook-button-plugin.php:
|
182 |
msgid "FAQ"
|
183 |
msgstr "FAQ"
|
184 |
|
185 |
-
#: facebook-button-plugin.php:
|
186 |
msgid "Support"
|
187 |
msgstr "Soporte"
|
188 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
189 |
#~ msgid "Options saved."
|
190 |
#~ msgstr "Opciones guardadas"
|
191 |
#~ msgid "Install Now"
|
192 |
#~ msgstr "Установить сейчас"
|
193 |
-
#~ msgid "BWS Plugins"
|
194 |
-
#~ msgstr "Плагины BWS"
|
195 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-05-27 13:59+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-05-27 13:59+0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: facebook-button-plugin.php:101
|
20 |
+
#, fuzzy
|
21 |
+
msgid "Pro plugins"
|
22 |
+
msgstr "Плагины BWS"
|
23 |
+
|
24 |
+
#: facebook-button-plugin.php:104
|
25 |
+
#: facebook-button-plugin.php:130
|
26 |
msgid "Activated plugins"
|
27 |
msgstr "Plugins activados"
|
28 |
|
29 |
+
#: facebook-button-plugin.php:106
|
30 |
+
#: facebook-button-plugin.php:114
|
31 |
+
#: facebook-button-plugin.php:122
|
32 |
+
#: facebook-button-plugin.php:132
|
33 |
+
#: facebook-button-plugin.php:140
|
34 |
+
#: facebook-button-plugin.php:148
|
35 |
msgid "Read more"
|
36 |
msgstr "Leer mas"
|
37 |
|
38 |
+
#: facebook-button-plugin.php:106
|
39 |
+
#: facebook-button-plugin.php:132
|
40 |
+
#: facebook-button-plugin.php:571
|
41 |
+
#: facebook-button-plugin.php:583
|
42 |
msgid "Settings"
|
43 |
msgstr "Opciones"
|
44 |
|
45 |
+
#: facebook-button-plugin.php:112
|
46 |
+
#: facebook-button-plugin.php:138
|
47 |
msgid "Installed plugins"
|
48 |
msgstr "Plugins instalados"
|
49 |
|
50 |
+
#: facebook-button-plugin.php:120
|
51 |
+
#: facebook-button-plugin.php:146
|
52 |
msgid "Recommended plugins"
|
53 |
msgstr "Plugins recomendados"
|
54 |
|
55 |
+
#: facebook-button-plugin.php:122
|
56 |
+
msgid "Purchase"
|
57 |
+
msgstr ""
|
58 |
+
|
59 |
+
#: facebook-button-plugin.php:127
|
60 |
+
#, fuzzy
|
61 |
+
msgid "Free plugins"
|
62 |
+
msgstr "Plugins recomendados"
|
63 |
+
|
64 |
+
#: facebook-button-plugin.php:148
|
65 |
msgid "Download"
|
66 |
msgstr "Descargar"
|
67 |
|
68 |
+
#: facebook-button-plugin.php:148
|
69 |
#, php-format
|
70 |
msgid "Install %s"
|
71 |
msgstr "Instalar %s"
|
72 |
|
73 |
+
#: facebook-button-plugin.php:148
|
74 |
msgid "Install now from wordpress.org"
|
75 |
msgstr "Instalar ahora desde wordpress.org"
|
76 |
|
77 |
+
#: facebook-button-plugin.php:153
|
78 |
+
msgid "If you have any questions, please contact us via"
|
79 |
+
msgstr ""
|
|
|
80 |
|
81 |
+
#: facebook-button-plugin.php:161
|
82 |
+
#: facebook-button-plugin.php:274
|
83 |
#, fuzzy
|
84 |
msgid "Facebook Button Settings"
|
85 |
msgstr "Opciones del botón de Facebook"
|
86 |
|
87 |
+
#: facebook-button-plugin.php:161
|
88 |
#, fuzzy
|
89 |
msgid "Facebook Button"
|
90 |
msgstr "Botón FaceBook"
|
91 |
|
92 |
+
#: facebook-button-plugin.php:221
|
93 |
#, fuzzy
|
94 |
msgid "Settings saved"
|
95 |
msgstr "Opciones"
|
96 |
|
97 |
+
#: facebook-button-plugin.php:243
|
98 |
msgid "Error: File size > 32K"
|
99 |
msgstr "Error: Archivo > 32К"
|
100 |
|
101 |
+
#: facebook-button-plugin.php:246
|
102 |
msgid "Error: Invalid file type"
|
103 |
msgstr "error: Tipo de archivo no válido"
|
104 |
|
105 |
+
#: facebook-button-plugin.php:256
|
106 |
msgid "Error: moving file failed"
|
107 |
msgstr "Error: Fallo moviendo el archivo"
|
108 |
|
109 |
+
#: facebook-button-plugin.php:260
|
110 |
msgid "Error: check image width or height"
|
111 |
msgstr "Error: Revisa el alto o ancho de la imagen"
|
112 |
|
113 |
+
#: facebook-button-plugin.php:265
|
114 |
msgid "Uploading Error: check image properties"
|
115 |
msgstr "Error de subida: Revisa las propiedades de la imagen"
|
116 |
|
117 |
+
#: facebook-button-plugin.php:281
|
118 |
#, fuzzy
|
119 |
msgid "Your Facebook ID:"
|
120 |
msgstr "Su FaceBook Id:"
|
121 |
|
122 |
+
#: facebook-button-plugin.php:287
|
123 |
msgid "Display button:"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: facebook-button-plugin.php:289
|
127 |
msgid "My Page"
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: facebook-button-plugin.php:290
|
131 |
msgid "Like"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: facebook-button-plugin.php:295
|
135 |
#, fuzzy
|
136 |
msgid "Choose display settings:"
|
137 |
msgstr "Seleccione opciones de visualización:"
|
138 |
|
139 |
+
#: facebook-button-plugin.php:299
|
140 |
#, fuzzy
|
141 |
msgid "Standard Facebook image"
|
142 |
msgstr "Imagen estandar de FaceBook"
|
143 |
|
144 |
+
#: facebook-button-plugin.php:301
|
145 |
#, fuzzy
|
146 |
msgid "Custom Facebook image"
|
147 |
msgstr "Imagen personalizada de FaceBook"
|
148 |
|
149 |
+
#: facebook-button-plugin.php:308
|
150 |
msgid "Current image:"
|
151 |
msgstr "Imagen actual:"
|
152 |
|
153 |
+
#: facebook-button-plugin.php:321
|
154 |
#, fuzzy
|
155 |
msgid "Facebook image:"
|
156 |
msgstr "Imagen de FaceBook:"
|
157 |
|
158 |
+
#: facebook-button-plugin.php:325
|
159 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\"."
|
160 |
msgstr "Propiedades de la imagen: Ancho máx.: 100px; Alto máx.: 40px; Tamaño máx: 32Kb; Tipo de imagen: \"jpg\", \"jpeg\"."
|
161 |
|
162 |
+
#: facebook-button-plugin.php:333
|
163 |
#, fuzzy
|
164 |
msgid "Facebook Button Position:"
|
165 |
msgstr "Posición del botón Facebook:"
|
166 |
|
167 |
+
#: facebook-button-plugin.php:337
|
168 |
msgid "Before"
|
169 |
msgstr "Antes"
|
170 |
|
171 |
+
#: facebook-button-plugin.php:338
|
172 |
msgid "After"
|
173 |
msgstr "Después"
|
174 |
|
175 |
+
#: facebook-button-plugin.php:339
|
176 |
msgid "Before and After"
|
177 |
msgstr "Antes y después"
|
178 |
|
179 |
+
#: facebook-button-plugin.php:340
|
180 |
msgid "Shortcode"
|
181 |
msgstr "Shortcode"
|
182 |
|
183 |
+
#: facebook-button-plugin.php:342
|
184 |
#, fuzzy
|
185 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
186 |
msgstr "Si desea agregar un botón de Facebook para su sitio web, sólo tiene que copiar y pegar el código en su web o la página:"
|
187 |
|
188 |
+
#: facebook-button-plugin.php:347
|
189 |
#, fuzzy
|
190 |
msgid "Facebook Button language:"
|
191 |
msgstr "Botón FaceBook"
|
192 |
|
193 |
+
#: facebook-button-plugin.php:458
|
194 |
msgid "Change the language of Facebook Like Button"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: facebook-button-plugin.php:464
|
198 |
msgid "Save Changes"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: facebook-button-plugin.php:584
|
202 |
msgid "FAQ"
|
203 |
msgstr "FAQ"
|
204 |
|
205 |
+
#: facebook-button-plugin.php:585
|
206 |
msgid "Support"
|
207 |
msgstr "Soporte"
|
208 |
|
209 |
+
#, fuzzy
|
210 |
+
#~ msgid ""
|
211 |
+
#~ "If you have any questions, please contact us via plugin@bestwebsoft.com "
|
212 |
+
#~ "or fill out the contact form on our website"
|
213 |
+
#~ msgstr ""
|
214 |
+
#~ "Si tiene alguna pregunta, por favor contacte con nosotros via "
|
215 |
+
#~ "plugin@bestwebsoft.com o rellenando el formulariod e contacto de nuestra "
|
216 |
+
#~ "web"
|
217 |
#~ msgid "Options saved."
|
218 |
#~ msgstr "Opciones guardadas"
|
219 |
#~ msgid "Install Now"
|
220 |
#~ msgstr "Установить сейчас"
|
|
|
|
|
221 |
|
languages/facebook-fa_IR.mo
CHANGED
Binary file
|
languages/facebook-fa_IR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Milad Ahmadipour <milad.contact@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,181 +16,206 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
msgid "Activated plugins"
|
21 |
msgstr "پلاگین های فعال شده "
|
22 |
|
23 |
-
#: facebook-button-plugin.php:
|
24 |
-
#: facebook-button-plugin.php:
|
25 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
26 |
msgid "Read more"
|
27 |
msgstr "بیشتر بخوانید"
|
28 |
|
29 |
-
#: facebook-button-plugin.php:
|
30 |
-
#: facebook-button-plugin.php:
|
31 |
-
#: facebook-button-plugin.php:
|
|
|
32 |
msgid "Settings"
|
33 |
msgstr "تنظیمات "
|
34 |
|
35 |
-
#: facebook-button-plugin.php:
|
|
|
36 |
msgid "Installed plugins"
|
37 |
msgstr "پلاگین های نصب شده "
|
38 |
|
39 |
-
#: facebook-button-plugin.php:
|
|
|
40 |
msgid "Recommended plugins"
|
41 |
msgstr "پلاگین های پیشنهادی"
|
42 |
|
43 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
msgid "Download"
|
45 |
msgstr "دانلود"
|
46 |
|
47 |
-
#: facebook-button-plugin.php:
|
48 |
#, php-format
|
49 |
msgid "Install %s"
|
50 |
msgstr "نصب %s"
|
51 |
|
52 |
-
#: facebook-button-plugin.php:
|
53 |
msgid "Install now from wordpress.org"
|
54 |
msgstr "نصب از wordpress.org"
|
55 |
|
56 |
-
#: facebook-button-plugin.php:
|
57 |
-
|
58 |
-
|
59 |
-
msgstr "در صورتی که سوالی دارید لطفا با ایمیل plugin@bestwebsoft.com مکاتبه فرمایید یا از طریق سایت اقدام نمایید"
|
60 |
|
61 |
-
#: facebook-button-plugin.php:
|
62 |
-
#: facebook-button-plugin.php:
|
63 |
#, fuzzy
|
64 |
msgid "Facebook Button Settings"
|
65 |
msgstr "اختیارات دکمه فیسبوک"
|
66 |
|
67 |
-
#: facebook-button-plugin.php:
|
68 |
#, fuzzy
|
69 |
msgid "Facebook Button"
|
70 |
msgstr "دکمه فیسبوک"
|
71 |
|
72 |
-
#: facebook-button-plugin.php:
|
73 |
#, fuzzy
|
74 |
msgid "Settings saved"
|
75 |
msgstr "تنظیمات "
|
76 |
|
77 |
-
#: facebook-button-plugin.php:
|
78 |
msgid "Error: File size > 32K"
|
79 |
msgstr "خطا : حجم فایل بیشتر از : > 32К"
|
80 |
|
81 |
-
#: facebook-button-plugin.php:
|
82 |
msgid "Error: Invalid file type"
|
83 |
msgstr "خطا : نوع فایل صحیح نیست"
|
84 |
|
85 |
-
#: facebook-button-plugin.php:
|
86 |
msgid "Error: moving file failed"
|
87 |
msgstr "خطا : حرکت فایل شکست خورد"
|
88 |
|
89 |
-
#: facebook-button-plugin.php:
|
90 |
msgid "Error: check image width or height"
|
91 |
msgstr "خطا : لطفا طول و عرض تصویر را چک کنید"
|
92 |
|
93 |
-
#: facebook-button-plugin.php:
|
94 |
msgid "Uploading Error: check image properties"
|
95 |
msgstr "خطای آپلود : لطفا خصوصیات تصویر را چک کنید"
|
96 |
|
97 |
-
#: facebook-button-plugin.php:
|
98 |
#, fuzzy
|
99 |
msgid "Your Facebook ID:"
|
100 |
msgstr "نام کاربری فیسبوک شما (کوتاه شده، برای نمونه این را ببینید : http://facebook.com/yourname)"
|
101 |
|
102 |
-
#: facebook-button-plugin.php:
|
103 |
msgid "Display button:"
|
104 |
msgstr "نمایش دکمه های :"
|
105 |
|
106 |
-
#: facebook-button-plugin.php:
|
107 |
msgid "My Page"
|
108 |
msgstr "صفحه من"
|
109 |
|
110 |
-
#: facebook-button-plugin.php:
|
111 |
msgid "Like"
|
112 |
msgstr "پسندیدم "
|
113 |
|
114 |
-
#: facebook-button-plugin.php:
|
115 |
#, fuzzy
|
116 |
msgid "Choose display settings:"
|
117 |
msgstr "لطفا نحوه نمایش را انتخاب کنید"
|
118 |
|
119 |
-
#: facebook-button-plugin.php:
|
120 |
#, fuzzy
|
121 |
msgid "Standard Facebook image"
|
122 |
msgstr " تصویر استاندارد فیسبوک "
|
123 |
|
124 |
-
#: facebook-button-plugin.php:
|
125 |
#, fuzzy
|
126 |
msgid "Custom Facebook image"
|
127 |
msgstr "آپلود از کامپیوتر شما"
|
128 |
|
129 |
-
#: facebook-button-plugin.php:
|
130 |
msgid "Current image:"
|
131 |
msgstr "تصویر کنونی :"
|
132 |
|
133 |
-
#: facebook-button-plugin.php:
|
134 |
#, fuzzy
|
135 |
msgid "Facebook image:"
|
136 |
msgstr "تصویر فیسبوک : "
|
137 |
|
138 |
-
#: facebook-button-plugin.php:
|
139 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\"."
|
140 |
msgstr "خصوصیات عکس: حداکثر طول عکس:100px; حد اکثر عرض عکس:40px; حد اکثر حجم فایل:32Kb; نوع فایل: \"jpg\", \"jpeg\"."
|
141 |
|
142 |
-
#: facebook-button-plugin.php:
|
143 |
#, fuzzy
|
144 |
msgid "Facebook Button Position:"
|
145 |
msgstr "محل دکمه فیسبوک :"
|
146 |
|
147 |
-
#: facebook-button-plugin.php:
|
148 |
msgid "Before"
|
149 |
msgstr "قبل"
|
150 |
|
151 |
-
#: facebook-button-plugin.php:
|
152 |
msgid "After"
|
153 |
msgstr "بعد"
|
154 |
|
155 |
-
#: facebook-button-plugin.php:
|
156 |
msgid "Before and After"
|
157 |
msgstr "قبل و بعد"
|
158 |
|
159 |
-
#: facebook-button-plugin.php:
|
160 |
msgid "Shortcode"
|
161 |
msgstr "کد کوتاه"
|
162 |
|
163 |
-
#: facebook-button-plugin.php:
|
164 |
#, fuzzy
|
165 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
166 |
msgstr "در صورتی که میخواهید دکمه لایک به سایت شما اظافه شود، کد کوتاه را در صفحه پست و ... کپی کنید"
|
167 |
|
168 |
-
#: facebook-button-plugin.php:
|
169 |
#, fuzzy
|
170 |
msgid "Facebook Button language:"
|
171 |
msgstr "زبان دکمه فیسبوک :"
|
172 |
|
173 |
-
#: facebook-button-plugin.php:
|
174 |
#, fuzzy
|
175 |
msgid "Change the language of Facebook Like Button"
|
176 |
msgstr "زبان دکمه فیسبوک را انتخاب کنید"
|
177 |
|
178 |
-
#: facebook-button-plugin.php:
|
179 |
msgid "Save Changes"
|
180 |
msgstr "ذخیره تغییرات"
|
181 |
|
182 |
-
#: facebook-button-plugin.php:
|
183 |
msgid "FAQ"
|
184 |
msgstr "سوال و جواب های متداول"
|
185 |
|
186 |
-
#: facebook-button-plugin.php:
|
187 |
msgid "Support"
|
188 |
msgstr "پشتیبانی"
|
189 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
190 |
#~ msgid "Options saved."
|
191 |
#~ msgstr "اختیارات ذخیره شد"
|
192 |
#~ msgid "Install Now"
|
193 |
#~ msgstr "حالا نصب شود"
|
194 |
-
#~ msgid "BWS Plugins"
|
195 |
-
#~ msgstr "پلاگین BWS"
|
196 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-05-27 13:59+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-05-27 13:59+0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Milad Ahmadipour <milad.contact@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: facebook-button-plugin.php:101
|
20 |
+
#, fuzzy
|
21 |
+
msgid "Pro plugins"
|
22 |
+
msgstr "پلاگین BWS"
|
23 |
+
|
24 |
+
#: facebook-button-plugin.php:104
|
25 |
+
#: facebook-button-plugin.php:130
|
26 |
msgid "Activated plugins"
|
27 |
msgstr "پلاگین های فعال شده "
|
28 |
|
29 |
+
#: facebook-button-plugin.php:106
|
30 |
+
#: facebook-button-plugin.php:114
|
31 |
+
#: facebook-button-plugin.php:122
|
32 |
+
#: facebook-button-plugin.php:132
|
33 |
+
#: facebook-button-plugin.php:140
|
34 |
+
#: facebook-button-plugin.php:148
|
35 |
msgid "Read more"
|
36 |
msgstr "بیشتر بخوانید"
|
37 |
|
38 |
+
#: facebook-button-plugin.php:106
|
39 |
+
#: facebook-button-plugin.php:132
|
40 |
+
#: facebook-button-plugin.php:571
|
41 |
+
#: facebook-button-plugin.php:583
|
42 |
msgid "Settings"
|
43 |
msgstr "تنظیمات "
|
44 |
|
45 |
+
#: facebook-button-plugin.php:112
|
46 |
+
#: facebook-button-plugin.php:138
|
47 |
msgid "Installed plugins"
|
48 |
msgstr "پلاگین های نصب شده "
|
49 |
|
50 |
+
#: facebook-button-plugin.php:120
|
51 |
+
#: facebook-button-plugin.php:146
|
52 |
msgid "Recommended plugins"
|
53 |
msgstr "پلاگین های پیشنهادی"
|
54 |
|
55 |
+
#: facebook-button-plugin.php:122
|
56 |
+
msgid "Purchase"
|
57 |
+
msgstr ""
|
58 |
+
|
59 |
+
#: facebook-button-plugin.php:127
|
60 |
+
#, fuzzy
|
61 |
+
msgid "Free plugins"
|
62 |
+
msgstr "پلاگین های پیشنهادی"
|
63 |
+
|
64 |
+
#: facebook-button-plugin.php:148
|
65 |
msgid "Download"
|
66 |
msgstr "دانلود"
|
67 |
|
68 |
+
#: facebook-button-plugin.php:148
|
69 |
#, php-format
|
70 |
msgid "Install %s"
|
71 |
msgstr "نصب %s"
|
72 |
|
73 |
+
#: facebook-button-plugin.php:148
|
74 |
msgid "Install now from wordpress.org"
|
75 |
msgstr "نصب از wordpress.org"
|
76 |
|
77 |
+
#: facebook-button-plugin.php:153
|
78 |
+
msgid "If you have any questions, please contact us via"
|
79 |
+
msgstr ""
|
|
|
80 |
|
81 |
+
#: facebook-button-plugin.php:161
|
82 |
+
#: facebook-button-plugin.php:274
|
83 |
#, fuzzy
|
84 |
msgid "Facebook Button Settings"
|
85 |
msgstr "اختیارات دکمه فیسبوک"
|
86 |
|
87 |
+
#: facebook-button-plugin.php:161
|
88 |
#, fuzzy
|
89 |
msgid "Facebook Button"
|
90 |
msgstr "دکمه فیسبوک"
|
91 |
|
92 |
+
#: facebook-button-plugin.php:221
|
93 |
#, fuzzy
|
94 |
msgid "Settings saved"
|
95 |
msgstr "تنظیمات "
|
96 |
|
97 |
+
#: facebook-button-plugin.php:243
|
98 |
msgid "Error: File size > 32K"
|
99 |
msgstr "خطا : حجم فایل بیشتر از : > 32К"
|
100 |
|
101 |
+
#: facebook-button-plugin.php:246
|
102 |
msgid "Error: Invalid file type"
|
103 |
msgstr "خطا : نوع فایل صحیح نیست"
|
104 |
|
105 |
+
#: facebook-button-plugin.php:256
|
106 |
msgid "Error: moving file failed"
|
107 |
msgstr "خطا : حرکت فایل شکست خورد"
|
108 |
|
109 |
+
#: facebook-button-plugin.php:260
|
110 |
msgid "Error: check image width or height"
|
111 |
msgstr "خطا : لطفا طول و عرض تصویر را چک کنید"
|
112 |
|
113 |
+
#: facebook-button-plugin.php:265
|
114 |
msgid "Uploading Error: check image properties"
|
115 |
msgstr "خطای آپلود : لطفا خصوصیات تصویر را چک کنید"
|
116 |
|
117 |
+
#: facebook-button-plugin.php:281
|
118 |
#, fuzzy
|
119 |
msgid "Your Facebook ID:"
|
120 |
msgstr "نام کاربری فیسبوک شما (کوتاه شده، برای نمونه این را ببینید : http://facebook.com/yourname)"
|
121 |
|
122 |
+
#: facebook-button-plugin.php:287
|
123 |
msgid "Display button:"
|
124 |
msgstr "نمایش دکمه های :"
|
125 |
|
126 |
+
#: facebook-button-plugin.php:289
|
127 |
msgid "My Page"
|
128 |
msgstr "صفحه من"
|
129 |
|
130 |
+
#: facebook-button-plugin.php:290
|
131 |
msgid "Like"
|
132 |
msgstr "پسندیدم "
|
133 |
|
134 |
+
#: facebook-button-plugin.php:295
|
135 |
#, fuzzy
|
136 |
msgid "Choose display settings:"
|
137 |
msgstr "لطفا نحوه نمایش را انتخاب کنید"
|
138 |
|
139 |
+
#: facebook-button-plugin.php:299
|
140 |
#, fuzzy
|
141 |
msgid "Standard Facebook image"
|
142 |
msgstr " تصویر استاندارد فیسبوک "
|
143 |
|
144 |
+
#: facebook-button-plugin.php:301
|
145 |
#, fuzzy
|
146 |
msgid "Custom Facebook image"
|
147 |
msgstr "آپلود از کامپیوتر شما"
|
148 |
|
149 |
+
#: facebook-button-plugin.php:308
|
150 |
msgid "Current image:"
|
151 |
msgstr "تصویر کنونی :"
|
152 |
|
153 |
+
#: facebook-button-plugin.php:321
|
154 |
#, fuzzy
|
155 |
msgid "Facebook image:"
|
156 |
msgstr "تصویر فیسبوک : "
|
157 |
|
158 |
+
#: facebook-button-plugin.php:325
|
159 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\"."
|
160 |
msgstr "خصوصیات عکس: حداکثر طول عکس:100px; حد اکثر عرض عکس:40px; حد اکثر حجم فایل:32Kb; نوع فایل: \"jpg\", \"jpeg\"."
|
161 |
|
162 |
+
#: facebook-button-plugin.php:333
|
163 |
#, fuzzy
|
164 |
msgid "Facebook Button Position:"
|
165 |
msgstr "محل دکمه فیسبوک :"
|
166 |
|
167 |
+
#: facebook-button-plugin.php:337
|
168 |
msgid "Before"
|
169 |
msgstr "قبل"
|
170 |
|
171 |
+
#: facebook-button-plugin.php:338
|
172 |
msgid "After"
|
173 |
msgstr "بعد"
|
174 |
|
175 |
+
#: facebook-button-plugin.php:339
|
176 |
msgid "Before and After"
|
177 |
msgstr "قبل و بعد"
|
178 |
|
179 |
+
#: facebook-button-plugin.php:340
|
180 |
msgid "Shortcode"
|
181 |
msgstr "کد کوتاه"
|
182 |
|
183 |
+
#: facebook-button-plugin.php:342
|
184 |
#, fuzzy
|
185 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
186 |
msgstr "در صورتی که میخواهید دکمه لایک به سایت شما اظافه شود، کد کوتاه را در صفحه پست و ... کپی کنید"
|
187 |
|
188 |
+
#: facebook-button-plugin.php:347
|
189 |
#, fuzzy
|
190 |
msgid "Facebook Button language:"
|
191 |
msgstr "زبان دکمه فیسبوک :"
|
192 |
|
193 |
+
#: facebook-button-plugin.php:458
|
194 |
#, fuzzy
|
195 |
msgid "Change the language of Facebook Like Button"
|
196 |
msgstr "زبان دکمه فیسبوک را انتخاب کنید"
|
197 |
|
198 |
+
#: facebook-button-plugin.php:464
|
199 |
msgid "Save Changes"
|
200 |
msgstr "ذخیره تغییرات"
|
201 |
|
202 |
+
#: facebook-button-plugin.php:584
|
203 |
msgid "FAQ"
|
204 |
msgstr "سوال و جواب های متداول"
|
205 |
|
206 |
+
#: facebook-button-plugin.php:585
|
207 |
msgid "Support"
|
208 |
msgstr "پشتیبانی"
|
209 |
|
210 |
+
#, fuzzy
|
211 |
+
#~ msgid ""
|
212 |
+
#~ "If you have any questions, please contact us via plugin@bestwebsoft.com "
|
213 |
+
#~ "or fill out the contact form on our website"
|
214 |
+
#~ msgstr ""
|
215 |
+
#~ "در صورتی که سوالی دارید لطفا با ایمیل plugin@bestwebsoft.com مکاتبه "
|
216 |
+
#~ "فرمایید یا از طریق سایت اقدام نمایید"
|
217 |
#~ msgid "Options saved."
|
218 |
#~ msgstr "اختیارات ذخیره شد"
|
219 |
#~ msgid "Install Now"
|
220 |
#~ msgstr "حالا نصب شود"
|
|
|
|
|
221 |
|
languages/facebook-he_IL.mo
CHANGED
Binary file
|
languages/facebook-he_IL.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: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -19,211 +19,241 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
# @ facebook
|
22 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
msgid "Activated plugins"
|
24 |
msgstr "תוספים פעילים"
|
25 |
|
26 |
# @ facebook
|
27 |
-
#: facebook-button-plugin.php:
|
28 |
-
#: facebook-button-plugin.php:
|
29 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
30 |
msgid "Read more"
|
31 |
msgstr "קרא עוד"
|
32 |
|
33 |
# @ facebook
|
34 |
-
#: facebook-button-plugin.php:
|
35 |
-
#: facebook-button-plugin.php:
|
36 |
-
#: facebook-button-plugin.php:
|
|
|
37 |
msgid "Settings"
|
38 |
msgstr "הגדרות"
|
39 |
|
40 |
# @ facebook
|
41 |
-
#: facebook-button-plugin.php:
|
|
|
42 |
msgid "Installed plugins"
|
43 |
msgstr "תוספים מותקנים"
|
44 |
|
45 |
# @ facebook
|
46 |
-
#: facebook-button-plugin.php:
|
|
|
47 |
msgid "Recommended plugins"
|
48 |
msgstr "תוספים מומלצים"
|
49 |
|
|
|
|
|
|
|
|
|
50 |
# @ facebook
|
51 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
msgid "Download"
|
53 |
msgstr "הורד"
|
54 |
|
55 |
# @ default
|
56 |
-
#: facebook-button-plugin.php:
|
57 |
#, php-format
|
58 |
msgid "Install %s"
|
59 |
msgstr "התקן %s"
|
60 |
|
61 |
# @ facebook
|
62 |
-
#: facebook-button-plugin.php:
|
63 |
msgid "Install now from wordpress.org"
|
64 |
msgstr "הורד כעת מ wordpress.org"
|
65 |
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill out the contact form on our website"
|
70 |
-
msgstr "אם יש לך שאלות כלשהן, אנא צור עמנו קשר דרך plugin@bestwebsoft.com או שתמלא את טופס יצירת הקשר באתר שלנו"
|
71 |
|
72 |
# @ facebook
|
73 |
-
#: facebook-button-plugin.php:
|
74 |
-
#: facebook-button-plugin.php:
|
75 |
#, fuzzy
|
76 |
msgid "Facebook Button Settings"
|
77 |
msgstr "אפשרויות כפתור פייסבוק"
|
78 |
|
79 |
# @ facebook
|
80 |
-
#: facebook-button-plugin.php:
|
81 |
#, fuzzy
|
82 |
msgid "Facebook Button"
|
83 |
msgstr "כפתור פייסבוק"
|
84 |
|
85 |
# @ facebook
|
86 |
-
#: facebook-button-plugin.php:
|
87 |
#, fuzzy
|
88 |
msgid "Settings saved"
|
89 |
msgstr "הגדרות"
|
90 |
|
91 |
# @ facebook
|
92 |
-
#: facebook-button-plugin.php:
|
93 |
msgid "Error: File size > 32K"
|
94 |
msgstr "שגיאה: גודל הקובץ גדול מ 32K"
|
95 |
|
96 |
# @ facebook
|
97 |
-
#: facebook-button-plugin.php:
|
98 |
msgid "Error: Invalid file type"
|
99 |
msgstr "שגיאה: סוג קובץ שגוי"
|
100 |
|
101 |
# @ facebook
|
102 |
-
#: facebook-button-plugin.php:
|
103 |
msgid "Error: moving file failed"
|
104 |
msgstr "שגיאה: העברת הקובץ נכשלה"
|
105 |
|
106 |
# @ facebook
|
107 |
-
#: facebook-button-plugin.php:
|
108 |
msgid "Error: check image width or height"
|
109 |
msgstr "שגיאה: בדוק את רוחב וגובה התמונה"
|
110 |
|
111 |
# @ facebook
|
112 |
-
#: facebook-button-plugin.php:
|
113 |
msgid "Uploading Error: check image properties"
|
114 |
msgstr "שגיאת טעינה: בדוק את מאפייני התמונה"
|
115 |
|
116 |
# @ facebook
|
117 |
-
#: facebook-button-plugin.php:
|
118 |
#, fuzzy
|
119 |
msgid "Your Facebook ID:"
|
120 |
msgstr "מזהה הפייסבוק שלך:"
|
121 |
|
122 |
# @ facebook
|
123 |
-
#: facebook-button-plugin.php:
|
124 |
msgid "Display button:"
|
125 |
msgstr "הצג כפתור:"
|
126 |
|
127 |
# @ captcha
|
128 |
-
#: facebook-button-plugin.php:
|
129 |
msgid "My Page"
|
130 |
msgstr "הדף שלי"
|
131 |
|
132 |
# @ captcha
|
133 |
-
#: facebook-button-plugin.php:
|
134 |
msgid "Like"
|
135 |
msgstr "לייק"
|
136 |
|
137 |
# @ facebook
|
138 |
-
#: facebook-button-plugin.php:
|
139 |
#, fuzzy
|
140 |
msgid "Choose display settings:"
|
141 |
msgstr "בחר אפשרות תצוגה:"
|
142 |
|
143 |
# @ facebook
|
144 |
-
#: facebook-button-plugin.php:
|
145 |
#, fuzzy
|
146 |
msgid "Standard Facebook image"
|
147 |
msgstr "תמונת פייסבוק רגילה"
|
148 |
|
149 |
# @ facebook
|
150 |
-
#: facebook-button-plugin.php:
|
151 |
#, fuzzy
|
152 |
msgid "Custom Facebook image"
|
153 |
msgstr "תמונת פייסבוק מותאמת אישית"
|
154 |
|
155 |
# @ facebook
|
156 |
-
#: facebook-button-plugin.php:
|
157 |
msgid "Current image:"
|
158 |
msgstr "תמונה נוכחית:"
|
159 |
|
160 |
# @ facebook
|
161 |
-
#: facebook-button-plugin.php:
|
162 |
#, fuzzy
|
163 |
msgid "Facebook image:"
|
164 |
msgstr "תמונת פייסבוק:"
|
165 |
|
166 |
# @ facebook
|
167 |
-
#: facebook-button-plugin.php:
|
168 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\"."
|
169 |
msgstr "מאפייני תמונה: רוחב מירבי: 100 פיקסלים. גובה מירבי: 40 פיקסלים, גודל מירבי: 32KB, סוגי קובץ: \"jpg\", \"jpeg\"."
|
170 |
|
171 |
# @ facebook
|
172 |
-
#: facebook-button-plugin.php:
|
173 |
#, fuzzy
|
174 |
msgid "Facebook Button Position:"
|
175 |
msgstr "מיקום כפתור הפייסבוק:"
|
176 |
|
177 |
# @ facebook
|
178 |
-
#: facebook-button-plugin.php:
|
179 |
msgid "Before"
|
180 |
msgstr "לפני"
|
181 |
|
182 |
# @ facebook
|
183 |
-
#: facebook-button-plugin.php:
|
184 |
msgid "After"
|
185 |
msgstr "אחרי"
|
186 |
|
187 |
# @ facebook
|
188 |
-
#: facebook-button-plugin.php:
|
189 |
msgid "Before and After"
|
190 |
msgstr "לפני ואחרי"
|
191 |
|
192 |
# @ facebook
|
193 |
-
#: facebook-button-plugin.php:
|
194 |
msgid "Shortcode"
|
195 |
msgstr "קיצור קוד"
|
196 |
|
197 |
# @ facebook
|
198 |
-
#: facebook-button-plugin.php:
|
199 |
#, fuzzy
|
200 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
201 |
msgstr "אם ברצונך להוסיף כפתור פייסבוק לאתר שלך, פשוט העתק את קיצור הקוד שלהלן והדבק אל הפוסט או הדף שלך:"
|
202 |
|
203 |
# @ facebook
|
204 |
-
#: facebook-button-plugin.php:
|
205 |
#, fuzzy
|
206 |
msgid "Facebook Button language:"
|
207 |
msgstr "שפת כפתור פייסבוק:"
|
208 |
|
209 |
# @ facebook
|
210 |
-
#: facebook-button-plugin.php:
|
211 |
#, fuzzy
|
212 |
msgid "Change the language of Facebook Like Button"
|
213 |
msgstr "בחר שפה לכפתור לייק"
|
214 |
|
215 |
# @ default
|
216 |
-
#: facebook-button-plugin.php:
|
217 |
msgid "Save Changes"
|
218 |
msgstr "שמור שינויים"
|
219 |
|
220 |
# @ facebook
|
221 |
-
#: facebook-button-plugin.php:
|
222 |
msgid "FAQ"
|
223 |
msgstr "שאלות ותשובות"
|
224 |
|
225 |
# @ facebook
|
226 |
-
#: facebook-button-plugin.php:
|
227 |
msgid "Support"
|
228 |
msgstr "תמיכה"
|
229 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Facebook Button Plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-05-27 14:34+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-05-27 14:35+0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
# @ facebook
|
22 |
+
#: facebook-button-plugin.php:101
|
23 |
+
#, fuzzy
|
24 |
+
msgid "Pro plugins"
|
25 |
+
msgstr "תוספים מומלצים"
|
26 |
+
|
27 |
+
# @ facebook
|
28 |
+
#: facebook-button-plugin.php:104
|
29 |
+
#: facebook-button-plugin.php:130
|
30 |
msgid "Activated plugins"
|
31 |
msgstr "תוספים פעילים"
|
32 |
|
33 |
# @ facebook
|
34 |
+
#: facebook-button-plugin.php:106
|
35 |
+
#: facebook-button-plugin.php:114
|
36 |
+
#: facebook-button-plugin.php:122
|
37 |
+
#: facebook-button-plugin.php:132
|
38 |
+
#: facebook-button-plugin.php:140
|
39 |
+
#: facebook-button-plugin.php:148
|
40 |
msgid "Read more"
|
41 |
msgstr "קרא עוד"
|
42 |
|
43 |
# @ facebook
|
44 |
+
#: facebook-button-plugin.php:106
|
45 |
+
#: facebook-button-plugin.php:132
|
46 |
+
#: facebook-button-plugin.php:571
|
47 |
+
#: facebook-button-plugin.php:583
|
48 |
msgid "Settings"
|
49 |
msgstr "הגדרות"
|
50 |
|
51 |
# @ facebook
|
52 |
+
#: facebook-button-plugin.php:112
|
53 |
+
#: facebook-button-plugin.php:138
|
54 |
msgid "Installed plugins"
|
55 |
msgstr "תוספים מותקנים"
|
56 |
|
57 |
# @ facebook
|
58 |
+
#: facebook-button-plugin.php:120
|
59 |
+
#: facebook-button-plugin.php:146
|
60 |
msgid "Recommended plugins"
|
61 |
msgstr "תוספים מומלצים"
|
62 |
|
63 |
+
#: facebook-button-plugin.php:122
|
64 |
+
msgid "Purchase"
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
# @ facebook
|
68 |
+
#: facebook-button-plugin.php:127
|
69 |
+
#, fuzzy
|
70 |
+
msgid "Free plugins"
|
71 |
+
msgstr "תוספים מומלצים"
|
72 |
+
|
73 |
+
# @ facebook
|
74 |
+
#: facebook-button-plugin.php:148
|
75 |
msgid "Download"
|
76 |
msgstr "הורד"
|
77 |
|
78 |
# @ default
|
79 |
+
#: facebook-button-plugin.php:148
|
80 |
#, php-format
|
81 |
msgid "Install %s"
|
82 |
msgstr "התקן %s"
|
83 |
|
84 |
# @ facebook
|
85 |
+
#: facebook-button-plugin.php:148
|
86 |
msgid "Install now from wordpress.org"
|
87 |
msgstr "הורד כעת מ wordpress.org"
|
88 |
|
89 |
+
#: facebook-button-plugin.php:153
|
90 |
+
msgid "If you have any questions, please contact us via"
|
91 |
+
msgstr ""
|
|
|
|
|
92 |
|
93 |
# @ facebook
|
94 |
+
#: facebook-button-plugin.php:161
|
95 |
+
#: facebook-button-plugin.php:274
|
96 |
#, fuzzy
|
97 |
msgid "Facebook Button Settings"
|
98 |
msgstr "אפשרויות כפתור פייסבוק"
|
99 |
|
100 |
# @ facebook
|
101 |
+
#: facebook-button-plugin.php:161
|
102 |
#, fuzzy
|
103 |
msgid "Facebook Button"
|
104 |
msgstr "כפתור פייסבוק"
|
105 |
|
106 |
# @ facebook
|
107 |
+
#: facebook-button-plugin.php:221
|
108 |
#, fuzzy
|
109 |
msgid "Settings saved"
|
110 |
msgstr "הגדרות"
|
111 |
|
112 |
# @ facebook
|
113 |
+
#: facebook-button-plugin.php:243
|
114 |
msgid "Error: File size > 32K"
|
115 |
msgstr "שגיאה: גודל הקובץ גדול מ 32K"
|
116 |
|
117 |
# @ facebook
|
118 |
+
#: facebook-button-plugin.php:246
|
119 |
msgid "Error: Invalid file type"
|
120 |
msgstr "שגיאה: סוג קובץ שגוי"
|
121 |
|
122 |
# @ facebook
|
123 |
+
#: facebook-button-plugin.php:256
|
124 |
msgid "Error: moving file failed"
|
125 |
msgstr "שגיאה: העברת הקובץ נכשלה"
|
126 |
|
127 |
# @ facebook
|
128 |
+
#: facebook-button-plugin.php:260
|
129 |
msgid "Error: check image width or height"
|
130 |
msgstr "שגיאה: בדוק את רוחב וגובה התמונה"
|
131 |
|
132 |
# @ facebook
|
133 |
+
#: facebook-button-plugin.php:265
|
134 |
msgid "Uploading Error: check image properties"
|
135 |
msgstr "שגיאת טעינה: בדוק את מאפייני התמונה"
|
136 |
|
137 |
# @ facebook
|
138 |
+
#: facebook-button-plugin.php:281
|
139 |
#, fuzzy
|
140 |
msgid "Your Facebook ID:"
|
141 |
msgstr "מזהה הפייסבוק שלך:"
|
142 |
|
143 |
# @ facebook
|
144 |
+
#: facebook-button-plugin.php:287
|
145 |
msgid "Display button:"
|
146 |
msgstr "הצג כפתור:"
|
147 |
|
148 |
# @ captcha
|
149 |
+
#: facebook-button-plugin.php:289
|
150 |
msgid "My Page"
|
151 |
msgstr "הדף שלי"
|
152 |
|
153 |
# @ captcha
|
154 |
+
#: facebook-button-plugin.php:290
|
155 |
msgid "Like"
|
156 |
msgstr "לייק"
|
157 |
|
158 |
# @ facebook
|
159 |
+
#: facebook-button-plugin.php:295
|
160 |
#, fuzzy
|
161 |
msgid "Choose display settings:"
|
162 |
msgstr "בחר אפשרות תצוגה:"
|
163 |
|
164 |
# @ facebook
|
165 |
+
#: facebook-button-plugin.php:299
|
166 |
#, fuzzy
|
167 |
msgid "Standard Facebook image"
|
168 |
msgstr "תמונת פייסבוק רגילה"
|
169 |
|
170 |
# @ facebook
|
171 |
+
#: facebook-button-plugin.php:301
|
172 |
#, fuzzy
|
173 |
msgid "Custom Facebook image"
|
174 |
msgstr "תמונת פייסבוק מותאמת אישית"
|
175 |
|
176 |
# @ facebook
|
177 |
+
#: facebook-button-plugin.php:308
|
178 |
msgid "Current image:"
|
179 |
msgstr "תמונה נוכחית:"
|
180 |
|
181 |
# @ facebook
|
182 |
+
#: facebook-button-plugin.php:321
|
183 |
#, fuzzy
|
184 |
msgid "Facebook image:"
|
185 |
msgstr "תמונת פייסבוק:"
|
186 |
|
187 |
# @ facebook
|
188 |
+
#: facebook-button-plugin.php:325
|
189 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\"."
|
190 |
msgstr "מאפייני תמונה: רוחב מירבי: 100 פיקסלים. גובה מירבי: 40 פיקסלים, גודל מירבי: 32KB, סוגי קובץ: \"jpg\", \"jpeg\"."
|
191 |
|
192 |
# @ facebook
|
193 |
+
#: facebook-button-plugin.php:333
|
194 |
#, fuzzy
|
195 |
msgid "Facebook Button Position:"
|
196 |
msgstr "מיקום כפתור הפייסבוק:"
|
197 |
|
198 |
# @ facebook
|
199 |
+
#: facebook-button-plugin.php:337
|
200 |
msgid "Before"
|
201 |
msgstr "לפני"
|
202 |
|
203 |
# @ facebook
|
204 |
+
#: facebook-button-plugin.php:338
|
205 |
msgid "After"
|
206 |
msgstr "אחרי"
|
207 |
|
208 |
# @ facebook
|
209 |
+
#: facebook-button-plugin.php:339
|
210 |
msgid "Before and After"
|
211 |
msgstr "לפני ואחרי"
|
212 |
|
213 |
# @ facebook
|
214 |
+
#: facebook-button-plugin.php:340
|
215 |
msgid "Shortcode"
|
216 |
msgstr "קיצור קוד"
|
217 |
|
218 |
# @ facebook
|
219 |
+
#: facebook-button-plugin.php:342
|
220 |
#, fuzzy
|
221 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
222 |
msgstr "אם ברצונך להוסיף כפתור פייסבוק לאתר שלך, פשוט העתק את קיצור הקוד שלהלן והדבק אל הפוסט או הדף שלך:"
|
223 |
|
224 |
# @ facebook
|
225 |
+
#: facebook-button-plugin.php:347
|
226 |
#, fuzzy
|
227 |
msgid "Facebook Button language:"
|
228 |
msgstr "שפת כפתור פייסבוק:"
|
229 |
|
230 |
# @ facebook
|
231 |
+
#: facebook-button-plugin.php:458
|
232 |
#, fuzzy
|
233 |
msgid "Change the language of Facebook Like Button"
|
234 |
msgstr "בחר שפה לכפתור לייק"
|
235 |
|
236 |
# @ default
|
237 |
+
#: facebook-button-plugin.php:464
|
238 |
msgid "Save Changes"
|
239 |
msgstr "שמור שינויים"
|
240 |
|
241 |
# @ facebook
|
242 |
+
#: facebook-button-plugin.php:584
|
243 |
msgid "FAQ"
|
244 |
msgstr "שאלות ותשובות"
|
245 |
|
246 |
# @ facebook
|
247 |
+
#: facebook-button-plugin.php:585
|
248 |
msgid "Support"
|
249 |
msgstr "תמיכה"
|
250 |
|
251 |
+
# @ facebook
|
252 |
+
#, fuzzy
|
253 |
+
#~ msgid ""
|
254 |
+
#~ "If you have any questions, please contact us via plugin@bestwebsoft.com "
|
255 |
+
#~ "or fill out the contact form on our website"
|
256 |
+
#~ msgstr ""
|
257 |
+
#~ "אם יש לך שאלות כלשהן, אנא צור עמנו קשר דרך plugin@bestwebsoft.com או "
|
258 |
+
#~ "שתמלא את טופס יצירת הקשר באתר שלנו"
|
259 |
+
|
languages/facebook-ru_RU.mo
CHANGED
Binary file
|
languages/facebook-ru_RU.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,168 +16,191 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
20 |
msgid "Activated plugins"
|
21 |
msgstr "Активированные плагины"
|
22 |
|
23 |
-
#: facebook-button-plugin.php:
|
24 |
-
#: facebook-button-plugin.php:
|
25 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
26 |
msgid "Read more"
|
27 |
msgstr "Подробнее..."
|
28 |
|
29 |
-
#: facebook-button-plugin.php:
|
30 |
-
#: facebook-button-plugin.php:
|
31 |
-
#: facebook-button-plugin.php:
|
|
|
32 |
msgid "Settings"
|
33 |
msgstr "Настройки"
|
34 |
|
35 |
-
#: facebook-button-plugin.php:
|
|
|
36 |
msgid "Installed plugins"
|
37 |
msgstr "Установленные плагины"
|
38 |
|
39 |
-
#: facebook-button-plugin.php:
|
|
|
40 |
msgid "Recommended plugins"
|
41 |
msgstr "Рекомендованные к установке плагины"
|
42 |
|
43 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
msgid "Download"
|
45 |
msgstr "Скачать"
|
46 |
|
47 |
-
#: facebook-button-plugin.php:
|
48 |
#, php-format
|
49 |
msgid "Install %s"
|
50 |
msgstr "Установлено %s"
|
51 |
|
52 |
-
#: facebook-button-plugin.php:
|
53 |
msgid "Install now from wordpress.org"
|
54 |
msgstr "Установить с wordpress.org"
|
55 |
|
56 |
-
#: facebook-button-plugin.php:
|
57 |
-
msgid "If you have any questions, please contact us via
|
58 |
-
msgstr "Если у вас есть какие-то вопросы, обращайтесь на
|
59 |
|
60 |
-
#: facebook-button-plugin.php:
|
61 |
-
#: facebook-button-plugin.php:
|
62 |
msgid "Facebook Button Settings"
|
63 |
msgstr "Настройки Facebook Кнопки"
|
64 |
|
65 |
-
#: facebook-button-plugin.php:
|
66 |
msgid "Facebook Button"
|
67 |
msgstr "Facebook кнопка"
|
68 |
|
69 |
-
#: facebook-button-plugin.php:
|
70 |
msgid "Settings saved"
|
71 |
msgstr "Настройки сохранены"
|
72 |
|
73 |
-
#: facebook-button-plugin.php:
|
74 |
msgid "Error: File size > 32K"
|
75 |
msgstr "Ошибка: Размер файла больше 32К"
|
76 |
|
77 |
-
#: facebook-button-plugin.php:
|
78 |
msgid "Error: Invalid file type"
|
79 |
msgstr "Ошибка: Некорректный тип файла"
|
80 |
|
81 |
-
#: facebook-button-plugin.php:
|
82 |
msgid "Error: moving file failed"
|
83 |
msgstr "Ошибка: При перемещении произошла ошибка"
|
84 |
|
85 |
-
#: facebook-button-plugin.php:
|
86 |
msgid "Error: check image width or height"
|
87 |
msgstr "Ошибка: Проверьте ширину и высоту изображения"
|
88 |
|
89 |
-
#: facebook-button-plugin.php:
|
90 |
msgid "Uploading Error: check image properties"
|
91 |
msgstr "Ошибка загрузки: Проверьте опции изображения"
|
92 |
|
93 |
-
#: facebook-button-plugin.php:
|
94 |
msgid "Your Facebook ID:"
|
95 |
msgstr "Ваш Facebook ID:"
|
96 |
|
97 |
-
#: facebook-button-plugin.php:
|
98 |
msgid "Display button:"
|
99 |
msgstr "Отображение кнопок:"
|
100 |
|
101 |
-
#: facebook-button-plugin.php:
|
102 |
msgid "My Page"
|
103 |
msgstr "My Page"
|
104 |
|
105 |
-
#: facebook-button-plugin.php:
|
106 |
msgid "Like"
|
107 |
msgstr "Like"
|
108 |
|
109 |
-
#: facebook-button-plugin.php:
|
110 |
msgid "Choose display settings:"
|
111 |
msgstr "Выбор опций отображения:"
|
112 |
|
113 |
-
#: facebook-button-plugin.php:
|
114 |
msgid "Standard Facebook image"
|
115 |
msgstr "Стандартная картинка Facebook"
|
116 |
|
117 |
-
#: facebook-button-plugin.php:
|
118 |
msgid "Custom Facebook image"
|
119 |
msgstr "Пользовательская картинка Facebook"
|
120 |
|
121 |
-
#: facebook-button-plugin.php:
|
122 |
msgid "Current image:"
|
123 |
msgstr "Текущее изображение:"
|
124 |
|
125 |
-
#: facebook-button-plugin.php:
|
126 |
msgid "Facebook image:"
|
127 |
msgstr "Facebook изображение:"
|
128 |
|
129 |
-
#: facebook-button-plugin.php:
|
130 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\"."
|
131 |
msgstr "Опции изображения для загрузки: максимальная ширина:100px; максимальная высота:40px; максимальный размер:32Kb; тип файла:\"jpg\", \"jpeg\"."
|
132 |
|
133 |
-
#: facebook-button-plugin.php:
|
134 |
msgid "Facebook Button Position:"
|
135 |
msgstr "Позиции Facebook кнопки:"
|
136 |
|
137 |
-
#: facebook-button-plugin.php:
|
138 |
msgid "Before"
|
139 |
msgstr "Перед"
|
140 |
|
141 |
-
#: facebook-button-plugin.php:
|
142 |
msgid "After"
|
143 |
msgstr "После"
|
144 |
|
145 |
-
#: facebook-button-plugin.php:
|
146 |
msgid "Before and After"
|
147 |
msgstr "Перед и после"
|
148 |
|
149 |
-
#: facebook-button-plugin.php:
|
150 |
msgid "Shortcode"
|
151 |
msgstr "Шорткод"
|
152 |
|
153 |
-
#: facebook-button-plugin.php:
|
154 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
155 |
msgstr "Если вы хотите добавить Facebook кнопку на свой сайт, вам надо только скопировать и вставить шорткод в контент страницы или поста"
|
156 |
|
157 |
-
#: facebook-button-plugin.php:
|
158 |
msgid "Facebook Button language:"
|
159 |
msgstr "Язык для Facebook кнопки:"
|
160 |
|
161 |
-
#: facebook-button-plugin.php:
|
162 |
msgid "Change the language of Facebook Like Button"
|
163 |
msgstr "Выберите язык для Like кнопки"
|
164 |
|
165 |
-
#: facebook-button-plugin.php:
|
166 |
msgid "Save Changes"
|
167 |
msgstr "Сохранить изменения"
|
168 |
|
169 |
-
#: facebook-button-plugin.php:
|
170 |
msgid "FAQ"
|
171 |
msgstr "FAQ"
|
172 |
|
173 |
-
#: facebook-button-plugin.php:
|
174 |
msgid "Support"
|
175 |
msgstr "Поддержка"
|
176 |
|
|
|
|
|
|
|
|
|
|
|
|
|
177 |
#~ msgid "Options saved."
|
178 |
#~ msgstr "Опции сохранены"
|
179 |
#~ msgid "Install Now"
|
180 |
#~ msgstr "Установить сейчас"
|
181 |
-
#~ msgid "BWS Plugins"
|
182 |
-
#~ msgstr "Плагины BWS"
|
183 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-05-27 14:35+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-05-27 14:35+0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: facebook-button-plugin.php:101
|
20 |
+
msgid "Pro plugins"
|
21 |
+
msgstr "Pro плагины"
|
22 |
+
|
23 |
+
#: facebook-button-plugin.php:104
|
24 |
+
#: facebook-button-plugin.php:130
|
25 |
msgid "Activated plugins"
|
26 |
msgstr "Активированные плагины"
|
27 |
|
28 |
+
#: facebook-button-plugin.php:106
|
29 |
+
#: facebook-button-plugin.php:114
|
30 |
+
#: facebook-button-plugin.php:122
|
31 |
+
#: facebook-button-plugin.php:132
|
32 |
+
#: facebook-button-plugin.php:140
|
33 |
+
#: facebook-button-plugin.php:148
|
34 |
msgid "Read more"
|
35 |
msgstr "Подробнее..."
|
36 |
|
37 |
+
#: facebook-button-plugin.php:106
|
38 |
+
#: facebook-button-plugin.php:132
|
39 |
+
#: facebook-button-plugin.php:571
|
40 |
+
#: facebook-button-plugin.php:583
|
41 |
msgid "Settings"
|
42 |
msgstr "Настройки"
|
43 |
|
44 |
+
#: facebook-button-plugin.php:112
|
45 |
+
#: facebook-button-plugin.php:138
|
46 |
msgid "Installed plugins"
|
47 |
msgstr "Установленные плагины"
|
48 |
|
49 |
+
#: facebook-button-plugin.php:120
|
50 |
+
#: facebook-button-plugin.php:146
|
51 |
msgid "Recommended plugins"
|
52 |
msgstr "Рекомендованные к установке плагины"
|
53 |
|
54 |
+
#: facebook-button-plugin.php:122
|
55 |
+
msgid "Purchase"
|
56 |
+
msgstr "Купить"
|
57 |
+
|
58 |
+
#: facebook-button-plugin.php:127
|
59 |
+
msgid "Free plugins"
|
60 |
+
msgstr "Бесплатные плагины"
|
61 |
+
|
62 |
+
#: facebook-button-plugin.php:148
|
63 |
msgid "Download"
|
64 |
msgstr "Скачать"
|
65 |
|
66 |
+
#: facebook-button-plugin.php:148
|
67 |
#, php-format
|
68 |
msgid "Install %s"
|
69 |
msgstr "Установлено %s"
|
70 |
|
71 |
+
#: facebook-button-plugin.php:148
|
72 |
msgid "Install now from wordpress.org"
|
73 |
msgstr "Установить с wordpress.org"
|
74 |
|
75 |
+
#: facebook-button-plugin.php:153
|
76 |
+
msgid "If you have any questions, please contact us via"
|
77 |
+
msgstr "Если у вас есть какие-то вопросы, обращайтесь на"
|
78 |
|
79 |
+
#: facebook-button-plugin.php:161
|
80 |
+
#: facebook-button-plugin.php:274
|
81 |
msgid "Facebook Button Settings"
|
82 |
msgstr "Настройки Facebook Кнопки"
|
83 |
|
84 |
+
#: facebook-button-plugin.php:161
|
85 |
msgid "Facebook Button"
|
86 |
msgstr "Facebook кнопка"
|
87 |
|
88 |
+
#: facebook-button-plugin.php:221
|
89 |
msgid "Settings saved"
|
90 |
msgstr "Настройки сохранены"
|
91 |
|
92 |
+
#: facebook-button-plugin.php:243
|
93 |
msgid "Error: File size > 32K"
|
94 |
msgstr "Ошибка: Размер файла больше 32К"
|
95 |
|
96 |
+
#: facebook-button-plugin.php:246
|
97 |
msgid "Error: Invalid file type"
|
98 |
msgstr "Ошибка: Некорректный тип файла"
|
99 |
|
100 |
+
#: facebook-button-plugin.php:256
|
101 |
msgid "Error: moving file failed"
|
102 |
msgstr "Ошибка: При перемещении произошла ошибка"
|
103 |
|
104 |
+
#: facebook-button-plugin.php:260
|
105 |
msgid "Error: check image width or height"
|
106 |
msgstr "Ошибка: Проверьте ширину и высоту изображения"
|
107 |
|
108 |
+
#: facebook-button-plugin.php:265
|
109 |
msgid "Uploading Error: check image properties"
|
110 |
msgstr "Ошибка загрузки: Проверьте опции изображения"
|
111 |
|
112 |
+
#: facebook-button-plugin.php:281
|
113 |
msgid "Your Facebook ID:"
|
114 |
msgstr "Ваш Facebook ID:"
|
115 |
|
116 |
+
#: facebook-button-plugin.php:287
|
117 |
msgid "Display button:"
|
118 |
msgstr "Отображение кнопок:"
|
119 |
|
120 |
+
#: facebook-button-plugin.php:289
|
121 |
msgid "My Page"
|
122 |
msgstr "My Page"
|
123 |
|
124 |
+
#: facebook-button-plugin.php:290
|
125 |
msgid "Like"
|
126 |
msgstr "Like"
|
127 |
|
128 |
+
#: facebook-button-plugin.php:295
|
129 |
msgid "Choose display settings:"
|
130 |
msgstr "Выбор опций отображения:"
|
131 |
|
132 |
+
#: facebook-button-plugin.php:299
|
133 |
msgid "Standard Facebook image"
|
134 |
msgstr "Стандартная картинка Facebook"
|
135 |
|
136 |
+
#: facebook-button-plugin.php:301
|
137 |
msgid "Custom Facebook image"
|
138 |
msgstr "Пользовательская картинка Facebook"
|
139 |
|
140 |
+
#: facebook-button-plugin.php:308
|
141 |
msgid "Current image:"
|
142 |
msgstr "Текущее изображение:"
|
143 |
|
144 |
+
#: facebook-button-plugin.php:321
|
145 |
msgid "Facebook image:"
|
146 |
msgstr "Facebook изображение:"
|
147 |
|
148 |
+
#: facebook-button-plugin.php:325
|
149 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\"."
|
150 |
msgstr "Опции изображения для загрузки: максимальная ширина:100px; максимальная высота:40px; максимальный размер:32Kb; тип файла:\"jpg\", \"jpeg\"."
|
151 |
|
152 |
+
#: facebook-button-plugin.php:333
|
153 |
msgid "Facebook Button Position:"
|
154 |
msgstr "Позиции Facebook кнопки:"
|
155 |
|
156 |
+
#: facebook-button-plugin.php:337
|
157 |
msgid "Before"
|
158 |
msgstr "Перед"
|
159 |
|
160 |
+
#: facebook-button-plugin.php:338
|
161 |
msgid "After"
|
162 |
msgstr "После"
|
163 |
|
164 |
+
#: facebook-button-plugin.php:339
|
165 |
msgid "Before and After"
|
166 |
msgstr "Перед и после"
|
167 |
|
168 |
+
#: facebook-button-plugin.php:340
|
169 |
msgid "Shortcode"
|
170 |
msgstr "Шорткод"
|
171 |
|
172 |
+
#: facebook-button-plugin.php:342
|
173 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
174 |
msgstr "Если вы хотите добавить Facebook кнопку на свой сайт, вам надо только скопировать и вставить шорткод в контент страницы или поста"
|
175 |
|
176 |
+
#: facebook-button-plugin.php:347
|
177 |
msgid "Facebook Button language:"
|
178 |
msgstr "Язык для Facebook кнопки:"
|
179 |
|
180 |
+
#: facebook-button-plugin.php:458
|
181 |
msgid "Change the language of Facebook Like Button"
|
182 |
msgstr "Выберите язык для Like кнопки"
|
183 |
|
184 |
+
#: facebook-button-plugin.php:464
|
185 |
msgid "Save Changes"
|
186 |
msgstr "Сохранить изменения"
|
187 |
|
188 |
+
#: facebook-button-plugin.php:584
|
189 |
msgid "FAQ"
|
190 |
msgstr "FAQ"
|
191 |
|
192 |
+
#: facebook-button-plugin.php:585
|
193 |
msgid "Support"
|
194 |
msgstr "Поддержка"
|
195 |
|
196 |
+
#~ msgid ""
|
197 |
+
#~ "If you have any questions, please contact us via plugin@bestwebsoft.com "
|
198 |
+
#~ "or fill out the contact form on our website"
|
199 |
+
#~ msgstr ""
|
200 |
+
#~ "Если у вас есть какие-то вопросы, обращайтесь на plugin@bestwebsoft.com "
|
201 |
+
#~ "или заполните контактную форму на нашем сайте"
|
202 |
#~ msgid "Options saved."
|
203 |
#~ msgstr "Опции сохранены"
|
204 |
#~ msgid "Install Now"
|
205 |
#~ msgstr "Установить сейчас"
|
|
|
|
|
206 |
|
languages/facebook-sr_RS.mo
CHANGED
Binary file
|
languages/facebook-sr_RS.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Georgijevic Team <http://www.georgijevic.info>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -15,181 +15,206 @@ msgstr ""
|
|
15 |
"X-Generator: Poedit 1.5.4\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
msgid "Activated plugins"
|
20 |
msgstr "Aktivni dodaci"
|
21 |
|
22 |
-
#: facebook-button-plugin.php:
|
23 |
-
#: facebook-button-plugin.php:
|
24 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
25 |
msgid "Read more"
|
26 |
msgstr "Čitaj više..."
|
27 |
|
28 |
-
#: facebook-button-plugin.php:
|
29 |
-
#: facebook-button-plugin.php:
|
30 |
-
#: facebook-button-plugin.php:
|
|
|
31 |
msgid "Settings"
|
32 |
msgstr "Podešavanja"
|
33 |
|
34 |
-
#: facebook-button-plugin.php:
|
|
|
35 |
msgid "Installed plugins"
|
36 |
msgstr "Instalirani dodaci"
|
37 |
|
38 |
-
#: facebook-button-plugin.php:
|
|
|
39 |
msgid "Recommended plugins"
|
40 |
msgstr "Preporučeni dodaci"
|
41 |
|
42 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
msgid "Download"
|
44 |
msgstr "Preuzmi"
|
45 |
|
46 |
-
#: facebook-button-plugin.php:
|
47 |
#, php-format
|
48 |
msgid "Install %s"
|
49 |
msgstr "Instaliraj %s"
|
50 |
|
51 |
-
#: facebook-button-plugin.php:
|
52 |
msgid "Install now from wordpress.org"
|
53 |
msgstr "Instaliraj sa wordpress.org"
|
54 |
|
55 |
-
#: facebook-button-plugin.php:
|
56 |
-
|
57 |
-
|
58 |
-
msgstr "Ako imate bilo kakva pitanja, kontaktirajte nas putem maila plugin@bestwebsoft.com ili popubite kontakt formu na našem sajtu"
|
59 |
|
60 |
-
#: facebook-button-plugin.php:
|
61 |
-
#: facebook-button-plugin.php:
|
62 |
#, fuzzy
|
63 |
msgid "Facebook Button Settings"
|
64 |
msgstr "Taster Facebook Opcija"
|
65 |
|
66 |
-
#: facebook-button-plugin.php:
|
67 |
#, fuzzy
|
68 |
msgid "Facebook Button"
|
69 |
msgstr "Facebook taster"
|
70 |
|
71 |
-
#: facebook-button-plugin.php:
|
72 |
#, fuzzy
|
73 |
msgid "Settings saved"
|
74 |
msgstr "Podešavanja"
|
75 |
|
76 |
-
#: facebook-button-plugin.php:
|
77 |
msgid "Error: File size > 32K"
|
78 |
msgstr "Greška: Veličina fajla prevazilazi 32К"
|
79 |
|
80 |
-
#: facebook-button-plugin.php:
|
81 |
msgid "Error: Invalid file type"
|
82 |
msgstr "Greška: Neispravan tip fajla"
|
83 |
|
84 |
-
#: facebook-button-plugin.php:
|
85 |
msgid "Error: moving file failed"
|
86 |
msgstr "Greška: premeštanje fajla nije uspelo"
|
87 |
|
88 |
-
#: facebook-button-plugin.php:
|
89 |
msgid "Error: check image width or height"
|
90 |
msgstr "Greška: Proverite širinu i visinu slike"
|
91 |
|
92 |
-
#: facebook-button-plugin.php:
|
93 |
msgid "Uploading Error: check image properties"
|
94 |
msgstr "Greška unosa: Proverite svojstva slike"
|
95 |
|
96 |
-
#: facebook-button-plugin.php:
|
97 |
#, fuzzy
|
98 |
msgid "Your Facebook ID:"
|
99 |
msgstr "Vaš Facebook Id:"
|
100 |
|
101 |
-
#: facebook-button-plugin.php:
|
102 |
msgid "Display button:"
|
103 |
msgstr "Prikaži taster:"
|
104 |
|
105 |
-
#: facebook-button-plugin.php:
|
106 |
msgid "My Page"
|
107 |
msgstr "Moja Strana"
|
108 |
|
109 |
-
#: facebook-button-plugin.php:
|
110 |
msgid "Like"
|
111 |
msgstr "Like"
|
112 |
|
113 |
-
#: facebook-button-plugin.php:
|
114 |
#, fuzzy
|
115 |
msgid "Choose display settings:"
|
116 |
msgstr "Izaberi opcije prikaza:"
|
117 |
|
118 |
-
#: facebook-button-plugin.php:
|
119 |
#, fuzzy
|
120 |
msgid "Standard Facebook image"
|
121 |
msgstr "Standardna Facebook slika"
|
122 |
|
123 |
-
#: facebook-button-plugin.php:
|
124 |
#, fuzzy
|
125 |
msgid "Custom Facebook image"
|
126 |
msgstr "Proizvoljna Facebook slika"
|
127 |
|
128 |
-
#: facebook-button-plugin.php:
|
129 |
msgid "Current image:"
|
130 |
msgstr "Aktuelna slika:"
|
131 |
|
132 |
-
#: facebook-button-plugin.php:
|
133 |
#, fuzzy
|
134 |
msgid "Facebook image:"
|
135 |
msgstr "Facebook slika:"
|
136 |
|
137 |
-
#: facebook-button-plugin.php:
|
138 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\"."
|
139 |
msgstr "Svojstva slike: maksimalna širina:100px; maksimalna visina:40px; maksimalna veličina:32Kb; tip fajla:\"jpg\", \"jpeg\"."
|
140 |
|
141 |
-
#: facebook-button-plugin.php:
|
142 |
#, fuzzy
|
143 |
msgid "Facebook Button Position:"
|
144 |
msgstr "Pozicija Facebook Tastera:"
|
145 |
|
146 |
-
#: facebook-button-plugin.php:
|
147 |
msgid "Before"
|
148 |
msgstr "Pre"
|
149 |
|
150 |
-
#: facebook-button-plugin.php:
|
151 |
msgid "After"
|
152 |
msgstr "Posle"
|
153 |
|
154 |
-
#: facebook-button-plugin.php:
|
155 |
msgid "Before and After"
|
156 |
msgstr "Pre i posle"
|
157 |
|
158 |
-
#: facebook-button-plugin.php:
|
159 |
msgid "Shortcode"
|
160 |
msgstr "Kratki kod"
|
161 |
|
162 |
-
#: facebook-button-plugin.php:
|
163 |
#, fuzzy
|
164 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
165 |
msgstr "Ako želite da dodate Facebook taster na vaš vebsajt, jednostavno iskopirajte ovaj kratak kod na vašu stranu ili članak:"
|
166 |
|
167 |
-
#: facebook-button-plugin.php:
|
168 |
#, fuzzy
|
169 |
msgid "Facebook Button language:"
|
170 |
msgstr "Jezik Facebook tastera"
|
171 |
|
172 |
-
#: facebook-button-plugin.php:
|
173 |
#, fuzzy
|
174 |
msgid "Change the language of Facebook Like Button"
|
175 |
msgstr "Izaberite jezik za Like taster"
|
176 |
|
177 |
-
#: facebook-button-plugin.php:
|
178 |
msgid "Save Changes"
|
179 |
msgstr "Sačuvaj Izmene"
|
180 |
|
181 |
-
#: facebook-button-plugin.php:
|
182 |
msgid "FAQ"
|
183 |
msgstr "FAQ"
|
184 |
|
185 |
-
#: facebook-button-plugin.php:
|
186 |
msgid "Support"
|
187 |
msgstr "Podrška"
|
188 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
189 |
#~ msgid "Options saved."
|
190 |
#~ msgstr "Opcije sačuvane"
|
191 |
#~ msgid "Install Now"
|
192 |
#~ msgstr "Instaliraj Odmah"
|
193 |
-
#~ msgid "BWS Plugins"
|
194 |
-
#~ msgstr "BWS Dodaci"
|
195 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-05-27 14:35+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-05-27 14:35+0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Georgijevic Team <http://www.georgijevic.info>\n"
|
9 |
"MIME-Version: 1.0\n"
|
15 |
"X-Generator: Poedit 1.5.4\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: facebook-button-plugin.php:101
|
19 |
+
#, fuzzy
|
20 |
+
msgid "Pro plugins"
|
21 |
+
msgstr "BWS Dodaci"
|
22 |
+
|
23 |
+
#: facebook-button-plugin.php:104
|
24 |
+
#: facebook-button-plugin.php:130
|
25 |
msgid "Activated plugins"
|
26 |
msgstr "Aktivni dodaci"
|
27 |
|
28 |
+
#: facebook-button-plugin.php:106
|
29 |
+
#: facebook-button-plugin.php:114
|
30 |
+
#: facebook-button-plugin.php:122
|
31 |
+
#: facebook-button-plugin.php:132
|
32 |
+
#: facebook-button-plugin.php:140
|
33 |
+
#: facebook-button-plugin.php:148
|
34 |
msgid "Read more"
|
35 |
msgstr "Čitaj više..."
|
36 |
|
37 |
+
#: facebook-button-plugin.php:106
|
38 |
+
#: facebook-button-plugin.php:132
|
39 |
+
#: facebook-button-plugin.php:571
|
40 |
+
#: facebook-button-plugin.php:583
|
41 |
msgid "Settings"
|
42 |
msgstr "Podešavanja"
|
43 |
|
44 |
+
#: facebook-button-plugin.php:112
|
45 |
+
#: facebook-button-plugin.php:138
|
46 |
msgid "Installed plugins"
|
47 |
msgstr "Instalirani dodaci"
|
48 |
|
49 |
+
#: facebook-button-plugin.php:120
|
50 |
+
#: facebook-button-plugin.php:146
|
51 |
msgid "Recommended plugins"
|
52 |
msgstr "Preporučeni dodaci"
|
53 |
|
54 |
+
#: facebook-button-plugin.php:122
|
55 |
+
msgid "Purchase"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: facebook-button-plugin.php:127
|
59 |
+
#, fuzzy
|
60 |
+
msgid "Free plugins"
|
61 |
+
msgstr "Preporučeni dodaci"
|
62 |
+
|
63 |
+
#: facebook-button-plugin.php:148
|
64 |
msgid "Download"
|
65 |
msgstr "Preuzmi"
|
66 |
|
67 |
+
#: facebook-button-plugin.php:148
|
68 |
#, php-format
|
69 |
msgid "Install %s"
|
70 |
msgstr "Instaliraj %s"
|
71 |
|
72 |
+
#: facebook-button-plugin.php:148
|
73 |
msgid "Install now from wordpress.org"
|
74 |
msgstr "Instaliraj sa wordpress.org"
|
75 |
|
76 |
+
#: facebook-button-plugin.php:153
|
77 |
+
msgid "If you have any questions, please contact us via"
|
78 |
+
msgstr ""
|
|
|
79 |
|
80 |
+
#: facebook-button-plugin.php:161
|
81 |
+
#: facebook-button-plugin.php:274
|
82 |
#, fuzzy
|
83 |
msgid "Facebook Button Settings"
|
84 |
msgstr "Taster Facebook Opcija"
|
85 |
|
86 |
+
#: facebook-button-plugin.php:161
|
87 |
#, fuzzy
|
88 |
msgid "Facebook Button"
|
89 |
msgstr "Facebook taster"
|
90 |
|
91 |
+
#: facebook-button-plugin.php:221
|
92 |
#, fuzzy
|
93 |
msgid "Settings saved"
|
94 |
msgstr "Podešavanja"
|
95 |
|
96 |
+
#: facebook-button-plugin.php:243
|
97 |
msgid "Error: File size > 32K"
|
98 |
msgstr "Greška: Veličina fajla prevazilazi 32К"
|
99 |
|
100 |
+
#: facebook-button-plugin.php:246
|
101 |
msgid "Error: Invalid file type"
|
102 |
msgstr "Greška: Neispravan tip fajla"
|
103 |
|
104 |
+
#: facebook-button-plugin.php:256
|
105 |
msgid "Error: moving file failed"
|
106 |
msgstr "Greška: premeštanje fajla nije uspelo"
|
107 |
|
108 |
+
#: facebook-button-plugin.php:260
|
109 |
msgid "Error: check image width or height"
|
110 |
msgstr "Greška: Proverite širinu i visinu slike"
|
111 |
|
112 |
+
#: facebook-button-plugin.php:265
|
113 |
msgid "Uploading Error: check image properties"
|
114 |
msgstr "Greška unosa: Proverite svojstva slike"
|
115 |
|
116 |
+
#: facebook-button-plugin.php:281
|
117 |
#, fuzzy
|
118 |
msgid "Your Facebook ID:"
|
119 |
msgstr "Vaš Facebook Id:"
|
120 |
|
121 |
+
#: facebook-button-plugin.php:287
|
122 |
msgid "Display button:"
|
123 |
msgstr "Prikaži taster:"
|
124 |
|
125 |
+
#: facebook-button-plugin.php:289
|
126 |
msgid "My Page"
|
127 |
msgstr "Moja Strana"
|
128 |
|
129 |
+
#: facebook-button-plugin.php:290
|
130 |
msgid "Like"
|
131 |
msgstr "Like"
|
132 |
|
133 |
+
#: facebook-button-plugin.php:295
|
134 |
#, fuzzy
|
135 |
msgid "Choose display settings:"
|
136 |
msgstr "Izaberi opcije prikaza:"
|
137 |
|
138 |
+
#: facebook-button-plugin.php:299
|
139 |
#, fuzzy
|
140 |
msgid "Standard Facebook image"
|
141 |
msgstr "Standardna Facebook slika"
|
142 |
|
143 |
+
#: facebook-button-plugin.php:301
|
144 |
#, fuzzy
|
145 |
msgid "Custom Facebook image"
|
146 |
msgstr "Proizvoljna Facebook slika"
|
147 |
|
148 |
+
#: facebook-button-plugin.php:308
|
149 |
msgid "Current image:"
|
150 |
msgstr "Aktuelna slika:"
|
151 |
|
152 |
+
#: facebook-button-plugin.php:321
|
153 |
#, fuzzy
|
154 |
msgid "Facebook image:"
|
155 |
msgstr "Facebook slika:"
|
156 |
|
157 |
+
#: facebook-button-plugin.php:325
|
158 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\"."
|
159 |
msgstr "Svojstva slike: maksimalna širina:100px; maksimalna visina:40px; maksimalna veličina:32Kb; tip fajla:\"jpg\", \"jpeg\"."
|
160 |
|
161 |
+
#: facebook-button-plugin.php:333
|
162 |
#, fuzzy
|
163 |
msgid "Facebook Button Position:"
|
164 |
msgstr "Pozicija Facebook Tastera:"
|
165 |
|
166 |
+
#: facebook-button-plugin.php:337
|
167 |
msgid "Before"
|
168 |
msgstr "Pre"
|
169 |
|
170 |
+
#: facebook-button-plugin.php:338
|
171 |
msgid "After"
|
172 |
msgstr "Posle"
|
173 |
|
174 |
+
#: facebook-button-plugin.php:339
|
175 |
msgid "Before and After"
|
176 |
msgstr "Pre i posle"
|
177 |
|
178 |
+
#: facebook-button-plugin.php:340
|
179 |
msgid "Shortcode"
|
180 |
msgstr "Kratki kod"
|
181 |
|
182 |
+
#: facebook-button-plugin.php:342
|
183 |
#, fuzzy
|
184 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
185 |
msgstr "Ako želite da dodate Facebook taster na vaš vebsajt, jednostavno iskopirajte ovaj kratak kod na vašu stranu ili članak:"
|
186 |
|
187 |
+
#: facebook-button-plugin.php:347
|
188 |
#, fuzzy
|
189 |
msgid "Facebook Button language:"
|
190 |
msgstr "Jezik Facebook tastera"
|
191 |
|
192 |
+
#: facebook-button-plugin.php:458
|
193 |
#, fuzzy
|
194 |
msgid "Change the language of Facebook Like Button"
|
195 |
msgstr "Izaberite jezik za Like taster"
|
196 |
|
197 |
+
#: facebook-button-plugin.php:464
|
198 |
msgid "Save Changes"
|
199 |
msgstr "Sačuvaj Izmene"
|
200 |
|
201 |
+
#: facebook-button-plugin.php:584
|
202 |
msgid "FAQ"
|
203 |
msgstr "FAQ"
|
204 |
|
205 |
+
#: facebook-button-plugin.php:585
|
206 |
msgid "Support"
|
207 |
msgstr "Podrška"
|
208 |
|
209 |
+
#, fuzzy
|
210 |
+
#~ msgid ""
|
211 |
+
#~ "If you have any questions, please contact us via plugin@bestwebsoft.com "
|
212 |
+
#~ "or fill out the contact form on our website"
|
213 |
+
#~ msgstr ""
|
214 |
+
#~ "Ako imate bilo kakva pitanja, kontaktirajte nas putem maila "
|
215 |
+
#~ "plugin@bestwebsoft.com ili popubite kontakt formu na našem sajtu"
|
216 |
#~ msgid "Options saved."
|
217 |
#~ msgstr "Opcije sačuvane"
|
218 |
#~ msgid "Install Now"
|
219 |
#~ msgstr "Instaliraj Odmah"
|
|
|
|
|
220 |
|
languages/facebook-tr_TR.mo
CHANGED
Binary file
|
languages/facebook-tr_TR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,180 +16,206 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
msgid "Activated plugins"
|
21 |
msgstr "Aktif Eklentiler"
|
22 |
|
23 |
-
#: facebook-button-plugin.php:
|
24 |
-
#: facebook-button-plugin.php:
|
25 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
26 |
msgid "Read more"
|
27 |
msgstr "Devamını Oku"
|
28 |
|
29 |
-
#: facebook-button-plugin.php:
|
30 |
-
#: facebook-button-plugin.php:
|
31 |
-
#: facebook-button-plugin.php:
|
|
|
32 |
msgid "Settings"
|
33 |
msgstr "Ayarlar"
|
34 |
|
35 |
-
#: facebook-button-plugin.php:
|
|
|
36 |
msgid "Installed plugins"
|
37 |
msgstr "Yüklü eklentiler"
|
38 |
|
39 |
-
#: facebook-button-plugin.php:
|
|
|
40 |
msgid "Recommended plugins"
|
41 |
msgstr "Eklenti Önerileri"
|
42 |
|
43 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
msgid "Download"
|
45 |
msgstr "İndir"
|
46 |
|
47 |
-
#: facebook-button-plugin.php:
|
48 |
#, php-format
|
49 |
msgid "Install %s"
|
50 |
msgstr "%s 'i yükle"
|
51 |
|
52 |
-
#: facebook-button-plugin.php:
|
53 |
msgid "Install now from wordpress.org"
|
54 |
msgstr "wordpress.org'dan yükle"
|
55 |
|
56 |
-
#: facebook-button-plugin.php:
|
57 |
-
|
58 |
-
|
59 |
-
msgstr "Sormak istediğiniz herhangi bir sorunuz varsa bize plugin@bestwebsoft.com adresine e-posta atarak ya da sitemizdeki iletişim formunu kullanarak ulaşabilirsiniz."
|
60 |
|
61 |
-
#: facebook-button-plugin.php:
|
62 |
-
#: facebook-button-plugin.php:
|
63 |
#, fuzzy
|
64 |
msgid "Facebook Button Settings"
|
65 |
msgstr "Facebook Butonu Ayarları"
|
66 |
|
67 |
-
#: facebook-button-plugin.php:
|
68 |
#, fuzzy
|
69 |
msgid "Facebook Button"
|
70 |
msgstr "Facebook Butonu"
|
71 |
|
72 |
-
#: facebook-button-plugin.php:
|
73 |
#, fuzzy
|
74 |
msgid "Settings saved"
|
75 |
msgstr "Ayarlar"
|
76 |
|
77 |
-
#: facebook-button-plugin.php:
|
78 |
msgid "Error: File size > 32K"
|
79 |
msgstr "HATA: Dosya boyutu 32KB'tan büyük!"
|
80 |
|
81 |
-
#: facebook-button-plugin.php:
|
82 |
msgid "Error: Invalid file type"
|
83 |
msgstr "HATA: geçersiz dosya uzantısı"
|
84 |
|
85 |
-
#: facebook-button-plugin.php:
|
86 |
msgid "Error: moving file failed"
|
87 |
msgstr "HATA: Dosya taşınamadı!"
|
88 |
|
89 |
-
#: facebook-button-plugin.php:
|
90 |
msgid "Error: check image width or height"
|
91 |
msgstr "HATA: Görselin genişlik ve yüksekliğini kontrol edin."
|
92 |
|
93 |
-
#: facebook-button-plugin.php:
|
94 |
msgid "Uploading Error: check image properties"
|
95 |
msgstr "Yükleme Hatası: Görselin özelliklerini kontol edin."
|
96 |
|
97 |
-
#: facebook-button-plugin.php:
|
98 |
#, fuzzy
|
99 |
msgid "Your Facebook ID:"
|
100 |
msgstr "Facebook ID:"
|
101 |
|
102 |
-
#: facebook-button-plugin.php:
|
103 |
msgid "Display button:"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: facebook-button-plugin.php:
|
107 |
msgid "My Page"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: facebook-button-plugin.php:
|
111 |
msgid "Like"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: facebook-button-plugin.php:
|
115 |
#, fuzzy
|
116 |
msgid "Choose display settings:"
|
117 |
msgstr "Gösterim Şeklini Seçin"
|
118 |
|
119 |
-
#: facebook-button-plugin.php:
|
120 |
#, fuzzy
|
121 |
msgid "Standard Facebook image"
|
122 |
msgstr "Standard Facebook Görseli"
|
123 |
|
124 |
-
#: facebook-button-plugin.php:
|
125 |
#, fuzzy
|
126 |
msgid "Custom Facebook image"
|
127 |
msgstr "Kişisel Facebook Görseli"
|
128 |
|
129 |
-
#: facebook-button-plugin.php:
|
130 |
msgid "Current image:"
|
131 |
msgstr "Şu andaki görsel:"
|
132 |
|
133 |
-
#: facebook-button-plugin.php:
|
134 |
#, fuzzy
|
135 |
msgid "Facebook image:"
|
136 |
msgstr "Facebook görseli:"
|
137 |
|
138 |
-
#: facebook-button-plugin.php:
|
139 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\"."
|
140 |
msgstr "Görsel Özellikleri: maksimum genişlik: 100px; maksimum yükseklik: 40px; maksimum boyut: 32KB; izin verilen uzantılar: \"jpg\", \"jpeg\"."
|
141 |
|
142 |
-
#: facebook-button-plugin.php:
|
143 |
#, fuzzy
|
144 |
msgid "Facebook Button Position:"
|
145 |
msgstr "Facebook Butonunun Konumu"
|
146 |
|
147 |
-
#: facebook-button-plugin.php:
|
148 |
msgid "Before"
|
149 |
msgstr "Önce"
|
150 |
|
151 |
-
#: facebook-button-plugin.php:
|
152 |
msgid "After"
|
153 |
msgstr "Sonra"
|
154 |
|
155 |
-
#: facebook-button-plugin.php:
|
156 |
msgid "Before and After"
|
157 |
msgstr "Önce ve Sonra"
|
158 |
|
159 |
-
#: facebook-button-plugin.php:
|
160 |
msgid "Shortcode"
|
161 |
msgstr "Kısakod Olarak"
|
162 |
|
163 |
-
#: facebook-button-plugin.php:
|
164 |
#, fuzzy
|
165 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
166 |
msgstr "Web sitenize Facebook butonu yerleştirmek istiyorsanız, aşağıdaki kodu kopyalayın ve sayfanızda/yazınızda butonun görünmesini istediğiniz yere yapıştırın.(HTML editörüyle!)"
|
167 |
|
168 |
-
#: facebook-button-plugin.php:
|
169 |
#, fuzzy
|
170 |
msgid "Facebook Button language:"
|
171 |
msgstr "Facebook Butonu"
|
172 |
|
173 |
-
#: facebook-button-plugin.php:
|
174 |
msgid "Change the language of Facebook Like Button"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: facebook-button-plugin.php:
|
178 |
msgid "Save Changes"
|
179 |
msgstr "Değişiklikleri Kaydet"
|
180 |
|
181 |
-
#: facebook-button-plugin.php:
|
182 |
msgid "FAQ"
|
183 |
msgstr "SSS (Sık Sorulan Sorular)"
|
184 |
|
185 |
-
#: facebook-button-plugin.php:
|
186 |
msgid "Support"
|
187 |
msgstr "Destek"
|
188 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
189 |
#~ msgid "Options saved."
|
190 |
#~ msgstr "Değişiklikler Kaydedildi."
|
191 |
#~ msgid "Install Now"
|
192 |
#~ msgstr "Установить сейчас"
|
193 |
-
#~ msgid "BWS Plugins"
|
194 |
-
#~ msgstr "Плагины BWS"
|
195 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-05-27 14:36+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-05-27 14:36+0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: facebook-button-plugin.php:101
|
20 |
+
#, fuzzy
|
21 |
+
msgid "Pro plugins"
|
22 |
+
msgstr "Плагины BWS"
|
23 |
+
|
24 |
+
#: facebook-button-plugin.php:104
|
25 |
+
#: facebook-button-plugin.php:130
|
26 |
msgid "Activated plugins"
|
27 |
msgstr "Aktif Eklentiler"
|
28 |
|
29 |
+
#: facebook-button-plugin.php:106
|
30 |
+
#: facebook-button-plugin.php:114
|
31 |
+
#: facebook-button-plugin.php:122
|
32 |
+
#: facebook-button-plugin.php:132
|
33 |
+
#: facebook-button-plugin.php:140
|
34 |
+
#: facebook-button-plugin.php:148
|
35 |
msgid "Read more"
|
36 |
msgstr "Devamını Oku"
|
37 |
|
38 |
+
#: facebook-button-plugin.php:106
|
39 |
+
#: facebook-button-plugin.php:132
|
40 |
+
#: facebook-button-plugin.php:571
|
41 |
+
#: facebook-button-plugin.php:583
|
42 |
msgid "Settings"
|
43 |
msgstr "Ayarlar"
|
44 |
|
45 |
+
#: facebook-button-plugin.php:112
|
46 |
+
#: facebook-button-plugin.php:138
|
47 |
msgid "Installed plugins"
|
48 |
msgstr "Yüklü eklentiler"
|
49 |
|
50 |
+
#: facebook-button-plugin.php:120
|
51 |
+
#: facebook-button-plugin.php:146
|
52 |
msgid "Recommended plugins"
|
53 |
msgstr "Eklenti Önerileri"
|
54 |
|
55 |
+
#: facebook-button-plugin.php:122
|
56 |
+
msgid "Purchase"
|
57 |
+
msgstr ""
|
58 |
+
|
59 |
+
#: facebook-button-plugin.php:127
|
60 |
+
#, fuzzy
|
61 |
+
msgid "Free plugins"
|
62 |
+
msgstr "Eklenti Önerileri"
|
63 |
+
|
64 |
+
#: facebook-button-plugin.php:148
|
65 |
msgid "Download"
|
66 |
msgstr "İndir"
|
67 |
|
68 |
+
#: facebook-button-plugin.php:148
|
69 |
#, php-format
|
70 |
msgid "Install %s"
|
71 |
msgstr "%s 'i yükle"
|
72 |
|
73 |
+
#: facebook-button-plugin.php:148
|
74 |
msgid "Install now from wordpress.org"
|
75 |
msgstr "wordpress.org'dan yükle"
|
76 |
|
77 |
+
#: facebook-button-plugin.php:153
|
78 |
+
msgid "If you have any questions, please contact us via"
|
79 |
+
msgstr ""
|
|
|
80 |
|
81 |
+
#: facebook-button-plugin.php:161
|
82 |
+
#: facebook-button-plugin.php:274
|
83 |
#, fuzzy
|
84 |
msgid "Facebook Button Settings"
|
85 |
msgstr "Facebook Butonu Ayarları"
|
86 |
|
87 |
+
#: facebook-button-plugin.php:161
|
88 |
#, fuzzy
|
89 |
msgid "Facebook Button"
|
90 |
msgstr "Facebook Butonu"
|
91 |
|
92 |
+
#: facebook-button-plugin.php:221
|
93 |
#, fuzzy
|
94 |
msgid "Settings saved"
|
95 |
msgstr "Ayarlar"
|
96 |
|
97 |
+
#: facebook-button-plugin.php:243
|
98 |
msgid "Error: File size > 32K"
|
99 |
msgstr "HATA: Dosya boyutu 32KB'tan büyük!"
|
100 |
|
101 |
+
#: facebook-button-plugin.php:246
|
102 |
msgid "Error: Invalid file type"
|
103 |
msgstr "HATA: geçersiz dosya uzantısı"
|
104 |
|
105 |
+
#: facebook-button-plugin.php:256
|
106 |
msgid "Error: moving file failed"
|
107 |
msgstr "HATA: Dosya taşınamadı!"
|
108 |
|
109 |
+
#: facebook-button-plugin.php:260
|
110 |
msgid "Error: check image width or height"
|
111 |
msgstr "HATA: Görselin genişlik ve yüksekliğini kontrol edin."
|
112 |
|
113 |
+
#: facebook-button-plugin.php:265
|
114 |
msgid "Uploading Error: check image properties"
|
115 |
msgstr "Yükleme Hatası: Görselin özelliklerini kontol edin."
|
116 |
|
117 |
+
#: facebook-button-plugin.php:281
|
118 |
#, fuzzy
|
119 |
msgid "Your Facebook ID:"
|
120 |
msgstr "Facebook ID:"
|
121 |
|
122 |
+
#: facebook-button-plugin.php:287
|
123 |
msgid "Display button:"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: facebook-button-plugin.php:289
|
127 |
msgid "My Page"
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: facebook-button-plugin.php:290
|
131 |
msgid "Like"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: facebook-button-plugin.php:295
|
135 |
#, fuzzy
|
136 |
msgid "Choose display settings:"
|
137 |
msgstr "Gösterim Şeklini Seçin"
|
138 |
|
139 |
+
#: facebook-button-plugin.php:299
|
140 |
#, fuzzy
|
141 |
msgid "Standard Facebook image"
|
142 |
msgstr "Standard Facebook Görseli"
|
143 |
|
144 |
+
#: facebook-button-plugin.php:301
|
145 |
#, fuzzy
|
146 |
msgid "Custom Facebook image"
|
147 |
msgstr "Kişisel Facebook Görseli"
|
148 |
|
149 |
+
#: facebook-button-plugin.php:308
|
150 |
msgid "Current image:"
|
151 |
msgstr "Şu andaki görsel:"
|
152 |
|
153 |
+
#: facebook-button-plugin.php:321
|
154 |
#, fuzzy
|
155 |
msgid "Facebook image:"
|
156 |
msgstr "Facebook görseli:"
|
157 |
|
158 |
+
#: facebook-button-plugin.php:325
|
159 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\"."
|
160 |
msgstr "Görsel Özellikleri: maksimum genişlik: 100px; maksimum yükseklik: 40px; maksimum boyut: 32KB; izin verilen uzantılar: \"jpg\", \"jpeg\"."
|
161 |
|
162 |
+
#: facebook-button-plugin.php:333
|
163 |
#, fuzzy
|
164 |
msgid "Facebook Button Position:"
|
165 |
msgstr "Facebook Butonunun Konumu"
|
166 |
|
167 |
+
#: facebook-button-plugin.php:337
|
168 |
msgid "Before"
|
169 |
msgstr "Önce"
|
170 |
|
171 |
+
#: facebook-button-plugin.php:338
|
172 |
msgid "After"
|
173 |
msgstr "Sonra"
|
174 |
|
175 |
+
#: facebook-button-plugin.php:339
|
176 |
msgid "Before and After"
|
177 |
msgstr "Önce ve Sonra"
|
178 |
|
179 |
+
#: facebook-button-plugin.php:340
|
180 |
msgid "Shortcode"
|
181 |
msgstr "Kısakod Olarak"
|
182 |
|
183 |
+
#: facebook-button-plugin.php:342
|
184 |
#, fuzzy
|
185 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
186 |
msgstr "Web sitenize Facebook butonu yerleştirmek istiyorsanız, aşağıdaki kodu kopyalayın ve sayfanızda/yazınızda butonun görünmesini istediğiniz yere yapıştırın.(HTML editörüyle!)"
|
187 |
|
188 |
+
#: facebook-button-plugin.php:347
|
189 |
#, fuzzy
|
190 |
msgid "Facebook Button language:"
|
191 |
msgstr "Facebook Butonu"
|
192 |
|
193 |
+
#: facebook-button-plugin.php:458
|
194 |
msgid "Change the language of Facebook Like Button"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: facebook-button-plugin.php:464
|
198 |
msgid "Save Changes"
|
199 |
msgstr "Değişiklikleri Kaydet"
|
200 |
|
201 |
+
#: facebook-button-plugin.php:584
|
202 |
msgid "FAQ"
|
203 |
msgstr "SSS (Sık Sorulan Sorular)"
|
204 |
|
205 |
+
#: facebook-button-plugin.php:585
|
206 |
msgid "Support"
|
207 |
msgstr "Destek"
|
208 |
|
209 |
+
#, fuzzy
|
210 |
+
#~ msgid ""
|
211 |
+
#~ "If you have any questions, please contact us via plugin@bestwebsoft.com "
|
212 |
+
#~ "or fill out the contact form on our website"
|
213 |
+
#~ msgstr ""
|
214 |
+
#~ "Sormak istediğiniz herhangi bir sorunuz varsa bize plugin@bestwebsoft.com "
|
215 |
+
#~ "adresine e-posta atarak ya da sitemizdeki iletişim formunu kullanarak "
|
216 |
+
#~ "ulaşabilirsiniz."
|
217 |
#~ msgid "Options saved."
|
218 |
#~ msgstr "Değişiklikler Kaydedildi."
|
219 |
#~ msgid "Install Now"
|
220 |
#~ msgstr "Установить сейчас"
|
|
|
|
|
221 |
|
languages/facebook-uk.mo
CHANGED
Binary file
|
languages/facebook-uk.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Cmd Soft <tmosbyd@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,181 +16,206 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.5\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
msgid "Activated plugins"
|
21 |
msgstr "Активоване плагіни"
|
22 |
|
23 |
-
#: facebook-button-plugin.php:
|
24 |
-
#: facebook-button-plugin.php:
|
25 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
26 |
msgid "Read more"
|
27 |
msgstr "Читати далі"
|
28 |
|
29 |
-
#: facebook-button-plugin.php:
|
30 |
-
#: facebook-button-plugin.php:
|
31 |
-
#: facebook-button-plugin.php:
|
|
|
32 |
msgid "Settings"
|
33 |
msgstr "Налаштування"
|
34 |
|
35 |
-
#: facebook-button-plugin.php:
|
|
|
36 |
msgid "Installed plugins"
|
37 |
msgstr "Встановлені плагіни"
|
38 |
|
39 |
-
#: facebook-button-plugin.php:
|
|
|
40 |
msgid "Recommended plugins"
|
41 |
msgstr "Рекомендовані плагіни"
|
42 |
|
43 |
-
#: facebook-button-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
msgid "Download"
|
45 |
msgstr "Завантажити"
|
46 |
|
47 |
-
#: facebook-button-plugin.php:
|
48 |
#, php-format
|
49 |
msgid "Install %s"
|
50 |
msgstr "Встановіть %s"
|
51 |
|
52 |
-
#: facebook-button-plugin.php:
|
53 |
msgid "Install now from wordpress.org"
|
54 |
msgstr "Встановити зараз від wordpress.org"
|
55 |
|
56 |
-
#: facebook-button-plugin.php:
|
57 |
-
|
58 |
-
|
59 |
-
msgstr "Якщо у Вас виникли питання, будь ласка, зв'яжіться з нами через plugin@bestwebsoft.com або заповнити контактну форму на нашому сайті"
|
60 |
|
61 |
-
#: facebook-button-plugin.php:
|
62 |
-
#: facebook-button-plugin.php:
|
63 |
#, fuzzy
|
64 |
msgid "Facebook Button Settings"
|
65 |
msgstr "FaceBook кнопку Параметри"
|
66 |
|
67 |
-
#: facebook-button-plugin.php:
|
68 |
#, fuzzy
|
69 |
msgid "Facebook Button"
|
70 |
msgstr "FaceBook кнопка"
|
71 |
|
72 |
-
#: facebook-button-plugin.php:
|
73 |
#, fuzzy
|
74 |
msgid "Settings saved"
|
75 |
msgstr "Налаштування"
|
76 |
|
77 |
-
#: facebook-button-plugin.php:
|
78 |
msgid "Error: File size > 32K"
|
79 |
msgstr "Помилка: Розмір файлу> 32K"
|
80 |
|
81 |
-
#: facebook-button-plugin.php:
|
82 |
msgid "Error: Invalid file type"
|
83 |
msgstr "Помилка: Невірний тип файлу"
|
84 |
|
85 |
-
#: facebook-button-plugin.php:
|
86 |
msgid "Error: moving file failed"
|
87 |
msgstr "Помилка: не вдалося Переміщення файлів"
|
88 |
|
89 |
-
#: facebook-button-plugin.php:
|
90 |
msgid "Error: check image width or height"
|
91 |
msgstr "Помилка: Перевірка ширини або висоти зображень"
|
92 |
|
93 |
-
#: facebook-button-plugin.php:
|
94 |
msgid "Uploading Error: check image properties"
|
95 |
msgstr "Завантаження Помилка: Перевірка властивостей зображення"
|
96 |
|
97 |
-
#: facebook-button-plugin.php:
|
98 |
#, fuzzy
|
99 |
msgid "Your Facebook ID:"
|
100 |
msgstr "Ваша автора FaceBook Id:"
|
101 |
|
102 |
-
#: facebook-button-plugin.php:
|
103 |
msgid "Display button:"
|
104 |
msgstr "Відображення кнопки:"
|
105 |
|
106 |
-
#: facebook-button-plugin.php:
|
107 |
msgid "My Page"
|
108 |
msgstr "Моя сторінка"
|
109 |
|
110 |
-
#: facebook-button-plugin.php:
|
111 |
msgid "Like"
|
112 |
msgstr "подобатися "
|
113 |
|
114 |
-
#: facebook-button-plugin.php:
|
115 |
#, fuzzy
|
116 |
msgid "Choose display settings:"
|
117 |
msgstr "Виберіть опцію відображення:"
|
118 |
|
119 |
-
#: facebook-button-plugin.php:
|
120 |
#, fuzzy
|
121 |
msgid "Standard Facebook image"
|
122 |
msgstr "Стандарт FaceBook зображення"
|
123 |
|
124 |
-
#: facebook-button-plugin.php:
|
125 |
#, fuzzy
|
126 |
msgid "Custom Facebook image"
|
127 |
msgstr "Користувальницькі FaceBook зображення"
|
128 |
|
129 |
-
#: facebook-button-plugin.php:
|
130 |
msgid "Current image:"
|
131 |
msgstr "Поточне зображення:"
|
132 |
|
133 |
-
#: facebook-button-plugin.php:
|
134 |
#, fuzzy
|
135 |
msgid "Facebook image:"
|
136 |
msgstr "FaceBook зображення:"
|
137 |
|
138 |
-
#: facebook-button-plugin.php:
|
139 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\"."
|
140 |
msgstr "Властивості: максимальна ширина зображення:100px; Максимальна висота зображення:40px; максимальний розмір зображення:32Kb; Зображення типів:\"jpg\", \"jpeg\"."
|
141 |
|
142 |
-
#: facebook-button-plugin.php:
|
143 |
#, fuzzy
|
144 |
msgid "Facebook Button Position:"
|
145 |
msgstr "Кнопка FaceBook Статус:"
|
146 |
|
147 |
-
#: facebook-button-plugin.php:
|
148 |
msgid "Before"
|
149 |
msgstr "Перш ніж"
|
150 |
|
151 |
-
#: facebook-button-plugin.php:
|
152 |
msgid "After"
|
153 |
msgstr "Після того як"
|
154 |
|
155 |
-
#: facebook-button-plugin.php:
|
156 |
msgid "Before and After"
|
157 |
msgstr "До і після"
|
158 |
|
159 |
-
#: facebook-button-plugin.php:
|
160 |
msgid "Shortcode"
|
161 |
msgstr "Шорткода"
|
162 |
|
163 |
-
#: facebook-button-plugin.php:
|
164 |
#, fuzzy
|
165 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
166 |
msgstr "Якщо ви хочете додати кнопку FaceBook на ваш сайт, просто скопіювати і помістити цей короткий на ваш пост або сторінку:"
|
167 |
|
168 |
-
#: facebook-button-plugin.php:
|
169 |
#, fuzzy
|
170 |
msgid "Facebook Button language:"
|
171 |
msgstr "Кнопка FaceBook мову:"
|
172 |
|
173 |
-
#: facebook-button-plugin.php:
|
174 |
#, fuzzy
|
175 |
msgid "Change the language of Facebook Like Button"
|
176 |
msgstr "Виберіть мову для кнопки Like"
|
177 |
|
178 |
-
#: facebook-button-plugin.php:
|
179 |
msgid "Save Changes"
|
180 |
msgstr "Зберегти зміни"
|
181 |
|
182 |
-
#: facebook-button-plugin.php:
|
183 |
msgid "FAQ"
|
184 |
msgstr "Часті питання"
|
185 |
|
186 |
-
#: facebook-button-plugin.php:
|
187 |
msgid "Support"
|
188 |
msgstr "Підтримка"
|
189 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
190 |
#~ msgid "Options saved."
|
191 |
#~ msgstr "Налаштування збережені."
|
192 |
#~ msgid "Install Now"
|
193 |
#~ msgstr "Установить сейчас"
|
194 |
-
#~ msgid "BWS Plugins"
|
195 |
-
#~ msgstr "Плагины BWS"
|
196 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-05-27 14:36+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-05-27 14:36+0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Cmd Soft <tmosbyd@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Generator: Poedit 1.5.5\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: facebook-button-plugin.php:101
|
20 |
+
#, fuzzy
|
21 |
+
msgid "Pro plugins"
|
22 |
+
msgstr "Плагины BWS"
|
23 |
+
|
24 |
+
#: facebook-button-plugin.php:104
|
25 |
+
#: facebook-button-plugin.php:130
|
26 |
msgid "Activated plugins"
|
27 |
msgstr "Активоване плагіни"
|
28 |
|
29 |
+
#: facebook-button-plugin.php:106
|
30 |
+
#: facebook-button-plugin.php:114
|
31 |
+
#: facebook-button-plugin.php:122
|
32 |
+
#: facebook-button-plugin.php:132
|
33 |
+
#: facebook-button-plugin.php:140
|
34 |
+
#: facebook-button-plugin.php:148
|
35 |
msgid "Read more"
|
36 |
msgstr "Читати далі"
|
37 |
|
38 |
+
#: facebook-button-plugin.php:106
|
39 |
+
#: facebook-button-plugin.php:132
|
40 |
+
#: facebook-button-plugin.php:571
|
41 |
+
#: facebook-button-plugin.php:583
|
42 |
msgid "Settings"
|
43 |
msgstr "Налаштування"
|
44 |
|
45 |
+
#: facebook-button-plugin.php:112
|
46 |
+
#: facebook-button-plugin.php:138
|
47 |
msgid "Installed plugins"
|
48 |
msgstr "Встановлені плагіни"
|
49 |
|
50 |
+
#: facebook-button-plugin.php:120
|
51 |
+
#: facebook-button-plugin.php:146
|
52 |
msgid "Recommended plugins"
|
53 |
msgstr "Рекомендовані плагіни"
|
54 |
|
55 |
+
#: facebook-button-plugin.php:122
|
56 |
+
msgid "Purchase"
|
57 |
+
msgstr ""
|
58 |
+
|
59 |
+
#: facebook-button-plugin.php:127
|
60 |
+
#, fuzzy
|
61 |
+
msgid "Free plugins"
|
62 |
+
msgstr "Рекомендовані плагіни"
|
63 |
+
|
64 |
+
#: facebook-button-plugin.php:148
|
65 |
msgid "Download"
|
66 |
msgstr "Завантажити"
|
67 |
|
68 |
+
#: facebook-button-plugin.php:148
|
69 |
#, php-format
|
70 |
msgid "Install %s"
|
71 |
msgstr "Встановіть %s"
|
72 |
|
73 |
+
#: facebook-button-plugin.php:148
|
74 |
msgid "Install now from wordpress.org"
|
75 |
msgstr "Встановити зараз від wordpress.org"
|
76 |
|
77 |
+
#: facebook-button-plugin.php:153
|
78 |
+
msgid "If you have any questions, please contact us via"
|
79 |
+
msgstr ""
|
|
|
80 |
|
81 |
+
#: facebook-button-plugin.php:161
|
82 |
+
#: facebook-button-plugin.php:274
|
83 |
#, fuzzy
|
84 |
msgid "Facebook Button Settings"
|
85 |
msgstr "FaceBook кнопку Параметри"
|
86 |
|
87 |
+
#: facebook-button-plugin.php:161
|
88 |
#, fuzzy
|
89 |
msgid "Facebook Button"
|
90 |
msgstr "FaceBook кнопка"
|
91 |
|
92 |
+
#: facebook-button-plugin.php:221
|
93 |
#, fuzzy
|
94 |
msgid "Settings saved"
|
95 |
msgstr "Налаштування"
|
96 |
|
97 |
+
#: facebook-button-plugin.php:243
|
98 |
msgid "Error: File size > 32K"
|
99 |
msgstr "Помилка: Розмір файлу> 32K"
|
100 |
|
101 |
+
#: facebook-button-plugin.php:246
|
102 |
msgid "Error: Invalid file type"
|
103 |
msgstr "Помилка: Невірний тип файлу"
|
104 |
|
105 |
+
#: facebook-button-plugin.php:256
|
106 |
msgid "Error: moving file failed"
|
107 |
msgstr "Помилка: не вдалося Переміщення файлів"
|
108 |
|
109 |
+
#: facebook-button-plugin.php:260
|
110 |
msgid "Error: check image width or height"
|
111 |
msgstr "Помилка: Перевірка ширини або висоти зображень"
|
112 |
|
113 |
+
#: facebook-button-plugin.php:265
|
114 |
msgid "Uploading Error: check image properties"
|
115 |
msgstr "Завантаження Помилка: Перевірка властивостей зображення"
|
116 |
|
117 |
+
#: facebook-button-plugin.php:281
|
118 |
#, fuzzy
|
119 |
msgid "Your Facebook ID:"
|
120 |
msgstr "Ваша автора FaceBook Id:"
|
121 |
|
122 |
+
#: facebook-button-plugin.php:287
|
123 |
msgid "Display button:"
|
124 |
msgstr "Відображення кнопки:"
|
125 |
|
126 |
+
#: facebook-button-plugin.php:289
|
127 |
msgid "My Page"
|
128 |
msgstr "Моя сторінка"
|
129 |
|
130 |
+
#: facebook-button-plugin.php:290
|
131 |
msgid "Like"
|
132 |
msgstr "подобатися "
|
133 |
|
134 |
+
#: facebook-button-plugin.php:295
|
135 |
#, fuzzy
|
136 |
msgid "Choose display settings:"
|
137 |
msgstr "Виберіть опцію відображення:"
|
138 |
|
139 |
+
#: facebook-button-plugin.php:299
|
140 |
#, fuzzy
|
141 |
msgid "Standard Facebook image"
|
142 |
msgstr "Стандарт FaceBook зображення"
|
143 |
|
144 |
+
#: facebook-button-plugin.php:301
|
145 |
#, fuzzy
|
146 |
msgid "Custom Facebook image"
|
147 |
msgstr "Користувальницькі FaceBook зображення"
|
148 |
|
149 |
+
#: facebook-button-plugin.php:308
|
150 |
msgid "Current image:"
|
151 |
msgstr "Поточне зображення:"
|
152 |
|
153 |
+
#: facebook-button-plugin.php:321
|
154 |
#, fuzzy
|
155 |
msgid "Facebook image:"
|
156 |
msgstr "FaceBook зображення:"
|
157 |
|
158 |
+
#: facebook-button-plugin.php:325
|
159 |
msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\"."
|
160 |
msgstr "Властивості: максимальна ширина зображення:100px; Максимальна висота зображення:40px; максимальний розмір зображення:32Kb; Зображення типів:\"jpg\", \"jpeg\"."
|
161 |
|
162 |
+
#: facebook-button-plugin.php:333
|
163 |
#, fuzzy
|
164 |
msgid "Facebook Button Position:"
|
165 |
msgstr "Кнопка FaceBook Статус:"
|
166 |
|
167 |
+
#: facebook-button-plugin.php:337
|
168 |
msgid "Before"
|
169 |
msgstr "Перш ніж"
|
170 |
|
171 |
+
#: facebook-button-plugin.php:338
|
172 |
msgid "After"
|
173 |
msgstr "Після того як"
|
174 |
|
175 |
+
#: facebook-button-plugin.php:339
|
176 |
msgid "Before and After"
|
177 |
msgstr "До і після"
|
178 |
|
179 |
+
#: facebook-button-plugin.php:340
|
180 |
msgid "Shortcode"
|
181 |
msgstr "Шорткода"
|
182 |
|
183 |
+
#: facebook-button-plugin.php:342
|
184 |
#, fuzzy
|
185 |
msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
|
186 |
msgstr "Якщо ви хочете додати кнопку FaceBook на ваш сайт, просто скопіювати і помістити цей короткий на ваш пост або сторінку:"
|
187 |
|
188 |
+
#: facebook-button-plugin.php:347
|
189 |
#, fuzzy
|
190 |
msgid "Facebook Button language:"
|
191 |
msgstr "Кнопка FaceBook мову:"
|
192 |
|
193 |
+
#: facebook-button-plugin.php:458
|
194 |
#, fuzzy
|
195 |
msgid "Change the language of Facebook Like Button"
|
196 |
msgstr "Виберіть мову для кнопки Like"
|
197 |
|
198 |
+
#: facebook-button-plugin.php:464
|
199 |
msgid "Save Changes"
|
200 |
msgstr "Зберегти зміни"
|
201 |
|
202 |
+
#: facebook-button-plugin.php:584
|
203 |
msgid "FAQ"
|
204 |
msgstr "Часті питання"
|
205 |
|
206 |
+
#: facebook-button-plugin.php:585
|
207 |
msgid "Support"
|
208 |
msgstr "Підтримка"
|
209 |
|
210 |
+
#, fuzzy
|
211 |
+
#~ msgid ""
|
212 |
+
#~ "If you have any questions, please contact us via plugin@bestwebsoft.com "
|
213 |
+
#~ "or fill out the contact form on our website"
|
214 |
+
#~ msgstr ""
|
215 |
+
#~ "Якщо у Вас виникли питання, будь ласка, зв'яжіться з нами через "
|
216 |
+
#~ "plugin@bestwebsoft.com або заповнити контактну форму на нашому сайті"
|
217 |
#~ msgid "Options saved."
|
218 |
#~ msgstr "Налаштування збережені."
|
219 |
#~ msgid "Install Now"
|
220 |
#~ msgstr "Установить сейчас"
|
|
|
|
|
221 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10
|
|
4 |
Tags: Facebook, Facebook Button, Like, Like button, Share, Share button, Facebook like, Facebook like button, Facebook button like, Button like, Facebook share, Facebook share button, Facebook button share
|
5 |
Requires at least: 2.9
|
6 |
Tested up to: 3.5.1
|
7 |
-
Stable tag: 2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -15,7 +15,7 @@ Add Facebook button to your WordPress website.
|
|
15 |
Facebook Like Button Plugin allows you to add a Follow button the easiest way.
|
16 |
|
17 |
<a href="http://wordpress.org/extend/plugins/facebook-button-plugin/faq/" target="_blank">FAQ</a>
|
18 |
-
<a href="http://bestwebsoft.com
|
19 |
|
20 |
= Features =
|
21 |
|
@@ -35,7 +35,7 @@ Facebook Like Button Plugin allows you to add a Follow button the easiest way.
|
|
35 |
* Turkish (tr_TR) (thanks to Can Atasever, www.candanblog.com)
|
36 |
* Ukrainian (uk) (thanks to Cmd Soft, www.cmd-soft.com)
|
37 |
|
38 |
-
If you create your own language pack or update the existing one, you can send <a href="http://codex.wordpress.org/Translating_WordPress" target="_blank">the text in PO and MO files</a> for <a href="http://bestwebsoft.com
|
39 |
|
40 |
= Technical support =
|
41 |
|
@@ -55,11 +55,11 @@ We can fix some things for free for the users who provide translation of our plu
|
|
55 |
|
56 |
= I cannot see the Facebook Button icon in the post after the plugin installation =
|
57 |
|
58 |
-
|
59 |
|
60 |
= How can I deactivate the plugin? =
|
61 |
|
62 |
-
|
63 |
|
64 |
= After clicking the Facebook Button icon I see the Facebook Home page instead of the necessary account page =
|
65 |
|
@@ -68,7 +68,7 @@ We can fix some things for free for the users who provide translation of our plu
|
|
68 |
|
69 |
= How to adjust Facebook Button position on the page =
|
70 |
|
71 |
-
|
72 |
|
73 |
= How to change a Facebook Button icon =
|
74 |
|
@@ -90,6 +90,10 @@ We can fix some things for free for the users who provide translation of our plu
|
|
90 |
|
91 |
== Changelog ==
|
92 |
|
|
|
|
|
|
|
|
|
93 |
= V2.19 - 17.04.2013 =
|
94 |
* NEW : The English language is updated in the plugin.
|
95 |
|
@@ -164,6 +168,9 @@ We can fix some things for free for the users who provide translation of our plu
|
|
164 |
|
165 |
== Upgrade Notice ==
|
166 |
|
|
|
|
|
|
|
167 |
= V2.19 =
|
168 |
The English language is updated in the plugin.
|
169 |
|
4 |
Tags: Facebook, Facebook Button, Like, Like button, Share, Share button, Facebook like, Facebook like button, Facebook button like, Button like, Facebook share, Facebook share button, Facebook button share
|
5 |
Requires at least: 2.9
|
6 |
Tested up to: 3.5.1
|
7 |
+
Stable tag: 2.20
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
15 |
Facebook Like Button Plugin allows you to add a Follow button the easiest way.
|
16 |
|
17 |
<a href="http://wordpress.org/extend/plugins/facebook-button-plugin/faq/" target="_blank">FAQ</a>
|
18 |
+
<a href="http://support.bestwebsoft.com" target="_blank">Support</a>
|
19 |
|
20 |
= Features =
|
21 |
|
35 |
* Turkish (tr_TR) (thanks to Can Atasever, www.candanblog.com)
|
36 |
* Ukrainian (uk) (thanks to Cmd Soft, www.cmd-soft.com)
|
37 |
|
38 |
+
If you create your own language pack or update the existing one, you can send <a href="http://codex.wordpress.org/Translating_WordPress" target="_blank">the text in PO and MO files</a> for <a href="http://support.bestwebsoft.com" target="_blank">BWS</a> and we'll add it to the plugin. You can download the latest version of the program for work with PO and MO files <a href="http://www.poedit.net/download.php" target="_blank">Poedit</a>.
|
39 |
|
40 |
= Technical support =
|
41 |
|
55 |
|
56 |
= I cannot see the Facebook Button icon in the post after the plugin installation =
|
57 |
|
58 |
+
In WordPress admin panel go to "Plugins", find "Facebook Button Plugin" and click "Activate".
|
59 |
|
60 |
= How can I deactivate the plugin? =
|
61 |
|
62 |
+
In WordPress admin panel go to "Plugins", find the Facebook Button Plugin and click "Deactivate".
|
63 |
|
64 |
= After clicking the Facebook Button icon I see the Facebook Home page instead of the necessary account page =
|
65 |
|
68 |
|
69 |
= How to adjust Facebook Button position on the page =
|
70 |
|
71 |
+
In WordPress admin panel go to "Settings", find the Facebook Button Plugin settings page and choose one of the listed positions: Before, After, Before and After or Shortcode. Then click "Update Changes".
|
72 |
|
73 |
= How to change a Facebook Button icon =
|
74 |
|
90 |
|
91 |
== Changelog ==
|
92 |
|
93 |
+
= V2.20 - 27.05.2013 =
|
94 |
+
* Bugfix : The error related to creation the path to the Facebook button image is fixed.
|
95 |
+
* Update : BWS plugins section is updated.
|
96 |
+
|
97 |
= V2.19 - 17.04.2013 =
|
98 |
* NEW : The English language is updated in the plugin.
|
99 |
|
168 |
|
169 |
== Upgrade Notice ==
|
170 |
|
171 |
+
= V2.20 =
|
172 |
+
The error related to creation the path to the Facebook button image is fixed. BWS plugins section is updated.
|
173 |
+
|
174 |
= V2.19 =
|
175 |
The English language is updated in the plugin.
|
176 |
|