WordPress Social Share, Social Login and Social Comments Plugin – Super Socializer - Version 7.11.6

Version Description

  • [Improvement] Link to get bit.ly login and API key was broken at the plugin options page in admin
  • [Bugfix] PHP error was being generated with Yoast SEO plugin active, in a few cases
  • [Bugfix] New users were seeing a not so user-friendly message in social login popup when user registration via social login kept disabled
  • [Bugfix] "Pinterest Save" official share button was appearing misaligned in the standard social share bar
Download this release

Release Info

Developer the_champ
Plugin Icon 128x128 WordPress Social Share, Social Login and Social Comments Plugin – Super Socializer
Version 7.11.6
Comparing to
See all releases

Code changes from version 7.11.5 to 7.11.6

admin/social_login.php CHANGED
@@ -1006,8 +1006,11 @@
1006
  <h3><label><?php _e('FAQ', 'super-socializer');?></label></h3>
1007
  <div class="inside faq">
1008
  <p><?php _e('<strong>Note:</strong> Plugin will not work on local server. You should have an online website for the plugin to function properly.', 'super-socializer'); ?></p>
 
 
 
 
1009
  <p><a href="https://wordpress.org/support/topic/refresh-after-login-needed/" target="_blank"><?php _e('Why the user is not appearing logged in even after Social Login until the webpage is refreshed manually?', 'super-socializer' ) ?></a></p>
1010
- <p><a href="http://support.heateor.com/facebook-login-not-working/" target="_blank"><?php _e('Why is Facebook login not working?', 'super-socializer' ) ?></a></p>
1011
  <p><a href="http://support.heateor.com/browser-blocking-social-features/" target="_blank"><?php _e('Why is my browser blocking some features of the plugin?', 'super-socializer' ) ?></a></p>
1012
  </div>
1013
  </div>
1006
  <h3><label><?php _e('FAQ', 'super-socializer');?></label></h3>
1007
  <div class="inside faq">
1008
  <p><?php _e('<strong>Note:</strong> Plugin will not work on local server. You should have an online website for the plugin to function properly.', 'super-socializer'); ?></p>
1009
+ <p>
1010
+ <a href="javascript:void(0)"><?php _e('Why is social login not working?', 'super-socializer'); ?></a>
1011
+ <div><?php _e('Make sure that App ID and Secret (Client ID and Secret) keys you have saved, belong to the same app', 'super-socializer'); ?></div>
1012
+ </p>
1013
  <p><a href="https://wordpress.org/support/topic/refresh-after-login-needed/" target="_blank"><?php _e('Why the user is not appearing logged in even after Social Login until the webpage is refreshed manually?', 'super-socializer' ) ?></a></p>
 
1014
  <p><a href="http://support.heateor.com/browser-blocking-social-features/" target="_blank"><?php _e('Why is my browser blocking some features of the plugin?', 'super-socializer' ) ?></a></p>
1015
  </div>
1016
  </div>
admin/social_sharing.php CHANGED
@@ -1674,7 +1674,7 @@
1674
  <tr class="the_champ_help_content" id="the_champ_bitly_login_help_cont">
1675
  <td colspan="2">
1676
  <div>
1677
- <?php echo sprintf(__('Login to your bit.ly account and navigate to <a href="%s" target="_blank">this link</a> to get bit.ly login', 'super-socializer' ), 'https://bitly.com/a/your_api_key') ?>
1678
  <img width="550" src="<?php echo plugins_url('../images/snaps/ss_bitly_username.png', __FILE__); ?>" />
1679
  </div>
1680
  </td>
@@ -1693,7 +1693,7 @@
1693
  <tr class="the_champ_help_content" id="the_champ_bitly_key_help_cont">
1694
  <td colspan="2">
1695
  <div>
1696
- <?php echo sprintf(__('Login to your bit.ly account and navigate to <a href="%s" target="_blank">this link</a> to get your API key', 'super-socializer' ), 'https://bitly.com/a/your_api_key') ?>
1697
  <img width="550" src="<?php echo plugins_url('../images/snaps/ss_bitly_apikey.png', __FILE__); ?>" />
1698
  </div>
1699
  </td>
1674
  <tr class="the_champ_help_content" id="the_champ_bitly_login_help_cont">
1675
  <td colspan="2">
1676
  <div>
1677
+ <?php echo sprintf(__('More details on how to get it <a href="%s" target="_blank">here</a>', 'super-socializer' ), 'https://support.bitly.com/hc/en-us/articles/231140388-How-do-I-find-my-API-key-') ?><br/>
1678
  <img width="550" src="<?php echo plugins_url('../images/snaps/ss_bitly_username.png', __FILE__); ?>" />
1679
  </div>
1680
  </td>
1693
  <tr class="the_champ_help_content" id="the_champ_bitly_key_help_cont">
1694
  <td colspan="2">
1695
  <div>
1696
+ <?php echo sprintf(__('More details on how to get it <a href="%s" target="_blank">here</a>', 'super-socializer' ), 'https://support.bitly.com/hc/en-us/articles/231140388-How-do-I-find-my-API-key-') ?><br/>
1697
  <img width="550" src="<?php echo plugins_url('../images/snaps/ss_bitly_apikey.png', __FILE__); ?>" />
1698
  </div>
1699
  </td>
inc/social_login.php CHANGED
@@ -801,7 +801,11 @@ function the_champ_send_verification_email($receiverEmail, $verificationKey){
801
  function heateor_ss_disable_social_registration($profileData){
802
  global $theChampLoginOptions;
803
  if(isset($theChampLoginOptions['disable_reg'])){
804
- the_champ_ajax_response(array('status' => false, 'message' => 'registration disabled'));
 
 
 
 
805
  }
806
  }
807
  add_action('the_champ_before_registration', 'heateor_ss_disable_social_registration', 10, 1);
801
  function heateor_ss_disable_social_registration($profileData){
802
  global $theChampLoginOptions;
803
  if(isset($theChampLoginOptions['disable_reg'])){
804
+ $redirectionUrl = home_url();
805
+ if(isset($theChampLoginOptions['disable_reg_redirect']) && $theChampLoginOptions['disable_reg_redirect'] != ''){
806
+ $redirectionUrl = $theChampLoginOptions['disable_reg_redirect'];
807
+ }
808
+ the_champ_close_login_popup($redirectionUrl);
809
  }
810
  }
811
  add_action('the_champ_before_registration', 'heateor_ss_disable_social_registration', 10, 1);
inc/social_sharing.php CHANGED
@@ -261,7 +261,7 @@ function heateor_ss_sanitize_post_title($postTitle){
261
  * Get Yoast SEO post meta Twitter title
262
  */
263
  function heateor_ss_wpseo_twitter_title($post){
264
- if($post && heateor_ss_is_plugin_active('wordpress-seo/wp-seo.php') && ($wpseoTwitterTitle = WPSEO_Meta::get_value('twitter-title', $post->ID))){
265
  return $wpseoTwitterTitle;
266
  }
267
  return '';
261
  * Get Yoast SEO post meta Twitter title
262
  */
263
  function heateor_ss_wpseo_twitter_title($post){
264
+ if($post && heateor_ss_is_plugin_active('wordpress-seo/wp-seo.php') && class_exists('WPSEO_Meta') && ($wpseoTwitterTitle = WPSEO_Meta::get_value('twitter-title', $post->ID))){
265
  return $wpseoTwitterTitle;
266
  }
267
  return '';
inc/social_sharing_networks.php CHANGED
@@ -14,7 +14,7 @@ function heateor_ss_fetch_sharing_networks(){
14
  'google_plusone' => '<li style="padding:%padding%px 0 !important" class="the_champ_%network%">%like_count_container%<script type="text/javascript" src="https://apis.google.com/js/platform.js">{lang: "%language%"}</script><div class="g-plusone" data-size="medium" data-href="%post_url%" data-callback="heateorSsmiGpCallback"></div></li>',
15
  'google_plus_share' => '<li style="padding:%padding%px 0 !important" class="the_champ_%network%">%like_count_container%<script type="text/javascript" src="https://apis.google.com/js/platform.js">{lang: "%language%"}</script><div class="g-plus" data-action="share" data-annotation="bubble" data-href="%post_url%"></div></li>',
16
  'linkedin_share' => '<li style="padding:%padding%px 0 !important" class="the_champ_%network%">%like_count_container%<script src="//platform.linkedin.com/in.js" type="text/javascript">lang: %language%</script><script type="IN/Share" data-url="%post_url%" data-counter="right"></script></li>',
17
- 'pinterest_pin' => '<li style="padding:1.35px 0 !important" class="the_champ_%network%">%like_count_container%<a style="text-decoration:none" data-pin-lang="%language%" href="//www.pinterest.com/pin/create/button/?url=%post_url%" data-pin-do="buttonPin" data-pin-config="beside"><img src="//assets.pinterest.com/images/pidgets/pinit_fg_en_rect_gray_20.png" /></a><script type="text/javascript" async src="//assets.pinterest.com/js/pinit.js"></script></li>',
18
  'buffer_share' => '<li style="padding:%padding%px 0 !important" class="the_champ_%network%">%like_count_container%<a href="http://bufferapp.com/add" class="buffer-add-button" data-text="%post_title%" data-url="%post_url%" data-count="horizontal" data-via="%buffer_username%" ></a><script type="text/javascript" src="https://d389zggrogs7qo.cloudfront.net/js/button.js"></script></li>',
19
  'xing_share' => '<li style="padding:%padding%px 0 !important" class="the_champ_xing">%like_count_container%<div data-type="XING/Share" data-counter="right" data-url="%post_url%" data-lang="%language%"></div><script>(function (d, s) {var x = d.createElement(s), s = d.getElementsByTagName(s)[0]; x.src = "https://www.xing-share.com/js/external/share.js"; s.parentNode.insertBefore(x, s); })(document, "script");</script></li>',
20
  'yummly_share' => '<li style="padding:%padding%px 0 !important" class="the_champ_yummly">%like_count_container%<a href="//yummly.com" class="YUMMLY-YUM-BUTTON">Yum</a><script src="https://www.yummly.com/js/widget.js?general"></script></li>',
14
  'google_plusone' => '<li style="padding:%padding%px 0 !important" class="the_champ_%network%">%like_count_container%<script type="text/javascript" src="https://apis.google.com/js/platform.js">{lang: "%language%"}</script><div class="g-plusone" data-size="medium" data-href="%post_url%" data-callback="heateorSsmiGpCallback"></div></li>',
15
  'google_plus_share' => '<li style="padding:%padding%px 0 !important" class="the_champ_%network%">%like_count_container%<script type="text/javascript" src="https://apis.google.com/js/platform.js">{lang: "%language%"}</script><div class="g-plus" data-action="share" data-annotation="bubble" data-href="%post_url%"></div></li>',
16
  'linkedin_share' => '<li style="padding:%padding%px 0 !important" class="the_champ_%network%">%like_count_container%<script src="//platform.linkedin.com/in.js" type="text/javascript">lang: %language%</script><script type="IN/Share" data-url="%post_url%" data-counter="right"></script></li>',
17
+ 'pinterest_pin' => '<li style="padding:4.35px 0 !important" class="the_champ_%network%">%like_count_container%<a style="text-decoration:none" data-pin-lang="%language%" href="//www.pinterest.com/pin/create/button/?url=%post_url%" data-pin-do="buttonPin" data-pin-config="beside"><img src="//assets.pinterest.com/images/pidgets/pinit_fg_en_rect_gray_20.png" /></a><script type="text/javascript" async src="//assets.pinterest.com/js/pinit.js"></script></li>',
18
  'buffer_share' => '<li style="padding:%padding%px 0 !important" class="the_champ_%network%">%like_count_container%<a href="http://bufferapp.com/add" class="buffer-add-button" data-text="%post_title%" data-url="%post_url%" data-count="horizontal" data-via="%buffer_username%" ></a><script type="text/javascript" src="https://d389zggrogs7qo.cloudfront.net/js/button.js"></script></li>',
19
  'xing_share' => '<li style="padding:%padding%px 0 !important" class="the_champ_xing">%like_count_container%<div data-type="XING/Share" data-counter="right" data-url="%post_url%" data-lang="%language%"></div><script>(function (d, s) {var x = d.createElement(s), s = d.getElementsByTagName(s)[0]; x.src = "https://www.xing-share.com/js/external/share.js"; s.parentNode.insertBefore(x, s); })(document, "script");</script></li>',
20
  'yummly_share' => '<li style="padding:%padding%px 0 !important" class="the_champ_yummly">%like_count_container%<a href="//yummly.com" class="YUMMLY-YUM-BUTTON">Yum</a><script src="https://www.yummly.com/js/widget.js?general"></script></li>',
languages/super-socializer-ar_AR.mo CHANGED
Binary file
languages/super-socializer-ar_AR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-03-11 07:32+0530\n"
6
- "PO-Revision-Date: 2018-03-11 07:32+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <support@heateor.com>\n"
9
  "Language: ar\n"
@@ -311,7 +311,7 @@ msgstr "الرابط المصدر و الرابط الهدف لا يمكن أن
311
 
312
  #: ../helper.php:897 ../admin/general_options.php:128
313
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
314
- #: ../admin/social_login.php:1022 ../admin/like_buttons.php:822
315
  #, fuzzy
316
  msgid "Save Changes"
317
  msgstr "حفظ"
@@ -385,14 +385,14 @@ msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
385
  msgstr ""
386
 
387
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
388
- #: ../admin/social_commenting.php:492 ../admin/social_login.php:1027
389
  #: ../admin/like_buttons.php:827
390
  #, fuzzy
391
  msgid "Instagram Shoutout"
392
  msgstr "إنستاجرام"
393
 
394
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
395
- #: ../admin/social_commenting.php:494 ../admin/social_login.php:1029
396
  #: ../admin/like_buttons.php:829
397
  msgid ""
398
  "If you can send (to hello@heateor.com) how our plugin is helping your "
@@ -401,7 +401,7 @@ msgid ""
401
  msgstr ""
402
 
403
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
404
- #: ../admin/social_commenting.php:495 ../admin/social_login.php:1030
405
  #: ../admin/like_buttons.php:830
406
  msgid ""
407
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
@@ -412,7 +412,7 @@ msgid ""
412
  msgstr ""
413
 
414
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
415
- #: ../admin/social_commenting.php:496 ../admin/social_login.php:1031
416
  #: ../admin/like_buttons.php:831
417
  msgid ""
418
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
@@ -1242,29 +1242,19 @@ msgstr "عنصر التحكم الرئيسي لتمكين اختصار لمشا
1242
  msgid "bit.ly Login"
1243
  msgstr ""
1244
 
1245
- #: ../admin/social_sharing.php:1677
1246
  #, fuzzy, php-format
1247
- msgid ""
1248
- "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
1249
- "\">this link</a> to get bit.ly login"
1250
  msgstr ""
1251
- "تسجيل الدخول إلى جهاز bit.ly الحساب والانتقال إلى <a href=\"%s\" target="
1252
- "\"_blank\">هذا الارتباط</a> للحصول على اسم المستخدم bit.ly"
 
1253
 
1254
  #: ../admin/social_sharing.php:1686 ../admin/like_buttons.php:649
1255
  #, fuzzy
1256
  msgid "bit.ly API Key"
1257
  msgstr "مفتاح API الخاص | API Private Key"
1258
 
1259
- #: ../admin/social_sharing.php:1696 ../admin/like_buttons.php:659
1260
- #, fuzzy, php-format
1261
- msgid ""
1262
- "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
1263
- "\">this link</a> to get your API key"
1264
- msgstr ""
1265
- "تسجيل الدخول إلى جهاز bit.ly الحساب والانتقال إلى <a href=\"%s\" target="
1266
- "\"_blank\">هذا الارتباط</a> للحصول على مفتاح API الخاص بك"
1267
-
1268
  #: ../admin/social_sharing.php:1705 ../admin/like_buttons.php:668
1269
  msgid "Clear Bitly Cache"
1270
  msgstr ""
@@ -1436,7 +1426,7 @@ msgid ""
1436
  msgstr ""
1437
 
1438
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1439
- #: ../admin/social_login.php:1011
1440
  msgid "Why is my browser blocking some features of the plugin?"
1441
  msgstr ""
1442
 
@@ -2526,14 +2516,20 @@ msgstr "استخدم كود مختصر | Include the shortcode"
2526
  msgid "Social Linking Shortcode"
2527
  msgstr "الربط الاجتماعي رمز قصير"
2528
 
2529
- #: ../admin/social_login.php:1009
 
 
 
 
2530
  msgid ""
2531
- "Why the user is not appearing logged in even after Social Login until the "
2532
- "webpage is refreshed manually?"
2533
  msgstr ""
2534
 
2535
- #: ../admin/social_login.php:1010
2536
- msgid "Why is Facebook login not working?"
 
 
2537
  msgstr ""
2538
 
2539
  #: ../admin/like_buttons.php:16
@@ -2704,6 +2700,15 @@ msgstr ""
2704
  "تسجيل الدخول إلى جهاز bit.ly الحساب والانتقال إلى <a href=\"%s\" target="
2705
  "\"_blank\">هذا الارتباط</a> للحصول على اسم المستخدم bit.ly"
2706
 
 
 
 
 
 
 
 
 
 
2707
  #: ../admin/like_buttons.php:704
2708
  #, fuzzy, php-format
2709
  msgid ""
@@ -3075,6 +3080,14 @@ msgstr ""
3075
  msgid "RSS Feed URL:"
3076
  msgstr ""
3077
 
 
 
 
 
 
 
 
 
3078
  #, fuzzy
3079
  #~ msgid ""
3080
  #~ "Paste following url in <strong>AUTHORIZED JAVASCRIPT ORIGINS</strong> and "
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-03-16 11:40+0530\n"
6
+ "PO-Revision-Date: 2018-03-16 11:40+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <support@heateor.com>\n"
9
  "Language: ar\n"
311
 
312
  #: ../helper.php:897 ../admin/general_options.php:128
313
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
314
+ #: ../admin/social_login.php:1025 ../admin/like_buttons.php:822
315
  #, fuzzy
316
  msgid "Save Changes"
317
  msgstr "حفظ"
385
  msgstr ""
386
 
387
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
388
+ #: ../admin/social_commenting.php:492 ../admin/social_login.php:1030
389
  #: ../admin/like_buttons.php:827
390
  #, fuzzy
391
  msgid "Instagram Shoutout"
392
  msgstr "إنستاجرام"
393
 
394
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
395
+ #: ../admin/social_commenting.php:494 ../admin/social_login.php:1032
396
  #: ../admin/like_buttons.php:829
397
  msgid ""
398
  "If you can send (to hello@heateor.com) how our plugin is helping your "
401
  msgstr ""
402
 
403
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
404
+ #: ../admin/social_commenting.php:495 ../admin/social_login.php:1033
405
  #: ../admin/like_buttons.php:830
406
  msgid ""
407
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
412
  msgstr ""
413
 
414
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
415
+ #: ../admin/social_commenting.php:496 ../admin/social_login.php:1034
416
  #: ../admin/like_buttons.php:831
417
  msgid ""
418
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
1242
  msgid "bit.ly Login"
1243
  msgstr ""
1244
 
1245
+ #: ../admin/social_sharing.php:1677 ../admin/social_sharing.php:1696
1246
  #, fuzzy, php-format
1247
+ msgid "More details on how to get it <a href=\"%s\" target=\"_blank\">here</a>"
 
 
1248
  msgstr ""
1249
+ "المطلوبة \"تسجيل الدخول الاجتماعي تويتر\" للعمل. الرجاء تتبع الوثائق "
1250
+ "الموجودة في <a href=\"%s\" target=\"_blank\">هذا الارتباط</a> للحصول على "
1251
+ "\"مفتاح API التغريد\""
1252
 
1253
  #: ../admin/social_sharing.php:1686 ../admin/like_buttons.php:649
1254
  #, fuzzy
1255
  msgid "bit.ly API Key"
1256
  msgstr "مفتاح API الخاص | API Private Key"
1257
 
 
 
 
 
 
 
 
 
 
1258
  #: ../admin/social_sharing.php:1705 ../admin/like_buttons.php:668
1259
  msgid "Clear Bitly Cache"
1260
  msgstr ""
1426
  msgstr ""
1427
 
1428
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1429
+ #: ../admin/social_login.php:1014
1430
  msgid "Why is my browser blocking some features of the plugin?"
1431
  msgstr ""
1432
 
2516
  msgid "Social Linking Shortcode"
2517
  msgstr "الربط الاجتماعي رمز قصير"
2518
 
2519
+ #: ../admin/social_login.php:1010
2520
+ msgid "Why is social login not working?"
2521
+ msgstr ""
2522
+
2523
+ #: ../admin/social_login.php:1011
2524
  msgid ""
2525
+ "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2526
+ "belong to the same app"
2527
  msgstr ""
2528
 
2529
+ #: ../admin/social_login.php:1013
2530
+ msgid ""
2531
+ "Why the user is not appearing logged in even after Social Login until the "
2532
+ "webpage is refreshed manually?"
2533
  msgstr ""
2534
 
2535
  #: ../admin/like_buttons.php:16
2700
  "تسجيل الدخول إلى جهاز bit.ly الحساب والانتقال إلى <a href=\"%s\" target="
2701
  "\"_blank\">هذا الارتباط</a> للحصول على اسم المستخدم bit.ly"
2702
 
2703
+ #: ../admin/like_buttons.php:659
2704
+ #, fuzzy, php-format
2705
+ msgid ""
2706
+ "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
2707
+ "\">this link</a> to get your API key"
2708
+ msgstr ""
2709
+ "تسجيل الدخول إلى جهاز bit.ly الحساب والانتقال إلى <a href=\"%s\" target="
2710
+ "\"_blank\">هذا الارتباط</a> للحصول على مفتاح API الخاص بك"
2711
+
2712
  #: ../admin/like_buttons.php:704
2713
  #, fuzzy, php-format
2714
  msgid ""
3080
  msgid "RSS Feed URL:"
3081
  msgstr ""
3082
 
3083
+ #, fuzzy
3084
+ #~ msgid ""
3085
+ #~ "Login to your bit.ly account and navigate to <a href=\"%s\" target="
3086
+ #~ "\"_blank\">this link</a> to get bit.ly login"
3087
+ #~ msgstr ""
3088
+ #~ "تسجيل الدخول إلى جهاز bit.ly الحساب والانتقال إلى <a href=\"%s\" target="
3089
+ #~ "\"_blank\">هذا الارتباط</a> للحصول على اسم المستخدم bit.ly"
3090
+
3091
  #, fuzzy
3092
  #~ msgid ""
3093
  #~ "Paste following url in <strong>AUTHORIZED JAVASCRIPT ORIGINS</strong> and "
languages/super-socializer-es_ES.mo CHANGED
Binary file
languages/super-socializer-es_ES.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-03-11 07:32+0530\n"
6
- "PO-Revision-Date: 2018-03-11 07:32+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: es\n"
@@ -307,7 +307,7 @@ msgstr "Avatar Grande"
307
 
308
  #: ../helper.php:897 ../admin/general_options.php:128
309
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
310
- #: ../admin/social_login.php:1022 ../admin/like_buttons.php:822
311
  msgid "Save Changes"
312
  msgstr "Guardar Cambios"
313
 
@@ -377,14 +377,14 @@ msgstr ""
377
  "style&gt;)"
378
 
379
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
380
- #: ../admin/social_commenting.php:492 ../admin/social_login.php:1027
381
  #: ../admin/like_buttons.php:827
382
  #, fuzzy
383
  msgid "Instagram Shoutout"
384
  msgstr "Instagram"
385
 
386
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
387
- #: ../admin/social_commenting.php:494 ../admin/social_login.php:1029
388
  #: ../admin/like_buttons.php:829
389
  msgid ""
390
  "If you can send (to hello@heateor.com) how our plugin is helping your "
@@ -393,7 +393,7 @@ msgid ""
393
  msgstr ""
394
 
395
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
396
- #: ../admin/social_commenting.php:495 ../admin/social_login.php:1030
397
  #: ../admin/like_buttons.php:830
398
  msgid ""
399
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
@@ -404,7 +404,7 @@ msgid ""
404
  msgstr ""
405
 
406
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
407
- #: ../admin/social_commenting.php:496 ../admin/social_login.php:1031
408
  #: ../admin/like_buttons.php:831
409
  msgid ""
410
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
@@ -1188,28 +1188,18 @@ msgstr ""
1188
  msgid "bit.ly Login"
1189
  msgstr "Ingreso a través de redes sociales"
1190
 
1191
- #: ../admin/social_sharing.php:1677
1192
  #, fuzzy, php-format
1193
- msgid ""
1194
- "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
1195
- "\">this link</a> to get bit.ly login"
1196
  msgstr ""
1197
- "Ingresa a tu cuenta bit.ly y ve a <a href=\"%s\" target=\"_blank\">este "
1198
- "enlace</a> para obtener tu nombre de usuario bit.ly"
 
1199
 
1200
  #: ../admin/social_sharing.php:1686 ../admin/like_buttons.php:649
1201
  msgid "bit.ly API Key"
1202
  msgstr "bit.ly API Key"
1203
 
1204
- #: ../admin/social_sharing.php:1696 ../admin/like_buttons.php:659
1205
- #, php-format
1206
- msgid ""
1207
- "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
1208
- "\">this link</a> to get your API key"
1209
- msgstr ""
1210
- "Ingresa a tu cuenta bit.ly y ve a <a href=\"%s\" target=\"_blank\">este "
1211
- "enlace</a> para obtener tu API key"
1212
-
1213
  #: ../admin/social_sharing.php:1705 ../admin/like_buttons.php:668
1214
  msgid "Clear Bitly Cache"
1215
  msgstr ""
@@ -1378,7 +1368,7 @@ msgid ""
1378
  msgstr ""
1379
 
1380
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1381
- #: ../admin/social_login.php:1011
1382
  msgid "Why is my browser blocking some features of the plugin?"
1383
  msgstr ""
1384
 
@@ -2388,14 +2378,20 @@ msgstr "Widget y Shortcode para el Ingreso a través de redes sociales"
2388
  msgid "Social Linking Shortcode"
2389
  msgstr "Shortcode para enlace a través de redes sociales"
2390
 
2391
- #: ../admin/social_login.php:1009
 
 
 
 
2392
  msgid ""
2393
- "Why the user is not appearing logged in even after Social Login until the "
2394
- "webpage is refreshed manually?"
2395
  msgstr ""
2396
 
2397
- #: ../admin/social_login.php:1010
2398
- msgid "Why is Facebook login not working?"
 
 
2399
  msgstr ""
2400
 
2401
  #: ../admin/like_buttons.php:16
@@ -2549,6 +2545,15 @@ msgstr ""
2549
  "Ingresa a tu cuenta bit.ly y ve a <a href=\"%s\" target=\"_blank\">este "
2550
  "enlace</a> para obtener tu nombre de usuario bit.ly"
2551
 
 
 
 
 
 
 
 
 
 
2552
  #: ../admin/like_buttons.php:704
2553
  #, php-format
2554
  msgid ""
@@ -2900,6 +2905,14 @@ msgstr ""
2900
  msgid "RSS Feed URL:"
2901
  msgstr ""
2902
 
 
 
 
 
 
 
 
 
2903
  #~ msgid ""
2904
  #~ "Paste following url in <strong>AUTHORIZED JAVASCRIPT ORIGINS</strong> and "
2905
  #~ "<strong>AUTHORIZED REDIRECT URI</strong> options at the link mentioned"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-03-16 11:40+0530\n"
6
+ "PO-Revision-Date: 2018-03-16 11:40+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: es\n"
307
 
308
  #: ../helper.php:897 ../admin/general_options.php:128
309
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
310
+ #: ../admin/social_login.php:1025 ../admin/like_buttons.php:822
311
  msgid "Save Changes"
312
  msgstr "Guardar Cambios"
313
 
377
  "style&gt;)"
378
 
379
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
380
+ #: ../admin/social_commenting.php:492 ../admin/social_login.php:1030
381
  #: ../admin/like_buttons.php:827
382
  #, fuzzy
383
  msgid "Instagram Shoutout"
384
  msgstr "Instagram"
385
 
386
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
387
+ #: ../admin/social_commenting.php:494 ../admin/social_login.php:1032
388
  #: ../admin/like_buttons.php:829
389
  msgid ""
390
  "If you can send (to hello@heateor.com) how our plugin is helping your "
393
  msgstr ""
394
 
395
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
396
+ #: ../admin/social_commenting.php:495 ../admin/social_login.php:1033
397
  #: ../admin/like_buttons.php:830
398
  msgid ""
399
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
404
  msgstr ""
405
 
406
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
407
+ #: ../admin/social_commenting.php:496 ../admin/social_login.php:1034
408
  #: ../admin/like_buttons.php:831
409
  msgid ""
410
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
1188
  msgid "bit.ly Login"
1189
  msgstr "Ingreso a través de redes sociales"
1190
 
1191
+ #: ../admin/social_sharing.php:1677 ../admin/social_sharing.php:1696
1192
  #, fuzzy, php-format
1193
+ msgid "More details on how to get it <a href=\"%s\" target=\"_blank\">here</a>"
 
 
1194
  msgstr ""
1195
+ "Requerido para que funcione el ingreso a través de Twitter. Por favor, sigue "
1196
+ "la documentación en <a href=\"%s\" target=\"_blank\">este enlace</a> para "
1197
+ "conseguir tu Twitter Key"
1198
 
1199
  #: ../admin/social_sharing.php:1686 ../admin/like_buttons.php:649
1200
  msgid "bit.ly API Key"
1201
  msgstr "bit.ly API Key"
1202
 
 
 
 
 
 
 
 
 
 
1203
  #: ../admin/social_sharing.php:1705 ../admin/like_buttons.php:668
1204
  msgid "Clear Bitly Cache"
1205
  msgstr ""
1368
  msgstr ""
1369
 
1370
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1371
+ #: ../admin/social_login.php:1014
1372
  msgid "Why is my browser blocking some features of the plugin?"
1373
  msgstr ""
1374
 
2378
  msgid "Social Linking Shortcode"
2379
  msgstr "Shortcode para enlace a través de redes sociales"
2380
 
2381
+ #: ../admin/social_login.php:1010
2382
+ msgid "Why is social login not working?"
2383
+ msgstr ""
2384
+
2385
+ #: ../admin/social_login.php:1011
2386
  msgid ""
2387
+ "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2388
+ "belong to the same app"
2389
  msgstr ""
2390
 
2391
+ #: ../admin/social_login.php:1013
2392
+ msgid ""
2393
+ "Why the user is not appearing logged in even after Social Login until the "
2394
+ "webpage is refreshed manually?"
2395
  msgstr ""
2396
 
2397
  #: ../admin/like_buttons.php:16
2545
  "Ingresa a tu cuenta bit.ly y ve a <a href=\"%s\" target=\"_blank\">este "
2546
  "enlace</a> para obtener tu nombre de usuario bit.ly"
2547
 
2548
+ #: ../admin/like_buttons.php:659
2549
+ #, php-format
2550
+ msgid ""
2551
+ "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
2552
+ "\">this link</a> to get your API key"
2553
+ msgstr ""
2554
+ "Ingresa a tu cuenta bit.ly y ve a <a href=\"%s\" target=\"_blank\">este "
2555
+ "enlace</a> para obtener tu API key"
2556
+
2557
  #: ../admin/like_buttons.php:704
2558
  #, php-format
2559
  msgid ""
2905
  msgid "RSS Feed URL:"
2906
  msgstr ""
2907
 
2908
+ #, fuzzy
2909
+ #~ msgid ""
2910
+ #~ "Login to your bit.ly account and navigate to <a href=\"%s\" target="
2911
+ #~ "\"_blank\">this link</a> to get bit.ly login"
2912
+ #~ msgstr ""
2913
+ #~ "Ingresa a tu cuenta bit.ly y ve a <a href=\"%s\" target=\"_blank\">este "
2914
+ #~ "enlace</a> para obtener tu nombre de usuario bit.ly"
2915
+
2916
  #~ msgid ""
2917
  #~ "Paste following url in <strong>AUTHORIZED JAVASCRIPT ORIGINS</strong> and "
2918
  #~ "<strong>AUTHORIZED REDIRECT URI</strong> options at the link mentioned"
languages/super-socializer-hu_HU.mo CHANGED
Binary file
languages/super-socializer-hu_HU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-03-11 07:31+0530\n"
6
- "PO-Revision-Date: 2018-03-11 07:31+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: The Champ <lordofthechamps@gmail.com>\n"
9
  "Language: hu\n"
@@ -311,7 +311,7 @@ msgstr "Cél Url"
311
 
312
  #: ../helper.php:897 ../admin/general_options.php:128
313
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
314
- #: ../admin/social_login.php:1022 ../admin/like_buttons.php:822
315
  msgid "Save Changes"
316
  msgstr "Változások Mentése"
317
 
@@ -380,14 +380,14 @@ msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
380
  msgstr ""
381
 
382
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
383
- #: ../admin/social_commenting.php:492 ../admin/social_login.php:1027
384
  #: ../admin/like_buttons.php:827
385
  #, fuzzy
386
  msgid "Instagram Shoutout"
387
  msgstr "Instagram"
388
 
389
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
390
- #: ../admin/social_commenting.php:494 ../admin/social_login.php:1029
391
  #: ../admin/like_buttons.php:829
392
  msgid ""
393
  "If you can send (to hello@heateor.com) how our plugin is helping your "
@@ -396,7 +396,7 @@ msgid ""
396
  msgstr ""
397
 
398
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
399
- #: ../admin/social_commenting.php:495 ../admin/social_login.php:1030
400
  #: ../admin/like_buttons.php:830
401
  msgid ""
402
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
@@ -407,7 +407,7 @@ msgid ""
407
  msgstr ""
408
 
409
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
410
- #: ../admin/social_commenting.php:496 ../admin/social_login.php:1031
411
  #: ../admin/like_buttons.php:831
412
  msgid ""
413
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
@@ -1185,28 +1185,18 @@ msgstr ""
1185
  msgid "bit.ly Login"
1186
  msgstr ""
1187
 
1188
- #: ../admin/social_sharing.php:1677
1189
  #, fuzzy, php-format
1190
- msgid ""
1191
- "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
1192
- "\">this link</a> to get bit.ly login"
1193
  msgstr ""
1194
- "Jelentkezz be a bit.ly fiókodba és keresd fel <a href=\"%s\" target=\"_blank"
1195
- "\">ezt a linket</a> a bit.ly felhasználói név megtekintéséhez"
 
1196
 
1197
  #: ../admin/social_sharing.php:1686 ../admin/like_buttons.php:649
1198
  msgid "bit.ly API Key"
1199
  msgstr "bit.ly API Key"
1200
 
1201
- #: ../admin/social_sharing.php:1696 ../admin/like_buttons.php:659
1202
- #, php-format
1203
- msgid ""
1204
- "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
1205
- "\">this link</a> to get your API key"
1206
- msgstr ""
1207
- "Jelentkezz be a bit.ly fiókodba és keresd fel <a href=\"%s\" target=\"_blank"
1208
- "\">ezt a linket</a> a bit.ly API Key beszerzéséhez"
1209
-
1210
  #: ../admin/social_sharing.php:1705 ../admin/like_buttons.php:668
1211
  msgid "Clear Bitly Cache"
1212
  msgstr ""
@@ -1374,7 +1364,7 @@ msgid ""
1374
  msgstr ""
1375
 
1376
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1377
- #: ../admin/social_login.php:1011
1378
  msgid "Why is my browser blocking some features of the plugin?"
1379
  msgstr ""
1380
 
@@ -2366,14 +2356,20 @@ msgstr "Shortcode és Widget"
2366
  msgid "Social Linking Shortcode"
2367
  msgstr ""
2368
 
2369
- #: ../admin/social_login.php:1009
 
 
 
 
2370
  msgid ""
2371
- "Why the user is not appearing logged in even after Social Login until the "
2372
- "webpage is refreshed manually?"
2373
  msgstr ""
2374
 
2375
- #: ../admin/social_login.php:1010
2376
- msgid "Why is Facebook login not working?"
 
 
2377
  msgstr ""
2378
 
2379
  #: ../admin/like_buttons.php:16
@@ -2528,6 +2524,15 @@ msgstr ""
2528
  "Jelentkezz be a bit.ly fiókodba és keresd fel <a href=\"%s\" target=\"_blank"
2529
  "\">ezt a linket</a> a bit.ly felhasználói név megtekintéséhez"
2530
 
 
 
 
 
 
 
 
 
 
2531
  #: ../admin/like_buttons.php:704
2532
  #, php-format
2533
  msgid ""
@@ -2885,6 +2890,14 @@ msgstr ""
2885
  msgid "RSS Feed URL:"
2886
  msgstr ""
2887
 
 
 
 
 
 
 
 
 
2888
  #~ msgid ""
2889
  #~ "Paste following url in <strong>AUTHORIZED JAVASCRIPT ORIGINS</strong> and "
2890
  #~ "<strong>AUTHORIZED REDIRECT URI</strong> options at the link mentioned"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-03-16 11:40+0530\n"
6
+ "PO-Revision-Date: 2018-03-16 11:40+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: The Champ <lordofthechamps@gmail.com>\n"
9
  "Language: hu\n"
311
 
312
  #: ../helper.php:897 ../admin/general_options.php:128
313
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
314
+ #: ../admin/social_login.php:1025 ../admin/like_buttons.php:822
315
  msgid "Save Changes"
316
  msgstr "Változások Mentése"
317
 
380
  msgstr ""
381
 
382
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
383
+ #: ../admin/social_commenting.php:492 ../admin/social_login.php:1030
384
  #: ../admin/like_buttons.php:827
385
  #, fuzzy
386
  msgid "Instagram Shoutout"
387
  msgstr "Instagram"
388
 
389
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
390
+ #: ../admin/social_commenting.php:494 ../admin/social_login.php:1032
391
  #: ../admin/like_buttons.php:829
392
  msgid ""
393
  "If you can send (to hello@heateor.com) how our plugin is helping your "
396
  msgstr ""
397
 
398
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
399
+ #: ../admin/social_commenting.php:495 ../admin/social_login.php:1033
400
  #: ../admin/like_buttons.php:830
401
  msgid ""
402
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
407
  msgstr ""
408
 
409
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
410
+ #: ../admin/social_commenting.php:496 ../admin/social_login.php:1034
411
  #: ../admin/like_buttons.php:831
412
  msgid ""
413
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
1185
  msgid "bit.ly Login"
1186
  msgstr ""
1187
 
1188
+ #: ../admin/social_sharing.php:1677 ../admin/social_sharing.php:1696
1189
  #, fuzzy, php-format
1190
+ msgid "More details on how to get it <a href=\"%s\" target=\"_blank\">here</a>"
 
 
1191
  msgstr ""
1192
+ "Szükséges a Twitter Közösségi Belépés működéséhez. Kérlek, kövesd a "
1193
+ "dokumentációt <a href=\"%s\" target=\"_blank\">ezen a linken</a> a Twitter "
1194
+ "API Key beszerzéshez"
1195
 
1196
  #: ../admin/social_sharing.php:1686 ../admin/like_buttons.php:649
1197
  msgid "bit.ly API Key"
1198
  msgstr "bit.ly API Key"
1199
 
 
 
 
 
 
 
 
 
 
1200
  #: ../admin/social_sharing.php:1705 ../admin/like_buttons.php:668
1201
  msgid "Clear Bitly Cache"
1202
  msgstr ""
1364
  msgstr ""
1365
 
1366
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1367
+ #: ../admin/social_login.php:1014
1368
  msgid "Why is my browser blocking some features of the plugin?"
1369
  msgstr ""
1370
 
2356
  msgid "Social Linking Shortcode"
2357
  msgstr ""
2358
 
2359
+ #: ../admin/social_login.php:1010
2360
+ msgid "Why is social login not working?"
2361
+ msgstr ""
2362
+
2363
+ #: ../admin/social_login.php:1011
2364
  msgid ""
2365
+ "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2366
+ "belong to the same app"
2367
  msgstr ""
2368
 
2369
+ #: ../admin/social_login.php:1013
2370
+ msgid ""
2371
+ "Why the user is not appearing logged in even after Social Login until the "
2372
+ "webpage is refreshed manually?"
2373
  msgstr ""
2374
 
2375
  #: ../admin/like_buttons.php:16
2524
  "Jelentkezz be a bit.ly fiókodba és keresd fel <a href=\"%s\" target=\"_blank"
2525
  "\">ezt a linket</a> a bit.ly felhasználói név megtekintéséhez"
2526
 
2527
+ #: ../admin/like_buttons.php:659
2528
+ #, php-format
2529
+ msgid ""
2530
+ "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
2531
+ "\">this link</a> to get your API key"
2532
+ msgstr ""
2533
+ "Jelentkezz be a bit.ly fiókodba és keresd fel <a href=\"%s\" target=\"_blank"
2534
+ "\">ezt a linket</a> a bit.ly API Key beszerzéséhez"
2535
+
2536
  #: ../admin/like_buttons.php:704
2537
  #, php-format
2538
  msgid ""
2890
  msgid "RSS Feed URL:"
2891
  msgstr ""
2892
 
2893
+ #, fuzzy
2894
+ #~ msgid ""
2895
+ #~ "Login to your bit.ly account and navigate to <a href=\"%s\" target="
2896
+ #~ "\"_blank\">this link</a> to get bit.ly login"
2897
+ #~ msgstr ""
2898
+ #~ "Jelentkezz be a bit.ly fiókodba és keresd fel <a href=\"%s\" target="
2899
+ #~ "\"_blank\">ezt a linket</a> a bit.ly felhasználói név megtekintéséhez"
2900
+
2901
  #~ msgid ""
2902
  #~ "Paste following url in <strong>AUTHORIZED JAVASCRIPT ORIGINS</strong> and "
2903
  #~ "<strong>AUTHORIZED REDIRECT URI</strong> options at the link mentioned"
languages/super-socializer-it_IT.mo CHANGED
Binary file
languages/super-socializer-it_IT.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-03-11 07:31+0530\n"
6
- "PO-Revision-Date: 2018-03-11 07:31+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Freedom's Gate <freedomsgate.tk@gmail.com>\n"
9
  "Language: it\n"
@@ -306,7 +306,7 @@ msgstr "Avatar Grande"
306
 
307
  #: ../helper.php:897 ../admin/general_options.php:128
308
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
309
- #: ../admin/social_login.php:1022 ../admin/like_buttons.php:822
310
  msgid "Save Changes"
311
  msgstr "Salva le modifiche"
312
 
@@ -375,14 +375,14 @@ msgstr ""
375
  "È possibile specificare regole CSS aggiuntive (senza &lt;style&gt; tag)"
376
 
377
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
378
- #: ../admin/social_commenting.php:492 ../admin/social_login.php:1027
379
  #: ../admin/like_buttons.php:827
380
  #, fuzzy
381
  msgid "Instagram Shoutout"
382
  msgstr "Instagram"
383
 
384
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
385
- #: ../admin/social_commenting.php:494 ../admin/social_login.php:1029
386
  #: ../admin/like_buttons.php:829
387
  msgid ""
388
  "If you can send (to hello@heateor.com) how our plugin is helping your "
@@ -391,7 +391,7 @@ msgid ""
391
  msgstr ""
392
 
393
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
394
- #: ../admin/social_commenting.php:495 ../admin/social_login.php:1030
395
  #: ../admin/like_buttons.php:830
396
  msgid ""
397
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
@@ -402,7 +402,7 @@ msgid ""
402
  msgstr ""
403
 
404
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
405
- #: ../admin/social_commenting.php:496 ../admin/social_login.php:1031
406
  #: ../admin/like_buttons.php:831
407
  msgid ""
408
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
@@ -1177,28 +1177,18 @@ msgstr ""
1177
  msgid "bit.ly Login"
1178
  msgstr "bit.ly Login"
1179
 
1180
- #: ../admin/social_sharing.php:1677
1181
- #, php-format
1182
- msgid ""
1183
- "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
1184
- "\">this link</a> to get bit.ly login"
1185
  msgstr ""
1186
- "Per ottenere il vostro username accedete al vostro account bit.ly e andate a "
1187
- "<a href=\"%s\" target=\"_blank\">questo link</a>"
 
1188
 
1189
  #: ../admin/social_sharing.php:1686 ../admin/like_buttons.php:649
1190
  msgid "bit.ly API Key"
1191
  msgstr "bit.ly API Key"
1192
 
1193
- #: ../admin/social_sharing.php:1696 ../admin/like_buttons.php:659
1194
- #, php-format
1195
- msgid ""
1196
- "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
1197
- "\">this link</a> to get your API key"
1198
- msgstr ""
1199
- "Per ottenere la vostra API key accedete al vostro account bit.ly e andate a "
1200
- "<a href=\"%s\" target=\"_blank\">questo link</a>"
1201
-
1202
  #: ../admin/social_sharing.php:1705 ../admin/like_buttons.php:668
1203
  msgid "Clear Bitly Cache"
1204
  msgstr "Cancella Bitly Cache"
@@ -1368,7 +1358,7 @@ msgid ""
1368
  msgstr ""
1369
 
1370
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1371
- #: ../admin/social_login.php:1011
1372
  msgid "Why is my browser blocking some features of the plugin?"
1373
  msgstr ""
1374
 
@@ -2370,14 +2360,20 @@ msgstr "Shortcode & Widget"
2370
  msgid "Social Linking Shortcode"
2371
  msgstr "Social Linking Shortcode"
2372
 
2373
- #: ../admin/social_login.php:1009
 
 
 
 
2374
  msgid ""
2375
- "Why the user is not appearing logged in even after Social Login until the "
2376
- "webpage is refreshed manually?"
2377
  msgstr ""
2378
 
2379
- #: ../admin/social_login.php:1010
2380
- msgid "Why is Facebook login not working?"
 
 
2381
  msgstr ""
2382
 
2383
  #: ../admin/like_buttons.php:16
@@ -2531,6 +2527,15 @@ msgstr ""
2531
  "Per ottenere il vostro username accedete al vostro account bit.ly e andate a "
2532
  "<a href=\"%s\" target=\"_blank\">questo link</a>"
2533
 
 
 
 
 
 
 
 
 
 
2534
  #: ../admin/like_buttons.php:704
2535
  #, php-format
2536
  msgid ""
@@ -2878,6 +2883,13 @@ msgstr ""
2878
  msgid "RSS Feed URL:"
2879
  msgstr ""
2880
 
 
 
 
 
 
 
 
2881
  #~ msgid ""
2882
  #~ "Paste following url in <strong>AUTHORIZED JAVASCRIPT ORIGINS</strong> and "
2883
  #~ "<strong>AUTHORIZED REDIRECT URI</strong> options at the link mentioned"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-03-16 11:39+0530\n"
6
+ "PO-Revision-Date: 2018-03-16 11:39+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Freedom's Gate <freedomsgate.tk@gmail.com>\n"
9
  "Language: it\n"
306
 
307
  #: ../helper.php:897 ../admin/general_options.php:128
308
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
309
+ #: ../admin/social_login.php:1025 ../admin/like_buttons.php:822
310
  msgid "Save Changes"
311
  msgstr "Salva le modifiche"
312
 
375
  "È possibile specificare regole CSS aggiuntive (senza &lt;style&gt; tag)"
376
 
377
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
378
+ #: ../admin/social_commenting.php:492 ../admin/social_login.php:1030
379
  #: ../admin/like_buttons.php:827
380
  #, fuzzy
381
  msgid "Instagram Shoutout"
382
  msgstr "Instagram"
383
 
384
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
385
+ #: ../admin/social_commenting.php:494 ../admin/social_login.php:1032
386
  #: ../admin/like_buttons.php:829
387
  msgid ""
388
  "If you can send (to hello@heateor.com) how our plugin is helping your "
391
  msgstr ""
392
 
393
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
394
+ #: ../admin/social_commenting.php:495 ../admin/social_login.php:1033
395
  #: ../admin/like_buttons.php:830
396
  msgid ""
397
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
402
  msgstr ""
403
 
404
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
405
+ #: ../admin/social_commenting.php:496 ../admin/social_login.php:1034
406
  #: ../admin/like_buttons.php:831
407
  msgid ""
408
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
1177
  msgid "bit.ly Login"
1178
  msgstr "bit.ly Login"
1179
 
1180
+ #: ../admin/social_sharing.php:1677 ../admin/social_sharing.php:1696
1181
+ #, fuzzy, php-format
1182
+ msgid "More details on how to get it <a href=\"%s\" target=\"_blank\">here</a>"
 
 
1183
  msgstr ""
1184
+ "Necessario per far funzionare Twitter Social Login. Per ottenere la Twitter "
1185
+ "API Key, consulta la documentazione che trovi su <a href=\"%s\" target="
1186
+ "\"_blank\">questa pagina</a>"
1187
 
1188
  #: ../admin/social_sharing.php:1686 ../admin/like_buttons.php:649
1189
  msgid "bit.ly API Key"
1190
  msgstr "bit.ly API Key"
1191
 
 
 
 
 
 
 
 
 
 
1192
  #: ../admin/social_sharing.php:1705 ../admin/like_buttons.php:668
1193
  msgid "Clear Bitly Cache"
1194
  msgstr "Cancella Bitly Cache"
1358
  msgstr ""
1359
 
1360
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1361
+ #: ../admin/social_login.php:1014
1362
  msgid "Why is my browser blocking some features of the plugin?"
1363
  msgstr ""
1364
 
2360
  msgid "Social Linking Shortcode"
2361
  msgstr "Social Linking Shortcode"
2362
 
2363
+ #: ../admin/social_login.php:1010
2364
+ msgid "Why is social login not working?"
2365
+ msgstr ""
2366
+
2367
+ #: ../admin/social_login.php:1011
2368
  msgid ""
2369
+ "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2370
+ "belong to the same app"
2371
  msgstr ""
2372
 
2373
+ #: ../admin/social_login.php:1013
2374
+ msgid ""
2375
+ "Why the user is not appearing logged in even after Social Login until the "
2376
+ "webpage is refreshed manually?"
2377
  msgstr ""
2378
 
2379
  #: ../admin/like_buttons.php:16
2527
  "Per ottenere il vostro username accedete al vostro account bit.ly e andate a "
2528
  "<a href=\"%s\" target=\"_blank\">questo link</a>"
2529
 
2530
+ #: ../admin/like_buttons.php:659
2531
+ #, php-format
2532
+ msgid ""
2533
+ "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
2534
+ "\">this link</a> to get your API key"
2535
+ msgstr ""
2536
+ "Per ottenere la vostra API key accedete al vostro account bit.ly e andate a "
2537
+ "<a href=\"%s\" target=\"_blank\">questo link</a>"
2538
+
2539
  #: ../admin/like_buttons.php:704
2540
  #, php-format
2541
  msgid ""
2883
  msgid "RSS Feed URL:"
2884
  msgstr ""
2885
 
2886
+ #~ msgid ""
2887
+ #~ "Login to your bit.ly account and navigate to <a href=\"%s\" target="
2888
+ #~ "\"_blank\">this link</a> to get bit.ly login"
2889
+ #~ msgstr ""
2890
+ #~ "Per ottenere il vostro username accedete al vostro account bit.ly e "
2891
+ #~ "andate a <a href=\"%s\" target=\"_blank\">questo link</a>"
2892
+
2893
  #~ msgid ""
2894
  #~ "Paste following url in <strong>AUTHORIZED JAVASCRIPT ORIGINS</strong> and "
2895
  #~ "<strong>AUTHORIZED REDIRECT URI</strong> options at the link mentioned"
languages/super-socializer-pt_BR.mo CHANGED
Binary file
languages/super-socializer-pt_BR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-03-11 07:30+0530\n"
6
- "PO-Revision-Date: 2018-03-11 07:30+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: en_IN\n"
@@ -301,7 +301,7 @@ msgstr "Avatar Grande"
301
 
302
  #: ../helper.php:897 ../admin/general_options.php:128
303
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
304
- #: ../admin/social_login.php:1022 ../admin/like_buttons.php:822
305
  msgid "Save Changes"
306
  msgstr "Salvar Alterações"
307
 
@@ -371,14 +371,14 @@ msgstr ""
371
  "style&gt; )"
372
 
373
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
374
- #: ../admin/social_commenting.php:492 ../admin/social_login.php:1027
375
  #: ../admin/like_buttons.php:827
376
  #, fuzzy
377
  msgid "Instagram Shoutout"
378
  msgstr "Instagram"
379
 
380
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
381
- #: ../admin/social_commenting.php:494 ../admin/social_login.php:1029
382
  #: ../admin/like_buttons.php:829
383
  msgid ""
384
  "If you can send (to hello@heateor.com) how our plugin is helping your "
@@ -387,7 +387,7 @@ msgid ""
387
  msgstr ""
388
 
389
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
390
- #: ../admin/social_commenting.php:495 ../admin/social_login.php:1030
391
  #: ../admin/like_buttons.php:830
392
  msgid ""
393
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
@@ -398,7 +398,7 @@ msgid ""
398
  msgstr ""
399
 
400
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
401
- #: ../admin/social_commenting.php:496 ../admin/social_login.php:1031
402
  #: ../admin/like_buttons.php:831
403
  msgid ""
404
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
@@ -1183,28 +1183,18 @@ msgstr ""
1183
  msgid "bit.ly Login"
1184
  msgstr ""
1185
 
1186
- #: ../admin/social_sharing.php:1677
1187
  #, fuzzy, php-format
1188
- msgid ""
1189
- "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
1190
- "\">this link</a> to get bit.ly login"
1191
  msgstr ""
1192
- "Autentique-se em sua conta bit.ly e navegue para <a href=\\\"%s\\\" target=\\"
1193
- "\"_blank\\\">este link</a> pata obter o username do bit.ly"
 
1194
 
1195
  #: ../admin/social_sharing.php:1686 ../admin/like_buttons.php:649
1196
  msgid "bit.ly API Key"
1197
  msgstr "bit.ly API Key"
1198
 
1199
- #: ../admin/social_sharing.php:1696 ../admin/like_buttons.php:659
1200
- #, php-format
1201
- msgid ""
1202
- "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
1203
- "\">this link</a> to get your API key"
1204
- msgstr ""
1205
- "Autentique-se em sua conta bit.ly e navegue para <a href=\\\"%s\\\" target=\\"
1206
- "\"_blank\\\">este link</a> para obter a sua API key"
1207
-
1208
  #: ../admin/social_sharing.php:1705 ../admin/like_buttons.php:668
1209
  msgid "Clear Bitly Cache"
1210
  msgstr "Limpar o Cache Bitly"
@@ -1375,7 +1365,7 @@ msgid ""
1375
  msgstr ""
1376
 
1377
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1378
- #: ../admin/social_login.php:1011
1379
  msgid "Why is my browser blocking some features of the plugin?"
1380
  msgstr ""
1381
 
@@ -2375,14 +2365,20 @@ msgstr "Autenticação Social Shortcode & Widget"
2375
  msgid "Social Linking Shortcode"
2376
  msgstr "Shortcode de associação Social"
2377
 
2378
- #: ../admin/social_login.php:1009
 
 
 
 
2379
  msgid ""
2380
- "Why the user is not appearing logged in even after Social Login until the "
2381
- "webpage is refreshed manually?"
2382
  msgstr ""
2383
 
2384
- #: ../admin/social_login.php:1010
2385
- msgid "Why is Facebook login not working?"
 
 
2386
  msgstr ""
2387
 
2388
  #: ../admin/like_buttons.php:16
@@ -2534,6 +2530,15 @@ msgstr ""
2534
  "Autentique-se em sua conta bit.ly e navegue para <a href=\\\"%s\\\" target=\\"
2535
  "\"_blank\\\">este link</a> pata obter o username do bit.ly"
2536
 
 
 
 
 
 
 
 
 
 
2537
  #: ../admin/like_buttons.php:704
2538
  #, php-format
2539
  msgid ""
@@ -2885,6 +2890,14 @@ msgstr ""
2885
  msgid "RSS Feed URL:"
2886
  msgstr ""
2887
 
 
 
 
 
 
 
 
 
2888
  #~ msgid ""
2889
  #~ "Paste following url in <strong>AUTHORIZED JAVASCRIPT ORIGINS</strong> and "
2890
  #~ "<strong>AUTHORIZED REDIRECT URI</strong> options at the link mentioned"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-03-16 11:39+0530\n"
6
+ "PO-Revision-Date: 2018-03-16 11:39+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: en_IN\n"
301
 
302
  #: ../helper.php:897 ../admin/general_options.php:128
303
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
304
+ #: ../admin/social_login.php:1025 ../admin/like_buttons.php:822
305
  msgid "Save Changes"
306
  msgstr "Salvar Alterações"
307
 
371
  "style&gt; )"
372
 
373
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
374
+ #: ../admin/social_commenting.php:492 ../admin/social_login.php:1030
375
  #: ../admin/like_buttons.php:827
376
  #, fuzzy
377
  msgid "Instagram Shoutout"
378
  msgstr "Instagram"
379
 
380
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
381
+ #: ../admin/social_commenting.php:494 ../admin/social_login.php:1032
382
  #: ../admin/like_buttons.php:829
383
  msgid ""
384
  "If you can send (to hello@heateor.com) how our plugin is helping your "
387
  msgstr ""
388
 
389
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
390
+ #: ../admin/social_commenting.php:495 ../admin/social_login.php:1033
391
  #: ../admin/like_buttons.php:830
392
  msgid ""
393
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
398
  msgstr ""
399
 
400
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
401
+ #: ../admin/social_commenting.php:496 ../admin/social_login.php:1034
402
  #: ../admin/like_buttons.php:831
403
  msgid ""
404
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
1183
  msgid "bit.ly Login"
1184
  msgstr ""
1185
 
1186
+ #: ../admin/social_sharing.php:1677 ../admin/social_sharing.php:1696
1187
  #, fuzzy, php-format
1188
+ msgid "More details on how to get it <a href=\"%s\" target=\"_blank\">here</a>"
 
 
1189
  msgstr ""
1190
+ "Requirido para a Autenticação Social do Twitter funcionar. Por favor, siga a "
1191
+ "documentação <a href=\\\"%s\\\" target=\\\"_blank\\\">neste link link</a> "
1192
+ "para obter Twitter API Key"
1193
 
1194
  #: ../admin/social_sharing.php:1686 ../admin/like_buttons.php:649
1195
  msgid "bit.ly API Key"
1196
  msgstr "bit.ly API Key"
1197
 
 
 
 
 
 
 
 
 
 
1198
  #: ../admin/social_sharing.php:1705 ../admin/like_buttons.php:668
1199
  msgid "Clear Bitly Cache"
1200
  msgstr "Limpar o Cache Bitly"
1365
  msgstr ""
1366
 
1367
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1368
+ #: ../admin/social_login.php:1014
1369
  msgid "Why is my browser blocking some features of the plugin?"
1370
  msgstr ""
1371
 
2365
  msgid "Social Linking Shortcode"
2366
  msgstr "Shortcode de associação Social"
2367
 
2368
+ #: ../admin/social_login.php:1010
2369
+ msgid "Why is social login not working?"
2370
+ msgstr ""
2371
+
2372
+ #: ../admin/social_login.php:1011
2373
  msgid ""
2374
+ "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2375
+ "belong to the same app"
2376
  msgstr ""
2377
 
2378
+ #: ../admin/social_login.php:1013
2379
+ msgid ""
2380
+ "Why the user is not appearing logged in even after Social Login until the "
2381
+ "webpage is refreshed manually?"
2382
  msgstr ""
2383
 
2384
  #: ../admin/like_buttons.php:16
2530
  "Autentique-se em sua conta bit.ly e navegue para <a href=\\\"%s\\\" target=\\"
2531
  "\"_blank\\\">este link</a> pata obter o username do bit.ly"
2532
 
2533
+ #: ../admin/like_buttons.php:659
2534
+ #, php-format
2535
+ msgid ""
2536
+ "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
2537
+ "\">this link</a> to get your API key"
2538
+ msgstr ""
2539
+ "Autentique-se em sua conta bit.ly e navegue para <a href=\\\"%s\\\" target=\\"
2540
+ "\"_blank\\\">este link</a> para obter a sua API key"
2541
+
2542
  #: ../admin/like_buttons.php:704
2543
  #, php-format
2544
  msgid ""
2890
  msgid "RSS Feed URL:"
2891
  msgstr ""
2892
 
2893
+ #, fuzzy
2894
+ #~ msgid ""
2895
+ #~ "Login to your bit.ly account and navigate to <a href=\"%s\" target="
2896
+ #~ "\"_blank\">this link</a> to get bit.ly login"
2897
+ #~ msgstr ""
2898
+ #~ "Autentique-se em sua conta bit.ly e navegue para <a href=\\\"%s\\\" "
2899
+ #~ "target=\\\"_blank\\\">este link</a> pata obter o username do bit.ly"
2900
+
2901
  #~ msgid ""
2902
  #~ "Paste following url in <strong>AUTHORIZED JAVASCRIPT ORIGINS</strong> and "
2903
  #~ "<strong>AUTHORIZED REDIRECT URI</strong> options at the link mentioned"
languages/super-socializer-ru_RU.mo CHANGED
Binary file
languages/super-socializer-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-03-11 07:30+0530\n"
6
- "PO-Revision-Date: 2018-03-11 07:30+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Russian\n"
9
  "Language: ru_RU\n"
@@ -314,7 +314,7 @@ msgstr "Большой аватар"
314
 
315
  #: ../helper.php:897 ../admin/general_options.php:128
316
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
317
- #: ../admin/social_login.php:1022 ../admin/like_buttons.php:822
318
  msgid "Save Changes"
319
  msgstr "Сохранить изменения"
320
 
@@ -391,14 +391,14 @@ msgstr ""
391
  "Можно указать любые дополнительные правила CSS (без тега &lt; style &gt;)"
392
 
393
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
394
- #: ../admin/social_commenting.php:492 ../admin/social_login.php:1027
395
  #: ../admin/like_buttons.php:827
396
  #, fuzzy
397
  msgid "Instagram Shoutout"
398
  msgstr "Instagram"
399
 
400
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
401
- #: ../admin/social_commenting.php:494 ../admin/social_login.php:1029
402
  #: ../admin/like_buttons.php:829
403
  msgid ""
404
  "If you can send (to hello@heateor.com) how our plugin is helping your "
@@ -407,7 +407,7 @@ msgid ""
407
  msgstr ""
408
 
409
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
410
- #: ../admin/social_commenting.php:495 ../admin/social_login.php:1030
411
  #: ../admin/like_buttons.php:830
412
  msgid ""
413
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
@@ -418,7 +418,7 @@ msgid ""
418
  msgstr ""
419
 
420
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
421
- #: ../admin/social_commenting.php:496 ../admin/social_login.php:1031
422
  #: ../admin/like_buttons.php:831
423
  msgid ""
424
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
@@ -1189,28 +1189,18 @@ msgstr "Мастер управления сокращения ссылок че
1189
  msgid "bit.ly Login"
1190
  msgstr "bit.ly логин"
1191
 
1192
- #: ../admin/social_sharing.php:1677
1193
- #, php-format
1194
- msgid ""
1195
- "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
1196
- "\">this link</a> to get bit.ly login"
1197
  msgstr ""
1198
- "Войти в ваш bit.ly аккаунт и перейдите по <a href=\"%s\" target=\"_blank"
1199
- "\">этой ссылке</a> , чтобы получить имя пользователя bit.ly"
 
1200
 
1201
  #: ../admin/social_sharing.php:1686 ../admin/like_buttons.php:649
1202
  msgid "bit.ly API Key"
1203
  msgstr "bit.ly ключ приложения"
1204
 
1205
- #: ../admin/social_sharing.php:1696 ../admin/like_buttons.php:659
1206
- #, php-format
1207
- msgid ""
1208
- "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
1209
- "\">this link</a> to get your API key"
1210
- msgstr ""
1211
- "Войти в ваш bit.ly аккаунт и перейдите по <a href=\"%s\" target=\"_blank"
1212
- "\">этой ссылке</a> , чтобы получить ваш ключ API"
1213
-
1214
  #: ../admin/social_sharing.php:1705 ../admin/like_buttons.php:668
1215
  msgid "Clear Bitly Cache"
1216
  msgstr "Очистить Bitly кэш"
@@ -1378,7 +1368,7 @@ msgid ""
1378
  msgstr ""
1379
 
1380
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1381
- #: ../admin/social_login.php:1011
1382
  msgid "Why is my browser blocking some features of the plugin?"
1383
  msgstr "Почему мой браузер блокирует некоторые функции плагина?"
1384
 
@@ -2375,16 +2365,23 @@ msgstr "Шорткод и виджет для входа через социал
2375
  msgid "Social Linking Shortcode"
2376
  msgstr "Шорткод социальных ссылок"
2377
 
2378
- #: ../admin/social_login.php:1009
 
 
 
 
 
 
 
 
 
 
 
2379
  msgid ""
2380
  "Why the user is not appearing logged in even after Social Login until the "
2381
  "webpage is refreshed manually?"
2382
  msgstr ""
2383
 
2384
- #: ../admin/social_login.php:1010
2385
- msgid "Why is Facebook login not working?"
2386
- msgstr "Почему Facebook логин не работает?"
2387
-
2388
  #: ../admin/like_buttons.php:16
2389
  msgid "Enable Like Buttons"
2390
  msgstr "Активировать кнопки Нравится"
@@ -2537,6 +2534,15 @@ msgstr ""
2537
  "Войти в ваш bit.ly аккаунт и перейдите по <a href=\"%s\" target=\"_blank"
2538
  "\">этой ссылке</a> , чтобы получить имя пользователя bit.ly"
2539
 
 
 
 
 
 
 
 
 
 
2540
  #: ../admin/like_buttons.php:704
2541
  #, php-format
2542
  msgid ""
@@ -2882,6 +2888,13 @@ msgstr ""
2882
  msgid "RSS Feed URL:"
2883
  msgstr ""
2884
 
 
 
 
 
 
 
 
2885
  #~ msgid ""
2886
  #~ "Paste following url in <strong>AUTHORIZED JAVASCRIPT ORIGINS</strong> and "
2887
  #~ "<strong>AUTHORIZED REDIRECT URI</strong> options at the link mentioned"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-03-16 11:37+0530\n"
6
+ "PO-Revision-Date: 2018-03-16 11:38+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Russian\n"
9
  "Language: ru_RU\n"
314
 
315
  #: ../helper.php:897 ../admin/general_options.php:128
316
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
317
+ #: ../admin/social_login.php:1025 ../admin/like_buttons.php:822
318
  msgid "Save Changes"
319
  msgstr "Сохранить изменения"
320
 
391
  "Можно указать любые дополнительные правила CSS (без тега &lt; style &gt;)"
392
 
393
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
394
+ #: ../admin/social_commenting.php:492 ../admin/social_login.php:1030
395
  #: ../admin/like_buttons.php:827
396
  #, fuzzy
397
  msgid "Instagram Shoutout"
398
  msgstr "Instagram"
399
 
400
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
401
+ #: ../admin/social_commenting.php:494 ../admin/social_login.php:1032
402
  #: ../admin/like_buttons.php:829
403
  msgid ""
404
  "If you can send (to hello@heateor.com) how our plugin is helping your "
407
  msgstr ""
408
 
409
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
410
+ #: ../admin/social_commenting.php:495 ../admin/social_login.php:1033
411
  #: ../admin/like_buttons.php:830
412
  msgid ""
413
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
418
  msgstr ""
419
 
420
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
421
+ #: ../admin/social_commenting.php:496 ../admin/social_login.php:1034
422
  #: ../admin/like_buttons.php:831
423
  msgid ""
424
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
1189
  msgid "bit.ly Login"
1190
  msgstr "bit.ly логин"
1191
 
1192
+ #: ../admin/social_sharing.php:1677 ../admin/social_sharing.php:1696
1193
+ #, fuzzy, php-format
1194
+ msgid "More details on how to get it <a href=\"%s\" target=\"_blank\">here</a>"
 
 
1195
  msgstr ""
1196
+ "Необходимо для входа через Twitter. Пожалуйста, посмотрите документацию <a "
1197
+ "href=\"%s\" target=\"_blank\">здесь</a> для получения ключа приложения "
1198
+ "Twitter."
1199
 
1200
  #: ../admin/social_sharing.php:1686 ../admin/like_buttons.php:649
1201
  msgid "bit.ly API Key"
1202
  msgstr "bit.ly ключ приложения"
1203
 
 
 
 
 
 
 
 
 
 
1204
  #: ../admin/social_sharing.php:1705 ../admin/like_buttons.php:668
1205
  msgid "Clear Bitly Cache"
1206
  msgstr "Очистить Bitly кэш"
1368
  msgstr ""
1369
 
1370
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1371
+ #: ../admin/social_login.php:1014
1372
  msgid "Why is my browser blocking some features of the plugin?"
1373
  msgstr "Почему мой браузер блокирует некоторые функции плагина?"
1374
 
2365
  msgid "Social Linking Shortcode"
2366
  msgstr "Шорткод социальных ссылок"
2367
 
2368
+ #: ../admin/social_login.php:1010
2369
+ #, fuzzy
2370
+ msgid "Why is social login not working?"
2371
+ msgstr "Почему Facebook логин не работает?"
2372
+
2373
+ #: ../admin/social_login.php:1011
2374
+ msgid ""
2375
+ "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2376
+ "belong to the same app"
2377
+ msgstr ""
2378
+
2379
+ #: ../admin/social_login.php:1013
2380
  msgid ""
2381
  "Why the user is not appearing logged in even after Social Login until the "
2382
  "webpage is refreshed manually?"
2383
  msgstr ""
2384
 
 
 
 
 
2385
  #: ../admin/like_buttons.php:16
2386
  msgid "Enable Like Buttons"
2387
  msgstr "Активировать кнопки Нравится"
2534
  "Войти в ваш bit.ly аккаунт и перейдите по <a href=\"%s\" target=\"_blank"
2535
  "\">этой ссылке</a> , чтобы получить имя пользователя bit.ly"
2536
 
2537
+ #: ../admin/like_buttons.php:659
2538
+ #, php-format
2539
+ msgid ""
2540
+ "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
2541
+ "\">this link</a> to get your API key"
2542
+ msgstr ""
2543
+ "Войти в ваш bit.ly аккаунт и перейдите по <a href=\"%s\" target=\"_blank"
2544
+ "\">этой ссылке</a> , чтобы получить ваш ключ API"
2545
+
2546
  #: ../admin/like_buttons.php:704
2547
  #, php-format
2548
  msgid ""
2888
  msgid "RSS Feed URL:"
2889
  msgstr ""
2890
 
2891
+ #~ msgid ""
2892
+ #~ "Login to your bit.ly account and navigate to <a href=\"%s\" target="
2893
+ #~ "\"_blank\">this link</a> to get bit.ly login"
2894
+ #~ msgstr ""
2895
+ #~ "Войти в ваш bit.ly аккаунт и перейдите по <a href=\"%s\" target=\"_blank"
2896
+ #~ "\">этой ссылке</a> , чтобы получить имя пользователя bit.ly"
2897
+
2898
  #~ msgid ""
2899
  #~ "Paste following url in <strong>AUTHORIZED JAVASCRIPT ORIGINS</strong> and "
2900
  #~ "<strong>AUTHORIZED REDIRECT URI</strong> options at the link mentioned"
languages/super-socializer-uk.mo CHANGED
Binary file
languages/super-socializer-uk.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-03-11 07:30+0530\n"
6
- "PO-Revision-Date: 2018-03-11 07:30+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Ukrainian\n"
9
  "Language: uk\n"
@@ -316,7 +316,7 @@ msgstr "Великий аватар"
316
 
317
  #: ../helper.php:897 ../admin/general_options.php:128
318
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
319
- #: ../admin/social_login.php:1022 ../admin/like_buttons.php:822
320
  msgid "Save Changes"
321
  msgstr "Зберегти налаштування"
322
 
@@ -393,14 +393,14 @@ msgstr ""
393
  "Можна вказати будь-які додаткові правила CSS (без тега & lt; style & gt;)"
394
 
395
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
396
- #: ../admin/social_commenting.php:492 ../admin/social_login.php:1027
397
  #: ../admin/like_buttons.php:827
398
  #, fuzzy
399
  msgid "Instagram Shoutout"
400
  msgstr "Instagram"
401
 
402
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
403
- #: ../admin/social_commenting.php:494 ../admin/social_login.php:1029
404
  #: ../admin/like_buttons.php:829
405
  msgid ""
406
  "If you can send (to hello@heateor.com) how our plugin is helping your "
@@ -409,7 +409,7 @@ msgid ""
409
  msgstr ""
410
 
411
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
412
- #: ../admin/social_commenting.php:495 ../admin/social_login.php:1030
413
  #: ../admin/like_buttons.php:830
414
  msgid ""
415
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
@@ -420,7 +420,7 @@ msgid ""
420
  msgstr ""
421
 
422
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
423
- #: ../admin/social_commenting.php:496 ../admin/social_login.php:1031
424
  #: ../admin/like_buttons.php:831
425
  msgid ""
426
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
@@ -1191,28 +1191,17 @@ msgstr "Майстер управління скорочення посилан
1191
  msgid "bit.ly Login"
1192
  msgstr "bit.ly Логін"
1193
 
1194
- #: ../admin/social_sharing.php:1677
1195
- #, php-format
1196
- msgid ""
1197
- "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
1198
- "\">this link</a> to get bit.ly login"
1199
  msgstr ""
1200
- "Увійти в ваш bit.ly аккаунт і перейдіть по <a href=\"%s\" target=\"_blank\"> "
1201
- "цьому посиланню </a>, щоб отримати ім'я користувача bit.ly"
1202
 
1203
  #: ../admin/social_sharing.php:1686 ../admin/like_buttons.php:649
1204
  msgid "bit.ly API Key"
1205
  msgstr "bit.ly ключ додатка"
1206
 
1207
- #: ../admin/social_sharing.php:1696 ../admin/like_buttons.php:659
1208
- #, php-format
1209
- msgid ""
1210
- "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
1211
- "\">this link</a> to get your API key"
1212
- msgstr ""
1213
- "Увійти в ваш bit.ly аккаунт і перейдіть по <a href=\"%s\" target=\"_blank\"> "
1214
- "цьому посиланню </a>, щоб отримати ваш ключ API"
1215
-
1216
  #: ../admin/social_sharing.php:1705 ../admin/like_buttons.php:668
1217
  msgid "Clear Bitly Cache"
1218
  msgstr "Очистити Bitly кеш"
@@ -1381,7 +1370,7 @@ msgid ""
1381
  msgstr ""
1382
 
1383
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1384
- #: ../admin/social_login.php:1011
1385
  msgid "Why is my browser blocking some features of the plugin?"
1386
  msgstr "Чому мій браузер блокує деякі функції плагіна?"
1387
 
@@ -2368,16 +2357,23 @@ msgstr "Шорткод і віджет для входу через соцмер
2368
  msgid "Social Linking Shortcode"
2369
  msgstr "Шорткод соціальних посилань"
2370
 
2371
- #: ../admin/social_login.php:1009
 
 
 
 
 
 
 
 
 
 
 
2372
  msgid ""
2373
  "Why the user is not appearing logged in even after Social Login until the "
2374
  "webpage is refreshed manually?"
2375
  msgstr ""
2376
 
2377
- #: ../admin/social_login.php:1010
2378
- msgid "Why is Facebook login not working?"
2379
- msgstr "Чому Facebook Логін не працює?"
2380
-
2381
  #: ../admin/like_buttons.php:16
2382
  msgid "Enable Like Buttons"
2383
  msgstr "Активувати кнопки Подобається"
@@ -2530,6 +2526,15 @@ msgstr ""
2530
  "Увійти в ваш bit.ly аккаунт і перейдіть за <a href=\"%s\" target=\"_blank\"> "
2531
  "цим посиланням </a>, щоб отримати ім'я користувача bit.ly"
2532
 
 
 
 
 
 
 
 
 
 
2533
  #: ../admin/like_buttons.php:704
2534
  #, php-format
2535
  msgid ""
@@ -2875,6 +2880,13 @@ msgstr ""
2875
  msgid "RSS Feed URL:"
2876
  msgstr ""
2877
 
 
 
 
 
 
 
 
2878
  #~ msgid ""
2879
  #~ "Paste following url in <strong>AUTHORIZED JAVASCRIPT ORIGINS</strong> and "
2880
  #~ "<strong>AUTHORIZED REDIRECT URI</strong> options at the link mentioned"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-03-16 11:37+0530\n"
6
+ "PO-Revision-Date: 2018-03-16 11:37+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Ukrainian\n"
9
  "Language: uk\n"
316
 
317
  #: ../helper.php:897 ../admin/general_options.php:128
318
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
319
+ #: ../admin/social_login.php:1025 ../admin/like_buttons.php:822
320
  msgid "Save Changes"
321
  msgstr "Зберегти налаштування"
322
 
393
  "Можна вказати будь-які додаткові правила CSS (без тега & lt; style & gt;)"
394
 
395
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
396
+ #: ../admin/social_commenting.php:492 ../admin/social_login.php:1030
397
  #: ../admin/like_buttons.php:827
398
  #, fuzzy
399
  msgid "Instagram Shoutout"
400
  msgstr "Instagram"
401
 
402
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
403
+ #: ../admin/social_commenting.php:494 ../admin/social_login.php:1032
404
  #: ../admin/like_buttons.php:829
405
  msgid ""
406
  "If you can send (to hello@heateor.com) how our plugin is helping your "
409
  msgstr ""
410
 
411
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
412
+ #: ../admin/social_commenting.php:495 ../admin/social_login.php:1033
413
  #: ../admin/like_buttons.php:830
414
  msgid ""
415
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
420
  msgstr ""
421
 
422
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
423
+ #: ../admin/social_commenting.php:496 ../admin/social_login.php:1034
424
  #: ../admin/like_buttons.php:831
425
  msgid ""
426
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
1191
  msgid "bit.ly Login"
1192
  msgstr "bit.ly Логін"
1193
 
1194
+ #: ../admin/social_sharing.php:1677 ../admin/social_sharing.php:1696
1195
+ #, fuzzy, php-format
1196
+ msgid "More details on how to get it <a href=\"%s\" target=\"_blank\">here</a>"
 
 
1197
  msgstr ""
1198
+ "Необхідно для входу через Twitter. Будь ласка, подивіться документацію <a "
1199
+ "href=\"%s\" target=\"_blank\"> тут </a> для отримання ключа додатку Twitter."
1200
 
1201
  #: ../admin/social_sharing.php:1686 ../admin/like_buttons.php:649
1202
  msgid "bit.ly API Key"
1203
  msgstr "bit.ly ключ додатка"
1204
 
 
 
 
 
 
 
 
 
 
1205
  #: ../admin/social_sharing.php:1705 ../admin/like_buttons.php:668
1206
  msgid "Clear Bitly Cache"
1207
  msgstr "Очистити Bitly кеш"
1370
  msgstr ""
1371
 
1372
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1373
+ #: ../admin/social_login.php:1014
1374
  msgid "Why is my browser blocking some features of the plugin?"
1375
  msgstr "Чому мій браузер блокує деякі функції плагіна?"
1376
 
2357
  msgid "Social Linking Shortcode"
2358
  msgstr "Шорткод соціальних посилань"
2359
 
2360
+ #: ../admin/social_login.php:1010
2361
+ #, fuzzy
2362
+ msgid "Why is social login not working?"
2363
+ msgstr "Чому Facebook Логін не працює?"
2364
+
2365
+ #: ../admin/social_login.php:1011
2366
+ msgid ""
2367
+ "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2368
+ "belong to the same app"
2369
+ msgstr ""
2370
+
2371
+ #: ../admin/social_login.php:1013
2372
  msgid ""
2373
  "Why the user is not appearing logged in even after Social Login until the "
2374
  "webpage is refreshed manually?"
2375
  msgstr ""
2376
 
 
 
 
 
2377
  #: ../admin/like_buttons.php:16
2378
  msgid "Enable Like Buttons"
2379
  msgstr "Активувати кнопки Подобається"
2526
  "Увійти в ваш bit.ly аккаунт і перейдіть за <a href=\"%s\" target=\"_blank\"> "
2527
  "цим посиланням </a>, щоб отримати ім'я користувача bit.ly"
2528
 
2529
+ #: ../admin/like_buttons.php:659
2530
+ #, php-format
2531
+ msgid ""
2532
+ "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
2533
+ "\">this link</a> to get your API key"
2534
+ msgstr ""
2535
+ "Увійти в ваш bit.ly аккаунт і перейдіть по <a href=\"%s\" target=\"_blank\"> "
2536
+ "цьому посиланню </a>, щоб отримати ваш ключ API"
2537
+
2538
  #: ../admin/like_buttons.php:704
2539
  #, php-format
2540
  msgid ""
2880
  msgid "RSS Feed URL:"
2881
  msgstr ""
2882
 
2883
+ #~ msgid ""
2884
+ #~ "Login to your bit.ly account and navigate to <a href=\"%s\" target="
2885
+ #~ "\"_blank\">this link</a> to get bit.ly login"
2886
+ #~ msgstr ""
2887
+ #~ "Увійти в ваш bit.ly аккаунт і перейдіть по <a href=\"%s\" target=\"_blank"
2888
+ #~ "\"> цьому посиланню </a>, щоб отримати ім'я користувача bit.ly"
2889
+
2890
  #~ msgid ""
2891
  #~ "Paste following url in <strong>AUTHORIZED JAVASCRIPT ORIGINS</strong> and "
2892
  #~ "<strong>AUTHORIZED REDIRECT URI</strong> options at the link mentioned"
languages/super-socializer-zh_CN.mo CHANGED
Binary file
languages/super-socializer-zh_CN.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-03-11 07:29+0530\n"
6
- "PO-Revision-Date: 2018-03-11 07:30+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: zh_CN\n"
@@ -295,7 +295,7 @@ msgstr "大头像"
295
 
296
  #: ../helper.php:897 ../admin/general_options.php:128
297
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
298
- #: ../admin/social_login.php:1022 ../admin/like_buttons.php:822
299
  msgid "Save Changes"
300
  msgstr "保存更改"
301
 
@@ -358,14 +358,14 @@ msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
358
  msgstr "您可以指定任何额外的 CSS 规则(无需 &lt;style&gt; tag)"
359
 
360
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
361
- #: ../admin/social_commenting.php:492 ../admin/social_login.php:1027
362
  #: ../admin/like_buttons.php:827
363
  #, fuzzy
364
  msgid "Instagram Shoutout"
365
  msgstr "Instagram"
366
 
367
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
368
- #: ../admin/social_commenting.php:494 ../admin/social_login.php:1029
369
  #: ../admin/like_buttons.php:829
370
  msgid ""
371
  "If you can send (to hello@heateor.com) how our plugin is helping your "
@@ -374,7 +374,7 @@ msgid ""
374
  msgstr ""
375
 
376
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
377
- #: ../admin/social_commenting.php:495 ../admin/social_login.php:1030
378
  #: ../admin/like_buttons.php:830
379
  msgid ""
380
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
@@ -385,7 +385,7 @@ msgid ""
385
  msgstr ""
386
 
387
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
388
- #: ../admin/social_commenting.php:496 ../admin/social_login.php:1031
389
  #: ../admin/like_buttons.php:831
390
  msgid ""
391
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
@@ -1120,28 +1120,17 @@ msgstr "主控件以启用 bit.ly url 短链共享"
1120
  msgid "bit.ly Login"
1121
  msgstr ""
1122
 
1123
- #: ../admin/social_sharing.php:1677
1124
  #, fuzzy, php-format
1125
- msgid ""
1126
- "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
1127
- "\">this link</a> to get bit.ly login"
1128
  msgstr ""
1129
- "登录到您的 bit.ly 帐户并到<a href=“%s” target=“_blank”>链接</a>以获得有关 "
1130
- "bit.ly 用户名"
1131
 
1132
  #: ../admin/social_sharing.php:1686 ../admin/like_buttons.php:649
1133
  msgid "bit.ly API Key"
1134
  msgstr "bit.ly API 密钥"
1135
 
1136
- #: ../admin/social_sharing.php:1696 ../admin/like_buttons.php:659
1137
- #, php-format
1138
- msgid ""
1139
- "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
1140
- "\">this link</a> to get your API key"
1141
- msgstr ""
1142
- "登录到您的 bit.ly 帐户并到<a href=“%s” target=“_blank”>链接</a>以获得有关您"
1143
- "的 API 密钥"
1144
-
1145
  #: ../admin/social_sharing.php:1705 ../admin/like_buttons.php:668
1146
  msgid "Clear Bitly Cache"
1147
  msgstr ""
@@ -1306,7 +1295,7 @@ msgid ""
1306
  msgstr ""
1307
 
1308
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1309
- #: ../admin/social_login.php:1011
1310
  msgid "Why is my browser blocking some features of the plugin?"
1311
  msgstr ""
1312
 
@@ -2216,14 +2205,20 @@ msgstr "社会化登录简码&小工具"
2216
  msgid "Social Linking Shortcode"
2217
  msgstr "社会链接简码"
2218
 
2219
- #: ../admin/social_login.php:1009
 
 
 
 
2220
  msgid ""
2221
- "Why the user is not appearing logged in even after Social Login until the "
2222
- "webpage is refreshed manually?"
2223
  msgstr ""
2224
 
2225
- #: ../admin/social_login.php:1010
2226
- msgid "Why is Facebook login not working?"
 
 
2227
  msgstr ""
2228
 
2229
  #: ../admin/like_buttons.php:16
@@ -2360,6 +2355,15 @@ msgstr ""
2360
  "登录到您的 bit.ly 帐户并到<a href=“%s” target=“_blank”>链接</a>以获得有关 "
2361
  "bit.ly 用户名"
2362
 
 
 
 
 
 
 
 
 
 
2363
  #: ../admin/like_buttons.php:704
2364
  #, php-format
2365
  msgid ""
@@ -2694,6 +2698,14 @@ msgstr ""
2694
  msgid "RSS Feed URL:"
2695
  msgstr ""
2696
 
 
 
 
 
 
 
 
 
2697
  #~ msgid ""
2698
  #~ "Paste following url in <strong>AUTHORIZED JAVASCRIPT ORIGINS</strong> and "
2699
  #~ "<strong>AUTHORIZED REDIRECT URI</strong> options at the link mentioned"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-03-16 11:37+0530\n"
6
+ "PO-Revision-Date: 2018-03-16 11:37+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: zh_CN\n"
295
 
296
  #: ../helper.php:897 ../admin/general_options.php:128
297
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
298
+ #: ../admin/social_login.php:1025 ../admin/like_buttons.php:822
299
  msgid "Save Changes"
300
  msgstr "保存更改"
301
 
358
  msgstr "您可以指定任何额外的 CSS 规则(无需 &lt;style&gt; tag)"
359
 
360
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
361
+ #: ../admin/social_commenting.php:492 ../admin/social_login.php:1030
362
  #: ../admin/like_buttons.php:827
363
  #, fuzzy
364
  msgid "Instagram Shoutout"
365
  msgstr "Instagram"
366
 
367
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
368
+ #: ../admin/social_commenting.php:494 ../admin/social_login.php:1032
369
  #: ../admin/like_buttons.php:829
370
  msgid ""
371
  "If you can send (to hello@heateor.com) how our plugin is helping your "
374
  msgstr ""
375
 
376
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
377
+ #: ../admin/social_commenting.php:495 ../admin/social_login.php:1033
378
  #: ../admin/like_buttons.php:830
379
  msgid ""
380
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
385
  msgstr ""
386
 
387
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
388
+ #: ../admin/social_commenting.php:496 ../admin/social_login.php:1034
389
  #: ../admin/like_buttons.php:831
390
  msgid ""
391
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
1120
  msgid "bit.ly Login"
1121
  msgstr ""
1122
 
1123
+ #: ../admin/social_sharing.php:1677 ../admin/social_sharing.php:1696
1124
  #, fuzzy, php-format
1125
+ msgid "More details on how to get it <a href=\"%s\" target=\"_blank\">here</a>"
 
 
1126
  msgstr ""
1127
+ "需要Twitter社交登录。请按照在<a href=“%s” target=“_blank”>的链接</a>得到"
1128
+ "Twitter的API密钥"
1129
 
1130
  #: ../admin/social_sharing.php:1686 ../admin/like_buttons.php:649
1131
  msgid "bit.ly API Key"
1132
  msgstr "bit.ly API 密钥"
1133
 
 
 
 
 
 
 
 
 
 
1134
  #: ../admin/social_sharing.php:1705 ../admin/like_buttons.php:668
1135
  msgid "Clear Bitly Cache"
1136
  msgstr ""
1295
  msgstr ""
1296
 
1297
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1298
+ #: ../admin/social_login.php:1014
1299
  msgid "Why is my browser blocking some features of the plugin?"
1300
  msgstr ""
1301
 
2205
  msgid "Social Linking Shortcode"
2206
  msgstr "社会链接简码"
2207
 
2208
+ #: ../admin/social_login.php:1010
2209
+ msgid "Why is social login not working?"
2210
+ msgstr ""
2211
+
2212
+ #: ../admin/social_login.php:1011
2213
  msgid ""
2214
+ "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2215
+ "belong to the same app"
2216
  msgstr ""
2217
 
2218
+ #: ../admin/social_login.php:1013
2219
+ msgid ""
2220
+ "Why the user is not appearing logged in even after Social Login until the "
2221
+ "webpage is refreshed manually?"
2222
  msgstr ""
2223
 
2224
  #: ../admin/like_buttons.php:16
2355
  "登录到您的 bit.ly 帐户并到<a href=“%s” target=“_blank”>链接</a>以获得有关 "
2356
  "bit.ly 用户名"
2357
 
2358
+ #: ../admin/like_buttons.php:659
2359
+ #, php-format
2360
+ msgid ""
2361
+ "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
2362
+ "\">this link</a> to get your API key"
2363
+ msgstr ""
2364
+ "登录到您的 bit.ly 帐户并到<a href=“%s” target=“_blank”>链接</a>以获得有关您"
2365
+ "的 API 密钥"
2366
+
2367
  #: ../admin/like_buttons.php:704
2368
  #, php-format
2369
  msgid ""
2698
  msgid "RSS Feed URL:"
2699
  msgstr ""
2700
 
2701
+ #, fuzzy
2702
+ #~ msgid ""
2703
+ #~ "Login to your bit.ly account and navigate to <a href=\"%s\" target="
2704
+ #~ "\"_blank\">this link</a> to get bit.ly login"
2705
+ #~ msgstr ""
2706
+ #~ "登录到您的 bit.ly 帐户并到<a href=“%s” target=“_blank”>链接</a>以获得有关 "
2707
+ #~ "bit.ly 用户名"
2708
+
2709
  #~ msgid ""
2710
  #~ "Paste following url in <strong>AUTHORIZED JAVASCRIPT ORIGINS</strong> and "
2711
  #~ "<strong>AUTHORIZED REDIRECT URI</strong> options at the link mentioned"
languages/super-socializer.pot CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-03-11 07:32+0530\n"
6
- "PO-Revision-Date: 2018-03-11 07:32+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: en_IN\n"
@@ -286,7 +286,7 @@ msgstr ""
286
 
287
  #: ../helper.php:897 ../admin/general_options.php:128
288
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
289
- #: ../admin/social_login.php:1022 ../admin/like_buttons.php:822
290
  msgid "Save Changes"
291
  msgstr ""
292
 
@@ -349,13 +349,13 @@ msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
349
  msgstr ""
350
 
351
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
352
- #: ../admin/social_commenting.php:492 ../admin/social_login.php:1027
353
  #: ../admin/like_buttons.php:827
354
  msgid "Instagram Shoutout"
355
  msgstr ""
356
 
357
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
358
- #: ../admin/social_commenting.php:494 ../admin/social_login.php:1029
359
  #: ../admin/like_buttons.php:829
360
  msgid ""
361
  "If you can send (to hello@heateor.com) how our plugin is helping your "
@@ -364,7 +364,7 @@ msgid ""
364
  msgstr ""
365
 
366
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
367
- #: ../admin/social_commenting.php:495 ../admin/social_login.php:1030
368
  #: ../admin/like_buttons.php:830
369
  msgid ""
370
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
@@ -375,7 +375,7 @@ msgid ""
375
  msgstr ""
376
 
377
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
378
- #: ../admin/social_commenting.php:496 ../admin/social_login.php:1031
379
  #: ../admin/like_buttons.php:831
380
  msgid ""
381
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
@@ -1081,24 +1081,15 @@ msgstr ""
1081
  msgid "bit.ly Login"
1082
  msgstr ""
1083
 
1084
- #: ../admin/social_sharing.php:1677
1085
  #, php-format
1086
- msgid ""
1087
- "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
1088
- "\">this link</a> to get bit.ly login"
1089
  msgstr ""
1090
 
1091
  #: ../admin/social_sharing.php:1686 ../admin/like_buttons.php:649
1092
  msgid "bit.ly API Key"
1093
  msgstr ""
1094
 
1095
- #: ../admin/social_sharing.php:1696 ../admin/like_buttons.php:659
1096
- #, php-format
1097
- msgid ""
1098
- "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
1099
- "\">this link</a> to get your API key"
1100
- msgstr ""
1101
-
1102
  #: ../admin/social_sharing.php:1705 ../admin/like_buttons.php:668
1103
  msgid "Clear Bitly Cache"
1104
  msgstr ""
@@ -1252,7 +1243,7 @@ msgid ""
1252
  msgstr ""
1253
 
1254
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1255
- #: ../admin/social_login.php:1011
1256
  msgid "Why is my browser blocking some features of the plugin?"
1257
  msgstr ""
1258
 
@@ -2091,14 +2082,20 @@ msgstr ""
2091
  msgid "Social Linking Shortcode"
2092
  msgstr ""
2093
 
2094
- #: ../admin/social_login.php:1009
 
 
 
 
2095
  msgid ""
2096
- "Why the user is not appearing logged in even after Social Login until the "
2097
- "webpage is refreshed manually?"
2098
  msgstr ""
2099
 
2100
- #: ../admin/social_login.php:1010
2101
- msgid "Why is Facebook login not working?"
 
 
2102
  msgstr ""
2103
 
2104
  #: ../admin/like_buttons.php:16
@@ -2230,6 +2227,13 @@ msgid ""
2230
  "\">this link</a> to get bit.ly username"
2231
  msgstr ""
2232
 
 
 
 
 
 
 
 
2233
  #: ../admin/like_buttons.php:704
2234
  #, php-format
2235
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-03-16 11:40+0530\n"
6
+ "PO-Revision-Date: 2018-03-16 11:40+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: en_IN\n"
286
 
287
  #: ../helper.php:897 ../admin/general_options.php:128
288
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
289
+ #: ../admin/social_login.php:1025 ../admin/like_buttons.php:822
290
  msgid "Save Changes"
291
  msgstr ""
292
 
349
  msgstr ""
350
 
351
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
352
+ #: ../admin/social_commenting.php:492 ../admin/social_login.php:1030
353
  #: ../admin/like_buttons.php:827
354
  msgid "Instagram Shoutout"
355
  msgstr ""
356
 
357
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
358
+ #: ../admin/social_commenting.php:494 ../admin/social_login.php:1032
359
  #: ../admin/like_buttons.php:829
360
  msgid ""
361
  "If you can send (to hello@heateor.com) how our plugin is helping your "
364
  msgstr ""
365
 
366
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
367
+ #: ../admin/social_commenting.php:495 ../admin/social_login.php:1033
368
  #: ../admin/like_buttons.php:830
369
  msgid ""
370
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
375
  msgstr ""
376
 
377
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
378
+ #: ../admin/social_commenting.php:496 ../admin/social_login.php:1034
379
  #: ../admin/like_buttons.php:831
380
  msgid ""
381
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
1081
  msgid "bit.ly Login"
1082
  msgstr ""
1083
 
1084
+ #: ../admin/social_sharing.php:1677 ../admin/social_sharing.php:1696
1085
  #, php-format
1086
+ msgid "More details on how to get it <a href=\"%s\" target=\"_blank\">here</a>"
 
 
1087
  msgstr ""
1088
 
1089
  #: ../admin/social_sharing.php:1686 ../admin/like_buttons.php:649
1090
  msgid "bit.ly API Key"
1091
  msgstr ""
1092
 
 
 
 
 
 
 
 
1093
  #: ../admin/social_sharing.php:1705 ../admin/like_buttons.php:668
1094
  msgid "Clear Bitly Cache"
1095
  msgstr ""
1243
  msgstr ""
1244
 
1245
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1246
+ #: ../admin/social_login.php:1014
1247
  msgid "Why is my browser blocking some features of the plugin?"
1248
  msgstr ""
1249
 
2082
  msgid "Social Linking Shortcode"
2083
  msgstr ""
2084
 
2085
+ #: ../admin/social_login.php:1010
2086
+ msgid "Why is social login not working?"
2087
+ msgstr ""
2088
+
2089
+ #: ../admin/social_login.php:1011
2090
  msgid ""
2091
+ "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2092
+ "belong to the same app"
2093
  msgstr ""
2094
 
2095
+ #: ../admin/social_login.php:1013
2096
+ msgid ""
2097
+ "Why the user is not appearing logged in even after Social Login until the "
2098
+ "webpage is refreshed manually?"
2099
  msgstr ""
2100
 
2101
  #: ../admin/like_buttons.php:16
2227
  "\">this link</a> to get bit.ly username"
2228
  msgstr ""
2229
 
2230
+ #: ../admin/like_buttons.php:659
2231
+ #, php-format
2232
+ msgid ""
2233
+ "Login to your bit.ly account and navigate to <a href=\"%s\" target=\"_blank"
2234
+ "\">this link</a> to get your API key"
2235
+ msgstr ""
2236
+
2237
  #: ../admin/like_buttons.php:704
2238
  #, php-format
2239
  msgid ""
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.heateor.com/donate?action=Super+Socializer
4
  Tags: social login, social share, social commenting, social comments, social plugin, profile data, social analytics, online identity, social profile storage, single sign-on, social media follow, facebook login
5
  Requires at least: 2.5.0
6
  Tested up to: 4.9.4
7
- Stable tag: 7.11.5
8
  License: GPLv2 or later
9
 
10
  The unique Social Plugin to let you integrate Social Login, Social Share, Social Comments and Social Media follow at your website
@@ -209,6 +209,12 @@ Yes, we can help you with it. Just drop an email at support[ at ]heateor[ dot ]c
209
  8. **Social Commenting**: Disqus Commenting selected
210
 
211
  == Changelog ==
 
 
 
 
 
 
212
  = 7.11.5 =
213
  * [Bugfix] Social Login was not working in the cases where website homepage was different from the WordPress installation directory
214
  * [Bugfix] Fixed the AMP validation error being generated with <a href="https://wordpress.org/plugins/accelerated-mobile-pages/" target="_blank">AMPforWP</a> plugin due to "super-socializer-data-href" attribute
@@ -1467,4 +1473,10 @@ Yes, we can help you with it. Just drop an email at support[ at ]heateor[ dot ]c
1467
  * [Bugfix] Fixed the AMP validation error being generated with <a href="https://wordpress.org/plugins/accelerated-mobile-pages/" target="_blank">AMPforWP</a> plugin due to "super-socializer-data-href" attribute
1468
  * [Bugfix] PHP notices were being generated with AMP enabled, in WordPress debugging mode if official like buttons were enabled with share icons
1469
  * [Bugfix] GentleReader icon was not appearing in AMP
1470
- * [Improvement] Floating share bar was appearing as static vertical bar in AMP. It will not appear in AMP
 
 
 
 
 
 
4
  Tags: social login, social share, social commenting, social comments, social plugin, profile data, social analytics, online identity, social profile storage, single sign-on, social media follow, facebook login
5
  Requires at least: 2.5.0
6
  Tested up to: 4.9.4
7
+ Stable tag: 7.11.6
8
  License: GPLv2 or later
9
 
10
  The unique Social Plugin to let you integrate Social Login, Social Share, Social Comments and Social Media follow at your website
209
  8. **Social Commenting**: Disqus Commenting selected
210
 
211
  == Changelog ==
212
+ = 7.11.6 =
213
+ * [Improvement] Link to get bit.ly login and API key was broken at the plugin options page in admin
214
+ * [Bugfix] PHP error was being generated with Yoast SEO plugin active, in a few cases
215
+ * [Bugfix] New users were seeing a not so user-friendly message in social login popup when user registration via social login kept disabled
216
+ * [Bugfix] "Pinterest Save" official share button was appearing misaligned in the standard social share bar
217
+
218
  = 7.11.5 =
219
  * [Bugfix] Social Login was not working in the cases where website homepage was different from the WordPress installation directory
220
  * [Bugfix] Fixed the AMP validation error being generated with <a href="https://wordpress.org/plugins/accelerated-mobile-pages/" target="_blank">AMPforWP</a> plugin due to "super-socializer-data-href" attribute
1473
  * [Bugfix] Fixed the AMP validation error being generated with <a href="https://wordpress.org/plugins/accelerated-mobile-pages/" target="_blank">AMPforWP</a> plugin due to "super-socializer-data-href" attribute
1474
  * [Bugfix] PHP notices were being generated with AMP enabled, in WordPress debugging mode if official like buttons were enabled with share icons
1475
  * [Bugfix] GentleReader icon was not appearing in AMP
1476
+ * [Improvement] Floating share bar was appearing as static vertical bar in AMP. It will not appear in AMP
1477
+
1478
+ = 7.11.6 =
1479
+ * [Improvement] Link to get bit.ly login and API key was broken at the plugin options page in admin
1480
+ * [Bugfix] PHP error was being generated with Yoast SEO plugin active, in a few cases
1481
+ * [Bugfix] New users were seeing a not so user-friendly message in social login popup when user registration via social login kept disabled
1482
+ * [Bugfix] "Pinterest Save" official share button was appearing misaligned in the standard social share bar
super_socializer.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Super Socializer
4
  Plugin URI: https://super-socializer-wordpress.heateor.com
5
  Description: A complete 360 degree solution to provide all the social features like Social Login, Social Commenting, Social Sharing, Social Media follow and more.
6
- Version: 7.11.5
7
  Author: Team Heateor
8
  Author URI: https://www.heateor.com
9
  Text Domain: super-socializer
@@ -11,7 +11,7 @@ Domain Path: /languages
11
  License: GPL2+
12
  */
13
  defined('ABSPATH') or die("Cheating........Uh!!");
14
- define('THE_CHAMP_SS_VERSION', '7.11.5');
15
 
16
  require 'helper.php';
17
 
3
  Plugin Name: Super Socializer
4
  Plugin URI: https://super-socializer-wordpress.heateor.com
5
  Description: A complete 360 degree solution to provide all the social features like Social Login, Social Commenting, Social Sharing, Social Media follow and more.
6
+ Version: 7.11.6
7
  Author: Team Heateor
8
  Author URI: https://www.heateor.com
9
  Text Domain: super-socializer
11
  License: GPL2+
12
  */
13
  defined('ABSPATH') or die("Cheating........Uh!!");
14
+ define('THE_CHAMP_SS_VERSION', '7.11.6');
15
 
16
  require 'helper.php';
17