Facebook Button by BestWebSoft - Version 2.42

Version Description

  • 24.08.2015 =
  • Update : We added buttons displaying for the excerpt.
  • Update : We updated all functionality for wordpress 4.3.
Download this release

Release Info

Developer bestwebsoft
Plugin Icon 128x128 Facebook Button by BestWebSoft
Version 2.42
Comparing to
See all releases

Code changes from version 2.41 to 2.42

bws_menu/bws_functions.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * General functions for BestWebSoft plugins
4
- * Version: 1.1.0
5
  */
6
  if ( ! function_exists ( 'bws_add_general_menu' ) ) {
7
  function bws_add_general_menu( $base ) {
@@ -243,7 +243,17 @@ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
243
  $url = 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/downloads/?bws_first_download=' . $bws_license_plugin . '&bws_license_key=' . $bws_license_key . '&download_from=5';
244
  $uploadDir = wp_upload_dir();
245
  $zip_name = explode( '/', $bws_license_plugin );
246
- $received_content = file_get_contents( $url );
 
 
 
 
 
 
 
 
 
 
247
  if ( ! $received_content ) {
248
  $result['error'] = __( "Failed to download the zip archive. Please, upload the plugin manually", 'bestwebsoft' );
249
  } else {
1
  <?php
2
  /*
3
  * General functions for BestWebSoft plugins
4
+ * Version: 1.1.1
5
  */
6
  if ( ! function_exists ( 'bws_add_general_menu' ) ) {
7
  function bws_add_general_menu( $base ) {
243
  $url = 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/downloads/?bws_first_download=' . $bws_license_plugin . '&bws_license_key=' . $bws_license_key . '&download_from=5';
244
  $uploadDir = wp_upload_dir();
245
  $zip_name = explode( '/', $bws_license_plugin );
246
+
247
+ if ( !function_exists( 'curl_init' ) ) {
248
+ $received_content = file_get_contents( $url );
249
+ } else {
250
+ $ch = curl_init();
251
+ curl_setopt( $ch, CURLOPT_URL, $url );
252
+ curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );
253
+ $received_content = curl_exec( $ch );
254
+ curl_close( $ch );
255
+ }
256
+
257
  if ( ! $received_content ) {
258
  $result['error'] = __( "Failed to download the zip archive. Please, upload the plugin manually", 'bestwebsoft' );
259
  } else {
bws_menu/bws_menu.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
- * Version: 1.6.6
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
@@ -89,12 +89,15 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
89
  'pro_settings' => 'admin.php?page=gallery-plugin-pro.php'
90
  ),
91
  'adsense-plugin/adsense-plugin.php'=> array(
92
- 'name' => 'Google AdSense by BestWebSoft',
93
  'description' => 'Allows Google AdSense implementation to your website.',
94
  'link' => 'http://bestwebsoft.com/products/google-adsense/?k=60e3979921e354feb0347e88e7d7b73d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
95
  'download' => 'http://bestwebsoft.com/products/google-adsense/download/?k=60e3979921e354feb0347e88e7d7b73d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
96
  'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Adsense+Plugin+bestwebsoft&plugin-search-input=Search+Plugins',
97
- 'settings' => 'admin.php?page=adsense-plugin.php'
 
 
 
98
  ),
99
  'custom-search-plugin/custom-search-plugin.php'=> array(
100
  'name' => 'Custom Search',
@@ -116,7 +119,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
116
  'settings' => 'admin.php?page=quotes-and-tips.php'
117
  ),
118
  'google-sitemap-plugin/google-sitemap-plugin.php'=> array(
119
- 'name' => 'Google Sitemap by BestWebSoft',
120
  'description' => 'Allows you to add sitemap file to Google Webmaster Tools.',
121
  'link' => 'http://bestwebsoft.com/products/google-sitemap/?k=5202b2f5ce2cf85daee5e5f79a51d806&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
122
  'download' => 'http://bestwebsoft.com/products/google-sitemap/download/?k=5202b2f5ce2cf85daee5e5f79a51d806&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
@@ -146,7 +149,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
146
  'settings' => 'admin.php?page=custom_fields_search.php'
147
  ),
148
  'google-one/google-plus-one.php' => array(
149
- 'name' => 'Google +1 by BestWebSoft',
150
  'description' => 'Allows you to see how many times your page has been liked on Google Search Engine as well as who has liked the article.',
151
  'link' => 'http://bestwebsoft.com/products/google-plus-one/?k=ce7a88837f0a857b3a2bb142f470853c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
152
  'download' => 'http://bestwebsoft.com/products/google-plus-one/download/?k=ce7a88837f0a857b3a2bb142f470853c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
@@ -165,7 +168,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
165
  'settings' => 'admin.php?page=related-posts-plugin.php'
166
  ),
167
  'contact-form-to-db/contact_form_to_db.php' => array(
168
- 'name' => 'Contact Form To DB',
169
  'description' => 'Allows you to manage the messages that have been sent from your site.',
170
  'link' => 'http://bestwebsoft.com/products/contact-form-to-db/?k=ba3747d317c2692e4136ca096a8989d6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
171
  'download' => 'http://bestwebsoft.com/products/contact-form-to-db/download/?k=ba3747d317c2692e4136ca096a8989d6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
@@ -195,7 +198,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
195
  'settings' => 'admin.php?page=donate.php'
196
  ),
197
  'post-to-csv/post-to-csv.php' => array(
198
- 'name' => 'Post To CSV',
199
  'description' => 'The plugin allows to export posts of any types to a csv file.',
200
  'link' => 'http://bestwebsoft.com/products/post-to-csv/?k=653aa55518ae17409293a7a894268b8f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
201
  'download' => 'http://bestwebsoft.com/products/post-to-csv/download/?k=653aa55518ae17409293a7a894268b8f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
@@ -203,7 +206,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
203
  'settings' => 'admin.php?page=post-to-csv.php'
204
  ),
205
  'google-shortlink/google-shortlink.php' => array(
206
- 'name' => 'Google Shortlink by BestWebSoft',
207
  'description' => 'Allows you to get short links from goo.gl servise without leaving your site.',
208
  'link' => 'http://bestwebsoft.com/products/google-shortlink/?k=afcf3eaed021bbbbeea1090e16bc22db&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
209
  'download' => 'http://bestwebsoft.com/products/google-shortlink/download/?k=afcf3eaed021bbbbeea1090e16bc22db&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
@@ -222,7 +225,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
222
  'pro_settings' => 'admin.php?page=htaccess-pro.php'
223
  ),
224
  'google-captcha/google-captcha.php' => array(
225
- 'name' => 'Google Captcha (reCAPTCHA) by BestWebSoft',
226
  'description' => 'Plugin intended to prove that the visitor is a human being and not a spam robot.',
227
  'link' => 'http://bestwebsoft.com/products/google-captcha/?k=7b59fbe542acf950b29f3e020d5ad735&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
228
  'download' => 'http://bestwebsoft.com/products/google-captcha/download/?k=7b59fbe542acf950b29f3e020d5ad735&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
@@ -263,7 +266,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
263
  'pro_settings' => ''
264
  ),
265
  'bws-google-maps/bws-google-maps.php' => array(
266
- 'name' => 'Google Maps by BestWebSoft',
267
  'description' => 'Easy to set up and insert Google Maps to your website.',
268
  'link' => 'http://bestwebsoft.com/products/bws-google-maps/?k=d8fac412d7359ebaa4ff53b46572f9f7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
269
  'download' => 'http://bestwebsoft.com/products/bws-google-maps/download/?k=d8fac412d7359ebaa4ff53b46572f9f7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
@@ -274,7 +277,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
274
  'pro_settings' => 'admin.php?page=bws-google-maps-pro.php'
275
  ),
276
  'bws-google-analytics/bws-google-analytics.php' => array(
277
- 'name' => 'Google Analytics by BestWebSoft',
278
  'description' => 'Allows you to retrieve basic stats from Google Analytics account and add the tracking code to your blog.',
279
  'link' => 'http://bestwebsoft.com/products/bws-google-analytics/?k=261c74cad753fb279cdf5a5db63fbd43&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
280
  'download' => 'http://bestwebsoft.com/products/bws-google-analytics/download/?k=261c74cad753fb279cdf5a5db63fbd43&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
@@ -285,7 +288,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
285
  'pro_settings' => 'admin.php?page=bws-google-analytics-pro.php'
286
  ),
287
  'db-manager/db-manager.php' => array(
288
- 'name' => 'DB manager',
289
  'description' => 'Allows you to download the latest version of PhpMyadmin and Dumper and manage your site.',
290
  'link' => 'http://bestwebsoft.com/products/db-manager/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
291
  'download' => 'http://bestwebsoft.com/products/db-manager/download/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
@@ -323,7 +326,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
323
  'pro_settings' => 'admin.php?page=limit-attempts-pro.php'
324
  ),
325
  'job-board/job-board.php' => array(
326
- 'name' => 'Job board',
327
  'description' => 'Allows to create a job-board page on your site.',
328
  'link' => 'http://bestwebsoft.com/products/job-board/?k=b0c504c9ce6edd6692e04222af3fed6f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
329
  'download' => 'http://bestwebsoft.com/products/job-board/download/?k=b0c504c9ce6edd6692e04222af3fed6f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
@@ -336,10 +339,13 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
336
  'link' => 'http://bestwebsoft.com/products/multilanguage/?k=7d68c7bfec2486dc350c67fff57ad433&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
337
  'download' => 'http://bestwebsoft.com/products/multilanguage/download/?k=7d68c7bfec2486dc350c67fff57ad433&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
338
  'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Multilanguage+BestWebSoft&plugin-search-input=Search+Plugins',
339
- 'settings' => 'admin.php?page=mltlngg_settings'
 
 
 
340
  ),
341
  'bws-popular-posts/bws-popular-posts.php' => array(
342
- 'name' => 'Popular Posts by BestWebSoft',
343
  'description' => 'This plugin will help you can display the most popular posts on your blog in the widget.',
344
  'link' => 'http://bestwebsoft.com/products/popular-posts/?k=4d529f116d2b7f7df3a78018c383f975&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
345
  'download' => 'http://bestwebsoft.com/products/popular-posts/download/?k=4d529f116d2b7f7df3a78018c383f975&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
@@ -347,7 +353,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
347
  'settings' => 'admin.php?page=popular-posts.php'
348
  ),
349
  'bws-testimonials/bws-testimonials.php' => array(
350
- 'name' => 'Testimonials by BestWebSoft',
351
  'description' => 'Allows creating and displaying a Testimonial on your website.',
352
  'link' => 'http://bestwebsoft.com/products/testimonials/?k=3fe4bb89dc901c98e43a113e08f8db73&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
353
  'download' => 'http://bestwebsoft.com/products/testimonials/download/?k=3fe4bb89dc901c98e43a113e08f8db73&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
@@ -355,7 +361,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
355
  'settings' => 'admin.php?page=testimonials.php'
356
  ),
357
  'bws-featured-posts/bws-featured-posts.php' => array(
358
- 'name' => 'Featured Posts by BestWebSoft',
359
  'description' => 'Displays featured posts randomly on any website page.',
360
  'link' => 'http://bestwebsoft.com/products/featured-posts/?k=f0afb31185ba7c7d6d598528d69f6d97&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
361
  'download' => 'http://bestwebsoft.com/products/featured-posts/download/?k=f0afb31185ba7c7d6d598528d69f6d97&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
@@ -379,7 +385,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
379
  'settings' => 'admin.php?page=re-attacher.php'
380
  ),
381
  'bws-smtp/bws-smtp.php' => array(
382
- 'name' => 'SMTP by BesWebSoft',
383
  'description' => 'This plugin introduces an easy way to configure sending email messages via SMTP.',
384
  'link' => 'http://bestwebsoft.com/products/bws-smtp/?k=0546419f962704429ad2d9b88567752f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
385
  'download' => 'http://bestwebsoft.com/products/bws-smtp/download/?k=0546419f962704429ad2d9b88567752f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
@@ -433,7 +439,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
433
  'settings' => 'admin.php?page=pagination.php'
434
  ),
435
  'visitors-online/visitors-online.php' => array(
436
- 'name' => 'Visitors online',
437
  'description' => 'See how many users, guests and bots are online at the website.',
438
  'link' => 'http://bestwebsoft.com/products/visitors-online/?k=93c28013a4f830671b3bba9502ed5177&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
439
  'download' => 'http://bestwebsoft.com/products/visitors-online/download/?k=93c28013a4f830671b3bba9502ed5177&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
@@ -442,7 +448,15 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
442
  'pro_version' => 'visitors-online-pro/visitors-online-pro.php',
443
  'purchase' => 'http://bestwebsoft.com/products/visitors-online/buy/?k=f9a746075ff8a0a6cb192cb46526afd2&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
444
  'pro_settings' => 'admin.php?page=visitors-online-pro.php'
445
- )
 
 
 
 
 
 
 
 
446
  );
447
 
448
  $all_plugins = get_plugins();
@@ -970,6 +984,8 @@ if ( ! function_exists( 'bws_get_banner_array' ) ) {
970
  function bws_get_banner_array() {
971
  global $bstwbsftwppdtplgns_banner_array;
972
  $bstwbsftwppdtplgns_banner_array = array(
 
 
973
  array( 'vstrsnln_hide_banner_on_plugin_page', 'visitors-online/visitors-online.php', '0.2' ),
974
  array( 'cstmsrch_hide_banner_on_plugin_page', 'custom-search-plugin/custom-search-plugin.php', '1.28' ),
975
  array( 'prtfl_hide_banner_on_plugin_page', 'portfolio/portfolio.php', '2.33' ),
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
+ * Version: 1.6.9
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
89
  'pro_settings' => 'admin.php?page=gallery-plugin-pro.php'
90
  ),
91
  'adsense-plugin/adsense-plugin.php'=> array(
92
+ 'name' => 'Google AdSense',
93
  'description' => 'Allows Google AdSense implementation to your website.',
94
  'link' => 'http://bestwebsoft.com/products/google-adsense/?k=60e3979921e354feb0347e88e7d7b73d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
95
  'download' => 'http://bestwebsoft.com/products/google-adsense/download/?k=60e3979921e354feb0347e88e7d7b73d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
96
  'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Adsense+Plugin+bestwebsoft&plugin-search-input=Search+Plugins',
97
+ 'settings' => 'admin.php?page=adsense-plugin.php',
98
+ 'pro_version' => 'adsense-pro/adsense-pro.php',
99
+ 'purchase' => 'http://bestwebsoft.com/products/google-adsense/buy/?k=c23889b293d62aa1ad2c96513405f0e1&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
100
+ 'pro_settings' => 'admin.php?page=adsense-pro.php'
101
  ),
102
  'custom-search-plugin/custom-search-plugin.php'=> array(
103
  'name' => 'Custom Search',
119
  'settings' => 'admin.php?page=quotes-and-tips.php'
120
  ),
121
  'google-sitemap-plugin/google-sitemap-plugin.php'=> array(
122
+ 'name' => 'Google Sitemap',
123
  'description' => 'Allows you to add sitemap file to Google Webmaster Tools.',
124
  'link' => 'http://bestwebsoft.com/products/google-sitemap/?k=5202b2f5ce2cf85daee5e5f79a51d806&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
125
  'download' => 'http://bestwebsoft.com/products/google-sitemap/download/?k=5202b2f5ce2cf85daee5e5f79a51d806&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
149
  'settings' => 'admin.php?page=custom_fields_search.php'
150
  ),
151
  'google-one/google-plus-one.php' => array(
152
+ 'name' => 'Google +1',
153
  'description' => 'Allows you to see how many times your page has been liked on Google Search Engine as well as who has liked the article.',
154
  'link' => 'http://bestwebsoft.com/products/google-plus-one/?k=ce7a88837f0a857b3a2bb142f470853c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
155
  'download' => 'http://bestwebsoft.com/products/google-plus-one/download/?k=ce7a88837f0a857b3a2bb142f470853c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
168
  'settings' => 'admin.php?page=related-posts-plugin.php'
169
  ),
170
  'contact-form-to-db/contact_form_to_db.php' => array(
171
+ 'name' => 'Contact Form to DB',
172
  'description' => 'Allows you to manage the messages that have been sent from your site.',
173
  'link' => 'http://bestwebsoft.com/products/contact-form-to-db/?k=ba3747d317c2692e4136ca096a8989d6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
174
  'download' => 'http://bestwebsoft.com/products/contact-form-to-db/download/?k=ba3747d317c2692e4136ca096a8989d6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
198
  'settings' => 'admin.php?page=donate.php'
199
  ),
200
  'post-to-csv/post-to-csv.php' => array(
201
+ 'name' => 'Post to CSV',
202
  'description' => 'The plugin allows to export posts of any types to a csv file.',
203
  'link' => 'http://bestwebsoft.com/products/post-to-csv/?k=653aa55518ae17409293a7a894268b8f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
204
  'download' => 'http://bestwebsoft.com/products/post-to-csv/download/?k=653aa55518ae17409293a7a894268b8f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
206
  'settings' => 'admin.php?page=post-to-csv.php'
207
  ),
208
  'google-shortlink/google-shortlink.php' => array(
209
+ 'name' => 'Google Shortlink',
210
  'description' => 'Allows you to get short links from goo.gl servise without leaving your site.',
211
  'link' => 'http://bestwebsoft.com/products/google-shortlink/?k=afcf3eaed021bbbbeea1090e16bc22db&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
212
  'download' => 'http://bestwebsoft.com/products/google-shortlink/download/?k=afcf3eaed021bbbbeea1090e16bc22db&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
225
  'pro_settings' => 'admin.php?page=htaccess-pro.php'
226
  ),
227
  'google-captcha/google-captcha.php' => array(
228
+ 'name' => 'Google Captcha (reCAPTCHA)',
229
  'description' => 'Plugin intended to prove that the visitor is a human being and not a spam robot.',
230
  'link' => 'http://bestwebsoft.com/products/google-captcha/?k=7b59fbe542acf950b29f3e020d5ad735&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
231
  'download' => 'http://bestwebsoft.com/products/google-captcha/download/?k=7b59fbe542acf950b29f3e020d5ad735&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
266
  'pro_settings' => ''
267
  ),
268
  'bws-google-maps/bws-google-maps.php' => array(
269
+ 'name' => 'Google Maps',
270
  'description' => 'Easy to set up and insert Google Maps to your website.',
271
  'link' => 'http://bestwebsoft.com/products/bws-google-maps/?k=d8fac412d7359ebaa4ff53b46572f9f7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
272
  'download' => 'http://bestwebsoft.com/products/bws-google-maps/download/?k=d8fac412d7359ebaa4ff53b46572f9f7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
277
  'pro_settings' => 'admin.php?page=bws-google-maps-pro.php'
278
  ),
279
  'bws-google-analytics/bws-google-analytics.php' => array(
280
+ 'name' => 'Google Analytics',
281
  'description' => 'Allows you to retrieve basic stats from Google Analytics account and add the tracking code to your blog.',
282
  'link' => 'http://bestwebsoft.com/products/bws-google-analytics/?k=261c74cad753fb279cdf5a5db63fbd43&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
283
  'download' => 'http://bestwebsoft.com/products/bws-google-analytics/download/?k=261c74cad753fb279cdf5a5db63fbd43&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
288
  'pro_settings' => 'admin.php?page=bws-google-analytics-pro.php'
289
  ),
290
  'db-manager/db-manager.php' => array(
291
+ 'name' => 'DB Manager',
292
  'description' => 'Allows you to download the latest version of PhpMyadmin and Dumper and manage your site.',
293
  'link' => 'http://bestwebsoft.com/products/db-manager/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
294
  'download' => 'http://bestwebsoft.com/products/db-manager/download/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
326
  'pro_settings' => 'admin.php?page=limit-attempts-pro.php'
327
  ),
328
  'job-board/job-board.php' => array(
329
+ 'name' => 'Job Board',
330
  'description' => 'Allows to create a job-board page on your site.',
331
  'link' => 'http://bestwebsoft.com/products/job-board/?k=b0c504c9ce6edd6692e04222af3fed6f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
332
  'download' => 'http://bestwebsoft.com/products/job-board/download/?k=b0c504c9ce6edd6692e04222af3fed6f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
339
  'link' => 'http://bestwebsoft.com/products/multilanguage/?k=7d68c7bfec2486dc350c67fff57ad433&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
340
  'download' => 'http://bestwebsoft.com/products/multilanguage/download/?k=7d68c7bfec2486dc350c67fff57ad433&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
341
  'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Multilanguage+BestWebSoft&plugin-search-input=Search+Plugins',
342
+ 'settings' => 'admin.php?page=mltlngg_settings',
343
+ 'pro_version' => 'multilanguage-pro/multilanguage-pro.php',
344
+ 'purchase' => 'http://bestwebsoft.com/products/multilanguage/buy/?k=2d1121cd9a5ced583fc29eefd51bdf57&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
345
+ 'pro_settings' => 'admin.php?page=mltlnggpr_settings'
346
  ),
347
  'bws-popular-posts/bws-popular-posts.php' => array(
348
+ 'name' => 'Popular Posts',
349
  'description' => 'This plugin will help you can display the most popular posts on your blog in the widget.',
350
  'link' => 'http://bestwebsoft.com/products/popular-posts/?k=4d529f116d2b7f7df3a78018c383f975&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
351
  'download' => 'http://bestwebsoft.com/products/popular-posts/download/?k=4d529f116d2b7f7df3a78018c383f975&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
353
  'settings' => 'admin.php?page=popular-posts.php'
354
  ),
355
  'bws-testimonials/bws-testimonials.php' => array(
356
+ 'name' => 'Testimonials',
357
  'description' => 'Allows creating and displaying a Testimonial on your website.',
358
  'link' => 'http://bestwebsoft.com/products/testimonials/?k=3fe4bb89dc901c98e43a113e08f8db73&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
359
  'download' => 'http://bestwebsoft.com/products/testimonials/download/?k=3fe4bb89dc901c98e43a113e08f8db73&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
361
  'settings' => 'admin.php?page=testimonials.php'
362
  ),
363
  'bws-featured-posts/bws-featured-posts.php' => array(
364
+ 'name' => 'Featured Posts',
365
  'description' => 'Displays featured posts randomly on any website page.',
366
  'link' => 'http://bestwebsoft.com/products/featured-posts/?k=f0afb31185ba7c7d6d598528d69f6d97&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
367
  'download' => 'http://bestwebsoft.com/products/featured-posts/download/?k=f0afb31185ba7c7d6d598528d69f6d97&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
385
  'settings' => 'admin.php?page=re-attacher.php'
386
  ),
387
  'bws-smtp/bws-smtp.php' => array(
388
+ 'name' => 'SMTP',
389
  'description' => 'This plugin introduces an easy way to configure sending email messages via SMTP.',
390
  'link' => 'http://bestwebsoft.com/products/bws-smtp/?k=0546419f962704429ad2d9b88567752f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
391
  'download' => 'http://bestwebsoft.com/products/bws-smtp/download/?k=0546419f962704429ad2d9b88567752f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
439
  'settings' => 'admin.php?page=pagination.php'
440
  ),
441
  'visitors-online/visitors-online.php' => array(
442
+ 'name' => 'Visitors Online',
443
  'description' => 'See how many users, guests and bots are online at the website.',
444
  'link' => 'http://bestwebsoft.com/products/visitors-online/?k=93c28013a4f830671b3bba9502ed5177&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
445
  'download' => 'http://bestwebsoft.com/products/visitors-online/download/?k=93c28013a4f830671b3bba9502ed5177&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
448
  'pro_version' => 'visitors-online-pro/visitors-online-pro.php',
449
  'purchase' => 'http://bestwebsoft.com/products/visitors-online/buy/?k=f9a746075ff8a0a6cb192cb46526afd2&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
450
  'pro_settings' => 'admin.php?page=visitors-online-pro.php'
451
+ ),
452
+ 'profile-extra-fields/profile-extra-fields.php' => array(
453
+ 'name' => 'Profile Extra Fields',
454
+ 'description' => "Add additional fields on the user's profile page",
455
+ 'link' => 'http://bestwebsoft.com/products/profile-extra-fields/?k=fe3b6c3dbc80bd4b1cf9a27a2f339820&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
456
+ 'download' => 'http://bestwebsoft.com/products/profile-extra-fields/download/?k=fe3b6c3dbc80bd4b1cf9a27a2f339820&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
457
+ 'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Profile+Extra+Fields+BestWebSoft&plugin-search-input=Search+Plugins',
458
+ 'settings' => 'admin.php?page=profile-extra-fields.php'
459
+ )
460
  );
461
 
462
  $all_plugins = get_plugins();
984
  function bws_get_banner_array() {
985
  global $bstwbsftwppdtplgns_banner_array;
986
  $bstwbsftwppdtplgns_banner_array = array(
987
+ array( 'mltlngg_hide_banner_on_plugin_page', 'multilanguage/multilanguage.php', '1.1.1' ),
988
+ array( 'adsns_hide_banner_on_plugin_page', 'adsense-plugin/adsense-plugin.php', '1.36' ),
989
  array( 'vstrsnln_hide_banner_on_plugin_page', 'visitors-online/visitors-online.php', '0.2' ),
990
  array( 'cstmsrch_hide_banner_on_plugin_page', 'custom-search-plugin/custom-search-plugin.php', '1.28' ),
991
  array( 'prtfl_hide_banner_on_plugin_page', 'portfolio/portfolio.php', '2.33' ),
bws_menu/css/general_style.css CHANGED
@@ -69,6 +69,7 @@ td.bws_pro_version_tooltip {
69
  margin: 5px 0;
70
  border: 1px solid #AAAAAA;
71
  max-width: 800px;
 
72
  }
73
  .bws_table_bg {
74
  background: #f8e268 url("../images/pattern.png");
@@ -165,7 +166,7 @@ a.bws_plugin_pro_version {
165
  float: none;
166
  }
167
  /* #### Mobile Phones Portrait or Landscape #### */
168
- @media screen and (max-device-width: 640px) {
169
  .bws_pro_version_tooltip {
170
  padding: 10px;
171
  text-align: center;
@@ -252,7 +253,7 @@ div.bws_banner_on_plugin_page .icon {
252
  cursor: pointer;
253
  }
254
  /* #### Mobile Phones Portrait or Landscape #### */
255
- @media screen and (max-device-width: 640px) {
256
  .bws_banner_on_plugin_page .text,
257
  .bws_banner_on_plugin_page .icon,
258
  .bws_banner_on_plugin_page .button_div,
69
  margin: 5px 0;
70
  border: 1px solid #AAAAAA;
71
  max-width: 800px;
72
+ overflow: hidden;
73
  }
74
  .bws_table_bg {
75
  background: #f8e268 url("../images/pattern.png");
166
  float: none;
167
  }
168
  /* #### Mobile Phones Portrait or Landscape #### */
169
+ @media screen and (max-device-width: 768px) {
170
  .bws_pro_version_tooltip {
171
  padding: 10px;
172
  text-align: center;
253
  cursor: pointer;
254
  }
255
  /* #### Mobile Phones Portrait or Landscape #### */
256
+ @media screen and (max-device-width: 768px) {
257
  .bws_banner_on_plugin_page .text,
258
  .bws_banner_on_plugin_page .icon,
259
  .bws_banner_on_plugin_page .button_div,
bws_menu/css/general_style_wp_before_3.8.css CHANGED
@@ -71,6 +71,7 @@ td.bws_pro_version_tooltip {
71
  margin: 5px 0;
72
  border: 1px solid #AAAAAA;
73
  max-width: 800px;
 
74
  }
75
  .bws_table_bg {
76
  background: #f8e268 url("../images/pattern.png");
@@ -167,7 +168,7 @@ a.bws_plugin_pro_version {
167
  float: none;
168
  }
169
  /* #### Mobile Phones Portrait or Landscape #### */
170
- @media screen and (max-device-width: 640px) {
171
  .bws_pro_version_tooltip {
172
  padding: 10px;
173
  text-align: center;
@@ -259,7 +260,7 @@ div.bws_banner_on_plugin_page .icon {
259
  cursor: pointer;
260
  }
261
  /* #### Mobile Phones Portrait or Landscape #### */
262
- @media screen and (max-device-width: 640px) {
263
  .bws_banner_on_plugin_page .text,
264
  .bws_banner_on_plugin_page .icon,
265
  .bws_banner_on_plugin_page .button_div,
71
  margin: 5px 0;
72
  border: 1px solid #AAAAAA;
73
  max-width: 800px;
74
+ overflow: hidden;
75
  }
76
  .bws_table_bg {
77
  background: #f8e268 url("../images/pattern.png");
168
  float: none;
169
  }
170
  /* #### Mobile Phones Portrait or Landscape #### */
171
+ @media screen and (max-device-width: 768px) {
172
  .bws_pro_version_tooltip {
173
  padding: 10px;
174
  text-align: center;
260
  cursor: pointer;
261
  }
262
  /* #### Mobile Phones Portrait or Landscape #### */
263
+ @media screen and (max-device-width: 768px) {
264
  .bws_banner_on_plugin_page .text,
265
  .bws_banner_on_plugin_page .icon,
266
  .bws_banner_on_plugin_page .button_div,
bws_menu/icons/profile-extra-fields.png ADDED
Binary file
facebook-button-plugin.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Facebook Button by BestWebSoft
4
  Plugin URI: http://bestwebsoft.com/products/
5
  Description: Put Facebook Button in to your post.
6
  Author: BestWebSoft
7
- Version: 2.41
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
@@ -50,15 +50,15 @@ if ( ! function_exists( 'fcbkbttn_init' ) ) {
50
  /*## add general functions */
51
  require_once( dirname( __FILE__ ) . '/bws_menu/bws_functions.php' );
52
 
53
- bws_wp_version_check( plugin_basename( __FILE__ ), $fcbkbttn_plugin_info, "3.0" ); /* check compatible with current WP version ##*/
54
 
55
  /* Get options from the database */
56
  if ( ! is_admin() || ( isset( $_GET['page'] ) && ( "facebook-button-plugin.php" == $_GET['page'] || "social-buttons.php" == $_GET['page'] ) ) ) {
57
  /* Get/Register and check settings for plugin */
58
  fcbkbttn_settings();
59
-
60
  $fcbkbttn_lang_codes = array(
61
- "af_ZA" => 'Afrikaans', "ar_AR" => 'العربية', "ay_BO" => 'Aymar aru', "az_AZ" => 'Azərbaycan dili', "be_BY" => 'Беларуская', "bg_BG" => 'Български', "bn_IN" => 'বাংলা', "bs_BA" => 'Bosanski', "ca_ES" => 'Català', "ck_US" => 'Cherokee', "cs_CZ" => 'Čeština', "cy_GB" => 'Cymraeg', "da_DK" => 'Dansk', "de_DE" => 'Deutsch', "el_GR" => 'Ελληνικά', "en_US" => 'English', "en_PI" => 'English (Pirate)', "eo_EO" => 'Esperanto', "es_CL" => 'Español (Chile)', "es_CO" => 'Español (Colombia)', "es_ES" => 'Español (España)', "es_LA" => 'Español', "es_MX" => 'Español (México)', "es_VE" => 'Español (Venezuela)', "et_EE" => 'Eesti', "eu_ES" => 'Euskara', "fa_IR" => 'فارسی', "fb_LT" => 'Leet Speak', "fi_FI" => 'Suomi', "fo_FO" => 'Føroyskt', "fr_CA" => 'Français (Canada)', "fr_FR" => 'Français (France)', "fy_NL" => 'Frysk', "ga_IE" => 'Gaeilge', "gl_ES" => 'Galego', "gn_PY" => "Avañe'ẽ", "gu_IN" => 'ગુજરાતી', "gx_GR" => 'Ἑλληνική ἀρχαία', "he_IL" => 'עברית', "hi_IN" => 'हिन्दी', "hr_HR" => 'Hrvatski', "hu_HU" => 'Magyar', "hy_AM" => 'Հայերեն', "id_ID" => 'Bahasa Indonesia', "is_IS" => 'Íslenska', "it_IT" => 'Italiano', "ja_JP" => '日本語', "jv_ID" => 'Basa Jawa', "ka_GE" => 'ქართული', "kk_KZ" => 'Қазақша', "km_KH" => 'ភាសាខ្មែរ', "kn_IN" => 'ಕನ್ನಡ', "ko_KR" => '한국어', "ku_TR" => 'Kurdî', "la_VA" => 'lingua latina', "li_NL" => 'Limburgs', "lt_LT" => 'Lietuvių', "lv_LV" => 'Latviešu', "mg_MG" => 'Malagasy', "mk_MK" => 'Македонски', "ml_IN" => 'മലയാളം', "mn_MN" => 'Монгол', "mr_IN" => 'मराठी', "ms_MY" => 'Bahasa Melayu', "mt_MT" => 'Malti', "nb_NO" => 'Norsk (bokmål)', "ne_NP" => 'नेपाली', "nl_BE" => 'Nederlands (België)', "nl_NL" => 'Nederlands', "nn_NO" => 'Norsk (nynorsk)', "pa_IN" => 'ਪੰਜਾਬੀ', "pl_PL" => 'Polski', "ps_AF" => 'پښتو', "pt_BR" => 'Português (Brasil)', "pt_PT" => 'Português (Portugal)', "qu_PE" => 'Qhichwa', "rm_CH" => 'Rumantsch', "ro_RO" => 'Română', "ru_RU" => 'Русский', "sa_IN" => 'संस्कृतम्', "se_NO" => 'Davvisámegiella', "sk_SK" => 'Slovenčina', "sl_SI" => 'Slovenščina', "so_SO" => 'Soomaaliga', "sq_AL" => 'Shqip', "sr_RS" => 'Српски', "sv_SE" => 'Svenska', "sw_KE" => 'Kiswahili', "sy_SY" => 'ܐܪܡܝܐ', "ta_IN" => 'தமிழ்', "te_IN" => 'తెలుగు', "tg_TJ" => 'тоҷикӣ', "th_TH" => 'ภาษาไทย', "tl_PH" => 'Filipino', "tl_ST" => 'tlhIngan-Hol', "tr_TR" => 'Türkçe', "tt_RU" => 'Татарча', "uk_UA" => 'Українська', "ur_PK" => 'اردو', "uz_UZ" => "O'zbek", "vi_VN" => 'Tiếng Việt', "yi_DE" => 'ייִדיש', "zh_CN" => '中文(简体)', "zh_HK" => '中文(香港)', "zh_TW" => '中文(台灣)', "zu_ZA" => 'isiZulu'
62
  );
63
  }
64
  }
@@ -273,9 +273,11 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
273
  <tr valign="top">
274
  <th scope="row"><?php _e( 'Display button', 'facebook' ); ?></th>
275
  <td>
276
- <label><input name='fcbkbttn_my_page' type='checkbox' value='1' <?php if ( 1 == $fcbkbttn_options['my_page'] ) echo 'checked="checked "'; ?>/> <?php _e( "My Page", 'facebook' ); ?></label><br />
277
- <label><input name='fcbkbttn_like' type='checkbox' value='1' <?php if ( 1 == $fcbkbttn_options['like'] ) echo 'checked="checked "'; ?>/> <?php _e( "Like", 'facebook' ); ?></label><br />
278
- <label><input name='fcbkbttn_share' type='checkbox' value='1' <?php if ( 1 == $fcbkbttn_options['share'] ) echo 'checked="checked "'; ?>/> <?php _e( "Share", 'facebook' ); ?></label>
 
 
279
  </td>
280
  </tr>
281
  <tr class="fcbkbttn_my_page" <?php if ( 1 != $fcbkbttn_options['my_page'] ) echo 'style="display:none"'; ?>>
@@ -358,9 +360,11 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
358
  <tr valign="top">
359
  <th scope="row"><?php _e( 'Html tag for "Like" button', 'facebook' ); ?></th>
360
  <td>
361
- <label><input name='fcbkbttn_html5' type='radio' value='0' <?php if ( 0 == $fcbkbttn_options['html5'] ) echo 'checked="checked "'; ?> /><?php echo "<code>&lt;fb:like&gt;</code>"; ?></label><br />
362
- <label><input name='fcbkbttn_html5' type='radio' value='1' <?php if ( 1 == $fcbkbttn_options['html5'] ) echo 'checked="checked "'; ?> /><?php echo "<code>&lt;div&gt;</code>"; ?></label>
363
- <span class="bws_info">(<?php _e( "Use this tag to improve validation of your site", 'facebook' ); ?>)</span>
 
 
364
  </td>
365
  </tr>
366
  </table>
@@ -384,12 +388,9 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
384
  </div>
385
  <div class="bws_pro_version_tooltip">
386
  <div class="bws_info">
387
- <?php _e( 'Unlock premium options by upgrading to a PRO version.', 'facebook' ); ?>
388
- <a href="http://bestwebsoft.com/products/facebook-like-button/?k=427287ceae749cbd015b4bba6041c4b8&pn=78&v=<?php echo $fcbkbttn_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Facebook Like Button Pro"><?php _e( 'Learn More', 'facebook' ); ?></a>
389
  </div>
390
- <a class="bws_button" href="http://bestwebsoft.com/products/facebook-like-button/buy/?k=427287ceae749cbd015b4bba6041c4b8&pn=78&v=<?php echo $fcbkbttn_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Facebook Like Button Pro">
391
- <?php _e( 'Go', 'facebook' ); ?> <strong>PRO</strong>
392
- </a>
393
  <div class="clear"></div>
394
  </div>
395
  </div>
@@ -402,7 +403,6 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
402
  </form>
403
  <!-- general -->
404
  <?php bws_form_restore_default_settings( $plugin_basename );
405
- bws_plugin_reviews_block( $fcbkbttn_plugin_info['Name'], 'facebook-button-plugin' );
406
  }
407
  } elseif ( 'extra' == $_GET['action'] ) { ?>
408
  <div class="bws_pro_version_bloc">
@@ -441,18 +441,16 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
441
  </div>
442
  <div class="bws_pro_version_tooltip">
443
  <div class="bws_info">
444
- <?php _e( 'Unlock premium options by upgrading to a PRO version.', 'facebook' ); ?>
445
- <a href="http://bestwebsoft.com/products/facebook-like-button/?k=427287ceae749cbd015b4bba6041c4b8&pn=78&v=<?php echo $fcbkbttn_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Facebook Like Button Pro"><?php _e( 'Learn More', 'facebook' ); ?></a>
446
  </div>
447
- <a class="bws_button" href="http://bestwebsoft.com/products/facebook-like-button/buy/?k=427287ceae749cbd015b4bba6041c4b8&pn=78&v=<?php echo $fcbkbttn_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Facebook Like Button Pro">
448
- <?php _e( 'Go', 'facebook' ); ?> <strong>PRO</strong>
449
- </a>
450
  <div class="clear"></div>
451
  </div>
452
  </div>
453
  <?php } elseif ( 'go_pro' == $_GET['action'] ) {
454
  bws_go_pro_tab( $fcbkbttn_plugin_info, $plugin_basename, 'facebook-button-plugin.php', 'facebook-button-pro.php', 'facebook-button-pro/facebook-button-pro.php', 'facebook-like-button', '427287ceae749cbd015b4bba6041c4b8', '78', isset( $go_pro_result['pro_plugin_is_activated'] ) );
455
- } ?>
 
456
  </div>
457
  <!-- end general -->
458
  <?php }
@@ -514,20 +512,23 @@ if ( ! function_exists( 'fcbkbttn_display_button' ) ) {
514
  if ( ! function_exists( 'fcbkbttn_shortcode' ) ) {
515
  function fcbkbttn_shortcode( $content ) {
516
  global $post, $fcbkbttn_options, $fcbkbttn_locale;
517
- $fcbkbttn_where = $fcbkbttn_options['where'];
518
- $permalink_post = get_permalink( $post->ID );
519
- $button = '<div class="fcbk_share">';
520
- $img = $fcbkbttn_options['fb_img_link'];
521
- $url = $fcbkbttn_options['link'];
522
 
523
  if ( 1 == $fcbkbttn_options['my_page'] ) {
 
 
 
524
  $button .= '<div class="fcbk_button">
525
  <a href="http://www.facebook.com/' . $url . '" target="_blank">
526
  <img src="' . $img . '" alt="Fb-Button" />
527
  </a>
528
  </div>';
529
  }
530
- if ( 1 == $fcbkbttn_options['like'] ) {
531
  $button .= '<div class="fcbk_like">
532
  <div id="fb-root"></div>
533
  <script>(function(d, s, id) {
@@ -550,7 +551,7 @@ if ( ! function_exists( 'fcbkbttn_shortcode' ) ) {
550
  else
551
  $button .= ' share="false"></fb:like></div>';
552
  }
553
- } else if ( 1 != $fcbkbttn_options['like'] && 1 == $fcbkbttn_options['share'] ) {
554
  $button .= '<script>(function(d, s, id) {
555
  var js, fjs = d.getElementsByTagName(s)[0];
556
  if (d.getElementById(id)) return;
@@ -589,16 +590,17 @@ if ( ! function_exists( 'fcbkbttn_meta' ) ) {
589
  if ( ! function_exists( 'fcbkbttn_footer_script' ) ) {
590
  function fcbkbttn_footer_script () {
591
  global $fcbkbttn_options, $fcbkbttn_locale;
592
- if ( ( 1 == $fcbkbttn_options['like'] || 1 == $fcbkbttn_options['share'] ) && 'shortcode' != $fcbkbttn_options['where'] ) {
593
- echo '<div id="fb-root"></div>
594
  <script>(function(d, s, id) {
595
  var js, fjs = d.getElementsByTagName(s)[0];
596
  if (d.getElementById(id)) return;
597
  js = d.createElement(s); js.id = id;
598
- js.src = "//connect.facebook.net/' . $fcbkbttn_locale . '/sdk.js#xfbml=1&appId=1443946719181573&version=v2.0";
599
  fjs.parentNode.insertBefore(js, fjs);
600
- }(document, "script", "facebook-jssdk"));</script>';
601
- }
 
602
  }
603
  }
604
 
@@ -703,7 +705,20 @@ if ( ! function_exists( 'fcbkbttn_delete_options' ) ) {
703
  @rmdir( $fcbkbttn_cstm_mg_folder );
704
  }
705
  }
706
- delete_option( 'fcbk_bttn_plgn_options' );
 
 
 
 
 
 
 
 
 
 
 
 
 
707
  }
708
  }
709
  }
@@ -723,6 +738,7 @@ add_action( 'wp_footer', 'fcbkbttn_footer_script' );
723
  /* Add shortcode and plugin buttons */
724
  add_shortcode( 'fb_button', 'fcbkbttn_shortcode' );
725
  add_filter( 'the_content', 'fcbkbttn_display_button' );
 
726
  /*## Additional links on the plugin page */
727
  add_filter( 'plugin_action_links', 'fcbkbttn_action_links', 10, 2 );
728
  add_filter( 'plugin_row_meta', 'fcbkbttn_links', 10, 2 );
4
  Plugin URI: http://bestwebsoft.com/products/
5
  Description: Put Facebook Button in to your post.
6
  Author: BestWebSoft
7
+ Version: 2.42
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
50
  /*## add general functions */
51
  require_once( dirname( __FILE__ ) . '/bws_menu/bws_functions.php' );
52
 
53
+ bws_wp_version_check( plugin_basename( __FILE__ ), $fcbkbttn_plugin_info, '3.1' ); /* check compatible with current WP version ##*/
54
 
55
  /* Get options from the database */
56
  if ( ! is_admin() || ( isset( $_GET['page'] ) && ( "facebook-button-plugin.php" == $_GET['page'] || "social-buttons.php" == $_GET['page'] ) ) ) {
57
  /* Get/Register and check settings for plugin */
58
  fcbkbttn_settings();
59
+
60
  $fcbkbttn_lang_codes = array(
61
+ "af_ZA" => 'Afrikaans', "ar_AR" => 'العربية', "az_AZ" => 'Azərbaycan dili', "be_BY" => 'Беларуская', "bg_BG" => 'Български', "bn_IN" => 'বাংলা', "bs_BA" => 'Bosanski', "ca_ES" => 'Català', "cs_CZ" => 'Čeština', "cy_GB" => 'Cymraeg', "da_DK" => 'Dansk', "de_DE" => 'Deutsch', "el_GR" => 'Ελληνικά', "en_US" => 'English', "en_PI" => 'English (Pirate)', "eo_EO" => 'Esperanto', "es_CO" => 'Español (Colombia)', "es_ES" => 'Español (España)', "es_LA" => 'Español', "et_EE" => 'Eesti', "eu_ES" => 'Euskara', "fa_IR" => 'فارسی', "fb_LT" => 'Leet Speak', "fi_FI" => 'Suomi', "fo_FO" => 'Føroyskt', "fr_CA" => 'Français (Canada)', "fr_FR" => 'Français (France)', "fy_NL" => 'Frysk', "ga_IE" => 'Gaeilge', "gl_ES" => 'Galego', "gn_PY" => "Avañe'ẽ", "gu_IN" => 'ગુજરાતી', "he_IL" => 'עברית', "hi_IN" => 'हिन्दी', "hr_HR" => 'Hrvatski', "hu_HU" => 'Magyar', "hy_AM" => 'Հայերեն', "id_ID" => 'Bahasa Indonesia', "is_IS" => 'Íslenska', "it_IT" => 'Italiano', "ja_JP" => '日本語', "jv_ID" => 'Basa Jawa', "ka_GE" => 'ქართული', "kk_KZ" => 'Қазақша', "km_KH" => 'ភាសាខ្មែរ', "kn_IN" => 'ಕನ್ನಡ', "ko_KR" => '한국어', "ku_TR" => 'Kurdî', "la_VA" => 'lingua latina', "lt_LT" => 'Lietuvių', "lv_LV" => 'Latviešu', "mk_MK" => 'Македонски', "ml_IN" => 'മലയാളം', "mn_MN" => 'Монгол', "mr_IN" => 'मराठी', "ms_MY" => 'Bahasa Melayu', "nb_NO" => 'Norsk (bokmål)', "ne_NP" => 'नेपाली', "nl_BE" => 'Nederlands (België)', "nl_NL" => 'Nederlands', "nn_NO" => 'Norsk (nynorsk)', "pa_IN" => 'ਪੰਜਾਬੀ', "pl_PL" => 'Polski', "ps_AF" => 'پښتو', "pt_BR" => 'Português (Brasil)', "pt_PT" => 'Português (Portugal)', "ro_RO" => 'Română', "ru_RU" => 'Русский', "sk_SK" => 'Slovenčina', "sl_SI" => 'Slovenščina', "sq_AL" => 'Shqip', "sr_RS" => 'Српски', "sv_SE" => 'Svenska', "sw_KE" => 'Kiswahili', "ta_IN" => 'தமிழ்', "te_IN" => 'తెలుగు', "tg_TJ" => 'тоҷикӣ', "th_TH" => 'ภาษาไทย', "tl_PH" => 'Filipino', "tr_TR" => 'Türkçe', "uk_UA" => 'Українська', "ur_PK" => 'اردو', "uz_UZ" => "O'zbek", "vi_VN" => 'Tiếng Việt', "zh_CN" => '中文(简体)', "zh_HK" => '中文(香港)', "zh_TW" => '中文(台灣)'
62
  );
63
  }
64
  }
273
  <tr valign="top">
274
  <th scope="row"><?php _e( 'Display button', 'facebook' ); ?></th>
275
  <td>
276
+ <fieldset>
277
+ <label><input name='fcbkbttn_my_page' type='checkbox' value='1' <?php if ( 1 == $fcbkbttn_options['my_page'] ) echo 'checked="checked "'; ?>/> <?php _e( "My Page", 'facebook' ); ?></label><br />
278
+ <label><input name='fcbkbttn_like' type='checkbox' value='1' <?php if ( 1 == $fcbkbttn_options['like'] ) echo 'checked="checked "'; ?>/> <?php _e( "Like", 'facebook' ); ?></label><br />
279
+ <label><input name='fcbkbttn_share' type='checkbox' value='1' <?php if ( 1 == $fcbkbttn_options['share'] ) echo 'checked="checked "'; ?>/> <?php _e( "Share", 'facebook' ); ?></label>
280
+ </fieldset>
281
  </td>
282
  </tr>
283
  <tr class="fcbkbttn_my_page" <?php if ( 1 != $fcbkbttn_options['my_page'] ) echo 'style="display:none"'; ?>>
360
  <tr valign="top">
361
  <th scope="row"><?php _e( 'Html tag for "Like" button', 'facebook' ); ?></th>
362
  <td>
363
+ <fieldset>
364
+ <label><input name='fcbkbttn_html5' type='radio' value='0' <?php if ( 0 == $fcbkbttn_options['html5'] ) echo 'checked="checked "'; ?> /><?php echo "<code>&lt;fb:like&gt;</code>"; ?></label><br />
365
+ <label><input name='fcbkbttn_html5' type='radio' value='1' <?php if ( 1 == $fcbkbttn_options['html5'] ) echo 'checked="checked "'; ?> /><?php echo "<code>&lt;div&gt;</code>"; ?></label>
366
+ <span class="bws_info">(<?php _e( "Use this tag to improve validation of your site", 'facebook' ); ?>)</span>
367
+ </fieldset>
368
  </td>
369
  </tr>
370
  </table>
388
  </div>
389
  <div class="bws_pro_version_tooltip">
390
  <div class="bws_info">
391
+ <?php _e( 'Unlock premium options by upgrading to Pro version', 'facebook' ); ?>
 
392
  </div>
393
+ <a class="bws_button" href="http://bestwebsoft.com/products/facebook-like-button/?k=427287ceae749cbd015b4bba6041c4b8&pn=78&v=<?php echo $fcbkbttn_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Facebook Like Button Pro"><?php _e( 'Learn More', 'facebook' ); ?></a>
 
 
394
  <div class="clear"></div>
395
  </div>
396
  </div>
403
  </form>
404
  <!-- general -->
405
  <?php bws_form_restore_default_settings( $plugin_basename );
 
406
  }
407
  } elseif ( 'extra' == $_GET['action'] ) { ?>
408
  <div class="bws_pro_version_bloc">
441
  </div>
442
  <div class="bws_pro_version_tooltip">
443
  <div class="bws_info">
444
+ <?php _e( 'Unlock premium options by upgrading to Pro version', 'facebook' ); ?>
 
445
  </div>
446
+ <a class="bws_button" href="http://bestwebsoft.com/products/facebook-like-button/?k=427287ceae749cbd015b4bba6041c4b8&pn=78&v=<?php echo $fcbkbttn_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Facebook Like Button Pro"><?php _e( 'Learn More', 'facebook' ); ?></a>
 
 
447
  <div class="clear"></div>
448
  </div>
449
  </div>
450
  <?php } elseif ( 'go_pro' == $_GET['action'] ) {
451
  bws_go_pro_tab( $fcbkbttn_plugin_info, $plugin_basename, 'facebook-button-plugin.php', 'facebook-button-pro.php', 'facebook-button-pro/facebook-button-pro.php', 'facebook-like-button', '427287ceae749cbd015b4bba6041c4b8', '78', isset( $go_pro_result['pro_plugin_is_activated'] ) );
452
+ }
453
+ bws_plugin_reviews_block( $fcbkbttn_plugin_info['Name'], 'facebook-button-plugin' ); ?>
454
  </div>
455
  <!-- end general -->
456
  <?php }
512
  if ( ! function_exists( 'fcbkbttn_shortcode' ) ) {
513
  function fcbkbttn_shortcode( $content ) {
514
  global $post, $fcbkbttn_options, $fcbkbttn_locale;
515
+
516
+ if ( isset( $post->ID ) )
517
+ $permalink_post = get_permalink( $post->ID );
518
+
519
+ $button = '<div class="fcbk_share">';
520
 
521
  if ( 1 == $fcbkbttn_options['my_page'] ) {
522
+ $url = $fcbkbttn_options['link'];
523
+ $img = $fcbkbttn_options['fb_img_link'];
524
+
525
  $button .= '<div class="fcbk_button">
526
  <a href="http://www.facebook.com/' . $url . '" target="_blank">
527
  <img src="' . $img . '" alt="Fb-Button" />
528
  </a>
529
  </div>';
530
  }
531
+ if ( 1 == $fcbkbttn_options['like'] && isset( $permalink_post ) ) {
532
  $button .= '<div class="fcbk_like">
533
  <div id="fb-root"></div>
534
  <script>(function(d, s, id) {
551
  else
552
  $button .= ' share="false"></fb:like></div>';
553
  }
554
+ } else if ( 1 != $fcbkbttn_options['like'] && 1 == $fcbkbttn_options['share'] && isset( $permalink_post ) ) {
555
  $button .= '<script>(function(d, s, id) {
556
  var js, fjs = d.getElementsByTagName(s)[0];
557
  if (d.getElementById(id)) return;
590
  if ( ! function_exists( 'fcbkbttn_footer_script' ) ) {
591
  function fcbkbttn_footer_script () {
592
  global $fcbkbttn_options, $fcbkbttn_locale;
593
+ if ( ( 1 == $fcbkbttn_options['like'] || 1 == $fcbkbttn_options['share'] ) && 'shortcode' != $fcbkbttn_options['where'] ) { ?>
594
+ <div id="fb-root"></div>
595
  <script>(function(d, s, id) {
596
  var js, fjs = d.getElementsByTagName(s)[0];
597
  if (d.getElementById(id)) return;
598
  js = d.createElement(s); js.id = id;
599
+ js.src = "//connect.facebook.net/<?php echo $fcbkbttn_locale; ?>/sdk.js#xfbml=1&appId=1443946719181573&version=v2.0";
600
  fjs.parentNode.insertBefore(js, fjs);
601
+ }(document, 'script', 'facebook-jssdk'));
602
+ </script>
603
+ <?php }
604
  }
605
  }
606
 
705
  @rmdir( $fcbkbttn_cstm_mg_folder );
706
  }
707
  }
708
+
709
+ if ( function_exists( 'is_multisite' ) && is_multisite() ) {
710
+ global $wpdb;
711
+ $old_blog = $wpdb->blogid;
712
+ /* Get all blog ids */
713
+ $blogids = $wpdb->get_col( "SELECT `blog_id` FROM $wpdb->blogs" );
714
+ foreach ( $blogids as $blog_id ) {
715
+ switch_to_blog( $blog_id );
716
+ delete_option( 'fcbk_bttn_plgn_options' );
717
+ }
718
+ switch_to_blog( $old_blog );
719
+ } else {
720
+ delete_option( 'fcbk_bttn_plgn_options' );
721
+ }
722
  }
723
  }
724
  }
738
  /* Add shortcode and plugin buttons */
739
  add_shortcode( 'fb_button', 'fcbkbttn_shortcode' );
740
  add_filter( 'the_content', 'fcbkbttn_display_button' );
741
+ add_filter( 'the_excerpt', 'fcbkbttn_display_button' );
742
  /*## Additional links on the plugin page */
743
  add_filter( 'plugin_action_links', 'fcbkbttn_action_links', 10, 2 );
744
  add_filter( 'plugin_row_meta', 'fcbkbttn_links', 10, 2 );
languages/facebook-fi_FI.mo CHANGED
Binary file
languages/facebook-fi_FI.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: 2015-07-15 16:00+0300\n"
6
- "PO-Revision-Date: 2015-07-15 16:00+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Juhani Honkanen <juhani.honkanen@dnainternet.net>\n"
9
  "Language: fi_FI\n"
@@ -55,8 +55,8 @@ msgid "All plugin settings were restored."
55
  msgstr ""
56
 
57
  #: facebook-button-plugin.php:252
58
- #: facebook-button-plugin.php:653
59
- #: facebook-button-plugin.php:667
60
  msgid "Settings"
61
  msgstr "Asetukset"
62
 
@@ -65,7 +65,7 @@ msgid "Extra settings"
65
  msgstr "Lisää asetuksia"
66
 
67
  #: facebook-button-plugin.php:254
68
- #: facebook-button-plugin.php:668
69
  msgid "FAQ"
70
  msgstr "FAQ"
71
 
@@ -91,135 +91,131 @@ msgstr "Sinun Facebook ID:si tai käyttäjänimesi:"
91
  msgid "Display button"
92
  msgstr "Näytä nappi:"
93
 
94
- #: facebook-button-plugin.php:276
95
  msgid "My Page"
96
  msgstr "Minun sivuni"
97
 
98
- #: facebook-button-plugin.php:277
99
  msgid "Like"
100
  msgstr "Tykkää"
101
 
102
- #: facebook-button-plugin.php:278
103
  msgid "Share"
104
  msgstr "Jaa"
105
 
106
- #: facebook-button-plugin.php:283
107
  msgid "\"My page\" button image"
108
  msgstr ""
109
 
110
- #: facebook-button-plugin.php:288
111
  msgid "Standard Facebook image"
112
  msgstr "Standardi Facebook kuva"
113
 
114
- #: facebook-button-plugin.php:289
115
  msgid "Custom Facebook image"
116
  msgstr "Mukautettu Fecabook kuva"
117
 
118
- #: facebook-button-plugin.php:292
119
  msgid "To use custom image you need to setup permissions to upload directory of your site"
120
  msgstr "Käyttääksesi mukautettua, kuva pitää voida ladata hakemistoosi"
121
 
122
- #: facebook-button-plugin.php:299
123
  #, fuzzy
124
  msgid "Current image"
125
  msgstr "Nykyinen kuva:"
126
 
127
- #: facebook-button-plugin.php:307
128
  msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
129
  msgstr "Kuvan ominaisuudet: max leveys 100px; max korkeus 40px; max koko 32Kb; kuvan tyypit:\"jpg\", \"jpeg\", \"png\"."
130
 
131
- #: facebook-button-plugin.php:312
132
  #, fuzzy
133
  msgid "Facebook buttons position"
134
  msgstr "Facebook napin paikka:"
135
 
136
- #: facebook-button-plugin.php:316
137
  msgid "Before"
138
  msgstr "Ennen"
139
 
140
- #: facebook-button-plugin.php:317
141
  msgid "After"
142
  msgstr "Jälkeen"
143
 
144
- #: facebook-button-plugin.php:318
145
  msgid "Before and After"
146
  msgstr "Ennen ja Jälkeen"
147
 
148
- #: facebook-button-plugin.php:319
149
  msgid "Shortcode"
150
  msgstr "Lyhytkoodi"
151
 
152
- #: facebook-button-plugin.php:321
153
  msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
154
  msgstr "Mikäli haluat lisätä Facebook napin sivullesi, kopioi ja liitä tämä lyhytkoodi artikkeliisi tai sivullesi:"
155
 
156
- #: facebook-button-plugin.php:326
157
  #, fuzzy
158
  msgid "Facebook buttons language"
159
  msgstr "Facebook Napin kieli:"
160
 
161
- #: facebook-button-plugin.php:338
162
  msgid "Change the language of Facebook Like Button"
163
  msgstr "Vaihda Facebook napin kieli"
164
 
165
- #: facebook-button-plugin.php:343
166
- #: facebook-button-plugin.php:346
167
- #: facebook-button-plugin.php:351
168
  msgid "Use the current site language"
169
  msgstr ""
170
 
171
- #: facebook-button-plugin.php:343
172
- #: facebook-button-plugin.php:347
173
- #: facebook-button-plugin.php:352
174
  msgid "Using"
175
  msgstr ""
176
 
177
- #: facebook-button-plugin.php:347
178
  msgid "Activate"
179
  msgstr ""
180
 
181
- #: facebook-button-plugin.php:352
182
  msgid "Download"
183
  msgstr ""
184
 
185
- #: facebook-button-plugin.php:359
186
  #, fuzzy
187
  msgid "Html tag for \"Like\" button"
188
  msgstr "HTML tagi Tykkää Napille:"
189
 
190
- #: facebook-button-plugin.php:363
191
  msgid "Use this tag to improve validation of your site"
192
  msgstr "Käytä tätä tagia parantamaan sivusi näkyvyyttä"
193
 
194
- #: facebook-button-plugin.php:373
195
  msgid "\"Like\" for an entire site on every page:"
196
  msgstr "\"Like\" koko sivustolle ja kaikille sivuille:"
197
 
198
- #: facebook-button-plugin.php:375
199
  msgid "Notice: \"Like for the entire site\" option does not create an extra button. This option merely allows your users to like the entire website when this option is enabled, or a single post when this option is disabled, when clicking the regular \"Like\" button."
200
  msgstr "Huomautus: \"Tykkää koko sivustosta\" tämä valinta ei tee ylimääräistä nappia. Tämä valinnan avulla käyttäjät tykkäävät koko sivustosta. Mikäli ei ole valittu, niin käyttäjä tykkää vain yhdestä sivusta klikatessaan \"Tykkää\" nappia."
201
 
202
- #: facebook-button-plugin.php:380
203
  #: facebook-button-plugin.php:437
204
  msgid "If you upgrade to Pro version all your settings will be saved."
205
  msgstr "Mikäli päivität Pro versioon, kaikki asetuksesi tallennetaan."
206
 
207
- #: facebook-button-plugin.php:387
208
  #: facebook-button-plugin.php:444
209
- msgid "Unlock premium options by upgrading to a PRO version."
 
210
  msgstr "Ota käyttöön premium valinnat päivittämällä PRO versioon."
211
 
212
- #: facebook-button-plugin.php:388
213
- #: facebook-button-plugin.php:445
214
  msgid "Learn More"
215
  msgstr "Lue Lisää"
216
 
217
- #: facebook-button-plugin.php:391
218
- #: facebook-button-plugin.php:448
219
- msgid "Go"
220
- msgstr "Mene"
221
-
222
- #: facebook-button-plugin.php:399
223
  #: facebook-button-plugin.php:432
224
  msgid "Save Changes"
225
  msgstr "Tallenna muutokset"
@@ -240,10 +236,13 @@ msgstr "Esimerkki sivuston sivuhakemistosta"
240
  msgid "Example of site pages' tree"
241
  msgstr "Esimerkki sivun sivuhakemistosta"
242
 
243
- #: facebook-button-plugin.php:669
244
  msgid "Support"
245
  msgstr "Tuki"
246
 
 
 
 
247
  #, fuzzy
248
  #~ msgid "Yes, restore all settings"
249
  #~ msgstr "Lisää asetuksia"
2
  msgstr ""
3
  "Project-Id-Version: facebook\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-08-24 11:35+0300\n"
6
+ "PO-Revision-Date: 2015-08-24 11:35+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Juhani Honkanen <juhani.honkanen@dnainternet.net>\n"
9
  "Language: fi_FI\n"
55
  msgstr ""
56
 
57
  #: facebook-button-plugin.php:252
58
+ #: facebook-button-plugin.php:655
59
+ #: facebook-button-plugin.php:669
60
  msgid "Settings"
61
  msgstr "Asetukset"
62
 
65
  msgstr "Lisää asetuksia"
66
 
67
  #: facebook-button-plugin.php:254
68
+ #: facebook-button-plugin.php:670
69
  msgid "FAQ"
70
  msgstr "FAQ"
71
 
91
  msgid "Display button"
92
  msgstr "Näytä nappi:"
93
 
94
+ #: facebook-button-plugin.php:277
95
  msgid "My Page"
96
  msgstr "Minun sivuni"
97
 
98
+ #: facebook-button-plugin.php:278
99
  msgid "Like"
100
  msgstr "Tykkää"
101
 
102
+ #: facebook-button-plugin.php:279
103
  msgid "Share"
104
  msgstr "Jaa"
105
 
106
+ #: facebook-button-plugin.php:285
107
  msgid "\"My page\" button image"
108
  msgstr ""
109
 
110
+ #: facebook-button-plugin.php:290
111
  msgid "Standard Facebook image"
112
  msgstr "Standardi Facebook kuva"
113
 
114
+ #: facebook-button-plugin.php:291
115
  msgid "Custom Facebook image"
116
  msgstr "Mukautettu Fecabook kuva"
117
 
118
+ #: facebook-button-plugin.php:294
119
  msgid "To use custom image you need to setup permissions to upload directory of your site"
120
  msgstr "Käyttääksesi mukautettua, kuva pitää voida ladata hakemistoosi"
121
 
122
+ #: facebook-button-plugin.php:301
123
  #, fuzzy
124
  msgid "Current image"
125
  msgstr "Nykyinen kuva:"
126
 
127
+ #: facebook-button-plugin.php:309
128
  msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
129
  msgstr "Kuvan ominaisuudet: max leveys 100px; max korkeus 40px; max koko 32Kb; kuvan tyypit:\"jpg\", \"jpeg\", \"png\"."
130
 
131
+ #: facebook-button-plugin.php:314
132
  #, fuzzy
133
  msgid "Facebook buttons position"
134
  msgstr "Facebook napin paikka:"
135
 
136
+ #: facebook-button-plugin.php:318
137
  msgid "Before"
138
  msgstr "Ennen"
139
 
140
+ #: facebook-button-plugin.php:319
141
  msgid "After"
142
  msgstr "Jälkeen"
143
 
144
+ #: facebook-button-plugin.php:320
145
  msgid "Before and After"
146
  msgstr "Ennen ja Jälkeen"
147
 
148
+ #: facebook-button-plugin.php:321
149
  msgid "Shortcode"
150
  msgstr "Lyhytkoodi"
151
 
152
+ #: facebook-button-plugin.php:323
153
  msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
154
  msgstr "Mikäli haluat lisätä Facebook napin sivullesi, kopioi ja liitä tämä lyhytkoodi artikkeliisi tai sivullesi:"
155
 
156
+ #: facebook-button-plugin.php:328
157
  #, fuzzy
158
  msgid "Facebook buttons language"
159
  msgstr "Facebook Napin kieli:"
160
 
161
+ #: facebook-button-plugin.php:340
162
  msgid "Change the language of Facebook Like Button"
163
  msgstr "Vaihda Facebook napin kieli"
164
 
165
+ #: facebook-button-plugin.php:345
166
+ #: facebook-button-plugin.php:348
167
+ #: facebook-button-plugin.php:353
168
  msgid "Use the current site language"
169
  msgstr ""
170
 
171
+ #: facebook-button-plugin.php:345
172
+ #: facebook-button-plugin.php:349
173
+ #: facebook-button-plugin.php:354
174
  msgid "Using"
175
  msgstr ""
176
 
177
+ #: facebook-button-plugin.php:349
178
  msgid "Activate"
179
  msgstr ""
180
 
181
+ #: facebook-button-plugin.php:354
182
  msgid "Download"
183
  msgstr ""
184
 
185
+ #: facebook-button-plugin.php:361
186
  #, fuzzy
187
  msgid "Html tag for \"Like\" button"
188
  msgstr "HTML tagi Tykkää Napille:"
189
 
190
+ #: facebook-button-plugin.php:366
191
  msgid "Use this tag to improve validation of your site"
192
  msgstr "Käytä tätä tagia parantamaan sivusi näkyvyyttä"
193
 
194
+ #: facebook-button-plugin.php:377
195
  msgid "\"Like\" for an entire site on every page:"
196
  msgstr "\"Like\" koko sivustolle ja kaikille sivuille:"
197
 
198
+ #: facebook-button-plugin.php:379
199
  msgid "Notice: \"Like for the entire site\" option does not create an extra button. This option merely allows your users to like the entire website when this option is enabled, or a single post when this option is disabled, when clicking the regular \"Like\" button."
200
  msgstr "Huomautus: \"Tykkää koko sivustosta\" tämä valinta ei tee ylimääräistä nappia. Tämä valinnan avulla käyttäjät tykkäävät koko sivustosta. Mikäli ei ole valittu, niin käyttäjä tykkää vain yhdestä sivusta klikatessaan \"Tykkää\" nappia."
201
 
202
+ #: facebook-button-plugin.php:384
203
  #: facebook-button-plugin.php:437
204
  msgid "If you upgrade to Pro version all your settings will be saved."
205
  msgstr "Mikäli päivität Pro versioon, kaikki asetuksesi tallennetaan."
206
 
207
+ #: facebook-button-plugin.php:391
208
  #: facebook-button-plugin.php:444
209
+ #, fuzzy
210
+ msgid "Unlock premium options by upgrading to Pro version"
211
  msgstr "Ota käyttöön premium valinnat päivittämällä PRO versioon."
212
 
213
+ #: facebook-button-plugin.php:393
214
+ #: facebook-button-plugin.php:446
215
  msgid "Learn More"
216
  msgstr "Lue Lisää"
217
 
218
+ #: facebook-button-plugin.php:400
 
 
 
 
 
219
  #: facebook-button-plugin.php:432
220
  msgid "Save Changes"
221
  msgstr "Tallenna muutokset"
236
  msgid "Example of site pages' tree"
237
  msgstr "Esimerkki sivun sivuhakemistosta"
238
 
239
+ #: facebook-button-plugin.php:671
240
  msgid "Support"
241
  msgstr "Tuki"
242
 
243
+ #~ msgid "Go"
244
+ #~ msgstr "Mene"
245
+
246
  #, fuzzy
247
  #~ msgid "Yes, restore all settings"
248
  #~ msgstr "Lisää asetuksia"
languages/facebook-fr_FR.mo CHANGED
Binary file
languages/facebook-fr_FR.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: 2015-07-15 16:01+0300\n"
6
- "PO-Revision-Date: 2015-07-15 16:01+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: http://wptheme.fr/\n"
9
  "Language: fr\n"
@@ -55,8 +55,8 @@ msgid "All plugin settings were restored."
55
  msgstr ""
56
 
57
  #: facebook-button-plugin.php:252
58
- #: facebook-button-plugin.php:653
59
- #: facebook-button-plugin.php:667
60
  msgid "Settings"
61
  msgstr "Réglages"
62
 
@@ -66,7 +66,7 @@ msgid "Extra settings"
66
  msgstr "Réglages"
67
 
68
  #: facebook-button-plugin.php:254
69
- #: facebook-button-plugin.php:668
70
  msgid "FAQ"
71
  msgstr "FAQ"
72
 
@@ -92,134 +92,129 @@ msgstr "Votre identifiant Facebook"
92
  msgid "Display button"
93
  msgstr "Afficher le bouton"
94
 
95
- #: facebook-button-plugin.php:276
96
  msgid "My Page"
97
  msgstr "Ma page"
98
 
99
- #: facebook-button-plugin.php:277
100
  msgid "Like"
101
  msgstr "Like"
102
 
103
- #: facebook-button-plugin.php:278
104
  msgid "Share"
105
  msgstr ""
106
 
107
- #: facebook-button-plugin.php:283
108
  msgid "\"My page\" button image"
109
  msgstr ""
110
 
111
- #: facebook-button-plugin.php:288
112
  msgid "Standard Facebook image"
113
  msgstr "Image Facebook par défaut"
114
 
115
- #: facebook-button-plugin.php:289
116
  msgid "Custom Facebook image"
117
  msgstr "Image Facebook personnalisée"
118
 
119
- #: facebook-button-plugin.php:292
120
  msgid "To use custom image you need to setup permissions to upload directory of your site"
121
  msgstr ""
122
 
123
- #: facebook-button-plugin.php:299
124
  #, fuzzy
125
  msgid "Current image"
126
  msgstr "Image actuelle"
127
 
128
- #: facebook-button-plugin.php:307
129
  msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
130
  msgstr "Propriétés de l'image : largeur max:100px; hauteur max: 40px; poids max : 32kb; type d'image :\"jpg\", \"jpeg\", \"png\"."
131
 
132
- #: facebook-button-plugin.php:312
133
  #, fuzzy
134
  msgid "Facebook buttons position"
135
  msgstr "Position du bouton Facebook"
136
 
137
- #: facebook-button-plugin.php:316
138
  msgid "Before"
139
  msgstr "Avant"
140
 
141
- #: facebook-button-plugin.php:317
142
  msgid "After"
143
  msgstr "Après"
144
 
145
- #: facebook-button-plugin.php:318
146
  msgid "Before and After"
147
  msgstr "Avant et après"
148
 
149
- #: facebook-button-plugin.php:319
150
  msgid "Shortcode"
151
  msgstr "Shortcode"
152
 
153
- #: facebook-button-plugin.php:321
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 "Si vous souhaitez ajouter un bouton Facebook sur votre site internet, copier-collez ce Shortcodedans votre page ou votre article"
156
 
157
- #: facebook-button-plugin.php:326
158
  #, fuzzy
159
  msgid "Facebook buttons language"
160
  msgstr "Langue du bouton Facebook"
161
 
162
- #: facebook-button-plugin.php:338
163
  msgid "Change the language of Facebook Like Button"
164
  msgstr "Changer la langue du bouton Facebook"
165
 
166
- #: facebook-button-plugin.php:343
167
- #: facebook-button-plugin.php:346
168
- #: facebook-button-plugin.php:351
169
  msgid "Use the current site language"
170
  msgstr ""
171
 
172
- #: facebook-button-plugin.php:343
173
- #: facebook-button-plugin.php:347
174
- #: facebook-button-plugin.php:352
175
  msgid "Using"
176
  msgstr ""
177
 
178
- #: facebook-button-plugin.php:347
179
  msgid "Activate"
180
  msgstr ""
181
 
182
- #: facebook-button-plugin.php:352
183
  msgid "Download"
184
  msgstr ""
185
 
186
- #: facebook-button-plugin.php:359
187
  msgid "Html tag for \"Like\" button"
188
  msgstr ""
189
 
190
- #: facebook-button-plugin.php:363
191
  msgid "Use this tag to improve validation of your site"
192
  msgstr ""
193
 
194
- #: facebook-button-plugin.php:373
195
  msgid "\"Like\" for an entire site on every page:"
196
  msgstr ""
197
 
198
- #: facebook-button-plugin.php:375
199
  msgid "Notice: \"Like for the entire site\" option does not create an extra button. This option merely allows your users to like the entire website when this option is enabled, or a single post when this option is disabled, when clicking the regular \"Like\" button."
200
  msgstr ""
201
 
202
- #: facebook-button-plugin.php:380
203
  #: facebook-button-plugin.php:437
204
  msgid "If you upgrade to Pro version all your settings will be saved."
205
  msgstr ""
206
 
207
- #: facebook-button-plugin.php:387
208
  #: facebook-button-plugin.php:444
209
- msgid "Unlock premium options by upgrading to a PRO version."
210
  msgstr ""
211
 
212
- #: facebook-button-plugin.php:388
213
- #: facebook-button-plugin.php:445
214
  msgid "Learn More"
215
  msgstr ""
216
 
217
- #: facebook-button-plugin.php:391
218
- #: facebook-button-plugin.php:448
219
- msgid "Go"
220
- msgstr ""
221
-
222
- #: facebook-button-plugin.php:399
223
  #: facebook-button-plugin.php:432
224
  msgid "Save Changes"
225
  msgstr "Sauvegarder les changements"
@@ -240,7 +235,7 @@ msgstr ""
240
  msgid "Example of site pages' tree"
241
  msgstr ""
242
 
243
- #: facebook-button-plugin.php:669
244
  msgid "Support"
245
  msgstr "Support"
246
 
2
  msgstr ""
3
  "Project-Id-Version: facebook\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-08-24 11:35+0300\n"
6
+ "PO-Revision-Date: 2015-08-24 11:35+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: http://wptheme.fr/\n"
9
  "Language: fr\n"
55
  msgstr ""
56
 
57
  #: facebook-button-plugin.php:252
58
+ #: facebook-button-plugin.php:655
59
+ #: facebook-button-plugin.php:669
60
  msgid "Settings"
61
  msgstr "Réglages"
62
 
66
  msgstr "Réglages"
67
 
68
  #: facebook-button-plugin.php:254
69
+ #: facebook-button-plugin.php:670
70
  msgid "FAQ"
71
  msgstr "FAQ"
72
 
92
  msgid "Display button"
93
  msgstr "Afficher le bouton"
94
 
95
+ #: facebook-button-plugin.php:277
96
  msgid "My Page"
97
  msgstr "Ma page"
98
 
99
+ #: facebook-button-plugin.php:278
100
  msgid "Like"
101
  msgstr "Like"
102
 
103
+ #: facebook-button-plugin.php:279
104
  msgid "Share"
105
  msgstr ""
106
 
107
+ #: facebook-button-plugin.php:285
108
  msgid "\"My page\" button image"
109
  msgstr ""
110
 
111
+ #: facebook-button-plugin.php:290
112
  msgid "Standard Facebook image"
113
  msgstr "Image Facebook par défaut"
114
 
115
+ #: facebook-button-plugin.php:291
116
  msgid "Custom Facebook image"
117
  msgstr "Image Facebook personnalisée"
118
 
119
+ #: facebook-button-plugin.php:294
120
  msgid "To use custom image you need to setup permissions to upload directory of your site"
121
  msgstr ""
122
 
123
+ #: facebook-button-plugin.php:301
124
  #, fuzzy
125
  msgid "Current image"
126
  msgstr "Image actuelle"
127
 
128
+ #: facebook-button-plugin.php:309
129
  msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
130
  msgstr "Propriétés de l'image : largeur max:100px; hauteur max: 40px; poids max : 32kb; type d'image :\"jpg\", \"jpeg\", \"png\"."
131
 
132
+ #: facebook-button-plugin.php:314
133
  #, fuzzy
134
  msgid "Facebook buttons position"
135
  msgstr "Position du bouton Facebook"
136
 
137
+ #: facebook-button-plugin.php:318
138
  msgid "Before"
139
  msgstr "Avant"
140
 
141
+ #: facebook-button-plugin.php:319
142
  msgid "After"
143
  msgstr "Après"
144
 
145
+ #: facebook-button-plugin.php:320
146
  msgid "Before and After"
147
  msgstr "Avant et après"
148
 
149
+ #: facebook-button-plugin.php:321
150
  msgid "Shortcode"
151
  msgstr "Shortcode"
152
 
153
+ #: facebook-button-plugin.php:323
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 "Si vous souhaitez ajouter un bouton Facebook sur votre site internet, copier-collez ce Shortcodedans votre page ou votre article"
156
 
157
+ #: facebook-button-plugin.php:328
158
  #, fuzzy
159
  msgid "Facebook buttons language"
160
  msgstr "Langue du bouton Facebook"
161
 
162
+ #: facebook-button-plugin.php:340
163
  msgid "Change the language of Facebook Like Button"
164
  msgstr "Changer la langue du bouton Facebook"
165
 
166
+ #: facebook-button-plugin.php:345
167
+ #: facebook-button-plugin.php:348
168
+ #: facebook-button-plugin.php:353
169
  msgid "Use the current site language"
170
  msgstr ""
171
 
172
+ #: facebook-button-plugin.php:345
173
+ #: facebook-button-plugin.php:349
174
+ #: facebook-button-plugin.php:354
175
  msgid "Using"
176
  msgstr ""
177
 
178
+ #: facebook-button-plugin.php:349
179
  msgid "Activate"
180
  msgstr ""
181
 
182
+ #: facebook-button-plugin.php:354
183
  msgid "Download"
184
  msgstr ""
185
 
186
+ #: facebook-button-plugin.php:361
187
  msgid "Html tag for \"Like\" button"
188
  msgstr ""
189
 
190
+ #: facebook-button-plugin.php:366
191
  msgid "Use this tag to improve validation of your site"
192
  msgstr ""
193
 
194
+ #: facebook-button-plugin.php:377
195
  msgid "\"Like\" for an entire site on every page:"
196
  msgstr ""
197
 
198
+ #: facebook-button-plugin.php:379
199
  msgid "Notice: \"Like for the entire site\" option does not create an extra button. This option merely allows your users to like the entire website when this option is enabled, or a single post when this option is disabled, when clicking the regular \"Like\" button."
200
  msgstr ""
201
 
202
+ #: facebook-button-plugin.php:384
203
  #: facebook-button-plugin.php:437
204
  msgid "If you upgrade to Pro version all your settings will be saved."
205
  msgstr ""
206
 
207
+ #: facebook-button-plugin.php:391
208
  #: facebook-button-plugin.php:444
209
+ msgid "Unlock premium options by upgrading to Pro version"
210
  msgstr ""
211
 
212
+ #: facebook-button-plugin.php:393
213
+ #: facebook-button-plugin.php:446
214
  msgid "Learn More"
215
  msgstr ""
216
 
217
+ #: facebook-button-plugin.php:400
 
 
 
 
 
218
  #: facebook-button-plugin.php:432
219
  msgid "Save Changes"
220
  msgstr "Sauvegarder les changements"
235
  msgid "Example of site pages' tree"
236
  msgstr ""
237
 
238
+ #: facebook-button-plugin.php:671
239
  msgid "Support"
240
  msgstr "Support"
241
 
languages/facebook-id_ID.mo CHANGED
Binary file
languages/facebook-id_ID.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: 2015-07-15 16:01+0300\n"
6
- "PO-Revision-Date: 2015-07-15 16:01+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: nasrulhaq <nasrulhaq81@gmail.com>\n"
9
  "Language: es_ES\n"
@@ -54,8 +54,8 @@ msgid "All plugin settings were restored."
54
  msgstr ""
55
 
56
  #: facebook-button-plugin.php:252
57
- #: facebook-button-plugin.php:653
58
- #: facebook-button-plugin.php:667
59
  msgid "Settings"
60
  msgstr "Pengaturan"
61
 
@@ -65,7 +65,7 @@ msgid "Extra settings"
65
  msgstr "Pengaturan"
66
 
67
  #: facebook-button-plugin.php:254
68
- #: facebook-button-plugin.php:668
69
  msgid "FAQ"
70
  msgstr "SSS (Sık Sorulan Sorular)"
71
 
@@ -91,135 +91,130 @@ msgstr " ID Facebook:"
91
  msgid "Display button"
92
  msgstr "Tampilan tombol:"
93
 
94
- #: facebook-button-plugin.php:276
95
  msgid "My Page"
96
  msgstr "Halamanku"
97
 
98
- #: facebook-button-plugin.php:277
99
  msgid "Like"
100
  msgstr "Suka"
101
 
102
- #: facebook-button-plugin.php:278
103
  msgid "Share"
104
  msgstr ""
105
 
106
- #: facebook-button-plugin.php:283
107
  msgid "\"My page\" button image"
108
  msgstr ""
109
 
110
- #: facebook-button-plugin.php:288
111
  msgid "Standard Facebook image"
112
  msgstr "Standar gambar Facebook "
113
 
114
- #: facebook-button-plugin.php:289
115
  msgid "Custom Facebook image"
116
  msgstr "Kustom Gambar Facebook "
117
 
118
- #: facebook-button-plugin.php:292
119
  msgid "To use custom image you need to setup permissions to upload directory of your site"
120
  msgstr ""
121
 
122
- #: facebook-button-plugin.php:299
123
  #, fuzzy
124
  msgid "Current image"
125
  msgstr "Gambar tertentu:"
126
 
127
- #: facebook-button-plugin.php:307
128
  msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
129
  msgstr "properti gambar: lebar gambar maks:100px; panjang gambar maks:40px; ukuran gambar maks:32Kb; tipe gambar:\"jpg\",\"jpeg\", \"png\"."
130
 
131
- #: facebook-button-plugin.php:312
132
  #, fuzzy
133
  msgid "Facebook buttons position"
134
  msgstr "Posisi Tombol Facebook"
135
 
136
- #: facebook-button-plugin.php:316
137
  msgid "Before"
138
  msgstr "Sebelum"
139
 
140
- #: facebook-button-plugin.php:317
141
  msgid "After"
142
  msgstr "Setelah"
143
 
144
- #: facebook-button-plugin.php:318
145
  msgid "Before and After"
146
  msgstr "Sebelum dan Setelah"
147
 
148
- #: facebook-button-plugin.php:319
149
  msgid "Shortcode"
150
  msgstr "Kode Pendek"
151
 
152
- #: facebook-button-plugin.php:321
153
  msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
154
  msgstr "Jika anda ingin menambahkan tombol Facebook di website anda, cukup salin kode singkat kedalam posting atau page anda:"
155
 
156
- #: facebook-button-plugin.php:326
157
  #, fuzzy
158
  msgid "Facebook buttons language"
159
  msgstr "Bahasa Facebook Button:"
160
 
161
- #: facebook-button-plugin.php:338
162
  msgid "Change the language of Facebook Like Button"
163
  msgstr "Ubah bahasa Facebook Like Button"
164
 
165
- #: facebook-button-plugin.php:343
166
- #: facebook-button-plugin.php:346
167
- #: facebook-button-plugin.php:351
168
  msgid "Use the current site language"
169
  msgstr ""
170
 
171
- #: facebook-button-plugin.php:343
172
- #: facebook-button-plugin.php:347
173
- #: facebook-button-plugin.php:352
174
  msgid "Using"
175
  msgstr ""
176
 
177
- #: facebook-button-plugin.php:347
178
  #, fuzzy
179
  msgid "Activate"
180
  msgstr "Aktif Eklentiler"
181
 
182
- #: facebook-button-plugin.php:352
183
  msgid "Download"
184
  msgstr "Ä°ndir"
185
 
186
- #: facebook-button-plugin.php:359
187
  msgid "Html tag for \"Like\" button"
188
  msgstr ""
189
 
190
- #: facebook-button-plugin.php:363
191
  msgid "Use this tag to improve validation of your site"
192
  msgstr ""
193
 
194
- #: facebook-button-plugin.php:373
195
  msgid "\"Like\" for an entire site on every page:"
196
  msgstr ""
197
 
198
- #: facebook-button-plugin.php:375
199
  msgid "Notice: \"Like for the entire site\" option does not create an extra button. This option merely allows your users to like the entire website when this option is enabled, or a single post when this option is disabled, when clicking the regular \"Like\" button."
200
  msgstr ""
201
 
202
- #: facebook-button-plugin.php:380
203
  #: facebook-button-plugin.php:437
204
  msgid "If you upgrade to Pro version all your settings will be saved."
205
  msgstr ""
206
 
207
- #: facebook-button-plugin.php:387
208
  #: facebook-button-plugin.php:444
209
- msgid "Unlock premium options by upgrading to a PRO version."
210
  msgstr ""
211
 
212
- #: facebook-button-plugin.php:388
213
- #: facebook-button-plugin.php:445
214
  msgid "Learn More"
215
  msgstr ""
216
 
217
- #: facebook-button-plugin.php:391
218
- #: facebook-button-plugin.php:448
219
- msgid "Go"
220
- msgstr ""
221
-
222
- #: facebook-button-plugin.php:399
223
  #: facebook-button-plugin.php:432
224
  msgid "Save Changes"
225
  msgstr "Simpan Perubahan"
@@ -240,7 +235,7 @@ msgstr ""
240
  msgid "Example of site pages' tree"
241
  msgstr ""
242
 
243
- #: facebook-button-plugin.php:669
244
  msgid "Support"
245
  msgstr "Dukungan"
246
 
2
  msgstr ""
3
  "Project-Id-Version: facebook\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-08-24 11:35+0300\n"
6
+ "PO-Revision-Date: 2015-08-24 11:35+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: nasrulhaq <nasrulhaq81@gmail.com>\n"
9
  "Language: es_ES\n"
54
  msgstr ""
55
 
56
  #: facebook-button-plugin.php:252
57
+ #: facebook-button-plugin.php:655
58
+ #: facebook-button-plugin.php:669
59
  msgid "Settings"
60
  msgstr "Pengaturan"
61
 
65
  msgstr "Pengaturan"
66
 
67
  #: facebook-button-plugin.php:254
68
+ #: facebook-button-plugin.php:670
69
  msgid "FAQ"
70
  msgstr "SSS (Sık Sorulan Sorular)"
71
 
91
  msgid "Display button"
92
  msgstr "Tampilan tombol:"
93
 
94
+ #: facebook-button-plugin.php:277
95
  msgid "My Page"
96
  msgstr "Halamanku"
97
 
98
+ #: facebook-button-plugin.php:278
99
  msgid "Like"
100
  msgstr "Suka"
101
 
102
+ #: facebook-button-plugin.php:279
103
  msgid "Share"
104
  msgstr ""
105
 
106
+ #: facebook-button-plugin.php:285
107
  msgid "\"My page\" button image"
108
  msgstr ""
109
 
110
+ #: facebook-button-plugin.php:290
111
  msgid "Standard Facebook image"
112
  msgstr "Standar gambar Facebook "
113
 
114
+ #: facebook-button-plugin.php:291
115
  msgid "Custom Facebook image"
116
  msgstr "Kustom Gambar Facebook "
117
 
118
+ #: facebook-button-plugin.php:294
119
  msgid "To use custom image you need to setup permissions to upload directory of your site"
120
  msgstr ""
121
 
122
+ #: facebook-button-plugin.php:301
123
  #, fuzzy
124
  msgid "Current image"
125
  msgstr "Gambar tertentu:"
126
 
127
+ #: facebook-button-plugin.php:309
128
  msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
129
  msgstr "properti gambar: lebar gambar maks:100px; panjang gambar maks:40px; ukuran gambar maks:32Kb; tipe gambar:\"jpg\",\"jpeg\", \"png\"."
130
 
131
+ #: facebook-button-plugin.php:314
132
  #, fuzzy
133
  msgid "Facebook buttons position"
134
  msgstr "Posisi Tombol Facebook"
135
 
136
+ #: facebook-button-plugin.php:318
137
  msgid "Before"
138
  msgstr "Sebelum"
139
 
140
+ #: facebook-button-plugin.php:319
141
  msgid "After"
142
  msgstr "Setelah"
143
 
144
+ #: facebook-button-plugin.php:320
145
  msgid "Before and After"
146
  msgstr "Sebelum dan Setelah"
147
 
148
+ #: facebook-button-plugin.php:321
149
  msgid "Shortcode"
150
  msgstr "Kode Pendek"
151
 
152
+ #: facebook-button-plugin.php:323
153
  msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
154
  msgstr "Jika anda ingin menambahkan tombol Facebook di website anda, cukup salin kode singkat kedalam posting atau page anda:"
155
 
156
+ #: facebook-button-plugin.php:328
157
  #, fuzzy
158
  msgid "Facebook buttons language"
159
  msgstr "Bahasa Facebook Button:"
160
 
161
+ #: facebook-button-plugin.php:340
162
  msgid "Change the language of Facebook Like Button"
163
  msgstr "Ubah bahasa Facebook Like Button"
164
 
165
+ #: facebook-button-plugin.php:345
166
+ #: facebook-button-plugin.php:348
167
+ #: facebook-button-plugin.php:353
168
  msgid "Use the current site language"
169
  msgstr ""
170
 
171
+ #: facebook-button-plugin.php:345
172
+ #: facebook-button-plugin.php:349
173
+ #: facebook-button-plugin.php:354
174
  msgid "Using"
175
  msgstr ""
176
 
177
+ #: facebook-button-plugin.php:349
178
  #, fuzzy
179
  msgid "Activate"
180
  msgstr "Aktif Eklentiler"
181
 
182
+ #: facebook-button-plugin.php:354
183
  msgid "Download"
184
  msgstr "Ä°ndir"
185
 
186
+ #: facebook-button-plugin.php:361
187
  msgid "Html tag for \"Like\" button"
188
  msgstr ""
189
 
190
+ #: facebook-button-plugin.php:366
191
  msgid "Use this tag to improve validation of your site"
192
  msgstr ""
193
 
194
+ #: facebook-button-plugin.php:377
195
  msgid "\"Like\" for an entire site on every page:"
196
  msgstr ""
197
 
198
+ #: facebook-button-plugin.php:379
199
  msgid "Notice: \"Like for the entire site\" option does not create an extra button. This option merely allows your users to like the entire website when this option is enabled, or a single post when this option is disabled, when clicking the regular \"Like\" button."
200
  msgstr ""
201
 
202
+ #: facebook-button-plugin.php:384
203
  #: facebook-button-plugin.php:437
204
  msgid "If you upgrade to Pro version all your settings will be saved."
205
  msgstr ""
206
 
207
+ #: facebook-button-plugin.php:391
208
  #: facebook-button-plugin.php:444
209
+ msgid "Unlock premium options by upgrading to Pro version"
210
  msgstr ""
211
 
212
+ #: facebook-button-plugin.php:393
213
+ #: facebook-button-plugin.php:446
214
  msgid "Learn More"
215
  msgstr ""
216
 
217
+ #: facebook-button-plugin.php:400
 
 
 
 
 
218
  #: facebook-button-plugin.php:432
219
  msgid "Save Changes"
220
  msgstr "Simpan Perubahan"
235
  msgid "Example of site pages' tree"
236
  msgstr ""
237
 
238
+ #: facebook-button-plugin.php:671
239
  msgid "Support"
240
  msgstr "Dukungan"
241
 
languages/facebook-ru_RU.mo CHANGED
Binary file
languages/facebook-ru_RU.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: facebook\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-07-15 16:01+0300\n"
6
- "PO-Revision-Date: 2015-07-16 11:50+0300\n"
7
- "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
10
  "MIME-Version: 1.0\n"
@@ -16,7 +16,8 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: facebook-button-plugin.php:32 facebook-button-plugin.php:250
 
20
  msgid "Facebook Button Settings"
21
  msgstr "Настройки Facebook Button"
22
 
@@ -52,8 +53,9 @@ msgstr "Ошибка загрузки: Проверьте опции изобр
52
  msgid "All plugin settings were restored."
53
  msgstr "Все настройки плагина восстановлены."
54
 
55
- #: facebook-button-plugin.php:252 facebook-button-plugin.php:653
56
- #: facebook-button-plugin.php:667
 
57
  msgid "Settings"
58
  msgstr "Настройки"
59
 
@@ -61,7 +63,8 @@ msgstr "Настройки"
61
  msgid "Extra settings"
62
  msgstr "Дополнительные настройки"
63
 
64
- #: facebook-button-plugin.php:254 facebook-button-plugin.php:668
 
65
  msgid "FAQ"
66
  msgstr "FAQ"
67
 
@@ -74,12 +77,8 @@ msgid "Notice:"
74
  msgstr "Внимание:"
75
 
76
  #: facebook-button-plugin.php:259
77
- msgid ""
78
- "The plugin's settings have been changed. In order to save them please don't "
79
- "forget to click the 'Save Changes' button."
80
- msgstr ""
81
- "Настройки плагина были изменены. Для того, чтобы сохранить их, пожалуйста, "
82
- "не забудьте нажать кнопку \"Сохранить\"."
83
 
84
  #: facebook-button-plugin.php:268
85
  msgid "Your Facebook ID or username"
@@ -89,155 +88,133 @@ msgstr "Ваш Facebook ID или имя пользователя"
89
  msgid "Display button"
90
  msgstr "Отображение кнопок"
91
 
92
- #: facebook-button-plugin.php:276
93
  msgid "My Page"
94
- msgstr "My Page"
95
 
96
- #: facebook-button-plugin.php:277
97
  msgid "Like"
98
- msgstr "Like"
99
 
100
- #: facebook-button-plugin.php:278
101
  msgid "Share"
102
- msgstr "Share"
103
 
104
- #: facebook-button-plugin.php:283
105
  msgid "\"My page\" button image"
106
- msgstr "Изображение кнопки \"My page\""
107
 
108
- #: facebook-button-plugin.php:288
109
  msgid "Standard Facebook image"
110
  msgstr "Стандартная картинка Facebook"
111
 
112
- #: facebook-button-plugin.php:289
113
  msgid "Custom Facebook image"
114
  msgstr "Пользовательская картинка Facebook"
115
 
116
- #: facebook-button-plugin.php:292
117
- msgid ""
118
- "To use custom image you need to setup permissions to upload directory of "
119
- "your site"
120
- msgstr ""
121
- "Для использования кастомного изображения Вам нужно выдать права доступа на "
122
- "папку загрузок на вашем сайте"
123
 
124
- #: facebook-button-plugin.php:299
125
  msgid "Current image"
126
  msgstr "Текущее изображение"
127
 
128
- #: facebook-button-plugin.php:307
129
- msgid ""
130
- "Image properties: max image width:100px; max image height:40px; max image "
131
- "size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
132
- msgstr ""
133
- "Опции изображения для загрузки: максимальная ширина:100px; максимальная "
134
- "высота:40px; максимальный размер:32Kb; тип файла:\"jpg\", \"jpeg\", \"png\"."
135
 
136
- #: facebook-button-plugin.php:312
137
  msgid "Facebook buttons position"
138
  msgstr "Позиции Facebook кнопки"
139
 
140
- #: facebook-button-plugin.php:316
141
  msgid "Before"
142
  msgstr "Перед"
143
 
144
- #: facebook-button-plugin.php:317
145
  msgid "After"
146
  msgstr "После"
147
 
148
- #: facebook-button-plugin.php:318
149
  msgid "Before and After"
150
  msgstr "Перед и после"
151
 
152
- #: facebook-button-plugin.php:319
153
  msgid "Shortcode"
154
  msgstr "Шорткод"
155
 
156
- #: facebook-button-plugin.php:321
157
- msgid ""
158
- "If you would like to add a Facebook button to your website, just copy and "
159
- "paste this shortcode into your post or page:"
160
- msgstr ""
161
- "Если вы хотите добавить Facebook кнопку на свой сайт, вам нужно только "
162
- "скопировать и вставить шорткод в контент страницы или поста"
163
 
164
- #: facebook-button-plugin.php:326
165
  msgid "Facebook buttons language"
166
  msgstr "Язык для Facebook кнопки"
167
 
168
- #: facebook-button-plugin.php:338
169
  msgid "Change the language of Facebook Like Button"
170
- msgstr "Выберите язык для Like кнопки"
171
 
172
- #: facebook-button-plugin.php:343 facebook-button-plugin.php:346
173
- #: facebook-button-plugin.php:351
 
174
  msgid "Use the current site language"
175
  msgstr "Использовать текущий язык сайта"
176
 
177
- #: facebook-button-plugin.php:343 facebook-button-plugin.php:347
178
- #: facebook-button-plugin.php:352
 
179
  msgid "Using"
180
  msgstr "Используя"
181
 
182
- #: facebook-button-plugin.php:347
183
  msgid "Activate"
184
  msgstr "Активировать"
185
 
186
- #: facebook-button-plugin.php:352
187
  msgid "Download"
188
  msgstr "Загрузить"
189
 
190
- #: facebook-button-plugin.php:359
191
  msgid "Html tag for \"Like\" button"
192
- msgstr "Html тэг для кнопки \"Like\""
193
 
194
- #: facebook-button-plugin.php:363
195
  msgid "Use this tag to improve validation of your site"
196
  msgstr "Используйте этот тэг для лучшей валидации вашего сайта"
197
 
198
- #: facebook-button-plugin.php:373
199
  msgid "\"Like\" for an entire site on every page:"
200
- msgstr "Ставить \"Like\" всему сайту на каждой странице:"
201
 
202
- #: facebook-button-plugin.php:375
203
- msgid ""
204
- "Notice: \"Like for the entire site\" option does not create an extra button. "
205
- "This option merely allows your users to like the entire website when this "
206
- "option is enabled, or a single post when this option is disabled, when "
207
- "clicking the regular \"Like\" button."
208
- msgstr ""
209
- "Внимание: опция \"Лайк для всего сайта\" - не создает дополнительную "
210
- "кнопку. Эта опция позволяет при клике пользователями на стандартную кнопку "
211
- "ставить лайк для всего сайта, если эта опция включена, или лайк для "
212
- "отдельной записи, когда эта опция выключена."
213
 
214
- #: facebook-button-plugin.php:380 facebook-button-plugin.php:437
 
215
  msgid "If you upgrade to Pro version all your settings will be saved."
216
  msgstr "При установке Pro версии плагина, все ваши настройки сохраняются."
217
 
218
- #: facebook-button-plugin.php:387 facebook-button-plugin.php:444
219
- msgid "Unlock premium options by upgrading to a PRO version."
220
- msgstr "Активируйте премиум опции обновившись до PRO версии."
 
221
 
222
- #: facebook-button-plugin.php:388 facebook-button-plugin.php:445
 
223
  msgid "Learn More"
224
  msgstr "Подробнее"
225
 
226
- #: facebook-button-plugin.php:391 facebook-button-plugin.php:448
227
- msgid "Go"
228
- msgstr "Перейти на"
229
-
230
- #: facebook-button-plugin.php:399 facebook-button-plugin.php:432
231
  msgid "Save Changes"
232
  msgstr "Сохранить изменения"
233
 
234
  #: facebook-button-plugin.php:414
235
- msgid ""
236
- "Please choose the necessary post types (or single pages) where Facebook "
237
- "button will be displayed:"
238
- msgstr ""
239
- "Пожалуйста, выберите те типы постов (или отдельные страницы), где будут "
240
- "отображаться кнопки Facebook:"
241
 
242
  #: facebook-button-plugin.php:421
243
  msgid "Show URL for pages"
@@ -251,10 +228,13 @@ msgstr "Пример дерева страниц сайта"
251
  msgid "Example of site pages' tree"
252
  msgstr "Пример дерева страниц сайта"
253
 
254
- #: facebook-button-plugin.php:669
255
  msgid "Support"
256
  msgstr "Поддержка"
257
 
 
 
 
258
  #~ msgid "Are you sure you want to restore all settings by default?"
259
  #~ msgstr ""
260
  #~ "Вы уверены что хотите восстановить все настройки плагина к настройкам по-"
2
  msgstr ""
3
  "Project-Id-Version: facebook\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-08-24 11:35+0300\n"
6
+ "PO-Revision-Date: 2015-08-24 11:35+0300\n"
7
+ "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
10
  "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:32
20
+ #: facebook-button-plugin.php:250
21
  msgid "Facebook Button Settings"
22
  msgstr "Настройки Facebook Button"
23
 
53
  msgid "All plugin settings were restored."
54
  msgstr "Все настройки плагина восстановлены."
55
 
56
+ #: facebook-button-plugin.php:252
57
+ #: facebook-button-plugin.php:655
58
+ #: facebook-button-plugin.php:669
59
  msgid "Settings"
60
  msgstr "Настройки"
61
 
63
  msgid "Extra settings"
64
  msgstr "Дополнительные настройки"
65
 
66
+ #: facebook-button-plugin.php:254
67
+ #: facebook-button-plugin.php:670
68
  msgid "FAQ"
69
  msgstr "FAQ"
70
 
77
  msgstr "Внимание:"
78
 
79
  #: facebook-button-plugin.php:259
80
+ msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
81
+ msgstr "Настройки плагина были изменены. Для того, чтобы сохранить их, пожалуйста, не забудьте нажать кнопку \"Сохранить\"."
 
 
 
 
82
 
83
  #: facebook-button-plugin.php:268
84
  msgid "Your Facebook ID or username"
88
  msgid "Display button"
89
  msgstr "Отображение кнопок"
90
 
91
+ #: facebook-button-plugin.php:277
92
  msgid "My Page"
93
+ msgstr "Моя страница"
94
 
95
+ #: facebook-button-plugin.php:278
96
  msgid "Like"
97
+ msgstr "Нравится"
98
 
99
+ #: facebook-button-plugin.php:279
100
  msgid "Share"
101
+ msgstr "Поделиться"
102
 
103
+ #: facebook-button-plugin.php:285
104
  msgid "\"My page\" button image"
105
+ msgstr "Изображение кнопки \"Моя страница\""
106
 
107
+ #: facebook-button-plugin.php:290
108
  msgid "Standard Facebook image"
109
  msgstr "Стандартная картинка Facebook"
110
 
111
+ #: facebook-button-plugin.php:291
112
  msgid "Custom Facebook image"
113
  msgstr "Пользовательская картинка Facebook"
114
 
115
+ #: facebook-button-plugin.php:294
116
+ msgid "To use custom image you need to setup permissions to upload directory of your site"
117
+ msgstr "Для использования кастомного изображения Вам нужно выдать права доступа на папку загрузок на вашем сайте"
 
 
 
 
118
 
119
+ #: facebook-button-plugin.php:301
120
  msgid "Current image"
121
  msgstr "Текущее изображение"
122
 
123
+ #: facebook-button-plugin.php:309
124
+ msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
125
+ msgstr "Опции изображения для загрузки: максимальная ширина:100px; максимальная высота:40px; максимальный размер:32Kb; тип файла:\"jpg\", \"jpeg\", \"png\"."
 
 
 
 
126
 
127
+ #: facebook-button-plugin.php:314
128
  msgid "Facebook buttons position"
129
  msgstr "Позиции Facebook кнопки"
130
 
131
+ #: facebook-button-plugin.php:318
132
  msgid "Before"
133
  msgstr "Перед"
134
 
135
+ #: facebook-button-plugin.php:319
136
  msgid "After"
137
  msgstr "После"
138
 
139
+ #: facebook-button-plugin.php:320
140
  msgid "Before and After"
141
  msgstr "Перед и после"
142
 
143
+ #: facebook-button-plugin.php:321
144
  msgid "Shortcode"
145
  msgstr "Шорткод"
146
 
147
+ #: facebook-button-plugin.php:323
148
+ msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
149
+ msgstr "Если вы хотите добавить Facebook кнопку на свой сайт, вам нужно только скопировать и вставить шорткод в контент страницы или поста"
 
 
 
 
150
 
151
+ #: facebook-button-plugin.php:328
152
  msgid "Facebook buttons language"
153
  msgstr "Язык для Facebook кнопки"
154
 
155
+ #: facebook-button-plugin.php:340
156
  msgid "Change the language of Facebook Like Button"
157
+ msgstr "Выберите язык для Facebook кнопок"
158
 
159
+ #: facebook-button-plugin.php:345
160
+ #: facebook-button-plugin.php:348
161
+ #: facebook-button-plugin.php:353
162
  msgid "Use the current site language"
163
  msgstr "Использовать текущий язык сайта"
164
 
165
+ #: facebook-button-plugin.php:345
166
+ #: facebook-button-plugin.php:349
167
+ #: facebook-button-plugin.php:354
168
  msgid "Using"
169
  msgstr "Используя"
170
 
171
+ #: facebook-button-plugin.php:349
172
  msgid "Activate"
173
  msgstr "Активировать"
174
 
175
+ #: facebook-button-plugin.php:354
176
  msgid "Download"
177
  msgstr "Загрузить"
178
 
179
+ #: facebook-button-plugin.php:361
180
  msgid "Html tag for \"Like\" button"
181
+ msgstr "Html тэг для кнопки \"Нравится\""
182
 
183
+ #: facebook-button-plugin.php:366
184
  msgid "Use this tag to improve validation of your site"
185
  msgstr "Используйте этот тэг для лучшей валидации вашего сайта"
186
 
187
+ #: facebook-button-plugin.php:377
188
  msgid "\"Like\" for an entire site on every page:"
189
+ msgstr "Ставить \"Нравится\" всему сайту на каждой странице:"
190
 
191
+ #: facebook-button-plugin.php:379
192
+ msgid "Notice: \"Like for the entire site\" option does not create an extra button. This option merely allows your users to like the entire website when this option is enabled, or a single post when this option is disabled, when clicking the regular \"Like\" button."
193
+ msgstr "Внимание: опция \"Нравится для всего сайта\" - не создает дополнительную кнопку. Эта опция позволяет при клике пользователями на стандартную кнопку ставить \"Нравится\" для всего сайта, если эта опция включена, или \"Нравится\" для отдельной записи, когда эта опция выключена."
 
 
 
 
 
 
 
 
194
 
195
+ #: facebook-button-plugin.php:384
196
+ #: facebook-button-plugin.php:437
197
  msgid "If you upgrade to Pro version all your settings will be saved."
198
  msgstr "При установке Pro версии плагина, все ваши настройки сохраняются."
199
 
200
+ #: facebook-button-plugin.php:391
201
+ #: facebook-button-plugin.php:444
202
+ msgid "Unlock premium options by upgrading to Pro version"
203
+ msgstr "Активируйте премиум опции обновившись до Pro версии"
204
 
205
+ #: facebook-button-plugin.php:393
206
+ #: facebook-button-plugin.php:446
207
  msgid "Learn More"
208
  msgstr "Подробнее"
209
 
210
+ #: facebook-button-plugin.php:400
211
+ #: facebook-button-plugin.php:432
 
 
 
212
  msgid "Save Changes"
213
  msgstr "Сохранить изменения"
214
 
215
  #: facebook-button-plugin.php:414
216
+ msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
217
+ msgstr "Пожалуйста, выберите те типы постов (или отдельные страницы), где будут отображаться кнопки Facebook:"
 
 
 
 
218
 
219
  #: facebook-button-plugin.php:421
220
  msgid "Show URL for pages"
228
  msgid "Example of site pages' tree"
229
  msgstr "Пример дерева страниц сайта"
230
 
231
+ #: facebook-button-plugin.php:671
232
  msgid "Support"
233
  msgstr "Поддержка"
234
 
235
+ #~ msgid "Go"
236
+ #~ msgstr "Перейти на"
237
+
238
  #~ msgid "Are you sure you want to restore all settings by default?"
239
  #~ msgstr ""
240
  #~ "Вы уверены что хотите восстановить все настройки плагина к настройкам по-"
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: 2015-07-15 16:02+0300\n"
6
- "PO-Revision-Date: 2015-07-15 16:02+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Can Atasever <webmaster@canatasever.com>\n"
9
  "Language: tr\n"
@@ -55,8 +55,8 @@ msgid "All plugin settings were restored."
55
  msgstr ""
56
 
57
  #: facebook-button-plugin.php:252
58
- #: facebook-button-plugin.php:653
59
- #: facebook-button-plugin.php:667
60
  msgid "Settings"
61
  msgstr "Ayarlar"
62
 
@@ -65,7 +65,7 @@ msgid "Extra settings"
65
  msgstr "Ekstra Ayarlar"
66
 
67
  #: facebook-button-plugin.php:254
68
- #: facebook-button-plugin.php:668
69
  msgid "FAQ"
70
  msgstr "SSS"
71
 
@@ -91,135 +91,131 @@ msgstr "Facebook ID&#39;niz:"
91
  msgid "Display button"
92
  msgstr "Butonu Göster:"
93
 
94
- #: facebook-button-plugin.php:276
95
  msgid "My Page"
96
  msgstr "Benim Sayfam"
97
 
98
- #: facebook-button-plugin.php:277
99
  msgid "Like"
100
  msgstr "Beğen"
101
 
102
- #: facebook-button-plugin.php:278
103
  msgid "Share"
104
  msgstr "Paylaş"
105
 
106
- #: facebook-button-plugin.php:283
107
  msgid "\"My page\" button image"
108
  msgstr ""
109
 
110
- #: facebook-button-plugin.php:288
111
  msgid "Standard Facebook image"
112
  msgstr "Standart Facebook görseli"
113
 
114
- #: facebook-button-plugin.php:289
115
  msgid "Custom Facebook image"
116
  msgstr "Özel Facebook görseli"
117
 
118
- #: facebook-button-plugin.php:292
119
  msgid "To use custom image you need to setup permissions to upload directory of your site"
120
  msgstr "Özel görsel kullanmak için sitenizin dizinine yükleme yapılmasına izin vermelisiniz."
121
 
122
- #: facebook-button-plugin.php:299
123
  #, fuzzy
124
  msgid "Current image"
125
  msgstr "Şu anki görsel:"
126
 
127
- #: facebook-button-plugin.php:307
128
  msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
129
  msgstr "Görsel özellikleri: maksimum görsel genişliği: 100px; maksimum görsel yüksekliği: 40px; maksimum görsel boyutu: 32 KB; uzantılar: \"jpg\", \"jpeg\", \"png\"."
130
 
131
- #: facebook-button-plugin.php:312
132
  #, fuzzy
133
  msgid "Facebook buttons position"
134
  msgstr "Facebook Butonu pozisyonu"
135
 
136
- #: facebook-button-plugin.php:316
137
  msgid "Before"
138
  msgstr "Önce"
139
 
140
- #: facebook-button-plugin.php:317
141
  msgid "After"
142
  msgstr "Sonra"
143
 
144
- #: facebook-button-plugin.php:318
145
  msgid "Before and After"
146
  msgstr "Önce ve Sonra"
147
 
148
- #: facebook-button-plugin.php:319
149
  msgid "Shortcode"
150
  msgstr "Kısa kod"
151
 
152
- #: facebook-button-plugin.php:321
153
  msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
154
  msgstr "eğer web sitenize Facebook butonu eklemek isterseniz, verilen kısa kodu sayfanıza ya da yazınıza eklemeniz yeterlidir."
155
 
156
- #: facebook-button-plugin.php:326
157
  #, fuzzy
158
  msgid "Facebook buttons language"
159
  msgstr "Facebook Butonu dili"
160
 
161
- #: facebook-button-plugin.php:338
162
  msgid "Change the language of Facebook Like Button"
163
  msgstr "Facebook Beğen butonunun dilini değiştirin"
164
 
165
- #: facebook-button-plugin.php:343
166
- #: facebook-button-plugin.php:346
167
- #: facebook-button-plugin.php:351
168
  msgid "Use the current site language"
169
  msgstr ""
170
 
171
- #: facebook-button-plugin.php:343
172
- #: facebook-button-plugin.php:347
173
- #: facebook-button-plugin.php:352
174
  msgid "Using"
175
  msgstr ""
176
 
177
- #: facebook-button-plugin.php:347
178
  msgid "Activate"
179
  msgstr ""
180
 
181
- #: facebook-button-plugin.php:352
182
  msgid "Download"
183
  msgstr ""
184
 
185
- #: facebook-button-plugin.php:359
186
  #, fuzzy
187
  msgid "Html tag for \"Like\" button"
188
  msgstr "Beğen butonu için HTML etiketi:"
189
 
190
- #: facebook-button-plugin.php:363
191
  msgid "Use this tag to improve validation of your site"
192
  msgstr "Sitenizin doğrulamasını geliştirmek için bu etiketi kullanın"
193
 
194
- #: facebook-button-plugin.php:373
195
  msgid "\"Like\" for an entire site on every page:"
196
  msgstr ""
197
 
198
- #: facebook-button-plugin.php:375
199
  msgid "Notice: \"Like for the entire site\" option does not create an extra button. This option merely allows your users to like the entire website when this option is enabled, or a single post when this option is disabled, when clicking the regular \"Like\" button."
200
  msgstr ""
201
 
202
- #: facebook-button-plugin.php:380
203
  #: facebook-button-plugin.php:437
204
  msgid "If you upgrade to Pro version all your settings will be saved."
205
  msgstr "Aboneliğinizi PRO versiyonuna yükseltirseniz tüm değişiklikleriniz kaydedilecek."
206
 
207
- #: facebook-button-plugin.php:387
208
  #: facebook-button-plugin.php:444
209
- msgid "Unlock premium options by upgrading to a PRO version."
 
210
  msgstr "PRO versiyonuna geçerek premium özellikleri aktifleştirin."
211
 
212
- #: facebook-button-plugin.php:388
213
- #: facebook-button-plugin.php:445
214
  msgid "Learn More"
215
  msgstr "Detaylı Bilgi"
216
 
217
- #: facebook-button-plugin.php:391
218
- #: facebook-button-plugin.php:448
219
- msgid "Go"
220
- msgstr "Git"
221
-
222
- #: facebook-button-plugin.php:399
223
  #: facebook-button-plugin.php:432
224
  msgid "Save Changes"
225
  msgstr "Değişiklikleri Kaydet"
@@ -240,10 +236,13 @@ msgstr "Sitenin sayfalar izi için örnek"
240
  msgid "Example of site pages' tree"
241
  msgstr "Site sayfaları izi için örnek"
242
 
243
- #: facebook-button-plugin.php:669
244
  msgid "Support"
245
  msgstr "Destek"
246
 
 
 
 
247
  #, fuzzy
248
  #~ msgid "Yes, restore all settings"
249
  #~ msgstr "Ekstra Ayarlar"
2
  msgstr ""
3
  "Project-Id-Version: facebook\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-08-24 11:35+0300\n"
6
+ "PO-Revision-Date: 2015-08-24 11:35+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Can Atasever <webmaster@canatasever.com>\n"
9
  "Language: tr\n"
55
  msgstr ""
56
 
57
  #: facebook-button-plugin.php:252
58
+ #: facebook-button-plugin.php:655
59
+ #: facebook-button-plugin.php:669
60
  msgid "Settings"
61
  msgstr "Ayarlar"
62
 
65
  msgstr "Ekstra Ayarlar"
66
 
67
  #: facebook-button-plugin.php:254
68
+ #: facebook-button-plugin.php:670
69
  msgid "FAQ"
70
  msgstr "SSS"
71
 
91
  msgid "Display button"
92
  msgstr "Butonu Göster:"
93
 
94
+ #: facebook-button-plugin.php:277
95
  msgid "My Page"
96
  msgstr "Benim Sayfam"
97
 
98
+ #: facebook-button-plugin.php:278
99
  msgid "Like"
100
  msgstr "Beğen"
101
 
102
+ #: facebook-button-plugin.php:279
103
  msgid "Share"
104
  msgstr "Paylaş"
105
 
106
+ #: facebook-button-plugin.php:285
107
  msgid "\"My page\" button image"
108
  msgstr ""
109
 
110
+ #: facebook-button-plugin.php:290
111
  msgid "Standard Facebook image"
112
  msgstr "Standart Facebook görseli"
113
 
114
+ #: facebook-button-plugin.php:291
115
  msgid "Custom Facebook image"
116
  msgstr "Özel Facebook görseli"
117
 
118
+ #: facebook-button-plugin.php:294
119
  msgid "To use custom image you need to setup permissions to upload directory of your site"
120
  msgstr "Özel görsel kullanmak için sitenizin dizinine yükleme yapılmasına izin vermelisiniz."
121
 
122
+ #: facebook-button-plugin.php:301
123
  #, fuzzy
124
  msgid "Current image"
125
  msgstr "Şu anki görsel:"
126
 
127
+ #: facebook-button-plugin.php:309
128
  msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
129
  msgstr "Görsel özellikleri: maksimum görsel genişliği: 100px; maksimum görsel yüksekliği: 40px; maksimum görsel boyutu: 32 KB; uzantılar: \"jpg\", \"jpeg\", \"png\"."
130
 
131
+ #: facebook-button-plugin.php:314
132
  #, fuzzy
133
  msgid "Facebook buttons position"
134
  msgstr "Facebook Butonu pozisyonu"
135
 
136
+ #: facebook-button-plugin.php:318
137
  msgid "Before"
138
  msgstr "Önce"
139
 
140
+ #: facebook-button-plugin.php:319
141
  msgid "After"
142
  msgstr "Sonra"
143
 
144
+ #: facebook-button-plugin.php:320
145
  msgid "Before and After"
146
  msgstr "Önce ve Sonra"
147
 
148
+ #: facebook-button-plugin.php:321
149
  msgid "Shortcode"
150
  msgstr "Kısa kod"
151
 
152
+ #: facebook-button-plugin.php:323
153
  msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
154
  msgstr "eğer web sitenize Facebook butonu eklemek isterseniz, verilen kısa kodu sayfanıza ya da yazınıza eklemeniz yeterlidir."
155
 
156
+ #: facebook-button-plugin.php:328
157
  #, fuzzy
158
  msgid "Facebook buttons language"
159
  msgstr "Facebook Butonu dili"
160
 
161
+ #: facebook-button-plugin.php:340
162
  msgid "Change the language of Facebook Like Button"
163
  msgstr "Facebook Beğen butonunun dilini değiştirin"
164
 
165
+ #: facebook-button-plugin.php:345
166
+ #: facebook-button-plugin.php:348
167
+ #: facebook-button-plugin.php:353
168
  msgid "Use the current site language"
169
  msgstr ""
170
 
171
+ #: facebook-button-plugin.php:345
172
+ #: facebook-button-plugin.php:349
173
+ #: facebook-button-plugin.php:354
174
  msgid "Using"
175
  msgstr ""
176
 
177
+ #: facebook-button-plugin.php:349
178
  msgid "Activate"
179
  msgstr ""
180
 
181
+ #: facebook-button-plugin.php:354
182
  msgid "Download"
183
  msgstr ""
184
 
185
+ #: facebook-button-plugin.php:361
186
  #, fuzzy
187
  msgid "Html tag for \"Like\" button"
188
  msgstr "Beğen butonu için HTML etiketi:"
189
 
190
+ #: facebook-button-plugin.php:366
191
  msgid "Use this tag to improve validation of your site"
192
  msgstr "Sitenizin doğrulamasını geliştirmek için bu etiketi kullanın"
193
 
194
+ #: facebook-button-plugin.php:377
195
  msgid "\"Like\" for an entire site on every page:"
196
  msgstr ""
197
 
198
+ #: facebook-button-plugin.php:379
199
  msgid "Notice: \"Like for the entire site\" option does not create an extra button. This option merely allows your users to like the entire website when this option is enabled, or a single post when this option is disabled, when clicking the regular \"Like\" button."
200
  msgstr ""
201
 
202
+ #: facebook-button-plugin.php:384
203
  #: facebook-button-plugin.php:437
204
  msgid "If you upgrade to Pro version all your settings will be saved."
205
  msgstr "Aboneliğinizi PRO versiyonuna yükseltirseniz tüm değişiklikleriniz kaydedilecek."
206
 
207
+ #: facebook-button-plugin.php:391
208
  #: facebook-button-plugin.php:444
209
+ #, fuzzy
210
+ msgid "Unlock premium options by upgrading to Pro version"
211
  msgstr "PRO versiyonuna geçerek premium özellikleri aktifleştirin."
212
 
213
+ #: facebook-button-plugin.php:393
214
+ #: facebook-button-plugin.php:446
215
  msgid "Learn More"
216
  msgstr "Detaylı Bilgi"
217
 
218
+ #: facebook-button-plugin.php:400
 
 
 
 
 
219
  #: facebook-button-plugin.php:432
220
  msgid "Save Changes"
221
  msgstr "Değişiklikleri Kaydet"
236
  msgid "Example of site pages' tree"
237
  msgstr "Site sayfaları izi için örnek"
238
 
239
+ #: facebook-button-plugin.php:671
240
  msgid "Support"
241
  msgstr "Destek"
242
 
243
+ #~ msgid "Go"
244
+ #~ msgstr "Git"
245
+
246
  #, fuzzy
247
  #~ msgid "Yes, restore all settings"
248
  #~ msgstr "Ekstra Ayarlar"
languages/facebook-uk.mo CHANGED
Binary file
languages/facebook-uk.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: facebook\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-07-15 16:02+0300\n"
6
- "PO-Revision-Date: 2015-07-16 11:47+0300\n"
7
- "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
9
  "Language: ua_UA\n"
10
  "MIME-Version: 1.0\n"
@@ -16,7 +16,8 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: facebook-button-plugin.php:32 facebook-button-plugin.php:250
 
20
  msgid "Facebook Button Settings"
21
  msgstr "Установки кнопки Facebook"
22
 
@@ -52,8 +53,9 @@ msgstr "Помилка Завантаження: Перевірте власти
52
  msgid "All plugin settings were restored."
53
  msgstr "Всі налаштування плагіну було скинуто до стандартних."
54
 
55
- #: facebook-button-plugin.php:252 facebook-button-plugin.php:653
56
- #: facebook-button-plugin.php:667
 
57
  msgid "Settings"
58
  msgstr "Установки"
59
 
@@ -61,7 +63,8 @@ msgstr "Установки"
61
  msgid "Extra settings"
62
  msgstr "Додаткові налаштування"
63
 
64
- #: facebook-button-plugin.php:254 facebook-button-plugin.php:668
 
65
  msgid "FAQ"
66
  msgstr "FAQ"
67
 
@@ -74,12 +77,8 @@ msgid "Notice:"
74
  msgstr "Нагадування:"
75
 
76
  #: facebook-button-plugin.php:259
77
- msgid ""
78
- "The plugin's settings have been changed. In order to save them please don't "
79
- "forget to click the 'Save Changes' button."
80
- msgstr ""
81
- "Налаштування плагіну було змінено. Для того, щоб зберегти ці зміни, не "
82
- "забудьте нажати кнопку \"Зберегти зміни\"."
83
 
84
  #: facebook-button-plugin.php:268
85
  msgid "Your Facebook ID or username"
@@ -89,156 +88,133 @@ msgstr "ID вашого Facebook акаунту"
89
  msgid "Display button"
90
  msgstr "Відображати кнопку"
91
 
92
- #: facebook-button-plugin.php:276
93
  msgid "My Page"
94
  msgstr "Моя сторінка"
95
 
96
- #: facebook-button-plugin.php:277
97
  msgid "Like"
98
- msgstr "Like"
99
 
100
- #: facebook-button-plugin.php:278
101
  msgid "Share"
102
- msgstr "Share"
103
 
104
- #: facebook-button-plugin.php:283
105
  msgid "\"My page\" button image"
106
- msgstr "Зображення кнопки \"My page\""
107
 
108
- #: facebook-button-plugin.php:288
109
  msgid "Standard Facebook image"
110
  msgstr "Стандартне зображення Facebook "
111
 
112
- #: facebook-button-plugin.php:289
113
  msgid "Custom Facebook image"
114
  msgstr "Кастомне зображення Facebook"
115
 
116
- #: facebook-button-plugin.php:292
117
- msgid ""
118
- "To use custom image you need to setup permissions to upload directory of "
119
- "your site"
120
- msgstr ""
121
- "Для використання кастомного зображення Вам необхідно видати права доступу на "
122
- "папку завантажень на вашому сайті"
123
 
124
- #: facebook-button-plugin.php:299
125
  msgid "Current image"
126
  msgstr "Поточне зображення"
127
 
128
- #: facebook-button-plugin.php:307
129
- msgid ""
130
- "Image properties: max image width:100px; max image height:40px; max image "
131
- "size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
132
- msgstr ""
133
- "Властивості зображення: максимальна ширина зображення:100px; максимальна "
134
- "висота зображення: 40px; максимальний розмір зображення: 32Kb; типи "
135
- "зображеннь :\"jpg\", \"jpeg\", \"png\"."
136
 
137
- #: facebook-button-plugin.php:312
138
  msgid "Facebook buttons position"
139
  msgstr "Розташування кнопок Facebook"
140
 
141
- #: facebook-button-plugin.php:316
142
  msgid "Before"
143
  msgstr "До"
144
 
145
- #: facebook-button-plugin.php:317
146
  msgid "After"
147
  msgstr "Після"
148
 
149
- #: facebook-button-plugin.php:318
150
  msgid "Before and After"
151
  msgstr "До та після"
152
 
153
- #: facebook-button-plugin.php:319
154
  msgid "Shortcode"
155
  msgstr "Шорткод"
156
 
157
- #: facebook-button-plugin.php:321
158
- msgid ""
159
- "If you would like to add a Facebook button to your website, just copy and "
160
- "paste this shortcode into your post or page:"
161
- msgstr ""
162
- "Якщо ви хочете додати кнопку Facebook на ваш сайт, просто скопіюйте і "
163
- "помістіть цей шорткод у пост або на сторінку:"
164
 
165
- #: facebook-button-plugin.php:326
166
  msgid "Facebook buttons language"
167
  msgstr "Мова кнопок Facebook"
168
 
169
- #: facebook-button-plugin.php:338
170
  msgid "Change the language of Facebook Like Button"
171
- msgstr "Змінити мову для кнопки Like Facebook"
172
 
173
- #: facebook-button-plugin.php:343 facebook-button-plugin.php:346
174
- #: facebook-button-plugin.php:351
 
175
  msgid "Use the current site language"
176
  msgstr "Використовувати поточну мову сайту"
177
 
178
- #: facebook-button-plugin.php:343 facebook-button-plugin.php:347
179
- #: facebook-button-plugin.php:352
 
180
  msgid "Using"
181
  msgstr "Використовуючи"
182
 
183
- #: facebook-button-plugin.php:347
184
  msgid "Activate"
185
  msgstr "Активувати"
186
 
187
- #: facebook-button-plugin.php:352
188
  msgid "Download"
189
  msgstr "Завантажити"
190
 
191
- #: facebook-button-plugin.php:359
192
  msgid "Html tag for \"Like\" button"
193
- msgstr "Html тег для кнопки \"Like\""
194
 
195
- #: facebook-button-plugin.php:363
196
  msgid "Use this tag to improve validation of your site"
197
  msgstr "Використовуйте цей тег для поліпшення валідації вашого сайту"
198
 
199
- #: facebook-button-plugin.php:373
200
  msgid "\"Like\" for an entire site on every page:"
201
- msgstr "\"Like\" для всього сайту на кожній сторінці"
202
 
203
- #: facebook-button-plugin.php:375
204
- msgid ""
205
- "Notice: \"Like for the entire site\" option does not create an extra button. "
206
- "This option merely allows your users to like the entire website when this "
207
- "option is enabled, or a single post when this option is disabled, when "
208
- "clicking the regular \"Like\" button."
209
- msgstr ""
210
- "Увага: опція \"Лайк для всього сайту\" - не створює додаткову кнопку. Ця "
211
- "опція дозволяє при кліку користувачами на стандартну кнопку плагіна ставити "
212
- "лайк усьому сайту , якщо ця опція увімкнена, або ставити лайк окремим "
213
- "постам, якщо опція вимкнена."
214
 
215
- #: facebook-button-plugin.php:380 facebook-button-plugin.php:437
 
216
  msgid "If you upgrade to Pro version all your settings will be saved."
217
  msgstr "Якщо ви перейдете на Pro версію, усі установки будуть збережені."
218
 
219
- #: facebook-button-plugin.php:387 facebook-button-plugin.php:444
220
- msgid "Unlock premium options by upgrading to a PRO version."
221
- msgstr "Зробити доступними преміум-опції, перейшовши на PRO версію."
 
222
 
223
- #: facebook-button-plugin.php:388 facebook-button-plugin.php:445
 
224
  msgid "Learn More"
225
  msgstr "Докладніше"
226
 
227
- #: facebook-button-plugin.php:391 facebook-button-plugin.php:448
228
- msgid "Go"
229
- msgstr "Перейти"
230
-
231
- #: facebook-button-plugin.php:399 facebook-button-plugin.php:432
232
  msgid "Save Changes"
233
  msgstr "Зберегти зміни"
234
 
235
  #: facebook-button-plugin.php:414
236
- msgid ""
237
- "Please choose the necessary post types (or single pages) where Facebook "
238
- "button will be displayed:"
239
- msgstr ""
240
- "Будь ласка, оберіть необхідні типи постів (чи сторінок), де буде "
241
- "відображатися кнопка Facebook"
242
 
243
  #: facebook-button-plugin.php:421
244
  msgid "Show URL for pages"
@@ -252,10 +228,13 @@ msgstr "Приклад дерева сторінок сайту"
252
  msgid "Example of site pages' tree"
253
  msgstr "Приклад дерева сторінок сайту"
254
 
255
- #: facebook-button-plugin.php:669
256
  msgid "Support"
257
  msgstr "Підтримка"
258
 
 
 
 
259
  #~ msgid "Are you sure you want to restore all settings by default?"
260
  #~ msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
261
 
2
  msgstr ""
3
  "Project-Id-Version: facebook\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-08-24 11:35+0300\n"
6
+ "PO-Revision-Date: 2015-08-24 11:35+0300\n"
7
+ "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
9
  "Language: ua_UA\n"
10
  "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:32
20
+ #: facebook-button-plugin.php:250
21
  msgid "Facebook Button Settings"
22
  msgstr "Установки кнопки Facebook"
23
 
53
  msgid "All plugin settings were restored."
54
  msgstr "Всі налаштування плагіну було скинуто до стандартних."
55
 
56
+ #: facebook-button-plugin.php:252
57
+ #: facebook-button-plugin.php:655
58
+ #: facebook-button-plugin.php:669
59
  msgid "Settings"
60
  msgstr "Установки"
61
 
63
  msgid "Extra settings"
64
  msgstr "Додаткові налаштування"
65
 
66
+ #: facebook-button-plugin.php:254
67
+ #: facebook-button-plugin.php:670
68
  msgid "FAQ"
69
  msgstr "FAQ"
70
 
77
  msgstr "Нагадування:"
78
 
79
  #: facebook-button-plugin.php:259
80
+ msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
81
+ msgstr "Налаштування плагіну було змінено. Для того, щоб зберегти ці зміни, не забудьте нажати кнопку \"Зберегти зміни\"."
 
 
 
 
82
 
83
  #: facebook-button-plugin.php:268
84
  msgid "Your Facebook ID or username"
88
  msgid "Display button"
89
  msgstr "Відображати кнопку"
90
 
91
+ #: facebook-button-plugin.php:277
92
  msgid "My Page"
93
  msgstr "Моя сторінка"
94
 
95
+ #: facebook-button-plugin.php:278
96
  msgid "Like"
97
+ msgstr "Подобається"
98
 
99
+ #: facebook-button-plugin.php:279
100
  msgid "Share"
101
+ msgstr "Поширити"
102
 
103
+ #: facebook-button-plugin.php:285
104
  msgid "\"My page\" button image"
105
+ msgstr "Зображення кнопки \"Моя сторінка\""
106
 
107
+ #: facebook-button-plugin.php:290
108
  msgid "Standard Facebook image"
109
  msgstr "Стандартне зображення Facebook "
110
 
111
+ #: facebook-button-plugin.php:291
112
  msgid "Custom Facebook image"
113
  msgstr "Кастомне зображення Facebook"
114
 
115
+ #: facebook-button-plugin.php:294
116
+ msgid "To use custom image you need to setup permissions to upload directory of your site"
117
+ msgstr "Для використання кастомного зображення Вам необхідно видати права доступу на папку завантажень на вашому сайті"
 
 
 
 
118
 
119
+ #: facebook-button-plugin.php:301
120
  msgid "Current image"
121
  msgstr "Поточне зображення"
122
 
123
+ #: facebook-button-plugin.php:309
124
+ msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
125
+ msgstr "Властивості зображення: максимальна ширина зображення:100px; максимальна висота зображення: 40px; максимальний розмір зображення: 32Kb; типи зображеннь :\"jpg\", \"jpeg\", \"png\"."
 
 
 
 
 
126
 
127
+ #: facebook-button-plugin.php:314
128
  msgid "Facebook buttons position"
129
  msgstr "Розташування кнопок Facebook"
130
 
131
+ #: facebook-button-plugin.php:318
132
  msgid "Before"
133
  msgstr "До"
134
 
135
+ #: facebook-button-plugin.php:319
136
  msgid "After"
137
  msgstr "Після"
138
 
139
+ #: facebook-button-plugin.php:320
140
  msgid "Before and After"
141
  msgstr "До та після"
142
 
143
+ #: facebook-button-plugin.php:321
144
  msgid "Shortcode"
145
  msgstr "Шорткод"
146
 
147
+ #: facebook-button-plugin.php:323
148
+ msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
149
+ msgstr "Якщо ви хочете додати кнопку Facebook на ваш сайт, просто скопіюйте і помістіть цей шорткод у пост або на сторінку:"
 
 
 
 
150
 
151
+ #: facebook-button-plugin.php:328
152
  msgid "Facebook buttons language"
153
  msgstr "Мова кнопок Facebook"
154
 
155
+ #: facebook-button-plugin.php:340
156
  msgid "Change the language of Facebook Like Button"
157
+ msgstr "Змінити мову для кнопок Facebook"
158
 
159
+ #: facebook-button-plugin.php:345
160
+ #: facebook-button-plugin.php:348
161
+ #: facebook-button-plugin.php:353
162
  msgid "Use the current site language"
163
  msgstr "Використовувати поточну мову сайту"
164
 
165
+ #: facebook-button-plugin.php:345
166
+ #: facebook-button-plugin.php:349
167
+ #: facebook-button-plugin.php:354
168
  msgid "Using"
169
  msgstr "Використовуючи"
170
 
171
+ #: facebook-button-plugin.php:349
172
  msgid "Activate"
173
  msgstr "Активувати"
174
 
175
+ #: facebook-button-plugin.php:354
176
  msgid "Download"
177
  msgstr "Завантажити"
178
 
179
+ #: facebook-button-plugin.php:361
180
  msgid "Html tag for \"Like\" button"
181
+ msgstr "Html тег для кнопки \"Подобається\""
182
 
183
+ #: facebook-button-plugin.php:366
184
  msgid "Use this tag to improve validation of your site"
185
  msgstr "Використовуйте цей тег для поліпшення валідації вашого сайту"
186
 
187
+ #: facebook-button-plugin.php:377
188
  msgid "\"Like\" for an entire site on every page:"
189
+ msgstr "\"Подобається\" для всього сайту на кожній сторінці"
190
 
191
+ #: facebook-button-plugin.php:379
192
+ msgid "Notice: \"Like for the entire site\" option does not create an extra button. This option merely allows your users to like the entire website when this option is enabled, or a single post when this option is disabled, when clicking the regular \"Like\" button."
193
+ msgstr "Увага: опція \"Подобається для всього сайту\" - не створює додаткову кнопку. Ця опція дозволяє при кліку користувачами на стандартну кнопку плагіна ставити \"Подобається\" усьому сайту , якщо ця опція увімкнена, або ставити \"Подобається\" окремим постам, якщо опція вимкнена."
 
 
 
 
 
 
 
 
194
 
195
+ #: facebook-button-plugin.php:384
196
+ #: facebook-button-plugin.php:437
197
  msgid "If you upgrade to Pro version all your settings will be saved."
198
  msgstr "Якщо ви перейдете на Pro версію, усі установки будуть збережені."
199
 
200
+ #: facebook-button-plugin.php:391
201
+ #: facebook-button-plugin.php:444
202
+ msgid "Unlock premium options by upgrading to Pro version"
203
+ msgstr "Зробити доступними преміум-опції, перейшовши на Pro версію"
204
 
205
+ #: facebook-button-plugin.php:393
206
+ #: facebook-button-plugin.php:446
207
  msgid "Learn More"
208
  msgstr "Докладніше"
209
 
210
+ #: facebook-button-plugin.php:400
211
+ #: facebook-button-plugin.php:432
 
 
 
212
  msgid "Save Changes"
213
  msgstr "Зберегти зміни"
214
 
215
  #: facebook-button-plugin.php:414
216
+ msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
217
+ msgstr "Будь ласка, оберіть необхідні типи постів (чи сторінок), де буде відображатися кнопка Facebook"
 
 
 
 
218
 
219
  #: facebook-button-plugin.php:421
220
  msgid "Show URL for pages"
228
  msgid "Example of site pages' tree"
229
  msgstr "Приклад дерева сторінок сайту"
230
 
231
+ #: facebook-button-plugin.php:671
232
  msgid "Support"
233
  msgstr "Підтримка"
234
 
235
+ #~ msgid "Go"
236
+ #~ msgstr "Перейти"
237
+
238
  #~ msgid "Are you sure you want to restore all settings by default?"
239
  #~ msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
240
 
readme.txt CHANGED
@@ -2,38 +2,39 @@
2
  Contributors: bestwebsoft
3
  Donate link: http://bestwebsoft.com/donate/
4
  Tags: button, buton, batton, button image, button position, Button like, Facebook, Facebook account button, facebook button, facebook button language, Facebook button icon, Facebook button like, Facebook button share, Facebook ID, Facebook page, facebook like, facebook like button, facebook share, facebook share button, follow, Follow button, icon, Like, like button, My Page button, Share, share button, social, social button, social account
5
- Requires at least: 3.0
6
- Tested up to: 4.2.2
7
- Stable tag: 2.41
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
- Add Facebook button to your WordPress website.
12
 
13
  == Description ==
14
 
15
- Facebook Like Button Plugin allows you to add a Follow button the easiest way. If your life is tightly connected with your Facebook account, our plugin is the best solution for you. It contains minimum settings. Just a few clicks and voila - the Facebook button is on your site.
16
 
17
  http://www.youtube.com/watch?v=QGv04uHVl5c
18
 
19
  <a href="http://www.youtube.com/watch?v=pAKsQPz3RZc" target="_blank">Video instruction on Installation</a>
20
 
21
  <a href="http://wordpress.org/plugins/facebook-button-plugin/faq/" target="_blank">FAQ</a>
 
22
  <a href="http://support.bestwebsoft.com" target="_blank">Support</a>
23
 
24
  <a href="http://bestwebsoft.com/products/facebook-like-button/?k=4caab51af6593e97ad1e329fe0f53072" target="_blank">Upgrade to Pro Version</a>
25
 
26
  = Features =
27
 
28
- * Actions: Add the Follow button the easiest way.
29
  * Actions: Add Facebook Like button easily.
30
  * Display: Select the button position: before the content, after, before and after or using a shortcode.
31
  * Display: Use a standard image or replace it with some other image.
32
- * Display: Ability to use the current site language for Facebook buttons (Using Multilanguage by BestWebSoft)
33
 
34
  = Recommended Plugins =
35
 
36
- The author of the Facebook Like Button also recommends the following plugins:
37
 
38
  * <a href="http://wordpress.org/plugins/updater/">Updater</a> - This plugin updates WordPress core and the plugins to the recent versions. You can also use the auto mode or manual mode for updating and set email notifications.
39
  There is also a premium version of the plugin <a href="http://bestwebsoft.com/products/updater/?k=5019f1216fc048f1419fe4645da69381">Updater Pro</a> with more useful features available. It can make backup of all your files and database before updating. Also it can forbid some plugins or WordPress Core update.
@@ -69,32 +70,28 @@ http://www.youtube.com/watch?v=pAKsQPz3RZc
69
 
70
  == Frequently Asked Questions ==
71
 
72
- = I cannot see the Facebook Button icon in the post after the plugin installation =
73
-
74
- In WordPress admin panel, please go to "BWS Plugins", find the Facebook Button Plugin and click "Activate".
75
-
76
- = How can I deactivate the plugin? =
77
 
78
- In WordPress admin panel, please go to "BWS Plugins", find the Facebook Button Plugin and click "Deactivate".
79
 
80
- = After clicking the Facebook Button icon I see the Facebook Home page instead of the necessary account page =
81
 
82
- 1. In WordPress admin panel, please go to "BWS Plugins", find the Facebook Button Plugin settings page and enter your Facebook login. Then click "Save Changes".
83
- 2. If you do not have Facebook account yet, you should create it using this link: http://www.facebook.com . After the account is created please follow the instructions above.
84
 
85
  = How to adjust Facebook Button position on the page =
86
 
87
- In WordPress admin panel, please go to "BWS Plugins", find the Facebook Button Plugin settings page and choose one of the listed positions: Before, After, Before and After or Shortcode. Then click "Save Changes".
88
 
89
- = How to change a Facebook Button icon("My page") =
90
 
91
- 1. In WordPress admin panel, please go to "BWS Plugins", find the Facebook Button Plugin settings page and choose one of the listed positions: Standard Facebook image or Custom Facebook image. Then click "Save Changes".
92
  2. If you choose Custom Facebook image, you can upload your own picture. You should click "Choose file" and choose an image in your folder. Then click "Save Changes".
93
 
94
  = After the plugin installation and settings adjustment on the settings page it is still not working =
95
 
96
  1. You should click "Save Changes". Make sure that you got the message "Settings saved".
97
- 2. After saving your settings you should refresh your web page where the Facebook Button icon should be placed.
98
 
99
  = I have some problems with the plugin's work. What Information should I provide to receive proper support? =
100
 
@@ -113,6 +110,10 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
113
 
114
  == Changelog ==
115
 
 
 
 
 
116
  = V2.41 - 16.07.2015 =
117
  * Update : Ability to use the current site language for Facebook buttons (Using Multilanguage by BestWebSoft).
118
  * Bugfix : We fixed the 'share' button displaying bug (when the shortcode is used).
@@ -281,6 +282,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
281
 
282
  == Upgrade Notice ==
283
 
 
 
 
284
  = V2.41 =
285
  Ability to use the current site language for Facebook buttons (Using Multilanguage by BestWebSoft). We fixed the 'share' button displaying bug (when the shortcode is used).
286
 
2
  Contributors: bestwebsoft
3
  Donate link: http://bestwebsoft.com/donate/
4
  Tags: button, buton, batton, button image, button position, Button like, Facebook, Facebook account button, facebook button, facebook button language, Facebook button icon, Facebook button like, Facebook button share, Facebook ID, Facebook page, facebook like, facebook like button, facebook share, facebook share button, follow, Follow button, icon, Like, like button, My Page button, Share, share button, social, social button, social account
5
+ Requires at least: 3.1
6
+ Tested up to: 4.3
7
+ Stable tag: 2.42
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
+ Add Facebook buttons to your WordPress website.
12
 
13
  == Description ==
14
 
15
+ Facebook Like Button plugin allows you to add a Follow button the easiest way. If your life is tightly connected with your Facebook account, our plugin is the best solution for you. It contains minimum settings. Just a few clicks and voila - Facebook Button is on your site.
16
 
17
  http://www.youtube.com/watch?v=QGv04uHVl5c
18
 
19
  <a href="http://www.youtube.com/watch?v=pAKsQPz3RZc" target="_blank">Video instruction on Installation</a>
20
 
21
  <a href="http://wordpress.org/plugins/facebook-button-plugin/faq/" target="_blank">FAQ</a>
22
+
23
  <a href="http://support.bestwebsoft.com" target="_blank">Support</a>
24
 
25
  <a href="http://bestwebsoft.com/products/facebook-like-button/?k=4caab51af6593e97ad1e329fe0f53072" target="_blank">Upgrade to Pro Version</a>
26
 
27
  = Features =
28
 
29
+ * Actions: Add Follow button the easiest way.
30
  * Actions: Add Facebook Like button easily.
31
  * Display: Select the button position: before the content, after, before and after or using a shortcode.
32
  * Display: Use a standard image or replace it with some other image.
33
+ * Display: Ability to use the current site language for Facebook Buttons (Using Multilanguage by BestWebSoft)
34
 
35
  = Recommended Plugins =
36
 
37
+ The author of Facebook Like Button also recommends the following plugins:
38
 
39
  * <a href="http://wordpress.org/plugins/updater/">Updater</a> - This plugin updates WordPress core and the plugins to the recent versions. You can also use the auto mode or manual mode for updating and set email notifications.
40
  There is also a premium version of the plugin <a href="http://bestwebsoft.com/products/updater/?k=5019f1216fc048f1419fe4645da69381">Updater Pro</a> with more useful features available. It can make backup of all your files and database before updating. Also it can forbid some plugins or WordPress Core update.
70
 
71
  == Frequently Asked Questions ==
72
 
73
+ = I cannot see Facebook Button icon in the post after the plugin installation =
 
 
 
 
74
 
75
+ In WordPress admin panel, please go to "Plugins", find "Facebook Like Button by BestWebSoft" and click "Activate".
76
 
77
+ = After clicking Facebook Button icon I see the Facebook Home page instead of the necessary account page =
78
 
79
+ 1. In WordPress admin panel, please go to "BWS Plugins", find Facebook Button settings page and enter your Facebook ID or username. Then click "Save Changes".
80
+ 2. If you do not have Facebook account yet, you should create it using this link: http://www.facebook.com. After the account is created please follow the instructions above.
81
 
82
  = How to adjust Facebook Button position on the page =
83
 
84
+ In WordPress admin panel, please go to "BWS Plugins", find Facebook Button settings page and choose one of the listed positions: Before, After, Before and After or Shortcode. Then click "Save Changes".
85
 
86
+ = How to change Facebook Button icon ("My page") =
87
 
88
+ 1. In WordPress admin panel, please go to "BWS Plugins", find Facebook Button settings page and choose one of the listed positions: Standard Facebook image or Custom Facebook image. Then click "Save Changes".
89
  2. If you choose Custom Facebook image, you can upload your own picture. You should click "Choose file" and choose an image in your folder. Then click "Save Changes".
90
 
91
  = After the plugin installation and settings adjustment on the settings page it is still not working =
92
 
93
  1. You should click "Save Changes". Make sure that you got the message "Settings saved".
94
+ 2. After saving your settings you should refresh your web page where Facebook Button icon should be placed.
95
 
96
  = I have some problems with the plugin's work. What Information should I provide to receive proper support? =
97
 
110
 
111
  == Changelog ==
112
 
113
+ = V2.42 - 24.08.2015 =
114
+ * Update : We added buttons displaying for the excerpt.
115
+ * Update : We updated all functionality for wordpress 4.3.
116
+
117
  = V2.41 - 16.07.2015 =
118
  * Update : Ability to use the current site language for Facebook buttons (Using Multilanguage by BestWebSoft).
119
  * Bugfix : We fixed the 'share' button displaying bug (when the shortcode is used).
282
 
283
  == Upgrade Notice ==
284
 
285
+ = V2.42 =
286
+ We added buttons displaying for the excerpt. We updated all functionality for wordpress 4.3.
287
+
288
  = V2.41 =
289
  Ability to use the current site language for Facebook buttons (Using Multilanguage by BestWebSoft). We fixed the 'share' button displaying bug (when the shortcode is used).
290