Facebook Button by BestWebSoft - Version 2.40

Version Description

  • 15.06.2015 =
  • New : Ability to restore settings to defaults.
Download this release

Release Info

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

Code changes from version 2.39 to 2.40

Files changed (37) hide show
  1. bws_menu/bws_functions.php +32 -4
  2. bws_menu/bws_menu.php +29 -5
  3. bws_menu/icons/pagination.png +0 -0
  4. bws_menu/icons/visitors-online.png +0 -0
  5. bws_menu/languages/bestwebsoft-de_DE.mo +0 -0
  6. bws_menu/languages/bestwebsoft-de_DE.po +114 -92
  7. bws_menu/languages/bestwebsoft-fr_FR.mo +0 -0
  8. bws_menu/languages/bestwebsoft-fr_FR.po +120 -99
  9. bws_menu/languages/bestwebsoft-it_IT.mo +0 -0
  10. bws_menu/languages/bestwebsoft-it_IT.po +114 -92
  11. bws_menu/languages/bestwebsoft-ja.mo +0 -0
  12. bws_menu/languages/bestwebsoft-ja.po +117 -95
  13. bws_menu/languages/bestwebsoft-pt_BR.mo +0 -0
  14. bws_menu/languages/bestwebsoft-pt_BR.po +114 -92
  15. bws_menu/languages/bestwebsoft-ru_RU.mo +0 -0
  16. bws_menu/languages/bestwebsoft-ru_RU.po +124 -102
  17. bws_menu/languages/bestwebsoft-sr_RS.mo +0 -0
  18. bws_menu/languages/bestwebsoft-sr_RS.po +116 -92
  19. bws_menu/languages/bestwebsoft-sv_SE.mo +0 -0
  20. bws_menu/languages/bestwebsoft-sv_SE.po +114 -92
  21. bws_menu/languages/bestwebsoft-uk.mo +0 -0
  22. bws_menu/languages/bestwebsoft-uk.po +118 -97
  23. facebook-button-plugin.php +135 -123
  24. languages/facebook-fi_FI.mo +0 -0
  25. languages/facebook-fi_FI.po +66 -53
  26. languages/facebook-fr_FR.mo +0 -0
  27. languages/facebook-fr_FR.po +66 -54
  28. languages/facebook-id_ID.mo +0 -0
  29. languages/facebook-id_ID.po +66 -54
  30. languages/facebook-ru_RU.mo +0 -0
  31. languages/facebook-ru_RU.po +71 -53
  32. languages/facebook-tr_TR.mo +0 -0
  33. languages/facebook-tr_TR.po +66 -53
  34. languages/facebook-uk.mo +0 -0
  35. languages/facebook-uk.po +69 -53
  36. readme.txt +7 -1
  37. screenshot-1.png +0 -0
bws_menu/bws_functions.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * General functions for BestWebSoft plugins
4
- * Version: 1.0.9
5
  */
6
  if ( ! function_exists ( 'bws_add_general_menu' ) ) {
7
  function bws_add_general_menu( $base ) {
@@ -365,7 +365,7 @@ if ( ! function_exists( 'bws_go_pro_tab' ) ) {
365
  <p><?php _e( "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually.", 'bestwebsoft' ); ?></p>
366
  <?php } else { ?>
367
  <p>
368
- <input type="text" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
369
  <input type="hidden" name="bws_license_plugin" value="<?php echo $bws_license_plugin; ?>" />
370
  <input type="hidden" name="bws_license_submit" value="submit" />
371
  <input type="submit" class="button-primary" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
@@ -403,7 +403,7 @@ if ( ! function_exists( 'bws_go_pro_from_trial_tab' ) ) {
403
  <p><?php _e( "Unfortunately, you have exceeded the number of available tries per day.", 'bestwebsoft' ); ?></p>
404
  <?php } else { ?>
405
  <p>
406
- <input type="text" name="bws_license_key" value="" />
407
  <input type="hidden" name="bws_license_plugin" value="<?php echo $plugin_basename; ?>" />
408
  <input type="hidden" name="bws_license_submit" value="submit" />
409
  <input type="submit" class="button-primary" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
@@ -523,7 +523,7 @@ if ( ! function_exists ( 'bws_check_pro_license_form' ) ) {
523
  <form method="post" action="admin.php?page=<?php echo $page; ?>">
524
  <p><?php echo _e( 'If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website', 'bestwebsoft' ) . ' <a href="http://bestwebsoft.com/wp-login.php">http://bestwebsoft.com/wp-login.php</a> ' . __( '(your username is the email you specify when purchasing the product). If necessary, please submit "Lost your password?" request.', 'bestwebsoft' ); ?></p>
525
  <p>
526
- <input type="text" name="bws_license_key" value="<?php echo $license_key; ?>" />
527
  <input type="hidden" name="bws_license_submit" value="submit" />
528
  <input type="submit" class="button-primary" value="<?php _e( 'Check license key', 'bestwebsoft' ) ?>" />
529
  <?php wp_nonce_field( $plugin_basename, 'bws_license_nonce_name' ); ?>
@@ -765,6 +765,34 @@ if ( ! class_exists( 'BWS_admin_tooltip' ) ) {
765
  }
766
  }
767
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
768
  add_action( 'admin_init', 'bws_plugin_init' );
769
  add_action( 'admin_enqueue_scripts', 'bws_admin_add_scripts' );
770
  add_action( 'admin_head', 'bws_admin_head' );
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 ) {
365
  <p><?php _e( "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually.", 'bestwebsoft' ); ?></p>
366
  <?php } else { ?>
367
  <p>
368
+ <input type="text" maxlength="100" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
369
  <input type="hidden" name="bws_license_plugin" value="<?php echo $bws_license_plugin; ?>" />
370
  <input type="hidden" name="bws_license_submit" value="submit" />
371
  <input type="submit" class="button-primary" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
403
  <p><?php _e( "Unfortunately, you have exceeded the number of available tries per day.", 'bestwebsoft' ); ?></p>
404
  <?php } else { ?>
405
  <p>
406
+ <input type="text" maxlength="100" name="bws_license_key" value="" />
407
  <input type="hidden" name="bws_license_plugin" value="<?php echo $plugin_basename; ?>" />
408
  <input type="hidden" name="bws_license_submit" value="submit" />
409
  <input type="submit" class="button-primary" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
523
  <form method="post" action="admin.php?page=<?php echo $page; ?>">
524
  <p><?php echo _e( 'If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website', 'bestwebsoft' ) . ' <a href="http://bestwebsoft.com/wp-login.php">http://bestwebsoft.com/wp-login.php</a> ' . __( '(your username is the email you specify when purchasing the product). If necessary, please submit "Lost your password?" request.', 'bestwebsoft' ); ?></p>
525
  <p>
526
+ <input type="text" maxlength="100" name="bws_license_key" value="<?php echo $license_key; ?>" />
527
  <input type="hidden" name="bws_license_submit" value="submit" />
528
  <input type="submit" class="button-primary" value="<?php _e( 'Check license key', 'bestwebsoft' ) ?>" />
529
  <?php wp_nonce_field( $plugin_basename, 'bws_license_nonce_name' ); ?>
765
  }
766
  }
767
 
768
+ if ( ! function_exists ( 'bws_form_restore_default_settings' ) ) {
769
+ function bws_form_restore_default_settings( $plugin_basename ) { ?>
770
+ <form method="post" action="">
771
+ <p><?php _e( 'Restore all plugin settings to defaults', 'bestwebsoft' ); ?></p>
772
+ <p>
773
+ <input type="submit" class="button" value="<?php _e( 'Restore settings', 'bestwebsoft' ); ?>" />
774
+ </p>
775
+ <input type="hidden" name="bws_restore_default" value="submit" />
776
+ <?php wp_nonce_field( $plugin_basename, 'bws_settings_nonce_name' ); ?>
777
+ </form>
778
+ <?php }
779
+ }
780
+
781
+ if ( ! function_exists ( 'bws_form_restore_default_confirm' ) ) {
782
+ function bws_form_restore_default_confirm( $plugin_basename ) { ?>
783
+ <div>
784
+ <p><?php _e( 'Are you sure you want to restore all settings by default?', 'bestwebsoft' ) ?></p>
785
+ <form method="post" action="">
786
+ <p>
787
+ <button class="button" name="bws_restore_confirm"><?php _e( 'Yes, restore all settings', 'bestwebsoft' ) ?></button>
788
+ <button class="button" name="bws_restore_deny"><?php _e( 'No, go back to the settings page', 'bestwebsoft' ) ?></button>
789
+ <?php wp_nonce_field( $plugin_basename, 'bws_settings_nonce_name' ); ?>
790
+ </p>
791
+ </form>
792
+ </div>
793
+ <?php }
794
+ }
795
+
796
  add_action( 'admin_init', 'bws_plugin_init' );
797
  add_action( 'admin_enqueue_scripts', 'bws_admin_add_scripts' );
798
  add_action( 'admin_head', 'bws_admin_head' );
bws_menu/bws_menu.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
- * Version: 1.6.0
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
@@ -72,7 +72,10 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
72
  'link' => 'http://bestwebsoft.com/products/portfolio/?k=1249a890c5b7bba6bda3f528a94f768b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
73
  'download' => 'http://bestwebsoft.com/products/portfolio/download/?k=1249a890c5b7bba6bda3f528a94f768b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
74
  'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Portfolio+bestwebsoft&plugin-search-input=Search+Plugins',
75
- 'settings' => 'admin.php?page=portfolio.php'
 
 
 
76
  ),
77
  'gallery-plugin/gallery-plugin.php' => array(
78
  'name' => 'Gallery',
@@ -99,7 +102,10 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
99
  'link' => 'http://bestwebsoft.com/products/custom-search/?k=933be8f3a8b8719d95d1079d15443e29&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
100
  'download' => 'http://bestwebsoft.com/products/custom-search/download/?k=933be8f3a8b8719d95d1079d15443e29&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
101
  'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Custom+Search+plugin+bestwebsoft&plugin-search-input=Search+Plugins',
102
- 'settings' => 'admin.php?page=custom_search.php'
 
 
 
103
  ),
104
  'quotes-and-tips/quotes-and-tips.php'=> array(
105
  'name' => 'Quotes and Tips',
@@ -417,7 +423,23 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
417
  'download' => 'http://bestwebsoft.com/products/social-buttons-pack/download/?k=b6440fad9f54274429e536b0c61b42da&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
418
  'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Social+Buttons+Pack+BestWebSoft&plugin-search-input=Search+Plugins',
419
  'settings' => 'admin.php?page=social-buttons.php'
420
- )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
421
  );
422
 
423
  $all_plugins = get_plugins();
@@ -931,7 +953,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
931
  <p>
932
  <input type="hidden" name="bwsmn_form_submit_custom_email" value="submit" />
933
  <input type="submit" class="button" value="<?php _e( 'Send to custom email &#187;', 'bestwebsoft' ) ?>" />
934
- <input type="text" value="<?php echo $bwsmn_form_email; ?>" name="bwsmn_form_email" />
935
  <?php wp_nonce_field( plugin_basename(__FILE__), 'bwsmn_nonce_submit_custom_email' ); ?>
936
  </p>
937
  </form>
@@ -945,6 +967,8 @@ if ( ! function_exists( 'bws_get_banner_array' ) ) {
945
  function bws_get_banner_array() {
946
  global $bstwbsftwppdtplgns_banner_array;
947
  $bstwbsftwppdtplgns_banner_array = array(
 
 
948
  array( 'rlt_hide_banner_on_plugin_page', 'realty/realty.php', '1.0.0' ),
949
  array( 'prmbr_hide_banner_on_plugin_page', 'promobar/promobar.php', '1.0.0' ),
950
  array( 'gglnltcs_hide_banner_on_plugin_page', 'bws-google-analytics/bws-google-analytics.php', '1.6.2' ),
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
+ * Version: 1.6.5
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
72
  'link' => 'http://bestwebsoft.com/products/portfolio/?k=1249a890c5b7bba6bda3f528a94f768b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
73
  'download' => 'http://bestwebsoft.com/products/portfolio/download/?k=1249a890c5b7bba6bda3f528a94f768b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
74
  'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Portfolio+bestwebsoft&plugin-search-input=Search+Plugins',
75
+ 'settings' => 'admin.php?page=portfolio.php',
76
+ 'pro_version' => 'portfolio-pro/portfolio-pro.php',
77
+ 'purchase' => 'http://bestwebsoft.com/products/portfolio/buy/?k=2cc716026197d36538a414b728e49fdd&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
78
+ 'pro_settings' => 'admin.php?page=portfolio-pro.php'
79
  ),
80
  'gallery-plugin/gallery-plugin.php' => array(
81
  'name' => 'Gallery',
102
  'link' => 'http://bestwebsoft.com/products/custom-search/?k=933be8f3a8b8719d95d1079d15443e29&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
103
  'download' => 'http://bestwebsoft.com/products/custom-search/download/?k=933be8f3a8b8719d95d1079d15443e29&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
104
  'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Custom+Search+plugin+bestwebsoft&plugin-search-input=Search+Plugins',
105
+ 'settings' => 'admin.php?page=custom_search.php',
106
+ 'pro_version' => 'custom-search-pro/custom-search-pro.php',
107
+ 'purchase' => 'http://bestwebsoft.com/products/custom-search/buy/?k=062b652ac6ac8ba863c9f30fc21d62c6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
108
+ 'pro_settings' => 'admin.php?page=custom_search_pro.php'
109
  ),
110
  'quotes-and-tips/quotes-and-tips.php'=> array(
111
  'name' => 'Quotes and Tips',
423
  'download' => 'http://bestwebsoft.com/products/social-buttons-pack/download/?k=b6440fad9f54274429e536b0c61b42da&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
424
  'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Social+Buttons+Pack+BestWebSoft&plugin-search-input=Search+Plugins',
425
  'settings' => 'admin.php?page=social-buttons.php'
426
+ ),
427
+ 'pagination/pagination.php' => array(
428
+ 'name' => 'Pagination',
429
+ 'description' => 'Add pagination block to your WordPress website.',
430
+ 'link' => 'http://bestwebsoft.com/products/pagination/?k=22adb940256f149559ba8fedcd728ac8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
431
+ 'download' => 'http://bestwebsoft.com/products/pagination/download/?k=22adb940256f149559ba8fedcd728ac8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
432
+ 'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Pagination+BestWebSoft&plugin-search-input=Search+Plugins',
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,
440
+ 'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Visitors+online+BestWebSoft&plugin-search-input=Search+Plugins',
441
+ 'settings' => 'admin.php?page=visitors-online.php'
442
+ )
443
  );
444
 
445
  $all_plugins = get_plugins();
953
  <p>
954
  <input type="hidden" name="bwsmn_form_submit_custom_email" value="submit" />
955
  <input type="submit" class="button" value="<?php _e( 'Send to custom email &#187;', 'bestwebsoft' ) ?>" />
956
+ <input type="text" maxlength="250" value="<?php echo $bwsmn_form_email; ?>" name="bwsmn_form_email" />
957
  <?php wp_nonce_field( plugin_basename(__FILE__), 'bwsmn_nonce_submit_custom_email' ); ?>
958
  </p>
959
  </form>
967
  function bws_get_banner_array() {
968
  global $bstwbsftwppdtplgns_banner_array;
969
  $bstwbsftwppdtplgns_banner_array = array(
970
+ array( 'cstmsrch_hide_banner_on_plugin_page', 'custom-search-plugin/custom-search-plugin.php', '1.28' ),
971
+ array( 'prtfl_hide_banner_on_plugin_page', 'portfolio/portfolio.php', '2.33' ),
972
  array( 'rlt_hide_banner_on_plugin_page', 'realty/realty.php', '1.0.0' ),
973
  array( 'prmbr_hide_banner_on_plugin_page', 'promobar/promobar.php', '1.0.0' ),
974
  array( 'gglnltcs_hide_banner_on_plugin_page', 'bws-google-analytics/bws-google-analytics.php', '1.6.2' ),
bws_menu/icons/pagination.png ADDED
Binary file
bws_menu/icons/visitors-online.png ADDED
Binary file
bws_menu/languages/bestwebsoft-de_DE.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-de_DE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-05-11 14:10+0300\n"
6
- "PO-Revision-Date: 2015-05-11 14:10+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Lothar Schiborr <lothar.schiborr@web.de>\n"
9
  "Language: de_DE\n"
@@ -188,8 +188,8 @@ msgstr ""
188
  #: bws_functions.php:371
189
  #: bws_functions.php:401
190
  #: bws_functions.php:409
191
- #: bws_menu.php:643
192
- #: bws_menu.php:700
193
  #, fuzzy
194
  msgid "Activate"
195
  msgstr "Aktivierte Plugins"
@@ -279,11 +279,11 @@ msgstr ""
279
  # @ captcha
280
  #: bws_functions.php:552
281
  #: bws_functions.php:605
282
- #: bws_menu.php:619
283
- #: bws_menu.php:641
284
- #: bws_menu.php:668
285
- #: bws_menu.php:698
286
- #: bws_menu.php:744
287
  #, fuzzy
288
  msgid "Learn more"
289
  msgstr "Lesen Sie mehr"
@@ -317,337 +317,359 @@ msgstr ""
317
  msgid "Close"
318
  msgstr ""
319
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
320
  # @ captcha
321
- #: bws_menu.php:456
322
  msgid "Not set"
323
  msgstr "Nicht festgelegt"
324
 
325
  # @ captcha
326
- #: bws_menu.php:458
327
- #: bws_menu.php:459
328
  msgid "On"
329
  msgstr "Ein"
330
 
331
  # @ captcha
332
- #: bws_menu.php:458
333
- #: bws_menu.php:459
334
  msgid "Off"
335
  msgstr "Ausgeschaltet"
336
 
337
  # @ captcha
338
- #: bws_menu.php:460
339
- #: bws_menu.php:461
340
- #: bws_menu.php:462
341
- #: bws_menu.php:463
342
- #: bws_menu.php:464
343
  #: bws_menu.php:476
 
 
 
344
  msgid "N/A"
345
  msgstr "keine Angaben"
346
 
347
  # @ captcha
348
- #: bws_menu.php:464
349
  msgid " Mb"
350
  msgstr " Mb"
351
 
352
  # @ captcha
353
- #: bws_menu.php:465
354
- #: bws_menu.php:466
355
- #: bws_menu.php:467
356
- #: bws_menu.php:472
357
  msgid "Yes"
358
  msgstr "Ja"
359
 
360
  # @ captcha
361
- #: bws_menu.php:465
362
- #: bws_menu.php:466
363
- #: bws_menu.php:467
364
- #: bws_menu.php:474
365
  msgid "No"
366
  msgstr "Nein"
367
 
368
  # @ captcha
369
- #: bws_menu.php:484
370
  msgid "Operating System"
371
  msgstr "Betriebs-System"
372
 
373
  # @ captcha
374
- #: bws_menu.php:485
375
  msgid "Server"
376
  msgstr "Server"
377
 
378
  # @ captcha
379
- #: bws_menu.php:486
380
  msgid "Memory usage"
381
  msgstr "Speichernutzung"
382
 
383
  # @ captcha
384
- #: bws_menu.php:487
385
  msgid "MYSQL Version"
386
  msgstr "MYSQL Version"
387
 
388
  # @ captcha
389
- #: bws_menu.php:488
390
  msgid "SQL Mode"
391
  msgstr "SQL Modus"
392
 
393
  # @ captcha
394
- #: bws_menu.php:489
395
  msgid "PHP Version"
396
  msgstr "PHP Version"
397
 
398
  # @ captcha
399
- #: bws_menu.php:490
400
  msgid "PHP Safe Mode"
401
  msgstr "PHP Gesicherter Modus"
402
 
403
  # @ captcha
404
- #: bws_menu.php:491
405
  msgid "PHP Allow URL fopen"
406
  msgstr "PHP Erlaubet URL zu öffnen (fopen)"
407
 
408
  # @ captcha
409
- #: bws_menu.php:492
410
  msgid "PHP Memory Limit"
411
  msgstr "PHP Speicher-Grenze"
412
 
413
  # @ captcha
414
- #: bws_menu.php:493
415
  msgid "PHP Max Upload Size"
416
  msgstr "PHP Maximale Upload Größe"
417
 
418
  # @ captcha
419
- #: bws_menu.php:494
420
  msgid "PHP Max Post Size"
421
  msgstr "PHP Maximale Beitrags-Größe"
422
 
423
  # @ captcha
424
- #: bws_menu.php:495
425
  msgid "PHP Max Script Execute Time"
426
  msgstr "PHP Maximale Script Ausführungszeit"
427
 
428
  # @ captcha
429
- #: bws_menu.php:496
430
  msgid "PHP Exif support"
431
  msgstr "PHP Exif Support"
432
 
433
  # @ captcha
434
- #: bws_menu.php:497
435
  msgid "PHP IPTC support"
436
  msgstr "PHP IPTC Support"
437
 
438
  # @ captcha
439
- #: bws_menu.php:498
440
  msgid "PHP XML support"
441
  msgstr "PHP XML Support"
442
 
443
  # @ captcha
444
- #: bws_menu.php:499
445
  msgid "Site URL"
446
  msgstr "Site URL"
447
 
448
  # @ captcha
449
- #: bws_menu.php:500
450
  msgid "Home URL"
451
  msgstr "Home URL"
452
 
453
  # @ captcha
454
- #: bws_menu.php:503
455
  msgid "WordPress Version"
456
  msgstr "WordPress Version"
457
 
458
  # @ captcha
459
- #: bws_menu.php:504
460
  msgid "WordPress DB Version"
461
  msgstr "WordPress DB Version"
462
 
463
  # @ captcha
464
- #: bws_menu.php:505
465
  msgid "Multisite"
466
  msgstr "Multisite"
467
 
468
  # @ captcha
469
- #: bws_menu.php:506
470
  msgid "Active Theme"
471
  msgstr "Actives Theme"
472
 
473
  # @ captcha
474
- #: bws_menu.php:521
475
  msgid "Please enter a valid email address."
476
  msgstr "Bitte geben Sie eine gültige E-Mail-Adresse ein."
477
 
478
  # @ captcha
479
- #: bws_menu.php:525
480
  msgid "Email with system info is sent to "
481
  msgstr "E-Mail-mit System Informationen wird gesendet an "
482
 
483
  # @ captcha
484
- #: bws_menu.php:529
485
  msgid "Thank you for contacting us."
486
  msgstr "Vielen Dank für Ihre Kontaktaufnahme."
487
 
488
  # @ captcha
489
- #: bws_menu.php:562
490
  msgid "Sorry, email message could not be delivered."
491
  msgstr "Sorry, E-Mail konnte nicht zugestellt werden."
492
 
493
- #: bws_menu.php:570
494
  msgid "Need help?"
495
  msgstr ""
496
 
497
- #: bws_menu.php:571
498
  msgid "Client area"
499
  msgstr ""
500
 
501
  # @ captcha
502
- #: bws_menu.php:572
503
- #: bws_menu.php:883
504
  msgid "System status"
505
  msgstr "System Status"
506
 
507
  # @ captcha
508
- #: bws_menu.php:577
509
  #, fuzzy
510
  msgid "Plugins"
511
  msgstr "BWS Plugins"
512
 
513
- #: bws_menu.php:579
514
  msgid "Themes"
515
  msgstr ""
516
 
517
- #: bws_menu.php:584
518
  msgid "All"
519
  msgstr ""
520
 
521
  # @ default
522
- #: bws_menu.php:585
523
  #, fuzzy
524
  msgid "Installed"
525
  msgstr "Installiere %s"
526
 
527
  # @ captcha
528
- #: bws_menu.php:586
529
  #, fuzzy
530
  msgid "Recommended"
531
  msgstr "Empfohlene Plugins"
532
 
533
  # @ captcha
534
- #: bws_menu.php:590
535
  msgid "Installed plugins"
536
  msgstr "Installierte Plugins"
537
 
538
  # @ captcha
539
- #: bws_menu.php:622
540
- #: bws_menu.php:671
541
  msgid "Settings"
542
  msgstr "Einstellungen"
543
 
544
  # @ captcha
545
- #: bws_menu.php:643
546
- #: bws_menu.php:700
547
  #, fuzzy
548
  msgid "Activate this plugin"
549
  msgstr "Aktivierte Plugins"
550
 
551
- #: bws_menu.php:658
552
- #: bws_menu.php:688
553
- #: bws_menu.php:734
554
  msgid "Go"
555
  msgstr ""
556
 
557
- #: bws_menu.php:662
558
- #: bws_menu.php:692
559
- #: bws_menu.php:738
560
  msgid "DONATE"
561
  msgstr ""
562
 
563
  # @ captcha
564
- #: bws_menu.php:708
565
  msgid "Recommended plugins"
566
  msgstr "Empfohlene Plugins"
567
 
568
  # @ default
569
- #: bws_menu.php:746
570
  #, fuzzy
571
  msgid "Install now"
572
  msgstr "Installiere %s"
573
 
574
- #: bws_menu.php:767
575
  msgid "Try again"
576
  msgstr ""
577
 
578
- #: bws_menu.php:785
579
  #, php-format
580
  msgid "Preview &#8220;%s&#8221;"
581
  msgstr ""
582
 
583
  # @ default
584
- #: bws_menu.php:816
585
  #, php-format
586
  msgid "Install %s"
587
  msgstr "Installiere %s"
588
 
589
  # @ default
590
- #: bws_menu.php:816
591
  #, fuzzy
592
  msgid "Install Now"
593
  msgstr "Installiere %s"
594
 
595
- #: bws_menu.php:819
596
  #, php-format
597
  msgid "Update to version %s"
598
  msgstr ""
599
 
600
- #: bws_menu.php:819
601
  msgid "Update"
602
  msgstr ""
603
 
604
- #: bws_menu.php:826
605
  #, php-format
606
  msgid "Preview %s"
607
  msgstr ""
608
 
609
- #: bws_menu.php:826
610
  msgid "Preview"
611
  msgstr ""
612
 
613
- #: bws_menu.php:832
614
- #: bws_menu.php:864
615
  #, php-format
616
  msgid "By %s"
617
  msgstr ""
618
 
619
- #: bws_menu.php:838
620
  msgid "Details"
621
  msgstr ""
622
 
623
  # @ default
624
- #: bws_menu.php:870
625
  #, fuzzy
626
  msgid "Already Installed"
627
  msgstr "Installiere %s"
628
 
629
  # @ captcha
630
- #: bws_menu.php:886
631
  msgid "Environment"
632
  msgstr "Umgebungsvariable"
633
 
634
  # @ captcha
635
- #: bws_menu.php:897
636
  msgid "Active Plugins"
637
  msgstr "Aktivierte Plugins"
638
 
639
  # @ captcha
640
- #: bws_menu.php:910
641
  msgid "Inactive Plugins"
642
  msgstr "Inactive Plugins"
643
 
644
  # @ captcha
645
- #: bws_menu.php:926
646
  msgid "Send to support"
647
  msgstr "Sende zuzm Support"
648
 
649
  # @ captcha
650
- #: bws_menu.php:933
651
  msgid "Send to custom email &#187;"
652
  msgstr "Senden Sie eine benutzerdefinierte E-Mail zu &#187;"
653
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-06-12 15:56+0300\n"
6
+ "PO-Revision-Date: 2015-06-12 15:56+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Lothar Schiborr <lothar.schiborr@web.de>\n"
9
  "Language: de_DE\n"
188
  #: bws_functions.php:371
189
  #: bws_functions.php:401
190
  #: bws_functions.php:409
191
+ #: bws_menu.php:657
192
+ #: bws_menu.php:714
193
  #, fuzzy
194
  msgid "Activate"
195
  msgstr "Aktivierte Plugins"
279
  # @ captcha
280
  #: bws_functions.php:552
281
  #: bws_functions.php:605
282
+ #: bws_menu.php:633
283
+ #: bws_menu.php:655
284
+ #: bws_menu.php:682
285
+ #: bws_menu.php:712
286
+ #: bws_menu.php:758
287
  #, fuzzy
288
  msgid "Learn more"
289
  msgstr "Lesen Sie mehr"
317
  msgid "Close"
318
  msgstr ""
319
 
320
+ #: bws_functions.php:771
321
+ #: bws_functions.php:784
322
+ msgid "Restore all plugin settings to defaults"
323
+ msgstr ""
324
+
325
+ #: bws_functions.php:773
326
+ #: bws_functions.php:786
327
+ msgid "Restore settings"
328
+ msgstr ""
329
+
330
+ #: bws_functions.php:797
331
+ msgid "Are you sure you want to restore all settings by default?"
332
+ msgstr ""
333
+
334
+ #: bws_functions.php:799
335
+ msgid "Yes, restore all settings"
336
+ msgstr ""
337
+
338
+ #: bws_functions.php:800
339
+ msgid "No, go back to the settings page"
340
+ msgstr ""
341
+
342
  # @ captcha
343
+ #: bws_menu.php:470
344
  msgid "Not set"
345
  msgstr "Nicht festgelegt"
346
 
347
  # @ captcha
348
+ #: bws_menu.php:472
349
+ #: bws_menu.php:473
350
  msgid "On"
351
  msgstr "Ein"
352
 
353
  # @ captcha
354
+ #: bws_menu.php:472
355
+ #: bws_menu.php:473
356
  msgid "Off"
357
  msgstr "Ausgeschaltet"
358
 
359
  # @ captcha
360
+ #: bws_menu.php:474
361
+ #: bws_menu.php:475
 
 
 
362
  #: bws_menu.php:476
363
+ #: bws_menu.php:477
364
+ #: bws_menu.php:478
365
+ #: bws_menu.php:490
366
  msgid "N/A"
367
  msgstr "keine Angaben"
368
 
369
  # @ captcha
370
+ #: bws_menu.php:478
371
  msgid " Mb"
372
  msgstr " Mb"
373
 
374
  # @ captcha
375
+ #: bws_menu.php:479
376
+ #: bws_menu.php:480
377
+ #: bws_menu.php:481
378
+ #: bws_menu.php:486
379
  msgid "Yes"
380
  msgstr "Ja"
381
 
382
  # @ captcha
383
+ #: bws_menu.php:479
384
+ #: bws_menu.php:480
385
+ #: bws_menu.php:481
386
+ #: bws_menu.php:488
387
  msgid "No"
388
  msgstr "Nein"
389
 
390
  # @ captcha
391
+ #: bws_menu.php:498
392
  msgid "Operating System"
393
  msgstr "Betriebs-System"
394
 
395
  # @ captcha
396
+ #: bws_menu.php:499
397
  msgid "Server"
398
  msgstr "Server"
399
 
400
  # @ captcha
401
+ #: bws_menu.php:500
402
  msgid "Memory usage"
403
  msgstr "Speichernutzung"
404
 
405
  # @ captcha
406
+ #: bws_menu.php:501
407
  msgid "MYSQL Version"
408
  msgstr "MYSQL Version"
409
 
410
  # @ captcha
411
+ #: bws_menu.php:502
412
  msgid "SQL Mode"
413
  msgstr "SQL Modus"
414
 
415
  # @ captcha
416
+ #: bws_menu.php:503
417
  msgid "PHP Version"
418
  msgstr "PHP Version"
419
 
420
  # @ captcha
421
+ #: bws_menu.php:504
422
  msgid "PHP Safe Mode"
423
  msgstr "PHP Gesicherter Modus"
424
 
425
  # @ captcha
426
+ #: bws_menu.php:505
427
  msgid "PHP Allow URL fopen"
428
  msgstr "PHP Erlaubet URL zu öffnen (fopen)"
429
 
430
  # @ captcha
431
+ #: bws_menu.php:506
432
  msgid "PHP Memory Limit"
433
  msgstr "PHP Speicher-Grenze"
434
 
435
  # @ captcha
436
+ #: bws_menu.php:507
437
  msgid "PHP Max Upload Size"
438
  msgstr "PHP Maximale Upload Größe"
439
 
440
  # @ captcha
441
+ #: bws_menu.php:508
442
  msgid "PHP Max Post Size"
443
  msgstr "PHP Maximale Beitrags-Größe"
444
 
445
  # @ captcha
446
+ #: bws_menu.php:509
447
  msgid "PHP Max Script Execute Time"
448
  msgstr "PHP Maximale Script Ausführungszeit"
449
 
450
  # @ captcha
451
+ #: bws_menu.php:510
452
  msgid "PHP Exif support"
453
  msgstr "PHP Exif Support"
454
 
455
  # @ captcha
456
+ #: bws_menu.php:511
457
  msgid "PHP IPTC support"
458
  msgstr "PHP IPTC Support"
459
 
460
  # @ captcha
461
+ #: bws_menu.php:512
462
  msgid "PHP XML support"
463
  msgstr "PHP XML Support"
464
 
465
  # @ captcha
466
+ #: bws_menu.php:513
467
  msgid "Site URL"
468
  msgstr "Site URL"
469
 
470
  # @ captcha
471
+ #: bws_menu.php:514
472
  msgid "Home URL"
473
  msgstr "Home URL"
474
 
475
  # @ captcha
476
+ #: bws_menu.php:517
477
  msgid "WordPress Version"
478
  msgstr "WordPress Version"
479
 
480
  # @ captcha
481
+ #: bws_menu.php:518
482
  msgid "WordPress DB Version"
483
  msgstr "WordPress DB Version"
484
 
485
  # @ captcha
486
+ #: bws_menu.php:519
487
  msgid "Multisite"
488
  msgstr "Multisite"
489
 
490
  # @ captcha
491
+ #: bws_menu.php:520
492
  msgid "Active Theme"
493
  msgstr "Actives Theme"
494
 
495
  # @ captcha
496
+ #: bws_menu.php:535
497
  msgid "Please enter a valid email address."
498
  msgstr "Bitte geben Sie eine gültige E-Mail-Adresse ein."
499
 
500
  # @ captcha
501
+ #: bws_menu.php:539
502
  msgid "Email with system info is sent to "
503
  msgstr "E-Mail-mit System Informationen wird gesendet an "
504
 
505
  # @ captcha
506
+ #: bws_menu.php:543
507
  msgid "Thank you for contacting us."
508
  msgstr "Vielen Dank für Ihre Kontaktaufnahme."
509
 
510
  # @ captcha
511
+ #: bws_menu.php:576
512
  msgid "Sorry, email message could not be delivered."
513
  msgstr "Sorry, E-Mail konnte nicht zugestellt werden."
514
 
515
+ #: bws_menu.php:584
516
  msgid "Need help?"
517
  msgstr ""
518
 
519
+ #: bws_menu.php:585
520
  msgid "Client area"
521
  msgstr ""
522
 
523
  # @ captcha
524
+ #: bws_menu.php:586
525
+ #: bws_menu.php:897
526
  msgid "System status"
527
  msgstr "System Status"
528
 
529
  # @ captcha
530
+ #: bws_menu.php:591
531
  #, fuzzy
532
  msgid "Plugins"
533
  msgstr "BWS Plugins"
534
 
535
+ #: bws_menu.php:593
536
  msgid "Themes"
537
  msgstr ""
538
 
539
+ #: bws_menu.php:598
540
  msgid "All"
541
  msgstr ""
542
 
543
  # @ default
544
+ #: bws_menu.php:599
545
  #, fuzzy
546
  msgid "Installed"
547
  msgstr "Installiere %s"
548
 
549
  # @ captcha
550
+ #: bws_menu.php:600
551
  #, fuzzy
552
  msgid "Recommended"
553
  msgstr "Empfohlene Plugins"
554
 
555
  # @ captcha
556
+ #: bws_menu.php:604
557
  msgid "Installed plugins"
558
  msgstr "Installierte Plugins"
559
 
560
  # @ captcha
561
+ #: bws_menu.php:636
562
+ #: bws_menu.php:685
563
  msgid "Settings"
564
  msgstr "Einstellungen"
565
 
566
  # @ captcha
567
+ #: bws_menu.php:657
568
+ #: bws_menu.php:714
569
  #, fuzzy
570
  msgid "Activate this plugin"
571
  msgstr "Aktivierte Plugins"
572
 
573
+ #: bws_menu.php:672
574
+ #: bws_menu.php:702
575
+ #: bws_menu.php:748
576
  msgid "Go"
577
  msgstr ""
578
 
579
+ #: bws_menu.php:676
580
+ #: bws_menu.php:706
581
+ #: bws_menu.php:752
582
  msgid "DONATE"
583
  msgstr ""
584
 
585
  # @ captcha
586
+ #: bws_menu.php:722
587
  msgid "Recommended plugins"
588
  msgstr "Empfohlene Plugins"
589
 
590
  # @ default
591
+ #: bws_menu.php:760
592
  #, fuzzy
593
  msgid "Install now"
594
  msgstr "Installiere %s"
595
 
596
+ #: bws_menu.php:781
597
  msgid "Try again"
598
  msgstr ""
599
 
600
+ #: bws_menu.php:799
601
  #, php-format
602
  msgid "Preview &#8220;%s&#8221;"
603
  msgstr ""
604
 
605
  # @ default
606
+ #: bws_menu.php:830
607
  #, php-format
608
  msgid "Install %s"
609
  msgstr "Installiere %s"
610
 
611
  # @ default
612
+ #: bws_menu.php:830
613
  #, fuzzy
614
  msgid "Install Now"
615
  msgstr "Installiere %s"
616
 
617
+ #: bws_menu.php:833
618
  #, php-format
619
  msgid "Update to version %s"
620
  msgstr ""
621
 
622
+ #: bws_menu.php:833
623
  msgid "Update"
624
  msgstr ""
625
 
626
+ #: bws_menu.php:840
627
  #, php-format
628
  msgid "Preview %s"
629
  msgstr ""
630
 
631
+ #: bws_menu.php:840
632
  msgid "Preview"
633
  msgstr ""
634
 
635
+ #: bws_menu.php:846
636
+ #: bws_menu.php:878
637
  #, php-format
638
  msgid "By %s"
639
  msgstr ""
640
 
641
+ #: bws_menu.php:852
642
  msgid "Details"
643
  msgstr ""
644
 
645
  # @ default
646
+ #: bws_menu.php:884
647
  #, fuzzy
648
  msgid "Already Installed"
649
  msgstr "Installiere %s"
650
 
651
  # @ captcha
652
+ #: bws_menu.php:900
653
  msgid "Environment"
654
  msgstr "Umgebungsvariable"
655
 
656
  # @ captcha
657
+ #: bws_menu.php:911
658
  msgid "Active Plugins"
659
  msgstr "Aktivierte Plugins"
660
 
661
  # @ captcha
662
+ #: bws_menu.php:924
663
  msgid "Inactive Plugins"
664
  msgstr "Inactive Plugins"
665
 
666
  # @ captcha
667
+ #: bws_menu.php:940
668
  msgid "Send to support"
669
  msgstr "Sende zuzm Support"
670
 
671
  # @ captcha
672
+ #: bws_menu.php:947
673
  msgid "Send to custom email &#187;"
674
  msgstr "Senden Sie eine benutzerdefinierte E-Mail zu &#187;"
675
 
bws_menu/languages/bestwebsoft-fr_FR.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-05-11 14:11+0300\n"
6
- "PO-Revision-Date: 2015-05-11 14:11+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
@@ -176,8 +176,8 @@ msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
176
  #: bws_functions.php:371
177
  #: bws_functions.php:401
178
  #: bws_functions.php:409
179
- #: bws_menu.php:643
180
- #: bws_menu.php:700
181
  msgid "Activate"
182
  msgstr "Activé"
183
 
@@ -249,12 +249,11 @@ msgstr "Vérifier la clé de licence"
249
 
250
  #: bws_functions.php:542
251
  msgid "WARNING: Illegal use notification"
252
- msgstr ""
253
 
254
  #: bws_functions.php:542
255
- #, fuzzy
256
  msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
257
- msgstr "AVERTISSEMENT : Nous avons détecté une utilisation abusive de notre extension. Nous vous recommandons de résoudre ce problème dans les 24 heures, sinon l'extension sera rendue inactive. Merci de vous rendre dans votre espace personel"
258
 
259
  #: bws_functions.php:550
260
  msgid "Notice: Your PRO Trial license has expired. To continue using the plugin you should buy a PRO license"
@@ -266,11 +265,11 @@ msgstr "Votre licence est terminée. Pour continuer à disposer du support rapid
266
 
267
  #: bws_functions.php:552
268
  #: bws_functions.php:605
269
- #: bws_menu.php:619
270
- #: bws_menu.php:641
271
- #: bws_menu.php:668
272
- #: bws_menu.php:698
273
- #: bws_menu.php:744
274
  msgid "Learn more"
275
  msgstr "En savoir plus"
276
 
@@ -303,281 +302,306 @@ msgstr "et vous ne diposerez plus du support rapide et des mises à jour."
303
  msgid "Close"
304
  msgstr "Fermer"
305
 
306
- #: bws_menu.php:456
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
307
  msgid "Not set"
308
  msgstr "Not set"
309
 
310
- #: bws_menu.php:458
311
- #: bws_menu.php:459
312
  msgid "On"
313
  msgstr "On"
314
 
315
- #: bws_menu.php:458
316
- #: bws_menu.php:459
317
  msgid "Off"
318
  msgstr "Off"
319
 
320
- #: bws_menu.php:460
321
- #: bws_menu.php:461
322
- #: bws_menu.php:462
323
- #: bws_menu.php:463
324
- #: bws_menu.php:464
325
  #: bws_menu.php:476
 
 
 
326
  msgid "N/A"
327
  msgstr "N/A"
328
 
329
- #: bws_menu.php:464
330
  msgid " Mb"
331
  msgstr " Mb"
332
 
333
- #: bws_menu.php:465
334
- #: bws_menu.php:466
335
- #: bws_menu.php:467
336
- #: bws_menu.php:472
337
  msgid "Yes"
338
  msgstr "Yes"
339
 
340
- #: bws_menu.php:465
341
- #: bws_menu.php:466
342
- #: bws_menu.php:467
343
- #: bws_menu.php:474
344
  msgid "No"
345
  msgstr "No"
346
 
347
- #: bws_menu.php:484
348
  msgid "Operating System"
349
  msgstr "Operating System"
350
 
351
- #: bws_menu.php:485
352
  msgid "Server"
353
  msgstr "Server"
354
 
355
- #: bws_menu.php:486
356
  msgid "Memory usage"
357
  msgstr "Memory usage"
358
 
359
- #: bws_menu.php:487
360
  msgid "MYSQL Version"
361
  msgstr "MYSQL Version"
362
 
363
- #: bws_menu.php:488
364
  msgid "SQL Mode"
365
  msgstr "SQL Mode"
366
 
367
- #: bws_menu.php:489
368
  msgid "PHP Version"
369
  msgstr "PHP Version"
370
 
371
- #: bws_menu.php:490
372
  msgid "PHP Safe Mode"
373
  msgstr "PHP Safe Mode"
374
 
375
- #: bws_menu.php:491
376
  msgid "PHP Allow URL fopen"
377
  msgstr "PHP Allow URL fopen"
378
 
379
- #: bws_menu.php:492
380
  msgid "PHP Memory Limit"
381
  msgstr "PHP Memory Limit"
382
 
383
- #: bws_menu.php:493
384
  msgid "PHP Max Upload Size"
385
  msgstr "PHP Max Upload Size"
386
 
387
- #: bws_menu.php:494
388
  msgid "PHP Max Post Size"
389
  msgstr "PHP Max Post Size"
390
 
391
- #: bws_menu.php:495
392
  msgid "PHP Max Script Execute Time"
393
  msgstr "PHP Max Script Execute Time"
394
 
395
- #: bws_menu.php:496
396
  msgid "PHP Exif support"
397
  msgstr "PHP Exif support"
398
 
399
- #: bws_menu.php:497
400
  msgid "PHP IPTC support"
401
  msgstr "PHP IPTC support"
402
 
403
- #: bws_menu.php:498
404
  msgid "PHP XML support"
405
  msgstr "PHP XML support"
406
 
407
- #: bws_menu.php:499
408
  msgid "Site URL"
409
  msgstr "Site URL"
410
 
411
- #: bws_menu.php:500
412
  msgid "Home URL"
413
  msgstr "Home URL"
414
 
415
- #: bws_menu.php:503
416
  msgid "WordPress Version"
417
  msgstr "WordPress Version"
418
 
419
- #: bws_menu.php:504
420
  msgid "WordPress DB Version"
421
  msgstr "WordPress DB Version"
422
 
423
- #: bws_menu.php:505
424
  msgid "Multisite"
425
  msgstr "Multisite"
426
 
427
- #: bws_menu.php:506
428
  msgid "Active Theme"
429
  msgstr "Active Theme"
430
 
431
- #: bws_menu.php:521
432
  msgid "Please enter a valid email address."
433
  msgstr "Merci de saisir une adresse e-mail valide."
434
 
435
- #: bws_menu.php:525
436
  msgid "Email with system info is sent to "
437
  msgstr "Le courriel avec les informations système est envoyé à"
438
 
439
- #: bws_menu.php:529
440
  msgid "Thank you for contacting us."
441
  msgstr "Merci de nous avoir contacté."
442
 
443
- #: bws_menu.php:562
444
  msgid "Sorry, email message could not be delivered."
445
  msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
446
 
447
- #: bws_menu.php:570
448
  msgid "Need help?"
449
  msgstr "Besoin d'aide ?"
450
 
451
- #: bws_menu.php:571
452
  msgid "Client area"
453
  msgstr "Espace client"
454
 
455
- #: bws_menu.php:572
456
- #: bws_menu.php:883
457
  msgid "System status"
458
  msgstr "System status"
459
 
460
- #: bws_menu.php:577
461
  msgid "Plugins"
462
- msgstr "Externsions"
463
 
464
- #: bws_menu.php:579
465
  msgid "Themes"
466
  msgstr "Thèmes"
467
 
468
- #: bws_menu.php:584
469
  msgid "All"
470
  msgstr "Tous"
471
 
472
- #: bws_menu.php:585
473
  msgid "Installed"
474
  msgstr "Installé"
475
 
476
- #: bws_menu.php:586
477
  msgid "Recommended"
478
  msgstr "Recommandé"
479
 
480
- #: bws_menu.php:590
481
  msgid "Installed plugins"
482
  msgstr "Plugin installé"
483
 
484
- #: bws_menu.php:622
485
- #: bws_menu.php:671
486
  msgid "Settings"
487
  msgstr "Réglages"
488
 
489
- #: bws_menu.php:643
490
- #: bws_menu.php:700
491
  msgid "Activate this plugin"
492
  msgstr "Activer cette extension"
493
 
494
- #: bws_menu.php:658
495
- #: bws_menu.php:688
496
- #: bws_menu.php:734
497
  msgid "Go"
498
  msgstr "Passez"
499
 
500
- #: bws_menu.php:662
501
- #: bws_menu.php:692
502
- #: bws_menu.php:738
503
  msgid "DONATE"
504
  msgstr "Faire un don"
505
 
506
- #: bws_menu.php:708
507
  msgid "Recommended plugins"
508
  msgstr "Plugin recommandé"
509
 
510
- #: bws_menu.php:746
511
  msgid "Install now"
512
  msgstr "Installer maintenant"
513
 
514
- #: bws_menu.php:767
515
  msgid "Try again"
516
  msgstr "Essayer de nouveau"
517
 
518
- #: bws_menu.php:785
519
  #, php-format
520
  msgid "Preview &#8220;%s&#8221;"
521
  msgstr "Pré-visualiser &#8220;%s&#8221;"
522
 
523
- #: bws_menu.php:816
524
  #, php-format
525
  msgid "Install %s"
526
  msgstr "%s installé"
527
 
528
- #: bws_menu.php:816
529
  msgid "Install Now"
530
  msgstr "Installa Ora"
531
 
532
- #: bws_menu.php:819
533
  #, php-format
534
  msgid "Update to version %s"
535
  msgstr "Mettre à jour pour la version %s"
536
 
537
- #: bws_menu.php:819
538
  msgid "Update"
539
  msgstr "Mettre à jour"
540
 
541
- #: bws_menu.php:826
542
  #, php-format
543
  msgid "Preview %s"
544
  msgstr "Pré-visualiser %s"
545
 
546
- #: bws_menu.php:826
547
  msgid "Preview"
548
  msgstr "Pré-visualiser"
549
 
550
- #: bws_menu.php:832
551
- #: bws_menu.php:864
552
  #, php-format
553
  msgid "By %s"
554
  msgstr "Par %s"
555
 
556
- #: bws_menu.php:838
557
  msgid "Details"
558
  msgstr "Détails"
559
 
560
- #: bws_menu.php:870
561
  msgid "Already Installed"
562
  msgstr "Déjà installé"
563
 
564
- #: bws_menu.php:886
565
  msgid "Environment"
566
  msgstr "Environment"
567
 
568
- #: bws_menu.php:897
569
  msgid "Active Plugins"
570
  msgstr "Plugin actifs"
571
 
572
- #: bws_menu.php:910
573
  msgid "Inactive Plugins"
574
  msgstr "Plugin inactifs"
575
 
576
- #: bws_menu.php:926
577
  msgid "Send to support"
578
  msgstr "Envoyé au support"
579
 
580
- #: bws_menu.php:933
581
  msgid "Send to custom email &#187;"
582
  msgstr "Envoyer un e-mail spécifique &#187;"
583
 
@@ -1104,9 +1128,6 @@ msgstr "Envoyer un e-mail spécifique &#187;"
1104
  #~ msgid "Support"
1105
  #~ msgstr "Support"
1106
 
1107
- #~ msgid "Are you sure that you want to delete this language data?"
1108
- #~ msgstr "Etes vous sûr de vouloir supprimer cette langue ?"
1109
-
1110
  #~ msgid "Display Attachment tips"
1111
  #~ msgstr "Afficher les explications sur les pièces jointes"
1112
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-06-12 15:56+0300\n"
6
+ "PO-Revision-Date: 2015-06-12 15:56+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
176
  #: bws_functions.php:371
177
  #: bws_functions.php:401
178
  #: bws_functions.php:409
179
+ #: bws_menu.php:657
180
+ #: bws_menu.php:714
181
  msgid "Activate"
182
  msgstr "Activé"
183
 
249
 
250
  #: bws_functions.php:542
251
  msgid "WARNING: Illegal use notification"
252
+ msgstr "AVERTISSEMENT : Notification d'utilisation abusive"
253
 
254
  #: bws_functions.php:542
 
255
  msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
256
+ msgstr "Nous avons détecté une utilisation abusive de notre extension. Nous vous recommandons de résoudre ce problème dans les 24 heures, sinon l'extension sera rendue inactive. Merci de vous rendre dans votre espace personel"
257
 
258
  #: bws_functions.php:550
259
  msgid "Notice: Your PRO Trial license has expired. To continue using the plugin you should buy a PRO license"
265
 
266
  #: bws_functions.php:552
267
  #: bws_functions.php:605
268
+ #: bws_menu.php:633
269
+ #: bws_menu.php:655
270
+ #: bws_menu.php:682
271
+ #: bws_menu.php:712
272
+ #: bws_menu.php:758
273
  msgid "Learn more"
274
  msgstr "En savoir plus"
275
 
302
  msgid "Close"
303
  msgstr "Fermer"
304
 
305
+ #: bws_functions.php:771
306
+ #: bws_functions.php:784
307
+ msgid "Restore all plugin settings to defaults"
308
+ msgstr ""
309
+
310
+ #: bws_functions.php:773
311
+ #: bws_functions.php:786
312
+ #, fuzzy
313
+ msgid "Restore settings"
314
+ msgstr "Options supplémentaires"
315
+
316
+ #: bws_functions.php:797
317
+ #, fuzzy
318
+ msgid "Are you sure you want to restore all settings by default?"
319
+ msgstr "Etes vous sûr de vouloir supprimer cette langue ?"
320
+
321
+ #: bws_functions.php:799
322
+ msgid "Yes, restore all settings"
323
+ msgstr ""
324
+
325
+ #: bws_functions.php:800
326
+ #, fuzzy
327
+ msgid "No, go back to the settings page"
328
+ msgstr "Options supplémentaires"
329
+
330
+ #: bws_menu.php:470
331
  msgid "Not set"
332
  msgstr "Not set"
333
 
334
+ #: bws_menu.php:472
335
+ #: bws_menu.php:473
336
  msgid "On"
337
  msgstr "On"
338
 
339
+ #: bws_menu.php:472
340
+ #: bws_menu.php:473
341
  msgid "Off"
342
  msgstr "Off"
343
 
344
+ #: bws_menu.php:474
345
+ #: bws_menu.php:475
 
 
 
346
  #: bws_menu.php:476
347
+ #: bws_menu.php:477
348
+ #: bws_menu.php:478
349
+ #: bws_menu.php:490
350
  msgid "N/A"
351
  msgstr "N/A"
352
 
353
+ #: bws_menu.php:478
354
  msgid " Mb"
355
  msgstr " Mb"
356
 
357
+ #: bws_menu.php:479
358
+ #: bws_menu.php:480
359
+ #: bws_menu.php:481
360
+ #: bws_menu.php:486
361
  msgid "Yes"
362
  msgstr "Yes"
363
 
364
+ #: bws_menu.php:479
365
+ #: bws_menu.php:480
366
+ #: bws_menu.php:481
367
+ #: bws_menu.php:488
368
  msgid "No"
369
  msgstr "No"
370
 
371
+ #: bws_menu.php:498
372
  msgid "Operating System"
373
  msgstr "Operating System"
374
 
375
+ #: bws_menu.php:499
376
  msgid "Server"
377
  msgstr "Server"
378
 
379
+ #: bws_menu.php:500
380
  msgid "Memory usage"
381
  msgstr "Memory usage"
382
 
383
+ #: bws_menu.php:501
384
  msgid "MYSQL Version"
385
  msgstr "MYSQL Version"
386
 
387
+ #: bws_menu.php:502
388
  msgid "SQL Mode"
389
  msgstr "SQL Mode"
390
 
391
+ #: bws_menu.php:503
392
  msgid "PHP Version"
393
  msgstr "PHP Version"
394
 
395
+ #: bws_menu.php:504
396
  msgid "PHP Safe Mode"
397
  msgstr "PHP Safe Mode"
398
 
399
+ #: bws_menu.php:505
400
  msgid "PHP Allow URL fopen"
401
  msgstr "PHP Allow URL fopen"
402
 
403
+ #: bws_menu.php:506
404
  msgid "PHP Memory Limit"
405
  msgstr "PHP Memory Limit"
406
 
407
+ #: bws_menu.php:507
408
  msgid "PHP Max Upload Size"
409
  msgstr "PHP Max Upload Size"
410
 
411
+ #: bws_menu.php:508
412
  msgid "PHP Max Post Size"
413
  msgstr "PHP Max Post Size"
414
 
415
+ #: bws_menu.php:509
416
  msgid "PHP Max Script Execute Time"
417
  msgstr "PHP Max Script Execute Time"
418
 
419
+ #: bws_menu.php:510
420
  msgid "PHP Exif support"
421
  msgstr "PHP Exif support"
422
 
423
+ #: bws_menu.php:511
424
  msgid "PHP IPTC support"
425
  msgstr "PHP IPTC support"
426
 
427
+ #: bws_menu.php:512
428
  msgid "PHP XML support"
429
  msgstr "PHP XML support"
430
 
431
+ #: bws_menu.php:513
432
  msgid "Site URL"
433
  msgstr "Site URL"
434
 
435
+ #: bws_menu.php:514
436
  msgid "Home URL"
437
  msgstr "Home URL"
438
 
439
+ #: bws_menu.php:517
440
  msgid "WordPress Version"
441
  msgstr "WordPress Version"
442
 
443
+ #: bws_menu.php:518
444
  msgid "WordPress DB Version"
445
  msgstr "WordPress DB Version"
446
 
447
+ #: bws_menu.php:519
448
  msgid "Multisite"
449
  msgstr "Multisite"
450
 
451
+ #: bws_menu.php:520
452
  msgid "Active Theme"
453
  msgstr "Active Theme"
454
 
455
+ #: bws_menu.php:535
456
  msgid "Please enter a valid email address."
457
  msgstr "Merci de saisir une adresse e-mail valide."
458
 
459
+ #: bws_menu.php:539
460
  msgid "Email with system info is sent to "
461
  msgstr "Le courriel avec les informations système est envoyé à"
462
 
463
+ #: bws_menu.php:543
464
  msgid "Thank you for contacting us."
465
  msgstr "Merci de nous avoir contacté."
466
 
467
+ #: bws_menu.php:576
468
  msgid "Sorry, email message could not be delivered."
469
  msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
470
 
471
+ #: bws_menu.php:584
472
  msgid "Need help?"
473
  msgstr "Besoin d'aide ?"
474
 
475
+ #: bws_menu.php:585
476
  msgid "Client area"
477
  msgstr "Espace client"
478
 
479
+ #: bws_menu.php:586
480
+ #: bws_menu.php:897
481
  msgid "System status"
482
  msgstr "System status"
483
 
484
+ #: bws_menu.php:591
485
  msgid "Plugins"
486
+ msgstr "Extensions"
487
 
488
+ #: bws_menu.php:593
489
  msgid "Themes"
490
  msgstr "Thèmes"
491
 
492
+ #: bws_menu.php:598
493
  msgid "All"
494
  msgstr "Tous"
495
 
496
+ #: bws_menu.php:599
497
  msgid "Installed"
498
  msgstr "Installé"
499
 
500
+ #: bws_menu.php:600
501
  msgid "Recommended"
502
  msgstr "Recommandé"
503
 
504
+ #: bws_menu.php:604
505
  msgid "Installed plugins"
506
  msgstr "Plugin installé"
507
 
508
+ #: bws_menu.php:636
509
+ #: bws_menu.php:685
510
  msgid "Settings"
511
  msgstr "Réglages"
512
 
513
+ #: bws_menu.php:657
514
+ #: bws_menu.php:714
515
  msgid "Activate this plugin"
516
  msgstr "Activer cette extension"
517
 
518
+ #: bws_menu.php:672
519
+ #: bws_menu.php:702
520
+ #: bws_menu.php:748
521
  msgid "Go"
522
  msgstr "Passez"
523
 
524
+ #: bws_menu.php:676
525
+ #: bws_menu.php:706
526
+ #: bws_menu.php:752
527
  msgid "DONATE"
528
  msgstr "Faire un don"
529
 
530
+ #: bws_menu.php:722
531
  msgid "Recommended plugins"
532
  msgstr "Plugin recommandé"
533
 
534
+ #: bws_menu.php:760
535
  msgid "Install now"
536
  msgstr "Installer maintenant"
537
 
538
+ #: bws_menu.php:781
539
  msgid "Try again"
540
  msgstr "Essayer de nouveau"
541
 
542
+ #: bws_menu.php:799
543
  #, php-format
544
  msgid "Preview &#8220;%s&#8221;"
545
  msgstr "Pré-visualiser &#8220;%s&#8221;"
546
 
547
+ #: bws_menu.php:830
548
  #, php-format
549
  msgid "Install %s"
550
  msgstr "%s installé"
551
 
552
+ #: bws_menu.php:830
553
  msgid "Install Now"
554
  msgstr "Installa Ora"
555
 
556
+ #: bws_menu.php:833
557
  #, php-format
558
  msgid "Update to version %s"
559
  msgstr "Mettre à jour pour la version %s"
560
 
561
+ #: bws_menu.php:833
562
  msgid "Update"
563
  msgstr "Mettre à jour"
564
 
565
+ #: bws_menu.php:840
566
  #, php-format
567
  msgid "Preview %s"
568
  msgstr "Pré-visualiser %s"
569
 
570
+ #: bws_menu.php:840
571
  msgid "Preview"
572
  msgstr "Pré-visualiser"
573
 
574
+ #: bws_menu.php:846
575
+ #: bws_menu.php:878
576
  #, php-format
577
  msgid "By %s"
578
  msgstr "Par %s"
579
 
580
+ #: bws_menu.php:852
581
  msgid "Details"
582
  msgstr "Détails"
583
 
584
+ #: bws_menu.php:884
585
  msgid "Already Installed"
586
  msgstr "Déjà installé"
587
 
588
+ #: bws_menu.php:900
589
  msgid "Environment"
590
  msgstr "Environment"
591
 
592
+ #: bws_menu.php:911
593
  msgid "Active Plugins"
594
  msgstr "Plugin actifs"
595
 
596
+ #: bws_menu.php:924
597
  msgid "Inactive Plugins"
598
  msgstr "Plugin inactifs"
599
 
600
+ #: bws_menu.php:940
601
  msgid "Send to support"
602
  msgstr "Envoyé au support"
603
 
604
+ #: bws_menu.php:947
605
  msgid "Send to custom email &#187;"
606
  msgstr "Envoyer un e-mail spécifique &#187;"
607
 
1128
  #~ msgid "Support"
1129
  #~ msgstr "Support"
1130
 
 
 
 
1131
  #~ msgid "Display Attachment tips"
1132
  #~ msgstr "Afficher les explications sur les pièces jointes"
1133
 
bws_menu/languages/bestwebsoft-it_IT.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-it_IT.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-05-11 14:11+0300\n"
6
- "PO-Revision-Date: 2015-05-11 14:11+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Marco <marco@blackstudio.it>\n"
9
  "Language: it_IT\n"
@@ -192,8 +192,8 @@ msgstr ""
192
  #: bws_functions.php:371
193
  #: bws_functions.php:401
194
  #: bws_functions.php:409
195
- #: bws_menu.php:643
196
- #: bws_menu.php:700
197
  #, fuzzy
198
  msgid "Activate"
199
  msgstr "Plugin attivi"
@@ -283,11 +283,11 @@ msgstr ""
283
  # @ bestwebsoft
284
  #: bws_functions.php:552
285
  #: bws_functions.php:605
286
- #: bws_menu.php:619
287
- #: bws_menu.php:641
288
- #: bws_menu.php:668
289
- #: bws_menu.php:698
290
- #: bws_menu.php:744
291
  #, fuzzy
292
  msgid "Learn more"
293
  msgstr "Leggi tutto"
@@ -321,338 +321,360 @@ msgstr ""
321
  msgid "Close"
322
  msgstr ""
323
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
324
  # @ bestwebsoft
325
- #: bws_menu.php:456
326
  msgid "Not set"
327
  msgstr "Non impostato"
328
 
329
  # @ bestwebsoft
330
- #: bws_menu.php:458
331
- #: bws_menu.php:459
332
  msgid "On"
333
  msgstr "Abilitato"
334
 
335
  # @ bestwebsoft
336
- #: bws_menu.php:458
337
- #: bws_menu.php:459
338
  msgid "Off"
339
  msgstr "Disabilitato"
340
 
341
  # @ bestwebsoft
342
- #: bws_menu.php:460
343
- #: bws_menu.php:461
344
- #: bws_menu.php:462
345
- #: bws_menu.php:463
346
- #: bws_menu.php:464
347
  #: bws_menu.php:476
 
 
 
348
  msgid "N/A"
349
  msgstr "Non disponibile"
350
 
351
  # @ bestwebsoft
352
- #: bws_menu.php:464
353
  msgid " Mb"
354
  msgstr "Mb"
355
 
356
  # @ bestwebsoft
357
- #: bws_menu.php:465
358
- #: bws_menu.php:466
359
- #: bws_menu.php:467
360
- #: bws_menu.php:472
361
  msgid "Yes"
362
  msgstr "Sì"
363
 
364
  # @ bestwebsoft
365
- #: bws_menu.php:465
366
- #: bws_menu.php:466
367
- #: bws_menu.php:467
368
- #: bws_menu.php:474
369
  msgid "No"
370
  msgstr "No"
371
 
372
  # @ bestwebsoft
373
- #: bws_menu.php:484
374
  msgid "Operating System"
375
  msgstr "Sistema operativo"
376
 
377
  # @ bestwebsoft
378
- #: bws_menu.php:485
379
  msgid "Server"
380
  msgstr "Server"
381
 
382
  # @ bestwebsoft
383
- #: bws_menu.php:486
384
  msgid "Memory usage"
385
  msgstr "Utilizzo memoria"
386
 
387
  # @ bestwebsoft
388
- #: bws_menu.php:487
389
  msgid "MYSQL Version"
390
  msgstr "Versione MYSQL"
391
 
392
  # @ bestwebsoft
393
- #: bws_menu.php:488
394
  msgid "SQL Mode"
395
  msgstr "Modalità SQL"
396
 
397
  # @ bestwebsoft
398
- #: bws_menu.php:489
399
  msgid "PHP Version"
400
  msgstr "Versione PHP"
401
 
402
  # @ bestwebsoft
403
- #: bws_menu.php:490
404
  msgid "PHP Safe Mode"
405
  msgstr "Safe Mode PHP"
406
 
407
  # @ bestwebsoft
408
- #: bws_menu.php:491
409
  msgid "PHP Allow URL fopen"
410
  msgstr "Consenti URL fopen PHP"
411
 
412
  # @ bestwebsoft
413
- #: bws_menu.php:492
414
  msgid "PHP Memory Limit"
415
  msgstr "Limite di memoria PHP"
416
 
417
  # @ bestwebsoft
418
- #: bws_menu.php:493
419
  msgid "PHP Max Upload Size"
420
  msgstr "Dimensione upload massima PHP"
421
 
422
  # @ bestwebsoft
423
- #: bws_menu.php:494
424
  msgid "PHP Max Post Size"
425
  msgstr "Dimensione massima Post PHP"
426
 
427
  # @ bestwebsoft
428
- #: bws_menu.php:495
429
  msgid "PHP Max Script Execute Time"
430
  msgstr "Tempo massimo di esecuzione PHP"
431
 
432
  # @ bestwebsoft
433
- #: bws_menu.php:496
434
  msgid "PHP Exif support"
435
  msgstr "Supporto Exif PHP"
436
 
437
  # @ bestwebsoft
438
- #: bws_menu.php:497
439
  msgid "PHP IPTC support"
440
  msgstr "Supporto IPTC PHP"
441
 
442
  # @ bestwebsoft
443
- #: bws_menu.php:498
444
  msgid "PHP XML support"
445
  msgstr "Supporto XML PHP"
446
 
447
  # @ bestwebsoft
448
- #: bws_menu.php:499
449
  msgid "Site URL"
450
  msgstr "URL sito"
451
 
452
  # @ bestwebsoft
453
- #: bws_menu.php:500
454
  msgid "Home URL"
455
  msgstr "URL home"
456
 
457
  # @ bestwebsoft
458
- #: bws_menu.php:503
459
  msgid "WordPress Version"
460
  msgstr "Versione WordPress"
461
 
462
  # @ bestwebsoft
463
- #: bws_menu.php:504
464
  msgid "WordPress DB Version"
465
  msgstr "Versione DB WordPress"
466
 
467
  # @ bestwebsoft
468
- #: bws_menu.php:505
469
  msgid "Multisite"
470
  msgstr "Multisito"
471
 
472
  # @ bestwebsoft
473
- #: bws_menu.php:506
474
  msgid "Active Theme"
475
  msgstr "Tema attivo"
476
 
477
  # @ bestwebsoft
478
- #: bws_menu.php:521
479
  msgid "Please enter a valid email address."
480
  msgstr "Per favore inserisci un indirizzo e-mail valido."
481
 
482
  # @ bestwebsoft
483
- #: bws_menu.php:525
484
  msgid "Email with system info is sent to "
485
  msgstr "Email con informazioni di sistema spedita a "
486
 
487
  # @ bestwebsoft
488
- #: bws_menu.php:529
489
  msgid "Thank you for contacting us."
490
  msgstr "Grazie per averci contattato."
491
 
492
  # @ bestwebsoft
493
- #: bws_menu.php:562
494
  msgid "Sorry, email message could not be delivered."
495
  msgstr "Spiacenti, il messaggio email non può essere inviato."
496
 
497
- #: bws_menu.php:570
498
  msgid "Need help?"
499
  msgstr ""
500
 
501
- #: bws_menu.php:571
502
  msgid "Client area"
503
  msgstr ""
504
 
505
  # @ bestwebsoft
506
- #: bws_menu.php:572
507
- #: bws_menu.php:883
508
  msgid "System status"
509
  msgstr "Stato sistema"
510
 
511
  # @ bestwebsoft
512
- #: bws_menu.php:577
513
  #, fuzzy
514
  msgid "Plugins"
515
  msgstr "Plugin Pro"
516
 
517
- #: bws_menu.php:579
518
  msgid "Themes"
519
  msgstr ""
520
 
521
- #: bws_menu.php:584
522
  msgid "All"
523
  msgstr ""
524
 
525
  # @ default
526
- #: bws_menu.php:585
527
  #, fuzzy
528
  msgid "Installed"
529
  msgstr "Installa %s"
530
 
531
  # @ bestwebsoft
532
- #: bws_menu.php:586
533
  #, fuzzy
534
  msgid "Recommended"
535
  msgstr "Plugin raccomandati"
536
 
537
  # @ bestwebsoft
538
- #: bws_menu.php:590
539
  msgid "Installed plugins"
540
  msgstr "Plugin installati"
541
 
542
  # @ bestwebsoft
543
  # @ captcha
544
- #: bws_menu.php:622
545
- #: bws_menu.php:671
546
  msgid "Settings"
547
  msgstr "Impostazioni"
548
 
549
  # @ bestwebsoft
550
- #: bws_menu.php:643
551
- #: bws_menu.php:700
552
  #, fuzzy
553
  msgid "Activate this plugin"
554
  msgstr "Plugin attivi"
555
 
556
- #: bws_menu.php:658
557
- #: bws_menu.php:688
558
- #: bws_menu.php:734
559
  msgid "Go"
560
  msgstr ""
561
 
562
- #: bws_menu.php:662
563
- #: bws_menu.php:692
564
- #: bws_menu.php:738
565
  msgid "DONATE"
566
  msgstr ""
567
 
568
  # @ bestwebsoft
569
- #: bws_menu.php:708
570
  msgid "Recommended plugins"
571
  msgstr "Plugin raccomandati"
572
 
573
  # @ default
574
- #: bws_menu.php:746
575
  #, fuzzy
576
  msgid "Install now"
577
  msgstr "Installa %s"
578
 
579
- #: bws_menu.php:767
580
  msgid "Try again"
581
  msgstr ""
582
 
583
- #: bws_menu.php:785
584
  #, php-format
585
  msgid "Preview &#8220;%s&#8221;"
586
  msgstr ""
587
 
588
  # @ default
589
- #: bws_menu.php:816
590
  #, php-format
591
  msgid "Install %s"
592
  msgstr "Installa %s"
593
 
594
  # @ default
595
- #: bws_menu.php:816
596
  #, fuzzy
597
  msgid "Install Now"
598
  msgstr "Installa %s"
599
 
600
- #: bws_menu.php:819
601
  #, php-format
602
  msgid "Update to version %s"
603
  msgstr ""
604
 
605
- #: bws_menu.php:819
606
  msgid "Update"
607
  msgstr ""
608
 
609
- #: bws_menu.php:826
610
  #, php-format
611
  msgid "Preview %s"
612
  msgstr ""
613
 
614
- #: bws_menu.php:826
615
  msgid "Preview"
616
  msgstr ""
617
 
618
- #: bws_menu.php:832
619
- #: bws_menu.php:864
620
  #, php-format
621
  msgid "By %s"
622
  msgstr ""
623
 
624
- #: bws_menu.php:838
625
  msgid "Details"
626
  msgstr ""
627
 
628
  # @ default
629
- #: bws_menu.php:870
630
  #, fuzzy
631
  msgid "Already Installed"
632
  msgstr "Installa %s"
633
 
634
  # @ bestwebsoft
635
- #: bws_menu.php:886
636
  msgid "Environment"
637
  msgstr "Ambiente"
638
 
639
  # @ bestwebsoft
640
- #: bws_menu.php:897
641
  msgid "Active Plugins"
642
  msgstr "Plugin attivi"
643
 
644
  # @ bestwebsoft
645
- #: bws_menu.php:910
646
  msgid "Inactive Plugins"
647
  msgstr "Plugin inattivi"
648
 
649
  # @ bestwebsoft
650
- #: bws_menu.php:926
651
  msgid "Send to support"
652
  msgstr "Invia al supporto"
653
 
654
  # @ bestwebsoft
655
- #: bws_menu.php:933
656
  msgid "Send to custom email &#187;"
657
  msgstr "Invia a una email personalizzata &#187;"
658
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-06-12 15:56+0300\n"
6
+ "PO-Revision-Date: 2015-06-12 15:56+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Marco <marco@blackstudio.it>\n"
9
  "Language: it_IT\n"
192
  #: bws_functions.php:371
193
  #: bws_functions.php:401
194
  #: bws_functions.php:409
195
+ #: bws_menu.php:657
196
+ #: bws_menu.php:714
197
  #, fuzzy
198
  msgid "Activate"
199
  msgstr "Plugin attivi"
283
  # @ bestwebsoft
284
  #: bws_functions.php:552
285
  #: bws_functions.php:605
286
+ #: bws_menu.php:633
287
+ #: bws_menu.php:655
288
+ #: bws_menu.php:682
289
+ #: bws_menu.php:712
290
+ #: bws_menu.php:758
291
  #, fuzzy
292
  msgid "Learn more"
293
  msgstr "Leggi tutto"
321
  msgid "Close"
322
  msgstr ""
323
 
324
+ #: bws_functions.php:771
325
+ #: bws_functions.php:784
326
+ msgid "Restore all plugin settings to defaults"
327
+ msgstr ""
328
+
329
+ #: bws_functions.php:773
330
+ #: bws_functions.php:786
331
+ msgid "Restore settings"
332
+ msgstr ""
333
+
334
+ #: bws_functions.php:797
335
+ msgid "Are you sure you want to restore all settings by default?"
336
+ msgstr ""
337
+
338
+ #: bws_functions.php:799
339
+ msgid "Yes, restore all settings"
340
+ msgstr ""
341
+
342
+ #: bws_functions.php:800
343
+ msgid "No, go back to the settings page"
344
+ msgstr ""
345
+
346
  # @ bestwebsoft
347
+ #: bws_menu.php:470
348
  msgid "Not set"
349
  msgstr "Non impostato"
350
 
351
  # @ bestwebsoft
352
+ #: bws_menu.php:472
353
+ #: bws_menu.php:473
354
  msgid "On"
355
  msgstr "Abilitato"
356
 
357
  # @ bestwebsoft
358
+ #: bws_menu.php:472
359
+ #: bws_menu.php:473
360
  msgid "Off"
361
  msgstr "Disabilitato"
362
 
363
  # @ bestwebsoft
364
+ #: bws_menu.php:474
365
+ #: bws_menu.php:475
 
 
 
366
  #: bws_menu.php:476
367
+ #: bws_menu.php:477
368
+ #: bws_menu.php:478
369
+ #: bws_menu.php:490
370
  msgid "N/A"
371
  msgstr "Non disponibile"
372
 
373
  # @ bestwebsoft
374
+ #: bws_menu.php:478
375
  msgid " Mb"
376
  msgstr "Mb"
377
 
378
  # @ bestwebsoft
379
+ #: bws_menu.php:479
380
+ #: bws_menu.php:480
381
+ #: bws_menu.php:481
382
+ #: bws_menu.php:486
383
  msgid "Yes"
384
  msgstr "Sì"
385
 
386
  # @ bestwebsoft
387
+ #: bws_menu.php:479
388
+ #: bws_menu.php:480
389
+ #: bws_menu.php:481
390
+ #: bws_menu.php:488
391
  msgid "No"
392
  msgstr "No"
393
 
394
  # @ bestwebsoft
395
+ #: bws_menu.php:498
396
  msgid "Operating System"
397
  msgstr "Sistema operativo"
398
 
399
  # @ bestwebsoft
400
+ #: bws_menu.php:499
401
  msgid "Server"
402
  msgstr "Server"
403
 
404
  # @ bestwebsoft
405
+ #: bws_menu.php:500
406
  msgid "Memory usage"
407
  msgstr "Utilizzo memoria"
408
 
409
  # @ bestwebsoft
410
+ #: bws_menu.php:501
411
  msgid "MYSQL Version"
412
  msgstr "Versione MYSQL"
413
 
414
  # @ bestwebsoft
415
+ #: bws_menu.php:502
416
  msgid "SQL Mode"
417
  msgstr "Modalità SQL"
418
 
419
  # @ bestwebsoft
420
+ #: bws_menu.php:503
421
  msgid "PHP Version"
422
  msgstr "Versione PHP"
423
 
424
  # @ bestwebsoft
425
+ #: bws_menu.php:504
426
  msgid "PHP Safe Mode"
427
  msgstr "Safe Mode PHP"
428
 
429
  # @ bestwebsoft
430
+ #: bws_menu.php:505
431
  msgid "PHP Allow URL fopen"
432
  msgstr "Consenti URL fopen PHP"
433
 
434
  # @ bestwebsoft
435
+ #: bws_menu.php:506
436
  msgid "PHP Memory Limit"
437
  msgstr "Limite di memoria PHP"
438
 
439
  # @ bestwebsoft
440
+ #: bws_menu.php:507
441
  msgid "PHP Max Upload Size"
442
  msgstr "Dimensione upload massima PHP"
443
 
444
  # @ bestwebsoft
445
+ #: bws_menu.php:508
446
  msgid "PHP Max Post Size"
447
  msgstr "Dimensione massima Post PHP"
448
 
449
  # @ bestwebsoft
450
+ #: bws_menu.php:509
451
  msgid "PHP Max Script Execute Time"
452
  msgstr "Tempo massimo di esecuzione PHP"
453
 
454
  # @ bestwebsoft
455
+ #: bws_menu.php:510
456
  msgid "PHP Exif support"
457
  msgstr "Supporto Exif PHP"
458
 
459
  # @ bestwebsoft
460
+ #: bws_menu.php:511
461
  msgid "PHP IPTC support"
462
  msgstr "Supporto IPTC PHP"
463
 
464
  # @ bestwebsoft
465
+ #: bws_menu.php:512
466
  msgid "PHP XML support"
467
  msgstr "Supporto XML PHP"
468
 
469
  # @ bestwebsoft
470
+ #: bws_menu.php:513
471
  msgid "Site URL"
472
  msgstr "URL sito"
473
 
474
  # @ bestwebsoft
475
+ #: bws_menu.php:514
476
  msgid "Home URL"
477
  msgstr "URL home"
478
 
479
  # @ bestwebsoft
480
+ #: bws_menu.php:517
481
  msgid "WordPress Version"
482
  msgstr "Versione WordPress"
483
 
484
  # @ bestwebsoft
485
+ #: bws_menu.php:518
486
  msgid "WordPress DB Version"
487
  msgstr "Versione DB WordPress"
488
 
489
  # @ bestwebsoft
490
+ #: bws_menu.php:519
491
  msgid "Multisite"
492
  msgstr "Multisito"
493
 
494
  # @ bestwebsoft
495
+ #: bws_menu.php:520
496
  msgid "Active Theme"
497
  msgstr "Tema attivo"
498
 
499
  # @ bestwebsoft
500
+ #: bws_menu.php:535
501
  msgid "Please enter a valid email address."
502
  msgstr "Per favore inserisci un indirizzo e-mail valido."
503
 
504
  # @ bestwebsoft
505
+ #: bws_menu.php:539
506
  msgid "Email with system info is sent to "
507
  msgstr "Email con informazioni di sistema spedita a "
508
 
509
  # @ bestwebsoft
510
+ #: bws_menu.php:543
511
  msgid "Thank you for contacting us."
512
  msgstr "Grazie per averci contattato."
513
 
514
  # @ bestwebsoft
515
+ #: bws_menu.php:576
516
  msgid "Sorry, email message could not be delivered."
517
  msgstr "Spiacenti, il messaggio email non può essere inviato."
518
 
519
+ #: bws_menu.php:584
520
  msgid "Need help?"
521
  msgstr ""
522
 
523
+ #: bws_menu.php:585
524
  msgid "Client area"
525
  msgstr ""
526
 
527
  # @ bestwebsoft
528
+ #: bws_menu.php:586
529
+ #: bws_menu.php:897
530
  msgid "System status"
531
  msgstr "Stato sistema"
532
 
533
  # @ bestwebsoft
534
+ #: bws_menu.php:591
535
  #, fuzzy
536
  msgid "Plugins"
537
  msgstr "Plugin Pro"
538
 
539
+ #: bws_menu.php:593
540
  msgid "Themes"
541
  msgstr ""
542
 
543
+ #: bws_menu.php:598
544
  msgid "All"
545
  msgstr ""
546
 
547
  # @ default
548
+ #: bws_menu.php:599
549
  #, fuzzy
550
  msgid "Installed"
551
  msgstr "Installa %s"
552
 
553
  # @ bestwebsoft
554
+ #: bws_menu.php:600
555
  #, fuzzy
556
  msgid "Recommended"
557
  msgstr "Plugin raccomandati"
558
 
559
  # @ bestwebsoft
560
+ #: bws_menu.php:604
561
  msgid "Installed plugins"
562
  msgstr "Plugin installati"
563
 
564
  # @ bestwebsoft
565
  # @ captcha
566
+ #: bws_menu.php:636
567
+ #: bws_menu.php:685
568
  msgid "Settings"
569
  msgstr "Impostazioni"
570
 
571
  # @ bestwebsoft
572
+ #: bws_menu.php:657
573
+ #: bws_menu.php:714
574
  #, fuzzy
575
  msgid "Activate this plugin"
576
  msgstr "Plugin attivi"
577
 
578
+ #: bws_menu.php:672
579
+ #: bws_menu.php:702
580
+ #: bws_menu.php:748
581
  msgid "Go"
582
  msgstr ""
583
 
584
+ #: bws_menu.php:676
585
+ #: bws_menu.php:706
586
+ #: bws_menu.php:752
587
  msgid "DONATE"
588
  msgstr ""
589
 
590
  # @ bestwebsoft
591
+ #: bws_menu.php:722
592
  msgid "Recommended plugins"
593
  msgstr "Plugin raccomandati"
594
 
595
  # @ default
596
+ #: bws_menu.php:760
597
  #, fuzzy
598
  msgid "Install now"
599
  msgstr "Installa %s"
600
 
601
+ #: bws_menu.php:781
602
  msgid "Try again"
603
  msgstr ""
604
 
605
+ #: bws_menu.php:799
606
  #, php-format
607
  msgid "Preview &#8220;%s&#8221;"
608
  msgstr ""
609
 
610
  # @ default
611
+ #: bws_menu.php:830
612
  #, php-format
613
  msgid "Install %s"
614
  msgstr "Installa %s"
615
 
616
  # @ default
617
+ #: bws_menu.php:830
618
  #, fuzzy
619
  msgid "Install Now"
620
  msgstr "Installa %s"
621
 
622
+ #: bws_menu.php:833
623
  #, php-format
624
  msgid "Update to version %s"
625
  msgstr ""
626
 
627
+ #: bws_menu.php:833
628
  msgid "Update"
629
  msgstr ""
630
 
631
+ #: bws_menu.php:840
632
  #, php-format
633
  msgid "Preview %s"
634
  msgstr ""
635
 
636
+ #: bws_menu.php:840
637
  msgid "Preview"
638
  msgstr ""
639
 
640
+ #: bws_menu.php:846
641
+ #: bws_menu.php:878
642
  #, php-format
643
  msgid "By %s"
644
  msgstr ""
645
 
646
+ #: bws_menu.php:852
647
  msgid "Details"
648
  msgstr ""
649
 
650
  # @ default
651
+ #: bws_menu.php:884
652
  #, fuzzy
653
  msgid "Already Installed"
654
  msgstr "Installa %s"
655
 
656
  # @ bestwebsoft
657
+ #: bws_menu.php:900
658
  msgid "Environment"
659
  msgstr "Ambiente"
660
 
661
  # @ bestwebsoft
662
+ #: bws_menu.php:911
663
  msgid "Active Plugins"
664
  msgstr "Plugin attivi"
665
 
666
  # @ bestwebsoft
667
+ #: bws_menu.php:924
668
  msgid "Inactive Plugins"
669
  msgstr "Plugin inattivi"
670
 
671
  # @ bestwebsoft
672
+ #: bws_menu.php:940
673
  msgid "Send to support"
674
  msgstr "Invia al supporto"
675
 
676
  # @ bestwebsoft
677
+ #: bws_menu.php:947
678
  msgid "Send to custom email &#187;"
679
  msgstr "Invia a una email personalizzata &#187;"
680
 
bws_menu/languages/bestwebsoft-ja.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-ja.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-05-11 14:11+0300\n"
6
- "PO-Revision-Date: 2015-05-11 14:11+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: foken <foken@gmx.com>\n"
9
  "Language: ja_JP\n"
@@ -183,8 +183,8 @@ msgstr ""
183
  #: bws_functions.php:371
184
  #: bws_functions.php:401
185
  #: bws_functions.php:409
186
- #: bws_menu.php:643
187
- #: bws_menu.php:700
188
  #, fuzzy
189
  msgid "Activate"
190
  msgstr "有効なcaptcha"
@@ -274,11 +274,11 @@ msgstr ""
274
 
275
  #: bws_functions.php:552
276
  #: bws_functions.php:605
277
- #: bws_menu.php:619
278
- #: bws_menu.php:641
279
- #: bws_menu.php:668
280
- #: bws_menu.php:698
281
- #: bws_menu.php:744
282
  #, fuzzy
283
  msgid "Learn more"
284
  msgstr "もっと読む"
@@ -312,287 +312,312 @@ msgstr ""
312
  msgid "Close"
313
  msgstr ""
314
 
315
- #: bws_menu.php:456
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
316
  msgid "Not set"
317
  msgstr "未設定"
318
 
319
- #: bws_menu.php:458
320
- #: bws_menu.php:459
321
  msgid "On"
322
  msgstr "On"
323
 
324
- #: bws_menu.php:458
325
- #: bws_menu.php:459
326
  msgid "Off"
327
  msgstr "Off"
328
 
329
- #: bws_menu.php:460
330
- #: bws_menu.php:461
331
- #: bws_menu.php:462
332
- #: bws_menu.php:463
333
- #: bws_menu.php:464
334
  #: bws_menu.php:476
 
 
 
335
  msgid "N/A"
336
  msgstr "該当なし"
337
 
338
- #: bws_menu.php:464
339
  msgid " Mb"
340
  msgstr " Mb"
341
 
342
- #: bws_menu.php:465
343
- #: bws_menu.php:466
344
- #: bws_menu.php:467
345
- #: bws_menu.php:472
346
  msgid "Yes"
347
  msgstr "はい"
348
 
349
- #: bws_menu.php:465
350
- #: bws_menu.php:466
351
- #: bws_menu.php:467
352
- #: bws_menu.php:474
353
  msgid "No"
354
  msgstr "いいえ"
355
 
356
- #: bws_menu.php:484
357
  msgid "Operating System"
358
  msgstr "オペレーション・システム"
359
 
360
- #: bws_menu.php:485
361
  msgid "Server"
362
  msgstr "サーバ"
363
 
364
- #: bws_menu.php:486
365
  msgid "Memory usage"
366
  msgstr "メモリー使用"
367
 
368
- #: bws_menu.php:487
369
  msgid "MYSQL Version"
370
  msgstr "MYSQL バージョン"
371
 
372
- #: bws_menu.php:488
373
  msgid "SQL Mode"
374
  msgstr "SQLモード"
375
 
376
- #: bws_menu.php:489
377
  msgid "PHP Version"
378
  msgstr "PHP バージョン"
379
 
380
- #: bws_menu.php:490
381
  msgid "PHP Safe Mode"
382
  msgstr "PHP Safe Mode"
383
 
384
- #: bws_menu.php:491
385
  msgid "PHP Allow URL fopen"
386
  msgstr "PHP Allow URL fopen"
387
 
388
- #: bws_menu.php:492
389
  msgid "PHP Memory Limit"
390
  msgstr "PHP Memory Limit"
391
 
392
- #: bws_menu.php:493
393
  msgid "PHP Max Upload Size"
394
  msgstr "PHP Max Upload Size"
395
 
396
- #: bws_menu.php:494
397
  msgid "PHP Max Post Size"
398
  msgstr "PHP Max Post Size"
399
 
400
- #: bws_menu.php:495
401
  msgid "PHP Max Script Execute Time"
402
  msgstr "PHP Max Script Execute Time"
403
 
404
- #: bws_menu.php:496
405
  msgid "PHP Exif support"
406
  msgstr "PHP Exif サポート"
407
 
408
- #: bws_menu.php:497
409
  msgid "PHP IPTC support"
410
  msgstr "PHP IPTC サポート"
411
 
412
- #: bws_menu.php:498
413
  msgid "PHP XML support"
414
  msgstr "PHP XML サポート"
415
 
416
- #: bws_menu.php:499
417
  msgid "Site URL"
418
  msgstr "サイトURL"
419
 
420
- #: bws_menu.php:500
421
  msgid "Home URL"
422
  msgstr "ホームURL"
423
 
424
- #: bws_menu.php:503
425
  msgid "WordPress Version"
426
  msgstr "WordPress バージョン"
427
 
428
- #: bws_menu.php:504
429
  msgid "WordPress DB Version"
430
  msgstr "WordPress データベース バージョン"
431
 
432
- #: bws_menu.php:505
433
  msgid "Multisite"
434
  msgstr "複数サイト"
435
 
436
- #: bws_menu.php:506
437
  msgid "Active Theme"
438
  msgstr "有効なテーマ"
439
 
440
- #: bws_menu.php:521
441
  msgid "Please enter a valid email address."
442
  msgstr "正確なEメール・アドレスを入力して下さい。"
443
 
444
- #: bws_menu.php:525
445
  msgid "Email with system info is sent to "
446
  msgstr "システム情報をメールで送信:"
447
 
448
- #: bws_menu.php:529
449
  msgid "Thank you for contacting us."
450
  msgstr "ご連絡ありがとうございます"
451
 
452
- #: bws_menu.php:562
453
  msgid "Sorry, email message could not be delivered."
454
  msgstr "申し訳ございませんが、貴方のemailは配信できませんでした。"
455
 
456
- #: bws_menu.php:570
457
  msgid "Need help?"
458
  msgstr ""
459
 
460
- #: bws_menu.php:571
461
  msgid "Client area"
462
  msgstr ""
463
 
464
- #: bws_menu.php:572
465
- #: bws_menu.php:883
466
  msgid "System status"
467
  msgstr "システム状況"
468
 
469
- #: bws_menu.php:577
470
  #, fuzzy
471
  msgid "Plugins"
472
  msgstr "Pro Plugins"
473
 
474
- #: bws_menu.php:579
475
  msgid "Themes"
476
  msgstr ""
477
 
478
- #: bws_menu.php:584
479
  msgid "All"
480
  msgstr ""
481
 
482
- #: bws_menu.php:585
483
  #, fuzzy
484
  msgid "Installed"
485
  msgstr "%s 導入"
486
 
487
- #: bws_menu.php:586
488
  #, fuzzy
489
  msgid "Recommended"
490
  msgstr "推奨プラグイン"
491
 
492
- #: bws_menu.php:590
493
  msgid "Installed plugins"
494
  msgstr "導入済みプラグイン"
495
 
496
- #: bws_menu.php:622
497
- #: bws_menu.php:671
498
  msgid "Settings"
499
  msgstr "設定"
500
 
501
- #: bws_menu.php:643
502
- #: bws_menu.php:700
503
  #, fuzzy
504
  msgid "Activate this plugin"
505
  msgstr "有効なプラグイン"
506
 
507
- #: bws_menu.php:658
508
- #: bws_menu.php:688
509
- #: bws_menu.php:734
510
  msgid "Go"
511
  msgstr ""
512
 
513
- #: bws_menu.php:662
514
- #: bws_menu.php:692
515
- #: bws_menu.php:738
516
  msgid "DONATE"
517
  msgstr ""
518
 
519
- #: bws_menu.php:708
520
  msgid "Recommended plugins"
521
  msgstr "推奨プラグイン"
522
 
523
- #: bws_menu.php:746
524
  #, fuzzy
525
  msgid "Install now"
526
  msgstr "Installa Ora"
527
 
528
- #: bws_menu.php:767
529
  msgid "Try again"
530
  msgstr ""
531
 
532
- #: bws_menu.php:785
533
  #, php-format
534
  msgid "Preview &#8220;%s&#8221;"
535
  msgstr ""
536
 
537
- #: bws_menu.php:816
538
  #, php-format
539
  msgid "Install %s"
540
  msgstr "%s 導入"
541
 
542
- #: bws_menu.php:816
543
  msgid "Install Now"
544
  msgstr "Installa Ora"
545
 
546
- #: bws_menu.php:819
547
  #, php-format
548
  msgid "Update to version %s"
549
  msgstr ""
550
 
551
- #: bws_menu.php:819
552
  msgid "Update"
553
  msgstr ""
554
 
555
- #: bws_menu.php:826
556
  #, php-format
557
  msgid "Preview %s"
558
  msgstr ""
559
 
560
- #: bws_menu.php:826
561
  msgid "Preview"
562
  msgstr ""
563
 
564
- #: bws_menu.php:832
565
- #: bws_menu.php:864
566
  #, php-format
567
  msgid "By %s"
568
  msgstr ""
569
 
570
- #: bws_menu.php:838
571
  msgid "Details"
572
  msgstr ""
573
 
574
- #: bws_menu.php:870
575
  #, fuzzy
576
  msgid "Already Installed"
577
  msgstr "%s 導入"
578
 
579
- #: bws_menu.php:886
580
  msgid "Environment"
581
  msgstr "環境"
582
 
583
- #: bws_menu.php:897
584
  msgid "Active Plugins"
585
  msgstr "有効なプラグイン"
586
 
587
- #: bws_menu.php:910
588
  msgid "Inactive Plugins"
589
  msgstr "無効なプラグイン"
590
 
591
- #: bws_menu.php:926
592
  msgid "Send to support"
593
  msgstr "サポートに送信"
594
 
595
- #: bws_menu.php:933
596
  msgid "Send to custom email &#187;"
597
  msgstr "カスタムEメールに送信&#187;"
598
 
@@ -1093,9 +1118,6 @@ msgstr "カスタムEメールに送信&#187;"
1093
  #~ msgid "Support"
1094
  #~ msgstr "サポート"
1095
 
1096
- #~ msgid "Are you sure that you want to delete this language data?"
1097
- #~ msgstr "本当に、この言語データを削除しますか?"
1098
-
1099
  #~ msgid "Contact Form Options"
1100
  #~ msgstr "コンタクトフォーム オプション"
1101
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-06-12 15:57+0300\n"
6
+ "PO-Revision-Date: 2015-06-12 15:57+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: foken <foken@gmx.com>\n"
9
  "Language: ja_JP\n"
183
  #: bws_functions.php:371
184
  #: bws_functions.php:401
185
  #: bws_functions.php:409
186
+ #: bws_menu.php:657
187
+ #: bws_menu.php:714
188
  #, fuzzy
189
  msgid "Activate"
190
  msgstr "有効なcaptcha"
274
 
275
  #: bws_functions.php:552
276
  #: bws_functions.php:605
277
+ #: bws_menu.php:633
278
+ #: bws_menu.php:655
279
+ #: bws_menu.php:682
280
+ #: bws_menu.php:712
281
+ #: bws_menu.php:758
282
  #, fuzzy
283
  msgid "Learn more"
284
  msgstr "もっと読む"
312
  msgid "Close"
313
  msgstr ""
314
 
315
+ #: bws_functions.php:771
316
+ #: bws_functions.php:784
317
+ msgid "Restore all plugin settings to defaults"
318
+ msgstr ""
319
+
320
+ #: bws_functions.php:773
321
+ #: bws_functions.php:786
322
+ #, fuzzy
323
+ msgid "Restore settings"
324
+ msgstr "追加設定"
325
+
326
+ #: bws_functions.php:797
327
+ #, fuzzy
328
+ msgid "Are you sure you want to restore all settings by default?"
329
+ msgstr "本当に、この言語データを削除しますか?"
330
+
331
+ #: bws_functions.php:799
332
+ msgid "Yes, restore all settings"
333
+ msgstr ""
334
+
335
+ #: bws_functions.php:800
336
+ #, fuzzy
337
+ msgid "No, go back to the settings page"
338
+ msgstr "追加設定"
339
+
340
+ #: bws_menu.php:470
341
  msgid "Not set"
342
  msgstr "未設定"
343
 
344
+ #: bws_menu.php:472
345
+ #: bws_menu.php:473
346
  msgid "On"
347
  msgstr "On"
348
 
349
+ #: bws_menu.php:472
350
+ #: bws_menu.php:473
351
  msgid "Off"
352
  msgstr "Off"
353
 
354
+ #: bws_menu.php:474
355
+ #: bws_menu.php:475
 
 
 
356
  #: bws_menu.php:476
357
+ #: bws_menu.php:477
358
+ #: bws_menu.php:478
359
+ #: bws_menu.php:490
360
  msgid "N/A"
361
  msgstr "該当なし"
362
 
363
+ #: bws_menu.php:478
364
  msgid " Mb"
365
  msgstr " Mb"
366
 
367
+ #: bws_menu.php:479
368
+ #: bws_menu.php:480
369
+ #: bws_menu.php:481
370
+ #: bws_menu.php:486
371
  msgid "Yes"
372
  msgstr "はい"
373
 
374
+ #: bws_menu.php:479
375
+ #: bws_menu.php:480
376
+ #: bws_menu.php:481
377
+ #: bws_menu.php:488
378
  msgid "No"
379
  msgstr "いいえ"
380
 
381
+ #: bws_menu.php:498
382
  msgid "Operating System"
383
  msgstr "オペレーション・システム"
384
 
385
+ #: bws_menu.php:499
386
  msgid "Server"
387
  msgstr "サーバ"
388
 
389
+ #: bws_menu.php:500
390
  msgid "Memory usage"
391
  msgstr "メモリー使用"
392
 
393
+ #: bws_menu.php:501
394
  msgid "MYSQL Version"
395
  msgstr "MYSQL バージョン"
396
 
397
+ #: bws_menu.php:502
398
  msgid "SQL Mode"
399
  msgstr "SQLモード"
400
 
401
+ #: bws_menu.php:503
402
  msgid "PHP Version"
403
  msgstr "PHP バージョン"
404
 
405
+ #: bws_menu.php:504
406
  msgid "PHP Safe Mode"
407
  msgstr "PHP Safe Mode"
408
 
409
+ #: bws_menu.php:505
410
  msgid "PHP Allow URL fopen"
411
  msgstr "PHP Allow URL fopen"
412
 
413
+ #: bws_menu.php:506
414
  msgid "PHP Memory Limit"
415
  msgstr "PHP Memory Limit"
416
 
417
+ #: bws_menu.php:507
418
  msgid "PHP Max Upload Size"
419
  msgstr "PHP Max Upload Size"
420
 
421
+ #: bws_menu.php:508
422
  msgid "PHP Max Post Size"
423
  msgstr "PHP Max Post Size"
424
 
425
+ #: bws_menu.php:509
426
  msgid "PHP Max Script Execute Time"
427
  msgstr "PHP Max Script Execute Time"
428
 
429
+ #: bws_menu.php:510
430
  msgid "PHP Exif support"
431
  msgstr "PHP Exif サポート"
432
 
433
+ #: bws_menu.php:511
434
  msgid "PHP IPTC support"
435
  msgstr "PHP IPTC サポート"
436
 
437
+ #: bws_menu.php:512
438
  msgid "PHP XML support"
439
  msgstr "PHP XML サポート"
440
 
441
+ #: bws_menu.php:513
442
  msgid "Site URL"
443
  msgstr "サイトURL"
444
 
445
+ #: bws_menu.php:514
446
  msgid "Home URL"
447
  msgstr "ホームURL"
448
 
449
+ #: bws_menu.php:517
450
  msgid "WordPress Version"
451
  msgstr "WordPress バージョン"
452
 
453
+ #: bws_menu.php:518
454
  msgid "WordPress DB Version"
455
  msgstr "WordPress データベース バージョン"
456
 
457
+ #: bws_menu.php:519
458
  msgid "Multisite"
459
  msgstr "複数サイト"
460
 
461
+ #: bws_menu.php:520
462
  msgid "Active Theme"
463
  msgstr "有効なテーマ"
464
 
465
+ #: bws_menu.php:535
466
  msgid "Please enter a valid email address."
467
  msgstr "正確なEメール・アドレスを入力して下さい。"
468
 
469
+ #: bws_menu.php:539
470
  msgid "Email with system info is sent to "
471
  msgstr "システム情報をメールで送信:"
472
 
473
+ #: bws_menu.php:543
474
  msgid "Thank you for contacting us."
475
  msgstr "ご連絡ありがとうございます"
476
 
477
+ #: bws_menu.php:576
478
  msgid "Sorry, email message could not be delivered."
479
  msgstr "申し訳ございませんが、貴方のemailは配信できませんでした。"
480
 
481
+ #: bws_menu.php:584
482
  msgid "Need help?"
483
  msgstr ""
484
 
485
+ #: bws_menu.php:585
486
  msgid "Client area"
487
  msgstr ""
488
 
489
+ #: bws_menu.php:586
490
+ #: bws_menu.php:897
491
  msgid "System status"
492
  msgstr "システム状況"
493
 
494
+ #: bws_menu.php:591
495
  #, fuzzy
496
  msgid "Plugins"
497
  msgstr "Pro Plugins"
498
 
499
+ #: bws_menu.php:593
500
  msgid "Themes"
501
  msgstr ""
502
 
503
+ #: bws_menu.php:598
504
  msgid "All"
505
  msgstr ""
506
 
507
+ #: bws_menu.php:599
508
  #, fuzzy
509
  msgid "Installed"
510
  msgstr "%s 導入"
511
 
512
+ #: bws_menu.php:600
513
  #, fuzzy
514
  msgid "Recommended"
515
  msgstr "推奨プラグイン"
516
 
517
+ #: bws_menu.php:604
518
  msgid "Installed plugins"
519
  msgstr "導入済みプラグイン"
520
 
521
+ #: bws_menu.php:636
522
+ #: bws_menu.php:685
523
  msgid "Settings"
524
  msgstr "設定"
525
 
526
+ #: bws_menu.php:657
527
+ #: bws_menu.php:714
528
  #, fuzzy
529
  msgid "Activate this plugin"
530
  msgstr "有効なプラグイン"
531
 
532
+ #: bws_menu.php:672
533
+ #: bws_menu.php:702
534
+ #: bws_menu.php:748
535
  msgid "Go"
536
  msgstr ""
537
 
538
+ #: bws_menu.php:676
539
+ #: bws_menu.php:706
540
+ #: bws_menu.php:752
541
  msgid "DONATE"
542
  msgstr ""
543
 
544
+ #: bws_menu.php:722
545
  msgid "Recommended plugins"
546
  msgstr "推奨プラグイン"
547
 
548
+ #: bws_menu.php:760
549
  #, fuzzy
550
  msgid "Install now"
551
  msgstr "Installa Ora"
552
 
553
+ #: bws_menu.php:781
554
  msgid "Try again"
555
  msgstr ""
556
 
557
+ #: bws_menu.php:799
558
  #, php-format
559
  msgid "Preview &#8220;%s&#8221;"
560
  msgstr ""
561
 
562
+ #: bws_menu.php:830
563
  #, php-format
564
  msgid "Install %s"
565
  msgstr "%s 導入"
566
 
567
+ #: bws_menu.php:830
568
  msgid "Install Now"
569
  msgstr "Installa Ora"
570
 
571
+ #: bws_menu.php:833
572
  #, php-format
573
  msgid "Update to version %s"
574
  msgstr ""
575
 
576
+ #: bws_menu.php:833
577
  msgid "Update"
578
  msgstr ""
579
 
580
+ #: bws_menu.php:840
581
  #, php-format
582
  msgid "Preview %s"
583
  msgstr ""
584
 
585
+ #: bws_menu.php:840
586
  msgid "Preview"
587
  msgstr ""
588
 
589
+ #: bws_menu.php:846
590
+ #: bws_menu.php:878
591
  #, php-format
592
  msgid "By %s"
593
  msgstr ""
594
 
595
+ #: bws_menu.php:852
596
  msgid "Details"
597
  msgstr ""
598
 
599
+ #: bws_menu.php:884
600
  #, fuzzy
601
  msgid "Already Installed"
602
  msgstr "%s 導入"
603
 
604
+ #: bws_menu.php:900
605
  msgid "Environment"
606
  msgstr "環境"
607
 
608
+ #: bws_menu.php:911
609
  msgid "Active Plugins"
610
  msgstr "有効なプラグイン"
611
 
612
+ #: bws_menu.php:924
613
  msgid "Inactive Plugins"
614
  msgstr "無効なプラグイン"
615
 
616
+ #: bws_menu.php:940
617
  msgid "Send to support"
618
  msgstr "サポートに送信"
619
 
620
+ #: bws_menu.php:947
621
  msgid "Send to custom email &#187;"
622
  msgstr "カスタムEメールに送信&#187;"
623
 
1118
  #~ msgid "Support"
1119
  #~ msgstr "サポート"
1120
 
 
 
 
1121
  #~ msgid "Contact Form Options"
1122
  #~ msgstr "コンタクトフォーム オプション"
1123
 
bws_menu/languages/bestwebsoft-pt_BR.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-pt_BR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-05-11 14:11+0300\n"
6
- "PO-Revision-Date: 2015-05-11 14:11+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Dionizio Bonfim Bach | DJIO <wordpress@djio.com.br>\n"
9
  "Language: pt_BR\n"
@@ -188,8 +188,8 @@ msgstr ""
188
  #: bws_functions.php:371
189
  #: bws_functions.php:401
190
  #: bws_functions.php:409
191
- #: bws_menu.php:643
192
- #: bws_menu.php:700
193
  #, fuzzy
194
  msgid "Activate"
195
  msgstr "Plugins ativados"
@@ -279,11 +279,11 @@ msgstr ""
279
  # @ captcha
280
  #: bws_functions.php:552
281
  #: bws_functions.php:605
282
- #: bws_menu.php:619
283
- #: bws_menu.php:641
284
- #: bws_menu.php:668
285
- #: bws_menu.php:698
286
- #: bws_menu.php:744
287
  #, fuzzy
288
  msgid "Learn more"
289
  msgstr "Leia Mais"
@@ -317,337 +317,359 @@ msgstr ""
317
  msgid "Close"
318
  msgstr ""
319
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
320
  # @ captcha
321
- #: bws_menu.php:456
322
  msgid "Not set"
323
  msgstr "Não definido"
324
 
325
  # @ captcha
326
- #: bws_menu.php:458
327
- #: bws_menu.php:459
328
  msgid "On"
329
  msgstr "Ligado"
330
 
331
  # @ captcha
332
- #: bws_menu.php:458
333
- #: bws_menu.php:459
334
  msgid "Off"
335
  msgstr "Desligado"
336
 
337
  # @ captcha
338
- #: bws_menu.php:460
339
- #: bws_menu.php:461
340
- #: bws_menu.php:462
341
- #: bws_menu.php:463
342
- #: bws_menu.php:464
343
  #: bws_menu.php:476
 
 
 
344
  msgid "N/A"
345
  msgstr "N/D"
346
 
347
  # @ captcha
348
- #: bws_menu.php:464
349
  msgid " Mb"
350
  msgstr " Mb"
351
 
352
  # @ captcha
353
- #: bws_menu.php:465
354
- #: bws_menu.php:466
355
- #: bws_menu.php:467
356
- #: bws_menu.php:472
357
  msgid "Yes"
358
  msgstr "Sim"
359
 
360
  # @ captcha
361
- #: bws_menu.php:465
362
- #: bws_menu.php:466
363
- #: bws_menu.php:467
364
- #: bws_menu.php:474
365
  msgid "No"
366
  msgstr "Não"
367
 
368
  # @ captcha
369
- #: bws_menu.php:484
370
  msgid "Operating System"
371
  msgstr "Sistema Operacional"
372
 
373
  # @ captcha
374
- #: bws_menu.php:485
375
  msgid "Server"
376
  msgstr "Servidor"
377
 
378
  # @ captcha
379
- #: bws_menu.php:486
380
  msgid "Memory usage"
381
  msgstr "Uso de memória"
382
 
383
  # @ captcha
384
- #: bws_menu.php:487
385
  msgid "MYSQL Version"
386
  msgstr "Versão do MySQL"
387
 
388
  # @ captcha
389
- #: bws_menu.php:488
390
  msgid "SQL Mode"
391
  msgstr "Modo SQL"
392
 
393
  # @ captcha
394
- #: bws_menu.php:489
395
  msgid "PHP Version"
396
  msgstr "Versão do PHP"
397
 
398
  # @ captcha
399
- #: bws_menu.php:490
400
  msgid "PHP Safe Mode"
401
  msgstr "Modo de Segurança do PHP"
402
 
403
  # @ captcha
404
- #: bws_menu.php:491
405
  msgid "PHP Allow URL fopen"
406
  msgstr "Permissão de fopen de URL do PHP"
407
 
408
  # @ captcha
409
- #: bws_menu.php:492
410
  msgid "PHP Memory Limit"
411
  msgstr "Limite de Memória do PHP"
412
 
413
  # @ captcha
414
- #: bws_menu.php:493
415
  msgid "PHP Max Upload Size"
416
  msgstr "Tamanho Máximo de Upload no PHP"
417
 
418
  # @ captcha
419
- #: bws_menu.php:494
420
  msgid "PHP Max Post Size"
421
  msgstr "Tamanho Máximo de Envio do PHP"
422
 
423
  # @ captcha
424
- #: bws_menu.php:495
425
  msgid "PHP Max Script Execute Time"
426
  msgstr "Tempo de Execução Máximo do PHP"
427
 
428
  # @ captcha
429
- #: bws_menu.php:496
430
  msgid "PHP Exif support"
431
  msgstr "Suporte a Exif no PHP"
432
 
433
  # @ captcha
434
- #: bws_menu.php:497
435
  msgid "PHP IPTC support"
436
  msgstr "Suporte da IPTC no PHP"
437
 
438
  # @ captcha
439
- #: bws_menu.php:498
440
  msgid "PHP XML support"
441
  msgstr "Suporte a XML no PHP"
442
 
443
  # @ captcha
444
- #: bws_menu.php:499
445
  msgid "Site URL"
446
  msgstr "URL do Site"
447
 
448
  # @ captcha
449
- #: bws_menu.php:500
450
  msgid "Home URL"
451
  msgstr "URL da Página Inicial"
452
 
453
  # @ captcha
454
- #: bws_menu.php:503
455
  msgid "WordPress Version"
456
  msgstr "Versão do WordPress"
457
 
458
  # @ captcha
459
- #: bws_menu.php:504
460
  msgid "WordPress DB Version"
461
  msgstr "Versão do DB do WordPress"
462
 
463
  # @ captcha
464
- #: bws_menu.php:505
465
  msgid "Multisite"
466
  msgstr "Multisite"
467
 
468
  # @ captcha
469
- #: bws_menu.php:506
470
  msgid "Active Theme"
471
  msgstr "Tema Ativo"
472
 
473
  # @ captcha
474
- #: bws_menu.php:521
475
  msgid "Please enter a valid email address."
476
  msgstr "Por favor, informe um endereço de email válido."
477
 
478
  # @ captcha
479
- #: bws_menu.php:525
480
  msgid "Email with system info is sent to "
481
  msgstr "Email com informações do sistema é enviado para "
482
 
483
  # @ captcha
484
- #: bws_menu.php:529
485
  msgid "Thank you for contacting us."
486
  msgstr "Obrigado por nos contatar."
487
 
488
  # @ captcha
489
- #: bws_menu.php:562
490
  msgid "Sorry, email message could not be delivered."
491
  msgstr "Desculpe, a mensagem de email não pôde ser enviada."
492
 
493
- #: bws_menu.php:570
494
  msgid "Need help?"
495
  msgstr ""
496
 
497
- #: bws_menu.php:571
498
  msgid "Client area"
499
  msgstr ""
500
 
501
  # @ captcha
502
- #: bws_menu.php:572
503
- #: bws_menu.php:883
504
  msgid "System status"
505
  msgstr "Status do sistema"
506
 
507
  # @ captcha
508
- #: bws_menu.php:577
509
  #, fuzzy
510
  msgid "Plugins"
511
  msgstr "Plugins Pro"
512
 
513
- #: bws_menu.php:579
514
  msgid "Themes"
515
  msgstr ""
516
 
517
- #: bws_menu.php:584
518
  msgid "All"
519
  msgstr ""
520
 
521
  # @ default
522
- #: bws_menu.php:585
523
  #, fuzzy
524
  msgid "Installed"
525
  msgstr "Instalar %s"
526
 
527
  # @ captcha
528
- #: bws_menu.php:586
529
  #, fuzzy
530
  msgid "Recommended"
531
  msgstr "Plugins Recomendados"
532
 
533
  # @ captcha
534
- #: bws_menu.php:590
535
  msgid "Installed plugins"
536
  msgstr "Plugins Instalados"
537
 
538
  # @ captcha
539
- #: bws_menu.php:622
540
- #: bws_menu.php:671
541
  msgid "Settings"
542
  msgstr "Configurações"
543
 
544
  # @ captcha
545
- #: bws_menu.php:643
546
- #: bws_menu.php:700
547
  #, fuzzy
548
  msgid "Activate this plugin"
549
  msgstr "Plugins ativados"
550
 
551
- #: bws_menu.php:658
552
- #: bws_menu.php:688
553
- #: bws_menu.php:734
554
  msgid "Go"
555
  msgstr ""
556
 
557
- #: bws_menu.php:662
558
- #: bws_menu.php:692
559
- #: bws_menu.php:738
560
  msgid "DONATE"
561
  msgstr ""
562
 
563
  # @ captcha
564
- #: bws_menu.php:708
565
  msgid "Recommended plugins"
566
  msgstr "Plugins Recomendados"
567
 
568
  # @ default
569
- #: bws_menu.php:746
570
  #, fuzzy
571
  msgid "Install now"
572
  msgstr "Instalar %s"
573
 
574
- #: bws_menu.php:767
575
  msgid "Try again"
576
  msgstr ""
577
 
578
- #: bws_menu.php:785
579
  #, php-format
580
  msgid "Preview &#8220;%s&#8221;"
581
  msgstr ""
582
 
583
  # @ default
584
- #: bws_menu.php:816
585
  #, php-format
586
  msgid "Install %s"
587
  msgstr "Instalar %s"
588
 
589
  # @ default
590
- #: bws_menu.php:816
591
  #, fuzzy
592
  msgid "Install Now"
593
  msgstr "Instalar %s"
594
 
595
- #: bws_menu.php:819
596
  #, php-format
597
  msgid "Update to version %s"
598
  msgstr ""
599
 
600
- #: bws_menu.php:819
601
  msgid "Update"
602
  msgstr ""
603
 
604
- #: bws_menu.php:826
605
  #, php-format
606
  msgid "Preview %s"
607
  msgstr ""
608
 
609
- #: bws_menu.php:826
610
  msgid "Preview"
611
  msgstr ""
612
 
613
- #: bws_menu.php:832
614
- #: bws_menu.php:864
615
  #, php-format
616
  msgid "By %s"
617
  msgstr ""
618
 
619
- #: bws_menu.php:838
620
  msgid "Details"
621
  msgstr ""
622
 
623
  # @ default
624
- #: bws_menu.php:870
625
  #, fuzzy
626
  msgid "Already Installed"
627
  msgstr "Instalar %s"
628
 
629
  # @ captcha
630
- #: bws_menu.php:886
631
  msgid "Environment"
632
  msgstr "Ambiente"
633
 
634
  # @ captcha
635
- #: bws_menu.php:897
636
  msgid "Active Plugins"
637
  msgstr "Plugins Ativos"
638
 
639
  # @ captcha
640
- #: bws_menu.php:910
641
  msgid "Inactive Plugins"
642
  msgstr "Plugins Inativos"
643
 
644
  # @ captcha
645
- #: bws_menu.php:926
646
  msgid "Send to support"
647
  msgstr "Enviar para o suporte"
648
 
649
  # @ captcha
650
- #: bws_menu.php:933
651
  msgid "Send to custom email &#187;"
652
  msgstr "Enviar para email personalizado &#187;"
653
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-06-12 15:57+0300\n"
6
+ "PO-Revision-Date: 2015-06-12 15:57+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Dionizio Bonfim Bach | DJIO <wordpress@djio.com.br>\n"
9
  "Language: pt_BR\n"
188
  #: bws_functions.php:371
189
  #: bws_functions.php:401
190
  #: bws_functions.php:409
191
+ #: bws_menu.php:657
192
+ #: bws_menu.php:714
193
  #, fuzzy
194
  msgid "Activate"
195
  msgstr "Plugins ativados"
279
  # @ captcha
280
  #: bws_functions.php:552
281
  #: bws_functions.php:605
282
+ #: bws_menu.php:633
283
+ #: bws_menu.php:655
284
+ #: bws_menu.php:682
285
+ #: bws_menu.php:712
286
+ #: bws_menu.php:758
287
  #, fuzzy
288
  msgid "Learn more"
289
  msgstr "Leia Mais"
317
  msgid "Close"
318
  msgstr ""
319
 
320
+ #: bws_functions.php:771
321
+ #: bws_functions.php:784
322
+ msgid "Restore all plugin settings to defaults"
323
+ msgstr ""
324
+
325
+ #: bws_functions.php:773
326
+ #: bws_functions.php:786
327
+ msgid "Restore settings"
328
+ msgstr ""
329
+
330
+ #: bws_functions.php:797
331
+ msgid "Are you sure you want to restore all settings by default?"
332
+ msgstr ""
333
+
334
+ #: bws_functions.php:799
335
+ msgid "Yes, restore all settings"
336
+ msgstr ""
337
+
338
+ #: bws_functions.php:800
339
+ msgid "No, go back to the settings page"
340
+ msgstr ""
341
+
342
  # @ captcha
343
+ #: bws_menu.php:470
344
  msgid "Not set"
345
  msgstr "Não definido"
346
 
347
  # @ captcha
348
+ #: bws_menu.php:472
349
+ #: bws_menu.php:473
350
  msgid "On"
351
  msgstr "Ligado"
352
 
353
  # @ captcha
354
+ #: bws_menu.php:472
355
+ #: bws_menu.php:473
356
  msgid "Off"
357
  msgstr "Desligado"
358
 
359
  # @ captcha
360
+ #: bws_menu.php:474
361
+ #: bws_menu.php:475
 
 
 
362
  #: bws_menu.php:476
363
+ #: bws_menu.php:477
364
+ #: bws_menu.php:478
365
+ #: bws_menu.php:490
366
  msgid "N/A"
367
  msgstr "N/D"
368
 
369
  # @ captcha
370
+ #: bws_menu.php:478
371
  msgid " Mb"
372
  msgstr " Mb"
373
 
374
  # @ captcha
375
+ #: bws_menu.php:479
376
+ #: bws_menu.php:480
377
+ #: bws_menu.php:481
378
+ #: bws_menu.php:486
379
  msgid "Yes"
380
  msgstr "Sim"
381
 
382
  # @ captcha
383
+ #: bws_menu.php:479
384
+ #: bws_menu.php:480
385
+ #: bws_menu.php:481
386
+ #: bws_menu.php:488
387
  msgid "No"
388
  msgstr "Não"
389
 
390
  # @ captcha
391
+ #: bws_menu.php:498
392
  msgid "Operating System"
393
  msgstr "Sistema Operacional"
394
 
395
  # @ captcha
396
+ #: bws_menu.php:499
397
  msgid "Server"
398
  msgstr "Servidor"
399
 
400
  # @ captcha
401
+ #: bws_menu.php:500
402
  msgid "Memory usage"
403
  msgstr "Uso de memória"
404
 
405
  # @ captcha
406
+ #: bws_menu.php:501
407
  msgid "MYSQL Version"
408
  msgstr "Versão do MySQL"
409
 
410
  # @ captcha
411
+ #: bws_menu.php:502
412
  msgid "SQL Mode"
413
  msgstr "Modo SQL"
414
 
415
  # @ captcha
416
+ #: bws_menu.php:503
417
  msgid "PHP Version"
418
  msgstr "Versão do PHP"
419
 
420
  # @ captcha
421
+ #: bws_menu.php:504
422
  msgid "PHP Safe Mode"
423
  msgstr "Modo de Segurança do PHP"
424
 
425
  # @ captcha
426
+ #: bws_menu.php:505
427
  msgid "PHP Allow URL fopen"
428
  msgstr "Permissão de fopen de URL do PHP"
429
 
430
  # @ captcha
431
+ #: bws_menu.php:506
432
  msgid "PHP Memory Limit"
433
  msgstr "Limite de Memória do PHP"
434
 
435
  # @ captcha
436
+ #: bws_menu.php:507
437
  msgid "PHP Max Upload Size"
438
  msgstr "Tamanho Máximo de Upload no PHP"
439
 
440
  # @ captcha
441
+ #: bws_menu.php:508
442
  msgid "PHP Max Post Size"
443
  msgstr "Tamanho Máximo de Envio do PHP"
444
 
445
  # @ captcha
446
+ #: bws_menu.php:509
447
  msgid "PHP Max Script Execute Time"
448
  msgstr "Tempo de Execução Máximo do PHP"
449
 
450
  # @ captcha
451
+ #: bws_menu.php:510
452
  msgid "PHP Exif support"
453
  msgstr "Suporte a Exif no PHP"
454
 
455
  # @ captcha
456
+ #: bws_menu.php:511
457
  msgid "PHP IPTC support"
458
  msgstr "Suporte da IPTC no PHP"
459
 
460
  # @ captcha
461
+ #: bws_menu.php:512
462
  msgid "PHP XML support"
463
  msgstr "Suporte a XML no PHP"
464
 
465
  # @ captcha
466
+ #: bws_menu.php:513
467
  msgid "Site URL"
468
  msgstr "URL do Site"
469
 
470
  # @ captcha
471
+ #: bws_menu.php:514
472
  msgid "Home URL"
473
  msgstr "URL da Página Inicial"
474
 
475
  # @ captcha
476
+ #: bws_menu.php:517
477
  msgid "WordPress Version"
478
  msgstr "Versão do WordPress"
479
 
480
  # @ captcha
481
+ #: bws_menu.php:518
482
  msgid "WordPress DB Version"
483
  msgstr "Versão do DB do WordPress"
484
 
485
  # @ captcha
486
+ #: bws_menu.php:519
487
  msgid "Multisite"
488
  msgstr "Multisite"
489
 
490
  # @ captcha
491
+ #: bws_menu.php:520
492
  msgid "Active Theme"
493
  msgstr "Tema Ativo"
494
 
495
  # @ captcha
496
+ #: bws_menu.php:535
497
  msgid "Please enter a valid email address."
498
  msgstr "Por favor, informe um endereço de email válido."
499
 
500
  # @ captcha
501
+ #: bws_menu.php:539
502
  msgid "Email with system info is sent to "
503
  msgstr "Email com informações do sistema é enviado para "
504
 
505
  # @ captcha
506
+ #: bws_menu.php:543
507
  msgid "Thank you for contacting us."
508
  msgstr "Obrigado por nos contatar."
509
 
510
  # @ captcha
511
+ #: bws_menu.php:576
512
  msgid "Sorry, email message could not be delivered."
513
  msgstr "Desculpe, a mensagem de email não pôde ser enviada."
514
 
515
+ #: bws_menu.php:584
516
  msgid "Need help?"
517
  msgstr ""
518
 
519
+ #: bws_menu.php:585
520
  msgid "Client area"
521
  msgstr ""
522
 
523
  # @ captcha
524
+ #: bws_menu.php:586
525
+ #: bws_menu.php:897
526
  msgid "System status"
527
  msgstr "Status do sistema"
528
 
529
  # @ captcha
530
+ #: bws_menu.php:591
531
  #, fuzzy
532
  msgid "Plugins"
533
  msgstr "Plugins Pro"
534
 
535
+ #: bws_menu.php:593
536
  msgid "Themes"
537
  msgstr ""
538
 
539
+ #: bws_menu.php:598
540
  msgid "All"
541
  msgstr ""
542
 
543
  # @ default
544
+ #: bws_menu.php:599
545
  #, fuzzy
546
  msgid "Installed"
547
  msgstr "Instalar %s"
548
 
549
  # @ captcha
550
+ #: bws_menu.php:600
551
  #, fuzzy
552
  msgid "Recommended"
553
  msgstr "Plugins Recomendados"
554
 
555
  # @ captcha
556
+ #: bws_menu.php:604
557
  msgid "Installed plugins"
558
  msgstr "Plugins Instalados"
559
 
560
  # @ captcha
561
+ #: bws_menu.php:636
562
+ #: bws_menu.php:685
563
  msgid "Settings"
564
  msgstr "Configurações"
565
 
566
  # @ captcha
567
+ #: bws_menu.php:657
568
+ #: bws_menu.php:714
569
  #, fuzzy
570
  msgid "Activate this plugin"
571
  msgstr "Plugins ativados"
572
 
573
+ #: bws_menu.php:672
574
+ #: bws_menu.php:702
575
+ #: bws_menu.php:748
576
  msgid "Go"
577
  msgstr ""
578
 
579
+ #: bws_menu.php:676
580
+ #: bws_menu.php:706
581
+ #: bws_menu.php:752
582
  msgid "DONATE"
583
  msgstr ""
584
 
585
  # @ captcha
586
+ #: bws_menu.php:722
587
  msgid "Recommended plugins"
588
  msgstr "Plugins Recomendados"
589
 
590
  # @ default
591
+ #: bws_menu.php:760
592
  #, fuzzy
593
  msgid "Install now"
594
  msgstr "Instalar %s"
595
 
596
+ #: bws_menu.php:781
597
  msgid "Try again"
598
  msgstr ""
599
 
600
+ #: bws_menu.php:799
601
  #, php-format
602
  msgid "Preview &#8220;%s&#8221;"
603
  msgstr ""
604
 
605
  # @ default
606
+ #: bws_menu.php:830
607
  #, php-format
608
  msgid "Install %s"
609
  msgstr "Instalar %s"
610
 
611
  # @ default
612
+ #: bws_menu.php:830
613
  #, fuzzy
614
  msgid "Install Now"
615
  msgstr "Instalar %s"
616
 
617
+ #: bws_menu.php:833
618
  #, php-format
619
  msgid "Update to version %s"
620
  msgstr ""
621
 
622
+ #: bws_menu.php:833
623
  msgid "Update"
624
  msgstr ""
625
 
626
+ #: bws_menu.php:840
627
  #, php-format
628
  msgid "Preview %s"
629
  msgstr ""
630
 
631
+ #: bws_menu.php:840
632
  msgid "Preview"
633
  msgstr ""
634
 
635
+ #: bws_menu.php:846
636
+ #: bws_menu.php:878
637
  #, php-format
638
  msgid "By %s"
639
  msgstr ""
640
 
641
+ #: bws_menu.php:852
642
  msgid "Details"
643
  msgstr ""
644
 
645
  # @ default
646
+ #: bws_menu.php:884
647
  #, fuzzy
648
  msgid "Already Installed"
649
  msgstr "Instalar %s"
650
 
651
  # @ captcha
652
+ #: bws_menu.php:900
653
  msgid "Environment"
654
  msgstr "Ambiente"
655
 
656
  # @ captcha
657
+ #: bws_menu.php:911
658
  msgid "Active Plugins"
659
  msgstr "Plugins Ativos"
660
 
661
  # @ captcha
662
+ #: bws_menu.php:924
663
  msgid "Inactive Plugins"
664
  msgstr "Plugins Inativos"
665
 
666
  # @ captcha
667
+ #: bws_menu.php:940
668
  msgid "Send to support"
669
  msgstr "Enviar para o suporte"
670
 
671
  # @ captcha
672
+ #: bws_menu.php:947
673
  msgid "Send to custom email &#187;"
674
  msgstr "Enviar para email personalizado &#187;"
675
 
bws_menu/languages/bestwebsoft-ru_RU.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-05-11 14:11+0300\n"
6
- "PO-Revision-Date: 2015-05-11 14:14+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
@@ -169,14 +169,14 @@ msgstr "или"
169
  #: bws_functions.php:356
170
  #, php-format
171
  msgid "Start Your Free %s-Day Trial Now"
172
- msgstr "Попробуйте %s-дневную триал версию бесплатно"
173
 
174
  #: bws_functions.php:362
175
  #: bws_functions.php:371
176
  #: bws_functions.php:401
177
  #: bws_functions.php:409
178
- #: bws_menu.php:643
179
- #: bws_menu.php:700
180
  msgid "Activate"
181
  msgstr "Активировать"
182
 
@@ -216,15 +216,15 @@ msgstr "К сожалению, вы превысили количество до
216
 
217
  #: bws_functions.php:469
218
  msgid "Unfortunately, the PRO Trial licence was already installed to this domain. The PRO Trial license can be installed only once."
219
- msgstr "К сожалению, триал PRO версия плагина уже устанавливалась на этот домен. Триал PRO версию можно устанавливать лишь один раз."
220
 
221
  #: bws_functions.php:473
222
  msgid "The PRO Trial license key is valid."
223
- msgstr "Ключ триала PRO версии верен."
224
 
225
  #: bws_functions.php:475
226
  msgid "The license key is valid."
227
- msgstr "Лицензионный ключ принят."
228
 
229
  #: bws_functions.php:478
230
  msgid "Your license will expire on"
@@ -252,38 +252,38 @@ msgstr "ВНИМАНИЕ: уведомление о незаконном исп
252
 
253
  #: bws_functions.php:542
254
  msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
255
- msgstr "Вы можете использовать одну лицензию Pro плагина только для одного домена. Пожалуйста, проверьте и отредактируйте при необходимости лицензию или домен, используя Ваш личный Client Area. Мы настоятельно рекомендуем вам решить проблему в течение 24 часов, в противном случае плагин будет деативирован."
256
 
257
  #: bws_functions.php:550
258
  msgid "Notice: Your PRO Trial license has expired. To continue using the plugin you should buy a PRO license"
259
- msgstr "Внимание: Срок действия триал периода PRO версии истек. Чтобы продолжить пользоваться плагином, пожалуйста, приобретите лицензию PRO"
260
 
261
  #: bws_functions.php:552
262
  msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
263
- msgstr "Время использования вашей лицензии истекло. Если вы хотите обновлять ваш плагин в дальшем и иметь приоритетную тех.поддержку, то вам нужно продлить лицензию."
264
 
265
  #: bws_functions.php:552
266
  #: bws_functions.php:605
267
- #: bws_menu.php:619
268
- #: bws_menu.php:641
269
- #: bws_menu.php:668
270
- #: bws_menu.php:698
271
- #: bws_menu.php:744
272
  msgid "Learn more"
273
  msgstr "Подробнее"
274
 
275
  #: bws_functions.php:562
276
  #, php-format
277
  msgid "Notice: You are using the PRO Trial license of %s plugin."
278
- msgstr "Внимание: Вы используете триал PRO версию плагина %s."
279
 
280
  #: bws_functions.php:564
281
  msgid "Notice: You are using the PRO Trial license of plugin."
282
- msgstr "Внимание: Вы используете триал PRO версию плагина."
283
 
284
  #: bws_functions.php:567
285
  msgid "The PRO Trial license will expire on"
286
- msgstr "Триал период PRO версии плагина истекает"
287
 
288
  #: bws_functions.php:605
289
  msgid "You license for"
@@ -301,281 +301,303 @@ msgstr "и вы не будете получать приоритетную те
301
  msgid "Close"
302
  msgstr "Закрыть"
303
 
304
- #: bws_menu.php:456
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
305
  msgid "Not set"
306
  msgstr "Не задан"
307
 
308
- #: bws_menu.php:458
309
- #: bws_menu.php:459
310
  msgid "On"
311
  msgstr "Вкл"
312
 
313
- #: bws_menu.php:458
314
- #: bws_menu.php:459
315
  msgid "Off"
316
  msgstr "Выкл"
317
 
318
- #: bws_menu.php:460
319
- #: bws_menu.php:461
320
- #: bws_menu.php:462
321
- #: bws_menu.php:463
322
- #: bws_menu.php:464
323
  #: bws_menu.php:476
 
 
 
324
  msgid "N/A"
325
  msgstr "Неизвестно"
326
 
327
- #: bws_menu.php:464
328
  msgid " Mb"
329
  msgstr "Mb"
330
 
331
- #: bws_menu.php:465
332
- #: bws_menu.php:466
333
- #: bws_menu.php:467
334
- #: bws_menu.php:472
335
  msgid "Yes"
336
  msgstr "Да"
337
 
338
- #: bws_menu.php:465
339
- #: bws_menu.php:466
340
- #: bws_menu.php:467
341
- #: bws_menu.php:474
342
  msgid "No"
343
  msgstr "Нет"
344
 
345
- #: bws_menu.php:484
346
  msgid "Operating System"
347
  msgstr "Операционная система"
348
 
349
- #: bws_menu.php:485
350
  msgid "Server"
351
  msgstr "Тип сервера"
352
 
353
- #: bws_menu.php:486
354
  msgid "Memory usage"
355
  msgstr "Памяти использовано"
356
 
357
- #: bws_menu.php:487
358
  msgid "MYSQL Version"
359
  msgstr "Версия MYSQL"
360
 
361
- #: bws_menu.php:488
362
  msgid "SQL Mode"
363
  msgstr "Режим SQL"
364
 
365
- #: bws_menu.php:489
366
  msgid "PHP Version"
367
  msgstr "Версия PHP"
368
 
369
- #: bws_menu.php:490
370
  msgid "PHP Safe Mode"
371
  msgstr "PHP Safe Mode"
372
 
373
- #: bws_menu.php:491
374
  msgid "PHP Allow URL fopen"
375
  msgstr "PHP Allow URL fopen"
376
 
377
- #: bws_menu.php:492
378
  msgid "PHP Memory Limit"
379
  msgstr "Лимит памяти"
380
 
381
- #: bws_menu.php:493
382
  msgid "PHP Max Upload Size"
383
  msgstr "Макс. размер загружаемого файла"
384
 
385
- #: bws_menu.php:494
386
  msgid "PHP Max Post Size"
387
  msgstr "Макс. размер записи"
388
 
389
- #: bws_menu.php:495
390
  msgid "PHP Max Script Execute Time"
391
  msgstr "Макс. время выполнения сценария"
392
 
393
- #: bws_menu.php:496
394
  msgid "PHP Exif support"
395
  msgstr "Поддержка PHP Exif"
396
 
397
- #: bws_menu.php:497
398
  msgid "PHP IPTC support"
399
  msgstr "Поддержка PHP IPTC"
400
 
401
- #: bws_menu.php:498
402
  msgid "PHP XML support"
403
  msgstr "Поддержка PHP XML"
404
 
405
- #: bws_menu.php:499
406
  msgid "Site URL"
407
  msgstr "Адрес сайта"
408
 
409
- #: bws_menu.php:500
410
  msgid "Home URL"
411
  msgstr "Основной адрес сайта"
412
 
413
- #: bws_menu.php:503
414
  msgid "WordPress Version"
415
  msgstr "Версия WordPress"
416
 
417
- #: bws_menu.php:504
418
  msgid "WordPress DB Version"
419
  msgstr "Версия базы данных WordPress"
420
 
421
- #: bws_menu.php:505
422
  msgid "Multisite"
423
  msgstr "Мультиблог"
424
 
425
- #: bws_menu.php:506
426
  msgid "Active Theme"
427
  msgstr "Текущая тема"
428
 
429
- #: bws_menu.php:521
430
  msgid "Please enter a valid email address."
431
  msgstr "Пожалуйста, введите валидный емайл."
432
 
433
- #: bws_menu.php:525
434
  msgid "Email with system info is sent to "
435
  msgstr "E-mail с системной информацией отправлен на"
436
 
437
- #: bws_menu.php:529
438
  msgid "Thank you for contacting us."
439
  msgstr "Спасибо что связались с нами."
440
 
441
- #: bws_menu.php:562
442
  msgid "Sorry, email message could not be delivered."
443
  msgstr "Извините, ваш email не может быть отправлен."
444
 
445
- #: bws_menu.php:570
446
  msgid "Need help?"
447
  msgstr "Нужна помощь?"
448
 
449
- #: bws_menu.php:571
450
  msgid "Client area"
451
  msgstr "Client area"
452
 
453
- #: bws_menu.php:572
454
- #: bws_menu.php:883
455
  msgid "System status"
456
  msgstr "Системная информация"
457
 
458
- #: bws_menu.php:577
459
  msgid "Plugins"
460
  msgstr "Плагины"
461
 
462
- #: bws_menu.php:579
463
  msgid "Themes"
464
  msgstr "Темы"
465
 
466
- #: bws_menu.php:584
467
  msgid "All"
468
  msgstr "Все"
469
 
470
- #: bws_menu.php:585
471
  msgid "Installed"
472
  msgstr "Установленные"
473
 
474
- #: bws_menu.php:586
475
  msgid "Recommended"
476
  msgstr "Рекомендованные"
477
 
478
- #: bws_menu.php:590
479
  msgid "Installed plugins"
480
  msgstr "Установленные плагины"
481
 
482
- #: bws_menu.php:622
483
- #: bws_menu.php:671
484
  msgid "Settings"
485
  msgstr "Настройки"
486
 
487
- #: bws_menu.php:643
488
- #: bws_menu.php:700
489
  msgid "Activate this plugin"
490
  msgstr "Активировать плагин"
491
 
492
- #: bws_menu.php:658
493
- #: bws_menu.php:688
494
- #: bws_menu.php:734
495
  msgid "Go"
496
  msgstr "Перейти на"
497
 
498
- #: bws_menu.php:662
499
- #: bws_menu.php:692
500
- #: bws_menu.php:738
501
  msgid "DONATE"
502
  msgstr "Пожертвовать"
503
 
504
- #: bws_menu.php:708
505
  msgid "Recommended plugins"
506
  msgstr "Рекомендованные к установке плагины"
507
 
508
- #: bws_menu.php:746
509
  msgid "Install now"
510
  msgstr "Установить"
511
 
512
- #: bws_menu.php:767
513
  msgid "Try again"
514
  msgstr "Попробовать снова"
515
 
516
- #: bws_menu.php:785
517
  #, php-format
518
  msgid "Preview &#8220;%s&#8221;"
519
  msgstr "Просмотр &#8220;%s&#8221;"
520
 
521
- #: bws_menu.php:816
522
  #, php-format
523
  msgid "Install %s"
524
  msgstr "Установлено %s"
525
 
526
- #: bws_menu.php:816
527
  msgid "Install Now"
528
  msgstr "Установить"
529
 
530
- #: bws_menu.php:819
531
  #, php-format
532
  msgid "Update to version %s"
533
  msgstr "Обновить до версии %s"
534
 
535
- #: bws_menu.php:819
536
  msgid "Update"
537
  msgstr "Обновить"
538
 
539
- #: bws_menu.php:826
540
  #, php-format
541
  msgid "Preview %s"
542
  msgstr "Просмотр %s"
543
 
544
- #: bws_menu.php:826
545
  msgid "Preview"
546
  msgstr "Просмотр"
547
 
548
- #: bws_menu.php:832
549
- #: bws_menu.php:864
550
  #, php-format
551
  msgid "By %s"
552
  msgstr "%s"
553
 
554
- #: bws_menu.php:838
555
  msgid "Details"
556
  msgstr "Детали"
557
 
558
- #: bws_menu.php:870
559
  msgid "Already Installed"
560
  msgstr "Уже установлена"
561
 
562
- #: bws_menu.php:886
563
  msgid "Environment"
564
  msgstr "Системная среда"
565
 
566
- #: bws_menu.php:897
567
  msgid "Active Plugins"
568
  msgstr "Активированные плагины"
569
 
570
- #: bws_menu.php:910
571
  msgid "Inactive Plugins"
572
  msgstr "Неактивированные плагины"
573
 
574
- #: bws_menu.php:926
575
  msgid "Send to support"
576
  msgstr "Отправить в тех. поддержку"
577
 
578
- #: bws_menu.php:933
579
  msgid "Send to custom email &#187;"
580
  msgstr "Отправить на емейл &#187;"
581
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-06-12 15:57+0300\n"
6
+ "PO-Revision-Date: 2015-06-12 15:58+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
169
  #: bws_functions.php:356
170
  #, php-format
171
  msgid "Start Your Free %s-Day Trial Now"
172
+ msgstr "Попробуйте %s-дневную Trial версию бесплатно"
173
 
174
  #: bws_functions.php:362
175
  #: bws_functions.php:371
176
  #: bws_functions.php:401
177
  #: bws_functions.php:409
178
+ #: bws_menu.php:657
179
+ #: bws_menu.php:714
180
  msgid "Activate"
181
  msgstr "Активировать"
182
 
216
 
217
  #: bws_functions.php:469
218
  msgid "Unfortunately, the PRO Trial licence was already installed to this domain. The PRO Trial license can be installed only once."
219
+ msgstr "К сожалению, PRO Trial версия плагина уже устанавливалась на этот домен. PRO Trial версию можно устанавливать лишь один раз."
220
 
221
  #: bws_functions.php:473
222
  msgid "The PRO Trial license key is valid."
223
+ msgstr "Ключ PRO Trial версии действителен."
224
 
225
  #: bws_functions.php:475
226
  msgid "The license key is valid."
227
+ msgstr "Лицензионный ключ действителен."
228
 
229
  #: bws_functions.php:478
230
  msgid "Your license will expire on"
252
 
253
  #: bws_functions.php:542
254
  msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
255
+ msgstr "Вы можете использовать одну лицензию Pro плагина только для одного домена. Пожалуйста, проверьте и отредактируйте при необходимости лицензию или домен, используя Ваш личный Client Area. Мы настоятельно рекомендуем вам решить проблему в течение 24 часов, в противном случае плагин будет деактивирован."
256
 
257
  #: bws_functions.php:550
258
  msgid "Notice: Your PRO Trial license has expired. To continue using the plugin you should buy a PRO license"
259
+ msgstr "Внимание: Срок действия PRO Trial версии истек. Чтобы продолжить пользоваться плагином, пожалуйста, приобретите лицензию PRO"
260
 
261
  #: bws_functions.php:552
262
  msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
263
+ msgstr "Время использования вашей лицензии истекло. Если вы хотите обновлять ваш плагин в дальнейшем и иметь приоритетную тех.поддержку, то вам нужно продлить лицензию."
264
 
265
  #: bws_functions.php:552
266
  #: bws_functions.php:605
267
+ #: bws_menu.php:633
268
+ #: bws_menu.php:655
269
+ #: bws_menu.php:682
270
+ #: bws_menu.php:712
271
+ #: bws_menu.php:758
272
  msgid "Learn more"
273
  msgstr "Подробнее"
274
 
275
  #: bws_functions.php:562
276
  #, php-format
277
  msgid "Notice: You are using the PRO Trial license of %s plugin."
278
+ msgstr "Внимание: Вы используете PRO Trial версию плагина %s."
279
 
280
  #: bws_functions.php:564
281
  msgid "Notice: You are using the PRO Trial license of plugin."
282
+ msgstr "Внимание: Вы используете PRO Trial версию плагина."
283
 
284
  #: bws_functions.php:567
285
  msgid "The PRO Trial license will expire on"
286
+ msgstr "Ваша лицензия PRO Trial версии плагина истекает"
287
 
288
  #: bws_functions.php:605
289
  msgid "You license for"
301
  msgid "Close"
302
  msgstr "Закрыть"
303
 
304
+ #: bws_functions.php:771
305
+ #: bws_functions.php:784
306
+ msgid "Restore all plugin settings to defaults"
307
+ msgstr "Восстановить все настройки плагина к настройкам по-умолчанию"
308
+
309
+ #: bws_functions.php:773
310
+ #: bws_functions.php:786
311
+ msgid "Restore settings"
312
+ msgstr "Восстановить настройки"
313
+
314
+ #: bws_functions.php:797
315
+ msgid "Are you sure you want to restore all settings by default?"
316
+ msgstr "Вы уверены что хотите восстановить все настройки плагина к настройкам по-умолчанию?"
317
+
318
+ #: bws_functions.php:799
319
+ msgid "Yes, restore all settings"
320
+ msgstr "Да, восстановить все настройки"
321
+
322
+ #: bws_functions.php:800
323
+ msgid "No, go back to the settings page"
324
+ msgstr "Нет, вернутся на страницу настроек"
325
+
326
+ #: bws_menu.php:470
327
  msgid "Not set"
328
  msgstr "Не задан"
329
 
330
+ #: bws_menu.php:472
331
+ #: bws_menu.php:473
332
  msgid "On"
333
  msgstr "Вкл"
334
 
335
+ #: bws_menu.php:472
336
+ #: bws_menu.php:473
337
  msgid "Off"
338
  msgstr "Выкл"
339
 
340
+ #: bws_menu.php:474
341
+ #: bws_menu.php:475
 
 
 
342
  #: bws_menu.php:476
343
+ #: bws_menu.php:477
344
+ #: bws_menu.php:478
345
+ #: bws_menu.php:490
346
  msgid "N/A"
347
  msgstr "Неизвестно"
348
 
349
+ #: bws_menu.php:478
350
  msgid " Mb"
351
  msgstr "Mb"
352
 
353
+ #: bws_menu.php:479
354
+ #: bws_menu.php:480
355
+ #: bws_menu.php:481
356
+ #: bws_menu.php:486
357
  msgid "Yes"
358
  msgstr "Да"
359
 
360
+ #: bws_menu.php:479
361
+ #: bws_menu.php:480
362
+ #: bws_menu.php:481
363
+ #: bws_menu.php:488
364
  msgid "No"
365
  msgstr "Нет"
366
 
367
+ #: bws_menu.php:498
368
  msgid "Operating System"
369
  msgstr "Операционная система"
370
 
371
+ #: bws_menu.php:499
372
  msgid "Server"
373
  msgstr "Тип сервера"
374
 
375
+ #: bws_menu.php:500
376
  msgid "Memory usage"
377
  msgstr "Памяти использовано"
378
 
379
+ #: bws_menu.php:501
380
  msgid "MYSQL Version"
381
  msgstr "Версия MYSQL"
382
 
383
+ #: bws_menu.php:502
384
  msgid "SQL Mode"
385
  msgstr "Режим SQL"
386
 
387
+ #: bws_menu.php:503
388
  msgid "PHP Version"
389
  msgstr "Версия PHP"
390
 
391
+ #: bws_menu.php:504
392
  msgid "PHP Safe Mode"
393
  msgstr "PHP Safe Mode"
394
 
395
+ #: bws_menu.php:505
396
  msgid "PHP Allow URL fopen"
397
  msgstr "PHP Allow URL fopen"
398
 
399
+ #: bws_menu.php:506
400
  msgid "PHP Memory Limit"
401
  msgstr "Лимит памяти"
402
 
403
+ #: bws_menu.php:507
404
  msgid "PHP Max Upload Size"
405
  msgstr "Макс. размер загружаемого файла"
406
 
407
+ #: bws_menu.php:508
408
  msgid "PHP Max Post Size"
409
  msgstr "Макс. размер записи"
410
 
411
+ #: bws_menu.php:509
412
  msgid "PHP Max Script Execute Time"
413
  msgstr "Макс. время выполнения сценария"
414
 
415
+ #: bws_menu.php:510
416
  msgid "PHP Exif support"
417
  msgstr "Поддержка PHP Exif"
418
 
419
+ #: bws_menu.php:511
420
  msgid "PHP IPTC support"
421
  msgstr "Поддержка PHP IPTC"
422
 
423
+ #: bws_menu.php:512
424
  msgid "PHP XML support"
425
  msgstr "Поддержка PHP XML"
426
 
427
+ #: bws_menu.php:513
428
  msgid "Site URL"
429
  msgstr "Адрес сайта"
430
 
431
+ #: bws_menu.php:514
432
  msgid "Home URL"
433
  msgstr "Основной адрес сайта"
434
 
435
+ #: bws_menu.php:517
436
  msgid "WordPress Version"
437
  msgstr "Версия WordPress"
438
 
439
+ #: bws_menu.php:518
440
  msgid "WordPress DB Version"
441
  msgstr "Версия базы данных WordPress"
442
 
443
+ #: bws_menu.php:519
444
  msgid "Multisite"
445
  msgstr "Мультиблог"
446
 
447
+ #: bws_menu.php:520
448
  msgid "Active Theme"
449
  msgstr "Текущая тема"
450
 
451
+ #: bws_menu.php:535
452
  msgid "Please enter a valid email address."
453
  msgstr "Пожалуйста, введите валидный емайл."
454
 
455
+ #: bws_menu.php:539
456
  msgid "Email with system info is sent to "
457
  msgstr "E-mail с системной информацией отправлен на"
458
 
459
+ #: bws_menu.php:543
460
  msgid "Thank you for contacting us."
461
  msgstr "Спасибо что связались с нами."
462
 
463
+ #: bws_menu.php:576
464
  msgid "Sorry, email message could not be delivered."
465
  msgstr "Извините, ваш email не может быть отправлен."
466
 
467
+ #: bws_menu.php:584
468
  msgid "Need help?"
469
  msgstr "Нужна помощь?"
470
 
471
+ #: bws_menu.php:585
472
  msgid "Client area"
473
  msgstr "Client area"
474
 
475
+ #: bws_menu.php:586
476
+ #: bws_menu.php:897
477
  msgid "System status"
478
  msgstr "Системная информация"
479
 
480
+ #: bws_menu.php:591
481
  msgid "Plugins"
482
  msgstr "Плагины"
483
 
484
+ #: bws_menu.php:593
485
  msgid "Themes"
486
  msgstr "Темы"
487
 
488
+ #: bws_menu.php:598
489
  msgid "All"
490
  msgstr "Все"
491
 
492
+ #: bws_menu.php:599
493
  msgid "Installed"
494
  msgstr "Установленные"
495
 
496
+ #: bws_menu.php:600
497
  msgid "Recommended"
498
  msgstr "Рекомендованные"
499
 
500
+ #: bws_menu.php:604
501
  msgid "Installed plugins"
502
  msgstr "Установленные плагины"
503
 
504
+ #: bws_menu.php:636
505
+ #: bws_menu.php:685
506
  msgid "Settings"
507
  msgstr "Настройки"
508
 
509
+ #: bws_menu.php:657
510
+ #: bws_menu.php:714
511
  msgid "Activate this plugin"
512
  msgstr "Активировать плагин"
513
 
514
+ #: bws_menu.php:672
515
+ #: bws_menu.php:702
516
+ #: bws_menu.php:748
517
  msgid "Go"
518
  msgstr "Перейти на"
519
 
520
+ #: bws_menu.php:676
521
+ #: bws_menu.php:706
522
+ #: bws_menu.php:752
523
  msgid "DONATE"
524
  msgstr "Пожертвовать"
525
 
526
+ #: bws_menu.php:722
527
  msgid "Recommended plugins"
528
  msgstr "Рекомендованные к установке плагины"
529
 
530
+ #: bws_menu.php:760
531
  msgid "Install now"
532
  msgstr "Установить"
533
 
534
+ #: bws_menu.php:781
535
  msgid "Try again"
536
  msgstr "Попробовать снова"
537
 
538
+ #: bws_menu.php:799
539
  #, php-format
540
  msgid "Preview &#8220;%s&#8221;"
541
  msgstr "Просмотр &#8220;%s&#8221;"
542
 
543
+ #: bws_menu.php:830
544
  #, php-format
545
  msgid "Install %s"
546
  msgstr "Установлено %s"
547
 
548
+ #: bws_menu.php:830
549
  msgid "Install Now"
550
  msgstr "Установить"
551
 
552
+ #: bws_menu.php:833
553
  #, php-format
554
  msgid "Update to version %s"
555
  msgstr "Обновить до версии %s"
556
 
557
+ #: bws_menu.php:833
558
  msgid "Update"
559
  msgstr "Обновить"
560
 
561
+ #: bws_menu.php:840
562
  #, php-format
563
  msgid "Preview %s"
564
  msgstr "Просмотр %s"
565
 
566
+ #: bws_menu.php:840
567
  msgid "Preview"
568
  msgstr "Просмотр"
569
 
570
+ #: bws_menu.php:846
571
+ #: bws_menu.php:878
572
  #, php-format
573
  msgid "By %s"
574
  msgstr "%s"
575
 
576
+ #: bws_menu.php:852
577
  msgid "Details"
578
  msgstr "Детали"
579
 
580
+ #: bws_menu.php:884
581
  msgid "Already Installed"
582
  msgstr "Уже установлена"
583
 
584
+ #: bws_menu.php:900
585
  msgid "Environment"
586
  msgstr "Системная среда"
587
 
588
+ #: bws_menu.php:911
589
  msgid "Active Plugins"
590
  msgstr "Активированные плагины"
591
 
592
+ #: bws_menu.php:924
593
  msgid "Inactive Plugins"
594
  msgstr "Неактивированные плагины"
595
 
596
+ #: bws_menu.php:940
597
  msgid "Send to support"
598
  msgstr "Отправить в тех. поддержку"
599
 
600
+ #: bws_menu.php:947
601
  msgid "Send to custom email &#187;"
602
  msgstr "Отправить на емейл &#187;"
603
 
bws_menu/languages/bestwebsoft-sr_RS.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-sr_RS.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-05-11 14:14+0300\n"
6
- "PO-Revision-Date: 2015-05-11 14:14+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Andrijana Nikolic <andrijanan@webhostinggeeks.com>\n"
9
  "Language: fr_FR\n"
@@ -183,8 +183,8 @@ msgstr ""
183
  #: bws_functions.php:371
184
  #: bws_functions.php:401
185
  #: bws_functions.php:409
186
- #: bws_menu.php:643
187
- #: bws_menu.php:700
188
  #, fuzzy
189
  msgid "Activate"
190
  msgstr "Aktivirani moduli"
@@ -273,11 +273,11 @@ msgstr ""
273
 
274
  #: bws_functions.php:552
275
  #: bws_functions.php:605
276
- #: bws_menu.php:619
277
- #: bws_menu.php:641
278
- #: bws_menu.php:668
279
- #: bws_menu.php:698
280
- #: bws_menu.php:744
281
  #, fuzzy
282
  msgid "Learn more"
283
  msgstr "Pročitaj više"
@@ -311,294 +311,318 @@ msgstr ""
311
  msgid "Close"
312
  msgstr ""
313
 
314
- #: bws_menu.php:456
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
315
  msgid "Not set"
316
  msgstr "Nije podešeno"
317
 
318
- #: bws_menu.php:458
319
- #: bws_menu.php:459
320
  msgid "On"
321
  msgstr "Uključeno"
322
 
323
- #: bws_menu.php:458
324
- #: bws_menu.php:459
325
  msgid "Off"
326
  msgstr "Isključeno"
327
 
328
- #: bws_menu.php:460
329
- #: bws_menu.php:461
330
- #: bws_menu.php:462
331
- #: bws_menu.php:463
332
- #: bws_menu.php:464
333
  #: bws_menu.php:476
 
 
 
334
  msgid "N/A"
335
  msgstr "N/A"
336
 
337
- #: bws_menu.php:464
338
  msgid " Mb"
339
  msgstr " Mb"
340
 
341
- #: bws_menu.php:465
342
- #: bws_menu.php:466
343
- #: bws_menu.php:467
344
- #: bws_menu.php:472
345
  msgid "Yes"
346
  msgstr "Da"
347
 
348
- #: bws_menu.php:465
349
- #: bws_menu.php:466
350
- #: bws_menu.php:467
351
- #: bws_menu.php:474
352
  msgid "No"
353
  msgstr "Ne"
354
 
355
- #: bws_menu.php:484
356
  msgid "Operating System"
357
  msgstr "Operativni Sistem"
358
 
359
- #: bws_menu.php:485
360
  msgid "Server"
361
  msgstr "Server"
362
 
363
- #: bws_menu.php:486
364
  msgid "Memory usage"
365
  msgstr "Upotreba memorije"
366
 
367
- #: bws_menu.php:487
368
  msgid "MYSQL Version"
369
  msgstr "MYSQL Verzija"
370
 
371
- #: bws_menu.php:488
372
  msgid "SQL Mode"
373
  msgstr "SQL način"
374
 
375
- #: bws_menu.php:489
376
  msgid "PHP Version"
377
  msgstr "PHP Verzija"
378
 
379
- #: bws_menu.php:490
380
  msgid "PHP Safe Mode"
381
  msgstr "PHP Sigurni način"
382
 
383
- #: bws_menu.php:491
384
  msgid "PHP Allow URL fopen"
385
  msgstr "PHP Dozvoli URL fopen"
386
 
387
- #: bws_menu.php:492
388
  msgid "PHP Memory Limit"
389
  msgstr "PHP Ograničenje memorije"
390
 
391
- #: bws_menu.php:493
392
  #, fuzzy
393
  msgid "PHP Max Upload Size"
394
  msgstr "Envoi de fichier"
395
 
396
- #: bws_menu.php:494
397
  msgid "PHP Max Post Size"
398
  msgstr "PHP Max veličina za učitavanje"
399
 
400
- #: bws_menu.php:495
401
  msgid "PHP Max Script Execute Time"
402
  msgstr "PHP Max veličina posta"
403
 
404
- #: bws_menu.php:496
405
  msgid "PHP Exif support"
406
  msgstr "PHP Exif podrška"
407
 
408
- #: bws_menu.php:497
409
  msgid "PHP IPTC support"
410
  msgstr "PHP IPTC podrška"
411
 
412
- #: bws_menu.php:498
413
  msgid "PHP XML support"
414
  msgstr "PHP XML podrška"
415
 
416
- #: bws_menu.php:499
417
  #, fuzzy
418
  msgid "Site URL"
419
  msgstr "URL du lien"
420
 
421
- #: bws_menu.php:500
422
  msgid "Home URL"
423
  msgstr "URL naslovne"
424
 
425
- #: bws_menu.php:503
426
  msgid "WordPress Version"
427
  msgstr "WordPress Verzija"
428
 
429
- #: bws_menu.php:504
430
  msgid "WordPress DB Version"
431
  msgstr "WordPress DB Verzija"
432
 
433
- #: bws_menu.php:505
434
  msgid "Multisite"
435
  msgstr "Višenamenski sajt"
436
 
437
- #: bws_menu.php:506
438
  msgid "Active Theme"
439
  msgstr "Aktivna tema"
440
 
441
- #: bws_menu.php:521
442
  msgid "Please enter a valid email address."
443
  msgstr "Molimo unesite važeću mejl adresu"
444
 
445
- #: bws_menu.php:525
446
  msgid "Email with system info is sent to "
447
  msgstr "Mejl sa sistemskim informacijama je poslat na"
448
 
449
- #: bws_menu.php:529
450
  msgid "Thank you for contacting us."
451
  msgstr "Hvala što ste nas kontaktirali"
452
 
453
- #: bws_menu.php:562
454
  msgid "Sorry, email message could not be delivered."
455
  msgstr "Nažalost mejl poruka nije prosleđena"
456
 
457
- #: bws_menu.php:570
458
  msgid "Need help?"
459
  msgstr ""
460
 
461
- #: bws_menu.php:571
462
  msgid "Client area"
463
  msgstr ""
464
 
465
- #: bws_menu.php:572
466
- #: bws_menu.php:883
467
  msgid "System status"
468
  msgstr "Sistemski status"
469
 
470
- #: bws_menu.php:577
471
  #, fuzzy
472
  msgid "Plugins"
473
  msgstr "Pro moduli"
474
 
475
- #: bws_menu.php:579
476
  msgid "Themes"
477
  msgstr ""
478
 
479
- #: bws_menu.php:584
480
  msgid "All"
481
  msgstr ""
482
 
483
- #: bws_menu.php:585
484
  #, fuzzy
485
  msgid "Installed"
486
  msgstr "Instalacija %s"
487
 
488
- #: bws_menu.php:586
489
  #, fuzzy
490
  msgid "Recommended"
491
  msgstr "Preporučeni moduli"
492
 
493
- #: bws_menu.php:590
494
  msgid "Installed plugins"
495
  msgstr "Instalirani moduli"
496
 
497
- #: bws_menu.php:622
498
- #: bws_menu.php:671
499
  msgid "Settings"
500
  msgstr "Podešavanja"
501
 
502
- #: bws_menu.php:643
503
- #: bws_menu.php:700
504
  #, fuzzy
505
  msgid "Activate this plugin"
506
  msgstr "Aktivirani moduli"
507
 
508
- #: bws_menu.php:658
509
- #: bws_menu.php:688
510
- #: bws_menu.php:734
511
  msgid "Go"
512
  msgstr ""
513
 
514
- #: bws_menu.php:662
515
- #: bws_menu.php:692
516
- #: bws_menu.php:738
517
  msgid "DONATE"
518
  msgstr ""
519
 
520
- #: bws_menu.php:708
521
  msgid "Recommended plugins"
522
  msgstr "Preporučeni moduli"
523
 
524
- #: bws_menu.php:746
525
  #, fuzzy
526
  msgid "Install now"
527
  msgstr "Instalacija %s"
528
 
529
- #: bws_menu.php:767
530
  msgid "Try again"
531
  msgstr ""
532
 
533
- #: bws_menu.php:785
534
  #, php-format
535
  msgid "Preview &#8220;%s&#8221;"
536
  msgstr ""
537
 
538
- #: bws_menu.php:816
539
  #, php-format
540
  msgid "Install %s"
541
  msgstr "Instalacija %s"
542
 
543
- #: bws_menu.php:816
544
  #, fuzzy
545
  msgid "Install Now"
546
  msgstr "Instalacija %s"
547
 
548
- #: bws_menu.php:819
549
  #, php-format
550
  msgid "Update to version %s"
551
  msgstr ""
552
 
553
- #: bws_menu.php:819
554
  #, fuzzy
555
  msgid "Update"
556
  msgstr "date"
557
 
558
- #: bws_menu.php:826
559
  #, php-format
560
  msgid "Preview %s"
561
  msgstr ""
562
 
563
- #: bws_menu.php:826
564
  msgid "Preview"
565
  msgstr ""
566
 
567
- #: bws_menu.php:832
568
- #: bws_menu.php:864
569
  #, php-format
570
  msgid "By %s"
571
  msgstr ""
572
 
573
- #: bws_menu.php:838
574
  msgid "Details"
575
  msgstr ""
576
 
577
- #: bws_menu.php:870
578
  #, fuzzy
579
  msgid "Already Installed"
580
  msgstr "Instalacija %s"
581
 
582
- #: bws_menu.php:886
583
  msgid "Environment"
584
  msgstr "Okruženje"
585
 
586
- #: bws_menu.php:897
587
  #, fuzzy
588
  msgid "Active Plugins"
589
  msgstr "Extensions activées"
590
 
591
- #: bws_menu.php:910
592
  #, fuzzy
593
  msgid "Inactive Plugins"
594
  msgstr "Extensions activées"
595
 
596
- #: bws_menu.php:926
597
  #, fuzzy
598
  msgid "Send to support"
599
  msgstr "Soutien"
600
 
601
- #: bws_menu.php:933
602
  msgid "Send to custom email &#187;"
603
  msgstr "Pošalji na korisnički mejl &#187;"
604
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-06-12 15:58+0300\n"
6
+ "PO-Revision-Date: 2015-06-12 15:58+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Andrijana Nikolic <andrijanan@webhostinggeeks.com>\n"
9
  "Language: fr_FR\n"
183
  #: bws_functions.php:371
184
  #: bws_functions.php:401
185
  #: bws_functions.php:409
186
+ #: bws_menu.php:657
187
+ #: bws_menu.php:714
188
  #, fuzzy
189
  msgid "Activate"
190
  msgstr "Aktivirani moduli"
273
 
274
  #: bws_functions.php:552
275
  #: bws_functions.php:605
276
+ #: bws_menu.php:633
277
+ #: bws_menu.php:655
278
+ #: bws_menu.php:682
279
+ #: bws_menu.php:712
280
+ #: bws_menu.php:758
281
  #, fuzzy
282
  msgid "Learn more"
283
  msgstr "Pročitaj više"
311
  msgid "Close"
312
  msgstr ""
313
 
314
+ #: bws_functions.php:771
315
+ #: bws_functions.php:784
316
+ msgid "Restore all plugin settings to defaults"
317
+ msgstr ""
318
+
319
+ #: bws_functions.php:773
320
+ #: bws_functions.php:786
321
+ #, fuzzy
322
+ msgid "Restore settings"
323
+ msgstr "na stranici za podešavanje modula ("
324
+
325
+ #: bws_functions.php:797
326
+ msgid "Are you sure you want to restore all settings by default?"
327
+ msgstr ""
328
+
329
+ #: bws_functions.php:799
330
+ msgid "Yes, restore all settings"
331
+ msgstr ""
332
+
333
+ #: bws_functions.php:800
334
+ #, fuzzy
335
+ msgid "No, go back to the settings page"
336
+ msgstr "na stranici za podešavanje modula ("
337
+
338
+ #: bws_menu.php:470
339
  msgid "Not set"
340
  msgstr "Nije podešeno"
341
 
342
+ #: bws_menu.php:472
343
+ #: bws_menu.php:473
344
  msgid "On"
345
  msgstr "Uključeno"
346
 
347
+ #: bws_menu.php:472
348
+ #: bws_menu.php:473
349
  msgid "Off"
350
  msgstr "Isključeno"
351
 
352
+ #: bws_menu.php:474
353
+ #: bws_menu.php:475
 
 
 
354
  #: bws_menu.php:476
355
+ #: bws_menu.php:477
356
+ #: bws_menu.php:478
357
+ #: bws_menu.php:490
358
  msgid "N/A"
359
  msgstr "N/A"
360
 
361
+ #: bws_menu.php:478
362
  msgid " Mb"
363
  msgstr " Mb"
364
 
365
+ #: bws_menu.php:479
366
+ #: bws_menu.php:480
367
+ #: bws_menu.php:481
368
+ #: bws_menu.php:486
369
  msgid "Yes"
370
  msgstr "Da"
371
 
372
+ #: bws_menu.php:479
373
+ #: bws_menu.php:480
374
+ #: bws_menu.php:481
375
+ #: bws_menu.php:488
376
  msgid "No"
377
  msgstr "Ne"
378
 
379
+ #: bws_menu.php:498
380
  msgid "Operating System"
381
  msgstr "Operativni Sistem"
382
 
383
+ #: bws_menu.php:499
384
  msgid "Server"
385
  msgstr "Server"
386
 
387
+ #: bws_menu.php:500
388
  msgid "Memory usage"
389
  msgstr "Upotreba memorije"
390
 
391
+ #: bws_menu.php:501
392
  msgid "MYSQL Version"
393
  msgstr "MYSQL Verzija"
394
 
395
+ #: bws_menu.php:502
396
  msgid "SQL Mode"
397
  msgstr "SQL način"
398
 
399
+ #: bws_menu.php:503
400
  msgid "PHP Version"
401
  msgstr "PHP Verzija"
402
 
403
+ #: bws_menu.php:504
404
  msgid "PHP Safe Mode"
405
  msgstr "PHP Sigurni način"
406
 
407
+ #: bws_menu.php:505
408
  msgid "PHP Allow URL fopen"
409
  msgstr "PHP Dozvoli URL fopen"
410
 
411
+ #: bws_menu.php:506
412
  msgid "PHP Memory Limit"
413
  msgstr "PHP Ograničenje memorije"
414
 
415
+ #: bws_menu.php:507
416
  #, fuzzy
417
  msgid "PHP Max Upload Size"
418
  msgstr "Envoi de fichier"
419
 
420
+ #: bws_menu.php:508
421
  msgid "PHP Max Post Size"
422
  msgstr "PHP Max veličina za učitavanje"
423
 
424
+ #: bws_menu.php:509
425
  msgid "PHP Max Script Execute Time"
426
  msgstr "PHP Max veličina posta"
427
 
428
+ #: bws_menu.php:510
429
  msgid "PHP Exif support"
430
  msgstr "PHP Exif podrška"
431
 
432
+ #: bws_menu.php:511
433
  msgid "PHP IPTC support"
434
  msgstr "PHP IPTC podrška"
435
 
436
+ #: bws_menu.php:512
437
  msgid "PHP XML support"
438
  msgstr "PHP XML podrška"
439
 
440
+ #: bws_menu.php:513
441
  #, fuzzy
442
  msgid "Site URL"
443
  msgstr "URL du lien"
444
 
445
+ #: bws_menu.php:514
446
  msgid "Home URL"
447
  msgstr "URL naslovne"
448
 
449
+ #: bws_menu.php:517
450
  msgid "WordPress Version"
451
  msgstr "WordPress Verzija"
452
 
453
+ #: bws_menu.php:518
454
  msgid "WordPress DB Version"
455
  msgstr "WordPress DB Verzija"
456
 
457
+ #: bws_menu.php:519
458
  msgid "Multisite"
459
  msgstr "Višenamenski sajt"
460
 
461
+ #: bws_menu.php:520
462
  msgid "Active Theme"
463
  msgstr "Aktivna tema"
464
 
465
+ #: bws_menu.php:535
466
  msgid "Please enter a valid email address."
467
  msgstr "Molimo unesite važeću mejl adresu"
468
 
469
+ #: bws_menu.php:539
470
  msgid "Email with system info is sent to "
471
  msgstr "Mejl sa sistemskim informacijama je poslat na"
472
 
473
+ #: bws_menu.php:543
474
  msgid "Thank you for contacting us."
475
  msgstr "Hvala što ste nas kontaktirali"
476
 
477
+ #: bws_menu.php:576
478
  msgid "Sorry, email message could not be delivered."
479
  msgstr "Nažalost mejl poruka nije prosleđena"
480
 
481
+ #: bws_menu.php:584
482
  msgid "Need help?"
483
  msgstr ""
484
 
485
+ #: bws_menu.php:585
486
  msgid "Client area"
487
  msgstr ""
488
 
489
+ #: bws_menu.php:586
490
+ #: bws_menu.php:897
491
  msgid "System status"
492
  msgstr "Sistemski status"
493
 
494
+ #: bws_menu.php:591
495
  #, fuzzy
496
  msgid "Plugins"
497
  msgstr "Pro moduli"
498
 
499
+ #: bws_menu.php:593
500
  msgid "Themes"
501
  msgstr ""
502
 
503
+ #: bws_menu.php:598
504
  msgid "All"
505
  msgstr ""
506
 
507
+ #: bws_menu.php:599
508
  #, fuzzy
509
  msgid "Installed"
510
  msgstr "Instalacija %s"
511
 
512
+ #: bws_menu.php:600
513
  #, fuzzy
514
  msgid "Recommended"
515
  msgstr "Preporučeni moduli"
516
 
517
+ #: bws_menu.php:604
518
  msgid "Installed plugins"
519
  msgstr "Instalirani moduli"
520
 
521
+ #: bws_menu.php:636
522
+ #: bws_menu.php:685
523
  msgid "Settings"
524
  msgstr "Podešavanja"
525
 
526
+ #: bws_menu.php:657
527
+ #: bws_menu.php:714
528
  #, fuzzy
529
  msgid "Activate this plugin"
530
  msgstr "Aktivirani moduli"
531
 
532
+ #: bws_menu.php:672
533
+ #: bws_menu.php:702
534
+ #: bws_menu.php:748
535
  msgid "Go"
536
  msgstr ""
537
 
538
+ #: bws_menu.php:676
539
+ #: bws_menu.php:706
540
+ #: bws_menu.php:752
541
  msgid "DONATE"
542
  msgstr ""
543
 
544
+ #: bws_menu.php:722
545
  msgid "Recommended plugins"
546
  msgstr "Preporučeni moduli"
547
 
548
+ #: bws_menu.php:760
549
  #, fuzzy
550
  msgid "Install now"
551
  msgstr "Instalacija %s"
552
 
553
+ #: bws_menu.php:781
554
  msgid "Try again"
555
  msgstr ""
556
 
557
+ #: bws_menu.php:799
558
  #, php-format
559
  msgid "Preview &#8220;%s&#8221;"
560
  msgstr ""
561
 
562
+ #: bws_menu.php:830
563
  #, php-format
564
  msgid "Install %s"
565
  msgstr "Instalacija %s"
566
 
567
+ #: bws_menu.php:830
568
  #, fuzzy
569
  msgid "Install Now"
570
  msgstr "Instalacija %s"
571
 
572
+ #: bws_menu.php:833
573
  #, php-format
574
  msgid "Update to version %s"
575
  msgstr ""
576
 
577
+ #: bws_menu.php:833
578
  #, fuzzy
579
  msgid "Update"
580
  msgstr "date"
581
 
582
+ #: bws_menu.php:840
583
  #, php-format
584
  msgid "Preview %s"
585
  msgstr ""
586
 
587
+ #: bws_menu.php:840
588
  msgid "Preview"
589
  msgstr ""
590
 
591
+ #: bws_menu.php:846
592
+ #: bws_menu.php:878
593
  #, php-format
594
  msgid "By %s"
595
  msgstr ""
596
 
597
+ #: bws_menu.php:852
598
  msgid "Details"
599
  msgstr ""
600
 
601
+ #: bws_menu.php:884
602
  #, fuzzy
603
  msgid "Already Installed"
604
  msgstr "Instalacija %s"
605
 
606
+ #: bws_menu.php:900
607
  msgid "Environment"
608
  msgstr "Okruženje"
609
 
610
+ #: bws_menu.php:911
611
  #, fuzzy
612
  msgid "Active Plugins"
613
  msgstr "Extensions activées"
614
 
615
+ #: bws_menu.php:924
616
  #, fuzzy
617
  msgid "Inactive Plugins"
618
  msgstr "Extensions activées"
619
 
620
+ #: bws_menu.php:940
621
  #, fuzzy
622
  msgid "Send to support"
623
  msgstr "Soutien"
624
 
625
+ #: bws_menu.php:947
626
  msgid "Send to custom email &#187;"
627
  msgstr "Pošalji na korisnički mejl &#187;"
628
 
bws_menu/languages/bestwebsoft-sv_SE.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-sv_SE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-05-11 14:14+0300\n"
6
- "PO-Revision-Date: 2015-05-11 14:14+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Christer Rönningborg, Blittan <blittan@xbmc.org>\n"
9
  "Language: sv_SE\n"
@@ -182,8 +182,8 @@ msgstr ""
182
  #: bws_functions.php:371
183
  #: bws_functions.php:401
184
  #: bws_functions.php:409
185
- #: bws_menu.php:643
186
- #: bws_menu.php:700
187
  #, fuzzy
188
  msgid "Activate"
189
  msgstr "Aktiverade tillägg"
@@ -272,11 +272,11 @@ msgstr ""
272
 
273
  #: bws_functions.php:552
274
  #: bws_functions.php:605
275
- #: bws_menu.php:619
276
- #: bws_menu.php:641
277
- #: bws_menu.php:668
278
- #: bws_menu.php:698
279
- #: bws_menu.php:744
280
  #, fuzzy
281
  msgid "Learn more"
282
  msgstr "Läs mer"
@@ -310,287 +310,309 @@ msgstr ""
310
  msgid "Close"
311
  msgstr ""
312
 
313
- #: bws_menu.php:456
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
314
  msgid "Not set"
315
  msgstr "Inte angiven"
316
 
317
- #: bws_menu.php:458
318
- #: bws_menu.php:459
319
  msgid "On"
320
  msgstr "På"
321
 
322
- #: bws_menu.php:458
323
- #: bws_menu.php:459
324
  msgid "Off"
325
  msgstr "Av"
326
 
327
- #: bws_menu.php:460
328
- #: bws_menu.php:461
329
- #: bws_menu.php:462
330
- #: bws_menu.php:463
331
- #: bws_menu.php:464
332
  #: bws_menu.php:476
 
 
 
333
  msgid "N/A"
334
  msgstr "Finns ej"
335
 
336
- #: bws_menu.php:464
337
  msgid " Mb"
338
  msgstr " Mb"
339
 
340
- #: bws_menu.php:465
341
- #: bws_menu.php:466
342
- #: bws_menu.php:467
343
- #: bws_menu.php:472
344
  msgid "Yes"
345
  msgstr "Ja"
346
 
347
- #: bws_menu.php:465
348
- #: bws_menu.php:466
349
- #: bws_menu.php:467
350
- #: bws_menu.php:474
351
  msgid "No"
352
  msgstr "Nej"
353
 
354
- #: bws_menu.php:484
355
  msgid "Operating System"
356
  msgstr "Operativsystem"
357
 
358
- #: bws_menu.php:485
359
  msgid "Server"
360
  msgstr "Server"
361
 
362
- #: bws_menu.php:486
363
  msgid "Memory usage"
364
  msgstr "Minnesanvändning"
365
 
366
- #: bws_menu.php:487
367
  msgid "MYSQL Version"
368
  msgstr "MySQL-version"
369
 
370
- #: bws_menu.php:488
371
  msgid "SQL Mode"
372
  msgstr "SQL-läge"
373
 
374
- #: bws_menu.php:489
375
  msgid "PHP Version"
376
  msgstr "PHP-version"
377
 
378
- #: bws_menu.php:490
379
  msgid "PHP Safe Mode"
380
  msgstr "PHP säkert läge"
381
 
382
- #: bws_menu.php:491
383
  msgid "PHP Allow URL fopen"
384
  msgstr "PHP tillåt URL fopen"
385
 
386
- #: bws_menu.php:492
387
  msgid "PHP Memory Limit"
388
  msgstr "PHP Minnesgräns"
389
 
390
- #: bws_menu.php:493
391
  msgid "PHP Max Upload Size"
392
  msgstr "PHP Max uppladdningstorlek"
393
 
394
- #: bws_menu.php:494
395
  msgid "PHP Max Post Size"
396
  msgstr "PHP Max poststorlek"
397
 
398
- #: bws_menu.php:495
399
  msgid "PHP Max Script Execute Time"
400
  msgstr "PHP Max skriptexekverinstid"
401
 
402
- #: bws_menu.php:496
403
  msgid "PHP Exif support"
404
  msgstr "PHP Exifstöd"
405
 
406
- #: bws_menu.php:497
407
  msgid "PHP IPTC support"
408
  msgstr "PHP ITPC-stöd"
409
 
410
- #: bws_menu.php:498
411
  msgid "PHP XML support"
412
  msgstr "PHP XML-stöd"
413
 
414
- #: bws_menu.php:499
415
  msgid "Site URL"
416
  msgstr "SajtURL"
417
 
418
- #: bws_menu.php:500
419
  msgid "Home URL"
420
  msgstr "HemURL"
421
 
422
- #: bws_menu.php:503
423
  msgid "WordPress Version"
424
  msgstr "WordPress-version"
425
 
426
- #: bws_menu.php:504
427
  msgid "WordPress DB Version"
428
  msgstr "WordPress-DB-version"
429
 
430
- #: bws_menu.php:505
431
  msgid "Multisite"
432
  msgstr "Multisajt"
433
 
434
- #: bws_menu.php:506
435
  msgid "Active Theme"
436
  msgstr "Aktivt tema"
437
 
438
- #: bws_menu.php:521
439
  msgid "Please enter a valid email address."
440
  msgstr "Var god ange en giltig epost-adress."
441
 
442
- #: bws_menu.php:525
443
  msgid "Email with system info is sent to "
444
  msgstr "Epost med systeminfo är skickat till"
445
 
446
- #: bws_menu.php:529
447
  msgid "Thank you for contacting us."
448
  msgstr "Tack för att du kontaktade oss."
449
 
450
- #: bws_menu.php:562
451
  msgid "Sorry, email message could not be delivered."
452
  msgstr "Ledsen, eposten kunde inte levereras."
453
 
454
- #: bws_menu.php:570
455
  msgid "Need help?"
456
  msgstr ""
457
 
458
- #: bws_menu.php:571
459
  msgid "Client area"
460
  msgstr ""
461
 
462
- #: bws_menu.php:572
463
- #: bws_menu.php:883
464
  msgid "System status"
465
  msgstr "Systemstatus"
466
 
467
- #: bws_menu.php:577
468
  #, fuzzy
469
  msgid "Plugins"
470
  msgstr "Betaltillägg"
471
 
472
- #: bws_menu.php:579
473
  msgid "Themes"
474
  msgstr ""
475
 
476
- #: bws_menu.php:584
477
  msgid "All"
478
  msgstr ""
479
 
480
- #: bws_menu.php:585
481
  #, fuzzy
482
  msgid "Installed"
483
  msgstr "Installera %s"
484
 
485
- #: bws_menu.php:586
486
  #, fuzzy
487
  msgid "Recommended"
488
  msgstr "Rekommenderade tillägg"
489
 
490
- #: bws_menu.php:590
491
  msgid "Installed plugins"
492
  msgstr "Installerade tillägg"
493
 
494
- #: bws_menu.php:622
495
- #: bws_menu.php:671
496
  msgid "Settings"
497
  msgstr "Inställningar"
498
 
499
- #: bws_menu.php:643
500
- #: bws_menu.php:700
501
  #, fuzzy
502
  msgid "Activate this plugin"
503
  msgstr "Aktiverade tillägg"
504
 
505
- #: bws_menu.php:658
506
- #: bws_menu.php:688
507
- #: bws_menu.php:734
508
  msgid "Go"
509
  msgstr ""
510
 
511
- #: bws_menu.php:662
512
- #: bws_menu.php:692
513
- #: bws_menu.php:738
514
  msgid "DONATE"
515
  msgstr ""
516
 
517
- #: bws_menu.php:708
518
  msgid "Recommended plugins"
519
  msgstr "Rekommenderade tillägg"
520
 
521
- #: bws_menu.php:746
522
  #, fuzzy
523
  msgid "Install now"
524
  msgstr "Установить сейчас"
525
 
526
- #: bws_menu.php:767
527
  msgid "Try again"
528
  msgstr ""
529
 
530
- #: bws_menu.php:785
531
  #, php-format
532
  msgid "Preview &#8220;%s&#8221;"
533
  msgstr ""
534
 
535
- #: bws_menu.php:816
536
  #, php-format
537
  msgid "Install %s"
538
  msgstr "Installera %s"
539
 
540
- #: bws_menu.php:816
541
  msgid "Install Now"
542
  msgstr "Установить сейчас"
543
 
544
- #: bws_menu.php:819
545
  #, php-format
546
  msgid "Update to version %s"
547
  msgstr ""
548
 
549
- #: bws_menu.php:819
550
  msgid "Update"
551
  msgstr ""
552
 
553
- #: bws_menu.php:826
554
  #, php-format
555
  msgid "Preview %s"
556
  msgstr ""
557
 
558
- #: bws_menu.php:826
559
  msgid "Preview"
560
  msgstr ""
561
 
562
- #: bws_menu.php:832
563
- #: bws_menu.php:864
564
  #, php-format
565
  msgid "By %s"
566
  msgstr ""
567
 
568
- #: bws_menu.php:838
569
  msgid "Details"
570
  msgstr ""
571
 
572
- #: bws_menu.php:870
573
  #, fuzzy
574
  msgid "Already Installed"
575
  msgstr "Installera %s"
576
 
577
- #: bws_menu.php:886
578
  msgid "Environment"
579
  msgstr "Miljövariabler"
580
 
581
- #: bws_menu.php:897
582
  msgid "Active Plugins"
583
  msgstr "Aktiverade tillägg"
584
 
585
- #: bws_menu.php:910
586
  msgid "Inactive Plugins"
587
  msgstr "Inaktiverade tillägg"
588
 
589
- #: bws_menu.php:926
590
  msgid "Send to support"
591
  msgstr "Skicka till support"
592
 
593
- #: bws_menu.php:933
594
  msgid "Send to custom email &#187;"
595
  msgstr "Skicka till anpassad epost &#187;"
596
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-06-12 15:58+0300\n"
6
+ "PO-Revision-Date: 2015-06-12 15:58+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Christer Rönningborg, Blittan <blittan@xbmc.org>\n"
9
  "Language: sv_SE\n"
182
  #: bws_functions.php:371
183
  #: bws_functions.php:401
184
  #: bws_functions.php:409
185
+ #: bws_menu.php:657
186
+ #: bws_menu.php:714
187
  #, fuzzy
188
  msgid "Activate"
189
  msgstr "Aktiverade tillägg"
272
 
273
  #: bws_functions.php:552
274
  #: bws_functions.php:605
275
+ #: bws_menu.php:633
276
+ #: bws_menu.php:655
277
+ #: bws_menu.php:682
278
+ #: bws_menu.php:712
279
+ #: bws_menu.php:758
280
  #, fuzzy
281
  msgid "Learn more"
282
  msgstr "Läs mer"
310
  msgid "Close"
311
  msgstr ""
312
 
313
+ #: bws_functions.php:771
314
+ #: bws_functions.php:784
315
+ msgid "Restore all plugin settings to defaults"
316
+ msgstr ""
317
+
318
+ #: bws_functions.php:773
319
+ #: bws_functions.php:786
320
+ msgid "Restore settings"
321
+ msgstr ""
322
+
323
+ #: bws_functions.php:797
324
+ msgid "Are you sure you want to restore all settings by default?"
325
+ msgstr ""
326
+
327
+ #: bws_functions.php:799
328
+ msgid "Yes, restore all settings"
329
+ msgstr ""
330
+
331
+ #: bws_functions.php:800
332
+ msgid "No, go back to the settings page"
333
+ msgstr ""
334
+
335
+ #: bws_menu.php:470
336
  msgid "Not set"
337
  msgstr "Inte angiven"
338
 
339
+ #: bws_menu.php:472
340
+ #: bws_menu.php:473
341
  msgid "On"
342
  msgstr "På"
343
 
344
+ #: bws_menu.php:472
345
+ #: bws_menu.php:473
346
  msgid "Off"
347
  msgstr "Av"
348
 
349
+ #: bws_menu.php:474
350
+ #: bws_menu.php:475
 
 
 
351
  #: bws_menu.php:476
352
+ #: bws_menu.php:477
353
+ #: bws_menu.php:478
354
+ #: bws_menu.php:490
355
  msgid "N/A"
356
  msgstr "Finns ej"
357
 
358
+ #: bws_menu.php:478
359
  msgid " Mb"
360
  msgstr " Mb"
361
 
362
+ #: bws_menu.php:479
363
+ #: bws_menu.php:480
364
+ #: bws_menu.php:481
365
+ #: bws_menu.php:486
366
  msgid "Yes"
367
  msgstr "Ja"
368
 
369
+ #: bws_menu.php:479
370
+ #: bws_menu.php:480
371
+ #: bws_menu.php:481
372
+ #: bws_menu.php:488
373
  msgid "No"
374
  msgstr "Nej"
375
 
376
+ #: bws_menu.php:498
377
  msgid "Operating System"
378
  msgstr "Operativsystem"
379
 
380
+ #: bws_menu.php:499
381
  msgid "Server"
382
  msgstr "Server"
383
 
384
+ #: bws_menu.php:500
385
  msgid "Memory usage"
386
  msgstr "Minnesanvändning"
387
 
388
+ #: bws_menu.php:501
389
  msgid "MYSQL Version"
390
  msgstr "MySQL-version"
391
 
392
+ #: bws_menu.php:502
393
  msgid "SQL Mode"
394
  msgstr "SQL-läge"
395
 
396
+ #: bws_menu.php:503
397
  msgid "PHP Version"
398
  msgstr "PHP-version"
399
 
400
+ #: bws_menu.php:504
401
  msgid "PHP Safe Mode"
402
  msgstr "PHP säkert läge"
403
 
404
+ #: bws_menu.php:505
405
  msgid "PHP Allow URL fopen"
406
  msgstr "PHP tillåt URL fopen"
407
 
408
+ #: bws_menu.php:506
409
  msgid "PHP Memory Limit"
410
  msgstr "PHP Minnesgräns"
411
 
412
+ #: bws_menu.php:507
413
  msgid "PHP Max Upload Size"
414
  msgstr "PHP Max uppladdningstorlek"
415
 
416
+ #: bws_menu.php:508
417
  msgid "PHP Max Post Size"
418
  msgstr "PHP Max poststorlek"
419
 
420
+ #: bws_menu.php:509
421
  msgid "PHP Max Script Execute Time"
422
  msgstr "PHP Max skriptexekverinstid"
423
 
424
+ #: bws_menu.php:510
425
  msgid "PHP Exif support"
426
  msgstr "PHP Exifstöd"
427
 
428
+ #: bws_menu.php:511
429
  msgid "PHP IPTC support"
430
  msgstr "PHP ITPC-stöd"
431
 
432
+ #: bws_menu.php:512
433
  msgid "PHP XML support"
434
  msgstr "PHP XML-stöd"
435
 
436
+ #: bws_menu.php:513
437
  msgid "Site URL"
438
  msgstr "SajtURL"
439
 
440
+ #: bws_menu.php:514
441
  msgid "Home URL"
442
  msgstr "HemURL"
443
 
444
+ #: bws_menu.php:517
445
  msgid "WordPress Version"
446
  msgstr "WordPress-version"
447
 
448
+ #: bws_menu.php:518
449
  msgid "WordPress DB Version"
450
  msgstr "WordPress-DB-version"
451
 
452
+ #: bws_menu.php:519
453
  msgid "Multisite"
454
  msgstr "Multisajt"
455
 
456
+ #: bws_menu.php:520
457
  msgid "Active Theme"
458
  msgstr "Aktivt tema"
459
 
460
+ #: bws_menu.php:535
461
  msgid "Please enter a valid email address."
462
  msgstr "Var god ange en giltig epost-adress."
463
 
464
+ #: bws_menu.php:539
465
  msgid "Email with system info is sent to "
466
  msgstr "Epost med systeminfo är skickat till"
467
 
468
+ #: bws_menu.php:543
469
  msgid "Thank you for contacting us."
470
  msgstr "Tack för att du kontaktade oss."
471
 
472
+ #: bws_menu.php:576
473
  msgid "Sorry, email message could not be delivered."
474
  msgstr "Ledsen, eposten kunde inte levereras."
475
 
476
+ #: bws_menu.php:584
477
  msgid "Need help?"
478
  msgstr ""
479
 
480
+ #: bws_menu.php:585
481
  msgid "Client area"
482
  msgstr ""
483
 
484
+ #: bws_menu.php:586
485
+ #: bws_menu.php:897
486
  msgid "System status"
487
  msgstr "Systemstatus"
488
 
489
+ #: bws_menu.php:591
490
  #, fuzzy
491
  msgid "Plugins"
492
  msgstr "Betaltillägg"
493
 
494
+ #: bws_menu.php:593
495
  msgid "Themes"
496
  msgstr ""
497
 
498
+ #: bws_menu.php:598
499
  msgid "All"
500
  msgstr ""
501
 
502
+ #: bws_menu.php:599
503
  #, fuzzy
504
  msgid "Installed"
505
  msgstr "Installera %s"
506
 
507
+ #: bws_menu.php:600
508
  #, fuzzy
509
  msgid "Recommended"
510
  msgstr "Rekommenderade tillägg"
511
 
512
+ #: bws_menu.php:604
513
  msgid "Installed plugins"
514
  msgstr "Installerade tillägg"
515
 
516
+ #: bws_menu.php:636
517
+ #: bws_menu.php:685
518
  msgid "Settings"
519
  msgstr "Inställningar"
520
 
521
+ #: bws_menu.php:657
522
+ #: bws_menu.php:714
523
  #, fuzzy
524
  msgid "Activate this plugin"
525
  msgstr "Aktiverade tillägg"
526
 
527
+ #: bws_menu.php:672
528
+ #: bws_menu.php:702
529
+ #: bws_menu.php:748
530
  msgid "Go"
531
  msgstr ""
532
 
533
+ #: bws_menu.php:676
534
+ #: bws_menu.php:706
535
+ #: bws_menu.php:752
536
  msgid "DONATE"
537
  msgstr ""
538
 
539
+ #: bws_menu.php:722
540
  msgid "Recommended plugins"
541
  msgstr "Rekommenderade tillägg"
542
 
543
+ #: bws_menu.php:760
544
  #, fuzzy
545
  msgid "Install now"
546
  msgstr "Установить сейчас"
547
 
548
+ #: bws_menu.php:781
549
  msgid "Try again"
550
  msgstr ""
551
 
552
+ #: bws_menu.php:799
553
  #, php-format
554
  msgid "Preview &#8220;%s&#8221;"
555
  msgstr ""
556
 
557
+ #: bws_menu.php:830
558
  #, php-format
559
  msgid "Install %s"
560
  msgstr "Installera %s"
561
 
562
+ #: bws_menu.php:830
563
  msgid "Install Now"
564
  msgstr "Установить сейчас"
565
 
566
+ #: bws_menu.php:833
567
  #, php-format
568
  msgid "Update to version %s"
569
  msgstr ""
570
 
571
+ #: bws_menu.php:833
572
  msgid "Update"
573
  msgstr ""
574
 
575
+ #: bws_menu.php:840
576
  #, php-format
577
  msgid "Preview %s"
578
  msgstr ""
579
 
580
+ #: bws_menu.php:840
581
  msgid "Preview"
582
  msgstr ""
583
 
584
+ #: bws_menu.php:846
585
+ #: bws_menu.php:878
586
  #, php-format
587
  msgid "By %s"
588
  msgstr ""
589
 
590
+ #: bws_menu.php:852
591
  msgid "Details"
592
  msgstr ""
593
 
594
+ #: bws_menu.php:884
595
  #, fuzzy
596
  msgid "Already Installed"
597
  msgstr "Installera %s"
598
 
599
+ #: bws_menu.php:900
600
  msgid "Environment"
601
  msgstr "Miljövariabler"
602
 
603
+ #: bws_menu.php:911
604
  msgid "Active Plugins"
605
  msgstr "Aktiverade tillägg"
606
 
607
+ #: bws_menu.php:924
608
  msgid "Inactive Plugins"
609
  msgstr "Inaktiverade tillägg"
610
 
611
+ #: bws_menu.php:940
612
  msgid "Send to support"
613
  msgstr "Skicka till support"
614
 
615
+ #: bws_menu.php:947
616
  msgid "Send to custom email &#187;"
617
  msgstr "Skicka till anpassad epost &#187;"
618
 
bws_menu/languages/bestwebsoft-uk.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-uk.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-05-11 14:14+0300\n"
6
- "PO-Revision-Date: 2015-05-11 14:15+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
@@ -119,7 +119,7 @@ msgstr "Немає доступу до теки завантажень WordPress
119
 
120
  #: bws_functions.php:296
121
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
122
- msgstr "Виникли певні проблеми. Спробуйте ще раз пізніше або завантажте плагін вручну. Просимо вібачення за незручності."
123
 
124
  #: bws_functions.php:321
125
  msgid "Please, enter Your license key"
@@ -175,8 +175,8 @@ msgstr "Спробуйте %s-денну тріал версію безкошт
175
  #: bws_functions.php:371
176
  #: bws_functions.php:401
177
  #: bws_functions.php:409
178
- #: bws_menu.php:643
179
- #: bws_menu.php:700
180
  msgid "Activate"
181
  msgstr "Активувати"
182
 
@@ -248,12 +248,11 @@ msgstr "Перевірте ліцензійний ключ"
248
 
249
  #: bws_functions.php:542
250
  msgid "WARNING: Illegal use notification"
251
- msgstr ""
252
 
253
  #: bws_functions.php:542
254
- #, fuzzy
255
  msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
256
- msgstr "Застереження: Ми помітили, що ви нелегально використовуєте наш плагін. Ми радимо вам вирішити цю проблему протягом доби, у противному разі плагін буде деактивовано. Будь ласка, зайдіть на вашу персональну сторінку"
257
 
258
  #: bws_functions.php:550
259
  msgid "Notice: Your PRO Trial license has expired. To continue using the plugin you should buy a PRO license"
@@ -265,11 +264,11 @@ msgstr "Строк вашої ліцензії витік. Якщо ви хоч
265
 
266
  #: bws_functions.php:552
267
  #: bws_functions.php:605
268
- #: bws_menu.php:619
269
- #: bws_menu.php:641
270
- #: bws_menu.php:668
271
- #: bws_menu.php:698
272
- #: bws_menu.php:744
273
  msgid "Learn more"
274
  msgstr "Дізнатись більше"
275
 
@@ -296,287 +295,309 @@ msgstr "витікає"
296
 
297
  #: bws_functions.php:605
298
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
299
- msgstr "та ви більше не будете оримувати першочергову технічну підтримку та оновлення."
300
 
301
  #: bws_functions.php:680
302
  msgid "Close"
303
  msgstr "Закрити"
304
 
305
- #: bws_menu.php:456
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
306
  msgid "Not set"
307
  msgstr "Не задано"
308
 
309
- #: bws_menu.php:458
310
- #: bws_menu.php:459
311
  msgid "On"
312
  msgstr "Увімк."
313
 
314
- #: bws_menu.php:458
315
- #: bws_menu.php:459
316
  msgid "Off"
317
  msgstr "Вимк."
318
 
319
- #: bws_menu.php:460
320
- #: bws_menu.php:461
321
- #: bws_menu.php:462
322
- #: bws_menu.php:463
323
- #: bws_menu.php:464
324
  #: bws_menu.php:476
 
 
 
325
  msgid "N/A"
326
  msgstr "Невідомо"
327
 
328
- #: bws_menu.php:464
329
  msgid " Mb"
330
  msgstr "Мб"
331
 
332
- #: bws_menu.php:465
333
- #: bws_menu.php:466
334
- #: bws_menu.php:467
335
- #: bws_menu.php:472
336
  msgid "Yes"
337
  msgstr "Так"
338
 
339
- #: bws_menu.php:465
340
- #: bws_menu.php:466
341
- #: bws_menu.php:467
342
- #: bws_menu.php:474
343
  msgid "No"
344
  msgstr "Ні"
345
 
346
- #: bws_menu.php:484
347
  msgid "Operating System"
348
  msgstr "Операційна система"
349
 
350
- #: bws_menu.php:485
351
  msgid "Server"
352
  msgstr "Тип серверу"
353
 
354
- #: bws_menu.php:486
355
  msgid "Memory usage"
356
  msgstr "Пам’яті використано"
357
 
358
- #: bws_menu.php:487
359
  msgid "MYSQL Version"
360
  msgstr "Версія MYSQL"
361
 
362
- #: bws_menu.php:488
363
  msgid "SQL Mode"
364
  msgstr "Режим SQL"
365
 
366
- #: bws_menu.php:489
367
  msgid "PHP Version"
368
  msgstr "Версія PHP"
369
 
370
- #: bws_menu.php:490
371
  msgid "PHP Safe Mode"
372
  msgstr "PHP Безпечний режим"
373
 
374
- #: bws_menu.php:491
375
  msgid "PHP Allow URL fopen"
376
  msgstr "Дозволити PHP URL fopen"
377
 
378
- #: bws_menu.php:492
379
  msgid "PHP Memory Limit"
380
  msgstr "Ліміт пам’яті"
381
 
382
- #: bws_menu.php:493
383
  msgid "PHP Max Upload Size"
384
  msgstr "Макс. розмір файлу, що завантажується"
385
 
386
- #: bws_menu.php:494
387
  msgid "PHP Max Post Size"
388
  msgstr "Макс. розмір посту"
389
 
390
- #: bws_menu.php:495
391
  msgid "PHP Max Script Execute Time"
392
  msgstr "Макс. час виконання сценарію"
393
 
394
- #: bws_menu.php:496
395
  msgid "PHP Exif support"
396
  msgstr "Підтримка PHP Exif"
397
 
398
- #: bws_menu.php:497
399
  msgid "PHP IPTC support"
400
  msgstr "Підтримка PHP IPTC"
401
 
402
- #: bws_menu.php:498
403
  msgid "PHP XML support"
404
  msgstr "Підтримка PHP XML"
405
 
406
- #: bws_menu.php:499
407
  msgid "Site URL"
408
  msgstr "Адреса сайту"
409
 
410
- #: bws_menu.php:500
411
  msgid "Home URL"
412
  msgstr "Адреса домашньої сторінки"
413
 
414
- #: bws_menu.php:503
415
  msgid "WordPress Version"
416
  msgstr "Версія WordPress"
417
 
418
- #: bws_menu.php:504
419
  msgid "WordPress DB Version"
420
  msgstr "Версія бази даних WordPress"
421
 
422
- #: bws_menu.php:505
423
  msgid "Multisite"
424
  msgstr "Мультисайт"
425
 
426
- #: bws_menu.php:506
427
  msgid "Active Theme"
428
  msgstr "Активна тема"
429
 
430
- #: bws_menu.php:521
431
  msgid "Please enter a valid email address."
432
  msgstr "Будь ласка, введіть коректний емейл."
433
 
434
- #: bws_menu.php:525
435
  msgid "Email with system info is sent to "
436
  msgstr "Емейл з системною інформацією надіслано на"
437
 
438
- #: bws_menu.php:529
439
  msgid "Thank you for contacting us."
440
  msgstr "Дякуємо, що звернулись до нас."
441
 
442
- #: bws_menu.php:562
443
  msgid "Sorry, email message could not be delivered."
444
  msgstr "Вибачте, ваше емейл не може бути доставлено"
445
 
446
- #: bws_menu.php:570
447
  msgid "Need help?"
448
  msgstr "Потрібна допомога?"
449
 
450
- #: bws_menu.php:571
451
  msgid "Client area"
452
  msgstr "Клієнтам"
453
 
454
- #: bws_menu.php:572
455
- #: bws_menu.php:883
456
  msgid "System status"
457
  msgstr "Системна інформація"
458
 
459
- #: bws_menu.php:577
460
  msgid "Plugins"
461
  msgstr "Плагіни"
462
 
463
- #: bws_menu.php:579
464
  msgid "Themes"
465
  msgstr "Теми"
466
 
467
- #: bws_menu.php:584
468
  msgid "All"
469
  msgstr "Всі"
470
 
471
- #: bws_menu.php:585
472
  msgid "Installed"
473
  msgstr "Встановлені"
474
 
475
- #: bws_menu.php:586
476
  msgid "Recommended"
477
  msgstr "Рекомендовані "
478
 
479
- #: bws_menu.php:590
480
  msgid "Installed plugins"
481
  msgstr "Встановлені плагіни"
482
 
483
- #: bws_menu.php:622
484
- #: bws_menu.php:671
485
  msgid "Settings"
486
  msgstr "Налаштування"
487
 
488
- #: bws_menu.php:643
489
- #: bws_menu.php:700
490
  msgid "Activate this plugin"
491
  msgstr "Активувати плагін"
492
 
493
- #: bws_menu.php:658
494
- #: bws_menu.php:688
495
- #: bws_menu.php:734
496
  msgid "Go"
497
  msgstr "Перейти"
498
 
499
- #: bws_menu.php:662
500
- #: bws_menu.php:692
501
- #: bws_menu.php:738
502
  msgid "DONATE"
503
  msgstr "Підтримати нас"
504
 
505
- #: bws_menu.php:708
506
  msgid "Recommended plugins"
507
  msgstr "Рекомендовані плагіни"
508
 
509
- #: bws_menu.php:746
510
  msgid "Install now"
511
  msgstr "Встановити"
512
 
513
- #: bws_menu.php:767
514
  msgid "Try again"
515
  msgstr "Спробувати ще раз"
516
 
517
- #: bws_menu.php:785
518
  #, php-format
519
  msgid "Preview &#8220;%s&#8221;"
520
  msgstr "Попередній перегляд &#8220;%s&#8221;"
521
 
522
- #: bws_menu.php:816
523
  #, php-format
524
  msgid "Install %s"
525
  msgstr "Встановити %s"
526
 
527
- #: bws_menu.php:816
528
  msgid "Install Now"
529
  msgstr "Встановити"
530
 
531
- #: bws_menu.php:819
532
  #, php-format
533
  msgid "Update to version %s"
534
  msgstr "Оновити до версії %s"
535
 
536
- #: bws_menu.php:819
537
  msgid "Update"
538
  msgstr "Оновити"
539
 
540
- #: bws_menu.php:826
541
  #, php-format
542
  msgid "Preview %s"
543
  msgstr "Попередній перегляд %s"
544
 
545
- #: bws_menu.php:826
546
  msgid "Preview"
547
  msgstr "Попередній перегляд"
548
 
549
- #: bws_menu.php:832
550
- #: bws_menu.php:864
551
  #, php-format
552
  msgid "By %s"
553
  msgstr "За %s"
554
 
555
- #: bws_menu.php:838
556
  msgid "Details"
557
  msgstr "Деталі"
558
 
559
- #: bws_menu.php:870
560
  msgid "Already Installed"
561
  msgstr "Уже встановлено %s"
562
 
563
- #: bws_menu.php:886
564
  msgid "Environment"
565
  msgstr "Системне оточення"
566
 
567
- #: bws_menu.php:897
568
  msgid "Active Plugins"
569
  msgstr "Активні плагіни"
570
 
571
- #: bws_menu.php:910
572
  msgid "Inactive Plugins"
573
  msgstr "Не активні плагіни"
574
 
575
- #: bws_menu.php:926
576
  msgid "Send to support"
577
  msgstr "Відправити службі тех. підтримки"
578
 
579
- #: bws_menu.php:933
580
  msgid "Send to custom email &#187;"
581
  msgstr "Відправити на електронну адресу &#187;"
582
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-06-12 15:58+0300\n"
6
+ "PO-Revision-Date: 2015-06-12 16:14+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
119
 
120
  #: bws_functions.php:296
121
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
122
+ msgstr "Виникли певні проблеми. Спробуйте ще раз пізніше або завантажте плагін вручну. Просимо вибачення за незручності."
123
 
124
  #: bws_functions.php:321
125
  msgid "Please, enter Your license key"
175
  #: bws_functions.php:371
176
  #: bws_functions.php:401
177
  #: bws_functions.php:409
178
+ #: bws_menu.php:657
179
+ #: bws_menu.php:714
180
  msgid "Activate"
181
  msgstr "Активувати"
182
 
248
 
249
  #: bws_functions.php:542
250
  msgid "WARNING: Illegal use notification"
251
+ msgstr "УВАГА: виявлено несанкціоноване використання плагіну"
252
 
253
  #: bws_functions.php:542
 
254
  msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
255
+ msgstr "Ви можете використовувати одну ліцензію Про-плагіну для одного домену. Будь ласка, переконайтесь, що інформацію щодо ліцензії і домену введено вірно, у вкладці Client Area. Ми настійливо рекомендуємо Вам вирішити це питання протягом 24 годин, інакше плагін буде деактивовано."
256
 
257
  #: bws_functions.php:550
258
  msgid "Notice: Your PRO Trial license has expired. To continue using the plugin you should buy a PRO license"
264
 
265
  #: bws_functions.php:552
266
  #: bws_functions.php:605
267
+ #: bws_menu.php:633
268
+ #: bws_menu.php:655
269
+ #: bws_menu.php:682
270
+ #: bws_menu.php:712
271
+ #: bws_menu.php:758
272
  msgid "Learn more"
273
  msgstr "Дізнатись більше"
274
 
295
 
296
  #: bws_functions.php:605
297
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
298
+ msgstr "та ви більше не будете отримувати першочергову технічну підтримку та оновлення."
299
 
300
  #: bws_functions.php:680
301
  msgid "Close"
302
  msgstr "Закрити"
303
 
304
+ #: bws_functions.php:771
305
+ #: bws_functions.php:784
306
+ msgid "Restore all plugin settings to defaults"
307
+ msgstr "Скинути налаштування плагіну до стандартних"
308
+
309
+ #: bws_functions.php:773
310
+ #: bws_functions.php:786
311
+ msgid "Restore settings"
312
+ msgstr "Скинути налаштування"
313
+
314
+ #: bws_functions.php:797
315
+ msgid "Are you sure you want to restore all settings by default?"
316
+ msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
317
+
318
+ #: bws_functions.php:799
319
+ msgid "Yes, restore all settings"
320
+ msgstr "Так, скинути налаштування"
321
+
322
+ #: bws_functions.php:800
323
+ msgid "No, go back to the settings page"
324
+ msgstr "Ні, повернутись назад на сторінку налаштувань"
325
+
326
+ #: bws_menu.php:470
327
  msgid "Not set"
328
  msgstr "Не задано"
329
 
330
+ #: bws_menu.php:472
331
+ #: bws_menu.php:473
332
  msgid "On"
333
  msgstr "Увімк."
334
 
335
+ #: bws_menu.php:472
336
+ #: bws_menu.php:473
337
  msgid "Off"
338
  msgstr "Вимк."
339
 
340
+ #: bws_menu.php:474
341
+ #: bws_menu.php:475
 
 
 
342
  #: bws_menu.php:476
343
+ #: bws_menu.php:477
344
+ #: bws_menu.php:478
345
+ #: bws_menu.php:490
346
  msgid "N/A"
347
  msgstr "Невідомо"
348
 
349
+ #: bws_menu.php:478
350
  msgid " Mb"
351
  msgstr "Мб"
352
 
353
+ #: bws_menu.php:479
354
+ #: bws_menu.php:480
355
+ #: bws_menu.php:481
356
+ #: bws_menu.php:486
357
  msgid "Yes"
358
  msgstr "Так"
359
 
360
+ #: bws_menu.php:479
361
+ #: bws_menu.php:480
362
+ #: bws_menu.php:481
363
+ #: bws_menu.php:488
364
  msgid "No"
365
  msgstr "Ні"
366
 
367
+ #: bws_menu.php:498
368
  msgid "Operating System"
369
  msgstr "Операційна система"
370
 
371
+ #: bws_menu.php:499
372
  msgid "Server"
373
  msgstr "Тип серверу"
374
 
375
+ #: bws_menu.php:500
376
  msgid "Memory usage"
377
  msgstr "Пам’яті використано"
378
 
379
+ #: bws_menu.php:501
380
  msgid "MYSQL Version"
381
  msgstr "Версія MYSQL"
382
 
383
+ #: bws_menu.php:502
384
  msgid "SQL Mode"
385
  msgstr "Режим SQL"
386
 
387
+ #: bws_menu.php:503
388
  msgid "PHP Version"
389
  msgstr "Версія PHP"
390
 
391
+ #: bws_menu.php:504
392
  msgid "PHP Safe Mode"
393
  msgstr "PHP Безпечний режим"
394
 
395
+ #: bws_menu.php:505
396
  msgid "PHP Allow URL fopen"
397
  msgstr "Дозволити PHP URL fopen"
398
 
399
+ #: bws_menu.php:506
400
  msgid "PHP Memory Limit"
401
  msgstr "Ліміт пам’яті"
402
 
403
+ #: bws_menu.php:507
404
  msgid "PHP Max Upload Size"
405
  msgstr "Макс. розмір файлу, що завантажується"
406
 
407
+ #: bws_menu.php:508
408
  msgid "PHP Max Post Size"
409
  msgstr "Макс. розмір посту"
410
 
411
+ #: bws_menu.php:509
412
  msgid "PHP Max Script Execute Time"
413
  msgstr "Макс. час виконання сценарію"
414
 
415
+ #: bws_menu.php:510
416
  msgid "PHP Exif support"
417
  msgstr "Підтримка PHP Exif"
418
 
419
+ #: bws_menu.php:511
420
  msgid "PHP IPTC support"
421
  msgstr "Підтримка PHP IPTC"
422
 
423
+ #: bws_menu.php:512
424
  msgid "PHP XML support"
425
  msgstr "Підтримка PHP XML"
426
 
427
+ #: bws_menu.php:513
428
  msgid "Site URL"
429
  msgstr "Адреса сайту"
430
 
431
+ #: bws_menu.php:514
432
  msgid "Home URL"
433
  msgstr "Адреса домашньої сторінки"
434
 
435
+ #: bws_menu.php:517
436
  msgid "WordPress Version"
437
  msgstr "Версія WordPress"
438
 
439
+ #: bws_menu.php:518
440
  msgid "WordPress DB Version"
441
  msgstr "Версія бази даних WordPress"
442
 
443
+ #: bws_menu.php:519
444
  msgid "Multisite"
445
  msgstr "Мультисайт"
446
 
447
+ #: bws_menu.php:520
448
  msgid "Active Theme"
449
  msgstr "Активна тема"
450
 
451
+ #: bws_menu.php:535
452
  msgid "Please enter a valid email address."
453
  msgstr "Будь ласка, введіть коректний емейл."
454
 
455
+ #: bws_menu.php:539
456
  msgid "Email with system info is sent to "
457
  msgstr "Емейл з системною інформацією надіслано на"
458
 
459
+ #: bws_menu.php:543
460
  msgid "Thank you for contacting us."
461
  msgstr "Дякуємо, що звернулись до нас."
462
 
463
+ #: bws_menu.php:576
464
  msgid "Sorry, email message could not be delivered."
465
  msgstr "Вибачте, ваше емейл не може бути доставлено"
466
 
467
+ #: bws_menu.php:584
468
  msgid "Need help?"
469
  msgstr "Потрібна допомога?"
470
 
471
+ #: bws_menu.php:585
472
  msgid "Client area"
473
  msgstr "Клієнтам"
474
 
475
+ #: bws_menu.php:586
476
+ #: bws_menu.php:897
477
  msgid "System status"
478
  msgstr "Системна інформація"
479
 
480
+ #: bws_menu.php:591
481
  msgid "Plugins"
482
  msgstr "Плагіни"
483
 
484
+ #: bws_menu.php:593
485
  msgid "Themes"
486
  msgstr "Теми"
487
 
488
+ #: bws_menu.php:598
489
  msgid "All"
490
  msgstr "Всі"
491
 
492
+ #: bws_menu.php:599
493
  msgid "Installed"
494
  msgstr "Встановлені"
495
 
496
+ #: bws_menu.php:600
497
  msgid "Recommended"
498
  msgstr "Рекомендовані "
499
 
500
+ #: bws_menu.php:604
501
  msgid "Installed plugins"
502
  msgstr "Встановлені плагіни"
503
 
504
+ #: bws_menu.php:636
505
+ #: bws_menu.php:685
506
  msgid "Settings"
507
  msgstr "Налаштування"
508
 
509
+ #: bws_menu.php:657
510
+ #: bws_menu.php:714
511
  msgid "Activate this plugin"
512
  msgstr "Активувати плагін"
513
 
514
+ #: bws_menu.php:672
515
+ #: bws_menu.php:702
516
+ #: bws_menu.php:748
517
  msgid "Go"
518
  msgstr "Перейти"
519
 
520
+ #: bws_menu.php:676
521
+ #: bws_menu.php:706
522
+ #: bws_menu.php:752
523
  msgid "DONATE"
524
  msgstr "Підтримати нас"
525
 
526
+ #: bws_menu.php:722
527
  msgid "Recommended plugins"
528
  msgstr "Рекомендовані плагіни"
529
 
530
+ #: bws_menu.php:760
531
  msgid "Install now"
532
  msgstr "Встановити"
533
 
534
+ #: bws_menu.php:781
535
  msgid "Try again"
536
  msgstr "Спробувати ще раз"
537
 
538
+ #: bws_menu.php:799
539
  #, php-format
540
  msgid "Preview &#8220;%s&#8221;"
541
  msgstr "Попередній перегляд &#8220;%s&#8221;"
542
 
543
+ #: bws_menu.php:830
544
  #, php-format
545
  msgid "Install %s"
546
  msgstr "Встановити %s"
547
 
548
+ #: bws_menu.php:830
549
  msgid "Install Now"
550
  msgstr "Встановити"
551
 
552
+ #: bws_menu.php:833
553
  #, php-format
554
  msgid "Update to version %s"
555
  msgstr "Оновити до версії %s"
556
 
557
+ #: bws_menu.php:833
558
  msgid "Update"
559
  msgstr "Оновити"
560
 
561
+ #: bws_menu.php:840
562
  #, php-format
563
  msgid "Preview %s"
564
  msgstr "Попередній перегляд %s"
565
 
566
+ #: bws_menu.php:840
567
  msgid "Preview"
568
  msgstr "Попередній перегляд"
569
 
570
+ #: bws_menu.php:846
571
+ #: bws_menu.php:878
572
  #, php-format
573
  msgid "By %s"
574
  msgstr "За %s"
575
 
576
+ #: bws_menu.php:852
577
  msgid "Details"
578
  msgstr "Деталі"
579
 
580
+ #: bws_menu.php:884
581
  msgid "Already Installed"
582
  msgstr "Уже встановлено %s"
583
 
584
+ #: bws_menu.php:900
585
  msgid "Environment"
586
  msgstr "Системне оточення"
587
 
588
+ #: bws_menu.php:911
589
  msgid "Active Plugins"
590
  msgstr "Активні плагіни"
591
 
592
+ #: bws_menu.php:924
593
  msgid "Inactive Plugins"
594
  msgstr "Не активні плагіни"
595
 
596
+ #: bws_menu.php:940
597
  msgid "Send to support"
598
  msgstr "Відправити службі тех. підтримки"
599
 
600
+ #: bws_menu.php:947
601
  msgid "Send to custom email &#187;"
602
  msgstr "Відправити на електронну адресу &#187;"
603
 
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.39
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
@@ -76,7 +76,7 @@ if ( ! function_exists( 'fcbkbttn_admin_init' ) ) {
76
 
77
  if ( ! function_exists( 'fcbkbttn_settings' ) ) {
78
  function fcbkbttn_settings() {
79
- global $fcbkbttn_options, $fcbkbttn_plugin_info;
80
 
81
  $fcbkbttn_options_default = array(
82
  'plugin_option_version' => $fcbkbttn_plugin_info["Version"],
@@ -128,7 +128,7 @@ if ( ! function_exists( 'fcbkbttn_settings' ) ) {
128
  /* Function formed content of the plugin's admin page. */
129
  if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
130
  function fcbkbttn_settings_page() {
131
- global $fcbkbttn_options, $wp_version, $fcbkbttn_plugin_info;
132
  $message = $error = "";
133
  $upload_dir = wp_upload_dir();
134
  $plugin_basename = plugin_basename( __FILE__ );
@@ -221,6 +221,13 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
221
  $lang_codes = array(
222
  "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'
223
  );
 
 
 
 
 
 
 
224
 
225
  /*## GO PRO */
226
  if ( isset( $_GET['action'] ) && 'go_pro' == $_GET['action'] ) {
@@ -242,129 +249,134 @@ if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
242
  <div class="updated fade" <?php if ( empty( $message ) || "" != $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
243
  <div id="fcbkbttn_settings_notice" class="updated fade bws_settings_form_notice" style="display:none"><p><strong><?php _e( "Notice:", 'facebook' ); ?></strong> <?php _e( "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button.", 'facebook' ); ?></p></div>
244
  <div class="error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
245
- <?php /*## check action */ if ( ! isset( $_GET['action'] ) ) { /* check action ##*/ ?>
246
- <form method="post" action="" enctype="multipart/form-data" id="fcbkbttn_settings_form" class="bws_settings_form">
247
- <table class="form-table">
248
- <tr valign="top">
249
- <th scope="row"><?php _e( 'Your Facebook ID or username', 'facebook' ); ?></th>
250
- <td>
251
- <input name='fcbkbttn_link' type='text' value='<?php echo $fcbkbttn_options['link']; ?>' />
252
- </td>
253
- </tr>
254
- <tr valign="top">
255
- <th scope="row"><?php _e( 'Display button', 'facebook' ); ?></th>
256
- <td>
257
- <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 />
258
- <label><input name='fcbkbttn_like' type='checkbox' value='1' <?php if ( 1 == $fcbkbttn_options['like'] ) echo 'checked="checked "'; ?>/> <?php _e( "Like", 'facebook' ); ?></label><br />
259
- <label><input name='fcbkbttn_share' type='checkbox' value='1' <?php if ( 1 == $fcbkbttn_options['share'] ) echo 'checked="checked "'; ?>/> <?php _e( "Share", 'facebook' ); ?></label>
260
- </td>
261
- </tr>
262
- <tr class="fcbkbttn_my_page" <?php if ( 1 != $fcbkbttn_options['my_page'] ) echo 'style="display:none"'; ?>>
263
- <th>
264
- <?php _e( '"My page" button image', 'facebook' ); ?>
265
- </th>
266
- <td>
267
- <?php if ( scandir( $upload_dir['basedir'] ) && is_writable( $upload_dir['basedir'] ) ) { ?>
268
- <select name="fcbkbttn_display_option">
269
- <option <?php if ( 'standard' == $fcbkbttn_options['display_option'] ) echo 'selected="selected"'; ?> value="standard"><?php _e( 'Standard Facebook image', 'facebook' ); ?></option>
270
- <option <?php if ( 'custom' == $fcbkbttn_options['display_option'] ) echo 'selected="selected"'; ?> value="custom"><?php _e( 'Custom Facebook image', 'facebook' ); ?></option>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
271
  </select>
272
- <?php } else {
273
- echo __( 'To use custom image you need to setup permissions to upload directory of your site', 'facebook' ) . " - " . $upload_dir['basedir'];
274
- } ?>
275
- </td>
276
- </tr>
277
- <tr class="fcbkbttn_my_page" <?php if ( 1 != $fcbkbttn_options['my_page'] ) echo 'style="display:none"'; ?>>
278
- <th></th>
279
- <td>
280
- <?php _e( 'Current image', 'facebook' ); ?>:
281
- <img src="<?php echo $fcbkbttn_options['fb_img_link']; ?>" style="vertical-align: middle;" />
282
- </td>
283
- </tr>
284
- <tr class="fcbkbttn_my_page" id="fcbkbttn_display_option_custom" <?php if ( ! ( 1 == $fcbkbttn_options['my_page'] && 'custom' == $fcbkbttn_options['display_option'] ) ) echo 'style="display:none"'; ?>>
285
- <th></th>
286
- <td>
287
- <input name="uploadfile" type="file" /><br />
288
- <span class="bws_info"><?php _e( 'Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:"jpg", "jpeg", "png".', 'facebook' ); ?></span>
289
- </td>
290
- </tr>
291
- <tr>
292
- <th>
293
- <?php _e( 'Facebook buttons position', 'facebook' ); ?>
294
- </th>
295
- <td>
296
- <select name="fcbkbttn_where">
297
- <option <?php if ( 'before' == $fcbkbttn_options['where'] ) echo 'selected="selected"'; ?> value="before"><?php _e( "Before", 'facebook' ); ?></option>
298
- <option <?php if ( 'after' == $fcbkbttn_options['where'] ) echo 'selected="selected"'; ?> value="after"><?php _e( "After", 'facebook' ); ?></option>
299
- <option <?php if ( 'beforeandafter' == $fcbkbttn_options['where'] ) echo 'selected="selected"'; ?> value="beforeandafter"><?php _e( "Before and After", 'facebook' ); ?></option>
300
- <option <?php if ( 'shortcode' == $fcbkbttn_options['where'] ) echo 'selected="selected"'; ?> value="shortcode"><?php _e( "Shortcode", 'facebook' ); ?></option>
301
- </select>
302
- <span id="fcbkbttn_shortcode" class="bws_info" <?php if ( $fcbkbttn_options['where'] != 'shortcode' ) echo 'style="display:none"'; ?> ><?php _e( "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:", 'facebook' ); ?> [fb_button].</span>
303
- </td>
304
- </tr>
305
- <tr>
306
- <th>
307
- <?php _e( "Facebook buttons language", 'facebook' ); ?>
308
- </th>
309
- <td>
310
- <select name="fcbkbttn_locale">
311
- <?php foreach ( $lang_codes as $key => $val ) {
312
- echo '<option value="' . $key . '"';
313
- if ( $key == $fcbkbttn_options['locale'] )
314
- echo ' selected="selected"';
315
- echo '>' . esc_html ( $val ) . '</option>';
316
- } ?>
317
- </select>
318
- <span class="bws_info"><?php _e( 'Change the language of Facebook Like Button', 'facebook' ); ?></span>
319
- </td>
320
- </tr>
321
- <tr valign="top">
322
- <th scope="row"><?php _e( 'Html tag for "Like" button', 'facebook' ); ?></th>
323
- <td>
324
- <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 />
325
- <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>
326
- <span class="bws_info">(<?php _e( "Use this tag to improve validation of your site", 'facebook' ); ?>)</span>
327
- </td>
328
- </tr>
329
- </table>
330
- <!-- general -->
331
- <div class="bws_pro_version_bloc">
332
- <div class="bws_pro_version_table_bloc">
333
- <div class="bws_table_bg"></div>
334
- <table class="form-table bws_pro_version">
335
- <tr valign="top">
336
- <th><?php _e( '"Like" for an entire site on every page:', 'facebook' ); ?></th>
337
- <td><input disabled="disabled" name='fcbkbttn_entire_site_like' type='checkbox' value='1' /><br />
338
- <span style="color: rgb(136, 136, 136); font-size: 10px; display:inline"><?php _e( '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.', 'facebook' ); ?></span>
339
- </td>
340
- </tr>
341
- <tr valign="top">
342
- <th scope="row" colspan="2">
343
- * <?php _e( 'If you upgrade to Pro version all your settings will be saved.', 'facebook' ); ?>
344
- </th>
345
- </tr>
346
- </table>
347
- </div>
348
- <div class="bws_pro_version_tooltip">
349
- <div class="bws_info">
350
- <?php _e( 'Unlock premium options by upgrading to a PRO version.', 'facebook' ); ?>
351
- <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>
352
  </div>
353
- <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">
354
- <?php _e( 'Go', 'facebook' ); ?> <strong>PRO</strong>
355
- </a>
356
- <div class="clear"></div>
357
  </div>
358
- </div>
359
- <!-- end general -->
360
- <input type="hidden" name="fcbkbttn_form_submit" value="submit" />
361
- <p class="submit">
362
- <input type="submit" class="button-primary" value="<?php _e( 'Save Changes', 'facebook' ); ?>" />
363
- </p>
364
- <?php wp_nonce_field( $plugin_basename, 'fcbkbttn_nonce_name' ); ?>
365
- </form>
366
- <!-- general -->
367
- <?php bws_plugin_reviews_block( $fcbkbttn_plugin_info['Name'], 'facebook-button-plugin' );
 
368
  } elseif ( 'extra' == $_GET['action'] ) { ?>
369
  <div class="bws_pro_version_bloc">
370
  <div class="bws_pro_version_table_bloc">
4
  Plugin URI: http://bestwebsoft.com/products/
5
  Description: Put Facebook Button in to your post.
6
  Author: BestWebSoft
7
+ Version: 2.40
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
76
 
77
  if ( ! function_exists( 'fcbkbttn_settings' ) ) {
78
  function fcbkbttn_settings() {
79
+ global $fcbkbttn_options, $fcbkbttn_plugin_info, $fcbkbttn_options_default;
80
 
81
  $fcbkbttn_options_default = array(
82
  'plugin_option_version' => $fcbkbttn_plugin_info["Version"],
128
  /* Function formed content of the plugin's admin page. */
129
  if ( ! function_exists( 'fcbkbttn_settings_page' ) ) {
130
  function fcbkbttn_settings_page() {
131
+ global $fcbkbttn_options, $wp_version, $fcbkbttn_plugin_info, $fcbkbttn_options_default;
132
  $message = $error = "";
133
  $upload_dir = wp_upload_dir();
134
  $plugin_basename = plugin_basename( __FILE__ );
221
  $lang_codes = array(
222
  "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'
223
  );
224
+ /*## add restore function */
225
+ if ( isset( $_REQUEST['bws_restore_confirm'] ) && check_admin_referer( $plugin_basename, 'bws_settings_nonce_name' ) ) {
226
+ $fcbkbttn_options = $fcbkbttn_options_default;
227
+ update_option( 'fcbk_bttn_plgn_options', $fcbkbttn_options );
228
+ $message = __( 'All plugin settings were restored.', 'facebook' );
229
+ }
230
+ /* end ##*/
231
 
232
  /*## GO PRO */
233
  if ( isset( $_GET['action'] ) && 'go_pro' == $_GET['action'] ) {
249
  <div class="updated fade" <?php if ( empty( $message ) || "" != $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
250
  <div id="fcbkbttn_settings_notice" class="updated fade bws_settings_form_notice" style="display:none"><p><strong><?php _e( "Notice:", 'facebook' ); ?></strong> <?php _e( "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button.", 'facebook' ); ?></p></div>
251
  <div class="error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
252
+ <?php /*## check action */ if ( ! isset( $_GET['action'] ) ) {
253
+ if ( isset( $_REQUEST['bws_restore_default'] ) && check_admin_referer( $plugin_basename, 'bws_settings_nonce_name' ) ) {
254
+ bws_form_restore_default_confirm( $plugin_basename );
255
+ } else { /* check action ##*/ ?>
256
+ <form method="post" action="" enctype="multipart/form-data" id="fcbkbttn_settings_form" class="bws_settings_form">
257
+ <table class="form-table">
258
+ <tr valign="top">
259
+ <th scope="row"><?php _e( 'Your Facebook ID or username', 'facebook' ); ?></th>
260
+ <td>
261
+ <input name='fcbkbttn_link' type='text' maxlength='250' value='<?php echo $fcbkbttn_options['link']; ?>' />
262
+ </td>
263
+ </tr>
264
+ <tr valign="top">
265
+ <th scope="row"><?php _e( 'Display button', 'facebook' ); ?></th>
266
+ <td>
267
+ <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 />
268
+ <label><input name='fcbkbttn_like' type='checkbox' value='1' <?php if ( 1 == $fcbkbttn_options['like'] ) echo 'checked="checked "'; ?>/> <?php _e( "Like", 'facebook' ); ?></label><br />
269
+ <label><input name='fcbkbttn_share' type='checkbox' value='1' <?php if ( 1 == $fcbkbttn_options['share'] ) echo 'checked="checked "'; ?>/> <?php _e( "Share", 'facebook' ); ?></label>
270
+ </td>
271
+ </tr>
272
+ <tr class="fcbkbttn_my_page" <?php if ( 1 != $fcbkbttn_options['my_page'] ) echo 'style="display:none"'; ?>>
273
+ <th>
274
+ <?php _e( '"My page" button image', 'facebook' ); ?>
275
+ </th>
276
+ <td>
277
+ <?php if ( scandir( $upload_dir['basedir'] ) && is_writable( $upload_dir['basedir'] ) ) { ?>
278
+ <select name="fcbkbttn_display_option">
279
+ <option <?php if ( 'standard' == $fcbkbttn_options['display_option'] ) echo 'selected="selected"'; ?> value="standard"><?php _e( 'Standard Facebook image', 'facebook' ); ?></option>
280
+ <option <?php if ( 'custom' == $fcbkbttn_options['display_option'] ) echo 'selected="selected"'; ?> value="custom"><?php _e( 'Custom Facebook image', 'facebook' ); ?></option>
281
+ </select>
282
+ <?php } else {
283
+ echo __( 'To use custom image you need to setup permissions to upload directory of your site', 'facebook' ) . " - " . $upload_dir['basedir'];
284
+ } ?>
285
+ </td>
286
+ </tr>
287
+ <tr class="fcbkbttn_my_page" <?php if ( 1 != $fcbkbttn_options['my_page'] ) echo 'style="display:none"'; ?>>
288
+ <th></th>
289
+ <td>
290
+ <?php _e( 'Current image', 'facebook' ); ?>:
291
+ <img src="<?php echo $fcbkbttn_options['fb_img_link']; ?>" style="vertical-align: middle;" />
292
+ </td>
293
+ </tr>
294
+ <tr class="fcbkbttn_my_page" id="fcbkbttn_display_option_custom" <?php if ( ! ( 1 == $fcbkbttn_options['my_page'] && 'custom' == $fcbkbttn_options['display_option'] ) ) echo 'style="display:none"'; ?>>
295
+ <th></th>
296
+ <td>
297
+ <input name="uploadfile" type="file" /><br />
298
+ <span class="bws_info"><?php _e( 'Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:"jpg", "jpeg", "png".', 'facebook' ); ?></span>
299
+ </td>
300
+ </tr>
301
+ <tr>
302
+ <th>
303
+ <?php _e( 'Facebook buttons position', 'facebook' ); ?>
304
+ </th>
305
+ <td>
306
+ <select name="fcbkbttn_where">
307
+ <option <?php if ( 'before' == $fcbkbttn_options['where'] ) echo 'selected="selected"'; ?> value="before"><?php _e( "Before", 'facebook' ); ?></option>
308
+ <option <?php if ( 'after' == $fcbkbttn_options['where'] ) echo 'selected="selected"'; ?> value="after"><?php _e( "After", 'facebook' ); ?></option>
309
+ <option <?php if ( 'beforeandafter' == $fcbkbttn_options['where'] ) echo 'selected="selected"'; ?> value="beforeandafter"><?php _e( "Before and After", 'facebook' ); ?></option>
310
+ <option <?php if ( 'shortcode' == $fcbkbttn_options['where'] ) echo 'selected="selected"'; ?> value="shortcode"><?php _e( "Shortcode", 'facebook' ); ?></option>
311
  </select>
312
+ <span id="fcbkbttn_shortcode" class="bws_info" <?php if ( $fcbkbttn_options['where'] != 'shortcode' ) echo 'style="display:none"'; ?> ><?php _e( "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:", 'facebook' ); ?> [fb_button].</span>
313
+ </td>
314
+ </tr>
315
+ <tr>
316
+ <th>
317
+ <?php _e( "Facebook buttons language", 'facebook' ); ?>
318
+ </th>
319
+ <td>
320
+ <select name="fcbkbttn_locale">
321
+ <?php foreach ( $lang_codes as $key => $val ) {
322
+ echo '<option value="' . $key . '"';
323
+ if ( $key == $fcbkbttn_options['locale'] )
324
+ echo ' selected="selected"';
325
+ echo '>' . esc_html ( $val ) . '</option>';
326
+ } ?>
327
+ </select>
328
+ <span class="bws_info"><?php _e( 'Change the language of Facebook Like Button', 'facebook' ); ?></span>
329
+ </td>
330
+ </tr>
331
+ <tr valign="top">
332
+ <th scope="row"><?php _e( 'Html tag for "Like" button', 'facebook' ); ?></th>
333
+ <td>
334
+ <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 />
335
+ <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>
336
+ <span class="bws_info">(<?php _e( "Use this tag to improve validation of your site", 'facebook' ); ?>)</span>
337
+ </td>
338
+ </tr>
339
+ </table>
340
+ <!-- general -->
341
+ <div class="bws_pro_version_bloc">
342
+ <div class="bws_pro_version_table_bloc">
343
+ <div class="bws_table_bg"></div>
344
+ <table class="form-table bws_pro_version">
345
+ <tr valign="top">
346
+ <th><?php _e( '"Like" for an entire site on every page:', 'facebook' ); ?></th>
347
+ <td><input disabled="disabled" name='fcbkbttn_entire_site_like' type='checkbox' value='1' /><br />
348
+ <span style="color: rgb(136, 136, 136); font-size: 10px; display:inline"><?php _e( '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.', 'facebook' ); ?></span>
349
+ </td>
350
+ </tr>
351
+ <tr valign="top">
352
+ <th scope="row" colspan="2">
353
+ * <?php _e( 'If you upgrade to Pro version all your settings will be saved.', 'facebook' ); ?>
354
+ </th>
355
+ </tr>
356
+ </table>
357
+ </div>
358
+ <div class="bws_pro_version_tooltip">
359
+ <div class="bws_info">
360
+ <?php _e( 'Unlock premium options by upgrading to a PRO version.', 'facebook' ); ?>
361
+ <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>
362
+ </div>
363
+ <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">
364
+ <?php _e( 'Go', 'facebook' ); ?> <strong>PRO</strong>
365
+ </a>
366
+ <div class="clear"></div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
367
  </div>
 
 
 
 
368
  </div>
369
+ <!-- end general -->
370
+ <input type="hidden" name="fcbkbttn_form_submit" value="submit" />
371
+ <p class="submit">
372
+ <input type="submit" class="button-primary" value="<?php _e( 'Save Changes', 'facebook' ); ?>" />
373
+ </p>
374
+ <?php wp_nonce_field( $plugin_basename, 'fcbkbttn_nonce_name' ); ?>
375
+ </form>
376
+ <!-- general -->
377
+ <?php bws_form_restore_default_settings( $plugin_basename );
378
+ bws_plugin_reviews_block( $fcbkbttn_plugin_info['Name'], 'facebook-button-plugin' );
379
+ }
380
  } elseif ( 'extra' == $_GET['action'] ) { ?>
381
  <div class="bws_pro_version_bloc">
382
  <div class="bws_pro_version_table_bloc">
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-05-18 12:22+0300\n"
6
- "PO-Revision-Date: 2015-05-18 12:22+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"
@@ -18,7 +18,7 @@ msgstr ""
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: facebook-button-plugin.php:32
21
- #: facebook-button-plugin.php:234
22
  msgid "Facebook Button Settings"
23
  msgstr "Facebook Napin asetukset"
24
 
@@ -50,176 +50,192 @@ msgstr "Virhe: tarkista kuvan leveys tai korkeus"
50
  msgid "Uploading Error: check image properties"
51
  msgstr "Virhe latauksessa: tarkista kuvan ominaisuudet"
52
 
53
- #: facebook-button-plugin.php:236
54
- #: facebook-button-plugin.php:581
55
- #: facebook-button-plugin.php:595
 
 
 
 
56
  msgid "Settings"
57
  msgstr "Asetukset"
58
 
59
- #: facebook-button-plugin.php:237
60
  msgid "Extra settings"
61
  msgstr "Lisää asetuksia"
62
 
63
- #: facebook-button-plugin.php:238
64
- #: facebook-button-plugin.php:596
65
  msgid "FAQ"
66
  msgstr "FAQ"
67
 
68
- #: facebook-button-plugin.php:239
69
  msgid "Go PRO"
70
  msgstr "Hanki PRO versio"
71
 
72
- #: facebook-button-plugin.php:243
73
  msgid "Notice:"
74
  msgstr "Huomautus:"
75
 
76
- #: facebook-button-plugin.php:243
77
  msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
78
  msgstr "Lisäosan asetukset ovat muuttuneet: Mikäli haluat säilyttää uudet asetukset muista klikata Tallenna Asetukset nappia."
79
 
80
- #: facebook-button-plugin.php:249
81
  #, fuzzy
82
  msgid "Your Facebook ID or username"
83
  msgstr "Sinun Facebook ID:si tai käyttäjänimesi:"
84
 
85
- #: facebook-button-plugin.php:255
86
  #, fuzzy
87
  msgid "Display button"
88
  msgstr "Näytä nappi:"
89
 
90
- #: facebook-button-plugin.php:257
91
  msgid "My Page"
92
  msgstr "Minun sivuni"
93
 
94
- #: facebook-button-plugin.php:258
95
  msgid "Like"
96
  msgstr "Tykkää"
97
 
98
- #: facebook-button-plugin.php:259
99
  msgid "Share"
100
  msgstr "Jaa"
101
 
102
- #: facebook-button-plugin.php:264
103
  msgid "\"My page\" button image"
104
  msgstr ""
105
 
106
- #: facebook-button-plugin.php:269
107
  msgid "Standard Facebook image"
108
  msgstr "Standardi Facebook kuva"
109
 
110
- #: facebook-button-plugin.php:270
111
  msgid "Custom Facebook image"
112
  msgstr "Mukautettu Fecabook kuva"
113
 
114
- #: facebook-button-plugin.php:273
115
  msgid "To use custom image you need to setup permissions to upload directory of your site"
116
  msgstr "Käyttääksesi mukautettua, kuva pitää voida ladata hakemistoosi"
117
 
118
- #: facebook-button-plugin.php:280
119
  #, fuzzy
120
  msgid "Current image"
121
  msgstr "Nykyinen kuva:"
122
 
123
- #: facebook-button-plugin.php:288
124
  msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
125
  msgstr "Kuvan ominaisuudet: max leveys 100px; max korkeus 40px; max koko 32Kb; kuvan tyypit:\"jpg\", \"jpeg\", \"png\"."
126
 
127
- #: facebook-button-plugin.php:293
128
  #, fuzzy
129
  msgid "Facebook buttons position"
130
  msgstr "Facebook napin paikka:"
131
 
132
- #: facebook-button-plugin.php:297
133
  msgid "Before"
134
  msgstr "Ennen"
135
 
136
- #: facebook-button-plugin.php:298
137
  msgid "After"
138
  msgstr "Jälkeen"
139
 
140
- #: facebook-button-plugin.php:299
141
  msgid "Before and After"
142
  msgstr "Ennen ja Jälkeen"
143
 
144
- #: facebook-button-plugin.php:300
145
  msgid "Shortcode"
146
  msgstr "Lyhytkoodi"
147
 
148
- #: facebook-button-plugin.php:302
149
  msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
150
  msgstr "Mikäli haluat lisätä Facebook napin sivullesi, kopioi ja liitä tämä lyhytkoodi artikkeliisi tai sivullesi:"
151
 
152
- #: facebook-button-plugin.php:307
153
  #, fuzzy
154
  msgid "Facebook buttons language"
155
  msgstr "Facebook Napin kieli:"
156
 
157
- #: facebook-button-plugin.php:318
158
  msgid "Change the language of Facebook Like Button"
159
  msgstr "Vaihda Facebook napin kieli"
160
 
161
- #: facebook-button-plugin.php:322
162
  #, fuzzy
163
  msgid "Html tag for \"Like\" button"
164
  msgstr "HTML tagi Tykkää Napille:"
165
 
166
- #: facebook-button-plugin.php:326
167
  msgid "Use this tag to improve validation of your site"
168
  msgstr "Käytä tätä tagia parantamaan sivusi näkyvyyttä"
169
 
170
- #: facebook-button-plugin.php:336
171
  msgid "\"Like\" for an entire site on every page:"
172
  msgstr "\"Like\" koko sivustolle ja kaikille sivuille:"
173
 
174
- #: facebook-button-plugin.php:338
175
  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."
176
  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."
177
 
178
- #: facebook-button-plugin.php:343
179
- #: facebook-button-plugin.php:398
180
  msgid "If you upgrade to Pro version all your settings will be saved."
181
  msgstr "Mikäli päivität Pro versioon, kaikki asetuksesi tallennetaan."
182
 
183
- #: facebook-button-plugin.php:350
184
- #: facebook-button-plugin.php:405
185
  msgid "Unlock premium options by upgrading to a PRO version."
186
  msgstr "Ota käyttöön premium valinnat päivittämällä PRO versioon."
187
 
188
- #: facebook-button-plugin.php:351
189
- #: facebook-button-plugin.php:406
190
  msgid "Learn More"
191
  msgstr "Lue Lisää"
192
 
193
- #: facebook-button-plugin.php:354
194
- #: facebook-button-plugin.php:409
195
  msgid "Go"
196
  msgstr "Mene"
197
 
198
- #: facebook-button-plugin.php:362
199
- #: facebook-button-plugin.php:393
200
  msgid "Save Changes"
201
  msgstr "Tallenna muutokset"
202
 
203
- #: facebook-button-plugin.php:375
204
  msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
205
  msgstr "Valitse haluamasi viestin tyyppi (tai yksittäiset sivut) joissa Facebook nappi näytetään:"
206
 
207
- #: facebook-button-plugin.php:382
208
  msgid "Show URL for pages"
209
  msgstr "Näytä URL sivuilla"
210
 
211
- #: facebook-button-plugin.php:388
212
  msgid "Example of the site's pages tree"
213
  msgstr "Esimerkki sivuston sivuhakemistosta"
214
 
215
- #: facebook-button-plugin.php:388
216
  msgid "Example of site pages' tree"
217
  msgstr "Esimerkki sivun sivuhakemistosta"
218
 
219
- #: facebook-button-plugin.php:597
220
  msgid "Support"
221
  msgstr "Tuki"
222
 
 
 
 
 
 
 
 
 
 
 
 
 
223
  #~ msgid "Choose display settings:"
224
  #~ msgstr "Valitse näyttö asetukset:"
225
 
@@ -244,6 +260,3 @@ msgstr "Tuki"
244
 
245
  #~ msgid "Plugins page"
246
  #~ msgstr "Lisäosat sivu"
247
-
248
- #~ msgid "the setting page"
249
- #~ msgstr "asetukset sivu"
2
  msgstr ""
3
  "Project-Id-Version: facebook\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-06-12 16:03+0300\n"
6
+ "PO-Revision-Date: 2015-06-12 16:04+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"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: facebook-button-plugin.php:32
21
+ #: facebook-button-plugin.php:241
22
  msgid "Facebook Button Settings"
23
  msgstr "Facebook Napin asetukset"
24
 
50
  msgid "Uploading Error: check image properties"
51
  msgstr "Virhe latauksessa: tarkista kuvan ominaisuudet"
52
 
53
+ #: facebook-button-plugin.php:228
54
+ msgid "All plugin settings were restored."
55
+ msgstr ""
56
+
57
+ #: facebook-button-plugin.php:243
58
+ #: facebook-button-plugin.php:593
59
+ #: facebook-button-plugin.php:607
60
  msgid "Settings"
61
  msgstr "Asetukset"
62
 
63
+ #: facebook-button-plugin.php:244
64
  msgid "Extra settings"
65
  msgstr "Lisää asetuksia"
66
 
67
+ #: facebook-button-plugin.php:245
68
+ #: facebook-button-plugin.php:608
69
  msgid "FAQ"
70
  msgstr "FAQ"
71
 
72
+ #: facebook-button-plugin.php:246
73
  msgid "Go PRO"
74
  msgstr "Hanki PRO versio"
75
 
76
+ #: facebook-button-plugin.php:250
77
  msgid "Notice:"
78
  msgstr "Huomautus:"
79
 
80
+ #: facebook-button-plugin.php:250
81
  msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
82
  msgstr "Lisäosan asetukset ovat muuttuneet: Mikäli haluat säilyttää uudet asetukset muista klikata Tallenna Asetukset nappia."
83
 
84
+ #: facebook-button-plugin.php:259
85
  #, fuzzy
86
  msgid "Your Facebook ID or username"
87
  msgstr "Sinun Facebook ID:si tai käyttäjänimesi:"
88
 
89
+ #: facebook-button-plugin.php:265
90
  #, fuzzy
91
  msgid "Display button"
92
  msgstr "Näytä nappi:"
93
 
94
+ #: facebook-button-plugin.php:267
95
  msgid "My Page"
96
  msgstr "Minun sivuni"
97
 
98
+ #: facebook-button-plugin.php:268
99
  msgid "Like"
100
  msgstr "Tykkää"
101
 
102
+ #: facebook-button-plugin.php:269
103
  msgid "Share"
104
  msgstr "Jaa"
105
 
106
+ #: facebook-button-plugin.php:274
107
  msgid "\"My page\" button image"
108
  msgstr ""
109
 
110
+ #: facebook-button-plugin.php:279
111
  msgid "Standard Facebook image"
112
  msgstr "Standardi Facebook kuva"
113
 
114
+ #: facebook-button-plugin.php:280
115
  msgid "Custom Facebook image"
116
  msgstr "Mukautettu Fecabook kuva"
117
 
118
+ #: facebook-button-plugin.php:283
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:290
123
  #, fuzzy
124
  msgid "Current image"
125
  msgstr "Nykyinen kuva:"
126
 
127
+ #: facebook-button-plugin.php:298
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:303
132
  #, fuzzy
133
  msgid "Facebook buttons position"
134
  msgstr "Facebook napin paikka:"
135
 
136
+ #: facebook-button-plugin.php:307
137
  msgid "Before"
138
  msgstr "Ennen"
139
 
140
+ #: facebook-button-plugin.php:308
141
  msgid "After"
142
  msgstr "Jälkeen"
143
 
144
+ #: facebook-button-plugin.php:309
145
  msgid "Before and After"
146
  msgstr "Ennen ja Jälkeen"
147
 
148
+ #: facebook-button-plugin.php:310
149
  msgid "Shortcode"
150
  msgstr "Lyhytkoodi"
151
 
152
+ #: facebook-button-plugin.php:312
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:317
157
  #, fuzzy
158
  msgid "Facebook buttons language"
159
  msgstr "Facebook Napin kieli:"
160
 
161
+ #: facebook-button-plugin.php:328
162
  msgid "Change the language of Facebook Like Button"
163
  msgstr "Vaihda Facebook napin kieli"
164
 
165
+ #: facebook-button-plugin.php:332
166
  #, fuzzy
167
  msgid "Html tag for \"Like\" button"
168
  msgstr "HTML tagi Tykkää Napille:"
169
 
170
+ #: facebook-button-plugin.php:336
171
  msgid "Use this tag to improve validation of your site"
172
  msgstr "Käytä tätä tagia parantamaan sivusi näkyvyyttä"
173
 
174
+ #: facebook-button-plugin.php:346
175
  msgid "\"Like\" for an entire site on every page:"
176
  msgstr "\"Like\" koko sivustolle ja kaikille sivuille:"
177
 
178
+ #: facebook-button-plugin.php:348
179
  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."
180
  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."
181
 
182
+ #: facebook-button-plugin.php:353
183
+ #: facebook-button-plugin.php:410
184
  msgid "If you upgrade to Pro version all your settings will be saved."
185
  msgstr "Mikäli päivität Pro versioon, kaikki asetuksesi tallennetaan."
186
 
187
+ #: facebook-button-plugin.php:360
188
+ #: facebook-button-plugin.php:417
189
  msgid "Unlock premium options by upgrading to a PRO version."
190
  msgstr "Ota käyttöön premium valinnat päivittämällä PRO versioon."
191
 
192
+ #: facebook-button-plugin.php:361
193
+ #: facebook-button-plugin.php:418
194
  msgid "Learn More"
195
  msgstr "Lue Lisää"
196
 
197
+ #: facebook-button-plugin.php:364
198
+ #: facebook-button-plugin.php:421
199
  msgid "Go"
200
  msgstr "Mene"
201
 
202
+ #: facebook-button-plugin.php:372
203
+ #: facebook-button-plugin.php:405
204
  msgid "Save Changes"
205
  msgstr "Tallenna muutokset"
206
 
207
+ #: facebook-button-plugin.php:387
208
  msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
209
  msgstr "Valitse haluamasi viestin tyyppi (tai yksittäiset sivut) joissa Facebook nappi näytetään:"
210
 
211
+ #: facebook-button-plugin.php:394
212
  msgid "Show URL for pages"
213
  msgstr "Näytä URL sivuilla"
214
 
215
+ #: facebook-button-plugin.php:400
216
  msgid "Example of the site's pages tree"
217
  msgstr "Esimerkki sivuston sivuhakemistosta"
218
 
219
+ #: facebook-button-plugin.php:400
220
  msgid "Example of site pages' tree"
221
  msgstr "Esimerkki sivun sivuhakemistosta"
222
 
223
+ #: facebook-button-plugin.php:609
224
  msgid "Support"
225
  msgstr "Tuki"
226
 
227
+ #, fuzzy
228
+ #~ msgid "Yes, restore all settings"
229
+ #~ msgstr "Lisää asetuksia"
230
+
231
+ #, fuzzy
232
+ #~ msgid "No, go back to the settings page"
233
+ #~ msgstr "asetukset sivu"
234
+
235
+ #, fuzzy
236
+ #~ msgid "Restore settings"
237
+ #~ msgstr "Lisää asetuksia"
238
+
239
  #~ msgid "Choose display settings:"
240
  #~ msgstr "Valitse näyttö asetukset:"
241
 
260
 
261
  #~ msgid "Plugins page"
262
  #~ msgstr "Lisäosat sivu"
 
 
 
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-05-18 12:22+0300\n"
6
- "PO-Revision-Date: 2015-05-18 12:22+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: http://wptheme.fr/\n"
9
  "Language: fr\n"
@@ -18,7 +18,7 @@ msgstr ""
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: facebook-button-plugin.php:32
21
- #: facebook-button-plugin.php:234
22
  msgid "Facebook Button Settings"
23
  msgstr "Réglages du bouton Facebook"
24
 
@@ -50,176 +50,192 @@ msgstr "Erreur : Vérifiez la taille et la largeur de l'image"
50
  msgid "Uploading Error: check image properties"
51
  msgstr "Erreur d'upload : vérifiez les propriétés de l'image"
52
 
53
- #: facebook-button-plugin.php:236
54
- #: facebook-button-plugin.php:581
55
- #: facebook-button-plugin.php:595
 
 
 
 
56
  msgid "Settings"
57
  msgstr "Réglages"
58
 
59
- #: facebook-button-plugin.php:237
60
  #, fuzzy
61
  msgid "Extra settings"
62
  msgstr "Réglages"
63
 
64
- #: facebook-button-plugin.php:238
65
- #: facebook-button-plugin.php:596
66
  msgid "FAQ"
67
  msgstr "FAQ"
68
 
69
- #: facebook-button-plugin.php:239
70
  msgid "Go PRO"
71
  msgstr ""
72
 
73
- #: facebook-button-plugin.php:243
74
  msgid "Notice:"
75
  msgstr ""
76
 
77
- #: facebook-button-plugin.php:243
78
  msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
79
  msgstr ""
80
 
81
- #: facebook-button-plugin.php:249
82
  #, fuzzy
83
  msgid "Your Facebook ID or username"
84
  msgstr "Votre identifiant Facebook"
85
 
86
- #: facebook-button-plugin.php:255
87
  #, fuzzy
88
  msgid "Display button"
89
  msgstr "Afficher le bouton"
90
 
91
- #: facebook-button-plugin.php:257
92
  msgid "My Page"
93
  msgstr "Ma page"
94
 
95
- #: facebook-button-plugin.php:258
96
  msgid "Like"
97
  msgstr "Like"
98
 
99
- #: facebook-button-plugin.php:259
100
  msgid "Share"
101
  msgstr ""
102
 
103
- #: facebook-button-plugin.php:264
104
  msgid "\"My page\" button image"
105
  msgstr ""
106
 
107
- #: facebook-button-plugin.php:269
108
  msgid "Standard Facebook image"
109
  msgstr "Image Facebook par défaut"
110
 
111
- #: facebook-button-plugin.php:270
112
  msgid "Custom Facebook image"
113
  msgstr "Image Facebook personnalisée"
114
 
115
- #: facebook-button-plugin.php:273
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:280
120
  #, fuzzy
121
  msgid "Current image"
122
  msgstr "Image actuelle"
123
 
124
- #: facebook-button-plugin.php:288
125
  msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
126
  msgstr "Propriétés de l'image : largeur max:100px; hauteur max: 40px; poids max : 32kb; type d'image :\"jpg\", \"jpeg\", \"png\"."
127
 
128
- #: facebook-button-plugin.php:293
129
  #, fuzzy
130
  msgid "Facebook buttons position"
131
  msgstr "Position du bouton Facebook"
132
 
133
- #: facebook-button-plugin.php:297
134
  msgid "Before"
135
  msgstr "Avant"
136
 
137
- #: facebook-button-plugin.php:298
138
  msgid "After"
139
  msgstr "Après"
140
 
141
- #: facebook-button-plugin.php:299
142
  msgid "Before and After"
143
  msgstr "Avant et après"
144
 
145
- #: facebook-button-plugin.php:300
146
  msgid "Shortcode"
147
  msgstr "Shortcode"
148
 
149
- #: facebook-button-plugin.php:302
150
  msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
151
  msgstr "Si vous souhaitez ajouter un bouton Facebook sur votre site internet, copier-collez ce Shortcodedans votre page ou votre article"
152
 
153
- #: facebook-button-plugin.php:307
154
  #, fuzzy
155
  msgid "Facebook buttons language"
156
  msgstr "Langue du bouton Facebook"
157
 
158
- #: facebook-button-plugin.php:318
159
  msgid "Change the language of Facebook Like Button"
160
  msgstr "Changer la langue du bouton Facebook"
161
 
162
- #: facebook-button-plugin.php:322
163
  msgid "Html tag for \"Like\" button"
164
  msgstr ""
165
 
166
- #: facebook-button-plugin.php:326
167
  msgid "Use this tag to improve validation of your site"
168
  msgstr ""
169
 
170
- #: facebook-button-plugin.php:336
171
  msgid "\"Like\" for an entire site on every page:"
172
  msgstr ""
173
 
174
- #: facebook-button-plugin.php:338
175
  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."
176
  msgstr ""
177
 
178
- #: facebook-button-plugin.php:343
179
- #: facebook-button-plugin.php:398
180
  msgid "If you upgrade to Pro version all your settings will be saved."
181
  msgstr ""
182
 
183
- #: facebook-button-plugin.php:350
184
- #: facebook-button-plugin.php:405
185
  msgid "Unlock premium options by upgrading to a PRO version."
186
  msgstr ""
187
 
188
- #: facebook-button-plugin.php:351
189
- #: facebook-button-plugin.php:406
190
  msgid "Learn More"
191
  msgstr ""
192
 
193
- #: facebook-button-plugin.php:354
194
- #: facebook-button-plugin.php:409
195
  msgid "Go"
196
  msgstr ""
197
 
198
- #: facebook-button-plugin.php:362
199
- #: facebook-button-plugin.php:393
200
  msgid "Save Changes"
201
  msgstr "Sauvegarder les changements"
202
 
203
- #: facebook-button-plugin.php:375
204
  msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
205
  msgstr ""
206
 
207
- #: facebook-button-plugin.php:382
208
  msgid "Show URL for pages"
209
  msgstr ""
210
 
211
- #: facebook-button-plugin.php:388
212
  msgid "Example of the site's pages tree"
213
  msgstr ""
214
 
215
- #: facebook-button-plugin.php:388
216
  msgid "Example of site pages' tree"
217
  msgstr ""
218
 
219
- #: facebook-button-plugin.php:597
220
  msgid "Support"
221
  msgstr "Support"
222
 
 
 
 
 
 
 
 
 
 
 
 
 
223
  #~ msgid "Choose display settings:"
224
  #~ msgstr "Choisir les réglages d'affichage"
225
 
@@ -244,7 +260,3 @@ msgstr "Support"
244
 
245
  #~ msgid "Plugins page"
246
  #~ msgstr "Page Plugin"
247
-
248
- #, fuzzy
249
- #~ msgid "the setting page"
250
- #~ msgstr "Réglages sauvegardés "
2
  msgstr ""
3
  "Project-Id-Version: facebook\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-06-12 16:04+0300\n"
6
+ "PO-Revision-Date: 2015-06-12 16:04+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: http://wptheme.fr/\n"
9
  "Language: fr\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: facebook-button-plugin.php:32
21
+ #: facebook-button-plugin.php:241
22
  msgid "Facebook Button Settings"
23
  msgstr "Réglages du bouton Facebook"
24
 
50
  msgid "Uploading Error: check image properties"
51
  msgstr "Erreur d'upload : vérifiez les propriétés de l'image"
52
 
53
+ #: facebook-button-plugin.php:228
54
+ msgid "All plugin settings were restored."
55
+ msgstr ""
56
+
57
+ #: facebook-button-plugin.php:243
58
+ #: facebook-button-plugin.php:593
59
+ #: facebook-button-plugin.php:607
60
  msgid "Settings"
61
  msgstr "Réglages"
62
 
63
+ #: facebook-button-plugin.php:244
64
  #, fuzzy
65
  msgid "Extra settings"
66
  msgstr "Réglages"
67
 
68
+ #: facebook-button-plugin.php:245
69
+ #: facebook-button-plugin.php:608
70
  msgid "FAQ"
71
  msgstr "FAQ"
72
 
73
+ #: facebook-button-plugin.php:246
74
  msgid "Go PRO"
75
  msgstr ""
76
 
77
+ #: facebook-button-plugin.php:250
78
  msgid "Notice:"
79
  msgstr ""
80
 
81
+ #: facebook-button-plugin.php:250
82
  msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
83
  msgstr ""
84
 
85
+ #: facebook-button-plugin.php:259
86
  #, fuzzy
87
  msgid "Your Facebook ID or username"
88
  msgstr "Votre identifiant Facebook"
89
 
90
+ #: facebook-button-plugin.php:265
91
  #, fuzzy
92
  msgid "Display button"
93
  msgstr "Afficher le bouton"
94
 
95
+ #: facebook-button-plugin.php:267
96
  msgid "My Page"
97
  msgstr "Ma page"
98
 
99
+ #: facebook-button-plugin.php:268
100
  msgid "Like"
101
  msgstr "Like"
102
 
103
+ #: facebook-button-plugin.php:269
104
  msgid "Share"
105
  msgstr ""
106
 
107
+ #: facebook-button-plugin.php:274
108
  msgid "\"My page\" button image"
109
  msgstr ""
110
 
111
+ #: facebook-button-plugin.php:279
112
  msgid "Standard Facebook image"
113
  msgstr "Image Facebook par défaut"
114
 
115
+ #: facebook-button-plugin.php:280
116
  msgid "Custom Facebook image"
117
  msgstr "Image Facebook personnalisée"
118
 
119
+ #: facebook-button-plugin.php:283
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:290
124
  #, fuzzy
125
  msgid "Current image"
126
  msgstr "Image actuelle"
127
 
128
+ #: facebook-button-plugin.php:298
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:303
133
  #, fuzzy
134
  msgid "Facebook buttons position"
135
  msgstr "Position du bouton Facebook"
136
 
137
+ #: facebook-button-plugin.php:307
138
  msgid "Before"
139
  msgstr "Avant"
140
 
141
+ #: facebook-button-plugin.php:308
142
  msgid "After"
143
  msgstr "Après"
144
 
145
+ #: facebook-button-plugin.php:309
146
  msgid "Before and After"
147
  msgstr "Avant et après"
148
 
149
+ #: facebook-button-plugin.php:310
150
  msgid "Shortcode"
151
  msgstr "Shortcode"
152
 
153
+ #: facebook-button-plugin.php:312
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:317
158
  #, fuzzy
159
  msgid "Facebook buttons language"
160
  msgstr "Langue du bouton Facebook"
161
 
162
+ #: facebook-button-plugin.php:328
163
  msgid "Change the language of Facebook Like Button"
164
  msgstr "Changer la langue du bouton Facebook"
165
 
166
+ #: facebook-button-plugin.php:332
167
  msgid "Html tag for \"Like\" button"
168
  msgstr ""
169
 
170
+ #: facebook-button-plugin.php:336
171
  msgid "Use this tag to improve validation of your site"
172
  msgstr ""
173
 
174
+ #: facebook-button-plugin.php:346
175
  msgid "\"Like\" for an entire site on every page:"
176
  msgstr ""
177
 
178
+ #: facebook-button-plugin.php:348
179
  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."
180
  msgstr ""
181
 
182
+ #: facebook-button-plugin.php:353
183
+ #: facebook-button-plugin.php:410
184
  msgid "If you upgrade to Pro version all your settings will be saved."
185
  msgstr ""
186
 
187
+ #: facebook-button-plugin.php:360
188
+ #: facebook-button-plugin.php:417
189
  msgid "Unlock premium options by upgrading to a PRO version."
190
  msgstr ""
191
 
192
+ #: facebook-button-plugin.php:361
193
+ #: facebook-button-plugin.php:418
194
  msgid "Learn More"
195
  msgstr ""
196
 
197
+ #: facebook-button-plugin.php:364
198
+ #: facebook-button-plugin.php:421
199
  msgid "Go"
200
  msgstr ""
201
 
202
+ #: facebook-button-plugin.php:372
203
+ #: facebook-button-plugin.php:405
204
  msgid "Save Changes"
205
  msgstr "Sauvegarder les changements"
206
 
207
+ #: facebook-button-plugin.php:387
208
  msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
209
  msgstr ""
210
 
211
+ #: facebook-button-plugin.php:394
212
  msgid "Show URL for pages"
213
  msgstr ""
214
 
215
+ #: facebook-button-plugin.php:400
216
  msgid "Example of the site's pages tree"
217
  msgstr ""
218
 
219
+ #: facebook-button-plugin.php:400
220
  msgid "Example of site pages' tree"
221
  msgstr ""
222
 
223
+ #: facebook-button-plugin.php:609
224
  msgid "Support"
225
  msgstr "Support"
226
 
227
+ #, fuzzy
228
+ #~ msgid "Yes, restore all settings"
229
+ #~ msgstr "Réglages"
230
+
231
+ #, fuzzy
232
+ #~ msgid "No, go back to the settings page"
233
+ #~ msgstr "Réglages sauvegardés "
234
+
235
+ #, fuzzy
236
+ #~ msgid "Restore settings"
237
+ #~ msgstr "Réglages"
238
+
239
  #~ msgid "Choose display settings:"
240
  #~ msgstr "Choisir les réglages d'affichage"
241
 
260
 
261
  #~ msgid "Plugins page"
262
  #~ msgstr "Page Plugin"
 
 
 
 
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-05-18 12:22+0300\n"
6
- "PO-Revision-Date: 2015-05-18 12:22+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: nasrulhaq <nasrulhaq81@gmail.com>\n"
9
  "Language: es_ES\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: facebook-button-plugin.php:32
20
- #: facebook-button-plugin.php:234
21
  msgid "Facebook Button Settings"
22
  msgstr "Pengaturan Facebook Button"
23
 
@@ -49,176 +49,192 @@ msgstr "Salah: periksa lebar atau panjang gambar"
49
  msgid "Uploading Error: check image properties"
50
  msgstr "Gagal Mengunggah: periksa properti gambar"
51
 
52
- #: facebook-button-plugin.php:236
53
- #: facebook-button-plugin.php:581
54
- #: facebook-button-plugin.php:595
 
 
 
 
55
  msgid "Settings"
56
  msgstr "Pengaturan"
57
 
58
- #: facebook-button-plugin.php:237
59
  #, fuzzy
60
  msgid "Extra settings"
61
  msgstr "Pengaturan"
62
 
63
- #: facebook-button-plugin.php:238
64
- #: facebook-button-plugin.php:596
65
  msgid "FAQ"
66
  msgstr "SSS (Sık Sorulan Sorular)"
67
 
68
- #: facebook-button-plugin.php:239
69
  msgid "Go PRO"
70
  msgstr ""
71
 
72
- #: facebook-button-plugin.php:243
73
  msgid "Notice:"
74
  msgstr ""
75
 
76
- #: facebook-button-plugin.php:243
77
  msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
78
  msgstr ""
79
 
80
- #: facebook-button-plugin.php:249
81
  #, fuzzy
82
  msgid "Your Facebook ID or username"
83
  msgstr " ID Facebook:"
84
 
85
- #: facebook-button-plugin.php:255
86
  #, fuzzy
87
  msgid "Display button"
88
  msgstr "Tampilan tombol:"
89
 
90
- #: facebook-button-plugin.php:257
91
  msgid "My Page"
92
  msgstr "Halamanku"
93
 
94
- #: facebook-button-plugin.php:258
95
  msgid "Like"
96
  msgstr "Suka"
97
 
98
- #: facebook-button-plugin.php:259
99
  msgid "Share"
100
  msgstr ""
101
 
102
- #: facebook-button-plugin.php:264
103
  msgid "\"My page\" button image"
104
  msgstr ""
105
 
106
- #: facebook-button-plugin.php:269
107
  msgid "Standard Facebook image"
108
  msgstr "Standar gambar Facebook "
109
 
110
- #: facebook-button-plugin.php:270
111
  msgid "Custom Facebook image"
112
  msgstr "Kustom Gambar Facebook "
113
 
114
- #: facebook-button-plugin.php:273
115
  msgid "To use custom image you need to setup permissions to upload directory of your site"
116
  msgstr ""
117
 
118
- #: facebook-button-plugin.php:280
119
  #, fuzzy
120
  msgid "Current image"
121
  msgstr "Gambar tertentu:"
122
 
123
- #: facebook-button-plugin.php:288
124
  msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
125
  msgstr "properti gambar: lebar gambar maks:100px; panjang gambar maks:40px; ukuran gambar maks:32Kb; tipe gambar:\"jpg\",\"jpeg\", \"png\"."
126
 
127
- #: facebook-button-plugin.php:293
128
  #, fuzzy
129
  msgid "Facebook buttons position"
130
  msgstr "Posisi Tombol Facebook"
131
 
132
- #: facebook-button-plugin.php:297
133
  msgid "Before"
134
  msgstr "Sebelum"
135
 
136
- #: facebook-button-plugin.php:298
137
  msgid "After"
138
  msgstr "Setelah"
139
 
140
- #: facebook-button-plugin.php:299
141
  msgid "Before and After"
142
  msgstr "Sebelum dan Setelah"
143
 
144
- #: facebook-button-plugin.php:300
145
  msgid "Shortcode"
146
  msgstr "Kode Pendek"
147
 
148
- #: facebook-button-plugin.php:302
149
  msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
150
  msgstr "Jika anda ingin menambahkan tombol Facebook di website anda, cukup salin kode singkat kedalam posting atau page anda:"
151
 
152
- #: facebook-button-plugin.php:307
153
  #, fuzzy
154
  msgid "Facebook buttons language"
155
  msgstr "Bahasa Facebook Button:"
156
 
157
- #: facebook-button-plugin.php:318
158
  msgid "Change the language of Facebook Like Button"
159
  msgstr "Ubah bahasa Facebook Like Button"
160
 
161
- #: facebook-button-plugin.php:322
162
  msgid "Html tag for \"Like\" button"
163
  msgstr ""
164
 
165
- #: facebook-button-plugin.php:326
166
  msgid "Use this tag to improve validation of your site"
167
  msgstr ""
168
 
169
- #: facebook-button-plugin.php:336
170
  msgid "\"Like\" for an entire site on every page:"
171
  msgstr ""
172
 
173
- #: facebook-button-plugin.php:338
174
  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."
175
  msgstr ""
176
 
177
- #: facebook-button-plugin.php:343
178
- #: facebook-button-plugin.php:398
179
  msgid "If you upgrade to Pro version all your settings will be saved."
180
  msgstr ""
181
 
182
- #: facebook-button-plugin.php:350
183
- #: facebook-button-plugin.php:405
184
  msgid "Unlock premium options by upgrading to a PRO version."
185
  msgstr ""
186
 
187
- #: facebook-button-plugin.php:351
188
- #: facebook-button-plugin.php:406
189
  msgid "Learn More"
190
  msgstr ""
191
 
192
- #: facebook-button-plugin.php:354
193
- #: facebook-button-plugin.php:409
194
  msgid "Go"
195
  msgstr ""
196
 
197
- #: facebook-button-plugin.php:362
198
- #: facebook-button-plugin.php:393
199
  msgid "Save Changes"
200
  msgstr "Simpan Perubahan"
201
 
202
- #: facebook-button-plugin.php:375
203
  msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
204
  msgstr ""
205
 
206
- #: facebook-button-plugin.php:382
207
  msgid "Show URL for pages"
208
  msgstr ""
209
 
210
- #: facebook-button-plugin.php:388
211
  msgid "Example of the site's pages tree"
212
  msgstr ""
213
 
214
- #: facebook-button-plugin.php:388
215
  msgid "Example of site pages' tree"
216
  msgstr ""
217
 
218
- #: facebook-button-plugin.php:597
219
  msgid "Support"
220
  msgstr "Dukungan"
221
 
 
 
 
 
 
 
 
 
 
 
 
 
222
  #~ msgid "Choose display settings:"
223
  #~ msgstr "Ubah pengaturan tampilan"
224
 
@@ -248,10 +264,6 @@ msgstr "Dukungan"
248
  #~ msgid "Rate the plugin"
249
  #~ msgstr "Eklenti Önerileri"
250
 
251
- #, fuzzy
252
- #~ msgid "the setting page"
253
- #~ msgstr "Simpan Pengaturan"
254
-
255
  #~ msgid "Activated plugins"
256
  #~ msgstr "Aktif Eklentiler"
257
 
2
  msgstr ""
3
  "Project-Id-Version: facebook\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-06-12 16:04+0300\n"
6
+ "PO-Revision-Date: 2015-06-12 16:04+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: nasrulhaq <nasrulhaq81@gmail.com>\n"
9
  "Language: es_ES\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: facebook-button-plugin.php:32
20
+ #: facebook-button-plugin.php:241
21
  msgid "Facebook Button Settings"
22
  msgstr "Pengaturan Facebook Button"
23
 
49
  msgid "Uploading Error: check image properties"
50
  msgstr "Gagal Mengunggah: periksa properti gambar"
51
 
52
+ #: facebook-button-plugin.php:228
53
+ msgid "All plugin settings were restored."
54
+ msgstr ""
55
+
56
+ #: facebook-button-plugin.php:243
57
+ #: facebook-button-plugin.php:593
58
+ #: facebook-button-plugin.php:607
59
  msgid "Settings"
60
  msgstr "Pengaturan"
61
 
62
+ #: facebook-button-plugin.php:244
63
  #, fuzzy
64
  msgid "Extra settings"
65
  msgstr "Pengaturan"
66
 
67
+ #: facebook-button-plugin.php:245
68
+ #: facebook-button-plugin.php:608
69
  msgid "FAQ"
70
  msgstr "SSS (Sık Sorulan Sorular)"
71
 
72
+ #: facebook-button-plugin.php:246
73
  msgid "Go PRO"
74
  msgstr ""
75
 
76
+ #: facebook-button-plugin.php:250
77
  msgid "Notice:"
78
  msgstr ""
79
 
80
+ #: facebook-button-plugin.php:250
81
  msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
82
  msgstr ""
83
 
84
+ #: facebook-button-plugin.php:259
85
  #, fuzzy
86
  msgid "Your Facebook ID or username"
87
  msgstr " ID Facebook:"
88
 
89
+ #: facebook-button-plugin.php:265
90
  #, fuzzy
91
  msgid "Display button"
92
  msgstr "Tampilan tombol:"
93
 
94
+ #: facebook-button-plugin.php:267
95
  msgid "My Page"
96
  msgstr "Halamanku"
97
 
98
+ #: facebook-button-plugin.php:268
99
  msgid "Like"
100
  msgstr "Suka"
101
 
102
+ #: facebook-button-plugin.php:269
103
  msgid "Share"
104
  msgstr ""
105
 
106
+ #: facebook-button-plugin.php:274
107
  msgid "\"My page\" button image"
108
  msgstr ""
109
 
110
+ #: facebook-button-plugin.php:279
111
  msgid "Standard Facebook image"
112
  msgstr "Standar gambar Facebook "
113
 
114
+ #: facebook-button-plugin.php:280
115
  msgid "Custom Facebook image"
116
  msgstr "Kustom Gambar Facebook "
117
 
118
+ #: facebook-button-plugin.php:283
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:290
123
  #, fuzzy
124
  msgid "Current image"
125
  msgstr "Gambar tertentu:"
126
 
127
+ #: facebook-button-plugin.php:298
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:303
132
  #, fuzzy
133
  msgid "Facebook buttons position"
134
  msgstr "Posisi Tombol Facebook"
135
 
136
+ #: facebook-button-plugin.php:307
137
  msgid "Before"
138
  msgstr "Sebelum"
139
 
140
+ #: facebook-button-plugin.php:308
141
  msgid "After"
142
  msgstr "Setelah"
143
 
144
+ #: facebook-button-plugin.php:309
145
  msgid "Before and After"
146
  msgstr "Sebelum dan Setelah"
147
 
148
+ #: facebook-button-plugin.php:310
149
  msgid "Shortcode"
150
  msgstr "Kode Pendek"
151
 
152
+ #: facebook-button-plugin.php:312
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:317
157
  #, fuzzy
158
  msgid "Facebook buttons language"
159
  msgstr "Bahasa Facebook Button:"
160
 
161
+ #: facebook-button-plugin.php:328
162
  msgid "Change the language of Facebook Like Button"
163
  msgstr "Ubah bahasa Facebook Like Button"
164
 
165
+ #: facebook-button-plugin.php:332
166
  msgid "Html tag for \"Like\" button"
167
  msgstr ""
168
 
169
+ #: facebook-button-plugin.php:336
170
  msgid "Use this tag to improve validation of your site"
171
  msgstr ""
172
 
173
+ #: facebook-button-plugin.php:346
174
  msgid "\"Like\" for an entire site on every page:"
175
  msgstr ""
176
 
177
+ #: facebook-button-plugin.php:348
178
  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."
179
  msgstr ""
180
 
181
+ #: facebook-button-plugin.php:353
182
+ #: facebook-button-plugin.php:410
183
  msgid "If you upgrade to Pro version all your settings will be saved."
184
  msgstr ""
185
 
186
+ #: facebook-button-plugin.php:360
187
+ #: facebook-button-plugin.php:417
188
  msgid "Unlock premium options by upgrading to a PRO version."
189
  msgstr ""
190
 
191
+ #: facebook-button-plugin.php:361
192
+ #: facebook-button-plugin.php:418
193
  msgid "Learn More"
194
  msgstr ""
195
 
196
+ #: facebook-button-plugin.php:364
197
+ #: facebook-button-plugin.php:421
198
  msgid "Go"
199
  msgstr ""
200
 
201
+ #: facebook-button-plugin.php:372
202
+ #: facebook-button-plugin.php:405
203
  msgid "Save Changes"
204
  msgstr "Simpan Perubahan"
205
 
206
+ #: facebook-button-plugin.php:387
207
  msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
208
  msgstr ""
209
 
210
+ #: facebook-button-plugin.php:394
211
  msgid "Show URL for pages"
212
  msgstr ""
213
 
214
+ #: facebook-button-plugin.php:400
215
  msgid "Example of the site's pages tree"
216
  msgstr ""
217
 
218
+ #: facebook-button-plugin.php:400
219
  msgid "Example of site pages' tree"
220
  msgstr ""
221
 
222
+ #: facebook-button-plugin.php:609
223
  msgid "Support"
224
  msgstr "Dukungan"
225
 
226
+ #, fuzzy
227
+ #~ msgid "Yes, restore all settings"
228
+ #~ msgstr "Pengaturan"
229
+
230
+ #, fuzzy
231
+ #~ msgid "No, go back to the settings page"
232
+ #~ msgstr "Simpan Pengaturan"
233
+
234
+ #, fuzzy
235
+ #~ msgid "Restore settings"
236
+ #~ msgstr "Pengaturan"
237
+
238
  #~ msgid "Choose display settings:"
239
  #~ msgstr "Ubah pengaturan tampilan"
240
 
264
  #~ msgid "Rate the plugin"
265
  #~ msgstr "Eklenti Önerileri"
266
 
 
 
 
 
267
  #~ msgid "Activated plugins"
268
  #~ msgstr "Aktif Eklentiler"
269
 
languages/facebook-ru_RU.mo CHANGED
Binary file
languages/facebook-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: facebook\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-05-18 12:22+0300\n"
6
- "PO-Revision-Date: 2015-05-18 12:23+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: facebook-button-plugin.php:32
20
- #: facebook-button-plugin.php:234
21
  msgid "Facebook Button Settings"
22
  msgstr "Настройки Facebook Кнопки"
23
 
@@ -49,170 +49,191 @@ msgstr "Ошибка: Проверьте ширину и высоту изобр
49
  msgid "Uploading Error: check image properties"
50
  msgstr "Ошибка загрузки: Проверьте опции изображения"
51
 
52
- #: facebook-button-plugin.php:236
53
- #: facebook-button-plugin.php:581
54
- #: facebook-button-plugin.php:595
 
 
 
 
55
  msgid "Settings"
56
  msgstr "Настройки"
57
 
58
- #: facebook-button-plugin.php:237
59
  msgid "Extra settings"
60
  msgstr "Дополнительные настройки"
61
 
62
- #: facebook-button-plugin.php:238
63
- #: facebook-button-plugin.php:596
64
  msgid "FAQ"
65
  msgstr "FAQ"
66
 
67
- #: facebook-button-plugin.php:239
68
  msgid "Go PRO"
69
  msgstr "Перейти на PRO версию"
70
 
71
- #: facebook-button-plugin.php:243
72
  msgid "Notice:"
73
  msgstr "Внимание:"
74
 
75
- #: facebook-button-plugin.php:243
76
  msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
77
  msgstr "Настройки плагина были изменены. Для того, чтобы сохранить их, пожалуйста, не забудьте нажать кнопку \"Сохранить\"."
78
 
79
- #: facebook-button-plugin.php:249
80
  msgid "Your Facebook ID or username"
81
  msgstr "Ваш Facebook ID или имя пользователя"
82
 
83
- #: facebook-button-plugin.php:255
84
  msgid "Display button"
85
  msgstr "Отображение кнопок"
86
 
87
- #: facebook-button-plugin.php:257
88
  msgid "My Page"
89
  msgstr "My Page"
90
 
91
- #: facebook-button-plugin.php:258
92
  msgid "Like"
93
  msgstr "Like"
94
 
95
- #: facebook-button-plugin.php:259
96
  msgid "Share"
97
  msgstr "Share"
98
 
99
- #: facebook-button-plugin.php:264
100
  msgid "\"My page\" button image"
101
  msgstr "Изображение кнопки \"My page\""
102
 
103
- #: facebook-button-plugin.php:269
104
  msgid "Standard Facebook image"
105
  msgstr "Стандартная картинка Facebook"
106
 
107
- #: facebook-button-plugin.php:270
108
  msgid "Custom Facebook image"
109
  msgstr "Пользовательская картинка Facebook"
110
 
111
- #: facebook-button-plugin.php:273
112
  msgid "To use custom image you need to setup permissions to upload directory of your site"
113
  msgstr "Для использования кастомного изображения Вам нужно выдать права доступа на папку загрузок на вашем сайте"
114
 
115
- #: facebook-button-plugin.php:280
116
  msgid "Current image"
117
  msgstr "Текущее изображение"
118
 
119
- #: facebook-button-plugin.php:288
120
  msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
121
  msgstr "Опции изображения для загрузки: максимальная ширина:100px; максимальная высота:40px; максимальный размер:32Kb; тип файла:\"jpg\", \"jpeg\", \"png\"."
122
 
123
- #: facebook-button-plugin.php:293
124
  msgid "Facebook buttons position"
125
  msgstr "Позиции Facebook кнопки"
126
 
127
- #: facebook-button-plugin.php:297
128
  msgid "Before"
129
  msgstr "Перед"
130
 
131
- #: facebook-button-plugin.php:298
132
  msgid "After"
133
  msgstr "После"
134
 
135
- #: facebook-button-plugin.php:299
136
  msgid "Before and After"
137
  msgstr "Перед и после"
138
 
139
- #: facebook-button-plugin.php:300
140
  msgid "Shortcode"
141
  msgstr "Шорткод"
142
 
143
- #: facebook-button-plugin.php:302
144
  msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
145
  msgstr "Если вы хотите добавить Facebook кнопку на свой сайт, вам надо только скопировать и вставить шорткод в контент страницы или поста"
146
 
147
- #: facebook-button-plugin.php:307
148
  msgid "Facebook buttons language"
149
  msgstr "Язык для Facebook кнопки"
150
 
151
- #: facebook-button-plugin.php:318
152
  msgid "Change the language of Facebook Like Button"
153
  msgstr "Выберите язык для Like кнопки"
154
 
155
- #: facebook-button-plugin.php:322
156
  msgid "Html tag for \"Like\" button"
157
  msgstr "Html тэг для кнопки \"Like\""
158
 
159
- #: facebook-button-plugin.php:326
160
  msgid "Use this tag to improve validation of your site"
161
  msgstr "Используйте этот тэг для лучшей валидации вашего сайта"
162
 
163
- #: facebook-button-plugin.php:336
164
  msgid "\"Like\" for an entire site on every page:"
165
  msgstr "Ставить \"Like\" всему сайту на каждой странице:"
166
 
167
- #: facebook-button-plugin.php:338
168
  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."
169
  msgstr "Внимание: опция \"Лайк для всего сайта\" - не создает дополнительную кнопку. Эта опция позволяет при клике пользователями на стандартную кнопку ставить лайк для вего сайта, если эта опция включена, или лайк для отдельной записи, когда эта опция выключена."
170
 
171
- #: facebook-button-plugin.php:343
172
- #: facebook-button-plugin.php:398
173
  msgid "If you upgrade to Pro version all your settings will be saved."
174
  msgstr "При установке Pro версии плагина, все ваши настройки сохраняются."
175
 
176
- #: facebook-button-plugin.php:350
177
- #: facebook-button-plugin.php:405
178
  msgid "Unlock premium options by upgrading to a PRO version."
179
  msgstr "Активируйте премиум опции обновившись до PRO версии."
180
 
181
- #: facebook-button-plugin.php:351
182
- #: facebook-button-plugin.php:406
183
  msgid "Learn More"
184
  msgstr "Подробнее"
185
 
186
- #: facebook-button-plugin.php:354
187
- #: facebook-button-plugin.php:409
188
  msgid "Go"
189
  msgstr "Перейти на"
190
 
191
- #: facebook-button-plugin.php:362
192
- #: facebook-button-plugin.php:393
193
  msgid "Save Changes"
194
  msgstr "Сохранить изменения"
195
 
196
- #: facebook-button-plugin.php:375
197
  msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
198
  msgstr "Пожалуйста, выберите те типы постов (или отдельные страницы), где будут отображатся кнопки Facebook:"
199
 
200
- #: facebook-button-plugin.php:382
201
  msgid "Show URL for pages"
202
  msgstr "Отображать URL для страниц"
203
 
204
- #: facebook-button-plugin.php:388
205
  msgid "Example of the site's pages tree"
206
  msgstr "Пример дерева страниц сайта"
207
 
208
- #: facebook-button-plugin.php:388
209
  msgid "Example of site pages' tree"
210
  msgstr "Пример дерева страниц сайта"
211
 
212
- #: facebook-button-plugin.php:597
213
  msgid "Support"
214
  msgstr "Поддержка"
215
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
216
  #~ msgid "Choose display settings:"
217
  #~ msgstr "Выбор опций отображения:"
218
 
@@ -303,9 +324,6 @@ msgstr "Поддержка"
303
  #~ msgid "Please, go to"
304
  #~ msgstr "Пожалуйста, перейдите на"
305
 
306
- #~ msgid "the setting page"
307
- #~ msgstr "страницу настроек"
308
-
309
  #~ msgid "You will be redirected automatically in 5 seconds."
310
  #~ msgstr "Вы будете перенаправлены автоматически через 5 секунд."
311
 
2
  msgstr ""
3
  "Project-Id-Version: facebook\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-06-12 16:04+0300\n"
6
+ "PO-Revision-Date: 2015-06-12 16:04+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: facebook-button-plugin.php:32
20
+ #: facebook-button-plugin.php:241
21
  msgid "Facebook Button Settings"
22
  msgstr "Настройки Facebook Кнопки"
23
 
49
  msgid "Uploading Error: check image properties"
50
  msgstr "Ошибка загрузки: Проверьте опции изображения"
51
 
52
+ #: facebook-button-plugin.php:228
53
+ msgid "All plugin settings were restored."
54
+ msgstr "Все настройки плагина восстановлены."
55
+
56
+ #: facebook-button-plugin.php:243
57
+ #: facebook-button-plugin.php:593
58
+ #: facebook-button-plugin.php:607
59
  msgid "Settings"
60
  msgstr "Настройки"
61
 
62
+ #: facebook-button-plugin.php:244
63
  msgid "Extra settings"
64
  msgstr "Дополнительные настройки"
65
 
66
+ #: facebook-button-plugin.php:245
67
+ #: facebook-button-plugin.php:608
68
  msgid "FAQ"
69
  msgstr "FAQ"
70
 
71
+ #: facebook-button-plugin.php:246
72
  msgid "Go PRO"
73
  msgstr "Перейти на PRO версию"
74
 
75
+ #: facebook-button-plugin.php:250
76
  msgid "Notice:"
77
  msgstr "Внимание:"
78
 
79
+ #: facebook-button-plugin.php:250
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:259
84
  msgid "Your Facebook ID or username"
85
  msgstr "Ваш Facebook ID или имя пользователя"
86
 
87
+ #: facebook-button-plugin.php:265
88
  msgid "Display button"
89
  msgstr "Отображение кнопок"
90
 
91
+ #: facebook-button-plugin.php:267
92
  msgid "My Page"
93
  msgstr "My Page"
94
 
95
+ #: facebook-button-plugin.php:268
96
  msgid "Like"
97
  msgstr "Like"
98
 
99
+ #: facebook-button-plugin.php:269
100
  msgid "Share"
101
  msgstr "Share"
102
 
103
+ #: facebook-button-plugin.php:274
104
  msgid "\"My page\" button image"
105
  msgstr "Изображение кнопки \"My page\""
106
 
107
+ #: facebook-button-plugin.php:279
108
  msgid "Standard Facebook image"
109
  msgstr "Стандартная картинка Facebook"
110
 
111
+ #: facebook-button-plugin.php:280
112
  msgid "Custom Facebook image"
113
  msgstr "Пользовательская картинка Facebook"
114
 
115
+ #: facebook-button-plugin.php:283
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:290
120
  msgid "Current image"
121
  msgstr "Текущее изображение"
122
 
123
+ #: facebook-button-plugin.php:298
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:303
128
  msgid "Facebook buttons position"
129
  msgstr "Позиции Facebook кнопки"
130
 
131
+ #: facebook-button-plugin.php:307
132
  msgid "Before"
133
  msgstr "Перед"
134
 
135
+ #: facebook-button-plugin.php:308
136
  msgid "After"
137
  msgstr "После"
138
 
139
+ #: facebook-button-plugin.php:309
140
  msgid "Before and After"
141
  msgstr "Перед и после"
142
 
143
+ #: facebook-button-plugin.php:310
144
  msgid "Shortcode"
145
  msgstr "Шорткод"
146
 
147
+ #: facebook-button-plugin.php:312
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:317
152
  msgid "Facebook buttons language"
153
  msgstr "Язык для Facebook кнопки"
154
 
155
+ #: facebook-button-plugin.php:328
156
  msgid "Change the language of Facebook Like Button"
157
  msgstr "Выберите язык для Like кнопки"
158
 
159
+ #: facebook-button-plugin.php:332
160
  msgid "Html tag for \"Like\" button"
161
  msgstr "Html тэг для кнопки \"Like\""
162
 
163
+ #: facebook-button-plugin.php:336
164
  msgid "Use this tag to improve validation of your site"
165
  msgstr "Используйте этот тэг для лучшей валидации вашего сайта"
166
 
167
+ #: facebook-button-plugin.php:346
168
  msgid "\"Like\" for an entire site on every page:"
169
  msgstr "Ставить \"Like\" всему сайту на каждой странице:"
170
 
171
+ #: facebook-button-plugin.php:348
172
  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."
173
  msgstr "Внимание: опция \"Лайк для всего сайта\" - не создает дополнительную кнопку. Эта опция позволяет при клике пользователями на стандартную кнопку ставить лайк для вего сайта, если эта опция включена, или лайк для отдельной записи, когда эта опция выключена."
174
 
175
+ #: facebook-button-plugin.php:353
176
+ #: facebook-button-plugin.php:410
177
  msgid "If you upgrade to Pro version all your settings will be saved."
178
  msgstr "При установке Pro версии плагина, все ваши настройки сохраняются."
179
 
180
+ #: facebook-button-plugin.php:360
181
+ #: facebook-button-plugin.php:417
182
  msgid "Unlock premium options by upgrading to a PRO version."
183
  msgstr "Активируйте премиум опции обновившись до PRO версии."
184
 
185
+ #: facebook-button-plugin.php:361
186
+ #: facebook-button-plugin.php:418
187
  msgid "Learn More"
188
  msgstr "Подробнее"
189
 
190
+ #: facebook-button-plugin.php:364
191
+ #: facebook-button-plugin.php:421
192
  msgid "Go"
193
  msgstr "Перейти на"
194
 
195
+ #: facebook-button-plugin.php:372
196
+ #: facebook-button-plugin.php:405
197
  msgid "Save Changes"
198
  msgstr "Сохранить изменения"
199
 
200
+ #: facebook-button-plugin.php:387
201
  msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
202
  msgstr "Пожалуйста, выберите те типы постов (или отдельные страницы), где будут отображатся кнопки Facebook:"
203
 
204
+ #: facebook-button-plugin.php:394
205
  msgid "Show URL for pages"
206
  msgstr "Отображать URL для страниц"
207
 
208
+ #: facebook-button-plugin.php:400
209
  msgid "Example of the site's pages tree"
210
  msgstr "Пример дерева страниц сайта"
211
 
212
+ #: facebook-button-plugin.php:400
213
  msgid "Example of site pages' tree"
214
  msgstr "Пример дерева страниц сайта"
215
 
216
+ #: facebook-button-plugin.php:609
217
  msgid "Support"
218
  msgstr "Поддержка"
219
 
220
+ #~ msgid "Are you sure you want to restore all settings by default?"
221
+ #~ msgstr ""
222
+ #~ "Вы уверены что хотите восстановить все настройки плагина к настройкам по-"
223
+ #~ "умолчанию?"
224
+
225
+ #~ msgid "Yes, restore all settings"
226
+ #~ msgstr "Да, восстановить все настройки"
227
+
228
+ #~ msgid "No, go back to the settings page"
229
+ #~ msgstr "Нет, вернутся на страницу настроек"
230
+
231
+ #~ msgid "Restore all plugin settings to defaults"
232
+ #~ msgstr "Восстановить все настройки плагина к настройкам по-умолчанию"
233
+
234
+ #~ msgid "Restore settings"
235
+ #~ msgstr "Восстановить настройки"
236
+
237
  #~ msgid "Choose display settings:"
238
  #~ msgstr "Выбор опций отображения:"
239
 
324
  #~ msgid "Please, go to"
325
  #~ msgstr "Пожалуйста, перейдите на"
326
 
 
 
 
327
  #~ msgid "You will be redirected automatically in 5 seconds."
328
  #~ msgstr "Вы будете перенаправлены автоматически через 5 секунд."
329
 
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-05-18 12:24+0300\n"
6
- "PO-Revision-Date: 2015-05-18 12:24+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Can Atasever <webmaster@canatasever.com>\n"
9
  "Language: tr\n"
@@ -18,7 +18,7 @@ msgstr ""
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: facebook-button-plugin.php:32
21
- #: facebook-button-plugin.php:234
22
  msgid "Facebook Button Settings"
23
  msgstr "Facebook Buton Ayarları"
24
 
@@ -50,176 +50,192 @@ msgstr "HATA: görselin genişliğini ya da yüksekliğini kontrol edin."
50
  msgid "Uploading Error: check image properties"
51
  msgstr "Yükleme Hatası: görselin özelliklerini kontrol edin."
52
 
53
- #: facebook-button-plugin.php:236
54
- #: facebook-button-plugin.php:581
55
- #: facebook-button-plugin.php:595
 
 
 
 
56
  msgid "Settings"
57
  msgstr "Ayarlar"
58
 
59
- #: facebook-button-plugin.php:237
60
  msgid "Extra settings"
61
  msgstr "Ekstra Ayarlar"
62
 
63
- #: facebook-button-plugin.php:238
64
- #: facebook-button-plugin.php:596
65
  msgid "FAQ"
66
  msgstr "SSS"
67
 
68
- #: facebook-button-plugin.php:239
69
  msgid "Go PRO"
70
  msgstr "PRO&#39;ya geçin"
71
 
72
- #: facebook-button-plugin.php:243
73
  msgid "Notice:"
74
  msgstr "Uyarı:"
75
 
76
- #: facebook-button-plugin.php:243
77
  msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
78
  msgstr "eklentinin ayarları değiştirildi. Değişiklikleri kaydetmek için &#39;Değişiklikleri Kaydet&#39; butonuna basmayı unutmayın."
79
 
80
- #: facebook-button-plugin.php:249
81
  #, fuzzy
82
  msgid "Your Facebook ID or username"
83
  msgstr "Facebook ID&#39;niz:"
84
 
85
- #: facebook-button-plugin.php:255
86
  #, fuzzy
87
  msgid "Display button"
88
  msgstr "Butonu Göster:"
89
 
90
- #: facebook-button-plugin.php:257
91
  msgid "My Page"
92
  msgstr "Benim Sayfam"
93
 
94
- #: facebook-button-plugin.php:258
95
  msgid "Like"
96
  msgstr "Beğen"
97
 
98
- #: facebook-button-plugin.php:259
99
  msgid "Share"
100
  msgstr "Paylaş"
101
 
102
- #: facebook-button-plugin.php:264
103
  msgid "\"My page\" button image"
104
  msgstr ""
105
 
106
- #: facebook-button-plugin.php:269
107
  msgid "Standard Facebook image"
108
  msgstr "Standart Facebook görseli"
109
 
110
- #: facebook-button-plugin.php:270
111
  msgid "Custom Facebook image"
112
  msgstr "Özel Facebook görseli"
113
 
114
- #: facebook-button-plugin.php:273
115
  msgid "To use custom image you need to setup permissions to upload directory of your site"
116
  msgstr "Özel görsel kullanmak için sitenizin dizinine yükleme yapılmasına izin vermelisiniz."
117
 
118
- #: facebook-button-plugin.php:280
119
  #, fuzzy
120
  msgid "Current image"
121
  msgstr "Şu anki görsel:"
122
 
123
- #: facebook-button-plugin.php:288
124
  msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
125
  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\"."
126
 
127
- #: facebook-button-plugin.php:293
128
  #, fuzzy
129
  msgid "Facebook buttons position"
130
  msgstr "Facebook Butonu pozisyonu"
131
 
132
- #: facebook-button-plugin.php:297
133
  msgid "Before"
134
  msgstr "Önce"
135
 
136
- #: facebook-button-plugin.php:298
137
  msgid "After"
138
  msgstr "Sonra"
139
 
140
- #: facebook-button-plugin.php:299
141
  msgid "Before and After"
142
  msgstr "Önce ve Sonra"
143
 
144
- #: facebook-button-plugin.php:300
145
  msgid "Shortcode"
146
  msgstr "Kısa kod"
147
 
148
- #: facebook-button-plugin.php:302
149
  msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
150
  msgstr "eğer web sitenize Facebook butonu eklemek isterseniz, verilen kısa kodu sayfanıza ya da yazınıza eklemeniz yeterlidir."
151
 
152
- #: facebook-button-plugin.php:307
153
  #, fuzzy
154
  msgid "Facebook buttons language"
155
  msgstr "Facebook Butonu dili"
156
 
157
- #: facebook-button-plugin.php:318
158
  msgid "Change the language of Facebook Like Button"
159
  msgstr "Facebook Beğen butonunun dilini değiştirin"
160
 
161
- #: facebook-button-plugin.php:322
162
  #, fuzzy
163
  msgid "Html tag for \"Like\" button"
164
  msgstr "Beğen butonu için HTML etiketi:"
165
 
166
- #: facebook-button-plugin.php:326
167
  msgid "Use this tag to improve validation of your site"
168
  msgstr "Sitenizin doğrulamasını geliştirmek için bu etiketi kullanın"
169
 
170
- #: facebook-button-plugin.php:336
171
  msgid "\"Like\" for an entire site on every page:"
172
  msgstr ""
173
 
174
- #: facebook-button-plugin.php:338
175
  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."
176
  msgstr ""
177
 
178
- #: facebook-button-plugin.php:343
179
- #: facebook-button-plugin.php:398
180
  msgid "If you upgrade to Pro version all your settings will be saved."
181
  msgstr "Aboneliğinizi PRO versiyonuna yükseltirseniz tüm değişiklikleriniz kaydedilecek."
182
 
183
- #: facebook-button-plugin.php:350
184
- #: facebook-button-plugin.php:405
185
  msgid "Unlock premium options by upgrading to a PRO version."
186
  msgstr "PRO versiyonuna geçerek premium özellikleri aktifleştirin."
187
 
188
- #: facebook-button-plugin.php:351
189
- #: facebook-button-plugin.php:406
190
  msgid "Learn More"
191
  msgstr "Detaylı Bilgi"
192
 
193
- #: facebook-button-plugin.php:354
194
- #: facebook-button-plugin.php:409
195
  msgid "Go"
196
  msgstr "Git"
197
 
198
- #: facebook-button-plugin.php:362
199
- #: facebook-button-plugin.php:393
200
  msgid "Save Changes"
201
  msgstr "Değişiklikleri Kaydet"
202
 
203
- #: facebook-button-plugin.php:375
204
  msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
205
  msgstr "Lütfen Facebook butonunun gösterileceği yazı türlerini (ya da tek sayfaları) seçin."
206
 
207
- #: facebook-button-plugin.php:382
208
  msgid "Show URL for pages"
209
  msgstr "Sayfalar için URL göster"
210
 
211
- #: facebook-button-plugin.php:388
212
  msgid "Example of the site's pages tree"
213
  msgstr "Sitenin sayfalar izi için örnek"
214
 
215
- #: facebook-button-plugin.php:388
216
  msgid "Example of site pages' tree"
217
  msgstr "Site sayfaları izi için örnek"
218
 
219
- #: facebook-button-plugin.php:597
220
  msgid "Support"
221
  msgstr "Destek"
222
 
 
 
 
 
 
 
 
 
 
 
 
 
223
  #~ msgid "Choose display settings:"
224
  #~ msgstr "Gösterim ayarlarını seçin:"
225
 
@@ -310,9 +326,6 @@ msgstr "Destek"
310
  #~ msgid "Please, go to"
311
  #~ msgstr "Lütfen şuraya gidin:"
312
 
313
- #~ msgid "the setting page"
314
- #~ msgstr "ayarlar sayfası"
315
-
316
  #~ msgid "You will be redirected automatically in 5 seconds."
317
  #~ msgstr "5 saniye içinde otomatik olarak yönlendirileceksiniz."
318
 
2
  msgstr ""
3
  "Project-Id-Version: facebook\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-06-12 16:04+0300\n"
6
+ "PO-Revision-Date: 2015-06-12 16:04+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Can Atasever <webmaster@canatasever.com>\n"
9
  "Language: tr\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: facebook-button-plugin.php:32
21
+ #: facebook-button-plugin.php:241
22
  msgid "Facebook Button Settings"
23
  msgstr "Facebook Buton Ayarları"
24
 
50
  msgid "Uploading Error: check image properties"
51
  msgstr "Yükleme Hatası: görselin özelliklerini kontrol edin."
52
 
53
+ #: facebook-button-plugin.php:228
54
+ msgid "All plugin settings were restored."
55
+ msgstr ""
56
+
57
+ #: facebook-button-plugin.php:243
58
+ #: facebook-button-plugin.php:593
59
+ #: facebook-button-plugin.php:607
60
  msgid "Settings"
61
  msgstr "Ayarlar"
62
 
63
+ #: facebook-button-plugin.php:244
64
  msgid "Extra settings"
65
  msgstr "Ekstra Ayarlar"
66
 
67
+ #: facebook-button-plugin.php:245
68
+ #: facebook-button-plugin.php:608
69
  msgid "FAQ"
70
  msgstr "SSS"
71
 
72
+ #: facebook-button-plugin.php:246
73
  msgid "Go PRO"
74
  msgstr "PRO&#39;ya geçin"
75
 
76
+ #: facebook-button-plugin.php:250
77
  msgid "Notice:"
78
  msgstr "Uyarı:"
79
 
80
+ #: facebook-button-plugin.php:250
81
  msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
82
  msgstr "eklentinin ayarları değiştirildi. Değişiklikleri kaydetmek için &#39;Değişiklikleri Kaydet&#39; butonuna basmayı unutmayın."
83
 
84
+ #: facebook-button-plugin.php:259
85
  #, fuzzy
86
  msgid "Your Facebook ID or username"
87
  msgstr "Facebook ID&#39;niz:"
88
 
89
+ #: facebook-button-plugin.php:265
90
  #, fuzzy
91
  msgid "Display button"
92
  msgstr "Butonu Göster:"
93
 
94
+ #: facebook-button-plugin.php:267
95
  msgid "My Page"
96
  msgstr "Benim Sayfam"
97
 
98
+ #: facebook-button-plugin.php:268
99
  msgid "Like"
100
  msgstr "Beğen"
101
 
102
+ #: facebook-button-plugin.php:269
103
  msgid "Share"
104
  msgstr "Paylaş"
105
 
106
+ #: facebook-button-plugin.php:274
107
  msgid "\"My page\" button image"
108
  msgstr ""
109
 
110
+ #: facebook-button-plugin.php:279
111
  msgid "Standard Facebook image"
112
  msgstr "Standart Facebook görseli"
113
 
114
+ #: facebook-button-plugin.php:280
115
  msgid "Custom Facebook image"
116
  msgstr "Özel Facebook görseli"
117
 
118
+ #: facebook-button-plugin.php:283
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:290
123
  #, fuzzy
124
  msgid "Current image"
125
  msgstr "Şu anki görsel:"
126
 
127
+ #: facebook-button-plugin.php:298
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:303
132
  #, fuzzy
133
  msgid "Facebook buttons position"
134
  msgstr "Facebook Butonu pozisyonu"
135
 
136
+ #: facebook-button-plugin.php:307
137
  msgid "Before"
138
  msgstr "Önce"
139
 
140
+ #: facebook-button-plugin.php:308
141
  msgid "After"
142
  msgstr "Sonra"
143
 
144
+ #: facebook-button-plugin.php:309
145
  msgid "Before and After"
146
  msgstr "Önce ve Sonra"
147
 
148
+ #: facebook-button-plugin.php:310
149
  msgid "Shortcode"
150
  msgstr "Kısa kod"
151
 
152
+ #: facebook-button-plugin.php:312
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:317
157
  #, fuzzy
158
  msgid "Facebook buttons language"
159
  msgstr "Facebook Butonu dili"
160
 
161
+ #: facebook-button-plugin.php:328
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:332
166
  #, fuzzy
167
  msgid "Html tag for \"Like\" button"
168
  msgstr "Beğen butonu için HTML etiketi:"
169
 
170
+ #: facebook-button-plugin.php:336
171
  msgid "Use this tag to improve validation of your site"
172
  msgstr "Sitenizin doğrulamasını geliştirmek için bu etiketi kullanın"
173
 
174
+ #: facebook-button-plugin.php:346
175
  msgid "\"Like\" for an entire site on every page:"
176
  msgstr ""
177
 
178
+ #: facebook-button-plugin.php:348
179
  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."
180
  msgstr ""
181
 
182
+ #: facebook-button-plugin.php:353
183
+ #: facebook-button-plugin.php:410
184
  msgid "If you upgrade to Pro version all your settings will be saved."
185
  msgstr "Aboneliğinizi PRO versiyonuna yükseltirseniz tüm değişiklikleriniz kaydedilecek."
186
 
187
+ #: facebook-button-plugin.php:360
188
+ #: facebook-button-plugin.php:417
189
  msgid "Unlock premium options by upgrading to a PRO version."
190
  msgstr "PRO versiyonuna geçerek premium özellikleri aktifleştirin."
191
 
192
+ #: facebook-button-plugin.php:361
193
+ #: facebook-button-plugin.php:418
194
  msgid "Learn More"
195
  msgstr "Detaylı Bilgi"
196
 
197
+ #: facebook-button-plugin.php:364
198
+ #: facebook-button-plugin.php:421
199
  msgid "Go"
200
  msgstr "Git"
201
 
202
+ #: facebook-button-plugin.php:372
203
+ #: facebook-button-plugin.php:405
204
  msgid "Save Changes"
205
  msgstr "Değişiklikleri Kaydet"
206
 
207
+ #: facebook-button-plugin.php:387
208
  msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
209
  msgstr "Lütfen Facebook butonunun gösterileceği yazı türlerini (ya da tek sayfaları) seçin."
210
 
211
+ #: facebook-button-plugin.php:394
212
  msgid "Show URL for pages"
213
  msgstr "Sayfalar için URL göster"
214
 
215
+ #: facebook-button-plugin.php:400
216
  msgid "Example of the site's pages tree"
217
  msgstr "Sitenin sayfalar izi için örnek"
218
 
219
+ #: facebook-button-plugin.php:400
220
  msgid "Example of site pages' tree"
221
  msgstr "Site sayfaları izi için örnek"
222
 
223
+ #: facebook-button-plugin.php:609
224
  msgid "Support"
225
  msgstr "Destek"
226
 
227
+ #, fuzzy
228
+ #~ msgid "Yes, restore all settings"
229
+ #~ msgstr "Ekstra Ayarlar"
230
+
231
+ #, fuzzy
232
+ #~ msgid "No, go back to the settings page"
233
+ #~ msgstr "ayarlar sayfası"
234
+
235
+ #, fuzzy
236
+ #~ msgid "Restore settings"
237
+ #~ msgstr "Ekstra Ayarlar"
238
+
239
  #~ msgid "Choose display settings:"
240
  #~ msgstr "Gösterim ayarlarını seçin:"
241
 
326
  #~ msgid "Please, go to"
327
  #~ msgstr "Lütfen şuraya gidin:"
328
 
 
 
 
329
  #~ msgid "You will be redirected automatically in 5 seconds."
330
  #~ msgstr "5 saniye içinde otomatik olarak yönlendirileceksiniz."
331
 
languages/facebook-uk.mo CHANGED
Binary file
languages/facebook-uk.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: facebook\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-05-18 12:24+0300\n"
6
- "PO-Revision-Date: 2015-05-18 12:25+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
9
  "Language: ua_UA\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: facebook-button-plugin.php:32
20
- #: facebook-button-plugin.php:234
21
  msgid "Facebook Button Settings"
22
  msgstr "Установки кнопки Facebook"
23
 
@@ -49,170 +49,189 @@ msgstr "Помилка: Перевірте ширину або висоту зо
49
  msgid "Uploading Error: check image properties"
50
  msgstr "Помилка Завантаження: Перевірте властивості зображення"
51
 
52
- #: facebook-button-plugin.php:236
53
- #: facebook-button-plugin.php:581
54
- #: facebook-button-plugin.php:595
 
 
 
 
55
  msgid "Settings"
56
  msgstr "Установки"
57
 
58
- #: facebook-button-plugin.php:237
59
  msgid "Extra settings"
60
  msgstr "Додаткові налаштування"
61
 
62
- #: facebook-button-plugin.php:238
63
- #: facebook-button-plugin.php:596
64
  msgid "FAQ"
65
  msgstr "Часті питання"
66
 
67
- #: facebook-button-plugin.php:239
68
  msgid "Go PRO"
69
  msgstr "Перейти на Pro версію"
70
 
71
- #: facebook-button-plugin.php:243
72
  msgid "Notice:"
73
  msgstr "Нагадування:"
74
 
75
- #: facebook-button-plugin.php:243
76
  msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
77
  msgstr "Налаштування плагіну було змінено. Для того, щоб зберегти ці зміни, не забудьте нажати кнопку \"Зберегти зміни\"."
78
 
79
- #: facebook-button-plugin.php:249
80
  msgid "Your Facebook ID or username"
81
  msgstr "ID вашого Facebook акаунту"
82
 
83
- #: facebook-button-plugin.php:255
84
  msgid "Display button"
85
  msgstr "Відображати кнопку"
86
 
87
- #: facebook-button-plugin.php:257
88
  msgid "My Page"
89
  msgstr "Моя сторінка"
90
 
91
- #: facebook-button-plugin.php:258
92
  msgid "Like"
93
  msgstr "Like"
94
 
95
- #: facebook-button-plugin.php:259
96
  msgid "Share"
97
  msgstr "Share"
98
 
99
- #: facebook-button-plugin.php:264
100
  msgid "\"My page\" button image"
101
  msgstr "Зображення кнопки \"My page\""
102
 
103
- #: facebook-button-plugin.php:269
104
  msgid "Standard Facebook image"
105
  msgstr "Стандартне зображення FaceBook "
106
 
107
- #: facebook-button-plugin.php:270
108
  msgid "Custom Facebook image"
109
  msgstr "Кастомне м FaceBook"
110
 
111
- #: facebook-button-plugin.php:273
112
  msgid "To use custom image you need to setup permissions to upload directory of your site"
113
  msgstr "Для використання кастомного зображення Вам необхідно видати права доступу на папку завантажень на вашому сайті"
114
 
115
- #: facebook-button-plugin.php:280
116
  msgid "Current image"
117
  msgstr "Поточне зображення"
118
 
119
- #: facebook-button-plugin.php:288
120
  msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
121
  msgstr "Властивості зображення: максимальна ширина зображення:1 00px; Максимальна висота зображення: 40px; максимальний розмір зображення: 32Kb; Зображення типів:\"jpg\", \"jpeg\", \"png\"."
122
 
123
- #: facebook-button-plugin.php:293
124
  msgid "Facebook buttons position"
125
  msgstr "Розташування кнопок Facebook"
126
 
127
- #: facebook-button-plugin.php:297
128
  msgid "Before"
129
  msgstr "До"
130
 
131
- #: facebook-button-plugin.php:298
132
  msgid "After"
133
  msgstr "Після"
134
 
135
- #: facebook-button-plugin.php:299
136
  msgid "Before and After"
137
  msgstr "До і після"
138
 
139
- #: facebook-button-plugin.php:300
140
  msgid "Shortcode"
141
  msgstr "Шорткод"
142
 
143
- #: facebook-button-plugin.php:302
144
  msgid "If you would like to add a Facebook button to your website, just copy and paste this shortcode into your post or page:"
145
  msgstr "Якщо ви хочете додати кнопку FaceBook на ваш сайт, просто скопіюйте і помістіть цей шорткод на у пост або на сторінку:"
146
 
147
- #: facebook-button-plugin.php:307
148
  msgid "Facebook buttons language"
149
  msgstr "Мова кнопок Facebook"
150
 
151
- #: facebook-button-plugin.php:318
152
  msgid "Change the language of Facebook Like Button"
153
  msgstr "Змінити мову для конпки Like Facebook"
154
 
155
- #: facebook-button-plugin.php:322
156
  msgid "Html tag for \"Like\" button"
157
  msgstr "Html тег для кнопки \"Like\""
158
 
159
- #: facebook-button-plugin.php:326
160
  msgid "Use this tag to improve validation of your site"
161
  msgstr "Використовуйте цей тег для поліпшення валідації вашого сайту"
162
 
163
- #: facebook-button-plugin.php:336
164
  msgid "\"Like\" for an entire site on every page:"
165
  msgstr "\"Like\" для всього сайту на кожній сторінці"
166
 
167
- #: facebook-button-plugin.php:338
168
  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."
169
  msgstr "Увага: опція \"Лайк для всього сайта\" - не створює додаткову кнопку. Ця опція дозволяє при кліку користувачами на стандартну кнопку плагіна ставити лайк усьому сайту , якщо ця опія увімкнена, або ставити лайк окремим постам, якщо опція вимкнена."
170
 
171
- #: facebook-button-plugin.php:343
172
- #: facebook-button-plugin.php:398
173
  msgid "If you upgrade to Pro version all your settings will be saved."
174
  msgstr "Якщо ви перейдете на Pro версію, усі установки будуть збережені."
175
 
176
- #: facebook-button-plugin.php:350
177
- #: facebook-button-plugin.php:405
178
  msgid "Unlock premium options by upgrading to a PRO version."
179
  msgstr "Зробити доступними преміум-опції, перейшовши на PRO версію."
180
 
181
- #: facebook-button-plugin.php:351
182
- #: facebook-button-plugin.php:406
183
  msgid "Learn More"
184
  msgstr "Докладніше"
185
 
186
- #: facebook-button-plugin.php:354
187
- #: facebook-button-plugin.php:409
188
  msgid "Go"
189
  msgstr "Перейти"
190
 
191
- #: facebook-button-plugin.php:362
192
- #: facebook-button-plugin.php:393
193
  msgid "Save Changes"
194
  msgstr "Зберегти зміни"
195
 
196
- #: facebook-button-plugin.php:375
197
  msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
198
  msgstr "Будь ласка, оберіть необхідні типи постів (чи сторінок), де буде відображатися кнопка Facebook"
199
 
200
- #: facebook-button-plugin.php:382
201
  msgid "Show URL for pages"
202
  msgstr "Відображати URL сторінок"
203
 
204
- #: facebook-button-plugin.php:388
205
  msgid "Example of the site's pages tree"
206
  msgstr "Приклад дерева сторінок сайту"
207
 
208
- #: facebook-button-plugin.php:388
209
  msgid "Example of site pages' tree"
210
  msgstr "Приклад дерева сторінок сайту"
211
 
212
- #: facebook-button-plugin.php:597
213
  msgid "Support"
214
  msgstr "Підтримка"
215
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
216
  #~ msgid "Choose display settings:"
217
  #~ msgstr "Виберіть відображати установки:"
218
 
@@ -307,9 +326,6 @@ msgstr "Підтримка"
307
  #~ msgid "Please, go to"
308
  #~ msgstr "Будь ласка, перейдіть"
309
 
310
- #~ msgid "the setting page"
311
- #~ msgstr "сторінку установок"
312
-
313
  #~ msgid "You will be redirected automatically in 5 seconds."
314
  #~ msgstr "Вас буде перенаправлено автоматично через 5 секунд."
315
 
2
  msgstr ""
3
  "Project-Id-Version: facebook\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-06-12 16:04+0300\n"
6
+ "PO-Revision-Date: 2015-06-12 16:04+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
9
  "Language: ua_UA\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: facebook-button-plugin.php:32
20
+ #: facebook-button-plugin.php:241
21
  msgid "Facebook Button Settings"
22
  msgstr "Установки кнопки Facebook"
23
 
49
  msgid "Uploading Error: check image properties"
50
  msgstr "Помилка Завантаження: Перевірте властивості зображення"
51
 
52
+ #: facebook-button-plugin.php:228
53
+ msgid "All plugin settings were restored."
54
+ msgstr "Всі налаштування плагіну було скинуто до стандартних."
55
+
56
+ #: facebook-button-plugin.php:243
57
+ #: facebook-button-plugin.php:593
58
+ #: facebook-button-plugin.php:607
59
  msgid "Settings"
60
  msgstr "Установки"
61
 
62
+ #: facebook-button-plugin.php:244
63
  msgid "Extra settings"
64
  msgstr "Додаткові налаштування"
65
 
66
+ #: facebook-button-plugin.php:245
67
+ #: facebook-button-plugin.php:608
68
  msgid "FAQ"
69
  msgstr "Часті питання"
70
 
71
+ #: facebook-button-plugin.php:246
72
  msgid "Go PRO"
73
  msgstr "Перейти на Pro версію"
74
 
75
+ #: facebook-button-plugin.php:250
76
  msgid "Notice:"
77
  msgstr "Нагадування:"
78
 
79
+ #: facebook-button-plugin.php:250
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:259
84
  msgid "Your Facebook ID or username"
85
  msgstr "ID вашого Facebook акаунту"
86
 
87
+ #: facebook-button-plugin.php:265
88
  msgid "Display button"
89
  msgstr "Відображати кнопку"
90
 
91
+ #: facebook-button-plugin.php:267
92
  msgid "My Page"
93
  msgstr "Моя сторінка"
94
 
95
+ #: facebook-button-plugin.php:268
96
  msgid "Like"
97
  msgstr "Like"
98
 
99
+ #: facebook-button-plugin.php:269
100
  msgid "Share"
101
  msgstr "Share"
102
 
103
+ #: facebook-button-plugin.php:274
104
  msgid "\"My page\" button image"
105
  msgstr "Зображення кнопки \"My page\""
106
 
107
+ #: facebook-button-plugin.php:279
108
  msgid "Standard Facebook image"
109
  msgstr "Стандартне зображення FaceBook "
110
 
111
+ #: facebook-button-plugin.php:280
112
  msgid "Custom Facebook image"
113
  msgstr "Кастомне м FaceBook"
114
 
115
+ #: facebook-button-plugin.php:283
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:290
120
  msgid "Current image"
121
  msgstr "Поточне зображення"
122
 
123
+ #: facebook-button-plugin.php:298
124
  msgid "Image properties: max image width:100px; max image height:40px; max image size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
125
  msgstr "Властивості зображення: максимальна ширина зображення:1 00px; Максимальна висота зображення: 40px; максимальний розмір зображення: 32Kb; Зображення типів:\"jpg\", \"jpeg\", \"png\"."
126
 
127
+ #: facebook-button-plugin.php:303
128
  msgid "Facebook buttons position"
129
  msgstr "Розташування кнопок Facebook"
130
 
131
+ #: facebook-button-plugin.php:307
132
  msgid "Before"
133
  msgstr "До"
134
 
135
+ #: facebook-button-plugin.php:308
136
  msgid "After"
137
  msgstr "Після"
138
 
139
+ #: facebook-button-plugin.php:309
140
  msgid "Before and After"
141
  msgstr "До і після"
142
 
143
+ #: facebook-button-plugin.php:310
144
  msgid "Shortcode"
145
  msgstr "Шорткод"
146
 
147
+ #: facebook-button-plugin.php:312
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:317
152
  msgid "Facebook buttons language"
153
  msgstr "Мова кнопок Facebook"
154
 
155
+ #: facebook-button-plugin.php:328
156
  msgid "Change the language of Facebook Like Button"
157
  msgstr "Змінити мову для конпки Like Facebook"
158
 
159
+ #: facebook-button-plugin.php:332
160
  msgid "Html tag for \"Like\" button"
161
  msgstr "Html тег для кнопки \"Like\""
162
 
163
+ #: facebook-button-plugin.php:336
164
  msgid "Use this tag to improve validation of your site"
165
  msgstr "Використовуйте цей тег для поліпшення валідації вашого сайту"
166
 
167
+ #: facebook-button-plugin.php:346
168
  msgid "\"Like\" for an entire site on every page:"
169
  msgstr "\"Like\" для всього сайту на кожній сторінці"
170
 
171
+ #: facebook-button-plugin.php:348
172
  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."
173
  msgstr "Увага: опція \"Лайк для всього сайта\" - не створює додаткову кнопку. Ця опція дозволяє при кліку користувачами на стандартну кнопку плагіна ставити лайк усьому сайту , якщо ця опія увімкнена, або ставити лайк окремим постам, якщо опція вимкнена."
174
 
175
+ #: facebook-button-plugin.php:353
176
+ #: facebook-button-plugin.php:410
177
  msgid "If you upgrade to Pro version all your settings will be saved."
178
  msgstr "Якщо ви перейдете на Pro версію, усі установки будуть збережені."
179
 
180
+ #: facebook-button-plugin.php:360
181
+ #: facebook-button-plugin.php:417
182
  msgid "Unlock premium options by upgrading to a PRO version."
183
  msgstr "Зробити доступними преміум-опції, перейшовши на PRO версію."
184
 
185
+ #: facebook-button-plugin.php:361
186
+ #: facebook-button-plugin.php:418
187
  msgid "Learn More"
188
  msgstr "Докладніше"
189
 
190
+ #: facebook-button-plugin.php:364
191
+ #: facebook-button-plugin.php:421
192
  msgid "Go"
193
  msgstr "Перейти"
194
 
195
+ #: facebook-button-plugin.php:372
196
+ #: facebook-button-plugin.php:405
197
  msgid "Save Changes"
198
  msgstr "Зберегти зміни"
199
 
200
+ #: facebook-button-plugin.php:387
201
  msgid "Please choose the necessary post types (or single pages) where Facebook button will be displayed:"
202
  msgstr "Будь ласка, оберіть необхідні типи постів (чи сторінок), де буде відображатися кнопка Facebook"
203
 
204
+ #: facebook-button-plugin.php:394
205
  msgid "Show URL for pages"
206
  msgstr "Відображати URL сторінок"
207
 
208
+ #: facebook-button-plugin.php:400
209
  msgid "Example of the site's pages tree"
210
  msgstr "Приклад дерева сторінок сайту"
211
 
212
+ #: facebook-button-plugin.php:400
213
  msgid "Example of site pages' tree"
214
  msgstr "Приклад дерева сторінок сайту"
215
 
216
+ #: facebook-button-plugin.php:609
217
  msgid "Support"
218
  msgstr "Підтримка"
219
 
220
+ #~ msgid "Are you sure you want to restore all settings by default?"
221
+ #~ msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
222
+
223
+ #~ msgid "Yes, restore all settings"
224
+ #~ msgstr "Так, скинути налаштування"
225
+
226
+ #~ msgid "No, go back to the settings page"
227
+ #~ msgstr "Ні, повернутись назад на сторінку налаштувань"
228
+
229
+ #~ msgid "Restore all plugin settings to defaults"
230
+ #~ msgstr "Скинути налаштування плагіну до стандартних"
231
+
232
+ #~ msgid "Restore settings"
233
+ #~ msgstr "Скинути налаштування"
234
+
235
  #~ msgid "Choose display settings:"
236
  #~ msgstr "Виберіть відображати установки:"
237
 
326
  #~ msgid "Please, go to"
327
  #~ msgstr "Будь ласка, перейдіть"
328
 
 
 
 
329
  #~ msgid "You will be redirected automatically in 5 seconds."
330
  #~ msgstr "Вас буде перенаправлено автоматично через 5 секунд."
331
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ 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.39
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -108,6 +108,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
108
 
109
  == Changelog ==
110
 
 
 
 
111
  = V2.39 - 18.05.2015 =
112
  * Update : We updated option titles on the Settings page for the convenience of users.
113
  * Update : Scripts were placed into a separate js file.
@@ -269,6 +272,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
269
 
270
  == Upgrade Notice ==
271
 
 
 
 
272
  = V2.39 =
273
  We updated option titles on the Settings page for the convenience of users. Scripts were placed into a separate js file. We updated all functionality for wordpress 4.2.2.
274
 
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.40
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
108
 
109
  == Changelog ==
110
 
111
+ = V2.40 - 15.06.2015 =
112
+ * New : Ability to restore settings to defaults.
113
+
114
  = V2.39 - 18.05.2015 =
115
  * Update : We updated option titles on the Settings page for the convenience of users.
116
  * Update : Scripts were placed into a separate js file.
272
 
273
  == Upgrade Notice ==
274
 
275
+ = V2.40 =
276
+ Ability to restore settings to defaults.
277
+
278
  = V2.39 =
279
  We updated option titles on the Settings page for the convenience of users. Scripts were placed into a separate js file. We updated all functionality for wordpress 4.2.2.
280
 
screenshot-1.png CHANGED
Binary file