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

Version Description

  • [New] Added option to turn OFF GDPR opt-in for social login
  • [Bugfix] GDPR opt-in was not appearing for social account linking icons
  • [Bugfix] Users were able to social-login with opt-in unchecked with Social Login Buttons add-on active
  • [Improvement] Code improvement
  • [Improvement] Compatibility with version 1.1.7 of Facebook Comments Notifier and version 1.2.5 of Facebook Comments Moderation
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.13
Comparing to
See all releases

Code changes from version 7.11.12 to 7.11.13

admin/social_login.php CHANGED
@@ -980,57 +980,77 @@
980
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
981
  <tr>
982
  <th>
983
- <img id="the_champ_privacy_policy_optin_text_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
984
- <label for="the_champ_privacy_policy_optin_text"><?php _e("Opt-in text", 'super-socializer'); ?></label>
985
  </th>
986
  <td>
987
- <textarea rows="7" cols="63" id="the_champ_privacy_policy_optin_text" name="the_champ_login[privacy_policy_optin_text]"><?php echo isset( $theChampLoginOptions['privacy_policy_optin_text'] ) ? $theChampLoginOptions['privacy_policy_optin_text'] : '' ?></textarea>
988
  </td>
989
  </tr>
990
-
991
- <tr class="the_champ_help_content" id="the_champ_privacy_policy_optin_text_help_cont">
992
  <td colspan="2">
993
  <div>
994
- <?php _e('Text for the opt-in appearing above the social login icons', 'super-socializer') ?>
995
  </div>
996
  </td>
997
  </tr>
998
 
999
- <tr>
1000
- <th>
1001
- <img id="the_champ_privacy_ppu_placeholder_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1002
- <label><?php _e("Text to link to Privacy Policy page", 'super-socializer'); ?></label>
1003
- </th>
1004
- <td>
1005
- <input id="the_champ_privacy_ppu_placeholder" name="the_champ_login[ppu_placeholder]" type="text" value="<?php echo $theChampLoginOptions['ppu_placeholder'] ?>" />
1006
- </td>
1007
- </tr>
 
1008
 
1009
- <tr class="the_champ_help_content" id="the_champ_privacy_ppu_placeholder_help_cont">
1010
- <td colspan="2">
1011
- <div>
1012
- <?php _e('Word(s) in the opt-in text to be linked to privacy policy page', 'super-socializer') ?>
1013
- </div>
1014
- </td>
1015
- </tr>
1016
 
1017
- <tr>
1018
- <th>
1019
- <img id="the_champ_privacy_policy_url_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1020
- <label><?php _e("Privacy Policy Url", 'super-socializer'); ?></label>
1021
- </th>
1022
- <td>
1023
- <input id="the_champ_privacy_policy_url" name="the_champ_login[privacy_policy_url]" type="text" value="<?php echo $theChampLoginOptions['privacy_policy_url'] ?>" />
1024
- </td>
1025
- </tr>
1026
 
1027
- <tr class="the_champ_help_content" id="the_champ_privacy_policy_url_help_cont">
1028
- <td colspan="2">
1029
- <div>
1030
- <?php _e('Url of the privacy policy page of your website', 'super-socializer') ?>
1031
- </div>
1032
- </td>
1033
- </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1034
  </table>
1035
  </div>
1036
  </div>
980
  <table width="100%" border="0" cellspacing="0" cellpadding="0" class="form-table editcomment menu_content_table">
981
  <tr>
982
  <th>
983
+ <img id="the_champ_gdpr_enable_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
984
+ <label for="the_champ_gdpr_enable"><?php _e("Enable GDPR opt-in", 'super-socializer'); ?></label>
985
  </th>
986
  <td>
987
+ <input id="the_champ_gdpr_enable" name="the_champ_login[gdpr_enable]" type="checkbox" <?php echo isset($theChampLoginOptions['gdpr_enable']) ? 'checked = "checked"' : '';?> value="1" />
988
  </td>
989
  </tr>
990
+
991
+ <tr class="the_champ_help_content" id="the_champ_gdpr_enable_help_cont">
992
  <td colspan="2">
993
  <div>
994
+ <?php _e('Enable it to show GDPR opt-in for social login and social account linking', 'super-socializer') ?>
995
  </div>
996
  </td>
997
  </tr>
998
 
999
+ <tbody id="the_champ_gdpr_options" <?php echo !isset($theChampLoginOptions['gdpr_enable']) ? 'style = "display: none"' : '';?> >
1000
+ <tr>
1001
+ <th>
1002
+ <img id="the_champ_privacy_policy_optin_text_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1003
+ <label for="the_champ_privacy_policy_optin_text"><?php _e("Opt-in text", 'super-socializer'); ?></label>
1004
+ </th>
1005
+ <td>
1006
+ <textarea rows="7" cols="63" id="the_champ_privacy_policy_optin_text" name="the_champ_login[privacy_policy_optin_text]"><?php echo isset( $theChampLoginOptions['privacy_policy_optin_text'] ) ? $theChampLoginOptions['privacy_policy_optin_text'] : '' ?></textarea>
1007
+ </td>
1008
+ </tr>
1009
 
1010
+ <tr class="the_champ_help_content" id="the_champ_privacy_policy_optin_text_help_cont">
1011
+ <td colspan="2">
1012
+ <div>
1013
+ <?php _e('Text for the opt-in appearing above the social login icons', 'super-socializer') ?>
1014
+ </div>
1015
+ </td>
1016
+ </tr>
1017
 
1018
+ <tr>
1019
+ <th>
1020
+ <img id="the_champ_privacy_ppu_placeholder_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1021
+ <label><?php _e("Text to link to Privacy Policy page", 'super-socializer'); ?></label>
1022
+ </th>
1023
+ <td>
1024
+ <input id="the_champ_privacy_ppu_placeholder" name="the_champ_login[ppu_placeholder]" type="text" value="<?php echo $theChampLoginOptions['ppu_placeholder'] ?>" />
1025
+ </td>
1026
+ </tr>
1027
 
1028
+ <tr class="the_champ_help_content" id="the_champ_privacy_ppu_placeholder_help_cont">
1029
+ <td colspan="2">
1030
+ <div>
1031
+ <?php _e('Word(s) in the opt-in text to be linked to privacy policy page', 'super-socializer') ?>
1032
+ </div>
1033
+ </td>
1034
+ </tr>
1035
+
1036
+ <tr>
1037
+ <th>
1038
+ <img id="the_champ_privacy_policy_url_help" class="the_champ_help_bubble" src="<?php echo plugins_url('../images/info.png', __FILE__) ?>" />
1039
+ <label><?php _e("Privacy Policy Url", 'super-socializer'); ?></label>
1040
+ </th>
1041
+ <td>
1042
+ <input id="the_champ_privacy_policy_url" name="the_champ_login[privacy_policy_url]" type="text" value="<?php echo $theChampLoginOptions['privacy_policy_url'] ?>" />
1043
+ </td>
1044
+ </tr>
1045
+
1046
+ <tr class="the_champ_help_content" id="the_champ_privacy_policy_url_help_cont">
1047
+ <td colspan="2">
1048
+ <div>
1049
+ <?php _e('Url of the privacy policy page of your website', 'super-socializer') ?>
1050
+ </div>
1051
+ </td>
1052
+ </tr>
1053
+ </tbody>
1054
  </table>
1055
  </div>
1056
  </div>
helper.php CHANGED
@@ -535,11 +535,7 @@ function the_champ_account_linking(){
535
  <?php
536
  wp_enqueue_script('the_champ_sl_instagram', plugins_url('js/front/social_login/instagram.js', __FILE__), false, THE_CHAMP_SS_VERSION);
537
  }
538
- $html = '<style type="text/css">
539
- table.superSocializerTable td{
540
- padding: 10px;
541
- }
542
- </style>';
543
 
544
  $html .= '<div class="metabox-holder columns-2 super-socializer-linking-container" id="post-body">
545
  <div class="stuffbox" style="width:60%; padding-bottom:10px">
@@ -557,7 +553,11 @@ function the_champ_account_linking(){
557
  </tr>';
558
  }
559
  }
560
- $icons_container = '<div class="the_champ_login_container"><ul class="the_champ_login_ul">';
 
 
 
 
561
  $existingProviders = array();
562
  $primarySocialNetwork = get_user_meta($user_ID, 'thechamp_provider', true);
563
  $existingProviders[] = $primarySocialNetwork;
535
  <?php
536
  wp_enqueue_script('the_champ_sl_instagram', plugins_url('js/front/social_login/instagram.js', __FILE__), false, THE_CHAMP_SS_VERSION);
537
  }
538
+ $html = '<style type="text/css">table.superSocializerTable td{padding: 10px;}div.heateor_ss_sl_optin_container a{color:blue}div.heateor_ss_sl_optin_container label{font-size:11px;font-weight:normal}input.heateor_ss_social_login_optin{vertical-align:middle}</style>';
 
 
 
 
539
 
540
  $html .= '<div class="metabox-holder columns-2 super-socializer-linking-container" id="post-body">
541
  <div class="stuffbox" style="width:60%; padding-bottom:10px">
553
  </tr>';
554
  }
555
  }
556
+ $icons_container = '<div class="the_champ_login_container">';
557
+ if(isset($theChampLoginOptions['gdpr_enable'])){
558
+ $icons_container .= '<div class="heateor_ss_sl_optin_container"><label><input type="checkbox" class="heateor_ss_social_login_optin" value="1" />'. str_replace($theChampLoginOptions['ppu_placeholder'], '<a href="'. $theChampLoginOptions['privacy_policy_url'] .'" target="_blank">'. $theChampLoginOptions['ppu_placeholder'] .'</a>', wp_strip_all_tags($theChampLoginOptions['privacy_policy_optin_text'])) .'</label></div>';
559
+ }
560
+ $icons_container .= '<ul class="the_champ_login_ul">';
561
  $existingProviders = array();
562
  $primarySocialNetwork = get_user_meta($user_ID, 'thechamp_provider', true);
563
  $existingProviders[] = $primarySocialNetwork;
inc/shortcode.php CHANGED
@@ -232,11 +232,11 @@ function the_champ_fb_commenting_shortcode($params){
232
  if( $title != '' ) {
233
  $html .= '<div style="font-weight:bold">' . ucfirst( $title ) . '</div>';
234
  }
235
- if(defined('HEATEOR_FB_COM_NOT_VERSION') && version_compare('1.1.5', HEATEOR_FB_COM_NOT_VERSION) < 0){
236
  global $heateor_fcn_options;
237
  $html .= '<div class="heateor_ss_fb_comments_notifier_optin_container"><label><input type="checkbox" class="heateor_ss_fb_comments_notifier_optin" value="1" />'. str_replace($heateor_fcn_options['ppu_placeholder'], '<a href="'. $heateor_fcn_options['privacy_policy_url'] .'" target="_blank">'. $heateor_fcn_options['ppu_placeholder'] .'</a>', wp_strip_all_tags($heateor_fcn_options['privacy_policy_optin_text'])) .'</label></div>';
238
  }
239
- if(defined('HEATEOR_FB_COM_MOD_VERSION') && version_compare('1.2.3', HEATEOR_FB_COM_MOD_VERSION) < 0){
240
  global $heateor_fcm_options;
241
  $html .= '<div class="heateor_ss_fb_comments_optin_container"><label><input type="checkbox" class="heateor_ss_fb_comments_optin" value="1" />'. str_replace($heateor_fcm_options['ppu_placeholder'], '<a href="'. $heateor_fcm_options['privacy_policy_url'] .'" target="_blank">'. $heateor_fcm_options['ppu_placeholder'] .'</a>', wp_strip_all_tags($heateor_fcm_options['privacy_policy_optin_text'])) .'</label></div>';
242
  }
232
  if( $title != '' ) {
233
  $html .= '<div style="font-weight:bold">' . ucfirst( $title ) . '</div>';
234
  }
235
+ if(defined('HEATEOR_FB_COM_NOT_VERSION') && version_compare('1.1.6', HEATEOR_FB_COM_NOT_VERSION) < 0 && isset($heateor_fcn_options['gdpr_enable'])){
236
  global $heateor_fcn_options;
237
  $html .= '<div class="heateor_ss_fb_comments_notifier_optin_container"><label><input type="checkbox" class="heateor_ss_fb_comments_notifier_optin" value="1" />'. str_replace($heateor_fcn_options['ppu_placeholder'], '<a href="'. $heateor_fcn_options['privacy_policy_url'] .'" target="_blank">'. $heateor_fcn_options['ppu_placeholder'] .'</a>', wp_strip_all_tags($heateor_fcn_options['privacy_policy_optin_text'])) .'</label></div>';
238
  }
239
+ if(defined('HEATEOR_FB_COM_MOD_VERSION') && version_compare('1.2.4', HEATEOR_FB_COM_MOD_VERSION) < 0 && isset($heateor_fcm_options['gdpr_enable'])){
240
  global $heateor_fcm_options;
241
  $html .= '<div class="heateor_ss_fb_comments_optin_container"><label><input type="checkbox" class="heateor_ss_fb_comments_optin" value="1" />'. str_replace($heateor_fcm_options['ppu_placeholder'], '<a href="'. $heateor_fcm_options['privacy_policy_url'] .'" target="_blank">'. $heateor_fcm_options['ppu_placeholder'] .'</a>', wp_strip_all_tags($heateor_fcm_options['privacy_policy_optin_text'])) .'</label></div>';
242
  }
inc/social_login.php CHANGED
@@ -5,7 +5,7 @@ defined('ABSPATH') or die("Cheating........Uh!!");
5
  */
6
 
7
  /**
8
- * Render Social Login icons HTML.
9
  */
10
  function the_champ_login_button($widget = false){
11
  if(!is_user_logged_in() && the_champ_social_login_enabled()){
@@ -23,7 +23,9 @@ function the_champ_login_button($widget = false){
23
  }
24
  }
25
  $html .= '<div class="the_champ_login_container">';
26
- $html .= '<div class="heateor_ss_sl_optin_container"><label><input type="checkbox" class="heateor_ss_social_login_optin" value="1" />'. str_replace($theChampLoginOptions['ppu_placeholder'], '<a href="'. $theChampLoginOptions['privacy_policy_url'] .'" target="_blank">'. $theChampLoginOptions['ppu_placeholder'] .'</a>', wp_strip_all_tags($theChampLoginOptions['privacy_policy_optin_text'])) .'</label></div>';
 
 
27
  $html .= '<ul class="the_champ_login_ul">';
28
  if(isset($theChampLoginOptions['providers']) && is_array($theChampLoginOptions['providers']) && count($theChampLoginOptions['providers']) > 0){
29
  foreach($theChampLoginOptions['providers'] as $provider){
5
  */
6
 
7
  /**
8
+ * Render Social Login icons HTML
9
  */
10
  function the_champ_login_button($widget = false){
11
  if(!is_user_logged_in() && the_champ_social_login_enabled()){
23
  }
24
  }
25
  $html .= '<div class="the_champ_login_container">';
26
+ if(isset($theChampLoginOptions['gdpr_enable'])){
27
+ $html .= '<div class="heateor_ss_sl_optin_container"><label><input type="checkbox" class="heateor_ss_social_login_optin" value="1" />'. str_replace($theChampLoginOptions['ppu_placeholder'], '<a href="'. $theChampLoginOptions['privacy_policy_url'] .'" target="_blank">'. $theChampLoginOptions['ppu_placeholder'] .'</a>', wp_strip_all_tags($theChampLoginOptions['privacy_policy_optin_text'])) .'</label></div>';
28
+ }
29
  $html .= '<ul class="the_champ_login_ul">';
30
  if(isset($theChampLoginOptions['providers']) && is_array($theChampLoginOptions['providers']) && count($theChampLoginOptions['providers']) > 0){
31
  foreach($theChampLoginOptions['providers'] as $provider){
js/admin/admin.js CHANGED
@@ -1,39 +1 @@
1
- var theChampReferrer = null, theChampReferrerVal = '', theChampReferrerTabId = '';
2
- function theChampEmailPopupOptions(e) {
3
- jQuery(e).is(":checked") ? jQuery("#the_champ_email_popup_options").css("display", "block") : jQuery("#the_champ_email_popup_options").css("display", "none")
4
- }
5
-
6
- function theChampCommentingOptions(e) {
7
- jQuery(e).is(":checked") ? jQuery("#the_champ_commenting_extra").css("display", "none") : jQuery("#the_champ_commenting_extra").css("display", "table-row-group")
8
- }
9
- jQuery(document).ready(function() {
10
- jQuery("#tabs").tabs();
11
- theChampReferrer = jQuery('input[name=_wp_http_referer]'), theChampReferrerVal = jQuery('input[name=_wp_http_referer]').val(), theChampReferrerTabId = location.href.indexOf('#') > 0 ? location.href.substring(location.href.indexOf('#'), location.href.length) : '';
12
- if(theChampReferrerTabId){theChampSetReferrer(theChampReferrerTabId) }
13
- jQuery('#tabs ul a').click(function(){
14
- theChampSetReferrer(jQuery(this).attr('href'));
15
- });
16
- jQuery("#the_champ_login_redirection_column").find("input[type=radio]").click(function() {
17
- jQuery(this).attr("id") && "the_champ_login_redirection_custom" == jQuery(this).attr("id") ? jQuery("#the_champ_login_redirection_url").css("display", "block") : jQuery("#the_champ_login_redirection_url").css("display", "none")
18
- }), jQuery("#the_champ_login_redirection_custom").is(":checked") ? jQuery("#the_champ_login_redirection_url").css("display", "block") : jQuery("#the_champ_login_redirection_url").css("display", "none"), jQuery("#the_champ_register_redirection_column").find("input[type=radio]").click(function() {
19
- jQuery(this).attr("id") && "the_champ_register_redirection_custom" == jQuery(this).attr("id") ? jQuery("#the_champ_register_redirection_url").css("display", "block") : jQuery("#the_champ_register_redirection_url").css("display", "none")
20
- }), jQuery("#the_champ_register_redirection_custom").is(":checked") ? jQuery("#the_champ_register_redirection_url").css("display", "block") : jQuery("#the_champ_register_redirection_url").css("display", "none"), jQuery(".the_champ_help_bubble").attr("title", theChampHelpBubbleTitle), jQuery(".the_champ_help_bubble").toggle(function() {
21
- jQuery("#" + jQuery(this).attr("id") + "_cont").show(), jQuery(this).attr("title", theChampHelpBubbleCollapseTitle)
22
- }, function() {
23
- jQuery("#" + jQuery(this).attr("id") + "_cont").hide(), jQuery(this).attr("title", theChampHelpBubbleTitle)
24
- }), jQuery("#the_champ_fb_comment_switch_wp").keyup(function() {
25
- jQuery(this).prev("span").remove(), "" == jQuery(this).val().trim() ? jQuery(this).before('<span style="color:red">This cannot be blank</span>') : jQuery(this).val().trim() == jQuery("#the_champ_fb_comment_switch_fb").val().trim() && jQuery(this).before('<span style="color:red">This cannot be same as text on "Switch to Facebook Commenting" button</span>')
26
- }), jQuery('input#the_champ_enable_commenting, input#the_champ_login_enable, input#the_champ_counter_enable').click(function(){
27
- if(jQuery(this).is(':checked')){
28
- jQuery('div#tabs').css('display', 'block');
29
- }else{
30
- jQuery('div#tabs').css('display', 'none');
31
- }
32
- }), jQuery("#the_champ_fb_comment_switch_fb").keyup(function() {
33
- jQuery(this).prev("span").remove(), "" == jQuery(this).val().trim() ? jQuery(this).before('<span style="color:red">This cannot be blank</span>') : jQuery(this).val().trim() == jQuery("#the_champ_fb_comment_switch_wp").val().trim() && jQuery(this).before('<span style="color:red">This cannot be same as text on "Switch to WordPress Commenting" button</span>')
34
- })
35
- });
36
- function theChampSetReferrer(href){
37
- jQuery(theChampReferrer).val( theChampReferrerVal.substring(0, theChampReferrerVal.indexOf('#') > 0 ? theChampReferrerVal.indexOf('#') : theChampReferrerVal.length) + href );
38
- }
39
- jQuery("html, body").animate({ scrollTop: 0 });
1
+ var theChampReferrer=null,theChampReferrerVal="",theChampReferrerTabId="";function theChampEmailPopupOptions(e){jQuery(e).is(":checked")?jQuery("#the_champ_email_popup_options").css("display","block"):jQuery("#the_champ_email_popup_options").css("display","none")}function theChampCommentingOptions(e){jQuery(e).is(":checked")?jQuery("#the_champ_commenting_extra").css("display","none"):jQuery("#the_champ_commenting_extra").css("display","table-row-group")}function theChampSetReferrer(e){jQuery(theChampReferrer).val(theChampReferrerVal.substring(0,theChampReferrerVal.indexOf("#")>0?theChampReferrerVal.indexOf("#"):theChampReferrerVal.length)+e)}jQuery(document).ready(function(){jQuery("#tabs").tabs(),theChampReferrer=jQuery("input[name=_wp_http_referer]"),theChampReferrerVal=jQuery("input[name=_wp_http_referer]").val(),(theChampReferrerTabId=location.href.indexOf("#")>0?location.href.substring(location.href.indexOf("#"),location.href.length):"")&&theChampSetReferrer(theChampReferrerTabId),jQuery("#tabs ul a").click(function(){theChampSetReferrer(jQuery(this).attr("href"))}),jQuery("#the_champ_gdpr_enable").click(function(){jQuery(this).is(":checked")?jQuery("#the_champ_gdpr_options").css("display","table-row-group"):jQuery("#the_champ_gdpr_options").css("display","none")}),jQuery("#the_champ_login_redirection_column").find("input[type=radio]").click(function(){jQuery(this).attr("id")&&"the_champ_login_redirection_custom"==jQuery(this).attr("id")?jQuery("#the_champ_login_redirection_url").css("display","block"):jQuery("#the_champ_login_redirection_url").css("display","none")}),jQuery("#the_champ_login_redirection_custom").is(":checked")?jQuery("#the_champ_login_redirection_url").css("display","block"):jQuery("#the_champ_login_redirection_url").css("display","none"),jQuery("#the_champ_register_redirection_column").find("input[type=radio]").click(function(){jQuery(this).attr("id")&&"the_champ_register_redirection_custom"==jQuery(this).attr("id")?jQuery("#the_champ_register_redirection_url").css("display","block"):jQuery("#the_champ_register_redirection_url").css("display","none")}),jQuery("#the_champ_register_redirection_custom").is(":checked")?jQuery("#the_champ_register_redirection_url").css("display","block"):jQuery("#the_champ_register_redirection_url").css("display","none"),jQuery(".the_champ_help_bubble").attr("title",theChampHelpBubbleTitle),jQuery(".the_champ_help_bubble").toggle(function(){jQuery("#"+jQuery(this).attr("id")+"_cont").show(),jQuery(this).attr("title",theChampHelpBubbleCollapseTitle)},function(){jQuery("#"+jQuery(this).attr("id")+"_cont").hide(),jQuery(this).attr("title",theChampHelpBubbleTitle)}),jQuery("#the_champ_fb_comment_switch_wp").keyup(function(){jQuery(this).prev("span").remove(),""==jQuery(this).val().trim()?jQuery(this).before('<span style="color:red">This cannot be blank</span>'):jQuery(this).val().trim()==jQuery("#the_champ_fb_comment_switch_fb").val().trim()&&jQuery(this).before('<span style="color:red">This cannot be same as text on "Switch to Facebook Commenting" button</span>')}),jQuery("input#the_champ_enable_commenting, input#the_champ_login_enable, input#the_champ_counter_enable").click(function(){jQuery(this).is(":checked")?jQuery("div#tabs").css("display","block"):jQuery("div#tabs").css("display","none")}),jQuery("#the_champ_fb_comment_switch_fb").keyup(function(){jQuery(this).prev("span").remove(),""==jQuery(this).val().trim()?jQuery(this).before('<span style="color:red">This cannot be blank</span>'):jQuery(this).val().trim()==jQuery("#the_champ_fb_comment_switch_wp").val().trim()&&jQuery(this).before('<span style="color:red">This cannot be same as text on "Switch to WordPress Commenting" button</span>')})}),jQuery("html, body").animate({scrollTop:0});
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
js/front/combined.js CHANGED
@@ -5,55 +5,13 @@ function heateorSsBrowserMsg(){var a=document.createElement("div");a.innerHTML='
5
  "undefined"!=typeof heateorSsSDKBlockedMsg&&jQuery(function(){"shown"!=localStorage.getItem("heateorSsBrowserMsg")&&(jQuery("<img/>").attr("src","//apps.facebook.com/favicon.ico").error(function(){heateorSsBrowserMsg()}).css("display","none").appendTo(document.body),localStorage.setItem("heateorSsBrowserMsg","shown"))});
6
  function heateorSsLJLoginPopup(){var a=document.createElement("div");a.innerHTML='<button id="heateor_ss_lj_popup_close" class="close-button separated"><img src="'+theChampCloseIconPath+'" /></button><div id="the_champ_sharing_more_content"><div class="all-services" style="padding:20px 10px 0px 10px;height:auto;"><fieldset id="ss_openid"><legend>LiveJournal Login</legend><form action="'+theChampLJAuthUrl+'" method="post" onsubmit="this.login.disabled=true;"><input type="hidden" name="openid_action" value="SuperSocializerLogin"><div style="clear:both">'+theChampLJLoginUsernameString+'</div><div style="clear:both"><input type="text" name="openid_url" required class="openid_login"><input type="submit" name="login" value="Login"></div></form></fieldset></div></div></div>',a.setAttribute("id","the_champ_sharing_more_providers"),a.setAttribute("style","height:auto;");var b=document.createElement("div");b.setAttribute("id","heateor_ss_lj_popup_bg"),jQuery("body").append(a).append(b),document.getElementById("heateor_ss_lj_popup_bg").onclick=document.getElementById("heateor_ss_lj_popup_close").onclick=function(){a.parentNode.removeChild(a),b.parentNode.removeChild(b)}}function theChampGetCookie(e){for(var t=e+"=",a=document.cookie.split(";"),h=0;h<a.length;h++){for(var i=a[h];" "==i.charAt(0);)i=i.substring(1,i.length);if(0==i.indexOf(t))return i.substring(t.length,i.length)}return null}
7
  // common.js
8
- function theChampLoadingIcon(){jQuery(".the_champ_login_container").html('<img id="the_champ_loading_image" src="'+theChampLoadingImgPath+'" />')}function theChampInitiateLogin(e){var t=jQuery(e).parent().parent().prev().find(".heateor_ss_social_login_optin");if(jQuery(t).is(":checked")){var a=e.getAttribute("alt");"Login with Facebook"==a?theChampPopup(theChampFacebookAuthUrl):"Login with Twitch"==a?theChampPopup(theChampTwitchAuthUrl):"Login with LiveJournal"==a?heateorSsLJLoginPopup():"Login with Steam"==a?theChampPopup(theChampSteamAuthUrl):"Login with Twitter"==a?theChampPopup(theChampTwitterAuthUrl):"Login with Xing"==a?theChampPopup(theChampXingAuthUrl):("Login with Linkedin"==a&&theChampPopup(theChampLinkedinAuthUrl),"Login with Google"==a?theChampPopup(theChampGoogleAuthUrl):"Login with Vkontakte"==a?theChampPopup(theChampVkontakteAuthUrl):"Login with Instagram"==a&&theChampInitializeInstaLogin())}else jQuery(t).parent().css("color","red")}function theChampDisplayLoginIcon(e,t){if("undefined"!=typeof jQuery)for(var a=0;a<t.length;a++)jQuery("."+t[a]).css("display","block");else for(a=0;a<t.length;a++)for(var h=theChampGetElementsByClass(e,t[a]),i=0;i<h.length;i++)h[i].style.display="block"}function theChampValidateEmail(e){return/^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/.test(e)}function the_champ_save_email(e){var t=document.getElementById("the_champ_email").value.trim(),a=document.getElementById("the_champ_confirm_email").value.trim();return"save"!=e.id||theChampValidateEmail(t)?t!=a?(document.getElementById("the_champ_error").innerHTML="Email addresses do not match",void jQuery("#TB_ajaxContent").css("height","auto")):void theChampCallAjax(function(){theChampSaveEmail(e.id,t)}):(document.getElementById("the_champ_error").innerHTML=theChampEmailPopupErrorMsg,void jQuery("#TB_ajaxContent").css("height","auto"))}function theChampSaveEmail(e,t){document.getElementById("the_champ_error").innerHTML='<img src="'+theChampLoadingImgPath+'" />',jQuery.ajax({type:"POST",dataType:"json",url:theChampAjaxUrl,data:{action:"the_champ_save_email",elemId:e,email:t,id:theChampEmailPopupUniqueId},success:function(e){window.history.pushState({html:"html",pageTitle:"page title"},"","?done=1"),1==e.status&&e.message.response&&"success"==e.message.response?location.href=e.message.url:1==e.status&&"success"==e.message?location.href=theChampRegRedirectionUrl:1==e.status&&"cancelled"==e.message?tb_remove():1==e.status&&"verify"==e.message?document.getElementById("TB_ajaxContent").innerHTML="<strong>"+theChampEmailPopupVerifyMessage+"</strong>":0==e.status&&(document.getElementById("the_champ_error").innerHTML=e.message,jQuery("#TB_ajaxContent").css("height","auto"))},error:function(e,t,a){location.href=decodeURIComponent(theChampRedirectionUrl)}})}function theChampCapitaliseFirstLetter2(e){return e.charAt(0).toUpperCase()+e.slice(1)}if(void 0===theChampLinkingRedirection)var theChampLinkingRedirection="";theChampVerified&&theChampLoadEvent(function(){tb_show(theChampPopupTitle,theChampAjaxUrl)}),theChampEmailPopup&&theChampLoadEvent(function(){tb_show(theChampEmailPopupTitle,theChampEmailAjaxUrl)});var theChampCommentFormLogin=!1;theChampLoadEvent(function(){null!=theChampGetCookie("heateorSsSLOptin")&&jQuery("input.heateor_ss_social_login_optin").prop("checked",!0)}),jQuery("input.heateor_ss_social_login_optin").click(function(){if(jQuery(this).is(":checked")){if(null==theChampGetCookie("heateorSsSLOptin")){var e=new Date;e.setTime(e.getTime()+31536e6),document.cookie="heateorSsSLOptin=1; expires="+e.toUTCString()+"; path=/"}}else document.cookie="heateorSsSLOptin=; expires=Fri, 02 Jan 1970 00:00:00 UTC; path=/"});
9
  // instagram.js
10
  function theChampInitializeInstaLogin(){var e=typeof theChampLinkingRedirection!="undefined"&&theChampLinkingRedirection!=""?theChampLinkingRedirection:theChampTwitterRedirect;theChampPopup("https://instagram.com/oauth/authorize/?client_id="+theChampInstaId+"&redirect_uri="+encodeURI(theChampSiteUrl+"?ssredirect="+e)+"&response_type=token")}function theChampGetHashValue(e){if(typeof e!=="string"){e=""}else{e=e.toLowerCase()}var t=location.hash.toLowerCase().match(new RegExp(e+"=([^&]*)"));var n="";if(t){n=t[1]}return n}function theChampGetParameterByName(e){e=e.replace(/[\[]/,"\\[").replace(/[\]]/,"\\]");var t=new RegExp("[\\?&]"+e+"=([^&#]*)"),n=t.exec(location.search);return n===null?"":decodeURIComponent(n[1].replace(/\+/g," "))}var theChampInstagramHash=theChampGetHashValue("access_token");if(theChampInstagramHash!=""){var redirection = theChampGetParameterByName("ssredirect");redirection = redirection + (window.opener.heateorMSEnabled == 1 ? (redirection.indexOf('?') >= 0 ? '&' : '?') + "heateorMSEnabled=1" : '');window.opener.location.href=theChampSiteUrl+"?SuperSocializerInstaToken="+theChampInstagramHash+"&super_socializer_redirect_to="+(redirection?redirection:theChampTwitterRedirect);window.close()}
11
  // sdk.js
12
- function theChampInitiateFB(){FB.init({appId:theChampFBKey,channelUrl:"//"+theChampSiteUrl+"/channel.html",status:!0,cookie:!0,xfbml:!0,version:"v2.11"})}window.fbAsyncInit = function() {
13
- theChampInitiateFB(), theChampFbIosLogin && theChampAuthUserFB(), "function" == typeof theChampDisplayLoginIcon && theChampDisplayLoginIcon(document, ["theChampFacebookButton", "theChampFacebookLogin"]), ((typeof theChampCommentNotification != 'undefined' && theChampCommentNotification == 1) || (typeof theChampHeateorFcmRecentComments != 'undefined' && theChampHeateorFcmRecentComments == 1)) && FB.Event.subscribe("comment.create", function(e) {
14
- if(typeof e.commentID != 'undefined' && e.commentID){
15
- if(typeof theChampCommentNotification != 'undefined' && theChampCommentNotification == 1){
16
- jQuery.ajax({
17
- type: "POST",
18
- dataType: "json",
19
- url: theChampSiteUrl + "/index.php",
20
- data: {
21
- action: "the_champ_moderate_fb_comments",
22
- data: e
23
- },
24
- success: function(a,b,c) {}
25
- });
26
- }
27
- if(typeof theChampHeateorFcmRecentComments != 'undefined' && theChampHeateorFcmRecentComments == 1){
28
- jQuery.ajax({
29
- type: "POST",
30
- dataType: "json",
31
- url: theChampSiteUrl + "/index.php",
32
- data: {
33
- action: "heateor_fcm_save_fb_comment",
34
- data: e
35
- },
36
- success: function(a,b,c) {}
37
- });
38
- }
39
- }
40
- }), typeof theChampFbLikeMycred != 'undefined' && theChampFbLikeMycred && (FB.Event.subscribe("edge.create", function(e) {
41
- heateorSsmiMycredPoints("Facebook_like_recommend", "", e ? e : "")
42
- }), FB.Event.subscribe("edge.remove", function(e) {
43
- heateorSsmiMycredPoints("Facebook_like_recommend", "", e ? e : "", "Minus point(s) for undoing Facebook like-recommend")
44
- })), typeof theChampSsga != 'undefined' && theChampSsga && (FB.Event.subscribe("edge.create", function(e) {
45
- heateorSsgaSocialPluginsTracking("Facebook", "Like", e ? e : "")
46
- }), FB.Event.subscribe("edge.remove", function(e) {
47
- heateorSsgaSocialPluginsTracking("Facebook", "Unlike", e ? e : "")
48
- }))
49
- },
50
- function(e) {
51
- var t, n = "facebook-jssdk",
52
- o = e.getElementsByTagName("script")[0];
53
- e.getElementById(n) || (t = e.createElement("script"), t.id = n, t.async = !0, t.src = "//connect.facebook.net/" + theChampFBLang + "/sdk.js", o.parentNode.insertBefore(t, o))
54
- }(document);
55
  // commenting.js
56
- function theChampRenderFBCommenting(){var e=document.getElementById(theChampCommentingId);if(e){var t=[],a=[],n=[];t.wordpress='<div style="clear:both"></div>'+e.innerHTML,theChampFBCommentingContent=("undefined"!=typeof theChampFacebookCommentsNotifierOptinText?'<div class="heateor_ss_fb_comments_notifier_optin_container"><label><input type="checkbox" class="heateor_ss_fb_comments_notifier_optin" value="1" />'+theChampFacebookCommentsNotifierOptinText+"</label></div>":"")+("undefined"!=typeof theChampFacebookCommentsOptinText?'<div class="heateor_ss_fb_comments_optin_container"><label><input type="checkbox" class="heateor_ss_fb_comments_optin" value="1" />'+theChampFacebookCommentsOptinText+"</label></div>":"")+'<div class="fb-comments" data-href="'+theChampFBCommentUrl+'"',""!=theChampFBCommentColor&&(theChampFBCommentingContent+=' data-colorscheme="'+theChampFBCommentColor+'"'),""!=theChampFBCommentNumPosts&&(theChampFBCommentingContent+=' data-numposts="'+theChampFBCommentNumPosts+'"'),theChampFBCommentingContent+=' data-width="'+theChampFBCommentWidth+'"',""!=theChampFBCommentOrderby&&(theChampFBCommentingContent+=' data-order-by="'+theChampFBCommentOrderby+'"'),theChampFBCommentingContent+=" ></div>",t.fb=theChampFBCommentingContent,a.fb="theChampInitiateFB();",t.googleplus="<div class='g-comments' data-href='"+theChampGpCommentsUrl+"' "+(theChampGpCommentsWidth?"data-width='"+theChampGpCommentsWidth+"'":"")+" data-first_party_property='BLOGGER' data-view_type='FILTERED_POSTMOD' ></div>",a.googleplus=" ",n.googleplus="//apis.google.com/js/plusone.js",t.disqus='<div class="embed-container clearfix" id="disqus_thread">'+(""!=theChampDisqusShortname?theChampDisqusShortname:'<div style="font-size: 14px;clear: both;">Specify a Disqus shortname in Super Socializer &gt; Social Commenting section in admin panel</div>')+"</div>",a.disqus="var disqus_shortname = '"+theChampDisqusShortname+"';(function(d) {var dsq = d.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js'; (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(dsq); })(document);";var o='<div class="theChampCommentingTabs"><h3 id="theChampReplyTitle" style="margin-bottom:15px" class="comment-reply-title">'+theChampScLabel+"</h3><ul>";theChampScEnabledTabs=theChampScEnabledTabs.split(",");for(var i=0;i<theChampScEnabledTabs.length;i++){o+='<li id="theChampTabs-'+i+'-li" onclick="',o+="this.setAttribute('class', 'theChampSelectedTab');document.getElementById('theChampTabs-"+i+"').style.display='block';","fb"==theChampScEnabledTabs[i]&&(o+="theChampInitiateFB();");for(var m=0;m<theChampScEnabledTabs.length;m++)m!=i&&(o+="document.getElementById('theChampTabs-"+m+"-li').setAttribute('class', '');document.getElementById('theChampTabs-"+m+"').style.display='none';");o+='">',o+=theChampScTabLabels[theChampScEnabledTabs[i]],o+="</li>"}for(o+="</ul>",i=0;i<theChampScEnabledTabs.length;i++)o+='<div id="theChampTabs-'+i+'" ><div style="clear: both"></div>'+t[theChampScEnabledTabs[i]]+"</div>";o+="</div>",e.innerHTML=o;var h=document.getElementById("reply-title");for(h&&h.remove(),i=0;i<theChampScEnabledTabs.length;i++)if(a[theChampScEnabledTabs[i]]){var s=document.createElement("script");n[theChampScEnabledTabs[i]]&&s.setAttribute("src",n[theChampScEnabledTabs[i]]),s.innerHTML=a[theChampScEnabledTabs[i]],document.getElementById("theChampTabs-"+i).appendChild(s)}for(document.getElementById("theChampTabs-0-li").setAttribute("class","theChampSelectedTab"),i=1;i<theChampScEnabledTabs.length;i++)document.getElementById("theChampTabs-"+i).style.display="none";null!=theChampGetCookie("heateorSsSLOptin")&&jQuery("input.heateor_ss_social_login_optin").prop("checked",!0),jQuery("input.heateor_ss_social_login_optin").click(function(){if(jQuery(this).is(":checked")){if(null==theChampGetCookie("heateorSsSLOptin")){var e=new Date;e.setTime(e.getTime()+31536e6),document.cookie="heateorSsSLOptin=1; expires="+e.toUTCString()+"; path=/"}}else document.cookie="heateorSsSLOptin=; expires=Fri, 02 Jan 1970 00:00:00 UTC; path=/"}),"undefined"!=typeof theChampFacebookCommentsOptinText&&(null!=heateorFcmGetCookie("heateorFcmOptin")&&jQuery("input.heateor_ss_fb_comments_optin").prop("checked",!0),jQuery("input.heateor_ss_fb_comments_optin").click(function(){if(jQuery(this).is(":checked")){if(heateorFcmOptin=1,null==heateorFcmGetCookie("heateorFcmOptin")){var e=new Date;e.setTime(e.getTime()+31536e6),document.cookie="heateorFcmOptin=1; expires="+e.toUTCString()+"; path=/"}}else heateorFcmOptin=0,document.cookie="heateorFcmOptin=; expires=Fri, 02 Jan 1970 00:00:00 UTC; path=/"})),"undefined"!=typeof theChampFacebookCommentsNotifierOptinText&&(null!=heateorFcnGetCookie("heateorFcnOptin")&&jQuery("input.heateor_ss_fb_comments_notifier_optin").prop("checked",!0),jQuery("input.heateor_ss_fb_comments_notifier_optin").click(function(){if(jQuery(this).is(":checked")){if(heateorFcnOptin=1,null==heateorFcnGetCookie("heateorFcnOptin")){var e=new Date;e.setTime(e.getTime()+31536e6),document.cookie="heateorFcnOptin=1; expires="+e.toUTCString()+"; path=/"}}else heateorFcnOptin=0,document.cookie="heateorFcnOptin=; expires=Fri, 02 Jan 1970 00:00:00 UTC; path=/"}))}}theChampLoadEvent(function(){theChampRenderFBCommenting()});
57
  // sharing.js
58
  /**
59
  * Show more sharing services popup
5
  "undefined"!=typeof heateorSsSDKBlockedMsg&&jQuery(function(){"shown"!=localStorage.getItem("heateorSsBrowserMsg")&&(jQuery("<img/>").attr("src","//apps.facebook.com/favicon.ico").error(function(){heateorSsBrowserMsg()}).css("display","none").appendTo(document.body),localStorage.setItem("heateorSsBrowserMsg","shown"))});
6
  function heateorSsLJLoginPopup(){var a=document.createElement("div");a.innerHTML='<button id="heateor_ss_lj_popup_close" class="close-button separated"><img src="'+theChampCloseIconPath+'" /></button><div id="the_champ_sharing_more_content"><div class="all-services" style="padding:20px 10px 0px 10px;height:auto;"><fieldset id="ss_openid"><legend>LiveJournal Login</legend><form action="'+theChampLJAuthUrl+'" method="post" onsubmit="this.login.disabled=true;"><input type="hidden" name="openid_action" value="SuperSocializerLogin"><div style="clear:both">'+theChampLJLoginUsernameString+'</div><div style="clear:both"><input type="text" name="openid_url" required class="openid_login"><input type="submit" name="login" value="Login"></div></form></fieldset></div></div></div>',a.setAttribute("id","the_champ_sharing_more_providers"),a.setAttribute("style","height:auto;");var b=document.createElement("div");b.setAttribute("id","heateor_ss_lj_popup_bg"),jQuery("body").append(a).append(b),document.getElementById("heateor_ss_lj_popup_bg").onclick=document.getElementById("heateor_ss_lj_popup_close").onclick=function(){a.parentNode.removeChild(a),b.parentNode.removeChild(b)}}function theChampGetCookie(e){for(var t=e+"=",a=document.cookie.split(";"),h=0;h<a.length;h++){for(var i=a[h];" "==i.charAt(0);)i=i.substring(1,i.length);if(0==i.indexOf(t))return i.substring(t.length,i.length)}return null}
7
  // common.js
8
+ function theChampLoadingIcon(){jQuery(".the_champ_login_container").html('<img id="the_champ_loading_image" src="'+theChampLoadingImgPath+'" />')}function theChampInitiateLogin(e){var t=jQuery(e).parents("div.the_champ_login_container").find(".heateor_ss_social_login_optin");if(0==t.length||jQuery(t).is(":checked")){var a=e.getAttribute("alt");"Login with Facebook"==a?theChampPopup(theChampFacebookAuthUrl):"Login with Twitch"==a?theChampPopup(theChampTwitchAuthUrl):"Login with LiveJournal"==a?heateorSsLJLoginPopup():"Login with Steam"==a?theChampPopup(theChampSteamAuthUrl):"Login with Twitter"==a?theChampPopup(theChampTwitterAuthUrl):"Login with Xing"==a?theChampPopup(theChampXingAuthUrl):("Login with Linkedin"==a&&theChampPopup(theChampLinkedinAuthUrl),"Login with Google"==a?theChampPopup(theChampGoogleAuthUrl):"Login with Vkontakte"==a?theChampPopup(theChampVkontakteAuthUrl):"Login with Instagram"==a&&theChampInitializeInstaLogin())}else t.length>0&&jQuery(t).parent().css("color","red")}function theChampDisplayLoginIcon(e,t){if("undefined"!=typeof jQuery)for(var a=0;a<t.length;a++)jQuery("."+t[a]).css("display","block");else for(a=0;a<t.length;a++)for(var h=theChampGetElementsByClass(e,t[a]),i=0;i<h.length;i++)h[i].style.display="block"}function theChampValidateEmail(e){return/^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/.test(e)}function the_champ_save_email(e){var t=document.getElementById("the_champ_email").value.trim(),a=document.getElementById("the_champ_confirm_email").value.trim();return"save"!=e.id||theChampValidateEmail(t)?t!=a?(document.getElementById("the_champ_error").innerHTML="Email addresses do not match",void jQuery("#TB_ajaxContent").css("height","auto")):void theChampCallAjax(function(){theChampSaveEmail(e.id,t)}):(document.getElementById("the_champ_error").innerHTML=theChampEmailPopupErrorMsg,void jQuery("#TB_ajaxContent").css("height","auto"))}function theChampSaveEmail(e,t){document.getElementById("the_champ_error").innerHTML='<img src="'+theChampLoadingImgPath+'" />',jQuery.ajax({type:"POST",dataType:"json",url:theChampAjaxUrl,data:{action:"the_champ_save_email",elemId:e,email:t,id:theChampEmailPopupUniqueId},success:function(e){window.history.pushState({html:"html",pageTitle:"page title"},"","?done=1"),1==e.status&&e.message.response&&"success"==e.message.response?location.href=e.message.url:1==e.status&&"success"==e.message?location.href=theChampRegRedirectionUrl:1==e.status&&"cancelled"==e.message?tb_remove():1==e.status&&"verify"==e.message?document.getElementById("TB_ajaxContent").innerHTML="<strong>"+theChampEmailPopupVerifyMessage+"</strong>":0==e.status&&(document.getElementById("the_champ_error").innerHTML=e.message,jQuery("#TB_ajaxContent").css("height","auto"))},error:function(e,t,a){location.href=decodeURIComponent(theChampRedirectionUrl)}})}function theChampCapitaliseFirstLetter2(e){return e.charAt(0).toUpperCase()+e.slice(1)}if(void 0===theChampLinkingRedirection)var theChampLinkingRedirection="";theChampVerified&&theChampLoadEvent(function(){tb_show(theChampPopupTitle,theChampAjaxUrl)}),theChampEmailPopup&&theChampLoadEvent(function(){tb_show(theChampEmailPopupTitle,theChampEmailAjaxUrl)});var theChampCommentFormLogin=!1;theChampLoadEvent(function(){null!=theChampGetCookie("heateorSsSLOptin")&&jQuery("input.heateor_ss_social_login_optin").prop("checked",!0)}),jQuery("input.heateor_ss_social_login_optin").click(function(){if(jQuery(this).is(":checked")){if(null==theChampGetCookie("heateorSsSLOptin")){var e=new Date;e.setTime(e.getTime()+31536e6),document.cookie="heateorSsSLOptin=1; expires="+e.toUTCString()+"; path=/"}}else document.cookie="heateorSsSLOptin=; expires=Fri, 02 Jan 1970 00:00:00 UTC; path=/"});
9
  // instagram.js
10
  function theChampInitializeInstaLogin(){var e=typeof theChampLinkingRedirection!="undefined"&&theChampLinkingRedirection!=""?theChampLinkingRedirection:theChampTwitterRedirect;theChampPopup("https://instagram.com/oauth/authorize/?client_id="+theChampInstaId+"&redirect_uri="+encodeURI(theChampSiteUrl+"?ssredirect="+e)+"&response_type=token")}function theChampGetHashValue(e){if(typeof e!=="string"){e=""}else{e=e.toLowerCase()}var t=location.hash.toLowerCase().match(new RegExp(e+"=([^&]*)"));var n="";if(t){n=t[1]}return n}function theChampGetParameterByName(e){e=e.replace(/[\[]/,"\\[").replace(/[\]]/,"\\]");var t=new RegExp("[\\?&]"+e+"=([^&#]*)"),n=t.exec(location.search);return n===null?"":decodeURIComponent(n[1].replace(/\+/g," "))}var theChampInstagramHash=theChampGetHashValue("access_token");if(theChampInstagramHash!=""){var redirection = theChampGetParameterByName("ssredirect");redirection = redirection + (window.opener.heateorMSEnabled == 1 ? (redirection.indexOf('?') >= 0 ? '&' : '?') + "heateorMSEnabled=1" : '');window.opener.location.href=theChampSiteUrl+"?SuperSocializerInstaToken="+theChampInstagramHash+"&super_socializer_redirect_to="+(redirection?redirection:theChampTwitterRedirect);window.close()}
11
  // sdk.js
12
+ function theChampInitiateFB(){FB.init({appId:theChampFBKey,channelUrl:"//"+theChampSiteUrl+"/channel.html",status:!0,cookie:!0,xfbml:!0,version:"v2.11"})}window.fbAsyncInit=function(){theChampInitiateFB(),theChampFbIosLogin&&theChampAuthUserFB(),"function"==typeof theChampDisplayLoginIcon&&theChampDisplayLoginIcon(document,["theChampFacebookButton","theChampFacebookLogin"]),("undefined"!=typeof theChampCommentNotification&&1==theChampCommentNotification||"undefined"!=typeof theChampHeateorFcmRecentComments&&1==theChampHeateorFcmRecentComments)&&FB.Event.subscribe("comment.create",function(e){void 0!==e.commentID&&e.commentID&&("undefined"!=typeof theChampCommentNotification&&1==theChampCommentNotification&&jQuery.ajax({type:"POST",dataType:"json",url:theChampSiteUrl+"/index.php",data:{action:"the_champ_moderate_fb_comments",data:e},success:function(e,t,n){}}),"undefined"!=typeof theChampHeateorFcmRecentComments&&1==theChampHeateorFcmRecentComments&&jQuery.ajax({type:"POST",dataType:"json",url:theChampSiteUrl+"/index.php",data:{action:"heateor_fcm_save_fb_comment",data:e},success:function(e,t,n){}}))}),"undefined"!=typeof theChampFbLikeMycred&&theChampFbLikeMycred&&(FB.Event.subscribe("edge.create",function(e){heateorSsmiMycredPoints("Facebook_like_recommend","",e||"")}),FB.Event.subscribe("edge.remove",function(e){heateorSsmiMycredPoints("Facebook_like_recommend","",e||"","Minus point(s) for undoing Facebook like-recommend")})),"undefined"!=typeof theChampSsga&&theChampSsga&&(FB.Event.subscribe("edge.create",function(e){heateorSsgaSocialPluginsTracking("Facebook","Like",e||"")}),FB.Event.subscribe("edge.remove",function(e){heateorSsgaSocialPluginsTracking("Facebook","Unlike",e||"")}))},function(e){var t,n="facebook-jssdk",o=e.getElementsByTagName("script")[0];e.getElementById(n)||((t=e.createElement("script")).id=n,t.async=!0,t.src="//connect.facebook.net/"+theChampFBLang+"/sdk.js",o.parentNode.insertBefore(t,o))}(document);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  // commenting.js
14
+ function theChampRenderFBCommenting(){var e=typeof theChampCommentingId!='undefined'?document.getElementById(theChampCommentingId):'';if(e){var t=[],n=[],a=[];t.wordpress='<div style="clear:both"></div>'+e.innerHTML,theChampFBCommentingContent=("undefined"!=typeof theChampFacebookCommentsNotifierOptinText?'<div class="heateor_ss_fb_comments_notifier_optin_container"><label><input type="checkbox" class="heateor_ss_fb_comments_notifier_optin" value="1" />'+theChampFacebookCommentsNotifierOptinText+"</label></div>":"")+("undefined"!=typeof theChampFacebookCommentsOptinText?'<div class="heateor_ss_fb_comments_optin_container"><label><input type="checkbox" class="heateor_ss_fb_comments_optin" value="1" />'+theChampFacebookCommentsOptinText+"</label></div>":"")+'<div class="fb-comments" data-href="'+theChampFBCommentUrl+'"',""!=theChampFBCommentColor&&(theChampFBCommentingContent+=' data-colorscheme="'+theChampFBCommentColor+'"'),""!=theChampFBCommentNumPosts&&(theChampFBCommentingContent+=' data-numposts="'+theChampFBCommentNumPosts+'"'),theChampFBCommentingContent+=' data-width="'+theChampFBCommentWidth+'"',""!=theChampFBCommentOrderby&&(theChampFBCommentingContent+=' data-order-by="'+theChampFBCommentOrderby+'"'),theChampFBCommentingContent+=" ></div>",t.fb=theChampFBCommentingContent,n.fb="theChampInitiateFB();",t.googleplus="<div class='g-comments' data-href='"+theChampGpCommentsUrl+"' "+(theChampGpCommentsWidth?"data-width='"+theChampGpCommentsWidth+"'":"")+" data-first_party_property='BLOGGER' data-view_type='FILTERED_POSTMOD' ></div>",n.googleplus=" ",a.googleplus="//apis.google.com/js/plusone.js",t.disqus='<div class="embed-container clearfix" id="disqus_thread">'+(""!=theChampDisqusShortname?theChampDisqusShortname:'<div style="font-size: 14px;clear: both;">Specify a Disqus shortname in Super Socializer &gt; Social Commenting section in admin panel</div>')+"</div>",n.disqus="var disqus_shortname = '"+theChampDisqusShortname+"';(function(d) {var dsq = d.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js'; (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(dsq); })(document);";var o='<div class="theChampCommentingTabs"><h3 id="theChampReplyTitle" style="margin-bottom:15px" class="comment-reply-title">'+theChampScLabel+"</h3><ul>";theChampScEnabledTabs=theChampScEnabledTabs.split(",");for(var i=0;i<theChampScEnabledTabs.length;i++){o+='<li id="theChampTabs-'+i+'-li" onclick="',o+="this.setAttribute('class', 'theChampSelectedTab');document.getElementById('theChampTabs-"+i+"').style.display='block';","fb"==theChampScEnabledTabs[i]&&(o+="theChampInitiateFB();");for(var m=0;m<theChampScEnabledTabs.length;m++)m!=i&&(o+="document.getElementById('theChampTabs-"+m+"-li').setAttribute('class', '');document.getElementById('theChampTabs-"+m+"').style.display='none';");o+='">',o+=theChampScTabLabels[theChampScEnabledTabs[i]],o+="</li>"}for(o+="</ul>",i=0;i<theChampScEnabledTabs.length;i++)o+='<div id="theChampTabs-'+i+'" ><div style="clear: both"></div>'+t[theChampScEnabledTabs[i]]+"</div>";o+="</div>",e.innerHTML=o;var h=document.getElementById("reply-title");for(h&&h.remove(),i=0;i<theChampScEnabledTabs.length;i++)if(n[theChampScEnabledTabs[i]]){var s=document.createElement("script");a[theChampScEnabledTabs[i]]&&s.setAttribute("src",a[theChampScEnabledTabs[i]]),s.innerHTML=n[theChampScEnabledTabs[i]],document.getElementById("theChampTabs-"+i).appendChild(s)}for(document.getElementById("theChampTabs-0-li").setAttribute("class","theChampSelectedTab"),i=1;i<theChampScEnabledTabs.length;i++)document.getElementById("theChampTabs-"+i).style.display="none";null!=theChampGetCookie("heateorSsSLOptin")&&jQuery("input.heateor_ss_social_login_optin").length>0&&jQuery("input.heateor_ss_social_login_optin").prop("checked",!0),jQuery("input.heateor_ss_social_login_optin").click(function(){if(jQuery(this).is(":checked")){if(null==theChampGetCookie("heateorSsSLOptin")){var e=new Date;e.setTime(e.getTime()+31536e6),document.cookie="heateorSsSLOptin=1; expires="+e.toUTCString()+"; path=/"}}else document.cookie="heateorSsSLOptin=; expires=Fri, 02 Jan 1970 00:00:00 UTC; path=/"}),"undefined"!=typeof theChampFacebookCommentsOptinText&&(null!=heateorFcmGetCookie("heateorFcmOptin")&&jQuery("input.heateor_ss_fb_comments_optin").prop("checked",!0),jQuery("input.heateor_ss_fb_comments_optin").click(function(){if(jQuery(this).is(":checked")){if(heateorFcmOptin=1,null==heateorFcmGetCookie("heateorFcmOptin")){var e=new Date;e.setTime(e.getTime()+31536e6),document.cookie="heateorFcmOptin=1; expires="+e.toUTCString()+"; path=/"}}else heateorFcmOptin=0,document.cookie="heateorFcmOptin=; expires=Fri, 02 Jan 1970 00:00:00 UTC; path=/"})),"undefined"!=typeof theChampFacebookCommentsNotifierOptinText&&(null!=heateorFcnGetCookie("heateorFcnOptin")&&jQuery("input.heateor_ss_fb_comments_notifier_optin").prop("checked",!0),jQuery("input.heateor_ss_fb_comments_notifier_optin").click(function(){if(jQuery(this).is(":checked")){if(heateorFcnOptin=1,null==heateorFcnGetCookie("heateorFcnOptin")){var e=new Date;e.setTime(e.getTime()+31536e6),document.cookie="heateorFcnOptin=1; expires="+e.toUTCString()+"; path=/"}}else heateorFcnOptin=0,document.cookie="heateorFcnOptin=; expires=Fri, 02 Jan 1970 00:00:00 UTC; path=/"}))}}theChampLoadEvent(function(){theChampRenderFBCommenting()});
15
  // sharing.js
16
  /**
17
  * Show more sharing services popup
js/front/facebook/commenting.js CHANGED
@@ -1 +1 @@
1
- function theChampRenderFBCommenting(){var e=document.getElementById(theChampCommentingId);if(e){var t=[],a=[],n=[];t.wordpress='<div style="clear:both"></div>'+e.innerHTML,theChampFBCommentingContent=("undefined"!=typeof theChampFacebookCommentsNotifierOptinText?'<div class="heateor_ss_fb_comments_notifier_optin_container"><label><input type="checkbox" class="heateor_ss_fb_comments_notifier_optin" value="1" />'+theChampFacebookCommentsNotifierOptinText+"</label></div>":"")+("undefined"!=typeof theChampFacebookCommentsOptinText?'<div class="heateor_ss_fb_comments_optin_container"><label><input type="checkbox" class="heateor_ss_fb_comments_optin" value="1" />'+theChampFacebookCommentsOptinText+"</label></div>":"")+'<div class="fb-comments" data-href="'+theChampFBCommentUrl+'"',""!=theChampFBCommentColor&&(theChampFBCommentingContent+=' data-colorscheme="'+theChampFBCommentColor+'"'),""!=theChampFBCommentNumPosts&&(theChampFBCommentingContent+=' data-numposts="'+theChampFBCommentNumPosts+'"'),theChampFBCommentingContent+=' data-width="'+theChampFBCommentWidth+'"',""!=theChampFBCommentOrderby&&(theChampFBCommentingContent+=' data-order-by="'+theChampFBCommentOrderby+'"'),theChampFBCommentingContent+=" ></div>",t.fb=theChampFBCommentingContent,a.fb="theChampInitiateFB();",t.googleplus="<div class='g-comments' data-href='"+theChampGpCommentsUrl+"' "+(theChampGpCommentsWidth?"data-width='"+theChampGpCommentsWidth+"'":"")+" data-first_party_property='BLOGGER' data-view_type='FILTERED_POSTMOD' ></div>",a.googleplus=" ",n.googleplus="//apis.google.com/js/plusone.js",t.disqus='<div class="embed-container clearfix" id="disqus_thread">'+(""!=theChampDisqusShortname?theChampDisqusShortname:'<div style="font-size: 14px;clear: both;">Specify a Disqus shortname in Super Socializer &gt; Social Commenting section in admin panel</div>')+"</div>",a.disqus="var disqus_shortname = '"+theChampDisqusShortname+"';(function(d) {var dsq = d.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js'; (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(dsq); })(document);";var o='<div class="theChampCommentingTabs"><h3 id="theChampReplyTitle" style="margin-bottom:15px" class="comment-reply-title">'+theChampScLabel+"</h3><ul>";theChampScEnabledTabs=theChampScEnabledTabs.split(",");for(var i=0;i<theChampScEnabledTabs.length;i++){o+='<li id="theChampTabs-'+i+'-li" onclick="',o+="this.setAttribute('class', 'theChampSelectedTab');document.getElementById('theChampTabs-"+i+"').style.display='block';","fb"==theChampScEnabledTabs[i]&&(o+="theChampInitiateFB();");for(var m=0;m<theChampScEnabledTabs.length;m++)m!=i&&(o+="document.getElementById('theChampTabs-"+m+"-li').setAttribute('class', '');document.getElementById('theChampTabs-"+m+"').style.display='none';");o+='">',o+=theChampScTabLabels[theChampScEnabledTabs[i]],o+="</li>"}for(o+="</ul>",i=0;i<theChampScEnabledTabs.length;i++)o+='<div id="theChampTabs-'+i+'" ><div style="clear: both"></div>'+t[theChampScEnabledTabs[i]]+"</div>";o+="</div>",e.innerHTML=o;var h=document.getElementById("reply-title");for(h&&h.remove(),i=0;i<theChampScEnabledTabs.length;i++)if(a[theChampScEnabledTabs[i]]){var s=document.createElement("script");n[theChampScEnabledTabs[i]]&&s.setAttribute("src",n[theChampScEnabledTabs[i]]),s.innerHTML=a[theChampScEnabledTabs[i]],document.getElementById("theChampTabs-"+i).appendChild(s)}for(document.getElementById("theChampTabs-0-li").setAttribute("class","theChampSelectedTab"),i=1;i<theChampScEnabledTabs.length;i++)document.getElementById("theChampTabs-"+i).style.display="none";null!=theChampGetCookie("heateorSsSLOptin")&&jQuery("input.heateor_ss_social_login_optin").prop("checked",!0),jQuery("input.heateor_ss_social_login_optin").click(function(){if(jQuery(this).is(":checked")){if(null==theChampGetCookie("heateorSsSLOptin")){var e=new Date;e.setTime(e.getTime()+31536e6),document.cookie="heateorSsSLOptin=1; expires="+e.toUTCString()+"; path=/"}}else document.cookie="heateorSsSLOptin=; expires=Fri, 02 Jan 1970 00:00:00 UTC; path=/"}),"undefined"!=typeof theChampFacebookCommentsOptinText&&(null!=heateorFcmGetCookie("heateorFcmOptin")&&jQuery("input.heateor_ss_fb_comments_optin").prop("checked",!0),jQuery("input.heateor_ss_fb_comments_optin").click(function(){if(jQuery(this).is(":checked")){if(heateorFcmOptin=1,null==heateorFcmGetCookie("heateorFcmOptin")){var e=new Date;e.setTime(e.getTime()+31536e6),document.cookie="heateorFcmOptin=1; expires="+e.toUTCString()+"; path=/"}}else heateorFcmOptin=0,document.cookie="heateorFcmOptin=; expires=Fri, 02 Jan 1970 00:00:00 UTC; path=/"})),"undefined"!=typeof theChampFacebookCommentsNotifierOptinText&&(null!=heateorFcnGetCookie("heateorFcnOptin")&&jQuery("input.heateor_ss_fb_comments_notifier_optin").prop("checked",!0),jQuery("input.heateor_ss_fb_comments_notifier_optin").click(function(){if(jQuery(this).is(":checked")){if(heateorFcnOptin=1,null==heateorFcnGetCookie("heateorFcnOptin")){var e=new Date;e.setTime(e.getTime()+31536e6),document.cookie="heateorFcnOptin=1; expires="+e.toUTCString()+"; path=/"}}else heateorFcnOptin=0,document.cookie="heateorFcnOptin=; expires=Fri, 02 Jan 1970 00:00:00 UTC; path=/"}))}}theChampLoadEvent(function(){theChampRenderFBCommenting()});
1
+ function theChampRenderFBCommenting(){var e=typeof theChampCommentingId!='undefined'?document.getElementById(theChampCommentingId):'';if(e){var t=[],n=[],a=[];t.wordpress='<div style="clear:both"></div>'+e.innerHTML,theChampFBCommentingContent=("undefined"!=typeof theChampFacebookCommentsNotifierOptinText?'<div class="heateor_ss_fb_comments_notifier_optin_container"><label><input type="checkbox" class="heateor_ss_fb_comments_notifier_optin" value="1" />'+theChampFacebookCommentsNotifierOptinText+"</label></div>":"")+("undefined"!=typeof theChampFacebookCommentsOptinText?'<div class="heateor_ss_fb_comments_optin_container"><label><input type="checkbox" class="heateor_ss_fb_comments_optin" value="1" />'+theChampFacebookCommentsOptinText+"</label></div>":"")+'<div class="fb-comments" data-href="'+theChampFBCommentUrl+'"',""!=theChampFBCommentColor&&(theChampFBCommentingContent+=' data-colorscheme="'+theChampFBCommentColor+'"'),""!=theChampFBCommentNumPosts&&(theChampFBCommentingContent+=' data-numposts="'+theChampFBCommentNumPosts+'"'),theChampFBCommentingContent+=' data-width="'+theChampFBCommentWidth+'"',""!=theChampFBCommentOrderby&&(theChampFBCommentingContent+=' data-order-by="'+theChampFBCommentOrderby+'"'),theChampFBCommentingContent+=" ></div>",t.fb=theChampFBCommentingContent,n.fb="theChampInitiateFB();",t.googleplus="<div class='g-comments' data-href='"+theChampGpCommentsUrl+"' "+(theChampGpCommentsWidth?"data-width='"+theChampGpCommentsWidth+"'":"")+" data-first_party_property='BLOGGER' data-view_type='FILTERED_POSTMOD' ></div>",n.googleplus=" ",a.googleplus="//apis.google.com/js/plusone.js",t.disqus='<div class="embed-container clearfix" id="disqus_thread">'+(""!=theChampDisqusShortname?theChampDisqusShortname:'<div style="font-size: 14px;clear: both;">Specify a Disqus shortname in Super Socializer &gt; Social Commenting section in admin panel</div>')+"</div>",n.disqus="var disqus_shortname = '"+theChampDisqusShortname+"';(function(d) {var dsq = d.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js'; (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(dsq); })(document);";var o='<div class="theChampCommentingTabs"><h3 id="theChampReplyTitle" style="margin-bottom:15px" class="comment-reply-title">'+theChampScLabel+"</h3><ul>";theChampScEnabledTabs=theChampScEnabledTabs.split(",");for(var i=0;i<theChampScEnabledTabs.length;i++){o+='<li id="theChampTabs-'+i+'-li" onclick="',o+="this.setAttribute('class', 'theChampSelectedTab');document.getElementById('theChampTabs-"+i+"').style.display='block';","fb"==theChampScEnabledTabs[i]&&(o+="theChampInitiateFB();");for(var m=0;m<theChampScEnabledTabs.length;m++)m!=i&&(o+="document.getElementById('theChampTabs-"+m+"-li').setAttribute('class', '');document.getElementById('theChampTabs-"+m+"').style.display='none';");o+='">',o+=theChampScTabLabels[theChampScEnabledTabs[i]],o+="</li>"}for(o+="</ul>",i=0;i<theChampScEnabledTabs.length;i++)o+='<div id="theChampTabs-'+i+'" ><div style="clear: both"></div>'+t[theChampScEnabledTabs[i]]+"</div>";o+="</div>",e.innerHTML=o;var h=document.getElementById("reply-title");for(h&&h.remove(),i=0;i<theChampScEnabledTabs.length;i++)if(n[theChampScEnabledTabs[i]]){var s=document.createElement("script");a[theChampScEnabledTabs[i]]&&s.setAttribute("src",a[theChampScEnabledTabs[i]]),s.innerHTML=n[theChampScEnabledTabs[i]],document.getElementById("theChampTabs-"+i).appendChild(s)}for(document.getElementById("theChampTabs-0-li").setAttribute("class","theChampSelectedTab"),i=1;i<theChampScEnabledTabs.length;i++)document.getElementById("theChampTabs-"+i).style.display="none";null!=theChampGetCookie("heateorSsSLOptin")&&jQuery("input.heateor_ss_social_login_optin").length>0&&jQuery("input.heateor_ss_social_login_optin").prop("checked",!0),jQuery("input.heateor_ss_social_login_optin").click(function(){if(jQuery(this).is(":checked")){if(null==theChampGetCookie("heateorSsSLOptin")){var e=new Date;e.setTime(e.getTime()+31536e6),document.cookie="heateorSsSLOptin=1; expires="+e.toUTCString()+"; path=/"}}else document.cookie="heateorSsSLOptin=; expires=Fri, 02 Jan 1970 00:00:00 UTC; path=/"}),"undefined"!=typeof theChampFacebookCommentsOptinText&&(null!=heateorFcmGetCookie("heateorFcmOptin")&&jQuery("input.heateor_ss_fb_comments_optin").prop("checked",!0),jQuery("input.heateor_ss_fb_comments_optin").click(function(){if(jQuery(this).is(":checked")){if(heateorFcmOptin=1,null==heateorFcmGetCookie("heateorFcmOptin")){var e=new Date;e.setTime(e.getTime()+31536e6),document.cookie="heateorFcmOptin=1; expires="+e.toUTCString()+"; path=/"}}else heateorFcmOptin=0,document.cookie="heateorFcmOptin=; expires=Fri, 02 Jan 1970 00:00:00 UTC; path=/"})),"undefined"!=typeof theChampFacebookCommentsNotifierOptinText&&(null!=heateorFcnGetCookie("heateorFcnOptin")&&jQuery("input.heateor_ss_fb_comments_notifier_optin").prop("checked",!0),jQuery("input.heateor_ss_fb_comments_notifier_optin").click(function(){if(jQuery(this).is(":checked")){if(heateorFcnOptin=1,null==heateorFcnGetCookie("heateorFcnOptin")){var e=new Date;e.setTime(e.getTime()+31536e6),document.cookie="heateorFcnOptin=1; expires="+e.toUTCString()+"; path=/"}}else heateorFcnOptin=0,document.cookie="heateorFcnOptin=; expires=Fri, 02 Jan 1970 00:00:00 UTC; path=/"}))}}theChampLoadEvent(function(){theChampRenderFBCommenting()});
js/front/facebook/sdk.js CHANGED
@@ -1,53 +1 @@
1
- function theChampInitiateFB() {
2
- FB.init({
3
- appId: theChampFBKey,
4
- channelUrl: "//" + theChampSiteUrl + "/channel.html",
5
- status: !0,
6
- cookie: !0,
7
- xfbml: !0,
8
- version: "v2.11"
9
- })
10
- }
11
- window.fbAsyncInit = function() {
12
- theChampInitiateFB(), theChampFbIosLogin && theChampAuthUserFB(), "function" == typeof theChampDisplayLoginIcon && theChampDisplayLoginIcon(document, ["theChampFacebookButton", "theChampFacebookLogin"]), ((typeof theChampCommentNotification != 'undefined' && theChampCommentNotification == 1) || (typeof theChampHeateorFcmRecentComments != 'undefined' && theChampHeateorFcmRecentComments == 1)) && FB.Event.subscribe("comment.create", function(e) {
13
- if(typeof e.commentID != 'undefined' && e.commentID){
14
- if(typeof theChampCommentNotification != 'undefined' && theChampCommentNotification == 1){
15
- jQuery.ajax({
16
- type: "POST",
17
- dataType: "json",
18
- url: theChampSiteUrl + "/index.php",
19
- data: {
20
- action: "the_champ_moderate_fb_comments",
21
- data: e
22
- },
23
- success: function(a,b,c) {}
24
- });
25
- }
26
- if(typeof theChampHeateorFcmRecentComments != 'undefined' && theChampHeateorFcmRecentComments == 1){
27
- jQuery.ajax({
28
- type: "POST",
29
- dataType: "json",
30
- url: theChampSiteUrl + "/index.php",
31
- data: {
32
- action: "heateor_fcm_save_fb_comment",
33
- data: e
34
- },
35
- success: function(a,b,c) {}
36
- });
37
- }
38
- }
39
- }), typeof theChampFbLikeMycred != 'undefined' && theChampFbLikeMycred && (FB.Event.subscribe("edge.create", function(e) {
40
- heateorSsmiMycredPoints("Facebook_like_recommend", "", e ? e : "")
41
- }), FB.Event.subscribe("edge.remove", function(e) {
42
- heateorSsmiMycredPoints("Facebook_like_recommend", "", e ? e : "", "Minus point(s) for undoing Facebook like-recommend")
43
- })), typeof theChampSsga != 'undefined' && theChampSsga && (FB.Event.subscribe("edge.create", function(e) {
44
- heateorSsgaSocialPluginsTracking("Facebook", "Like", e ? e : "")
45
- }), FB.Event.subscribe("edge.remove", function(e) {
46
- heateorSsgaSocialPluginsTracking("Facebook", "Unlike", e ? e : "")
47
- }))
48
- },
49
- function(e) {
50
- var t, n = "facebook-jssdk",
51
- o = e.getElementsByTagName("script")[0];
52
- e.getElementById(n) || (t = e.createElement("script"), t.id = n, t.async = !0, t.src = "//connect.facebook.net/" + theChampFBLang + "/sdk.js", o.parentNode.insertBefore(t, o))
53
- }(document);
1
+ function theChampInitiateFB(){FB.init({appId:theChampFBKey,channelUrl:"//"+theChampSiteUrl+"/channel.html",status:!0,cookie:!0,xfbml:!0,version:"v2.11"})}window.fbAsyncInit=function(){theChampInitiateFB(),theChampFbIosLogin&&theChampAuthUserFB(),"function"==typeof theChampDisplayLoginIcon&&theChampDisplayLoginIcon(document,["theChampFacebookButton","theChampFacebookLogin"]),("undefined"!=typeof theChampCommentNotification&&1==theChampCommentNotification||"undefined"!=typeof theChampHeateorFcmRecentComments&&1==theChampHeateorFcmRecentComments)&&FB.Event.subscribe("comment.create",function(e){void 0!==e.commentID&&e.commentID&&("undefined"!=typeof theChampCommentNotification&&1==theChampCommentNotification&&jQuery.ajax({type:"POST",dataType:"json",url:theChampSiteUrl+"/index.php",data:{action:"the_champ_moderate_fb_comments",data:e},success:function(e,t,n){}}),"undefined"!=typeof theChampHeateorFcmRecentComments&&1==theChampHeateorFcmRecentComments&&jQuery.ajax({type:"POST",dataType:"json",url:theChampSiteUrl+"/index.php",data:{action:"heateor_fcm_save_fb_comment",data:e},success:function(e,t,n){}}))}),"undefined"!=typeof theChampFbLikeMycred&&theChampFbLikeMycred&&(FB.Event.subscribe("edge.create",function(e){heateorSsmiMycredPoints("Facebook_like_recommend","",e||"")}),FB.Event.subscribe("edge.remove",function(e){heateorSsmiMycredPoints("Facebook_like_recommend","",e||"","Minus point(s) for undoing Facebook like-recommend")})),"undefined"!=typeof theChampSsga&&theChampSsga&&(FB.Event.subscribe("edge.create",function(e){heateorSsgaSocialPluginsTracking("Facebook","Like",e||"")}),FB.Event.subscribe("edge.remove",function(e){heateorSsgaSocialPluginsTracking("Facebook","Unlike",e||"")}))},function(e){var t,n="facebook-jssdk",o=e.getElementsByTagName("script")[0];e.getElementById(n)||((t=e.createElement("script")).id=n,t.async=!0,t.src="//connect.facebook.net/"+theChampFBLang+"/sdk.js",o.parentNode.insertBefore(t,o))}(document);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
js/front/social_login/common.js CHANGED
@@ -1 +1 @@
1
- function theChampLoadingIcon(){jQuery(".the_champ_login_container").html('<img id="the_champ_loading_image" src="'+theChampLoadingImgPath+'" />')}function theChampInitiateLogin(e){var t=jQuery(e).parent().parent().prev().find(".heateor_ss_social_login_optin");if(jQuery(t).is(":checked")){var a=e.getAttribute("alt");"Login with Facebook"==a?theChampPopup(theChampFacebookAuthUrl):"Login with Twitch"==a?theChampPopup(theChampTwitchAuthUrl):"Login with LiveJournal"==a?heateorSsLJLoginPopup():"Login with Steam"==a?theChampPopup(theChampSteamAuthUrl):"Login with Twitter"==a?theChampPopup(theChampTwitterAuthUrl):"Login with Xing"==a?theChampPopup(theChampXingAuthUrl):("Login with Linkedin"==a&&theChampPopup(theChampLinkedinAuthUrl),"Login with Google"==a?theChampPopup(theChampGoogleAuthUrl):"Login with Vkontakte"==a?theChampPopup(theChampVkontakteAuthUrl):"Login with Instagram"==a&&theChampInitializeInstaLogin())}else jQuery(t).parent().css("color","red")}function theChampDisplayLoginIcon(e,t){if("undefined"!=typeof jQuery)for(var a=0;a<t.length;a++)jQuery("."+t[a]).css("display","block");else for(a=0;a<t.length;a++)for(var h=theChampGetElementsByClass(e,t[a]),i=0;i<h.length;i++)h[i].style.display="block"}function theChampValidateEmail(e){return/^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/.test(e)}function the_champ_save_email(e){var t=document.getElementById("the_champ_email").value.trim(),a=document.getElementById("the_champ_confirm_email").value.trim();return"save"!=e.id||theChampValidateEmail(t)?t!=a?(document.getElementById("the_champ_error").innerHTML="Email addresses do not match",void jQuery("#TB_ajaxContent").css("height","auto")):void theChampCallAjax(function(){theChampSaveEmail(e.id,t)}):(document.getElementById("the_champ_error").innerHTML=theChampEmailPopupErrorMsg,void jQuery("#TB_ajaxContent").css("height","auto"))}function theChampSaveEmail(e,t){document.getElementById("the_champ_error").innerHTML='<img src="'+theChampLoadingImgPath+'" />',jQuery.ajax({type:"POST",dataType:"json",url:theChampAjaxUrl,data:{action:"the_champ_save_email",elemId:e,email:t,id:theChampEmailPopupUniqueId},success:function(e){window.history.pushState({html:"html",pageTitle:"page title"},"","?done=1"),1==e.status&&e.message.response&&"success"==e.message.response?location.href=e.message.url:1==e.status&&"success"==e.message?location.href=theChampRegRedirectionUrl:1==e.status&&"cancelled"==e.message?tb_remove():1==e.status&&"verify"==e.message?document.getElementById("TB_ajaxContent").innerHTML="<strong>"+theChampEmailPopupVerifyMessage+"</strong>":0==e.status&&(document.getElementById("the_champ_error").innerHTML=e.message,jQuery("#TB_ajaxContent").css("height","auto"))},error:function(e,t,a){location.href=decodeURIComponent(theChampRedirectionUrl)}})}function theChampCapitaliseFirstLetter2(e){return e.charAt(0).toUpperCase()+e.slice(1)}if(void 0===theChampLinkingRedirection)var theChampLinkingRedirection="";theChampVerified&&theChampLoadEvent(function(){tb_show(theChampPopupTitle,theChampAjaxUrl)}),theChampEmailPopup&&theChampLoadEvent(function(){tb_show(theChampEmailPopupTitle,theChampEmailAjaxUrl)});var theChampCommentFormLogin=!1;theChampLoadEvent(function(){null!=theChampGetCookie("heateorSsSLOptin")&&jQuery("input.heateor_ss_social_login_optin").prop("checked",!0)}),jQuery("input.heateor_ss_social_login_optin").click(function(){if(jQuery(this).is(":checked")){if(null==theChampGetCookie("heateorSsSLOptin")){var e=new Date;e.setTime(e.getTime()+31536e6),document.cookie="heateorSsSLOptin=1; expires="+e.toUTCString()+"; path=/"}}else document.cookie="heateorSsSLOptin=; expires=Fri, 02 Jan 1970 00:00:00 UTC; path=/"});
1
+ function theChampLoadingIcon(){jQuery(".the_champ_login_container").html('<img id="the_champ_loading_image" src="'+theChampLoadingImgPath+'" />')}function theChampInitiateLogin(e){var t=jQuery(e).parents("div.the_champ_login_container").find(".heateor_ss_social_login_optin");if(0==t.length||jQuery(t).is(":checked")){var a=e.getAttribute("alt");"Login with Facebook"==a?theChampPopup(theChampFacebookAuthUrl):"Login with Twitch"==a?theChampPopup(theChampTwitchAuthUrl):"Login with LiveJournal"==a?heateorSsLJLoginPopup():"Login with Steam"==a?theChampPopup(theChampSteamAuthUrl):"Login with Twitter"==a?theChampPopup(theChampTwitterAuthUrl):"Login with Xing"==a?theChampPopup(theChampXingAuthUrl):("Login with Linkedin"==a&&theChampPopup(theChampLinkedinAuthUrl),"Login with Google"==a?theChampPopup(theChampGoogleAuthUrl):"Login with Vkontakte"==a?theChampPopup(theChampVkontakteAuthUrl):"Login with Instagram"==a&&theChampInitializeInstaLogin())}else t.length>0&&jQuery(t).parent().css("color","red")}function theChampDisplayLoginIcon(e,t){if("undefined"!=typeof jQuery)for(var a=0;a<t.length;a++)jQuery("."+t[a]).css("display","block");else for(a=0;a<t.length;a++)for(var h=theChampGetElementsByClass(e,t[a]),i=0;i<h.length;i++)h[i].style.display="block"}function theChampValidateEmail(e){return/^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/.test(e)}function the_champ_save_email(e){var t=document.getElementById("the_champ_email").value.trim(),a=document.getElementById("the_champ_confirm_email").value.trim();return"save"!=e.id||theChampValidateEmail(t)?t!=a?(document.getElementById("the_champ_error").innerHTML="Email addresses do not match",void jQuery("#TB_ajaxContent").css("height","auto")):void theChampCallAjax(function(){theChampSaveEmail(e.id,t)}):(document.getElementById("the_champ_error").innerHTML=theChampEmailPopupErrorMsg,void jQuery("#TB_ajaxContent").css("height","auto"))}function theChampSaveEmail(e,t){document.getElementById("the_champ_error").innerHTML='<img src="'+theChampLoadingImgPath+'" />',jQuery.ajax({type:"POST",dataType:"json",url:theChampAjaxUrl,data:{action:"the_champ_save_email",elemId:e,email:t,id:theChampEmailPopupUniqueId},success:function(e){window.history.pushState({html:"html",pageTitle:"page title"},"","?done=1"),1==e.status&&e.message.response&&"success"==e.message.response?location.href=e.message.url:1==e.status&&"success"==e.message?location.href=theChampRegRedirectionUrl:1==e.status&&"cancelled"==e.message?tb_remove():1==e.status&&"verify"==e.message?document.getElementById("TB_ajaxContent").innerHTML="<strong>"+theChampEmailPopupVerifyMessage+"</strong>":0==e.status&&(document.getElementById("the_champ_error").innerHTML=e.message,jQuery("#TB_ajaxContent").css("height","auto"))},error:function(e,t,a){location.href=decodeURIComponent(theChampRedirectionUrl)}})}function theChampCapitaliseFirstLetter2(e){return e.charAt(0).toUpperCase()+e.slice(1)}if(void 0===theChampLinkingRedirection)var theChampLinkingRedirection="";theChampVerified&&theChampLoadEvent(function(){tb_show(theChampPopupTitle,theChampAjaxUrl)}),theChampEmailPopup&&theChampLoadEvent(function(){tb_show(theChampEmailPopupTitle,theChampEmailAjaxUrl)});var theChampCommentFormLogin=!1;theChampLoadEvent(function(){null!=theChampGetCookie("heateorSsSLOptin")&&jQuery("input.heateor_ss_social_login_optin").prop("checked",!0)}),jQuery("input.heateor_ss_social_login_optin").click(function(){if(jQuery(this).is(":checked")){if(null==theChampGetCookie("heateorSsSLOptin")){var e=new Date;e.setTime(e.getTime()+31536e6),document.cookie="heateorSsSLOptin=1; expires="+e.toUTCString()+"; path=/"}}else document.cookie="heateorSsSLOptin=; expires=Fri, 02 Jan 1970 00:00:00 UTC; path=/"});
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-05-20 00:59+0530\n"
6
- "PO-Revision-Date: 2018-05-20 00:59+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <support@heateor.com>\n"
9
  "Language: ar\n"
@@ -27,7 +27,7 @@ msgstr ""
27
  msgid "Graph returned an error: "
28
  msgstr ""
29
 
30
- #: ../super_socializer.php:567
31
  #, fuzzy
32
  msgid ""
33
  "cURL is not enabled at your website server. Please contact your website "
@@ -36,7 +36,7 @@ msgstr ""
36
  "يتم تمكين جعل الضفيرة متأكدا في الخادم موقع الويب الخاص بك. قد تحتاج إلى "
37
  "الاتصال بمسؤول الملقم من موقع الويب الخاص بك للتحقق من ذلك"
38
 
39
- #: ../super_socializer.php:594
40
  #, php-format
41
  msgid ""
42
  "Enter exactly the following url in <strong>Website</strong> and "
@@ -45,7 +45,7 @@ msgstr ""
45
  "أدخل بالضبط العنوان التالي في <strong>الموقع واستدعاء رابط</strong> الخيارات "
46
  "في تويتر التطبيق الخاص بك (راجع الخطوة 3 %s )"
47
 
48
- #: ../super_socializer.php:597
49
  msgid ""
50
  "Make sure cURL is enabled at your website server. You may need to contact "
51
  "the server administrator of your website to verify this"
@@ -53,155 +53,155 @@ msgstr ""
53
  "يتم تمكين جعل الضفيرة متأكدا في الخادم موقع الويب الخاص بك. قد تحتاج إلى "
54
  "الاتصال بمسؤول الملقم من موقع الويب الخاص بك للتحقق من ذلك"
55
 
56
- #: ../super_socializer.php:598
57
  #, php-format
58
  msgid ""
59
  "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
60
  msgstr ""
61
 
62
- #: ../super_socializer.php:864 ../helper.php:963
63
  msgid "Please verify your email address to login."
64
  msgstr "يرجى التحقق من عنوان البريد الإلكتروني الخاص بك للدخول."
65
 
66
- #: ../super_socializer.php:864
67
  msgid "Your email has been verified. Now you can login to your account"
68
  msgstr "تم التحقق من بريدك الإلكتروني. الآن يمكنك تسجيل الدخول إلى حسابك"
69
 
70
- #: ../super_socializer.php:868
71
  msgid "Notification"
72
  msgstr "تنبيهات"
73
 
74
- #: ../super_socializer.php:886 ../admin/social_login.php:756
75
  msgid "Email required"
76
  msgstr "البريد الإلكتروني - إدخال القيمة إجباري"
77
 
78
- #: ../super_socializer.php:889
79
  msgid "Please check your email inbox to complete the registration."
80
  msgstr "يرجى التحقق من بريدك الالكتروني لإكمال التسجيل."
81
 
82
- #: ../super_socializer.php:896 ../helper.php:503
83
  msgid "Enter your LiveJournal username"
84
  msgstr ""
85
 
86
- #: ../super_socializer.php:970
87
  msgid "Leave a reply"
88
  msgstr "اترك رد"
89
 
90
- #: ../super_socializer.php:982 ../inc/social_sharing.php:233
91
  msgid "Shares"
92
  msgstr ""
93
 
94
- #: ../super_socializer.php:982 ../inc/social_sharing.php:233
95
  msgid "Share"
96
  msgstr ""
97
 
98
- #: ../super_socializer.php:982
99
  #, fuzzy
100
  msgid "Link copied."
101
  msgstr "شارك الأخرين عبر لنكيدان"
102
 
103
- #: ../super_socializer.php:1225
104
  #, fuzzy
105
  msgid "Super Socializer - General Options"
106
  msgstr "آخر تسجيل دخول | Last Login"
107
 
108
- #: ../super_socializer.php:1225 ../admin/general_options.php:11
109
  #: ../admin/social_commenting.php:43
110
  #, fuzzy
111
  msgid "General Options"
112
  msgstr "المشاركات الأفقي"
113
 
114
- #: ../super_socializer.php:1293 ../helper.php:885
115
  #, fuzzy
116
  msgid "Social Avatar"
117
  msgstr "صغير الرمزية رابط"
118
 
119
- #: ../super_socializer.php:1296
120
  msgid "Small Avatar Url"
121
  msgstr "صغير الرمزية رابط"
122
 
123
- #: ../super_socializer.php:1300
124
  #, fuzzy
125
  msgid "Large Avatar Url"
126
  msgstr "الرابط المصدر و الرابط الهدف لا يمكن أن يكونا متطابقين."
127
 
128
- #: ../super_socializer.php:1304 ../helper.php:888
129
  msgid ""
130
  "Do not fetch and update social avatar from my profile, next time I Social "
131
  "Login"
132
  msgstr ""
133
 
134
- #: ../super_socializer.php:1308 ../helper.php:889
135
  msgid "Update social avatar, next time I Social Login"
136
  msgstr ""
137
 
138
- #: ../super_socializer.php:1381 ../super_socializer.php:1844
139
  msgid ""
140
  "Your browser is blocking some features of this website. Please follow the "
141
  "instructions at {support_url} to unblock these."
142
  msgstr ""
143
 
144
- #: ../super_socializer.php:1387
145
  msgid "Login with your Social ID"
146
  msgstr ""
147
 
148
- #: ../super_socializer.php:1388
149
  msgid "Email you entered is already registered or invalid"
150
  msgstr "البريد الإلكتروني الذي أدخلته غير مسجل من قبل أو غير صالحة"
151
 
152
- #: ../super_socializer.php:1393
153
  msgid "Please enter a valid email address. You might be required to verify it"
154
  msgstr "يرجى إدخال عنوان بريد إلكتروني صالح. قد تكون هناك حاجة للتحقق من ذلك"
155
 
156
- #: ../super_socializer.php:1597
157
  msgid ""
158
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
159
  "current version of Super Socialzer"
160
  msgstr ""
161
 
162
- #: ../super_socializer.php:1606
163
  msgid ""
164
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
165
  "version of Super Socialzer"
166
  msgstr ""
167
 
168
- #: ../super_socializer.php:1615
169
  msgid ""
170
  "Update \"Social Login Buttons\" add-on for compatibility with current "
171
  "version of Super Socialzer"
172
  msgstr ""
173
 
174
- #: ../super_socializer.php:1624
175
  msgid ""
176
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
177
  "with current version of Super Socialzer"
178
  msgstr ""
179
 
180
- #: ../super_socializer.php:1633
181
  msgid ""
182
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
183
  "with current version of Super Socialzer"
184
  msgstr ""
185
 
186
- #: ../super_socializer.php:1640
187
  msgid ""
188
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
189
  "LiveJournal Login of Super Socialzer"
190
  msgstr ""
191
 
192
- #: ../super_socializer.php:1651
193
  #, php-format
194
  msgid ""
195
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
196
  msgstr ""
197
 
198
- #: ../super_socializer.php:1667
199
  #, php-format
200
  msgid ""
201
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
202
  msgstr ""
203
 
204
- #: ../super_socializer.php:1691
205
  #, php-format
206
  msgid ""
207
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -209,13 +209,13 @@ msgid ""
209
  "target=\"_blank\">here</a>"
210
  msgstr ""
211
 
212
- #: ../super_socializer.php:1691 ../super_socializer.php:1716
213
- #: ../super_socializer.php:1741 ../super_socializer.php:1774
214
- #: ../super_socializer.php:1799
215
  msgid "Okay"
216
  msgstr ""
217
 
218
- #: ../super_socializer.php:1716
219
  #, php-format
220
  msgid ""
221
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -223,7 +223,7 @@ msgid ""
223
  "target=\"_blank\">here</a>"
224
  msgstr ""
225
 
226
- #: ../super_socializer.php:1741
227
  #, php-format
228
  msgid ""
229
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -231,13 +231,13 @@ msgid ""
231
  "target=\"_blank\">here</a>"
232
  msgstr ""
233
 
234
- #: ../super_socializer.php:1752
235
  #, php-format
236
  msgid ""
237
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
238
  msgstr ""
239
 
240
- #: ../super_socializer.php:1774
241
  #, php-format
242
  msgid ""
243
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -245,7 +245,7 @@ msgid ""
245
  "\"%s\" target=\"_blank\">here</a>"
246
  msgstr ""
247
 
248
- #: ../super_socializer.php:1799
249
  #, php-format
250
  msgid ""
251
  "Your website visitors will see a popup notification (only once) if their "
@@ -285,11 +285,11 @@ msgstr ""
285
  msgid "Settings"
286
  msgstr "الإعدادات"
287
 
288
- #: ../helper.php:552
289
  msgid "Account linked successfully"
290
  msgstr "تم ربط حسابك بنجاح"
291
 
292
- #: ../helper.php:556
293
  msgid "Account already exists or linked"
294
  msgstr "حساب موجود بالفعل أو مرتبطة مسبقاً"
295
 
@@ -366,7 +366,7 @@ msgstr "الرابط المصدر و الرابط الهدف لا يمكن أن
366
 
367
  #: ../helper.php:900 ../admin/general_options.php:128
368
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
369
- #: ../admin/social_login.php:1142 ../admin/like_buttons.php:822
370
  #, fuzzy
371
  msgid "Save Changes"
372
  msgstr "حفظ"
@@ -457,14 +457,14 @@ msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
457
  msgstr ""
458
 
459
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
460
- #: ../admin/social_commenting.php:492 ../admin/social_login.php:1147
461
  #: ../admin/like_buttons.php:827
462
  #, fuzzy
463
  msgid "Instagram Shoutout"
464
  msgstr "إنستاجرام"
465
 
466
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
467
- #: ../admin/social_commenting.php:494 ../admin/social_login.php:1149
468
  #: ../admin/like_buttons.php:829
469
  msgid ""
470
  "If you can send (to hello@heateor.com) how our plugin is helping your "
@@ -473,7 +473,7 @@ msgid ""
473
  msgstr ""
474
 
475
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
476
- #: ../admin/social_commenting.php:495 ../admin/social_login.php:1150
477
  #: ../admin/like_buttons.php:830
478
  msgid ""
479
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
@@ -484,7 +484,7 @@ msgid ""
484
  msgstr ""
485
 
486
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
487
- #: ../admin/social_commenting.php:496 ../admin/social_login.php:1151
488
  #: ../admin/like_buttons.php:831
489
  msgid ""
490
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
@@ -639,7 +639,7 @@ msgstr ""
639
 
640
  #: ../admin/social_sharing.php:52 ../admin/social_sharing.php:1905
641
  #: ../admin/social_sharing.php:1907 ../admin/social_login.php:41
642
- #: ../admin/social_login.php:1109 ../admin/like_buttons.php:47
643
  #: ../admin/like_buttons.php:793
644
  #, fuzzy
645
  msgid "Shortcode & Widget"
@@ -652,7 +652,7 @@ msgstr "مستكشف أخطاء مشاركة في ألفيس بوك"
652
 
653
  #: ../admin/social_sharing.php:54 ../admin/social_sharing.php:1938
654
  #: ../admin/social_commenting.php:36 ../admin/social_commenting.php:471
655
- #: ../admin/social_login.php:42 ../admin/social_login.php:1123
656
  #: ../admin/like_buttons.php:48 ../admin/like_buttons.php:806
657
  #, fuzzy
658
  msgid "FAQ"
@@ -1470,7 +1470,7 @@ msgstr ""
1470
  "إشكالية (حيث تقاسم بوك لا يعمل بشكل صحيح) من موقع الويب الخاص بك في حقل النص:"
1471
 
1472
  #: ../admin/social_sharing.php:1940 ../admin/social_commenting.php:473
1473
- #: ../admin/social_login.php:1125
1474
  msgid ""
1475
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1476
  "an online website for the plugin to function properly."
@@ -1498,7 +1498,7 @@ msgid ""
1498
  msgstr ""
1499
 
1500
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1501
- #: ../admin/social_login.php:1131
1502
  msgid "Why is my browser blocking some features of the plugin?"
1503
  msgstr ""
1504
 
@@ -1894,7 +1894,7 @@ msgstr "إنشاء ملف الإعدادات"
1894
  msgid "GDPR"
1895
  msgstr ""
1896
 
1897
- #: ../admin/social_login.php:39 ../admin/social_login.php:1060
1898
  msgid "XProfile Integration"
1899
  msgstr ""
1900
 
@@ -2612,57 +2612,67 @@ msgstr ""
2612
  "الدخول دون التحقق من البريد الإلكتروني صفحته/صفحتها"
2613
 
2614
  #: ../admin/social_login.php:984
 
 
 
 
 
 
 
 
 
 
2615
  msgid "Opt-in text"
2616
  msgstr ""
2617
 
2618
- #: ../admin/social_login.php:994
2619
  #, fuzzy
2620
  msgid "Text for the opt-in appearing above the social login icons"
2621
  msgstr "نص للعرض أعلاه واجهة \"تسجيل الدخول الاجتماعي\""
2622
 
2623
- #: ../admin/social_login.php:1002
2624
  msgid "Text to link to Privacy Policy page"
2625
  msgstr ""
2626
 
2627
- #: ../admin/social_login.php:1012
2628
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2629
  msgstr ""
2630
 
2631
- #: ../admin/social_login.php:1020
2632
  msgid "Privacy Policy Url"
2633
  msgstr ""
2634
 
2635
- #: ../admin/social_login.php:1030
2636
  #, fuzzy
2637
  msgid "Url of the privacy policy page of your website"
2638
  msgstr "URL لعملاء الموقع (اختياري)"
2639
 
2640
- #: ../admin/social_login.php:1080 ../inc/widget.php:248 ../inc/widget.php:414
2641
  #: ../inc/widget.php:578 ../inc/widget.php:726
2642
  #, fuzzy
2643
  msgid "Select"
2644
  msgstr "أختر ..."
2645
 
2646
- #: ../admin/social_login.php:1111
2647
  #, fuzzy
2648
  msgid "Social Login Shortcode & Widget"
2649
  msgstr "استخدم كود مختصر | Include the shortcode"
2650
 
2651
- #: ../admin/social_login.php:1112
2652
  msgid "Social Linking Shortcode"
2653
  msgstr "الربط الاجتماعي رمز قصير"
2654
 
2655
- #: ../admin/social_login.php:1127
2656
  msgid "Why is social login not working?"
2657
  msgstr ""
2658
 
2659
- #: ../admin/social_login.php:1128
2660
  msgid ""
2661
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2662
  "belong to the same app"
2663
  msgstr ""
2664
 
2665
- #: ../admin/social_login.php:1130
2666
  msgid ""
2667
  "Why the user is not appearing logged in even after Social Login until the "
2668
  "webpage is refreshed manually?"
@@ -2929,29 +2939,29 @@ msgstr "طلب غير صحيح"
2929
  msgid "Providers not selected"
2930
  msgstr "محدد | selected"
2931
 
2932
- #: ../inc/social_login.php:710
2933
  #, fuzzy
2934
  msgid "Email"
2935
  msgstr "البريد الإلكتروني"
2936
 
2937
- #: ../inc/social_login.php:711
2938
  msgid "Confirm email"
2939
  msgstr ""
2940
 
2941
- #: ../inc/social_login.php:713
2942
  msgid "Save"
2943
  msgstr ""
2944
 
2945
- #: ../inc/social_login.php:714
2946
  msgid "Cancel"
2947
  msgstr ""
2948
 
2949
- #: ../inc/social_login.php:788
2950
  #, fuzzy
2951
  msgid "Email Verification"
2952
  msgstr "تمكين ايقونات المشاركة عبر البريد الإلكتروني "
2953
 
2954
- #: ../inc/social_login.php:790
2955
  msgid ""
2956
  "Please click on the following link or paste it in browser to verify your "
2957
  "email"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-05-26 08:46+0530\n"
6
+ "PO-Revision-Date: 2018-05-26 08:46+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <support@heateor.com>\n"
9
  "Language: ar\n"
27
  msgid "Graph returned an error: "
28
  msgstr ""
29
 
30
+ #: ../super_socializer.php:569
31
  #, fuzzy
32
  msgid ""
33
  "cURL is not enabled at your website server. Please contact your website "
36
  "يتم تمكين جعل الضفيرة متأكدا في الخادم موقع الويب الخاص بك. قد تحتاج إلى "
37
  "الاتصال بمسؤول الملقم من موقع الويب الخاص بك للتحقق من ذلك"
38
 
39
+ #: ../super_socializer.php:596
40
  #, php-format
41
  msgid ""
42
  "Enter exactly the following url in <strong>Website</strong> and "
45
  "أدخل بالضبط العنوان التالي في <strong>الموقع واستدعاء رابط</strong> الخيارات "
46
  "في تويتر التطبيق الخاص بك (راجع الخطوة 3 %s )"
47
 
48
+ #: ../super_socializer.php:599
49
  msgid ""
50
  "Make sure cURL is enabled at your website server. You may need to contact "
51
  "the server administrator of your website to verify this"
53
  "يتم تمكين جعل الضفيرة متأكدا في الخادم موقع الويب الخاص بك. قد تحتاج إلى "
54
  "الاتصال بمسؤول الملقم من موقع الويب الخاص بك للتحقق من ذلك"
55
 
56
+ #: ../super_socializer.php:600
57
  #, php-format
58
  msgid ""
59
  "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
60
  msgstr ""
61
 
62
+ #: ../super_socializer.php:866 ../helper.php:963
63
  msgid "Please verify your email address to login."
64
  msgstr "يرجى التحقق من عنوان البريد الإلكتروني الخاص بك للدخول."
65
 
66
+ #: ../super_socializer.php:866
67
  msgid "Your email has been verified. Now you can login to your account"
68
  msgstr "تم التحقق من بريدك الإلكتروني. الآن يمكنك تسجيل الدخول إلى حسابك"
69
 
70
+ #: ../super_socializer.php:870
71
  msgid "Notification"
72
  msgstr "تنبيهات"
73
 
74
+ #: ../super_socializer.php:888 ../admin/social_login.php:756
75
  msgid "Email required"
76
  msgstr "البريد الإلكتروني - إدخال القيمة إجباري"
77
 
78
+ #: ../super_socializer.php:891
79
  msgid "Please check your email inbox to complete the registration."
80
  msgstr "يرجى التحقق من بريدك الالكتروني لإكمال التسجيل."
81
 
82
+ #: ../super_socializer.php:898 ../helper.php:503
83
  msgid "Enter your LiveJournal username"
84
  msgstr ""
85
 
86
+ #: ../super_socializer.php:972
87
  msgid "Leave a reply"
88
  msgstr "اترك رد"
89
 
90
+ #: ../super_socializer.php:984 ../inc/social_sharing.php:233
91
  msgid "Shares"
92
  msgstr ""
93
 
94
+ #: ../super_socializer.php:984 ../inc/social_sharing.php:233
95
  msgid "Share"
96
  msgstr ""
97
 
98
+ #: ../super_socializer.php:984
99
  #, fuzzy
100
  msgid "Link copied."
101
  msgstr "شارك الأخرين عبر لنكيدان"
102
 
103
+ #: ../super_socializer.php:1227
104
  #, fuzzy
105
  msgid "Super Socializer - General Options"
106
  msgstr "آخر تسجيل دخول | Last Login"
107
 
108
+ #: ../super_socializer.php:1227 ../admin/general_options.php:11
109
  #: ../admin/social_commenting.php:43
110
  #, fuzzy
111
  msgid "General Options"
112
  msgstr "المشاركات الأفقي"
113
 
114
+ #: ../super_socializer.php:1295 ../helper.php:885
115
  #, fuzzy
116
  msgid "Social Avatar"
117
  msgstr "صغير الرمزية رابط"
118
 
119
+ #: ../super_socializer.php:1298
120
  msgid "Small Avatar Url"
121
  msgstr "صغير الرمزية رابط"
122
 
123
+ #: ../super_socializer.php:1302
124
  #, fuzzy
125
  msgid "Large Avatar Url"
126
  msgstr "الرابط المصدر و الرابط الهدف لا يمكن أن يكونا متطابقين."
127
 
128
+ #: ../super_socializer.php:1306 ../helper.php:888
129
  msgid ""
130
  "Do not fetch and update social avatar from my profile, next time I Social "
131
  "Login"
132
  msgstr ""
133
 
134
+ #: ../super_socializer.php:1310 ../helper.php:889
135
  msgid "Update social avatar, next time I Social Login"
136
  msgstr ""
137
 
138
+ #: ../super_socializer.php:1383 ../super_socializer.php:1853
139
  msgid ""
140
  "Your browser is blocking some features of this website. Please follow the "
141
  "instructions at {support_url} to unblock these."
142
  msgstr ""
143
 
144
+ #: ../super_socializer.php:1389
145
  msgid "Login with your Social ID"
146
  msgstr ""
147
 
148
+ #: ../super_socializer.php:1390
149
  msgid "Email you entered is already registered or invalid"
150
  msgstr "البريد الإلكتروني الذي أدخلته غير مسجل من قبل أو غير صالحة"
151
 
152
+ #: ../super_socializer.php:1395
153
  msgid "Please enter a valid email address. You might be required to verify it"
154
  msgstr "يرجى إدخال عنوان بريد إلكتروني صالح. قد تكون هناك حاجة للتحقق من ذلك"
155
 
156
+ #: ../super_socializer.php:1600
157
  msgid ""
158
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
159
  "current version of Super Socialzer"
160
  msgstr ""
161
 
162
+ #: ../super_socializer.php:1609
163
  msgid ""
164
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
165
  "version of Super Socialzer"
166
  msgstr ""
167
 
168
+ #: ../super_socializer.php:1618
169
  msgid ""
170
  "Update \"Social Login Buttons\" add-on for compatibility with current "
171
  "version of Super Socialzer"
172
  msgstr ""
173
 
174
+ #: ../super_socializer.php:1627
175
  msgid ""
176
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
177
  "with current version of Super Socialzer"
178
  msgstr ""
179
 
180
+ #: ../super_socializer.php:1636
181
  msgid ""
182
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
183
  "with current version of Super Socialzer"
184
  msgstr ""
185
 
186
+ #: ../super_socializer.php:1643
187
  msgid ""
188
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
189
  "LiveJournal Login of Super Socialzer"
190
  msgstr ""
191
 
192
+ #: ../super_socializer.php:1654
193
  #, php-format
194
  msgid ""
195
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
196
  msgstr ""
197
 
198
+ #: ../super_socializer.php:1670
199
  #, php-format
200
  msgid ""
201
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
202
  msgstr ""
203
 
204
+ #: ../super_socializer.php:1694
205
  #, php-format
206
  msgid ""
207
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
209
  "target=\"_blank\">here</a>"
210
  msgstr ""
211
 
212
+ #: ../super_socializer.php:1694 ../super_socializer.php:1719
213
+ #: ../super_socializer.php:1744 ../super_socializer.php:1777
214
+ #: ../super_socializer.php:1802
215
  msgid "Okay"
216
  msgstr ""
217
 
218
+ #: ../super_socializer.php:1719
219
  #, php-format
220
  msgid ""
221
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
223
  "target=\"_blank\">here</a>"
224
  msgstr ""
225
 
226
+ #: ../super_socializer.php:1744
227
  #, php-format
228
  msgid ""
229
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
231
  "target=\"_blank\">here</a>"
232
  msgstr ""
233
 
234
+ #: ../super_socializer.php:1755
235
  #, php-format
236
  msgid ""
237
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
238
  msgstr ""
239
 
240
+ #: ../super_socializer.php:1777
241
  #, php-format
242
  msgid ""
243
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
245
  "\"%s\" target=\"_blank\">here</a>"
246
  msgstr ""
247
 
248
+ #: ../super_socializer.php:1802
249
  #, php-format
250
  msgid ""
251
  "Your website visitors will see a popup notification (only once) if their "
285
  msgid "Settings"
286
  msgstr "الإعدادات"
287
 
288
+ #: ../helper.php:548
289
  msgid "Account linked successfully"
290
  msgstr "تم ربط حسابك بنجاح"
291
 
292
+ #: ../helper.php:552
293
  msgid "Account already exists or linked"
294
  msgstr "حساب موجود بالفعل أو مرتبطة مسبقاً"
295
 
366
 
367
  #: ../helper.php:900 ../admin/general_options.php:128
368
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
369
+ #: ../admin/social_login.php:1162 ../admin/like_buttons.php:822
370
  #, fuzzy
371
  msgid "Save Changes"
372
  msgstr "حفظ"
457
  msgstr ""
458
 
459
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
460
+ #: ../admin/social_commenting.php:492 ../admin/social_login.php:1167
461
  #: ../admin/like_buttons.php:827
462
  #, fuzzy
463
  msgid "Instagram Shoutout"
464
  msgstr "إنستاجرام"
465
 
466
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
467
+ #: ../admin/social_commenting.php:494 ../admin/social_login.php:1169
468
  #: ../admin/like_buttons.php:829
469
  msgid ""
470
  "If you can send (to hello@heateor.com) how our plugin is helping your "
473
  msgstr ""
474
 
475
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
476
+ #: ../admin/social_commenting.php:495 ../admin/social_login.php:1170
477
  #: ../admin/like_buttons.php:830
478
  msgid ""
479
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
484
  msgstr ""
485
 
486
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
487
+ #: ../admin/social_commenting.php:496 ../admin/social_login.php:1171
488
  #: ../admin/like_buttons.php:831
489
  msgid ""
490
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
639
 
640
  #: ../admin/social_sharing.php:52 ../admin/social_sharing.php:1905
641
  #: ../admin/social_sharing.php:1907 ../admin/social_login.php:41
642
+ #: ../admin/social_login.php:1129 ../admin/like_buttons.php:47
643
  #: ../admin/like_buttons.php:793
644
  #, fuzzy
645
  msgid "Shortcode & Widget"
652
 
653
  #: ../admin/social_sharing.php:54 ../admin/social_sharing.php:1938
654
  #: ../admin/social_commenting.php:36 ../admin/social_commenting.php:471
655
+ #: ../admin/social_login.php:42 ../admin/social_login.php:1143
656
  #: ../admin/like_buttons.php:48 ../admin/like_buttons.php:806
657
  #, fuzzy
658
  msgid "FAQ"
1470
  "إشكالية (حيث تقاسم بوك لا يعمل بشكل صحيح) من موقع الويب الخاص بك في حقل النص:"
1471
 
1472
  #: ../admin/social_sharing.php:1940 ../admin/social_commenting.php:473
1473
+ #: ../admin/social_login.php:1145
1474
  msgid ""
1475
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1476
  "an online website for the plugin to function properly."
1498
  msgstr ""
1499
 
1500
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1501
+ #: ../admin/social_login.php:1151
1502
  msgid "Why is my browser blocking some features of the plugin?"
1503
  msgstr ""
1504
 
1894
  msgid "GDPR"
1895
  msgstr ""
1896
 
1897
+ #: ../admin/social_login.php:39 ../admin/social_login.php:1080
1898
  msgid "XProfile Integration"
1899
  msgstr ""
1900
 
2612
  "الدخول دون التحقق من البريد الإلكتروني صفحته/صفحتها"
2613
 
2614
  #: ../admin/social_login.php:984
2615
+ #, fuzzy
2616
+ msgid "Enable GDPR opt-in"
2617
+ msgstr "إتاحة التعليق من هارد"
2618
+
2619
+ #: ../admin/social_login.php:994
2620
+ msgid ""
2621
+ "Enable it to show GDPR opt-in for social login and social account linking"
2622
+ msgstr ""
2623
+
2624
+ #: ../admin/social_login.php:1003
2625
  msgid "Opt-in text"
2626
  msgstr ""
2627
 
2628
+ #: ../admin/social_login.php:1013
2629
  #, fuzzy
2630
  msgid "Text for the opt-in appearing above the social login icons"
2631
  msgstr "نص للعرض أعلاه واجهة \"تسجيل الدخول الاجتماعي\""
2632
 
2633
+ #: ../admin/social_login.php:1021
2634
  msgid "Text to link to Privacy Policy page"
2635
  msgstr ""
2636
 
2637
+ #: ../admin/social_login.php:1031
2638
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2639
  msgstr ""
2640
 
2641
+ #: ../admin/social_login.php:1039
2642
  msgid "Privacy Policy Url"
2643
  msgstr ""
2644
 
2645
+ #: ../admin/social_login.php:1049
2646
  #, fuzzy
2647
  msgid "Url of the privacy policy page of your website"
2648
  msgstr "URL لعملاء الموقع (اختياري)"
2649
 
2650
+ #: ../admin/social_login.php:1100 ../inc/widget.php:248 ../inc/widget.php:414
2651
  #: ../inc/widget.php:578 ../inc/widget.php:726
2652
  #, fuzzy
2653
  msgid "Select"
2654
  msgstr "أختر ..."
2655
 
2656
+ #: ../admin/social_login.php:1131
2657
  #, fuzzy
2658
  msgid "Social Login Shortcode & Widget"
2659
  msgstr "استخدم كود مختصر | Include the shortcode"
2660
 
2661
+ #: ../admin/social_login.php:1132
2662
  msgid "Social Linking Shortcode"
2663
  msgstr "الربط الاجتماعي رمز قصير"
2664
 
2665
+ #: ../admin/social_login.php:1147
2666
  msgid "Why is social login not working?"
2667
  msgstr ""
2668
 
2669
+ #: ../admin/social_login.php:1148
2670
  msgid ""
2671
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2672
  "belong to the same app"
2673
  msgstr ""
2674
 
2675
+ #: ../admin/social_login.php:1150
2676
  msgid ""
2677
  "Why the user is not appearing logged in even after Social Login until the "
2678
  "webpage is refreshed manually?"
2939
  msgid "Providers not selected"
2940
  msgstr "محدد | selected"
2941
 
2942
+ #: ../inc/social_login.php:712
2943
  #, fuzzy
2944
  msgid "Email"
2945
  msgstr "البريد الإلكتروني"
2946
 
2947
+ #: ../inc/social_login.php:713
2948
  msgid "Confirm email"
2949
  msgstr ""
2950
 
2951
+ #: ../inc/social_login.php:715
2952
  msgid "Save"
2953
  msgstr ""
2954
 
2955
+ #: ../inc/social_login.php:716
2956
  msgid "Cancel"
2957
  msgstr ""
2958
 
2959
+ #: ../inc/social_login.php:790
2960
  #, fuzzy
2961
  msgid "Email Verification"
2962
  msgstr "تمكين ايقونات المشاركة عبر البريد الإلكتروني "
2963
 
2964
+ #: ../inc/social_login.php:792
2965
  msgid ""
2966
  "Please click on the following link or paste it in browser to verify your "
2967
  "email"
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-05-20 00:59+0530\n"
6
- "PO-Revision-Date: 2018-05-20 00:59+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: es\n"
@@ -28,7 +28,7 @@ msgstr ""
28
  msgid "Graph returned an error: "
29
  msgstr ""
30
 
31
- #: ../super_socializer.php:567
32
  #, fuzzy
33
  msgid ""
34
  "cURL is not enabled at your website server. Please contact your website "
@@ -38,7 +38,7 @@ msgstr ""
38
  "posible que necesites contactar con el administrador de tu servidor para "
39
  "verificar esto"
40
 
41
- #: ../super_socializer.php:594
42
  #, php-format
43
  msgid ""
44
  "Enter exactly the following url in <strong>Website</strong> and "
@@ -47,7 +47,7 @@ msgstr ""
47
  "Introduce exactamente la siguiente URL en las <strong>Website</strong> y "
48
  "<strong>Callback Url</strong> opciones en tu Twitter app (ver paso 3 %s)"
49
 
50
- #: ../super_socializer.php:597
51
  msgid ""
52
  "Make sure cURL is enabled at your website server. You may need to contact "
53
  "the server administrator of your website to verify this"
@@ -56,77 +56,77 @@ msgstr ""
56
  "posible que necesites contactar con el administrador de tu servidor para "
57
  "verificar esto"
58
 
59
- #: ../super_socializer.php:598
60
  #, php-format
61
  msgid ""
62
  "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
63
  msgstr ""
64
 
65
- #: ../super_socializer.php:864 ../helper.php:963
66
  msgid "Please verify your email address to login."
67
  msgstr "Por favor verifica tu dirección de email para ingresar."
68
 
69
- #: ../super_socializer.php:864
70
  msgid "Your email has been verified. Now you can login to your account"
71
  msgstr "Tu email ha sido verificado. Ahora puedes ingresar en tu cuenta"
72
 
73
- #: ../super_socializer.php:868
74
  msgid "Notification"
75
  msgstr "Notificación"
76
 
77
- #: ../super_socializer.php:886 ../admin/social_login.php:756
78
  msgid "Email required"
79
  msgstr "Email requerido"
80
 
81
- #: ../super_socializer.php:889
82
  msgid "Please check your email inbox to complete the registration."
83
  msgstr ""
84
  "Por favor revisa la bandeja de entrada de tu correo para completar el "
85
  "registro."
86
 
87
- #: ../super_socializer.php:896 ../helper.php:503
88
  msgid "Enter your LiveJournal username"
89
  msgstr ""
90
 
91
- #: ../super_socializer.php:970
92
  msgid "Leave a reply"
93
  msgstr "Deja una respuesta"
94
 
95
- #: ../super_socializer.php:982 ../inc/social_sharing.php:233
96
  msgid "Shares"
97
  msgstr ""
98
 
99
- #: ../super_socializer.php:982 ../inc/social_sharing.php:233
100
  msgid "Share"
101
  msgstr ""
102
 
103
- #: ../super_socializer.php:982
104
  #, fuzzy
105
  msgid "Link copied."
106
  msgstr "LinkedIn"
107
 
108
- #: ../super_socializer.php:1225
109
  msgid "Super Socializer - General Options"
110
  msgstr "Super Socializer - Opciones Generales"
111
 
112
- #: ../super_socializer.php:1225 ../admin/general_options.php:11
113
  #: ../admin/social_commenting.php:43
114
  msgid "General Options"
115
  msgstr "Opciones Generales"
116
 
117
- #: ../super_socializer.php:1293 ../helper.php:885
118
  msgid "Social Avatar"
119
  msgstr "Avatar Social"
120
 
121
- #: ../super_socializer.php:1296
122
  msgid "Small Avatar Url"
123
  msgstr "Url de Avatar Pequeño"
124
 
125
- #: ../super_socializer.php:1300
126
  msgid "Large Avatar Url"
127
  msgstr "Url de Avatar Grande"
128
 
129
- #: ../super_socializer.php:1304 ../helper.php:888
130
  msgid ""
131
  "Do not fetch and update social avatar from my profile, next time I Social "
132
  "Login"
@@ -134,79 +134,79 @@ msgstr ""
134
  "No se ha podido recuperar y actualizar el avatar social desde mi perfil, la "
135
  "próxima vez | Social Login"
136
 
137
- #: ../super_socializer.php:1308 ../helper.php:889
138
  msgid "Update social avatar, next time I Social Login"
139
  msgstr "Actualiza tu avatar de redes sociales | Social Login"
140
 
141
- #: ../super_socializer.php:1381 ../super_socializer.php:1844
142
  msgid ""
143
  "Your browser is blocking some features of this website. Please follow the "
144
  "instructions at {support_url} to unblock these."
145
  msgstr ""
146
 
147
- #: ../super_socializer.php:1387
148
  msgid "Login with your Social ID"
149
  msgstr ""
150
 
151
- #: ../super_socializer.php:1388
152
  msgid "Email you entered is already registered or invalid"
153
  msgstr "El email que has escrito ya está registrado o no es válido"
154
 
155
- #: ../super_socializer.php:1393
156
  msgid "Please enter a valid email address. You might be required to verify it"
157
  msgstr ""
158
  "Por favor escribe una dirección de email válida. Puedes ser requerido para "
159
  "verificarla"
160
 
161
- #: ../super_socializer.php:1597
162
  msgid ""
163
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
164
  "current version of Super Socialzer"
165
  msgstr ""
166
 
167
- #: ../super_socializer.php:1606
168
  msgid ""
169
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
170
  "version of Super Socialzer"
171
  msgstr ""
172
 
173
- #: ../super_socializer.php:1615
174
  msgid ""
175
  "Update \"Social Login Buttons\" add-on for compatibility with current "
176
  "version of Super Socialzer"
177
  msgstr ""
178
 
179
- #: ../super_socializer.php:1624
180
  msgid ""
181
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
182
  "with current version of Super Socialzer"
183
  msgstr ""
184
 
185
- #: ../super_socializer.php:1633
186
  msgid ""
187
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
188
  "with current version of Super Socialzer"
189
  msgstr ""
190
 
191
- #: ../super_socializer.php:1640
192
  msgid ""
193
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
194
  "LiveJournal Login of Super Socialzer"
195
  msgstr ""
196
 
197
- #: ../super_socializer.php:1651
198
  #, php-format
199
  msgid ""
200
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
201
  msgstr ""
202
 
203
- #: ../super_socializer.php:1667
204
  #, php-format
205
  msgid ""
206
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
207
  msgstr ""
208
 
209
- #: ../super_socializer.php:1691
210
  #, php-format
211
  msgid ""
212
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -214,13 +214,13 @@ msgid ""
214
  "target=\"_blank\">here</a>"
215
  msgstr ""
216
 
217
- #: ../super_socializer.php:1691 ../super_socializer.php:1716
218
- #: ../super_socializer.php:1741 ../super_socializer.php:1774
219
- #: ../super_socializer.php:1799
220
  msgid "Okay"
221
  msgstr ""
222
 
223
- #: ../super_socializer.php:1716
224
  #, php-format
225
  msgid ""
226
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -228,7 +228,7 @@ msgid ""
228
  "target=\"_blank\">here</a>"
229
  msgstr ""
230
 
231
- #: ../super_socializer.php:1741
232
  #, php-format
233
  msgid ""
234
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -236,13 +236,13 @@ msgid ""
236
  "target=\"_blank\">here</a>"
237
  msgstr ""
238
 
239
- #: ../super_socializer.php:1752
240
  #, php-format
241
  msgid ""
242
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
243
  msgstr ""
244
 
245
- #: ../super_socializer.php:1774
246
  #, php-format
247
  msgid ""
248
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -250,7 +250,7 @@ msgid ""
250
  "\"%s\" target=\"_blank\">here</a>"
251
  msgstr ""
252
 
253
- #: ../super_socializer.php:1799
254
  #, php-format
255
  msgid ""
256
  "Your website visitors will see a popup notification (only once) if their "
@@ -289,11 +289,11 @@ msgstr ""
289
  msgid "Settings"
290
  msgstr "Ajustes"
291
 
292
- #: ../helper.php:552
293
  msgid "Account linked successfully"
294
  msgstr "Cuenta enlazada con éxito"
295
 
296
- #: ../helper.php:556
297
  msgid "Account already exists or linked"
298
  msgstr "Esta cuenta ya existe o ha sido enlazada"
299
 
@@ -362,7 +362,7 @@ msgstr "Avatar Grande"
362
 
363
  #: ../helper.php:900 ../admin/general_options.php:128
364
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
365
- #: ../admin/social_login.php:1142 ../admin/like_buttons.php:822
366
  msgid "Save Changes"
367
  msgstr "Guardar Cambios"
368
 
@@ -449,14 +449,14 @@ msgstr ""
449
  "style&gt;)"
450
 
451
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
452
- #: ../admin/social_commenting.php:492 ../admin/social_login.php:1147
453
  #: ../admin/like_buttons.php:827
454
  #, fuzzy
455
  msgid "Instagram Shoutout"
456
  msgstr "Instagram"
457
 
458
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
459
- #: ../admin/social_commenting.php:494 ../admin/social_login.php:1149
460
  #: ../admin/like_buttons.php:829
461
  msgid ""
462
  "If you can send (to hello@heateor.com) how our plugin is helping your "
@@ -465,7 +465,7 @@ msgid ""
465
  msgstr ""
466
 
467
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
468
- #: ../admin/social_commenting.php:495 ../admin/social_login.php:1150
469
  #: ../admin/like_buttons.php:830
470
  msgid ""
471
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
@@ -476,7 +476,7 @@ msgid ""
476
  msgstr ""
477
 
478
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
479
- #: ../admin/social_commenting.php:496 ../admin/social_login.php:1151
480
  #: ../admin/like_buttons.php:831
481
  msgid ""
482
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
@@ -619,7 +619,7 @@ msgstr ""
619
 
620
  #: ../admin/social_sharing.php:52 ../admin/social_sharing.php:1905
621
  #: ../admin/social_sharing.php:1907 ../admin/social_login.php:41
622
- #: ../admin/social_login.php:1109 ../admin/like_buttons.php:47
623
  #: ../admin/like_buttons.php:793
624
  msgid "Shortcode & Widget"
625
  msgstr "Widgets y Shortcodes"
@@ -630,7 +630,7 @@ msgstr "Resolución de problmas"
630
 
631
  #: ../admin/social_sharing.php:54 ../admin/social_sharing.php:1938
632
  #: ../admin/social_commenting.php:36 ../admin/social_commenting.php:471
633
- #: ../admin/social_login.php:42 ../admin/social_login.php:1123
634
  #: ../admin/like_buttons.php:48 ../admin/like_buttons.php:806
635
  msgid "FAQ"
636
  msgstr "FAQ"
@@ -1412,7 +1412,7 @@ msgstr ""
1412
  "que Facebook no está compartiendo correctamente) en el campo de texto:"
1413
 
1414
  #: ../admin/social_sharing.php:1940 ../admin/social_commenting.php:473
1415
- #: ../admin/social_login.php:1125
1416
  msgid ""
1417
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1418
  "an online website for the plugin to function properly."
@@ -1440,7 +1440,7 @@ msgid ""
1440
  msgstr ""
1441
 
1442
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1443
- #: ../admin/social_login.php:1131
1444
  msgid "Why is my browser blocking some features of the plugin?"
1445
  msgstr ""
1446
 
@@ -1808,7 +1808,7 @@ msgstr "Configuración básica"
1808
  msgid "GDPR"
1809
  msgstr ""
1810
 
1811
- #: ../admin/social_login.php:39 ../admin/social_login.php:1060
1812
  msgid "XProfile Integration"
1813
  msgstr ""
1814
 
@@ -2476,56 +2476,66 @@ msgstr ""
2476
  "pulsar este enlace"
2477
 
2478
  #: ../admin/social_login.php:984
 
 
 
 
 
 
 
 
 
 
2479
  msgid "Opt-in text"
2480
  msgstr ""
2481
 
2482
- #: ../admin/social_login.php:994
2483
  #, fuzzy
2484
  msgid "Text for the opt-in appearing above the social login icons"
2485
  msgstr ""
2486
  "Texto para mostrar sobre la interfaz del Ingreso a través de redes sociales"
2487
 
2488
- #: ../admin/social_login.php:1002
2489
  msgid "Text to link to Privacy Policy page"
2490
  msgstr ""
2491
 
2492
- #: ../admin/social_login.php:1012
2493
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2494
  msgstr ""
2495
 
2496
- #: ../admin/social_login.php:1020
2497
  msgid "Privacy Policy Url"
2498
  msgstr ""
2499
 
2500
- #: ../admin/social_login.php:1030
2501
  #, fuzzy
2502
  msgid "Url of the privacy policy page of your website"
2503
  msgstr "Url de la página de inicio de tu sitio web"
2504
 
2505
- #: ../admin/social_login.php:1080 ../inc/widget.php:248 ../inc/widget.php:414
2506
  #: ../inc/widget.php:578 ../inc/widget.php:726
2507
  msgid "Select"
2508
  msgstr "Seleccionar"
2509
 
2510
- #: ../admin/social_login.php:1111
2511
  msgid "Social Login Shortcode & Widget"
2512
  msgstr "Widget y Shortcode para el Ingreso a través de redes sociales"
2513
 
2514
- #: ../admin/social_login.php:1112
2515
  msgid "Social Linking Shortcode"
2516
  msgstr "Shortcode para enlace a través de redes sociales"
2517
 
2518
- #: ../admin/social_login.php:1127
2519
  msgid "Why is social login not working?"
2520
  msgstr ""
2521
 
2522
- #: ../admin/social_login.php:1128
2523
  msgid ""
2524
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2525
  "belong to the same app"
2526
  msgstr ""
2527
 
2528
- #: ../admin/social_login.php:1130
2529
  msgid ""
2530
  "Why the user is not appearing logged in even after Social Login until the "
2531
  "webpage is refreshed manually?"
@@ -2767,28 +2777,28 @@ msgstr "Petición no válida"
2767
  msgid "Providers not selected"
2768
  msgstr "Redes sociales no seleccionadas"
2769
 
2770
- #: ../inc/social_login.php:710
2771
  msgid "Email"
2772
  msgstr ""
2773
 
2774
- #: ../inc/social_login.php:711
2775
  msgid "Confirm email"
2776
  msgstr ""
2777
 
2778
- #: ../inc/social_login.php:713
2779
  msgid "Save"
2780
  msgstr ""
2781
 
2782
- #: ../inc/social_login.php:714
2783
  msgid "Cancel"
2784
  msgstr ""
2785
 
2786
- #: ../inc/social_login.php:788
2787
  #, fuzzy
2788
  msgid "Email Verification"
2789
  msgstr "Activar verificación por email"
2790
 
2791
- #: ../inc/social_login.php:790
2792
  msgid ""
2793
  "Please click on the following link or paste it in browser to verify your "
2794
  "email"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-05-26 08:46+0530\n"
6
+ "PO-Revision-Date: 2018-05-26 08:46+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: es\n"
28
  msgid "Graph returned an error: "
29
  msgstr ""
30
 
31
+ #: ../super_socializer.php:569
32
  #, fuzzy
33
  msgid ""
34
  "cURL is not enabled at your website server. Please contact your website "
38
  "posible que necesites contactar con el administrador de tu servidor para "
39
  "verificar esto"
40
 
41
+ #: ../super_socializer.php:596
42
  #, php-format
43
  msgid ""
44
  "Enter exactly the following url in <strong>Website</strong> and "
47
  "Introduce exactamente la siguiente URL en las <strong>Website</strong> y "
48
  "<strong>Callback Url</strong> opciones en tu Twitter app (ver paso 3 %s)"
49
 
50
+ #: ../super_socializer.php:599
51
  msgid ""
52
  "Make sure cURL is enabled at your website server. You may need to contact "
53
  "the server administrator of your website to verify this"
56
  "posible que necesites contactar con el administrador de tu servidor para "
57
  "verificar esto"
58
 
59
+ #: ../super_socializer.php:600
60
  #, php-format
61
  msgid ""
62
  "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
63
  msgstr ""
64
 
65
+ #: ../super_socializer.php:866 ../helper.php:963
66
  msgid "Please verify your email address to login."
67
  msgstr "Por favor verifica tu dirección de email para ingresar."
68
 
69
+ #: ../super_socializer.php:866
70
  msgid "Your email has been verified. Now you can login to your account"
71
  msgstr "Tu email ha sido verificado. Ahora puedes ingresar en tu cuenta"
72
 
73
+ #: ../super_socializer.php:870
74
  msgid "Notification"
75
  msgstr "Notificación"
76
 
77
+ #: ../super_socializer.php:888 ../admin/social_login.php:756
78
  msgid "Email required"
79
  msgstr "Email requerido"
80
 
81
+ #: ../super_socializer.php:891
82
  msgid "Please check your email inbox to complete the registration."
83
  msgstr ""
84
  "Por favor revisa la bandeja de entrada de tu correo para completar el "
85
  "registro."
86
 
87
+ #: ../super_socializer.php:898 ../helper.php:503
88
  msgid "Enter your LiveJournal username"
89
  msgstr ""
90
 
91
+ #: ../super_socializer.php:972
92
  msgid "Leave a reply"
93
  msgstr "Deja una respuesta"
94
 
95
+ #: ../super_socializer.php:984 ../inc/social_sharing.php:233
96
  msgid "Shares"
97
  msgstr ""
98
 
99
+ #: ../super_socializer.php:984 ../inc/social_sharing.php:233
100
  msgid "Share"
101
  msgstr ""
102
 
103
+ #: ../super_socializer.php:984
104
  #, fuzzy
105
  msgid "Link copied."
106
  msgstr "LinkedIn"
107
 
108
+ #: ../super_socializer.php:1227
109
  msgid "Super Socializer - General Options"
110
  msgstr "Super Socializer - Opciones Generales"
111
 
112
+ #: ../super_socializer.php:1227 ../admin/general_options.php:11
113
  #: ../admin/social_commenting.php:43
114
  msgid "General Options"
115
  msgstr "Opciones Generales"
116
 
117
+ #: ../super_socializer.php:1295 ../helper.php:885
118
  msgid "Social Avatar"
119
  msgstr "Avatar Social"
120
 
121
+ #: ../super_socializer.php:1298
122
  msgid "Small Avatar Url"
123
  msgstr "Url de Avatar Pequeño"
124
 
125
+ #: ../super_socializer.php:1302
126
  msgid "Large Avatar Url"
127
  msgstr "Url de Avatar Grande"
128
 
129
+ #: ../super_socializer.php:1306 ../helper.php:888
130
  msgid ""
131
  "Do not fetch and update social avatar from my profile, next time I Social "
132
  "Login"
134
  "No se ha podido recuperar y actualizar el avatar social desde mi perfil, la "
135
  "próxima vez | Social Login"
136
 
137
+ #: ../super_socializer.php:1310 ../helper.php:889
138
  msgid "Update social avatar, next time I Social Login"
139
  msgstr "Actualiza tu avatar de redes sociales | Social Login"
140
 
141
+ #: ../super_socializer.php:1383 ../super_socializer.php:1853
142
  msgid ""
143
  "Your browser is blocking some features of this website. Please follow the "
144
  "instructions at {support_url} to unblock these."
145
  msgstr ""
146
 
147
+ #: ../super_socializer.php:1389
148
  msgid "Login with your Social ID"
149
  msgstr ""
150
 
151
+ #: ../super_socializer.php:1390
152
  msgid "Email you entered is already registered or invalid"
153
  msgstr "El email que has escrito ya está registrado o no es válido"
154
 
155
+ #: ../super_socializer.php:1395
156
  msgid "Please enter a valid email address. You might be required to verify it"
157
  msgstr ""
158
  "Por favor escribe una dirección de email válida. Puedes ser requerido para "
159
  "verificarla"
160
 
161
+ #: ../super_socializer.php:1600
162
  msgid ""
163
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
164
  "current version of Super Socialzer"
165
  msgstr ""
166
 
167
+ #: ../super_socializer.php:1609
168
  msgid ""
169
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
170
  "version of Super Socialzer"
171
  msgstr ""
172
 
173
+ #: ../super_socializer.php:1618
174
  msgid ""
175
  "Update \"Social Login Buttons\" add-on for compatibility with current "
176
  "version of Super Socialzer"
177
  msgstr ""
178
 
179
+ #: ../super_socializer.php:1627
180
  msgid ""
181
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
182
  "with current version of Super Socialzer"
183
  msgstr ""
184
 
185
+ #: ../super_socializer.php:1636
186
  msgid ""
187
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
188
  "with current version of Super Socialzer"
189
  msgstr ""
190
 
191
+ #: ../super_socializer.php:1643
192
  msgid ""
193
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
194
  "LiveJournal Login of Super Socialzer"
195
  msgstr ""
196
 
197
+ #: ../super_socializer.php:1654
198
  #, php-format
199
  msgid ""
200
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
201
  msgstr ""
202
 
203
+ #: ../super_socializer.php:1670
204
  #, php-format
205
  msgid ""
206
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
207
  msgstr ""
208
 
209
+ #: ../super_socializer.php:1694
210
  #, php-format
211
  msgid ""
212
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
214
  "target=\"_blank\">here</a>"
215
  msgstr ""
216
 
217
+ #: ../super_socializer.php:1694 ../super_socializer.php:1719
218
+ #: ../super_socializer.php:1744 ../super_socializer.php:1777
219
+ #: ../super_socializer.php:1802
220
  msgid "Okay"
221
  msgstr ""
222
 
223
+ #: ../super_socializer.php:1719
224
  #, php-format
225
  msgid ""
226
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
228
  "target=\"_blank\">here</a>"
229
  msgstr ""
230
 
231
+ #: ../super_socializer.php:1744
232
  #, php-format
233
  msgid ""
234
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
236
  "target=\"_blank\">here</a>"
237
  msgstr ""
238
 
239
+ #: ../super_socializer.php:1755
240
  #, php-format
241
  msgid ""
242
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
243
  msgstr ""
244
 
245
+ #: ../super_socializer.php:1777
246
  #, php-format
247
  msgid ""
248
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
250
  "\"%s\" target=\"_blank\">here</a>"
251
  msgstr ""
252
 
253
+ #: ../super_socializer.php:1802
254
  #, php-format
255
  msgid ""
256
  "Your website visitors will see a popup notification (only once) if their "
289
  msgid "Settings"
290
  msgstr "Ajustes"
291
 
292
+ #: ../helper.php:548
293
  msgid "Account linked successfully"
294
  msgstr "Cuenta enlazada con éxito"
295
 
296
+ #: ../helper.php:552
297
  msgid "Account already exists or linked"
298
  msgstr "Esta cuenta ya existe o ha sido enlazada"
299
 
362
 
363
  #: ../helper.php:900 ../admin/general_options.php:128
364
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
365
+ #: ../admin/social_login.php:1162 ../admin/like_buttons.php:822
366
  msgid "Save Changes"
367
  msgstr "Guardar Cambios"
368
 
449
  "style&gt;)"
450
 
451
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
452
+ #: ../admin/social_commenting.php:492 ../admin/social_login.php:1167
453
  #: ../admin/like_buttons.php:827
454
  #, fuzzy
455
  msgid "Instagram Shoutout"
456
  msgstr "Instagram"
457
 
458
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
459
+ #: ../admin/social_commenting.php:494 ../admin/social_login.php:1169
460
  #: ../admin/like_buttons.php:829
461
  msgid ""
462
  "If you can send (to hello@heateor.com) how our plugin is helping your "
465
  msgstr ""
466
 
467
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
468
+ #: ../admin/social_commenting.php:495 ../admin/social_login.php:1170
469
  #: ../admin/like_buttons.php:830
470
  msgid ""
471
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
476
  msgstr ""
477
 
478
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
479
+ #: ../admin/social_commenting.php:496 ../admin/social_login.php:1171
480
  #: ../admin/like_buttons.php:831
481
  msgid ""
482
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
619
 
620
  #: ../admin/social_sharing.php:52 ../admin/social_sharing.php:1905
621
  #: ../admin/social_sharing.php:1907 ../admin/social_login.php:41
622
+ #: ../admin/social_login.php:1129 ../admin/like_buttons.php:47
623
  #: ../admin/like_buttons.php:793
624
  msgid "Shortcode & Widget"
625
  msgstr "Widgets y Shortcodes"
630
 
631
  #: ../admin/social_sharing.php:54 ../admin/social_sharing.php:1938
632
  #: ../admin/social_commenting.php:36 ../admin/social_commenting.php:471
633
+ #: ../admin/social_login.php:42 ../admin/social_login.php:1143
634
  #: ../admin/like_buttons.php:48 ../admin/like_buttons.php:806
635
  msgid "FAQ"
636
  msgstr "FAQ"
1412
  "que Facebook no está compartiendo correctamente) en el campo de texto:"
1413
 
1414
  #: ../admin/social_sharing.php:1940 ../admin/social_commenting.php:473
1415
+ #: ../admin/social_login.php:1145
1416
  msgid ""
1417
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1418
  "an online website for the plugin to function properly."
1440
  msgstr ""
1441
 
1442
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1443
+ #: ../admin/social_login.php:1151
1444
  msgid "Why is my browser blocking some features of the plugin?"
1445
  msgstr ""
1446
 
1808
  msgid "GDPR"
1809
  msgstr ""
1810
 
1811
+ #: ../admin/social_login.php:39 ../admin/social_login.php:1080
1812
  msgid "XProfile Integration"
1813
  msgstr ""
1814
 
2476
  "pulsar este enlace"
2477
 
2478
  #: ../admin/social_login.php:984
2479
+ #, fuzzy
2480
+ msgid "Enable GDPR opt-in"
2481
+ msgstr "Permitir Comentarios de Disqus"
2482
+
2483
+ #: ../admin/social_login.php:994
2484
+ msgid ""
2485
+ "Enable it to show GDPR opt-in for social login and social account linking"
2486
+ msgstr ""
2487
+
2488
+ #: ../admin/social_login.php:1003
2489
  msgid "Opt-in text"
2490
  msgstr ""
2491
 
2492
+ #: ../admin/social_login.php:1013
2493
  #, fuzzy
2494
  msgid "Text for the opt-in appearing above the social login icons"
2495
  msgstr ""
2496
  "Texto para mostrar sobre la interfaz del Ingreso a través de redes sociales"
2497
 
2498
+ #: ../admin/social_login.php:1021
2499
  msgid "Text to link to Privacy Policy page"
2500
  msgstr ""
2501
 
2502
+ #: ../admin/social_login.php:1031
2503
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2504
  msgstr ""
2505
 
2506
+ #: ../admin/social_login.php:1039
2507
  msgid "Privacy Policy Url"
2508
  msgstr ""
2509
 
2510
+ #: ../admin/social_login.php:1049
2511
  #, fuzzy
2512
  msgid "Url of the privacy policy page of your website"
2513
  msgstr "Url de la página de inicio de tu sitio web"
2514
 
2515
+ #: ../admin/social_login.php:1100 ../inc/widget.php:248 ../inc/widget.php:414
2516
  #: ../inc/widget.php:578 ../inc/widget.php:726
2517
  msgid "Select"
2518
  msgstr "Seleccionar"
2519
 
2520
+ #: ../admin/social_login.php:1131
2521
  msgid "Social Login Shortcode & Widget"
2522
  msgstr "Widget y Shortcode para el Ingreso a través de redes sociales"
2523
 
2524
+ #: ../admin/social_login.php:1132
2525
  msgid "Social Linking Shortcode"
2526
  msgstr "Shortcode para enlace a través de redes sociales"
2527
 
2528
+ #: ../admin/social_login.php:1147
2529
  msgid "Why is social login not working?"
2530
  msgstr ""
2531
 
2532
+ #: ../admin/social_login.php:1148
2533
  msgid ""
2534
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2535
  "belong to the same app"
2536
  msgstr ""
2537
 
2538
+ #: ../admin/social_login.php:1150
2539
  msgid ""
2540
  "Why the user is not appearing logged in even after Social Login until the "
2541
  "webpage is refreshed manually?"
2777
  msgid "Providers not selected"
2778
  msgstr "Redes sociales no seleccionadas"
2779
 
2780
+ #: ../inc/social_login.php:712
2781
  msgid "Email"
2782
  msgstr ""
2783
 
2784
+ #: ../inc/social_login.php:713
2785
  msgid "Confirm email"
2786
  msgstr ""
2787
 
2788
+ #: ../inc/social_login.php:715
2789
  msgid "Save"
2790
  msgstr ""
2791
 
2792
+ #: ../inc/social_login.php:716
2793
  msgid "Cancel"
2794
  msgstr ""
2795
 
2796
+ #: ../inc/social_login.php:790
2797
  #, fuzzy
2798
  msgid "Email Verification"
2799
  msgstr "Activar verificación por email"
2800
 
2801
+ #: ../inc/social_login.php:792
2802
  msgid ""
2803
  "Please click on the following link or paste it in browser to verify your "
2804
  "email"
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-05-20 00:58+0530\n"
6
- "PO-Revision-Date: 2018-05-20 00:59+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: The Champ <lordofthechamps@gmail.com>\n"
9
  "Language: hu\n"
@@ -28,7 +28,7 @@ msgstr ""
28
  msgid "Graph returned an error: "
29
  msgstr ""
30
 
31
- #: ../super_socializer.php:567
32
  #, fuzzy
33
  msgid ""
34
  "cURL is not enabled at your website server. Please contact your website "
@@ -37,7 +37,7 @@ msgstr ""
37
  "Ellenőrizd, hogy a cURL be van kapcsolva a szervereden. Lehetséges, hogy "
38
  "ehhez fel kell keresned a szerver adminisztrátorát, a tárhelyszolgáltatódat"
39
 
40
- #: ../super_socializer.php:594
41
  #, php-format
42
  msgid ""
43
  "Enter exactly the following url in <strong>Website</strong> and "
@@ -47,7 +47,7 @@ msgstr ""
47
  "<strong>Callback Url</strong> mezőbe a Twitter alkalmazásodban lásd 3. "
48
  "lépés %s)"
49
 
50
- #: ../super_socializer.php:597
51
  msgid ""
52
  "Make sure cURL is enabled at your website server. You may need to contact "
53
  "the server administrator of your website to verify this"
@@ -55,155 +55,155 @@ msgstr ""
55
  "Ellenőrizd, hogy a cURL be van kapcsolva a szervereden. Lehetséges, hogy "
56
  "ehhez fel kell keresned a szerver adminisztrátorát, a tárhelyszolgáltatódat"
57
 
58
- #: ../super_socializer.php:598
59
  #, php-format
60
  msgid ""
61
  "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
62
  msgstr ""
63
 
64
- #: ../super_socializer.php:864 ../helper.php:963
65
  msgid "Please verify your email address to login."
66
  msgstr "Kérjük, ellenőrizd e-mail címed a belépéshez."
67
 
68
- #: ../super_socializer.php:864
69
  msgid "Your email has been verified. Now you can login to your account"
70
  msgstr "E-mail címed ellenőrzése sikeres. Most már beléphetsz fiókodba"
71
 
72
- #: ../super_socializer.php:868
73
  msgid "Notification"
74
  msgstr "Értesítés"
75
 
76
- #: ../super_socializer.php:886 ../admin/social_login.php:756
77
  msgid "Email required"
78
  msgstr "E-mail cím szükséges"
79
 
80
- #: ../super_socializer.php:889
81
  msgid "Please check your email inbox to complete the registration."
82
  msgstr "Kérjük, nézd meg e-mail címed a regisztráció befejezéséhez."
83
 
84
- #: ../super_socializer.php:896 ../helper.php:503
85
  msgid "Enter your LiveJournal username"
86
  msgstr ""
87
 
88
- #: ../super_socializer.php:970
89
  msgid "Leave a reply"
90
  msgstr "Válaszolj"
91
 
92
- #: ../super_socializer.php:982 ../inc/social_sharing.php:233
93
  msgid "Shares"
94
  msgstr ""
95
 
96
- #: ../super_socializer.php:982 ../inc/social_sharing.php:233
97
  msgid "Share"
98
  msgstr ""
99
 
100
- #: ../super_socializer.php:982
101
  #, fuzzy
102
  msgid "Link copied."
103
  msgstr "LinkedIn"
104
 
105
- #: ../super_socializer.php:1225
106
  #, fuzzy
107
  msgid "Super Socializer - General Options"
108
  msgstr "Super Socializer - Belépés"
109
 
110
- #: ../super_socializer.php:1225 ../admin/general_options.php:11
111
  #: ../admin/social_commenting.php:43
112
  #, fuzzy
113
  msgid "General Options"
114
  msgstr "Megosztási beállítások"
115
 
116
- #: ../super_socializer.php:1293 ../helper.php:885
117
  #, fuzzy
118
  msgid "Social Avatar"
119
  msgstr "Kis Avatar URL"
120
 
121
- #: ../super_socializer.php:1296
122
  msgid "Small Avatar Url"
123
  msgstr "Kis Avatar URL"
124
 
125
- #: ../super_socializer.php:1300
126
  #, fuzzy
127
  msgid "Large Avatar Url"
128
  msgstr "Cél Url"
129
 
130
- #: ../super_socializer.php:1304 ../helper.php:888
131
  msgid ""
132
  "Do not fetch and update social avatar from my profile, next time I Social "
133
  "Login"
134
  msgstr ""
135
 
136
- #: ../super_socializer.php:1308 ../helper.php:889
137
  msgid "Update social avatar, next time I Social Login"
138
  msgstr ""
139
 
140
- #: ../super_socializer.php:1381 ../super_socializer.php:1844
141
  msgid ""
142
  "Your browser is blocking some features of this website. Please follow the "
143
  "instructions at {support_url} to unblock these."
144
  msgstr ""
145
 
146
- #: ../super_socializer.php:1387
147
  msgid "Login with your Social ID"
148
  msgstr ""
149
 
150
- #: ../super_socializer.php:1388
151
  msgid "Email you entered is already registered or invalid"
152
  msgstr "A megadott e-mail már regisztrálva van, vagy hibás"
153
 
154
- #: ../super_socializer.php:1393
155
  msgid "Please enter a valid email address. You might be required to verify it"
156
  msgstr "Kérlek, érvényes e-mail címet adj meg. Ezt később ellenőrizhetjük"
157
 
158
- #: ../super_socializer.php:1597
159
  msgid ""
160
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
161
  "current version of Super Socialzer"
162
  msgstr ""
163
 
164
- #: ../super_socializer.php:1606
165
  msgid ""
166
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
167
  "version of Super Socialzer"
168
  msgstr ""
169
 
170
- #: ../super_socializer.php:1615
171
  msgid ""
172
  "Update \"Social Login Buttons\" add-on for compatibility with current "
173
  "version of Super Socialzer"
174
  msgstr ""
175
 
176
- #: ../super_socializer.php:1624
177
  msgid ""
178
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
179
  "with current version of Super Socialzer"
180
  msgstr ""
181
 
182
- #: ../super_socializer.php:1633
183
  msgid ""
184
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
185
  "with current version of Super Socialzer"
186
  msgstr ""
187
 
188
- #: ../super_socializer.php:1640
189
  msgid ""
190
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
191
  "LiveJournal Login of Super Socialzer"
192
  msgstr ""
193
 
194
- #: ../super_socializer.php:1651
195
  #, php-format
196
  msgid ""
197
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
198
  msgstr ""
199
 
200
- #: ../super_socializer.php:1667
201
  #, php-format
202
  msgid ""
203
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
204
  msgstr ""
205
 
206
- #: ../super_socializer.php:1691
207
  #, php-format
208
  msgid ""
209
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -211,13 +211,13 @@ msgid ""
211
  "target=\"_blank\">here</a>"
212
  msgstr ""
213
 
214
- #: ../super_socializer.php:1691 ../super_socializer.php:1716
215
- #: ../super_socializer.php:1741 ../super_socializer.php:1774
216
- #: ../super_socializer.php:1799
217
  msgid "Okay"
218
  msgstr ""
219
 
220
- #: ../super_socializer.php:1716
221
  #, php-format
222
  msgid ""
223
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -225,7 +225,7 @@ msgid ""
225
  "target=\"_blank\">here</a>"
226
  msgstr ""
227
 
228
- #: ../super_socializer.php:1741
229
  #, php-format
230
  msgid ""
231
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -233,13 +233,13 @@ msgid ""
233
  "target=\"_blank\">here</a>"
234
  msgstr ""
235
 
236
- #: ../super_socializer.php:1752
237
  #, php-format
238
  msgid ""
239
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
240
  msgstr ""
241
 
242
- #: ../super_socializer.php:1774
243
  #, php-format
244
  msgid ""
245
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -247,7 +247,7 @@ msgid ""
247
  "\"%s\" target=\"_blank\">here</a>"
248
  msgstr ""
249
 
250
- #: ../super_socializer.php:1799
251
  #, php-format
252
  msgid ""
253
  "Your website visitors will see a popup notification (only once) if their "
@@ -287,11 +287,11 @@ msgstr ""
287
  msgid "Settings"
288
  msgstr "Beállítások"
289
 
290
- #: ../helper.php:552
291
  msgid "Account linked successfully"
292
  msgstr "Fiók kapcsolása sikeres"
293
 
294
- #: ../helper.php:556
295
  msgid "Account already exists or linked"
296
  msgstr "Fiók már létezik, vagy össze van kötve"
297
 
@@ -366,7 +366,7 @@ msgstr "Cél Url"
366
 
367
  #: ../helper.php:900 ../admin/general_options.php:128
368
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
369
- #: ../admin/social_login.php:1142 ../admin/like_buttons.php:822
370
  msgid "Save Changes"
371
  msgstr "Változások Mentése"
372
 
@@ -452,14 +452,14 @@ msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
452
  msgstr ""
453
 
454
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
455
- #: ../admin/social_commenting.php:492 ../admin/social_login.php:1147
456
  #: ../admin/like_buttons.php:827
457
  #, fuzzy
458
  msgid "Instagram Shoutout"
459
  msgstr "Instagram"
460
 
461
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
462
- #: ../admin/social_commenting.php:494 ../admin/social_login.php:1149
463
  #: ../admin/like_buttons.php:829
464
  msgid ""
465
  "If you can send (to hello@heateor.com) how our plugin is helping your "
@@ -468,7 +468,7 @@ msgid ""
468
  msgstr ""
469
 
470
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
471
- #: ../admin/social_commenting.php:495 ../admin/social_login.php:1150
472
  #: ../admin/like_buttons.php:830
473
  msgid ""
474
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
@@ -479,7 +479,7 @@ msgid ""
479
  msgstr ""
480
 
481
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
482
- #: ../admin/social_commenting.php:496 ../admin/social_login.php:1151
483
  #: ../admin/like_buttons.php:831
484
  msgid ""
485
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
@@ -627,7 +627,7 @@ msgstr ""
627
 
628
  #: ../admin/social_sharing.php:52 ../admin/social_sharing.php:1905
629
  #: ../admin/social_sharing.php:1907 ../admin/social_login.php:41
630
- #: ../admin/social_login.php:1109 ../admin/like_buttons.php:47
631
  #: ../admin/like_buttons.php:793
632
  msgid "Shortcode & Widget"
633
  msgstr "Shortcode és Widget"
@@ -638,7 +638,7 @@ msgstr "Hibamegoldó"
638
 
639
  #: ../admin/social_sharing.php:54 ../admin/social_sharing.php:1938
640
  #: ../admin/social_commenting.php:36 ../admin/social_commenting.php:471
641
- #: ../admin/social_login.php:42 ../admin/social_login.php:1123
642
  #: ../admin/like_buttons.php:48 ../admin/like_buttons.php:806
643
  msgid "FAQ"
644
  msgstr "GYIK"
@@ -1408,7 +1408,7 @@ msgstr ""
1408
  "tökéletesen) a szöveges mezőben:"
1409
 
1410
  #: ../admin/social_sharing.php:1940 ../admin/social_commenting.php:473
1411
- #: ../admin/social_login.php:1125
1412
  msgid ""
1413
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1414
  "an online website for the plugin to function properly."
@@ -1436,7 +1436,7 @@ msgid ""
1436
  msgstr ""
1437
 
1438
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1439
- #: ../admin/social_login.php:1131
1440
  msgid "Why is my browser blocking some features of the plugin?"
1441
  msgstr ""
1442
 
@@ -1800,7 +1800,7 @@ msgstr "Alap Beállítások"
1800
  msgid "GDPR"
1801
  msgstr ""
1802
 
1803
- #: ../admin/social_login.php:39 ../admin/social_login.php:1060
1804
  msgid "XProfile Integration"
1805
  msgstr ""
1806
 
@@ -2453,56 +2453,66 @@ msgstr ""
2453
  "nem erősítette meg e-mailcímét "
2454
 
2455
  #: ../admin/social_login.php:984
 
 
 
 
 
 
 
 
 
 
2456
  msgid "Opt-in text"
2457
  msgstr ""
2458
 
2459
- #: ../admin/social_login.php:994
2460
  #, fuzzy
2461
  msgid "Text for the opt-in appearing above the social login icons"
2462
  msgstr "Szöveg a Közösségi Belépés felett"
2463
 
2464
- #: ../admin/social_login.php:1002
2465
  msgid "Text to link to Privacy Policy page"
2466
  msgstr ""
2467
 
2468
- #: ../admin/social_login.php:1012
2469
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2470
  msgstr ""
2471
 
2472
- #: ../admin/social_login.php:1020
2473
  msgid "Privacy Policy Url"
2474
  msgstr ""
2475
 
2476
- #: ../admin/social_login.php:1030
2477
  #, fuzzy
2478
  msgid "Url of the privacy policy page of your website"
2479
  msgstr "A főoldalad Url-je"
2480
 
2481
- #: ../admin/social_login.php:1080 ../inc/widget.php:248 ../inc/widget.php:414
2482
  #: ../inc/widget.php:578 ../inc/widget.php:726
2483
  msgid "Select"
2484
  msgstr "Válassz"
2485
 
2486
- #: ../admin/social_login.php:1111
2487
  #, fuzzy
2488
  msgid "Social Login Shortcode & Widget"
2489
  msgstr "Shortcode és Widget"
2490
 
2491
- #: ../admin/social_login.php:1112
2492
  msgid "Social Linking Shortcode"
2493
  msgstr ""
2494
 
2495
- #: ../admin/social_login.php:1127
2496
  msgid "Why is social login not working?"
2497
  msgstr ""
2498
 
2499
- #: ../admin/social_login.php:1128
2500
  msgid ""
2501
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2502
  "belong to the same app"
2503
  msgstr ""
2504
 
2505
- #: ../admin/social_login.php:1130
2506
  msgid ""
2507
  "Why the user is not appearing logged in even after Social Login until the "
2508
  "webpage is refreshed manually?"
@@ -2749,28 +2759,28 @@ msgstr "Hibás kérés"
2749
  msgid "Providers not selected"
2750
  msgstr "Nincs kiválasztott szolgáltató"
2751
 
2752
- #: ../inc/social_login.php:710
2753
  msgid "Email"
2754
  msgstr "Email"
2755
 
2756
- #: ../inc/social_login.php:711
2757
  msgid "Confirm email"
2758
  msgstr ""
2759
 
2760
- #: ../inc/social_login.php:713
2761
  msgid "Save"
2762
  msgstr ""
2763
 
2764
- #: ../inc/social_login.php:714
2765
  msgid "Cancel"
2766
  msgstr ""
2767
 
2768
- #: ../inc/social_login.php:788
2769
  #, fuzzy
2770
  msgid "Email Verification"
2771
  msgstr "E-mail ellenőrzés bekapcsolása"
2772
 
2773
- #: ../inc/social_login.php:790
2774
  msgid ""
2775
  "Please click on the following link or paste it in browser to verify your "
2776
  "email"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-05-26 08:46+0530\n"
6
+ "PO-Revision-Date: 2018-05-26 08:46+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: The Champ <lordofthechamps@gmail.com>\n"
9
  "Language: hu\n"
28
  msgid "Graph returned an error: "
29
  msgstr ""
30
 
31
+ #: ../super_socializer.php:569
32
  #, fuzzy
33
  msgid ""
34
  "cURL is not enabled at your website server. Please contact your website "
37
  "Ellenőrizd, hogy a cURL be van kapcsolva a szervereden. Lehetséges, hogy "
38
  "ehhez fel kell keresned a szerver adminisztrátorát, a tárhelyszolgáltatódat"
39
 
40
+ #: ../super_socializer.php:596
41
  #, php-format
42
  msgid ""
43
  "Enter exactly the following url in <strong>Website</strong> and "
47
  "<strong>Callback Url</strong> mezőbe a Twitter alkalmazásodban lásd 3. "
48
  "lépés %s)"
49
 
50
+ #: ../super_socializer.php:599
51
  msgid ""
52
  "Make sure cURL is enabled at your website server. You may need to contact "
53
  "the server administrator of your website to verify this"
55
  "Ellenőrizd, hogy a cURL be van kapcsolva a szervereden. Lehetséges, hogy "
56
  "ehhez fel kell keresned a szerver adminisztrátorát, a tárhelyszolgáltatódat"
57
 
58
+ #: ../super_socializer.php:600
59
  #, php-format
60
  msgid ""
61
  "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
62
  msgstr ""
63
 
64
+ #: ../super_socializer.php:866 ../helper.php:963
65
  msgid "Please verify your email address to login."
66
  msgstr "Kérjük, ellenőrizd e-mail címed a belépéshez."
67
 
68
+ #: ../super_socializer.php:866
69
  msgid "Your email has been verified. Now you can login to your account"
70
  msgstr "E-mail címed ellenőrzése sikeres. Most már beléphetsz fiókodba"
71
 
72
+ #: ../super_socializer.php:870
73
  msgid "Notification"
74
  msgstr "Értesítés"
75
 
76
+ #: ../super_socializer.php:888 ../admin/social_login.php:756
77
  msgid "Email required"
78
  msgstr "E-mail cím szükséges"
79
 
80
+ #: ../super_socializer.php:891
81
  msgid "Please check your email inbox to complete the registration."
82
  msgstr "Kérjük, nézd meg e-mail címed a regisztráció befejezéséhez."
83
 
84
+ #: ../super_socializer.php:898 ../helper.php:503
85
  msgid "Enter your LiveJournal username"
86
  msgstr ""
87
 
88
+ #: ../super_socializer.php:972
89
  msgid "Leave a reply"
90
  msgstr "Válaszolj"
91
 
92
+ #: ../super_socializer.php:984 ../inc/social_sharing.php:233
93
  msgid "Shares"
94
  msgstr ""
95
 
96
+ #: ../super_socializer.php:984 ../inc/social_sharing.php:233
97
  msgid "Share"
98
  msgstr ""
99
 
100
+ #: ../super_socializer.php:984
101
  #, fuzzy
102
  msgid "Link copied."
103
  msgstr "LinkedIn"
104
 
105
+ #: ../super_socializer.php:1227
106
  #, fuzzy
107
  msgid "Super Socializer - General Options"
108
  msgstr "Super Socializer - Belépés"
109
 
110
+ #: ../super_socializer.php:1227 ../admin/general_options.php:11
111
  #: ../admin/social_commenting.php:43
112
  #, fuzzy
113
  msgid "General Options"
114
  msgstr "Megosztási beállítások"
115
 
116
+ #: ../super_socializer.php:1295 ../helper.php:885
117
  #, fuzzy
118
  msgid "Social Avatar"
119
  msgstr "Kis Avatar URL"
120
 
121
+ #: ../super_socializer.php:1298
122
  msgid "Small Avatar Url"
123
  msgstr "Kis Avatar URL"
124
 
125
+ #: ../super_socializer.php:1302
126
  #, fuzzy
127
  msgid "Large Avatar Url"
128
  msgstr "Cél Url"
129
 
130
+ #: ../super_socializer.php:1306 ../helper.php:888
131
  msgid ""
132
  "Do not fetch and update social avatar from my profile, next time I Social "
133
  "Login"
134
  msgstr ""
135
 
136
+ #: ../super_socializer.php:1310 ../helper.php:889
137
  msgid "Update social avatar, next time I Social Login"
138
  msgstr ""
139
 
140
+ #: ../super_socializer.php:1383 ../super_socializer.php:1853
141
  msgid ""
142
  "Your browser is blocking some features of this website. Please follow the "
143
  "instructions at {support_url} to unblock these."
144
  msgstr ""
145
 
146
+ #: ../super_socializer.php:1389
147
  msgid "Login with your Social ID"
148
  msgstr ""
149
 
150
+ #: ../super_socializer.php:1390
151
  msgid "Email you entered is already registered or invalid"
152
  msgstr "A megadott e-mail már regisztrálva van, vagy hibás"
153
 
154
+ #: ../super_socializer.php:1395
155
  msgid "Please enter a valid email address. You might be required to verify it"
156
  msgstr "Kérlek, érvényes e-mail címet adj meg. Ezt később ellenőrizhetjük"
157
 
158
+ #: ../super_socializer.php:1600
159
  msgid ""
160
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
161
  "current version of Super Socialzer"
162
  msgstr ""
163
 
164
+ #: ../super_socializer.php:1609
165
  msgid ""
166
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
167
  "version of Super Socialzer"
168
  msgstr ""
169
 
170
+ #: ../super_socializer.php:1618
171
  msgid ""
172
  "Update \"Social Login Buttons\" add-on for compatibility with current "
173
  "version of Super Socialzer"
174
  msgstr ""
175
 
176
+ #: ../super_socializer.php:1627
177
  msgid ""
178
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
179
  "with current version of Super Socialzer"
180
  msgstr ""
181
 
182
+ #: ../super_socializer.php:1636
183
  msgid ""
184
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
185
  "with current version of Super Socialzer"
186
  msgstr ""
187
 
188
+ #: ../super_socializer.php:1643
189
  msgid ""
190
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
191
  "LiveJournal Login of Super Socialzer"
192
  msgstr ""
193
 
194
+ #: ../super_socializer.php:1654
195
  #, php-format
196
  msgid ""
197
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
198
  msgstr ""
199
 
200
+ #: ../super_socializer.php:1670
201
  #, php-format
202
  msgid ""
203
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
204
  msgstr ""
205
 
206
+ #: ../super_socializer.php:1694
207
  #, php-format
208
  msgid ""
209
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
211
  "target=\"_blank\">here</a>"
212
  msgstr ""
213
 
214
+ #: ../super_socializer.php:1694 ../super_socializer.php:1719
215
+ #: ../super_socializer.php:1744 ../super_socializer.php:1777
216
+ #: ../super_socializer.php:1802
217
  msgid "Okay"
218
  msgstr ""
219
 
220
+ #: ../super_socializer.php:1719
221
  #, php-format
222
  msgid ""
223
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
225
  "target=\"_blank\">here</a>"
226
  msgstr ""
227
 
228
+ #: ../super_socializer.php:1744
229
  #, php-format
230
  msgid ""
231
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
233
  "target=\"_blank\">here</a>"
234
  msgstr ""
235
 
236
+ #: ../super_socializer.php:1755
237
  #, php-format
238
  msgid ""
239
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
240
  msgstr ""
241
 
242
+ #: ../super_socializer.php:1777
243
  #, php-format
244
  msgid ""
245
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
247
  "\"%s\" target=\"_blank\">here</a>"
248
  msgstr ""
249
 
250
+ #: ../super_socializer.php:1802
251
  #, php-format
252
  msgid ""
253
  "Your website visitors will see a popup notification (only once) if their "
287
  msgid "Settings"
288
  msgstr "Beállítások"
289
 
290
+ #: ../helper.php:548
291
  msgid "Account linked successfully"
292
  msgstr "Fiók kapcsolása sikeres"
293
 
294
+ #: ../helper.php:552
295
  msgid "Account already exists or linked"
296
  msgstr "Fiók már létezik, vagy össze van kötve"
297
 
366
 
367
  #: ../helper.php:900 ../admin/general_options.php:128
368
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
369
+ #: ../admin/social_login.php:1162 ../admin/like_buttons.php:822
370
  msgid "Save Changes"
371
  msgstr "Változások Mentése"
372
 
452
  msgstr ""
453
 
454
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
455
+ #: ../admin/social_commenting.php:492 ../admin/social_login.php:1167
456
  #: ../admin/like_buttons.php:827
457
  #, fuzzy
458
  msgid "Instagram Shoutout"
459
  msgstr "Instagram"
460
 
461
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
462
+ #: ../admin/social_commenting.php:494 ../admin/social_login.php:1169
463
  #: ../admin/like_buttons.php:829
464
  msgid ""
465
  "If you can send (to hello@heateor.com) how our plugin is helping your "
468
  msgstr ""
469
 
470
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
471
+ #: ../admin/social_commenting.php:495 ../admin/social_login.php:1170
472
  #: ../admin/like_buttons.php:830
473
  msgid ""
474
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
479
  msgstr ""
480
 
481
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
482
+ #: ../admin/social_commenting.php:496 ../admin/social_login.php:1171
483
  #: ../admin/like_buttons.php:831
484
  msgid ""
485
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
627
 
628
  #: ../admin/social_sharing.php:52 ../admin/social_sharing.php:1905
629
  #: ../admin/social_sharing.php:1907 ../admin/social_login.php:41
630
+ #: ../admin/social_login.php:1129 ../admin/like_buttons.php:47
631
  #: ../admin/like_buttons.php:793
632
  msgid "Shortcode & Widget"
633
  msgstr "Shortcode és Widget"
638
 
639
  #: ../admin/social_sharing.php:54 ../admin/social_sharing.php:1938
640
  #: ../admin/social_commenting.php:36 ../admin/social_commenting.php:471
641
+ #: ../admin/social_login.php:42 ../admin/social_login.php:1143
642
  #: ../admin/like_buttons.php:48 ../admin/like_buttons.php:806
643
  msgid "FAQ"
644
  msgstr "GYIK"
1408
  "tökéletesen) a szöveges mezőben:"
1409
 
1410
  #: ../admin/social_sharing.php:1940 ../admin/social_commenting.php:473
1411
+ #: ../admin/social_login.php:1145
1412
  msgid ""
1413
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1414
  "an online website for the plugin to function properly."
1436
  msgstr ""
1437
 
1438
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1439
+ #: ../admin/social_login.php:1151
1440
  msgid "Why is my browser blocking some features of the plugin?"
1441
  msgstr ""
1442
 
1800
  msgid "GDPR"
1801
  msgstr ""
1802
 
1803
+ #: ../admin/social_login.php:39 ../admin/social_login.php:1080
1804
  msgid "XProfile Integration"
1805
  msgstr ""
1806
 
2453
  "nem erősítette meg e-mailcímét "
2454
 
2455
  #: ../admin/social_login.php:984
2456
+ #, fuzzy
2457
+ msgid "Enable GDPR opt-in"
2458
+ msgstr "Disqus Hozzászólás Bekapcsolása"
2459
+
2460
+ #: ../admin/social_login.php:994
2461
+ msgid ""
2462
+ "Enable it to show GDPR opt-in for social login and social account linking"
2463
+ msgstr ""
2464
+
2465
+ #: ../admin/social_login.php:1003
2466
  msgid "Opt-in text"
2467
  msgstr ""
2468
 
2469
+ #: ../admin/social_login.php:1013
2470
  #, fuzzy
2471
  msgid "Text for the opt-in appearing above the social login icons"
2472
  msgstr "Szöveg a Közösségi Belépés felett"
2473
 
2474
+ #: ../admin/social_login.php:1021
2475
  msgid "Text to link to Privacy Policy page"
2476
  msgstr ""
2477
 
2478
+ #: ../admin/social_login.php:1031
2479
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2480
  msgstr ""
2481
 
2482
+ #: ../admin/social_login.php:1039
2483
  msgid "Privacy Policy Url"
2484
  msgstr ""
2485
 
2486
+ #: ../admin/social_login.php:1049
2487
  #, fuzzy
2488
  msgid "Url of the privacy policy page of your website"
2489
  msgstr "A főoldalad Url-je"
2490
 
2491
+ #: ../admin/social_login.php:1100 ../inc/widget.php:248 ../inc/widget.php:414
2492
  #: ../inc/widget.php:578 ../inc/widget.php:726
2493
  msgid "Select"
2494
  msgstr "Válassz"
2495
 
2496
+ #: ../admin/social_login.php:1131
2497
  #, fuzzy
2498
  msgid "Social Login Shortcode & Widget"
2499
  msgstr "Shortcode és Widget"
2500
 
2501
+ #: ../admin/social_login.php:1132
2502
  msgid "Social Linking Shortcode"
2503
  msgstr ""
2504
 
2505
+ #: ../admin/social_login.php:1147
2506
  msgid "Why is social login not working?"
2507
  msgstr ""
2508
 
2509
+ #: ../admin/social_login.php:1148
2510
  msgid ""
2511
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2512
  "belong to the same app"
2513
  msgstr ""
2514
 
2515
+ #: ../admin/social_login.php:1150
2516
  msgid ""
2517
  "Why the user is not appearing logged in even after Social Login until the "
2518
  "webpage is refreshed manually?"
2759
  msgid "Providers not selected"
2760
  msgstr "Nincs kiválasztott szolgáltató"
2761
 
2762
+ #: ../inc/social_login.php:712
2763
  msgid "Email"
2764
  msgstr "Email"
2765
 
2766
+ #: ../inc/social_login.php:713
2767
  msgid "Confirm email"
2768
  msgstr ""
2769
 
2770
+ #: ../inc/social_login.php:715
2771
  msgid "Save"
2772
  msgstr ""
2773
 
2774
+ #: ../inc/social_login.php:716
2775
  msgid "Cancel"
2776
  msgstr ""
2777
 
2778
+ #: ../inc/social_login.php:790
2779
  #, fuzzy
2780
  msgid "Email Verification"
2781
  msgstr "E-mail ellenőrzés bekapcsolása"
2782
 
2783
+ #: ../inc/social_login.php:792
2784
  msgid ""
2785
  "Please click on the following link or paste it in browser to verify your "
2786
  "email"
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-05-20 00:59+0530\n"
6
- "PO-Revision-Date: 2018-05-20 00:59+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"
@@ -28,7 +28,7 @@ msgstr ""
28
  msgid "Graph returned an error: "
29
  msgstr ""
30
 
31
- #: ../super_socializer.php:567
32
  #, fuzzy
33
  msgid ""
34
  "cURL is not enabled at your website server. Please contact your website "
@@ -37,7 +37,7 @@ msgstr ""
37
  "Assicurati che cURL sia abilitato sul server del tuo sito. Per verificare "
38
  "questo, potrebbe essere necessario contattare l'amministratore del server."
39
 
40
- #: ../super_socializer.php:594
41
  #, php-format
42
  msgid ""
43
  "Enter exactly the following url in <strong>Website</strong> and "
@@ -47,7 +47,7 @@ msgstr ""
47
  "e <strong>Callback URL </ strong> della tua applicazione Twitter (vedi punto "
48
  "3 %s)"
49
 
50
- #: ../super_socializer.php:597
51
  msgid ""
52
  "Make sure cURL is enabled at your website server. You may need to contact "
53
  "the server administrator of your website to verify this"
@@ -55,79 +55,79 @@ msgstr ""
55
  "Assicurati che cURL sia abilitato sul server del tuo sito. Per verificare "
56
  "questo, potrebbe essere necessario contattare l'amministratore del server."
57
 
58
- #: ../super_socializer.php:598
59
  #, php-format
60
  msgid ""
61
  "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
62
  msgstr ""
63
 
64
- #: ../super_socializer.php:864 ../helper.php:963
65
  msgid "Please verify your email address to login."
66
  msgstr "Per favore, per accedere verifica il tuo indirizzo e-mail."
67
 
68
- #: ../super_socializer.php:864
69
  msgid "Your email has been verified. Now you can login to your account"
70
  msgstr ""
71
  "Il tuo indirizzo e-mail é stato verificato, adesso puoi accedere al tuo "
72
  "account"
73
 
74
- #: ../super_socializer.php:868
75
  msgid "Notification"
76
  msgstr "Notifiche"
77
 
78
- #: ../super_socializer.php:886 ../admin/social_login.php:756
79
  msgid "Email required"
80
  msgstr "Email Obbligatoria"
81
 
82
- #: ../super_socializer.php:889
83
  msgid "Please check your email inbox to complete the registration."
84
  msgstr ""
85
  "Per favore, per completare la registrazione, controlla la tua casella di "
86
  "posta elettronica."
87
 
88
- #: ../super_socializer.php:896 ../helper.php:503
89
  msgid "Enter your LiveJournal username"
90
  msgstr ""
91
 
92
- #: ../super_socializer.php:970
93
  msgid "Leave a reply"
94
  msgstr "Lascia un commento"
95
 
96
- #: ../super_socializer.php:982 ../inc/social_sharing.php:233
97
  msgid "Shares"
98
  msgstr "Shares"
99
 
100
- #: ../super_socializer.php:982 ../inc/social_sharing.php:233
101
  msgid "Share"
102
  msgstr "Share"
103
 
104
- #: ../super_socializer.php:982
105
  #, fuzzy
106
  msgid "Link copied."
107
  msgstr "LinkedIn"
108
 
109
- #: ../super_socializer.php:1225
110
  msgid "Super Socializer - General Options"
111
  msgstr "Super Socializer - Opzioni"
112
 
113
- #: ../super_socializer.php:1225 ../admin/general_options.php:11
114
  #: ../admin/social_commenting.php:43
115
  msgid "General Options"
116
  msgstr "Opzioni Generali"
117
 
118
- #: ../super_socializer.php:1293 ../helper.php:885
119
  msgid "Social Avatar"
120
  msgstr "Social Avatar"
121
 
122
- #: ../super_socializer.php:1296
123
  msgid "Small Avatar Url"
124
  msgstr "Url Avatar Piccolo"
125
 
126
- #: ../super_socializer.php:1300
127
  msgid "Large Avatar Url"
128
  msgstr "URL Avatar Grande"
129
 
130
- #: ../super_socializer.php:1304 ../helper.php:888
131
  msgid ""
132
  "Do not fetch and update social avatar from my profile, next time I Social "
133
  "Login"
@@ -135,79 +135,79 @@ msgstr ""
135
  "La prossima volta che uso Social Login, non prendere e/o aggiornare il "
136
  "social avatar dal mio profilo."
137
 
138
- #: ../super_socializer.php:1308 ../helper.php:889
139
  msgid "Update social avatar, next time I Social Login"
140
  msgstr "La prossima volta che si usa Social Login, aggiorna il social avatar."
141
 
142
- #: ../super_socializer.php:1381 ../super_socializer.php:1844
143
  msgid ""
144
  "Your browser is blocking some features of this website. Please follow the "
145
  "instructions at {support_url} to unblock these."
146
  msgstr ""
147
 
148
- #: ../super_socializer.php:1387
149
  msgid "Login with your Social ID"
150
  msgstr "Login con il tuo ID Social"
151
 
152
- #: ../super_socializer.php:1388
153
  msgid "Email you entered is already registered or invalid"
154
  msgstr "La email inserita è già registrata o non è valida"
155
 
156
- #: ../super_socializer.php:1393
157
  msgid "Please enter a valid email address. You might be required to verify it"
158
  msgstr ""
159
  "Si prega di inserire un indirizzo email valido. Potrebbe esserne richiesta "
160
  "una verifica"
161
 
162
- #: ../super_socializer.php:1597
163
  msgid ""
164
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
165
  "current version of Super Socialzer"
166
  msgstr ""
167
 
168
- #: ../super_socializer.php:1606
169
  msgid ""
170
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
171
  "version of Super Socialzer"
172
  msgstr ""
173
 
174
- #: ../super_socializer.php:1615
175
  msgid ""
176
  "Update \"Social Login Buttons\" add-on for compatibility with current "
177
  "version of Super Socialzer"
178
  msgstr ""
179
 
180
- #: ../super_socializer.php:1624
181
  msgid ""
182
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
183
  "with current version of Super Socialzer"
184
  msgstr ""
185
 
186
- #: ../super_socializer.php:1633
187
  msgid ""
188
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
189
  "with current version of Super Socialzer"
190
  msgstr ""
191
 
192
- #: ../super_socializer.php:1640
193
  msgid ""
194
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
195
  "LiveJournal Login of Super Socialzer"
196
  msgstr ""
197
 
198
- #: ../super_socializer.php:1651
199
  #, php-format
200
  msgid ""
201
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
202
  msgstr ""
203
 
204
- #: ../super_socializer.php:1667
205
  #, php-format
206
  msgid ""
207
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
208
  msgstr ""
209
 
210
- #: ../super_socializer.php:1691
211
  #, php-format
212
  msgid ""
213
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -215,13 +215,13 @@ msgid ""
215
  "target=\"_blank\">here</a>"
216
  msgstr ""
217
 
218
- #: ../super_socializer.php:1691 ../super_socializer.php:1716
219
- #: ../super_socializer.php:1741 ../super_socializer.php:1774
220
- #: ../super_socializer.php:1799
221
  msgid "Okay"
222
  msgstr ""
223
 
224
- #: ../super_socializer.php:1716
225
  #, php-format
226
  msgid ""
227
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -229,7 +229,7 @@ msgid ""
229
  "target=\"_blank\">here</a>"
230
  msgstr ""
231
 
232
- #: ../super_socializer.php:1741
233
  #, php-format
234
  msgid ""
235
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -237,13 +237,13 @@ msgid ""
237
  "target=\"_blank\">here</a>"
238
  msgstr ""
239
 
240
- #: ../super_socializer.php:1752
241
  #, php-format
242
  msgid ""
243
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
244
  msgstr ""
245
 
246
- #: ../super_socializer.php:1774
247
  #, php-format
248
  msgid ""
249
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -251,7 +251,7 @@ msgid ""
251
  "\"%s\" target=\"_blank\">here</a>"
252
  msgstr ""
253
 
254
- #: ../super_socializer.php:1799
255
  #, php-format
256
  msgid ""
257
  "Your website visitors will see a popup notification (only once) if their "
@@ -290,11 +290,11 @@ msgstr ""
290
  msgid "Settings"
291
  msgstr "Configurazioni"
292
 
293
- #: ../helper.php:552
294
  msgid "Account linked successfully"
295
  msgstr "Account collegato correttamente"
296
 
297
- #: ../helper.php:556
298
  msgid "Account already exists or linked"
299
  msgstr "Account esistente o già collegato"
300
 
@@ -361,7 +361,7 @@ msgstr "Avatar Grande"
361
 
362
  #: ../helper.php:900 ../admin/general_options.php:128
363
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
364
- #: ../admin/social_login.php:1142 ../admin/like_buttons.php:822
365
  msgid "Save Changes"
366
  msgstr "Salva le modifiche"
367
 
@@ -447,14 +447,14 @@ msgstr ""
447
  "È possibile specificare regole CSS aggiuntive (senza &lt;style&gt; tag)"
448
 
449
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
450
- #: ../admin/social_commenting.php:492 ../admin/social_login.php:1147
451
  #: ../admin/like_buttons.php:827
452
  #, fuzzy
453
  msgid "Instagram Shoutout"
454
  msgstr "Instagram"
455
 
456
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
457
- #: ../admin/social_commenting.php:494 ../admin/social_login.php:1149
458
  #: ../admin/like_buttons.php:829
459
  msgid ""
460
  "If you can send (to hello@heateor.com) how our plugin is helping your "
@@ -463,7 +463,7 @@ msgid ""
463
  msgstr ""
464
 
465
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
466
- #: ../admin/social_commenting.php:495 ../admin/social_login.php:1150
467
  #: ../admin/like_buttons.php:830
468
  msgid ""
469
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
@@ -474,7 +474,7 @@ msgid ""
474
  msgstr ""
475
 
476
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
477
- #: ../admin/social_commenting.php:496 ../admin/social_login.php:1151
478
  #: ../admin/like_buttons.php:831
479
  msgid ""
480
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
@@ -615,7 +615,7 @@ msgstr "XProfile Integration"
615
 
616
  #: ../admin/social_sharing.php:52 ../admin/social_sharing.php:1905
617
  #: ../admin/social_sharing.php:1907 ../admin/social_login.php:41
618
- #: ../admin/social_login.php:1109 ../admin/like_buttons.php:47
619
  #: ../admin/like_buttons.php:793
620
  msgid "Shortcode & Widget"
621
  msgstr "Shortcode & Widget"
@@ -626,7 +626,7 @@ msgstr "Risoluzione dei problemi"
626
 
627
  #: ../admin/social_sharing.php:54 ../admin/social_sharing.php:1938
628
  #: ../admin/social_commenting.php:36 ../admin/social_commenting.php:471
629
- #: ../admin/social_login.php:42 ../admin/social_login.php:1123
630
  #: ../admin/like_buttons.php:48 ../admin/like_buttons.php:806
631
  msgid "FAQ"
632
  msgstr "FAQ"
@@ -1402,7 +1402,7 @@ msgstr ""
1402
  "funzionato) e cliicca sul pulsante \"Fetch New Scrape Information\" ."
1403
 
1404
  #: ../admin/social_sharing.php:1940 ../admin/social_commenting.php:473
1405
- #: ../admin/social_login.php:1125
1406
  msgid ""
1407
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1408
  "an online website for the plugin to function properly."
@@ -1430,7 +1430,7 @@ msgid ""
1430
  msgstr ""
1431
 
1432
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1433
- #: ../admin/social_login.php:1131
1434
  msgid "Why is my browser blocking some features of the plugin?"
1435
  msgstr ""
1436
 
@@ -1799,7 +1799,7 @@ msgstr "Configurazione Avanzata"
1799
  msgid "GDPR"
1800
  msgstr ""
1801
 
1802
- #: ../admin/social_login.php:39 ../admin/social_login.php:1060
1803
  msgid "XProfile Integration"
1804
  msgstr "XProfile Integration"
1805
 
@@ -2456,55 +2456,65 @@ msgstr ""
2456
  "L'utente non potrà accedere senza aver effettuato la procedura di verifica."
2457
 
2458
  #: ../admin/social_login.php:984
 
 
 
 
 
 
 
 
 
 
2459
  msgid "Opt-in text"
2460
  msgstr ""
2461
 
2462
- #: ../admin/social_login.php:994
2463
  #, fuzzy
2464
  msgid "Text for the opt-in appearing above the social login icons"
2465
  msgstr "Testo da mostrare sopra l'interfaccia Social Login"
2466
 
2467
- #: ../admin/social_login.php:1002
2468
  msgid "Text to link to Privacy Policy page"
2469
  msgstr ""
2470
 
2471
- #: ../admin/social_login.php:1012
2472
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2473
  msgstr ""
2474
 
2475
- #: ../admin/social_login.php:1020
2476
  msgid "Privacy Policy Url"
2477
  msgstr ""
2478
 
2479
- #: ../admin/social_login.php:1030
2480
  #, fuzzy
2481
  msgid "Url of the privacy policy page of your website"
2482
  msgstr "Url della homepage del tuo sito web"
2483
 
2484
- #: ../admin/social_login.php:1080 ../inc/widget.php:248 ../inc/widget.php:414
2485
  #: ../inc/widget.php:578 ../inc/widget.php:726
2486
  msgid "Select"
2487
  msgstr "Selezionare"
2488
 
2489
- #: ../admin/social_login.php:1111
2490
  msgid "Social Login Shortcode & Widget"
2491
  msgstr "Shortcode & Widget"
2492
 
2493
- #: ../admin/social_login.php:1112
2494
  msgid "Social Linking Shortcode"
2495
  msgstr "Social Linking Shortcode"
2496
 
2497
- #: ../admin/social_login.php:1127
2498
  msgid "Why is social login not working?"
2499
  msgstr ""
2500
 
2501
- #: ../admin/social_login.php:1128
2502
  msgid ""
2503
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2504
  "belong to the same app"
2505
  msgstr ""
2506
 
2507
- #: ../admin/social_login.php:1130
2508
  msgid ""
2509
  "Why the user is not appearing logged in even after Social Login until the "
2510
  "webpage is refreshed manually?"
@@ -2746,27 +2756,27 @@ msgstr "Domanda non valida"
2746
  msgid "Providers not selected"
2747
  msgstr "Providers non selezionati"
2748
 
2749
- #: ../inc/social_login.php:710
2750
  msgid "Email"
2751
  msgstr "Email"
2752
 
2753
- #: ../inc/social_login.php:711
2754
  msgid "Confirm email"
2755
  msgstr "Conferma email"
2756
 
2757
- #: ../inc/social_login.php:713
2758
  msgid "Save"
2759
  msgstr "Salva"
2760
 
2761
- #: ../inc/social_login.php:714
2762
  msgid "Cancel"
2763
  msgstr "Cancella"
2764
 
2765
- #: ../inc/social_login.php:788
2766
  msgid "Email Verification"
2767
  msgstr "Abilita verifica email"
2768
 
2769
- #: ../inc/social_login.php:790
2770
  msgid ""
2771
  "Please click on the following link or paste it in browser to verify your "
2772
  "email"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-05-26 08:46+0530\n"
6
+ "PO-Revision-Date: 2018-05-26 08:46+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"
28
  msgid "Graph returned an error: "
29
  msgstr ""
30
 
31
+ #: ../super_socializer.php:569
32
  #, fuzzy
33
  msgid ""
34
  "cURL is not enabled at your website server. Please contact your website "
37
  "Assicurati che cURL sia abilitato sul server del tuo sito. Per verificare "
38
  "questo, potrebbe essere necessario contattare l'amministratore del server."
39
 
40
+ #: ../super_socializer.php:596
41
  #, php-format
42
  msgid ""
43
  "Enter exactly the following url in <strong>Website</strong> and "
47
  "e <strong>Callback URL </ strong> della tua applicazione Twitter (vedi punto "
48
  "3 %s)"
49
 
50
+ #: ../super_socializer.php:599
51
  msgid ""
52
  "Make sure cURL is enabled at your website server. You may need to contact "
53
  "the server administrator of your website to verify this"
55
  "Assicurati che cURL sia abilitato sul server del tuo sito. Per verificare "
56
  "questo, potrebbe essere necessario contattare l'amministratore del server."
57
 
58
+ #: ../super_socializer.php:600
59
  #, php-format
60
  msgid ""
61
  "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
62
  msgstr ""
63
 
64
+ #: ../super_socializer.php:866 ../helper.php:963
65
  msgid "Please verify your email address to login."
66
  msgstr "Per favore, per accedere verifica il tuo indirizzo e-mail."
67
 
68
+ #: ../super_socializer.php:866
69
  msgid "Your email has been verified. Now you can login to your account"
70
  msgstr ""
71
  "Il tuo indirizzo e-mail é stato verificato, adesso puoi accedere al tuo "
72
  "account"
73
 
74
+ #: ../super_socializer.php:870
75
  msgid "Notification"
76
  msgstr "Notifiche"
77
 
78
+ #: ../super_socializer.php:888 ../admin/social_login.php:756
79
  msgid "Email required"
80
  msgstr "Email Obbligatoria"
81
 
82
+ #: ../super_socializer.php:891
83
  msgid "Please check your email inbox to complete the registration."
84
  msgstr ""
85
  "Per favore, per completare la registrazione, controlla la tua casella di "
86
  "posta elettronica."
87
 
88
+ #: ../super_socializer.php:898 ../helper.php:503
89
  msgid "Enter your LiveJournal username"
90
  msgstr ""
91
 
92
+ #: ../super_socializer.php:972
93
  msgid "Leave a reply"
94
  msgstr "Lascia un commento"
95
 
96
+ #: ../super_socializer.php:984 ../inc/social_sharing.php:233
97
  msgid "Shares"
98
  msgstr "Shares"
99
 
100
+ #: ../super_socializer.php:984 ../inc/social_sharing.php:233
101
  msgid "Share"
102
  msgstr "Share"
103
 
104
+ #: ../super_socializer.php:984
105
  #, fuzzy
106
  msgid "Link copied."
107
  msgstr "LinkedIn"
108
 
109
+ #: ../super_socializer.php:1227
110
  msgid "Super Socializer - General Options"
111
  msgstr "Super Socializer - Opzioni"
112
 
113
+ #: ../super_socializer.php:1227 ../admin/general_options.php:11
114
  #: ../admin/social_commenting.php:43
115
  msgid "General Options"
116
  msgstr "Opzioni Generali"
117
 
118
+ #: ../super_socializer.php:1295 ../helper.php:885
119
  msgid "Social Avatar"
120
  msgstr "Social Avatar"
121
 
122
+ #: ../super_socializer.php:1298
123
  msgid "Small Avatar Url"
124
  msgstr "Url Avatar Piccolo"
125
 
126
+ #: ../super_socializer.php:1302
127
  msgid "Large Avatar Url"
128
  msgstr "URL Avatar Grande"
129
 
130
+ #: ../super_socializer.php:1306 ../helper.php:888
131
  msgid ""
132
  "Do not fetch and update social avatar from my profile, next time I Social "
133
  "Login"
135
  "La prossima volta che uso Social Login, non prendere e/o aggiornare il "
136
  "social avatar dal mio profilo."
137
 
138
+ #: ../super_socializer.php:1310 ../helper.php:889
139
  msgid "Update social avatar, next time I Social Login"
140
  msgstr "La prossima volta che si usa Social Login, aggiorna il social avatar."
141
 
142
+ #: ../super_socializer.php:1383 ../super_socializer.php:1853
143
  msgid ""
144
  "Your browser is blocking some features of this website. Please follow the "
145
  "instructions at {support_url} to unblock these."
146
  msgstr ""
147
 
148
+ #: ../super_socializer.php:1389
149
  msgid "Login with your Social ID"
150
  msgstr "Login con il tuo ID Social"
151
 
152
+ #: ../super_socializer.php:1390
153
  msgid "Email you entered is already registered or invalid"
154
  msgstr "La email inserita è già registrata o non è valida"
155
 
156
+ #: ../super_socializer.php:1395
157
  msgid "Please enter a valid email address. You might be required to verify it"
158
  msgstr ""
159
  "Si prega di inserire un indirizzo email valido. Potrebbe esserne richiesta "
160
  "una verifica"
161
 
162
+ #: ../super_socializer.php:1600
163
  msgid ""
164
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
165
  "current version of Super Socialzer"
166
  msgstr ""
167
 
168
+ #: ../super_socializer.php:1609
169
  msgid ""
170
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
171
  "version of Super Socialzer"
172
  msgstr ""
173
 
174
+ #: ../super_socializer.php:1618
175
  msgid ""
176
  "Update \"Social Login Buttons\" add-on for compatibility with current "
177
  "version of Super Socialzer"
178
  msgstr ""
179
 
180
+ #: ../super_socializer.php:1627
181
  msgid ""
182
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
183
  "with current version of Super Socialzer"
184
  msgstr ""
185
 
186
+ #: ../super_socializer.php:1636
187
  msgid ""
188
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
189
  "with current version of Super Socialzer"
190
  msgstr ""
191
 
192
+ #: ../super_socializer.php:1643
193
  msgid ""
194
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
195
  "LiveJournal Login of Super Socialzer"
196
  msgstr ""
197
 
198
+ #: ../super_socializer.php:1654
199
  #, php-format
200
  msgid ""
201
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
202
  msgstr ""
203
 
204
+ #: ../super_socializer.php:1670
205
  #, php-format
206
  msgid ""
207
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
208
  msgstr ""
209
 
210
+ #: ../super_socializer.php:1694
211
  #, php-format
212
  msgid ""
213
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
215
  "target=\"_blank\">here</a>"
216
  msgstr ""
217
 
218
+ #: ../super_socializer.php:1694 ../super_socializer.php:1719
219
+ #: ../super_socializer.php:1744 ../super_socializer.php:1777
220
+ #: ../super_socializer.php:1802
221
  msgid "Okay"
222
  msgstr ""
223
 
224
+ #: ../super_socializer.php:1719
225
  #, php-format
226
  msgid ""
227
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
229
  "target=\"_blank\">here</a>"
230
  msgstr ""
231
 
232
+ #: ../super_socializer.php:1744
233
  #, php-format
234
  msgid ""
235
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
237
  "target=\"_blank\">here</a>"
238
  msgstr ""
239
 
240
+ #: ../super_socializer.php:1755
241
  #, php-format
242
  msgid ""
243
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
244
  msgstr ""
245
 
246
+ #: ../super_socializer.php:1777
247
  #, php-format
248
  msgid ""
249
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
251
  "\"%s\" target=\"_blank\">here</a>"
252
  msgstr ""
253
 
254
+ #: ../super_socializer.php:1802
255
  #, php-format
256
  msgid ""
257
  "Your website visitors will see a popup notification (only once) if their "
290
  msgid "Settings"
291
  msgstr "Configurazioni"
292
 
293
+ #: ../helper.php:548
294
  msgid "Account linked successfully"
295
  msgstr "Account collegato correttamente"
296
 
297
+ #: ../helper.php:552
298
  msgid "Account already exists or linked"
299
  msgstr "Account esistente o già collegato"
300
 
361
 
362
  #: ../helper.php:900 ../admin/general_options.php:128
363
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
364
+ #: ../admin/social_login.php:1162 ../admin/like_buttons.php:822
365
  msgid "Save Changes"
366
  msgstr "Salva le modifiche"
367
 
447
  "È possibile specificare regole CSS aggiuntive (senza &lt;style&gt; tag)"
448
 
449
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
450
+ #: ../admin/social_commenting.php:492 ../admin/social_login.php:1167
451
  #: ../admin/like_buttons.php:827
452
  #, fuzzy
453
  msgid "Instagram Shoutout"
454
  msgstr "Instagram"
455
 
456
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
457
+ #: ../admin/social_commenting.php:494 ../admin/social_login.php:1169
458
  #: ../admin/like_buttons.php:829
459
  msgid ""
460
  "If you can send (to hello@heateor.com) how our plugin is helping your "
463
  msgstr ""
464
 
465
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
466
+ #: ../admin/social_commenting.php:495 ../admin/social_login.php:1170
467
  #: ../admin/like_buttons.php:830
468
  msgid ""
469
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
474
  msgstr ""
475
 
476
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
477
+ #: ../admin/social_commenting.php:496 ../admin/social_login.php:1171
478
  #: ../admin/like_buttons.php:831
479
  msgid ""
480
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
615
 
616
  #: ../admin/social_sharing.php:52 ../admin/social_sharing.php:1905
617
  #: ../admin/social_sharing.php:1907 ../admin/social_login.php:41
618
+ #: ../admin/social_login.php:1129 ../admin/like_buttons.php:47
619
  #: ../admin/like_buttons.php:793
620
  msgid "Shortcode & Widget"
621
  msgstr "Shortcode & Widget"
626
 
627
  #: ../admin/social_sharing.php:54 ../admin/social_sharing.php:1938
628
  #: ../admin/social_commenting.php:36 ../admin/social_commenting.php:471
629
+ #: ../admin/social_login.php:42 ../admin/social_login.php:1143
630
  #: ../admin/like_buttons.php:48 ../admin/like_buttons.php:806
631
  msgid "FAQ"
632
  msgstr "FAQ"
1402
  "funzionato) e cliicca sul pulsante \"Fetch New Scrape Information\" ."
1403
 
1404
  #: ../admin/social_sharing.php:1940 ../admin/social_commenting.php:473
1405
+ #: ../admin/social_login.php:1145
1406
  msgid ""
1407
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1408
  "an online website for the plugin to function properly."
1430
  msgstr ""
1431
 
1432
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1433
+ #: ../admin/social_login.php:1151
1434
  msgid "Why is my browser blocking some features of the plugin?"
1435
  msgstr ""
1436
 
1799
  msgid "GDPR"
1800
  msgstr ""
1801
 
1802
+ #: ../admin/social_login.php:39 ../admin/social_login.php:1080
1803
  msgid "XProfile Integration"
1804
  msgstr "XProfile Integration"
1805
 
2456
  "L'utente non potrà accedere senza aver effettuato la procedura di verifica."
2457
 
2458
  #: ../admin/social_login.php:984
2459
+ #, fuzzy
2460
+ msgid "Enable GDPR opt-in"
2461
+ msgstr "Abilita Disqus Commenting"
2462
+
2463
+ #: ../admin/social_login.php:994
2464
+ msgid ""
2465
+ "Enable it to show GDPR opt-in for social login and social account linking"
2466
+ msgstr ""
2467
+
2468
+ #: ../admin/social_login.php:1003
2469
  msgid "Opt-in text"
2470
  msgstr ""
2471
 
2472
+ #: ../admin/social_login.php:1013
2473
  #, fuzzy
2474
  msgid "Text for the opt-in appearing above the social login icons"
2475
  msgstr "Testo da mostrare sopra l'interfaccia Social Login"
2476
 
2477
+ #: ../admin/social_login.php:1021
2478
  msgid "Text to link to Privacy Policy page"
2479
  msgstr ""
2480
 
2481
+ #: ../admin/social_login.php:1031
2482
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2483
  msgstr ""
2484
 
2485
+ #: ../admin/social_login.php:1039
2486
  msgid "Privacy Policy Url"
2487
  msgstr ""
2488
 
2489
+ #: ../admin/social_login.php:1049
2490
  #, fuzzy
2491
  msgid "Url of the privacy policy page of your website"
2492
  msgstr "Url della homepage del tuo sito web"
2493
 
2494
+ #: ../admin/social_login.php:1100 ../inc/widget.php:248 ../inc/widget.php:414
2495
  #: ../inc/widget.php:578 ../inc/widget.php:726
2496
  msgid "Select"
2497
  msgstr "Selezionare"
2498
 
2499
+ #: ../admin/social_login.php:1131
2500
  msgid "Social Login Shortcode & Widget"
2501
  msgstr "Shortcode & Widget"
2502
 
2503
+ #: ../admin/social_login.php:1132
2504
  msgid "Social Linking Shortcode"
2505
  msgstr "Social Linking Shortcode"
2506
 
2507
+ #: ../admin/social_login.php:1147
2508
  msgid "Why is social login not working?"
2509
  msgstr ""
2510
 
2511
+ #: ../admin/social_login.php:1148
2512
  msgid ""
2513
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2514
  "belong to the same app"
2515
  msgstr ""
2516
 
2517
+ #: ../admin/social_login.php:1150
2518
  msgid ""
2519
  "Why the user is not appearing logged in even after Social Login until the "
2520
  "webpage is refreshed manually?"
2756
  msgid "Providers not selected"
2757
  msgstr "Providers non selezionati"
2758
 
2759
+ #: ../inc/social_login.php:712
2760
  msgid "Email"
2761
  msgstr "Email"
2762
 
2763
+ #: ../inc/social_login.php:713
2764
  msgid "Confirm email"
2765
  msgstr "Conferma email"
2766
 
2767
+ #: ../inc/social_login.php:715
2768
  msgid "Save"
2769
  msgstr "Salva"
2770
 
2771
+ #: ../inc/social_login.php:716
2772
  msgid "Cancel"
2773
  msgstr "Cancella"
2774
 
2775
+ #: ../inc/social_login.php:790
2776
  msgid "Email Verification"
2777
  msgstr "Abilita verifica email"
2778
 
2779
+ #: ../inc/social_login.php:792
2780
  msgid ""
2781
  "Please click on the following link or paste it in browser to verify your "
2782
  "email"
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-05-20 00:58+0530\n"
6
- "PO-Revision-Date: 2018-05-20 00:58+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: en_IN\n"
@@ -27,7 +27,7 @@ msgstr ""
27
  msgid "Graph returned an error: "
28
  msgstr ""
29
 
30
- #: ../super_socializer.php:567
31
  #, fuzzy
32
  msgid ""
33
  "cURL is not enabled at your website server. Please contact your website "
@@ -36,7 +36,7 @@ msgstr ""
36
  "Certifique que a cURL esteja habilitada no seu servidor web. Você poderá ter "
37
  "que contatar o administrador do servidor do seu website para verificar isso."
38
 
39
- #: ../super_socializer.php:594
40
  #, php-format
41
  msgid ""
42
  "Enter exactly the following url in <strong>Website</strong> and "
@@ -46,7 +46,7 @@ msgstr ""
46
  "<strong>Callback Url</strong> nas opções do seu app Twitter (veja o passo 3 "
47
  "%s)"
48
 
49
- #: ../super_socializer.php:597
50
  msgid ""
51
  "Make sure cURL is enabled at your website server. You may need to contact "
52
  "the server administrator of your website to verify this"
@@ -54,75 +54,75 @@ msgstr ""
54
  "Certifique que a cURL esteja habilitada no seu servidor web. Você poderá ter "
55
  "que contatar o administrador do servidor do seu website para verificar isso."
56
 
57
- #: ../super_socializer.php:598
58
  #, php-format
59
  msgid ""
60
  "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
61
  msgstr ""
62
 
63
- #: ../super_socializer.php:864 ../helper.php:963
64
  msgid "Please verify your email address to login."
65
  msgstr "Por favor verifique seu endereço de email no login."
66
 
67
- #: ../super_socializer.php:864
68
  msgid "Your email has been verified. Now you can login to your account"
69
  msgstr "Seu email foi verificado. Agora você pode fazer login na sua conta"
70
 
71
- #: ../super_socializer.php:868
72
  msgid "Notification"
73
  msgstr "Notificaçao"
74
 
75
- #: ../super_socializer.php:886 ../admin/social_login.php:756
76
  msgid "Email required"
77
  msgstr "Necessário email"
78
 
79
- #: ../super_socializer.php:889
80
  msgid "Please check your email inbox to complete the registration."
81
  msgstr "Por favor verifique sua caixa de email para completar o registro."
82
 
83
- #: ../super_socializer.php:896 ../helper.php:503
84
  msgid "Enter your LiveJournal username"
85
  msgstr ""
86
 
87
- #: ../super_socializer.php:970
88
  msgid "Leave a reply"
89
  msgstr "Deixe uma resposta"
90
 
91
- #: ../super_socializer.php:982 ../inc/social_sharing.php:233
92
  msgid "Shares"
93
  msgstr ""
94
 
95
- #: ../super_socializer.php:982 ../inc/social_sharing.php:233
96
  msgid "Share"
97
  msgstr ""
98
 
99
- #: ../super_socializer.php:982
100
  #, fuzzy
101
  msgid "Link copied."
102
  msgstr "LinkedIn"
103
 
104
- #: ../super_socializer.php:1225
105
  msgid "Super Socializer - General Options"
106
  msgstr "Super Socializer - Opções Gerais"
107
 
108
- #: ../super_socializer.php:1225 ../admin/general_options.php:11
109
  #: ../admin/social_commenting.php:43
110
  msgid "General Options"
111
  msgstr "Opções Gerais"
112
 
113
- #: ../super_socializer.php:1293 ../helper.php:885
114
  msgid "Social Avatar"
115
  msgstr "Avatar Social"
116
 
117
- #: ../super_socializer.php:1296
118
  msgid "Small Avatar Url"
119
  msgstr "Url para Avatar pequeno"
120
 
121
- #: ../super_socializer.php:1300
122
  msgid "Large Avatar Url"
123
  msgstr "Url para Avatar Grande"
124
 
125
- #: ../super_socializer.php:1304 ../helper.php:888
126
  msgid ""
127
  "Do not fetch and update social avatar from my profile, next time I Social "
128
  "Login"
@@ -130,79 +130,79 @@ msgstr ""
130
  "Não busque ou atualize o avatar social do meu perfil, na próxima vez farei a "
131
  "Autenticação Social"
132
 
133
- #: ../super_socializer.php:1308 ../helper.php:889
134
  msgid "Update social avatar, next time I Social Login"
135
  msgstr "Atualize o avatar social, na próxima vez farei a Autenticação Social"
136
 
137
- #: ../super_socializer.php:1381 ../super_socializer.php:1844
138
  msgid ""
139
  "Your browser is blocking some features of this website. Please follow the "
140
  "instructions at {support_url} to unblock these."
141
  msgstr ""
142
 
143
- #: ../super_socializer.php:1387
144
  msgid "Login with your Social ID"
145
  msgstr ""
146
 
147
- #: ../super_socializer.php:1388
148
  msgid "Email you entered is already registered or invalid"
149
  msgstr "Email fornecido já está registrado ou é inválido"
150
 
151
- #: ../super_socializer.php:1393
152
  msgid "Please enter a valid email address. You might be required to verify it"
153
  msgstr ""
154
  "Por favor forneça um endereço de email válido. Você pode ser solicitado a "
155
  "confirmá-lo"
156
 
157
- #: ../super_socializer.php:1597
158
  msgid ""
159
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
160
  "current version of Super Socialzer"
161
  msgstr ""
162
 
163
- #: ../super_socializer.php:1606
164
  msgid ""
165
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
166
  "version of Super Socialzer"
167
  msgstr ""
168
 
169
- #: ../super_socializer.php:1615
170
  msgid ""
171
  "Update \"Social Login Buttons\" add-on for compatibility with current "
172
  "version of Super Socialzer"
173
  msgstr ""
174
 
175
- #: ../super_socializer.php:1624
176
  msgid ""
177
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
178
  "with current version of Super Socialzer"
179
  msgstr ""
180
 
181
- #: ../super_socializer.php:1633
182
  msgid ""
183
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
184
  "with current version of Super Socialzer"
185
  msgstr ""
186
 
187
- #: ../super_socializer.php:1640
188
  msgid ""
189
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
190
  "LiveJournal Login of Super Socialzer"
191
  msgstr ""
192
 
193
- #: ../super_socializer.php:1651
194
  #, php-format
195
  msgid ""
196
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
197
  msgstr ""
198
 
199
- #: ../super_socializer.php:1667
200
  #, php-format
201
  msgid ""
202
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
203
  msgstr ""
204
 
205
- #: ../super_socializer.php:1691
206
  #, php-format
207
  msgid ""
208
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -210,13 +210,13 @@ msgid ""
210
  "target=\"_blank\">here</a>"
211
  msgstr ""
212
 
213
- #: ../super_socializer.php:1691 ../super_socializer.php:1716
214
- #: ../super_socializer.php:1741 ../super_socializer.php:1774
215
- #: ../super_socializer.php:1799
216
  msgid "Okay"
217
  msgstr ""
218
 
219
- #: ../super_socializer.php:1716
220
  #, php-format
221
  msgid ""
222
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -224,7 +224,7 @@ msgid ""
224
  "target=\"_blank\">here</a>"
225
  msgstr ""
226
 
227
- #: ../super_socializer.php:1741
228
  #, php-format
229
  msgid ""
230
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -232,13 +232,13 @@ msgid ""
232
  "target=\"_blank\">here</a>"
233
  msgstr ""
234
 
235
- #: ../super_socializer.php:1752
236
  #, php-format
237
  msgid ""
238
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
239
  msgstr ""
240
 
241
- #: ../super_socializer.php:1774
242
  #, php-format
243
  msgid ""
244
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -246,7 +246,7 @@ msgid ""
246
  "\"%s\" target=\"_blank\">here</a>"
247
  msgstr ""
248
 
249
- #: ../super_socializer.php:1799
250
  #, php-format
251
  msgid ""
252
  "Your website visitors will see a popup notification (only once) if their "
@@ -285,11 +285,11 @@ msgstr ""
285
  msgid "Settings"
286
  msgstr "Configurações"
287
 
288
- #: ../helper.php:552
289
  msgid "Account linked successfully"
290
  msgstr "Conta associada com sucesso"
291
 
292
- #: ../helper.php:556
293
  msgid "Account already exists or linked"
294
  msgstr "Conta já existente ou já está associada"
295
 
@@ -356,7 +356,7 @@ msgstr "Avatar Grande"
356
 
357
  #: ../helper.php:900 ../admin/general_options.php:128
358
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
359
- #: ../admin/social_login.php:1142 ../admin/like_buttons.php:822
360
  msgid "Save Changes"
361
  msgstr "Salvar Alterações"
362
 
@@ -443,14 +443,14 @@ msgstr ""
443
  "style&gt; )"
444
 
445
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
446
- #: ../admin/social_commenting.php:492 ../admin/social_login.php:1147
447
  #: ../admin/like_buttons.php:827
448
  #, fuzzy
449
  msgid "Instagram Shoutout"
450
  msgstr "Instagram"
451
 
452
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
453
- #: ../admin/social_commenting.php:494 ../admin/social_login.php:1149
454
  #: ../admin/like_buttons.php:829
455
  msgid ""
456
  "If you can send (to hello@heateor.com) how our plugin is helping your "
@@ -459,7 +459,7 @@ msgid ""
459
  msgstr ""
460
 
461
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
462
- #: ../admin/social_commenting.php:495 ../admin/social_login.php:1150
463
  #: ../admin/like_buttons.php:830
464
  msgid ""
465
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
@@ -470,7 +470,7 @@ msgid ""
470
  msgstr ""
471
 
472
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
473
- #: ../admin/social_commenting.php:496 ../admin/social_login.php:1151
474
  #: ../admin/like_buttons.php:831
475
  msgid ""
476
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
@@ -612,7 +612,7 @@ msgstr ""
612
 
613
  #: ../admin/social_sharing.php:52 ../admin/social_sharing.php:1905
614
  #: ../admin/social_sharing.php:1907 ../admin/social_login.php:41
615
- #: ../admin/social_login.php:1109 ../admin/like_buttons.php:47
616
  #: ../admin/like_buttons.php:793
617
  msgid "Shortcode & Widget"
618
  msgstr "Shortcode & Widget"
@@ -623,7 +623,7 @@ msgstr "Resolução de Problemas"
623
 
624
  #: ../admin/social_sharing.php:54 ../admin/social_sharing.php:1938
625
  #: ../admin/social_commenting.php:36 ../admin/social_commenting.php:471
626
- #: ../admin/social_login.php:42 ../admin/social_login.php:1123
627
  #: ../admin/like_buttons.php:48 ../admin/like_buttons.php:806
628
  msgid "FAQ"
629
  msgstr "P&R"
@@ -1409,7 +1409,7 @@ msgstr ""
1409
  "website:"
1410
 
1411
  #: ../admin/social_sharing.php:1940 ../admin/social_commenting.php:473
1412
- #: ../admin/social_login.php:1125
1413
  msgid ""
1414
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1415
  "an online website for the plugin to function properly."
@@ -1437,7 +1437,7 @@ msgid ""
1437
  msgstr ""
1438
 
1439
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1440
- #: ../admin/social_login.php:1131
1441
  msgid "Why is my browser blocking some features of the plugin?"
1442
  msgstr ""
1443
 
@@ -1804,7 +1804,7 @@ msgstr "Configuração Básica"
1804
  msgid "GDPR"
1805
  msgstr ""
1806
 
1807
- #: ../admin/social_login.php:39 ../admin/social_login.php:1060
1808
  msgid "XProfile Integration"
1809
  msgstr ""
1810
 
@@ -2462,55 +2462,65 @@ msgstr ""
2462
  "antes de validar seu email"
2463
 
2464
  #: ../admin/social_login.php:984
 
 
 
 
 
 
 
 
 
 
2465
  msgid "Opt-in text"
2466
  msgstr ""
2467
 
2468
- #: ../admin/social_login.php:994
2469
  #, fuzzy
2470
  msgid "Text for the opt-in appearing above the social login icons"
2471
  msgstr "Texto exibido acima da interface de Autenticação Social"
2472
 
2473
- #: ../admin/social_login.php:1002
2474
  msgid "Text to link to Privacy Policy page"
2475
  msgstr ""
2476
 
2477
- #: ../admin/social_login.php:1012
2478
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2479
  msgstr ""
2480
 
2481
- #: ../admin/social_login.php:1020
2482
  msgid "Privacy Policy Url"
2483
  msgstr ""
2484
 
2485
- #: ../admin/social_login.php:1030
2486
  #, fuzzy
2487
  msgid "Url of the privacy policy page of your website"
2488
  msgstr "Url da homepage do seu website"
2489
 
2490
- #: ../admin/social_login.php:1080 ../inc/widget.php:248 ../inc/widget.php:414
2491
  #: ../inc/widget.php:578 ../inc/widget.php:726
2492
  msgid "Select"
2493
  msgstr "Selecione"
2494
 
2495
- #: ../admin/social_login.php:1111
2496
  msgid "Social Login Shortcode & Widget"
2497
  msgstr "Autenticação Social Shortcode & Widget"
2498
 
2499
- #: ../admin/social_login.php:1112
2500
  msgid "Social Linking Shortcode"
2501
  msgstr "Shortcode de associação Social"
2502
 
2503
- #: ../admin/social_login.php:1127
2504
  msgid "Why is social login not working?"
2505
  msgstr ""
2506
 
2507
- #: ../admin/social_login.php:1128
2508
  msgid ""
2509
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2510
  "belong to the same app"
2511
  msgstr ""
2512
 
2513
- #: ../admin/social_login.php:1130
2514
  msgid ""
2515
  "Why the user is not appearing logged in even after Social Login until the "
2516
  "webpage is refreshed manually?"
@@ -2749,28 +2759,28 @@ msgstr "Requisição inválida"
2749
  msgid "Providers not selected"
2750
  msgstr "Provedor não selecionado"
2751
 
2752
- #: ../inc/social_login.php:710
2753
  msgid "Email"
2754
  msgstr ""
2755
 
2756
- #: ../inc/social_login.php:711
2757
  msgid "Confirm email"
2758
  msgstr ""
2759
 
2760
- #: ../inc/social_login.php:713
2761
  msgid "Save"
2762
  msgstr ""
2763
 
2764
- #: ../inc/social_login.php:714
2765
  msgid "Cancel"
2766
  msgstr ""
2767
 
2768
- #: ../inc/social_login.php:788
2769
  #, fuzzy
2770
  msgid "Email Verification"
2771
  msgstr "Habilitar verificação de email"
2772
 
2773
- #: ../inc/social_login.php:790
2774
  msgid ""
2775
  "Please click on the following link or paste it in browser to verify your "
2776
  "email"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-05-26 08:46+0530\n"
6
+ "PO-Revision-Date: 2018-05-26 08:46+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: en_IN\n"
27
  msgid "Graph returned an error: "
28
  msgstr ""
29
 
30
+ #: ../super_socializer.php:569
31
  #, fuzzy
32
  msgid ""
33
  "cURL is not enabled at your website server. Please contact your website "
36
  "Certifique que a cURL esteja habilitada no seu servidor web. Você poderá ter "
37
  "que contatar o administrador do servidor do seu website para verificar isso."
38
 
39
+ #: ../super_socializer.php:596
40
  #, php-format
41
  msgid ""
42
  "Enter exactly the following url in <strong>Website</strong> and "
46
  "<strong>Callback Url</strong> nas opções do seu app Twitter (veja o passo 3 "
47
  "%s)"
48
 
49
+ #: ../super_socializer.php:599
50
  msgid ""
51
  "Make sure cURL is enabled at your website server. You may need to contact "
52
  "the server administrator of your website to verify this"
54
  "Certifique que a cURL esteja habilitada no seu servidor web. Você poderá ter "
55
  "que contatar o administrador do servidor do seu website para verificar isso."
56
 
57
+ #: ../super_socializer.php:600
58
  #, php-format
59
  msgid ""
60
  "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
61
  msgstr ""
62
 
63
+ #: ../super_socializer.php:866 ../helper.php:963
64
  msgid "Please verify your email address to login."
65
  msgstr "Por favor verifique seu endereço de email no login."
66
 
67
+ #: ../super_socializer.php:866
68
  msgid "Your email has been verified. Now you can login to your account"
69
  msgstr "Seu email foi verificado. Agora você pode fazer login na sua conta"
70
 
71
+ #: ../super_socializer.php:870
72
  msgid "Notification"
73
  msgstr "Notificaçao"
74
 
75
+ #: ../super_socializer.php:888 ../admin/social_login.php:756
76
  msgid "Email required"
77
  msgstr "Necessário email"
78
 
79
+ #: ../super_socializer.php:891
80
  msgid "Please check your email inbox to complete the registration."
81
  msgstr "Por favor verifique sua caixa de email para completar o registro."
82
 
83
+ #: ../super_socializer.php:898 ../helper.php:503
84
  msgid "Enter your LiveJournal username"
85
  msgstr ""
86
 
87
+ #: ../super_socializer.php:972
88
  msgid "Leave a reply"
89
  msgstr "Deixe uma resposta"
90
 
91
+ #: ../super_socializer.php:984 ../inc/social_sharing.php:233
92
  msgid "Shares"
93
  msgstr ""
94
 
95
+ #: ../super_socializer.php:984 ../inc/social_sharing.php:233
96
  msgid "Share"
97
  msgstr ""
98
 
99
+ #: ../super_socializer.php:984
100
  #, fuzzy
101
  msgid "Link copied."
102
  msgstr "LinkedIn"
103
 
104
+ #: ../super_socializer.php:1227
105
  msgid "Super Socializer - General Options"
106
  msgstr "Super Socializer - Opções Gerais"
107
 
108
+ #: ../super_socializer.php:1227 ../admin/general_options.php:11
109
  #: ../admin/social_commenting.php:43
110
  msgid "General Options"
111
  msgstr "Opções Gerais"
112
 
113
+ #: ../super_socializer.php:1295 ../helper.php:885
114
  msgid "Social Avatar"
115
  msgstr "Avatar Social"
116
 
117
+ #: ../super_socializer.php:1298
118
  msgid "Small Avatar Url"
119
  msgstr "Url para Avatar pequeno"
120
 
121
+ #: ../super_socializer.php:1302
122
  msgid "Large Avatar Url"
123
  msgstr "Url para Avatar Grande"
124
 
125
+ #: ../super_socializer.php:1306 ../helper.php:888
126
  msgid ""
127
  "Do not fetch and update social avatar from my profile, next time I Social "
128
  "Login"
130
  "Não busque ou atualize o avatar social do meu perfil, na próxima vez farei a "
131
  "Autenticação Social"
132
 
133
+ #: ../super_socializer.php:1310 ../helper.php:889
134
  msgid "Update social avatar, next time I Social Login"
135
  msgstr "Atualize o avatar social, na próxima vez farei a Autenticação Social"
136
 
137
+ #: ../super_socializer.php:1383 ../super_socializer.php:1853
138
  msgid ""
139
  "Your browser is blocking some features of this website. Please follow the "
140
  "instructions at {support_url} to unblock these."
141
  msgstr ""
142
 
143
+ #: ../super_socializer.php:1389
144
  msgid "Login with your Social ID"
145
  msgstr ""
146
 
147
+ #: ../super_socializer.php:1390
148
  msgid "Email you entered is already registered or invalid"
149
  msgstr "Email fornecido já está registrado ou é inválido"
150
 
151
+ #: ../super_socializer.php:1395
152
  msgid "Please enter a valid email address. You might be required to verify it"
153
  msgstr ""
154
  "Por favor forneça um endereço de email válido. Você pode ser solicitado a "
155
  "confirmá-lo"
156
 
157
+ #: ../super_socializer.php:1600
158
  msgid ""
159
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
160
  "current version of Super Socialzer"
161
  msgstr ""
162
 
163
+ #: ../super_socializer.php:1609
164
  msgid ""
165
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
166
  "version of Super Socialzer"
167
  msgstr ""
168
 
169
+ #: ../super_socializer.php:1618
170
  msgid ""
171
  "Update \"Social Login Buttons\" add-on for compatibility with current "
172
  "version of Super Socialzer"
173
  msgstr ""
174
 
175
+ #: ../super_socializer.php:1627
176
  msgid ""
177
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
178
  "with current version of Super Socialzer"
179
  msgstr ""
180
 
181
+ #: ../super_socializer.php:1636
182
  msgid ""
183
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
184
  "with current version of Super Socialzer"
185
  msgstr ""
186
 
187
+ #: ../super_socializer.php:1643
188
  msgid ""
189
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
190
  "LiveJournal Login of Super Socialzer"
191
  msgstr ""
192
 
193
+ #: ../super_socializer.php:1654
194
  #, php-format
195
  msgid ""
196
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
197
  msgstr ""
198
 
199
+ #: ../super_socializer.php:1670
200
  #, php-format
201
  msgid ""
202
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
203
  msgstr ""
204
 
205
+ #: ../super_socializer.php:1694
206
  #, php-format
207
  msgid ""
208
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
210
  "target=\"_blank\">here</a>"
211
  msgstr ""
212
 
213
+ #: ../super_socializer.php:1694 ../super_socializer.php:1719
214
+ #: ../super_socializer.php:1744 ../super_socializer.php:1777
215
+ #: ../super_socializer.php:1802
216
  msgid "Okay"
217
  msgstr ""
218
 
219
+ #: ../super_socializer.php:1719
220
  #, php-format
221
  msgid ""
222
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
224
  "target=\"_blank\">here</a>"
225
  msgstr ""
226
 
227
+ #: ../super_socializer.php:1744
228
  #, php-format
229
  msgid ""
230
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
232
  "target=\"_blank\">here</a>"
233
  msgstr ""
234
 
235
+ #: ../super_socializer.php:1755
236
  #, php-format
237
  msgid ""
238
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
239
  msgstr ""
240
 
241
+ #: ../super_socializer.php:1777
242
  #, php-format
243
  msgid ""
244
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
246
  "\"%s\" target=\"_blank\">here</a>"
247
  msgstr ""
248
 
249
+ #: ../super_socializer.php:1802
250
  #, php-format
251
  msgid ""
252
  "Your website visitors will see a popup notification (only once) if their "
285
  msgid "Settings"
286
  msgstr "Configurações"
287
 
288
+ #: ../helper.php:548
289
  msgid "Account linked successfully"
290
  msgstr "Conta associada com sucesso"
291
 
292
+ #: ../helper.php:552
293
  msgid "Account already exists or linked"
294
  msgstr "Conta já existente ou já está associada"
295
 
356
 
357
  #: ../helper.php:900 ../admin/general_options.php:128
358
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
359
+ #: ../admin/social_login.php:1162 ../admin/like_buttons.php:822
360
  msgid "Save Changes"
361
  msgstr "Salvar Alterações"
362
 
443
  "style&gt; )"
444
 
445
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
446
+ #: ../admin/social_commenting.php:492 ../admin/social_login.php:1167
447
  #: ../admin/like_buttons.php:827
448
  #, fuzzy
449
  msgid "Instagram Shoutout"
450
  msgstr "Instagram"
451
 
452
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
453
+ #: ../admin/social_commenting.php:494 ../admin/social_login.php:1169
454
  #: ../admin/like_buttons.php:829
455
  msgid ""
456
  "If you can send (to hello@heateor.com) how our plugin is helping your "
459
  msgstr ""
460
 
461
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
462
+ #: ../admin/social_commenting.php:495 ../admin/social_login.php:1170
463
  #: ../admin/like_buttons.php:830
464
  msgid ""
465
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
470
  msgstr ""
471
 
472
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
473
+ #: ../admin/social_commenting.php:496 ../admin/social_login.php:1171
474
  #: ../admin/like_buttons.php:831
475
  msgid ""
476
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
612
 
613
  #: ../admin/social_sharing.php:52 ../admin/social_sharing.php:1905
614
  #: ../admin/social_sharing.php:1907 ../admin/social_login.php:41
615
+ #: ../admin/social_login.php:1129 ../admin/like_buttons.php:47
616
  #: ../admin/like_buttons.php:793
617
  msgid "Shortcode & Widget"
618
  msgstr "Shortcode & Widget"
623
 
624
  #: ../admin/social_sharing.php:54 ../admin/social_sharing.php:1938
625
  #: ../admin/social_commenting.php:36 ../admin/social_commenting.php:471
626
+ #: ../admin/social_login.php:42 ../admin/social_login.php:1143
627
  #: ../admin/like_buttons.php:48 ../admin/like_buttons.php:806
628
  msgid "FAQ"
629
  msgstr "P&R"
1409
  "website:"
1410
 
1411
  #: ../admin/social_sharing.php:1940 ../admin/social_commenting.php:473
1412
+ #: ../admin/social_login.php:1145
1413
  msgid ""
1414
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1415
  "an online website for the plugin to function properly."
1437
  msgstr ""
1438
 
1439
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1440
+ #: ../admin/social_login.php:1151
1441
  msgid "Why is my browser blocking some features of the plugin?"
1442
  msgstr ""
1443
 
1804
  msgid "GDPR"
1805
  msgstr ""
1806
 
1807
+ #: ../admin/social_login.php:39 ../admin/social_login.php:1080
1808
  msgid "XProfile Integration"
1809
  msgstr ""
1810
 
2462
  "antes de validar seu email"
2463
 
2464
  #: ../admin/social_login.php:984
2465
+ #, fuzzy
2466
+ msgid "Enable GDPR opt-in"
2467
+ msgstr "Habilitar comentário Disqus"
2468
+
2469
+ #: ../admin/social_login.php:994
2470
+ msgid ""
2471
+ "Enable it to show GDPR opt-in for social login and social account linking"
2472
+ msgstr ""
2473
+
2474
+ #: ../admin/social_login.php:1003
2475
  msgid "Opt-in text"
2476
  msgstr ""
2477
 
2478
+ #: ../admin/social_login.php:1013
2479
  #, fuzzy
2480
  msgid "Text for the opt-in appearing above the social login icons"
2481
  msgstr "Texto exibido acima da interface de Autenticação Social"
2482
 
2483
+ #: ../admin/social_login.php:1021
2484
  msgid "Text to link to Privacy Policy page"
2485
  msgstr ""
2486
 
2487
+ #: ../admin/social_login.php:1031
2488
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2489
  msgstr ""
2490
 
2491
+ #: ../admin/social_login.php:1039
2492
  msgid "Privacy Policy Url"
2493
  msgstr ""
2494
 
2495
+ #: ../admin/social_login.php:1049
2496
  #, fuzzy
2497
  msgid "Url of the privacy policy page of your website"
2498
  msgstr "Url da homepage do seu website"
2499
 
2500
+ #: ../admin/social_login.php:1100 ../inc/widget.php:248 ../inc/widget.php:414
2501
  #: ../inc/widget.php:578 ../inc/widget.php:726
2502
  msgid "Select"
2503
  msgstr "Selecione"
2504
 
2505
+ #: ../admin/social_login.php:1131
2506
  msgid "Social Login Shortcode & Widget"
2507
  msgstr "Autenticação Social Shortcode & Widget"
2508
 
2509
+ #: ../admin/social_login.php:1132
2510
  msgid "Social Linking Shortcode"
2511
  msgstr "Shortcode de associação Social"
2512
 
2513
+ #: ../admin/social_login.php:1147
2514
  msgid "Why is social login not working?"
2515
  msgstr ""
2516
 
2517
+ #: ../admin/social_login.php:1148
2518
  msgid ""
2519
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2520
  "belong to the same app"
2521
  msgstr ""
2522
 
2523
+ #: ../admin/social_login.php:1150
2524
  msgid ""
2525
  "Why the user is not appearing logged in even after Social Login until the "
2526
  "webpage is refreshed manually?"
2759
  msgid "Providers not selected"
2760
  msgstr "Provedor não selecionado"
2761
 
2762
+ #: ../inc/social_login.php:712
2763
  msgid "Email"
2764
  msgstr ""
2765
 
2766
+ #: ../inc/social_login.php:713
2767
  msgid "Confirm email"
2768
  msgstr ""
2769
 
2770
+ #: ../inc/social_login.php:715
2771
  msgid "Save"
2772
  msgstr ""
2773
 
2774
+ #: ../inc/social_login.php:716
2775
  msgid "Cancel"
2776
  msgstr ""
2777
 
2778
+ #: ../inc/social_login.php:790
2779
  #, fuzzy
2780
  msgid "Email Verification"
2781
  msgstr "Habilitar verificação de email"
2782
 
2783
+ #: ../inc/social_login.php:792
2784
  msgid ""
2785
  "Please click on the following link or paste it in browser to verify your "
2786
  "email"
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-05-20 00:58+0530\n"
6
- "PO-Revision-Date: 2018-05-20 00:58+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Russian\n"
9
  "Language: ru_RU\n"
@@ -29,7 +29,7 @@ msgstr ""
29
  msgid "Graph returned an error: "
30
  msgstr ""
31
 
32
- #: ../super_socializer.php:567
33
  msgid ""
34
  "cURL is not enabled at your website server. Please contact your website "
35
  "server administrator to enable it."
@@ -37,7 +37,7 @@ msgstr ""
37
  "Curl не включен в вашем веб-сайте. Вам, возможно, потребуется обратиться к "
38
  "администратору вашего сайта, чтобы включить это."
39
 
40
- #: ../super_socializer.php:594
41
  #, php-format
42
  msgid ""
43
  "Enter exactly the following url in <strong>Website</strong> and "
@@ -46,7 +46,7 @@ msgstr ""
46
  "Введите действующую ссылку для <strong>сайта</strong> и <strong>обратную "
47
  "ссылку</strong> в вашем приложении Твиттера (смотрите шаг 3 %s)"
48
 
49
- #: ../super_socializer.php:597
50
  msgid ""
51
  "Make sure cURL is enabled at your website server. You may need to contact "
52
  "the server administrator of your website to verify this"
@@ -54,7 +54,7 @@ msgstr ""
54
  "Убедитесь Curl включен в вашем веб-сайте сервера. Вы, возможно, потребуется "
55
  "обратиться к администратору сервера вашего сайта, чтобы убедиться, это"
56
 
57
- #: ../super_socializer.php:598
58
  #, php-format
59
  msgid ""
60
  "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
@@ -62,69 +62,69 @@ msgstr ""
62
  "Убедитесь, что «Включить Блокировку обратного вызова » параметр отключен. "
63
  "Смотрите шаг 4 %s"
64
 
65
- #: ../super_socializer.php:864 ../helper.php:963
66
  msgid "Please verify your email address to login."
67
  msgstr "Пожалуйста, подтвердите ваш адрес электронной почты."
68
 
69
- #: ../super_socializer.php:864
70
  msgid "Your email has been verified. Now you can login to your account"
71
  msgstr "Ваше сообщение было проверено. Теперь вы можете войти в свой аккаунт"
72
 
73
- #: ../super_socializer.php:868
74
  msgid "Notification"
75
  msgstr "Уведомления"
76
 
77
- #: ../super_socializer.php:886 ../admin/social_login.php:756
78
  msgid "Email required"
79
  msgstr "Email (Обязательно)"
80
 
81
- #: ../super_socializer.php:889
82
  msgid "Please check your email inbox to complete the registration."
83
  msgstr "Пожалуйста, проверьте свой почтовый ящик для завершения регистрации."
84
 
85
- #: ../super_socializer.php:896 ../helper.php:503
86
  msgid "Enter your LiveJournal username"
87
  msgstr "Введите ваше имя пользователя LiveJournal"
88
 
89
- #: ../super_socializer.php:970
90
  msgid "Leave a reply"
91
  msgstr "Оставить ответ"
92
 
93
- #: ../super_socializer.php:982 ../inc/social_sharing.php:233
94
  msgid "Shares"
95
  msgstr "Поделились"
96
 
97
- #: ../super_socializer.php:982 ../inc/social_sharing.php:233
98
  msgid "Share"
99
  msgstr "Поделиться"
100
 
101
- #: ../super_socializer.php:982
102
  #, fuzzy
103
  msgid "Link copied."
104
  msgstr "LinkedIn"
105
 
106
- #: ../super_socializer.php:1225
107
  msgid "Super Socializer - General Options"
108
  msgstr "Super Socializer - Общие настройки"
109
 
110
- #: ../super_socializer.php:1225 ../admin/general_options.php:11
111
  #: ../admin/social_commenting.php:43
112
  msgid "General Options"
113
  msgstr "Основные настройки"
114
 
115
- #: ../super_socializer.php:1293 ../helper.php:885
116
  msgid "Social Avatar"
117
  msgstr "Социальный аватар"
118
 
119
- #: ../super_socializer.php:1296
120
  msgid "Small Avatar Url"
121
  msgstr "Ссылка для маленького аватара"
122
 
123
- #: ../super_socializer.php:1300
124
  msgid "Large Avatar Url"
125
  msgstr "Ссылка для большого аватара"
126
 
127
- #: ../super_socializer.php:1304 ../helper.php:888
128
  msgid ""
129
  "Do not fetch and update social avatar from my profile, next time I Social "
130
  "Login"
@@ -132,13 +132,13 @@ msgstr ""
132
  "Не получать и обновлять социальный аватар из моего профиля, в следующий раз "
133
  "я когда я использую вход через соцсети"
134
 
135
- #: ../super_socializer.php:1308 ../helper.php:889
136
  msgid "Update social avatar, next time I Social Login"
137
  msgstr ""
138
  "Обновление аватара соцсетей в следующий раз при использовании входа через "
139
  "соцсети"
140
 
141
- #: ../super_socializer.php:1381 ../super_socializer.php:1844
142
  msgid ""
143
  "Your browser is blocking some features of this website. Please follow the "
144
  "instructions at {support_url} to unblock these."
@@ -146,70 +146,70 @@ msgstr ""
146
  "Ваш браузер блокирует некоторые функции данного веб-сайта. Пожалуйста, "
147
  "следуйте инструкциям в {support_url}, чтобы разблокировать функции."
148
 
149
- #: ../super_socializer.php:1387
150
  msgid "Login with your Social ID"
151
  msgstr "Войти, используя социальный аккаунт"
152
 
153
- #: ../super_socializer.php:1388
154
  msgid "Email you entered is already registered or invalid"
155
  msgstr ""
156
  "Электронная почта, которую вы ввели, уже зарегистрирована или недействительна"
157
 
158
- #: ../super_socializer.php:1393
159
  msgid "Please enter a valid email address. You might be required to verify it"
160
  msgstr ""
161
  "Пожалуйста, введите действительный адрес электронной почты. Вам, возможно, "
162
  "потребуется проверить его"
163
 
164
- #: ../super_socializer.php:1597
165
  msgid ""
166
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
167
  "current version of Super Socialzer"
168
  msgstr ""
169
 
170
- #: ../super_socializer.php:1606
171
  msgid ""
172
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
173
  "version of Super Socialzer"
174
  msgstr ""
175
 
176
- #: ../super_socializer.php:1615
177
  msgid ""
178
  "Update \"Social Login Buttons\" add-on for compatibility with current "
179
  "version of Super Socialzer"
180
  msgstr ""
181
 
182
- #: ../super_socializer.php:1624
183
  msgid ""
184
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
185
  "with current version of Super Socialzer"
186
  msgstr ""
187
 
188
- #: ../super_socializer.php:1633
189
  msgid ""
190
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
191
  "with current version of Super Socialzer"
192
  msgstr ""
193
 
194
- #: ../super_socializer.php:1640
195
  msgid ""
196
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
197
  "LiveJournal Login of Super Socialzer"
198
  msgstr ""
199
 
200
- #: ../super_socializer.php:1651
201
  #, php-format
202
  msgid ""
203
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
204
  msgstr ""
205
 
206
- #: ../super_socializer.php:1667
207
  #, php-format
208
  msgid ""
209
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
210
  msgstr ""
211
 
212
- #: ../super_socializer.php:1691
213
  #, php-format
214
  msgid ""
215
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -217,13 +217,13 @@ msgid ""
217
  "target=\"_blank\">here</a>"
218
  msgstr ""
219
 
220
- #: ../super_socializer.php:1691 ../super_socializer.php:1716
221
- #: ../super_socializer.php:1741 ../super_socializer.php:1774
222
- #: ../super_socializer.php:1799
223
  msgid "Okay"
224
  msgstr "Окей"
225
 
226
- #: ../super_socializer.php:1716
227
  #, php-format
228
  msgid ""
229
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -231,7 +231,7 @@ msgid ""
231
  "target=\"_blank\">here</a>"
232
  msgstr ""
233
 
234
- #: ../super_socializer.php:1741
235
  #, php-format
236
  msgid ""
237
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -239,13 +239,13 @@ msgid ""
239
  "target=\"_blank\">here</a>"
240
  msgstr ""
241
 
242
- #: ../super_socializer.php:1752
243
  #, php-format
244
  msgid ""
245
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
246
  msgstr ""
247
 
248
- #: ../super_socializer.php:1774
249
  #, php-format
250
  msgid ""
251
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -253,7 +253,7 @@ msgid ""
253
  "\"%s\" target=\"_blank\">here</a>"
254
  msgstr ""
255
 
256
- #: ../super_socializer.php:1799
257
  #, php-format
258
  msgid ""
259
  "Your website visitors will see a popup notification (only once) if their "
@@ -297,11 +297,11 @@ msgstr "Техническая документация"
297
  msgid "Settings"
298
  msgstr "Настройки"
299
 
300
- #: ../helper.php:552
301
  msgid "Account linked successfully"
302
  msgstr "Аккаунт успешно связан"
303
 
304
- #: ../helper.php:556
305
  msgid "Account already exists or linked"
306
  msgstr "Аккаунт уже существует или связан"
307
 
@@ -369,7 +369,7 @@ msgstr "Большой аватар"
369
 
370
  #: ../helper.php:900 ../admin/general_options.php:128
371
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
372
- #: ../admin/social_login.php:1142 ../admin/like_buttons.php:822
373
  msgid "Save Changes"
374
  msgstr "Сохранить изменения"
375
 
@@ -463,14 +463,14 @@ msgstr ""
463
  "Можно указать любые дополнительные правила CSS (без тега &lt; style &gt;)"
464
 
465
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
466
- #: ../admin/social_commenting.php:492 ../admin/social_login.php:1147
467
  #: ../admin/like_buttons.php:827
468
  #, fuzzy
469
  msgid "Instagram Shoutout"
470
  msgstr "Instagram"
471
 
472
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
473
- #: ../admin/social_commenting.php:494 ../admin/social_login.php:1149
474
  #: ../admin/like_buttons.php:829
475
  msgid ""
476
  "If you can send (to hello@heateor.com) how our plugin is helping your "
@@ -479,7 +479,7 @@ msgid ""
479
  msgstr ""
480
 
481
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
482
- #: ../admin/social_commenting.php:495 ../admin/social_login.php:1150
483
  #: ../admin/like_buttons.php:830
484
  msgid ""
485
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
@@ -490,7 +490,7 @@ msgid ""
490
  msgstr ""
491
 
492
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
493
- #: ../admin/social_commenting.php:496 ../admin/social_login.php:1151
494
  #: ../admin/like_buttons.php:831
495
  msgid ""
496
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
@@ -633,7 +633,7 @@ msgstr "XProfile интеграция"
633
 
634
  #: ../admin/social_sharing.php:52 ../admin/social_sharing.php:1905
635
  #: ../admin/social_sharing.php:1907 ../admin/social_login.php:41
636
- #: ../admin/social_login.php:1109 ../admin/like_buttons.php:47
637
  #: ../admin/like_buttons.php:793
638
  msgid "Shortcode & Widget"
639
  msgstr "Шорткод и виджет"
@@ -644,7 +644,7 @@ msgstr "Устранение неисправностей"
644
 
645
  #: ../admin/social_sharing.php:54 ../admin/social_sharing.php:1938
646
  #: ../admin/social_commenting.php:36 ../admin/social_commenting.php:471
647
- #: ../admin/social_login.php:42 ../admin/social_login.php:1123
648
  #: ../admin/like_buttons.php:48 ../admin/like_buttons.php:806
649
  msgid "FAQ"
650
  msgstr "Часто задаваемые вопросы (FAQ)"
@@ -1412,7 +1412,7 @@ msgstr ""
1412
  "\"Получение информации о новой поломке\" ."
1413
 
1414
  #: ../admin/social_sharing.php:1940 ../admin/social_commenting.php:473
1415
- #: ../admin/social_login.php:1125
1416
  msgid ""
1417
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1418
  "an online website for the plugin to function properly."
@@ -1440,7 +1440,7 @@ msgid ""
1440
  msgstr ""
1441
 
1442
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1443
- #: ../admin/social_login.php:1131
1444
  msgid "Why is my browser blocking some features of the plugin?"
1445
  msgstr "Почему мой браузер блокирует некоторые функции плагина?"
1446
 
@@ -1804,7 +1804,7 @@ msgstr "Расширенная конфигурация"
1804
  msgid "GDPR"
1805
  msgstr ""
1806
 
1807
- #: ../admin/social_login.php:39 ../admin/social_login.php:1060
1808
  msgid "XProfile Integration"
1809
  msgstr "XProfile интеграция"
1810
 
@@ -2461,56 +2461,66 @@ msgstr ""
2461
  "с подтверждением. Пользователь не сможет зайти без подтверждения своей почты."
2462
 
2463
  #: ../admin/social_login.php:984
 
 
 
 
 
 
 
 
 
 
2464
  msgid "Opt-in text"
2465
  msgstr ""
2466
 
2467
- #: ../admin/social_login.php:994
2468
  #, fuzzy
2469
  msgid "Text for the opt-in appearing above the social login icons"
2470
  msgstr "Текст, отображаемый над интерфейсом входа через социальные сети"
2471
 
2472
- #: ../admin/social_login.php:1002
2473
  msgid "Text to link to Privacy Policy page"
2474
  msgstr ""
2475
 
2476
- #: ../admin/social_login.php:1012
2477
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2478
  msgstr ""
2479
 
2480
- #: ../admin/social_login.php:1020
2481
  msgid "Privacy Policy Url"
2482
  msgstr ""
2483
 
2484
- #: ../admin/social_login.php:1030
2485
  #, fuzzy
2486
  msgid "Url of the privacy policy page of your website"
2487
  msgstr "URL-адрес домашней страницы вашего веб-сайта"
2488
 
2489
- #: ../admin/social_login.php:1080 ../inc/widget.php:248 ../inc/widget.php:414
2490
  #: ../inc/widget.php:578 ../inc/widget.php:726
2491
  msgid "Select"
2492
  msgstr "Выбор"
2493
 
2494
- #: ../admin/social_login.php:1111
2495
  msgid "Social Login Shortcode & Widget"
2496
  msgstr "Шорткод и виджет для входа через социальные сети "
2497
 
2498
- #: ../admin/social_login.php:1112
2499
  msgid "Social Linking Shortcode"
2500
  msgstr "Шорткод социальных ссылок"
2501
 
2502
- #: ../admin/social_login.php:1127
2503
  #, fuzzy
2504
  msgid "Why is social login not working?"
2505
  msgstr "Почему Facebook логин не работает?"
2506
 
2507
- #: ../admin/social_login.php:1128
2508
  msgid ""
2509
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2510
  "belong to the same app"
2511
  msgstr ""
2512
 
2513
- #: ../admin/social_login.php:1130
2514
  msgid ""
2515
  "Why the user is not appearing logged in even after Social Login until the "
2516
  "webpage is refreshed manually?"
@@ -2751,27 +2761,27 @@ msgstr "Неверный Запрос!"
2751
  msgid "Providers not selected"
2752
  msgstr "Сервисы не выбраны"
2753
 
2754
- #: ../inc/social_login.php:710
2755
  msgid "Email"
2756
  msgstr "Email"
2757
 
2758
- #: ../inc/social_login.php:711
2759
  msgid "Confirm email"
2760
  msgstr "Подтвердить e-mail"
2761
 
2762
- #: ../inc/social_login.php:713
2763
  msgid "Save"
2764
  msgstr "Сохранить"
2765
 
2766
- #: ../inc/social_login.php:714
2767
  msgid "Cancel"
2768
  msgstr "Отменить"
2769
 
2770
- #: ../inc/social_login.php:788
2771
  msgid "Email Verification"
2772
  msgstr "Подтверждение адреса электронной почты"
2773
 
2774
- #: ../inc/social_login.php:790
2775
  msgid ""
2776
  "Please click on the following link or paste it in browser to verify your "
2777
  "email"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-05-26 08:45+0530\n"
6
+ "PO-Revision-Date: 2018-05-26 08:45+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Russian\n"
9
  "Language: ru_RU\n"
29
  msgid "Graph returned an error: "
30
  msgstr ""
31
 
32
+ #: ../super_socializer.php:569
33
  msgid ""
34
  "cURL is not enabled at your website server. Please contact your website "
35
  "server administrator to enable it."
37
  "Curl не включен в вашем веб-сайте. Вам, возможно, потребуется обратиться к "
38
  "администратору вашего сайта, чтобы включить это."
39
 
40
+ #: ../super_socializer.php:596
41
  #, php-format
42
  msgid ""
43
  "Enter exactly the following url in <strong>Website</strong> and "
46
  "Введите действующую ссылку для <strong>сайта</strong> и <strong>обратную "
47
  "ссылку</strong> в вашем приложении Твиттера (смотрите шаг 3 %s)"
48
 
49
+ #: ../super_socializer.php:599
50
  msgid ""
51
  "Make sure cURL is enabled at your website server. You may need to contact "
52
  "the server administrator of your website to verify this"
54
  "Убедитесь Curl включен в вашем веб-сайте сервера. Вы, возможно, потребуется "
55
  "обратиться к администратору сервера вашего сайта, чтобы убедиться, это"
56
 
57
+ #: ../super_socializer.php:600
58
  #, php-format
59
  msgid ""
60
  "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
62
  "Убедитесь, что «Включить Блокировку обратного вызова » параметр отключен. "
63
  "Смотрите шаг 4 %s"
64
 
65
+ #: ../super_socializer.php:866 ../helper.php:963
66
  msgid "Please verify your email address to login."
67
  msgstr "Пожалуйста, подтвердите ваш адрес электронной почты."
68
 
69
+ #: ../super_socializer.php:866
70
  msgid "Your email has been verified. Now you can login to your account"
71
  msgstr "Ваше сообщение было проверено. Теперь вы можете войти в свой аккаунт"
72
 
73
+ #: ../super_socializer.php:870
74
  msgid "Notification"
75
  msgstr "Уведомления"
76
 
77
+ #: ../super_socializer.php:888 ../admin/social_login.php:756
78
  msgid "Email required"
79
  msgstr "Email (Обязательно)"
80
 
81
+ #: ../super_socializer.php:891
82
  msgid "Please check your email inbox to complete the registration."
83
  msgstr "Пожалуйста, проверьте свой почтовый ящик для завершения регистрации."
84
 
85
+ #: ../super_socializer.php:898 ../helper.php:503
86
  msgid "Enter your LiveJournal username"
87
  msgstr "Введите ваше имя пользователя LiveJournal"
88
 
89
+ #: ../super_socializer.php:972
90
  msgid "Leave a reply"
91
  msgstr "Оставить ответ"
92
 
93
+ #: ../super_socializer.php:984 ../inc/social_sharing.php:233
94
  msgid "Shares"
95
  msgstr "Поделились"
96
 
97
+ #: ../super_socializer.php:984 ../inc/social_sharing.php:233
98
  msgid "Share"
99
  msgstr "Поделиться"
100
 
101
+ #: ../super_socializer.php:984
102
  #, fuzzy
103
  msgid "Link copied."
104
  msgstr "LinkedIn"
105
 
106
+ #: ../super_socializer.php:1227
107
  msgid "Super Socializer - General Options"
108
  msgstr "Super Socializer - Общие настройки"
109
 
110
+ #: ../super_socializer.php:1227 ../admin/general_options.php:11
111
  #: ../admin/social_commenting.php:43
112
  msgid "General Options"
113
  msgstr "Основные настройки"
114
 
115
+ #: ../super_socializer.php:1295 ../helper.php:885
116
  msgid "Social Avatar"
117
  msgstr "Социальный аватар"
118
 
119
+ #: ../super_socializer.php:1298
120
  msgid "Small Avatar Url"
121
  msgstr "Ссылка для маленького аватара"
122
 
123
+ #: ../super_socializer.php:1302
124
  msgid "Large Avatar Url"
125
  msgstr "Ссылка для большого аватара"
126
 
127
+ #: ../super_socializer.php:1306 ../helper.php:888
128
  msgid ""
129
  "Do not fetch and update social avatar from my profile, next time I Social "
130
  "Login"
132
  "Не получать и обновлять социальный аватар из моего профиля, в следующий раз "
133
  "я когда я использую вход через соцсети"
134
 
135
+ #: ../super_socializer.php:1310 ../helper.php:889
136
  msgid "Update social avatar, next time I Social Login"
137
  msgstr ""
138
  "Обновление аватара соцсетей в следующий раз при использовании входа через "
139
  "соцсети"
140
 
141
+ #: ../super_socializer.php:1383 ../super_socializer.php:1853
142
  msgid ""
143
  "Your browser is blocking some features of this website. Please follow the "
144
  "instructions at {support_url} to unblock these."
146
  "Ваш браузер блокирует некоторые функции данного веб-сайта. Пожалуйста, "
147
  "следуйте инструкциям в {support_url}, чтобы разблокировать функции."
148
 
149
+ #: ../super_socializer.php:1389
150
  msgid "Login with your Social ID"
151
  msgstr "Войти, используя социальный аккаунт"
152
 
153
+ #: ../super_socializer.php:1390
154
  msgid "Email you entered is already registered or invalid"
155
  msgstr ""
156
  "Электронная почта, которую вы ввели, уже зарегистрирована или недействительна"
157
 
158
+ #: ../super_socializer.php:1395
159
  msgid "Please enter a valid email address. You might be required to verify it"
160
  msgstr ""
161
  "Пожалуйста, введите действительный адрес электронной почты. Вам, возможно, "
162
  "потребуется проверить его"
163
 
164
+ #: ../super_socializer.php:1600
165
  msgid ""
166
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
167
  "current version of Super Socialzer"
168
  msgstr ""
169
 
170
+ #: ../super_socializer.php:1609
171
  msgid ""
172
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
173
  "version of Super Socialzer"
174
  msgstr ""
175
 
176
+ #: ../super_socializer.php:1618
177
  msgid ""
178
  "Update \"Social Login Buttons\" add-on for compatibility with current "
179
  "version of Super Socialzer"
180
  msgstr ""
181
 
182
+ #: ../super_socializer.php:1627
183
  msgid ""
184
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
185
  "with current version of Super Socialzer"
186
  msgstr ""
187
 
188
+ #: ../super_socializer.php:1636
189
  msgid ""
190
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
191
  "with current version of Super Socialzer"
192
  msgstr ""
193
 
194
+ #: ../super_socializer.php:1643
195
  msgid ""
196
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
197
  "LiveJournal Login of Super Socialzer"
198
  msgstr ""
199
 
200
+ #: ../super_socializer.php:1654
201
  #, php-format
202
  msgid ""
203
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
204
  msgstr ""
205
 
206
+ #: ../super_socializer.php:1670
207
  #, php-format
208
  msgid ""
209
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
210
  msgstr ""
211
 
212
+ #: ../super_socializer.php:1694
213
  #, php-format
214
  msgid ""
215
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
217
  "target=\"_blank\">here</a>"
218
  msgstr ""
219
 
220
+ #: ../super_socializer.php:1694 ../super_socializer.php:1719
221
+ #: ../super_socializer.php:1744 ../super_socializer.php:1777
222
+ #: ../super_socializer.php:1802
223
  msgid "Okay"
224
  msgstr "Окей"
225
 
226
+ #: ../super_socializer.php:1719
227
  #, php-format
228
  msgid ""
229
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
231
  "target=\"_blank\">here</a>"
232
  msgstr ""
233
 
234
+ #: ../super_socializer.php:1744
235
  #, php-format
236
  msgid ""
237
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
239
  "target=\"_blank\">here</a>"
240
  msgstr ""
241
 
242
+ #: ../super_socializer.php:1755
243
  #, php-format
244
  msgid ""
245
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
246
  msgstr ""
247
 
248
+ #: ../super_socializer.php:1777
249
  #, php-format
250
  msgid ""
251
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
253
  "\"%s\" target=\"_blank\">here</a>"
254
  msgstr ""
255
 
256
+ #: ../super_socializer.php:1802
257
  #, php-format
258
  msgid ""
259
  "Your website visitors will see a popup notification (only once) if their "
297
  msgid "Settings"
298
  msgstr "Настройки"
299
 
300
+ #: ../helper.php:548
301
  msgid "Account linked successfully"
302
  msgstr "Аккаунт успешно связан"
303
 
304
+ #: ../helper.php:552
305
  msgid "Account already exists or linked"
306
  msgstr "Аккаунт уже существует или связан"
307
 
369
 
370
  #: ../helper.php:900 ../admin/general_options.php:128
371
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
372
+ #: ../admin/social_login.php:1162 ../admin/like_buttons.php:822
373
  msgid "Save Changes"
374
  msgstr "Сохранить изменения"
375
 
463
  "Можно указать любые дополнительные правила CSS (без тега &lt; style &gt;)"
464
 
465
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
466
+ #: ../admin/social_commenting.php:492 ../admin/social_login.php:1167
467
  #: ../admin/like_buttons.php:827
468
  #, fuzzy
469
  msgid "Instagram Shoutout"
470
  msgstr "Instagram"
471
 
472
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
473
+ #: ../admin/social_commenting.php:494 ../admin/social_login.php:1169
474
  #: ../admin/like_buttons.php:829
475
  msgid ""
476
  "If you can send (to hello@heateor.com) how our plugin is helping your "
479
  msgstr ""
480
 
481
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
482
+ #: ../admin/social_commenting.php:495 ../admin/social_login.php:1170
483
  #: ../admin/like_buttons.php:830
484
  msgid ""
485
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
490
  msgstr ""
491
 
492
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
493
+ #: ../admin/social_commenting.php:496 ../admin/social_login.php:1171
494
  #: ../admin/like_buttons.php:831
495
  msgid ""
496
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
633
 
634
  #: ../admin/social_sharing.php:52 ../admin/social_sharing.php:1905
635
  #: ../admin/social_sharing.php:1907 ../admin/social_login.php:41
636
+ #: ../admin/social_login.php:1129 ../admin/like_buttons.php:47
637
  #: ../admin/like_buttons.php:793
638
  msgid "Shortcode & Widget"
639
  msgstr "Шорткод и виджет"
644
 
645
  #: ../admin/social_sharing.php:54 ../admin/social_sharing.php:1938
646
  #: ../admin/social_commenting.php:36 ../admin/social_commenting.php:471
647
+ #: ../admin/social_login.php:42 ../admin/social_login.php:1143
648
  #: ../admin/like_buttons.php:48 ../admin/like_buttons.php:806
649
  msgid "FAQ"
650
  msgstr "Часто задаваемые вопросы (FAQ)"
1412
  "\"Получение информации о новой поломке\" ."
1413
 
1414
  #: ../admin/social_sharing.php:1940 ../admin/social_commenting.php:473
1415
+ #: ../admin/social_login.php:1145
1416
  msgid ""
1417
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1418
  "an online website for the plugin to function properly."
1440
  msgstr ""
1441
 
1442
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1443
+ #: ../admin/social_login.php:1151
1444
  msgid "Why is my browser blocking some features of the plugin?"
1445
  msgstr "Почему мой браузер блокирует некоторые функции плагина?"
1446
 
1804
  msgid "GDPR"
1805
  msgstr ""
1806
 
1807
+ #: ../admin/social_login.php:39 ../admin/social_login.php:1080
1808
  msgid "XProfile Integration"
1809
  msgstr "XProfile интеграция"
1810
 
2461
  "с подтверждением. Пользователь не сможет зайти без подтверждения своей почты."
2462
 
2463
  #: ../admin/social_login.php:984
2464
+ #, fuzzy
2465
+ msgid "Enable GDPR opt-in"
2466
+ msgstr "Активировать комментирование через Disqus"
2467
+
2468
+ #: ../admin/social_login.php:994
2469
+ msgid ""
2470
+ "Enable it to show GDPR opt-in for social login and social account linking"
2471
+ msgstr ""
2472
+
2473
+ #: ../admin/social_login.php:1003
2474
  msgid "Opt-in text"
2475
  msgstr ""
2476
 
2477
+ #: ../admin/social_login.php:1013
2478
  #, fuzzy
2479
  msgid "Text for the opt-in appearing above the social login icons"
2480
  msgstr "Текст, отображаемый над интерфейсом входа через социальные сети"
2481
 
2482
+ #: ../admin/social_login.php:1021
2483
  msgid "Text to link to Privacy Policy page"
2484
  msgstr ""
2485
 
2486
+ #: ../admin/social_login.php:1031
2487
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2488
  msgstr ""
2489
 
2490
+ #: ../admin/social_login.php:1039
2491
  msgid "Privacy Policy Url"
2492
  msgstr ""
2493
 
2494
+ #: ../admin/social_login.php:1049
2495
  #, fuzzy
2496
  msgid "Url of the privacy policy page of your website"
2497
  msgstr "URL-адрес домашней страницы вашего веб-сайта"
2498
 
2499
+ #: ../admin/social_login.php:1100 ../inc/widget.php:248 ../inc/widget.php:414
2500
  #: ../inc/widget.php:578 ../inc/widget.php:726
2501
  msgid "Select"
2502
  msgstr "Выбор"
2503
 
2504
+ #: ../admin/social_login.php:1131
2505
  msgid "Social Login Shortcode & Widget"
2506
  msgstr "Шорткод и виджет для входа через социальные сети "
2507
 
2508
+ #: ../admin/social_login.php:1132
2509
  msgid "Social Linking Shortcode"
2510
  msgstr "Шорткод социальных ссылок"
2511
 
2512
+ #: ../admin/social_login.php:1147
2513
  #, fuzzy
2514
  msgid "Why is social login not working?"
2515
  msgstr "Почему Facebook логин не работает?"
2516
 
2517
+ #: ../admin/social_login.php:1148
2518
  msgid ""
2519
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2520
  "belong to the same app"
2521
  msgstr ""
2522
 
2523
+ #: ../admin/social_login.php:1150
2524
  msgid ""
2525
  "Why the user is not appearing logged in even after Social Login until the "
2526
  "webpage is refreshed manually?"
2761
  msgid "Providers not selected"
2762
  msgstr "Сервисы не выбраны"
2763
 
2764
+ #: ../inc/social_login.php:712
2765
  msgid "Email"
2766
  msgstr "Email"
2767
 
2768
+ #: ../inc/social_login.php:713
2769
  msgid "Confirm email"
2770
  msgstr "Подтвердить e-mail"
2771
 
2772
+ #: ../inc/social_login.php:715
2773
  msgid "Save"
2774
  msgstr "Сохранить"
2775
 
2776
+ #: ../inc/social_login.php:716
2777
  msgid "Cancel"
2778
  msgstr "Отменить"
2779
 
2780
+ #: ../inc/social_login.php:790
2781
  msgid "Email Verification"
2782
  msgstr "Подтверждение адреса электронной почты"
2783
 
2784
+ #: ../inc/social_login.php:792
2785
  msgid ""
2786
  "Please click on the following link or paste it in browser to verify your "
2787
  "email"
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-05-20 00:57+0530\n"
6
- "PO-Revision-Date: 2018-05-20 00:57+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Ukrainian\n"
9
  "Language: uk\n"
@@ -29,7 +29,7 @@ msgstr ""
29
  msgid "Graph returned an error: "
30
  msgstr ""
31
 
32
- #: ../super_socializer.php:567
33
  msgid ""
34
  "cURL is not enabled at your website server. Please contact your website "
35
  "server administrator to enable it."
@@ -37,7 +37,7 @@ msgstr ""
37
  "Curl не включений у вашому веб-сайті. Вам, можливо, буде потрібно звернутися "
38
  "до адміністратора вашого сайту, щоб включити це."
39
 
40
- #: ../super_socializer.php:594
41
  #, php-format
42
  msgid ""
43
  "Enter exactly the following url in <strong>Website</strong> and "
@@ -46,7 +46,7 @@ msgstr ""
46
  "Введіть діюче посилання для <strong> сайту </ strong> та <strong> зворотне "
47
  "посилання </ strong> у вашому додатку Твіттера (дивіться крок 3% s)"
48
 
49
- #: ../super_socializer.php:597
50
  msgid ""
51
  "Make sure cURL is enabled at your website server. You may need to contact "
52
  "the server administrator of your website to verify this"
@@ -55,7 +55,7 @@ msgstr ""
55
  "буде потрібно звернутися до адміністратора сервера вашого сайту, щоб "
56
  "переконатися в цьому."
57
 
58
- #: ../super_socializer.php:598
59
  #, php-format
60
  msgid ""
61
  "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
@@ -63,71 +63,71 @@ msgstr ""
63
  "Переконайтеся, що «Включити Блокування зворотного виклику» параметр "
64
  "відключений. Дивіться крок 4% s"
65
 
66
- #: ../super_socializer.php:864 ../helper.php:963
67
  msgid "Please verify your email address to login."
68
  msgstr "Будь ласка, підтвердіть свою адресу електронної пошти."
69
 
70
- #: ../super_socializer.php:864
71
  msgid "Your email has been verified. Now you can login to your account"
72
  msgstr ""
73
  "Ваша електронна адреса була перевірена. Тепер ви можете увійти до свого "
74
  "облікового запису"
75
 
76
- #: ../super_socializer.php:868
77
  msgid "Notification"
78
  msgstr "Повідомлення"
79
 
80
- #: ../super_socializer.php:886 ../admin/social_login.php:756
81
  msgid "Email required"
82
  msgstr "Електронна адреса (обо'язково)"
83
 
84
- #: ../super_socializer.php:889
85
  msgid "Please check your email inbox to complete the registration."
86
  msgstr "Будь ласка, перевірте вашу поштову скриньку для завершення реєстрації."
87
 
88
- #: ../super_socializer.php:896 ../helper.php:503
89
  msgid "Enter your LiveJournal username"
90
  msgstr "Введіть ваше ім'я користувача LiveJournal"
91
 
92
- #: ../super_socializer.php:970
93
  msgid "Leave a reply"
94
  msgstr "Залишити коментар"
95
 
96
- #: ../super_socializer.php:982 ../inc/social_sharing.php:233
97
  msgid "Shares"
98
  msgstr "Поширили:"
99
 
100
- #: ../super_socializer.php:982 ../inc/social_sharing.php:233
101
  msgid "Share"
102
  msgstr "Поділитися"
103
 
104
- #: ../super_socializer.php:982
105
  #, fuzzy
106
  msgid "Link copied."
107
  msgstr "LinkedIn"
108
 
109
- #: ../super_socializer.php:1225
110
  msgid "Super Socializer - General Options"
111
  msgstr "Super Socializer - Загальні Параметри"
112
 
113
- #: ../super_socializer.php:1225 ../admin/general_options.php:11
114
  #: ../admin/social_commenting.php:43
115
  msgid "General Options"
116
  msgstr "Загальні параметри"
117
 
118
- #: ../super_socializer.php:1293 ../helper.php:885
119
  msgid "Social Avatar"
120
  msgstr "Соціальний Аватар"
121
 
122
- #: ../super_socializer.php:1296
123
  msgid "Small Avatar Url"
124
  msgstr "Посилання для маленького аватара"
125
 
126
- #: ../super_socializer.php:1300
127
  msgid "Large Avatar Url"
128
  msgstr "Посилання для великого аватара"
129
 
130
- #: ../super_socializer.php:1304 ../helper.php:888
131
  msgid ""
132
  "Do not fetch and update social avatar from my profile, next time I Social "
133
  "Login"
@@ -135,13 +135,13 @@ msgstr ""
135
  "Не отримувати і оновлювати соціальний аватар з мого профілю, в наступний "
136
  "раз коли я використовую вхід через соцмережі"
137
 
138
- #: ../super_socializer.php:1308 ../helper.php:889
139
  msgid "Update social avatar, next time I Social Login"
140
  msgstr ""
141
  "Оновлення аватара соцмереж наступного разу при використанні входу через "
142
  "соцмережі"
143
 
144
- #: ../super_socializer.php:1381 ../super_socializer.php:1844
145
  msgid ""
146
  "Your browser is blocking some features of this website. Please follow the "
147
  "instructions at {support_url} to unblock these."
@@ -149,69 +149,69 @@ msgstr ""
149
  "Ваш браузер блокує деякі функції даного веб-сайту. Будь ласка, дотримуйтесь "
150
  "інструкцій в {support_url}, щоб розблокувати функції."
151
 
152
- #: ../super_socializer.php:1387
153
  msgid "Login with your Social ID"
154
  msgstr "Увійти через соціальний аккаунт"
155
 
156
- #: ../super_socializer.php:1388
157
  msgid "Email you entered is already registered or invalid"
158
  msgstr "Електронна пошта, яку ви ввели, вже зареєстрована або недійсна"
159
 
160
- #: ../super_socializer.php:1393
161
  msgid "Please enter a valid email address. You might be required to verify it"
162
  msgstr ""
163
  "Будь ласка, введіть дійсну адресу електронної пошти. Вам, можливо, буде "
164
  "потрібно перевірити його"
165
 
166
- #: ../super_socializer.php:1597
167
  msgid ""
168
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
169
  "current version of Super Socialzer"
170
  msgstr ""
171
 
172
- #: ../super_socializer.php:1606
173
  msgid ""
174
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
175
  "version of Super Socialzer"
176
  msgstr ""
177
 
178
- #: ../super_socializer.php:1615
179
  msgid ""
180
  "Update \"Social Login Buttons\" add-on for compatibility with current "
181
  "version of Super Socialzer"
182
  msgstr ""
183
 
184
- #: ../super_socializer.php:1624
185
  msgid ""
186
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
187
  "with current version of Super Socialzer"
188
  msgstr ""
189
 
190
- #: ../super_socializer.php:1633
191
  msgid ""
192
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
193
  "with current version of Super Socialzer"
194
  msgstr ""
195
 
196
- #: ../super_socializer.php:1640
197
  msgid ""
198
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
199
  "LiveJournal Login of Super Socialzer"
200
  msgstr ""
201
 
202
- #: ../super_socializer.php:1651
203
  #, php-format
204
  msgid ""
205
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
206
  msgstr ""
207
 
208
- #: ../super_socializer.php:1667
209
  #, php-format
210
  msgid ""
211
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
212
  msgstr ""
213
 
214
- #: ../super_socializer.php:1691
215
  #, php-format
216
  msgid ""
217
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -219,13 +219,13 @@ msgid ""
219
  "target=\"_blank\">here</a>"
220
  msgstr ""
221
 
222
- #: ../super_socializer.php:1691 ../super_socializer.php:1716
223
- #: ../super_socializer.php:1741 ../super_socializer.php:1774
224
- #: ../super_socializer.php:1799
225
  msgid "Okay"
226
  msgstr "Гаразд."
227
 
228
- #: ../super_socializer.php:1716
229
  #, php-format
230
  msgid ""
231
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -233,7 +233,7 @@ msgid ""
233
  "target=\"_blank\">here</a>"
234
  msgstr ""
235
 
236
- #: ../super_socializer.php:1741
237
  #, php-format
238
  msgid ""
239
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -241,13 +241,13 @@ msgid ""
241
  "target=\"_blank\">here</a>"
242
  msgstr ""
243
 
244
- #: ../super_socializer.php:1752
245
  #, php-format
246
  msgid ""
247
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
248
  msgstr ""
249
 
250
- #: ../super_socializer.php:1774
251
  #, php-format
252
  msgid ""
253
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -255,7 +255,7 @@ msgid ""
255
  "\"%s\" target=\"_blank\">here</a>"
256
  msgstr ""
257
 
258
- #: ../super_socializer.php:1799
259
  #, php-format
260
  msgid ""
261
  "Your website visitors will see a popup notification (only once) if their "
@@ -299,11 +299,11 @@ msgstr "Технічна документація"
299
  msgid "Settings"
300
  msgstr "Налаштування"
301
 
302
- #: ../helper.php:552
303
  msgid "Account linked successfully"
304
  msgstr "Аккаунт успішно пов'язаний"
305
 
306
- #: ../helper.php:556
307
  msgid "Account already exists or linked"
308
  msgstr "Аккаунт вже існує або пов'язаний"
309
 
@@ -371,7 +371,7 @@ msgstr "Великий аватар"
371
 
372
  #: ../helper.php:900 ../admin/general_options.php:128
373
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
374
- #: ../admin/social_login.php:1142 ../admin/like_buttons.php:822
375
  msgid "Save Changes"
376
  msgstr "Зберегти налаштування"
377
 
@@ -465,14 +465,14 @@ msgstr ""
465
  "Можна вказати будь-які додаткові правила CSS (без тега & lt; style & gt;)"
466
 
467
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
468
- #: ../admin/social_commenting.php:492 ../admin/social_login.php:1147
469
  #: ../admin/like_buttons.php:827
470
  #, fuzzy
471
  msgid "Instagram Shoutout"
472
  msgstr "Instagram"
473
 
474
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
475
- #: ../admin/social_commenting.php:494 ../admin/social_login.php:1149
476
  #: ../admin/like_buttons.php:829
477
  msgid ""
478
  "If you can send (to hello@heateor.com) how our plugin is helping your "
@@ -481,7 +481,7 @@ msgid ""
481
  msgstr ""
482
 
483
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
484
- #: ../admin/social_commenting.php:495 ../admin/social_login.php:1150
485
  #: ../admin/like_buttons.php:830
486
  msgid ""
487
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
@@ -492,7 +492,7 @@ msgid ""
492
  msgstr ""
493
 
494
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
495
- #: ../admin/social_commenting.php:496 ../admin/social_login.php:1151
496
  #: ../admin/like_buttons.php:831
497
  msgid ""
498
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
@@ -635,7 +635,7 @@ msgstr "XProfile інтеграція"
635
 
636
  #: ../admin/social_sharing.php:52 ../admin/social_sharing.php:1905
637
  #: ../admin/social_sharing.php:1907 ../admin/social_login.php:41
638
- #: ../admin/social_login.php:1109 ../admin/like_buttons.php:47
639
  #: ../admin/like_buttons.php:793
640
  msgid "Shortcode & Widget"
641
  msgstr "Шорткод і віджет"
@@ -646,7 +646,7 @@ msgstr "Усунення несправностей"
646
 
647
  #: ../admin/social_sharing.php:54 ../admin/social_sharing.php:1938
648
  #: ../admin/social_commenting.php:36 ../admin/social_commenting.php:471
649
- #: ../admin/social_login.php:42 ../admin/social_login.php:1123
650
  #: ../admin/like_buttons.php:48 ../admin/like_buttons.php:806
651
  msgid "FAQ"
652
  msgstr "Часті питання (FAQ)"
@@ -1414,7 +1414,7 @@ msgstr ""
1414
  "\"Отримання інформації про нову поломки \"."
1415
 
1416
  #: ../admin/social_sharing.php:1940 ../admin/social_commenting.php:473
1417
- #: ../admin/social_login.php:1125
1418
  msgid ""
1419
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1420
  "an online website for the plugin to function properly."
@@ -1442,7 +1442,7 @@ msgid ""
1442
  msgstr ""
1443
 
1444
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1445
- #: ../admin/social_login.php:1131
1446
  msgid "Why is my browser blocking some features of the plugin?"
1447
  msgstr "Чому мій браузер блокує деякі функції плагіна?"
1448
 
@@ -1804,7 +1804,7 @@ msgstr "Розширена конфігурація"
1804
  msgid "GDPR"
1805
  msgstr ""
1806
 
1807
- #: ../admin/social_login.php:39 ../admin/social_login.php:1060
1808
  msgid "XProfile Integration"
1809
  msgstr "XProfile інтеграція"
1810
 
@@ -2452,56 +2452,66 @@ msgstr ""
2452
  "підтвердженням. Користувач не зможе зайти без підтвердження своєї пошти."
2453
 
2454
  #: ../admin/social_login.php:984
 
 
 
 
 
 
 
 
 
 
2455
  msgid "Opt-in text"
2456
  msgstr ""
2457
 
2458
- #: ../admin/social_login.php:994
2459
  #, fuzzy
2460
  msgid "Text for the opt-in appearing above the social login icons"
2461
  msgstr "Текст, що відображається над інтерфейсом входу через соцмережі"
2462
 
2463
- #: ../admin/social_login.php:1002
2464
  msgid "Text to link to Privacy Policy page"
2465
  msgstr ""
2466
 
2467
- #: ../admin/social_login.php:1012
2468
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2469
  msgstr ""
2470
 
2471
- #: ../admin/social_login.php:1020
2472
  msgid "Privacy Policy Url"
2473
  msgstr ""
2474
 
2475
- #: ../admin/social_login.php:1030
2476
  #, fuzzy
2477
  msgid "Url of the privacy policy page of your website"
2478
  msgstr "URL-адреса домашньої сторінки вашого веб-сайту"
2479
 
2480
- #: ../admin/social_login.php:1080 ../inc/widget.php:248 ../inc/widget.php:414
2481
  #: ../inc/widget.php:578 ../inc/widget.php:726
2482
  msgid "Select"
2483
  msgstr "Вибір"
2484
 
2485
- #: ../admin/social_login.php:1111
2486
  msgid "Social Login Shortcode & Widget"
2487
  msgstr "Шорткод і віджет для входу через соцмережі"
2488
 
2489
- #: ../admin/social_login.php:1112
2490
  msgid "Social Linking Shortcode"
2491
  msgstr "Шорткод соціальних посилань"
2492
 
2493
- #: ../admin/social_login.php:1127
2494
  #, fuzzy
2495
  msgid "Why is social login not working?"
2496
  msgstr "Чому Facebook Логін не працює?"
2497
 
2498
- #: ../admin/social_login.php:1128
2499
  msgid ""
2500
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2501
  "belong to the same app"
2502
  msgstr ""
2503
 
2504
- #: ../admin/social_login.php:1130
2505
  msgid ""
2506
  "Why the user is not appearing logged in even after Social Login until the "
2507
  "webpage is refreshed manually?"
@@ -2742,27 +2752,27 @@ msgstr "Невірний Запит!"
2742
  msgid "Providers not selected"
2743
  msgstr "Сервіси не вибрані"
2744
 
2745
- #: ../inc/social_login.php:710
2746
  msgid "Email"
2747
  msgstr "Email"
2748
 
2749
- #: ../inc/social_login.php:711
2750
  msgid "Confirm email"
2751
  msgstr "Підтвердити e-mail"
2752
 
2753
- #: ../inc/social_login.php:713
2754
  msgid "Save"
2755
  msgstr "Зберегти"
2756
 
2757
- #: ../inc/social_login.php:714
2758
  msgid "Cancel"
2759
  msgstr "Скасувати"
2760
 
2761
- #: ../inc/social_login.php:788
2762
  msgid "Email Verification"
2763
  msgstr "Підтвердження адреси електронної пошти"
2764
 
2765
- #: ../inc/social_login.php:790
2766
  msgid ""
2767
  "Please click on the following link or paste it in browser to verify your "
2768
  "email"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-05-26 08:45+0530\n"
6
+ "PO-Revision-Date: 2018-05-26 08:45+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Ukrainian\n"
9
  "Language: uk\n"
29
  msgid "Graph returned an error: "
30
  msgstr ""
31
 
32
+ #: ../super_socializer.php:569
33
  msgid ""
34
  "cURL is not enabled at your website server. Please contact your website "
35
  "server administrator to enable it."
37
  "Curl не включений у вашому веб-сайті. Вам, можливо, буде потрібно звернутися "
38
  "до адміністратора вашого сайту, щоб включити це."
39
 
40
+ #: ../super_socializer.php:596
41
  #, php-format
42
  msgid ""
43
  "Enter exactly the following url in <strong>Website</strong> and "
46
  "Введіть діюче посилання для <strong> сайту </ strong> та <strong> зворотне "
47
  "посилання </ strong> у вашому додатку Твіттера (дивіться крок 3% s)"
48
 
49
+ #: ../super_socializer.php:599
50
  msgid ""
51
  "Make sure cURL is enabled at your website server. You may need to contact "
52
  "the server administrator of your website to verify this"
55
  "буде потрібно звернутися до адміністратора сервера вашого сайту, щоб "
56
  "переконатися в цьому."
57
 
58
+ #: ../super_socializer.php:600
59
  #, php-format
60
  msgid ""
61
  "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
63
  "Переконайтеся, що «Включити Блокування зворотного виклику» параметр "
64
  "відключений. Дивіться крок 4% s"
65
 
66
+ #: ../super_socializer.php:866 ../helper.php:963
67
  msgid "Please verify your email address to login."
68
  msgstr "Будь ласка, підтвердіть свою адресу електронної пошти."
69
 
70
+ #: ../super_socializer.php:866
71
  msgid "Your email has been verified. Now you can login to your account"
72
  msgstr ""
73
  "Ваша електронна адреса була перевірена. Тепер ви можете увійти до свого "
74
  "облікового запису"
75
 
76
+ #: ../super_socializer.php:870
77
  msgid "Notification"
78
  msgstr "Повідомлення"
79
 
80
+ #: ../super_socializer.php:888 ../admin/social_login.php:756
81
  msgid "Email required"
82
  msgstr "Електронна адреса (обо'язково)"
83
 
84
+ #: ../super_socializer.php:891
85
  msgid "Please check your email inbox to complete the registration."
86
  msgstr "Будь ласка, перевірте вашу поштову скриньку для завершення реєстрації."
87
 
88
+ #: ../super_socializer.php:898 ../helper.php:503
89
  msgid "Enter your LiveJournal username"
90
  msgstr "Введіть ваше ім'я користувача LiveJournal"
91
 
92
+ #: ../super_socializer.php:972
93
  msgid "Leave a reply"
94
  msgstr "Залишити коментар"
95
 
96
+ #: ../super_socializer.php:984 ../inc/social_sharing.php:233
97
  msgid "Shares"
98
  msgstr "Поширили:"
99
 
100
+ #: ../super_socializer.php:984 ../inc/social_sharing.php:233
101
  msgid "Share"
102
  msgstr "Поділитися"
103
 
104
+ #: ../super_socializer.php:984
105
  #, fuzzy
106
  msgid "Link copied."
107
  msgstr "LinkedIn"
108
 
109
+ #: ../super_socializer.php:1227
110
  msgid "Super Socializer - General Options"
111
  msgstr "Super Socializer - Загальні Параметри"
112
 
113
+ #: ../super_socializer.php:1227 ../admin/general_options.php:11
114
  #: ../admin/social_commenting.php:43
115
  msgid "General Options"
116
  msgstr "Загальні параметри"
117
 
118
+ #: ../super_socializer.php:1295 ../helper.php:885
119
  msgid "Social Avatar"
120
  msgstr "Соціальний Аватар"
121
 
122
+ #: ../super_socializer.php:1298
123
  msgid "Small Avatar Url"
124
  msgstr "Посилання для маленького аватара"
125
 
126
+ #: ../super_socializer.php:1302
127
  msgid "Large Avatar Url"
128
  msgstr "Посилання для великого аватара"
129
 
130
+ #: ../super_socializer.php:1306 ../helper.php:888
131
  msgid ""
132
  "Do not fetch and update social avatar from my profile, next time I Social "
133
  "Login"
135
  "Не отримувати і оновлювати соціальний аватар з мого профілю, в наступний "
136
  "раз коли я використовую вхід через соцмережі"
137
 
138
+ #: ../super_socializer.php:1310 ../helper.php:889
139
  msgid "Update social avatar, next time I Social Login"
140
  msgstr ""
141
  "Оновлення аватара соцмереж наступного разу при використанні входу через "
142
  "соцмережі"
143
 
144
+ #: ../super_socializer.php:1383 ../super_socializer.php:1853
145
  msgid ""
146
  "Your browser is blocking some features of this website. Please follow the "
147
  "instructions at {support_url} to unblock these."
149
  "Ваш браузер блокує деякі функції даного веб-сайту. Будь ласка, дотримуйтесь "
150
  "інструкцій в {support_url}, щоб розблокувати функції."
151
 
152
+ #: ../super_socializer.php:1389
153
  msgid "Login with your Social ID"
154
  msgstr "Увійти через соціальний аккаунт"
155
 
156
+ #: ../super_socializer.php:1390
157
  msgid "Email you entered is already registered or invalid"
158
  msgstr "Електронна пошта, яку ви ввели, вже зареєстрована або недійсна"
159
 
160
+ #: ../super_socializer.php:1395
161
  msgid "Please enter a valid email address. You might be required to verify it"
162
  msgstr ""
163
  "Будь ласка, введіть дійсну адресу електронної пошти. Вам, можливо, буде "
164
  "потрібно перевірити його"
165
 
166
+ #: ../super_socializer.php:1600
167
  msgid ""
168
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
169
  "current version of Super Socialzer"
170
  msgstr ""
171
 
172
+ #: ../super_socializer.php:1609
173
  msgid ""
174
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
175
  "version of Super Socialzer"
176
  msgstr ""
177
 
178
+ #: ../super_socializer.php:1618
179
  msgid ""
180
  "Update \"Social Login Buttons\" add-on for compatibility with current "
181
  "version of Super Socialzer"
182
  msgstr ""
183
 
184
+ #: ../super_socializer.php:1627
185
  msgid ""
186
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
187
  "with current version of Super Socialzer"
188
  msgstr ""
189
 
190
+ #: ../super_socializer.php:1636
191
  msgid ""
192
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
193
  "with current version of Super Socialzer"
194
  msgstr ""
195
 
196
+ #: ../super_socializer.php:1643
197
  msgid ""
198
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
199
  "LiveJournal Login of Super Socialzer"
200
  msgstr ""
201
 
202
+ #: ../super_socializer.php:1654
203
  #, php-format
204
  msgid ""
205
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
206
  msgstr ""
207
 
208
+ #: ../super_socializer.php:1670
209
  #, php-format
210
  msgid ""
211
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
212
  msgstr ""
213
 
214
+ #: ../super_socializer.php:1694
215
  #, php-format
216
  msgid ""
217
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
219
  "target=\"_blank\">here</a>"
220
  msgstr ""
221
 
222
+ #: ../super_socializer.php:1694 ../super_socializer.php:1719
223
+ #: ../super_socializer.php:1744 ../super_socializer.php:1777
224
+ #: ../super_socializer.php:1802
225
  msgid "Okay"
226
  msgstr "Гаразд."
227
 
228
+ #: ../super_socializer.php:1719
229
  #, php-format
230
  msgid ""
231
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
233
  "target=\"_blank\">here</a>"
234
  msgstr ""
235
 
236
+ #: ../super_socializer.php:1744
237
  #, php-format
238
  msgid ""
239
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
241
  "target=\"_blank\">here</a>"
242
  msgstr ""
243
 
244
+ #: ../super_socializer.php:1755
245
  #, php-format
246
  msgid ""
247
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
248
  msgstr ""
249
 
250
+ #: ../super_socializer.php:1777
251
  #, php-format
252
  msgid ""
253
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
255
  "\"%s\" target=\"_blank\">here</a>"
256
  msgstr ""
257
 
258
+ #: ../super_socializer.php:1802
259
  #, php-format
260
  msgid ""
261
  "Your website visitors will see a popup notification (only once) if their "
299
  msgid "Settings"
300
  msgstr "Налаштування"
301
 
302
+ #: ../helper.php:548
303
  msgid "Account linked successfully"
304
  msgstr "Аккаунт успішно пов'язаний"
305
 
306
+ #: ../helper.php:552
307
  msgid "Account already exists or linked"
308
  msgstr "Аккаунт вже існує або пов'язаний"
309
 
371
 
372
  #: ../helper.php:900 ../admin/general_options.php:128
373
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
374
+ #: ../admin/social_login.php:1162 ../admin/like_buttons.php:822
375
  msgid "Save Changes"
376
  msgstr "Зберегти налаштування"
377
 
465
  "Можна вказати будь-які додаткові правила CSS (без тега & lt; style & gt;)"
466
 
467
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
468
+ #: ../admin/social_commenting.php:492 ../admin/social_login.php:1167
469
  #: ../admin/like_buttons.php:827
470
  #, fuzzy
471
  msgid "Instagram Shoutout"
472
  msgstr "Instagram"
473
 
474
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
475
+ #: ../admin/social_commenting.php:494 ../admin/social_login.php:1169
476
  #: ../admin/like_buttons.php:829
477
  msgid ""
478
  "If you can send (to hello@heateor.com) how our plugin is helping your "
481
  msgstr ""
482
 
483
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
484
+ #: ../admin/social_commenting.php:495 ../admin/social_login.php:1170
485
  #: ../admin/like_buttons.php:830
486
  msgid ""
487
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
492
  msgstr ""
493
 
494
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
495
+ #: ../admin/social_commenting.php:496 ../admin/social_login.php:1171
496
  #: ../admin/like_buttons.php:831
497
  msgid ""
498
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
635
 
636
  #: ../admin/social_sharing.php:52 ../admin/social_sharing.php:1905
637
  #: ../admin/social_sharing.php:1907 ../admin/social_login.php:41
638
+ #: ../admin/social_login.php:1129 ../admin/like_buttons.php:47
639
  #: ../admin/like_buttons.php:793
640
  msgid "Shortcode & Widget"
641
  msgstr "Шорткод і віджет"
646
 
647
  #: ../admin/social_sharing.php:54 ../admin/social_sharing.php:1938
648
  #: ../admin/social_commenting.php:36 ../admin/social_commenting.php:471
649
+ #: ../admin/social_login.php:42 ../admin/social_login.php:1143
650
  #: ../admin/like_buttons.php:48 ../admin/like_buttons.php:806
651
  msgid "FAQ"
652
  msgstr "Часті питання (FAQ)"
1414
  "\"Отримання інформації про нову поломки \"."
1415
 
1416
  #: ../admin/social_sharing.php:1940 ../admin/social_commenting.php:473
1417
+ #: ../admin/social_login.php:1145
1418
  msgid ""
1419
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1420
  "an online website for the plugin to function properly."
1442
  msgstr ""
1443
 
1444
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1445
+ #: ../admin/social_login.php:1151
1446
  msgid "Why is my browser blocking some features of the plugin?"
1447
  msgstr "Чому мій браузер блокує деякі функції плагіна?"
1448
 
1804
  msgid "GDPR"
1805
  msgstr ""
1806
 
1807
+ #: ../admin/social_login.php:39 ../admin/social_login.php:1080
1808
  msgid "XProfile Integration"
1809
  msgstr "XProfile інтеграція"
1810
 
2452
  "підтвердженням. Користувач не зможе зайти без підтвердження своєї пошти."
2453
 
2454
  #: ../admin/social_login.php:984
2455
+ #, fuzzy
2456
+ msgid "Enable GDPR opt-in"
2457
+ msgstr "Активувати коментування через Disqus"
2458
+
2459
+ #: ../admin/social_login.php:994
2460
+ msgid ""
2461
+ "Enable it to show GDPR opt-in for social login and social account linking"
2462
+ msgstr ""
2463
+
2464
+ #: ../admin/social_login.php:1003
2465
  msgid "Opt-in text"
2466
  msgstr ""
2467
 
2468
+ #: ../admin/social_login.php:1013
2469
  #, fuzzy
2470
  msgid "Text for the opt-in appearing above the social login icons"
2471
  msgstr "Текст, що відображається над інтерфейсом входу через соцмережі"
2472
 
2473
+ #: ../admin/social_login.php:1021
2474
  msgid "Text to link to Privacy Policy page"
2475
  msgstr ""
2476
 
2477
+ #: ../admin/social_login.php:1031
2478
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2479
  msgstr ""
2480
 
2481
+ #: ../admin/social_login.php:1039
2482
  msgid "Privacy Policy Url"
2483
  msgstr ""
2484
 
2485
+ #: ../admin/social_login.php:1049
2486
  #, fuzzy
2487
  msgid "Url of the privacy policy page of your website"
2488
  msgstr "URL-адреса домашньої сторінки вашого веб-сайту"
2489
 
2490
+ #: ../admin/social_login.php:1100 ../inc/widget.php:248 ../inc/widget.php:414
2491
  #: ../inc/widget.php:578 ../inc/widget.php:726
2492
  msgid "Select"
2493
  msgstr "Вибір"
2494
 
2495
+ #: ../admin/social_login.php:1131
2496
  msgid "Social Login Shortcode & Widget"
2497
  msgstr "Шорткод і віджет для входу через соцмережі"
2498
 
2499
+ #: ../admin/social_login.php:1132
2500
  msgid "Social Linking Shortcode"
2501
  msgstr "Шорткод соціальних посилань"
2502
 
2503
+ #: ../admin/social_login.php:1147
2504
  #, fuzzy
2505
  msgid "Why is social login not working?"
2506
  msgstr "Чому Facebook Логін не працює?"
2507
 
2508
+ #: ../admin/social_login.php:1148
2509
  msgid ""
2510
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2511
  "belong to the same app"
2512
  msgstr ""
2513
 
2514
+ #: ../admin/social_login.php:1150
2515
  msgid ""
2516
  "Why the user is not appearing logged in even after Social Login until the "
2517
  "webpage is refreshed manually?"
2752
  msgid "Providers not selected"
2753
  msgstr "Сервіси не вибрані"
2754
 
2755
+ #: ../inc/social_login.php:712
2756
  msgid "Email"
2757
  msgstr "Email"
2758
 
2759
+ #: ../inc/social_login.php:713
2760
  msgid "Confirm email"
2761
  msgstr "Підтвердити e-mail"
2762
 
2763
+ #: ../inc/social_login.php:715
2764
  msgid "Save"
2765
  msgstr "Зберегти"
2766
 
2767
+ #: ../inc/social_login.php:716
2768
  msgid "Cancel"
2769
  msgstr "Скасувати"
2770
 
2771
+ #: ../inc/social_login.php:790
2772
  msgid "Email Verification"
2773
  msgstr "Підтвердження адреси електронної пошти"
2774
 
2775
+ #: ../inc/social_login.php:792
2776
  msgid ""
2777
  "Please click on the following link or paste it in browser to verify your "
2778
  "email"
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-05-20 00:57+0530\n"
6
- "PO-Revision-Date: 2018-05-20 00:57+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: zh_CN\n"
@@ -28,7 +28,7 @@ msgstr ""
28
  msgid "Graph returned an error: "
29
  msgstr ""
30
 
31
- #: ../super_socializer.php:567
32
  #, fuzzy
33
  msgid ""
34
  "cURL is not enabled at your website server. Please contact your website "
@@ -36,7 +36,7 @@ msgid ""
36
  msgstr ""
37
  "请确保在您的网站服务器上启用了cURL。对此,请您与您的网站的服务器管理员核实。"
38
 
39
- #: ../super_socializer.php:594
40
  #, php-format
41
  msgid ""
42
  "Enter exactly the following url in <strong>Website</strong> and "
@@ -45,158 +45,158 @@ msgstr ""
45
  "在Twitter 应用程序的选项中输入准确的<strong>网站</strong>和<strong>回调 Url</"
46
  "strong> 的url地址 (请参阅步骤 3 %s)"
47
 
48
- #: ../super_socializer.php:597
49
  msgid ""
50
  "Make sure cURL is enabled at your website server. You may need to contact "
51
  "the server administrator of your website to verify this"
52
  msgstr ""
53
  "请确保在您的网站服务器上启用了cURL。对此,请您与您的网站的服务器管理员核实。"
54
 
55
- #: ../super_socializer.php:598
56
  #, php-format
57
  msgid ""
58
  "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
59
  msgstr ""
60
 
61
- #: ../super_socializer.php:864 ../helper.php:963
62
  msgid "Please verify your email address to login."
63
  msgstr "请验证您的电子邮件地址以便登录。"
64
 
65
- #: ../super_socializer.php:864
66
  msgid "Your email has been verified. Now you can login to your account"
67
  msgstr "您的电子邮件已验证。现在你可以登录到您的帐户"
68
 
69
- #: ../super_socializer.php:868
70
  msgid "Notification"
71
  msgstr "通知"
72
 
73
- #: ../super_socializer.php:886 ../admin/social_login.php:756
74
  msgid "Email required"
75
  msgstr "邮件地址(比选)"
76
 
77
- #: ../super_socializer.php:889
78
  msgid "Please check your email inbox to complete the registration."
79
  msgstr "请检查您的电子邮件收件箱以完成注册。"
80
 
81
- #: ../super_socializer.php:896 ../helper.php:503
82
  msgid "Enter your LiveJournal username"
83
  msgstr ""
84
 
85
- #: ../super_socializer.php:970
86
  msgid "Leave a reply"
87
  msgstr "回复"
88
 
89
- #: ../super_socializer.php:982 ../inc/social_sharing.php:233
90
  msgid "Shares"
91
  msgstr ""
92
 
93
- #: ../super_socializer.php:982 ../inc/social_sharing.php:233
94
  msgid "Share"
95
  msgstr ""
96
 
97
- #: ../super_socializer.php:982
98
  #, fuzzy
99
  msgid "Link copied."
100
  msgstr "LinkedIn"
101
 
102
- #: ../super_socializer.php:1225
103
  msgid "Super Socializer - General Options"
104
  msgstr "Super Socializer-常规选项"
105
 
106
- #: ../super_socializer.php:1225 ../admin/general_options.php:11
107
  #: ../admin/social_commenting.php:43
108
  msgid "General Options"
109
  msgstr "常规选项"
110
 
111
- #: ../super_socializer.php:1293 ../helper.php:885
112
  msgid "Social Avatar"
113
  msgstr "社会化头像"
114
 
115
- #: ../super_socializer.php:1296
116
  msgid "Small Avatar Url"
117
  msgstr "小头像 Url"
118
 
119
- #: ../super_socializer.php:1300
120
  msgid "Large Avatar Url"
121
  msgstr "大头像 Url"
122
 
123
- #: ../super_socializer.php:1304 ../helper.php:888
124
  msgid ""
125
  "Do not fetch and update social avatar from my profile, next time I Social "
126
  "Login"
127
  msgstr "不从我的个人资料里获取及更新社会化头像,下次社会化登录"
128
 
129
- #: ../super_socializer.php:1308 ../helper.php:889
130
  msgid "Update social avatar, next time I Social Login"
131
  msgstr "更新社会化头像,下次社会化登录"
132
 
133
- #: ../super_socializer.php:1381 ../super_socializer.php:1844
134
  msgid ""
135
  "Your browser is blocking some features of this website. Please follow the "
136
  "instructions at {support_url} to unblock these."
137
  msgstr ""
138
 
139
- #: ../super_socializer.php:1387
140
  msgid "Login with your Social ID"
141
  msgstr ""
142
 
143
- #: ../super_socializer.php:1388
144
  msgid "Email you entered is already registered or invalid"
145
  msgstr "您输入的电子邮件已经注册或无效"
146
 
147
- #: ../super_socializer.php:1393
148
  msgid "Please enter a valid email address. You might be required to verify it"
149
  msgstr "请输入一个有效的电子邮件地址。您可能需要验证它"
150
 
151
- #: ../super_socializer.php:1597
152
  msgid ""
153
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
154
  "current version of Super Socialzer"
155
  msgstr ""
156
 
157
- #: ../super_socializer.php:1606
158
  msgid ""
159
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
160
  "version of Super Socialzer"
161
  msgstr ""
162
 
163
- #: ../super_socializer.php:1615
164
  msgid ""
165
  "Update \"Social Login Buttons\" add-on for compatibility with current "
166
  "version of Super Socialzer"
167
  msgstr ""
168
 
169
- #: ../super_socializer.php:1624
170
  msgid ""
171
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
172
  "with current version of Super Socialzer"
173
  msgstr ""
174
 
175
- #: ../super_socializer.php:1633
176
  msgid ""
177
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
178
  "with current version of Super Socialzer"
179
  msgstr ""
180
 
181
- #: ../super_socializer.php:1640
182
  msgid ""
183
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
184
  "LiveJournal Login of Super Socialzer"
185
  msgstr ""
186
 
187
- #: ../super_socializer.php:1651
188
  #, php-format
189
  msgid ""
190
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
191
  msgstr ""
192
 
193
- #: ../super_socializer.php:1667
194
  #, php-format
195
  msgid ""
196
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
197
  msgstr ""
198
 
199
- #: ../super_socializer.php:1691
200
  #, php-format
201
  msgid ""
202
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -204,13 +204,13 @@ msgid ""
204
  "target=\"_blank\">here</a>"
205
  msgstr ""
206
 
207
- #: ../super_socializer.php:1691 ../super_socializer.php:1716
208
- #: ../super_socializer.php:1741 ../super_socializer.php:1774
209
- #: ../super_socializer.php:1799
210
  msgid "Okay"
211
  msgstr ""
212
 
213
- #: ../super_socializer.php:1716
214
  #, php-format
215
  msgid ""
216
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -218,7 +218,7 @@ msgid ""
218
  "target=\"_blank\">here</a>"
219
  msgstr ""
220
 
221
- #: ../super_socializer.php:1741
222
  #, php-format
223
  msgid ""
224
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -226,13 +226,13 @@ msgid ""
226
  "target=\"_blank\">here</a>"
227
  msgstr ""
228
 
229
- #: ../super_socializer.php:1752
230
  #, php-format
231
  msgid ""
232
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
233
  msgstr ""
234
 
235
- #: ../super_socializer.php:1774
236
  #, php-format
237
  msgid ""
238
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -240,7 +240,7 @@ msgid ""
240
  "\"%s\" target=\"_blank\">here</a>"
241
  msgstr ""
242
 
243
- #: ../super_socializer.php:1799
244
  #, php-format
245
  msgid ""
246
  "Your website visitors will see a popup notification (only once) if their "
@@ -279,11 +279,11 @@ msgstr ""
279
  msgid "Settings"
280
  msgstr "设置"
281
 
282
- #: ../helper.php:552
283
  msgid "Account linked successfully"
284
  msgstr "成功关联帐户"
285
 
286
- #: ../helper.php:556
287
  msgid "Account already exists or linked"
288
  msgstr "帐户已经存在或被链接"
289
 
@@ -350,7 +350,7 @@ msgstr "大头像"
350
 
351
  #: ../helper.php:900 ../admin/general_options.php:128
352
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
353
- #: ../admin/social_login.php:1142 ../admin/like_buttons.php:822
354
  msgid "Save Changes"
355
  msgstr "保存更改"
356
 
@@ -430,14 +430,14 @@ msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
430
  msgstr "您可以指定任何额外的 CSS 规则(无需 &lt;style&gt; tag)"
431
 
432
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
433
- #: ../admin/social_commenting.php:492 ../admin/social_login.php:1147
434
  #: ../admin/like_buttons.php:827
435
  #, fuzzy
436
  msgid "Instagram Shoutout"
437
  msgstr "Instagram"
438
 
439
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
440
- #: ../admin/social_commenting.php:494 ../admin/social_login.php:1149
441
  #: ../admin/like_buttons.php:829
442
  msgid ""
443
  "If you can send (to hello@heateor.com) how our plugin is helping your "
@@ -446,7 +446,7 @@ msgid ""
446
  msgstr ""
447
 
448
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
449
- #: ../admin/social_commenting.php:495 ../admin/social_login.php:1150
450
  #: ../admin/like_buttons.php:830
451
  msgid ""
452
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
@@ -457,7 +457,7 @@ msgid ""
457
  msgstr ""
458
 
459
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
460
- #: ../admin/social_commenting.php:496 ../admin/social_login.php:1151
461
  #: ../admin/like_buttons.php:831
462
  msgid ""
463
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
@@ -597,7 +597,7 @@ msgstr ""
597
 
598
  #: ../admin/social_sharing.php:52 ../admin/social_sharing.php:1905
599
  #: ../admin/social_sharing.php:1907 ../admin/social_login.php:41
600
- #: ../admin/social_login.php:1109 ../admin/like_buttons.php:47
601
  #: ../admin/like_buttons.php:793
602
  msgid "Shortcode & Widget"
603
  msgstr "簡碼和小工具"
@@ -608,7 +608,7 @@ msgstr "排错"
608
 
609
  #: ../admin/social_sharing.php:54 ../admin/social_sharing.php:1938
610
  #: ../admin/social_commenting.php:36 ../admin/social_commenting.php:471
611
- #: ../admin/social_login.php:42 ../admin/social_login.php:1123
612
  #: ../admin/like_buttons.php:48 ../admin/like_buttons.php:806
613
  msgid "FAQ"
614
  msgstr "常见问题解答"
@@ -1339,7 +1339,7 @@ msgstr ""
1339
  "(指 Facebook 分享工作不正常的地址):"
1340
 
1341
  #: ../admin/social_sharing.php:1940 ../admin/social_commenting.php:473
1342
- #: ../admin/social_login.php:1125
1343
  msgid ""
1344
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1345
  "an online website for the plugin to function properly."
@@ -1367,7 +1367,7 @@ msgid ""
1367
  msgstr ""
1368
 
1369
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1370
- #: ../admin/social_login.php:1131
1371
  msgid "Why is my browser blocking some features of the plugin?"
1372
  msgstr ""
1373
 
@@ -1701,7 +1701,7 @@ msgstr "基本配置"
1701
  msgid "GDPR"
1702
  msgstr ""
1703
 
1704
- #: ../admin/social_login.php:39 ../admin/social_login.php:1060
1705
  msgid "XProfile Integration"
1706
  msgstr ""
1707
 
@@ -2300,55 +2300,65 @@ msgstr ""
2300
  "录。"
2301
 
2302
  #: ../admin/social_login.php:984
 
 
 
 
 
 
 
 
 
 
2303
  msgid "Opt-in text"
2304
  msgstr ""
2305
 
2306
- #: ../admin/social_login.php:994
2307
  #, fuzzy
2308
  msgid "Text for the opt-in appearing above the social login icons"
2309
  msgstr "文本显示社会登录界面的上方"
2310
 
2311
- #: ../admin/social_login.php:1002
2312
  msgid "Text to link to Privacy Policy page"
2313
  msgstr ""
2314
 
2315
- #: ../admin/social_login.php:1012
2316
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2317
  msgstr ""
2318
 
2319
- #: ../admin/social_login.php:1020
2320
  msgid "Privacy Policy Url"
2321
  msgstr ""
2322
 
2323
- #: ../admin/social_login.php:1030
2324
  #, fuzzy
2325
  msgid "Url of the privacy policy page of your website"
2326
  msgstr "您网站的主页的 Url"
2327
 
2328
- #: ../admin/social_login.php:1080 ../inc/widget.php:248 ../inc/widget.php:414
2329
  #: ../inc/widget.php:578 ../inc/widget.php:726
2330
  msgid "Select"
2331
  msgstr "选择"
2332
 
2333
- #: ../admin/social_login.php:1111
2334
  msgid "Social Login Shortcode & Widget"
2335
  msgstr "社会化登录简码&小工具"
2336
 
2337
- #: ../admin/social_login.php:1112
2338
  msgid "Social Linking Shortcode"
2339
  msgstr "社会链接简码"
2340
 
2341
- #: ../admin/social_login.php:1127
2342
  msgid "Why is social login not working?"
2343
  msgstr ""
2344
 
2345
- #: ../admin/social_login.php:1128
2346
  msgid ""
2347
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2348
  "belong to the same app"
2349
  msgstr ""
2350
 
2351
- #: ../admin/social_login.php:1130
2352
  msgid ""
2353
  "Why the user is not appearing logged in even after Social Login until the "
2354
  "webpage is refreshed manually?"
@@ -2570,28 +2580,28 @@ msgstr "无效请求。"
2570
  msgid "Providers not selected"
2571
  msgstr "未选定的供应商"
2572
 
2573
- #: ../inc/social_login.php:710
2574
  msgid "Email"
2575
  msgstr ""
2576
 
2577
- #: ../inc/social_login.php:711
2578
  msgid "Confirm email"
2579
  msgstr ""
2580
 
2581
- #: ../inc/social_login.php:713
2582
  msgid "Save"
2583
  msgstr ""
2584
 
2585
- #: ../inc/social_login.php:714
2586
  msgid "Cancel"
2587
  msgstr ""
2588
 
2589
- #: ../inc/social_login.php:788
2590
  #, fuzzy
2591
  msgid "Email Verification"
2592
  msgstr "启用电子邮件验证"
2593
 
2594
- #: ../inc/social_login.php:790
2595
  msgid ""
2596
  "Please click on the following link or paste it in browser to verify your "
2597
  "email"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-05-26 08:44+0530\n"
6
+ "PO-Revision-Date: 2018-05-26 08:45+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: zh_CN\n"
28
  msgid "Graph returned an error: "
29
  msgstr ""
30
 
31
+ #: ../super_socializer.php:569
32
  #, fuzzy
33
  msgid ""
34
  "cURL is not enabled at your website server. Please contact your website "
36
  msgstr ""
37
  "请确保在您的网站服务器上启用了cURL。对此,请您与您的网站的服务器管理员核实。"
38
 
39
+ #: ../super_socializer.php:596
40
  #, php-format
41
  msgid ""
42
  "Enter exactly the following url in <strong>Website</strong> and "
45
  "在Twitter 应用程序的选项中输入准确的<strong>网站</strong>和<strong>回调 Url</"
46
  "strong> 的url地址 (请参阅步骤 3 %s)"
47
 
48
+ #: ../super_socializer.php:599
49
  msgid ""
50
  "Make sure cURL is enabled at your website server. You may need to contact "
51
  "the server administrator of your website to verify this"
52
  msgstr ""
53
  "请确保在您的网站服务器上启用了cURL。对此,请您与您的网站的服务器管理员核实。"
54
 
55
+ #: ../super_socializer.php:600
56
  #, php-format
57
  msgid ""
58
  "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
59
  msgstr ""
60
 
61
+ #: ../super_socializer.php:866 ../helper.php:963
62
  msgid "Please verify your email address to login."
63
  msgstr "请验证您的电子邮件地址以便登录。"
64
 
65
+ #: ../super_socializer.php:866
66
  msgid "Your email has been verified. Now you can login to your account"
67
  msgstr "您的电子邮件已验证。现在你可以登录到您的帐户"
68
 
69
+ #: ../super_socializer.php:870
70
  msgid "Notification"
71
  msgstr "通知"
72
 
73
+ #: ../super_socializer.php:888 ../admin/social_login.php:756
74
  msgid "Email required"
75
  msgstr "邮件地址(比选)"
76
 
77
+ #: ../super_socializer.php:891
78
  msgid "Please check your email inbox to complete the registration."
79
  msgstr "请检查您的电子邮件收件箱以完成注册。"
80
 
81
+ #: ../super_socializer.php:898 ../helper.php:503
82
  msgid "Enter your LiveJournal username"
83
  msgstr ""
84
 
85
+ #: ../super_socializer.php:972
86
  msgid "Leave a reply"
87
  msgstr "回复"
88
 
89
+ #: ../super_socializer.php:984 ../inc/social_sharing.php:233
90
  msgid "Shares"
91
  msgstr ""
92
 
93
+ #: ../super_socializer.php:984 ../inc/social_sharing.php:233
94
  msgid "Share"
95
  msgstr ""
96
 
97
+ #: ../super_socializer.php:984
98
  #, fuzzy
99
  msgid "Link copied."
100
  msgstr "LinkedIn"
101
 
102
+ #: ../super_socializer.php:1227
103
  msgid "Super Socializer - General Options"
104
  msgstr "Super Socializer-常规选项"
105
 
106
+ #: ../super_socializer.php:1227 ../admin/general_options.php:11
107
  #: ../admin/social_commenting.php:43
108
  msgid "General Options"
109
  msgstr "常规选项"
110
 
111
+ #: ../super_socializer.php:1295 ../helper.php:885
112
  msgid "Social Avatar"
113
  msgstr "社会化头像"
114
 
115
+ #: ../super_socializer.php:1298
116
  msgid "Small Avatar Url"
117
  msgstr "小头像 Url"
118
 
119
+ #: ../super_socializer.php:1302
120
  msgid "Large Avatar Url"
121
  msgstr "大头像 Url"
122
 
123
+ #: ../super_socializer.php:1306 ../helper.php:888
124
  msgid ""
125
  "Do not fetch and update social avatar from my profile, next time I Social "
126
  "Login"
127
  msgstr "不从我的个人资料里获取及更新社会化头像,下次社会化登录"
128
 
129
+ #: ../super_socializer.php:1310 ../helper.php:889
130
  msgid "Update social avatar, next time I Social Login"
131
  msgstr "更新社会化头像,下次社会化登录"
132
 
133
+ #: ../super_socializer.php:1383 ../super_socializer.php:1853
134
  msgid ""
135
  "Your browser is blocking some features of this website. Please follow the "
136
  "instructions at {support_url} to unblock these."
137
  msgstr ""
138
 
139
+ #: ../super_socializer.php:1389
140
  msgid "Login with your Social ID"
141
  msgstr ""
142
 
143
+ #: ../super_socializer.php:1390
144
  msgid "Email you entered is already registered or invalid"
145
  msgstr "您输入的电子邮件已经注册或无效"
146
 
147
+ #: ../super_socializer.php:1395
148
  msgid "Please enter a valid email address. You might be required to verify it"
149
  msgstr "请输入一个有效的电子邮件地址。您可能需要验证它"
150
 
151
+ #: ../super_socializer.php:1600
152
  msgid ""
153
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
154
  "current version of Super Socialzer"
155
  msgstr ""
156
 
157
+ #: ../super_socializer.php:1609
158
  msgid ""
159
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
160
  "version of Super Socialzer"
161
  msgstr ""
162
 
163
+ #: ../super_socializer.php:1618
164
  msgid ""
165
  "Update \"Social Login Buttons\" add-on for compatibility with current "
166
  "version of Super Socialzer"
167
  msgstr ""
168
 
169
+ #: ../super_socializer.php:1627
170
  msgid ""
171
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
172
  "with current version of Super Socialzer"
173
  msgstr ""
174
 
175
+ #: ../super_socializer.php:1636
176
  msgid ""
177
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
178
  "with current version of Super Socialzer"
179
  msgstr ""
180
 
181
+ #: ../super_socializer.php:1643
182
  msgid ""
183
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
184
  "LiveJournal Login of Super Socialzer"
185
  msgstr ""
186
 
187
+ #: ../super_socializer.php:1654
188
  #, php-format
189
  msgid ""
190
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
191
  msgstr ""
192
 
193
+ #: ../super_socializer.php:1670
194
  #, php-format
195
  msgid ""
196
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
197
  msgstr ""
198
 
199
+ #: ../super_socializer.php:1694
200
  #, php-format
201
  msgid ""
202
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
204
  "target=\"_blank\">here</a>"
205
  msgstr ""
206
 
207
+ #: ../super_socializer.php:1694 ../super_socializer.php:1719
208
+ #: ../super_socializer.php:1744 ../super_socializer.php:1777
209
+ #: ../super_socializer.php:1802
210
  msgid "Okay"
211
  msgstr ""
212
 
213
+ #: ../super_socializer.php:1719
214
  #, php-format
215
  msgid ""
216
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
218
  "target=\"_blank\">here</a>"
219
  msgstr ""
220
 
221
+ #: ../super_socializer.php:1744
222
  #, php-format
223
  msgid ""
224
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
226
  "target=\"_blank\">here</a>"
227
  msgstr ""
228
 
229
+ #: ../super_socializer.php:1755
230
  #, php-format
231
  msgid ""
232
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
233
  msgstr ""
234
 
235
+ #: ../super_socializer.php:1777
236
  #, php-format
237
  msgid ""
238
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
240
  "\"%s\" target=\"_blank\">here</a>"
241
  msgstr ""
242
 
243
+ #: ../super_socializer.php:1802
244
  #, php-format
245
  msgid ""
246
  "Your website visitors will see a popup notification (only once) if their "
279
  msgid "Settings"
280
  msgstr "设置"
281
 
282
+ #: ../helper.php:548
283
  msgid "Account linked successfully"
284
  msgstr "成功关联帐户"
285
 
286
+ #: ../helper.php:552
287
  msgid "Account already exists or linked"
288
  msgstr "帐户已经存在或被链接"
289
 
350
 
351
  #: ../helper.php:900 ../admin/general_options.php:128
352
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
353
+ #: ../admin/social_login.php:1162 ../admin/like_buttons.php:822
354
  msgid "Save Changes"
355
  msgstr "保存更改"
356
 
430
  msgstr "您可以指定任何额外的 CSS 规则(无需 &lt;style&gt; tag)"
431
 
432
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
433
+ #: ../admin/social_commenting.php:492 ../admin/social_login.php:1167
434
  #: ../admin/like_buttons.php:827
435
  #, fuzzy
436
  msgid "Instagram Shoutout"
437
  msgstr "Instagram"
438
 
439
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
440
+ #: ../admin/social_commenting.php:494 ../admin/social_login.php:1169
441
  #: ../admin/like_buttons.php:829
442
  msgid ""
443
  "If you can send (to hello@heateor.com) how our plugin is helping your "
446
  msgstr ""
447
 
448
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
449
+ #: ../admin/social_commenting.php:495 ../admin/social_login.php:1170
450
  #: ../admin/like_buttons.php:830
451
  msgid ""
452
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
457
  msgstr ""
458
 
459
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
460
+ #: ../admin/social_commenting.php:496 ../admin/social_login.php:1171
461
  #: ../admin/like_buttons.php:831
462
  msgid ""
463
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
597
 
598
  #: ../admin/social_sharing.php:52 ../admin/social_sharing.php:1905
599
  #: ../admin/social_sharing.php:1907 ../admin/social_login.php:41
600
+ #: ../admin/social_login.php:1129 ../admin/like_buttons.php:47
601
  #: ../admin/like_buttons.php:793
602
  msgid "Shortcode & Widget"
603
  msgstr "簡碼和小工具"
608
 
609
  #: ../admin/social_sharing.php:54 ../admin/social_sharing.php:1938
610
  #: ../admin/social_commenting.php:36 ../admin/social_commenting.php:471
611
+ #: ../admin/social_login.php:42 ../admin/social_login.php:1143
612
  #: ../admin/like_buttons.php:48 ../admin/like_buttons.php:806
613
  msgid "FAQ"
614
  msgstr "常见问题解答"
1339
  "(指 Facebook 分享工作不正常的地址):"
1340
 
1341
  #: ../admin/social_sharing.php:1940 ../admin/social_commenting.php:473
1342
+ #: ../admin/social_login.php:1145
1343
  msgid ""
1344
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1345
  "an online website for the plugin to function properly."
1367
  msgstr ""
1368
 
1369
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1370
+ #: ../admin/social_login.php:1151
1371
  msgid "Why is my browser blocking some features of the plugin?"
1372
  msgstr ""
1373
 
1701
  msgid "GDPR"
1702
  msgstr ""
1703
 
1704
+ #: ../admin/social_login.php:39 ../admin/social_login.php:1080
1705
  msgid "XProfile Integration"
1706
  msgstr ""
1707
 
2300
  "录。"
2301
 
2302
  #: ../admin/social_login.php:984
2303
+ #, fuzzy
2304
+ msgid "Enable GDPR opt-in"
2305
+ msgstr "启用 Disqus 评论"
2306
+
2307
+ #: ../admin/social_login.php:994
2308
+ msgid ""
2309
+ "Enable it to show GDPR opt-in for social login and social account linking"
2310
+ msgstr ""
2311
+
2312
+ #: ../admin/social_login.php:1003
2313
  msgid "Opt-in text"
2314
  msgstr ""
2315
 
2316
+ #: ../admin/social_login.php:1013
2317
  #, fuzzy
2318
  msgid "Text for the opt-in appearing above the social login icons"
2319
  msgstr "文本显示社会登录界面的上方"
2320
 
2321
+ #: ../admin/social_login.php:1021
2322
  msgid "Text to link to Privacy Policy page"
2323
  msgstr ""
2324
 
2325
+ #: ../admin/social_login.php:1031
2326
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2327
  msgstr ""
2328
 
2329
+ #: ../admin/social_login.php:1039
2330
  msgid "Privacy Policy Url"
2331
  msgstr ""
2332
 
2333
+ #: ../admin/social_login.php:1049
2334
  #, fuzzy
2335
  msgid "Url of the privacy policy page of your website"
2336
  msgstr "您网站的主页的 Url"
2337
 
2338
+ #: ../admin/social_login.php:1100 ../inc/widget.php:248 ../inc/widget.php:414
2339
  #: ../inc/widget.php:578 ../inc/widget.php:726
2340
  msgid "Select"
2341
  msgstr "选择"
2342
 
2343
+ #: ../admin/social_login.php:1131
2344
  msgid "Social Login Shortcode & Widget"
2345
  msgstr "社会化登录简码&小工具"
2346
 
2347
+ #: ../admin/social_login.php:1132
2348
  msgid "Social Linking Shortcode"
2349
  msgstr "社会链接简码"
2350
 
2351
+ #: ../admin/social_login.php:1147
2352
  msgid "Why is social login not working?"
2353
  msgstr ""
2354
 
2355
+ #: ../admin/social_login.php:1148
2356
  msgid ""
2357
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2358
  "belong to the same app"
2359
  msgstr ""
2360
 
2361
+ #: ../admin/social_login.php:1150
2362
  msgid ""
2363
  "Why the user is not appearing logged in even after Social Login until the "
2364
  "webpage is refreshed manually?"
2580
  msgid "Providers not selected"
2581
  msgstr "未选定的供应商"
2582
 
2583
+ #: ../inc/social_login.php:712
2584
  msgid "Email"
2585
  msgstr ""
2586
 
2587
+ #: ../inc/social_login.php:713
2588
  msgid "Confirm email"
2589
  msgstr ""
2590
 
2591
+ #: ../inc/social_login.php:715
2592
  msgid "Save"
2593
  msgstr ""
2594
 
2595
+ #: ../inc/social_login.php:716
2596
  msgid "Cancel"
2597
  msgstr ""
2598
 
2599
+ #: ../inc/social_login.php:790
2600
  #, fuzzy
2601
  msgid "Email Verification"
2602
  msgstr "启用电子邮件验证"
2603
 
2604
+ #: ../inc/social_login.php:792
2605
  msgid ""
2606
  "Please click on the following link or paste it in browser to verify your "
2607
  "email"
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-05-20 00:59+0530\n"
6
- "PO-Revision-Date: 2018-05-20 01:00+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: en_IN\n"
@@ -27,169 +27,169 @@ msgstr ""
27
  msgid "Graph returned an error: "
28
  msgstr ""
29
 
30
- #: ../super_socializer.php:567
31
  msgid ""
32
  "cURL is not enabled at your website server. Please contact your website "
33
  "server administrator to enable it."
34
  msgstr ""
35
 
36
- #: ../super_socializer.php:594
37
  #, php-format
38
  msgid ""
39
  "Enter exactly the following url in <strong>Website</strong> and "
40
  "<strong>Callback Url</strong> options in your Twitter app (see step 3 %s)"
41
  msgstr ""
42
 
43
- #: ../super_socializer.php:597
44
  msgid ""
45
  "Make sure cURL is enabled at your website server. You may need to contact "
46
  "the server administrator of your website to verify this"
47
  msgstr ""
48
 
49
- #: ../super_socializer.php:598
50
  #, php-format
51
  msgid ""
52
  "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
53
  msgstr ""
54
 
55
- #: ../super_socializer.php:864 ../helper.php:963
56
  msgid "Please verify your email address to login."
57
  msgstr ""
58
 
59
- #: ../super_socializer.php:864
60
  msgid "Your email has been verified. Now you can login to your account"
61
  msgstr ""
62
 
63
- #: ../super_socializer.php:868
64
  msgid "Notification"
65
  msgstr ""
66
 
67
- #: ../super_socializer.php:886 ../admin/social_login.php:756
68
  msgid "Email required"
69
  msgstr ""
70
 
71
- #: ../super_socializer.php:889
72
  msgid "Please check your email inbox to complete the registration."
73
  msgstr ""
74
 
75
- #: ../super_socializer.php:896 ../helper.php:503
76
  msgid "Enter your LiveJournal username"
77
  msgstr ""
78
 
79
- #: ../super_socializer.php:970
80
  msgid "Leave a reply"
81
  msgstr ""
82
 
83
- #: ../super_socializer.php:982 ../inc/social_sharing.php:233
84
  msgid "Shares"
85
  msgstr ""
86
 
87
- #: ../super_socializer.php:982 ../inc/social_sharing.php:233
88
  msgid "Share"
89
  msgstr ""
90
 
91
- #: ../super_socializer.php:982
92
  msgid "Link copied."
93
  msgstr ""
94
 
95
- #: ../super_socializer.php:1225
96
  msgid "Super Socializer - General Options"
97
  msgstr ""
98
 
99
- #: ../super_socializer.php:1225 ../admin/general_options.php:11
100
  #: ../admin/social_commenting.php:43
101
  msgid "General Options"
102
  msgstr ""
103
 
104
- #: ../super_socializer.php:1293 ../helper.php:885
105
  msgid "Social Avatar"
106
  msgstr ""
107
 
108
- #: ../super_socializer.php:1296
109
  msgid "Small Avatar Url"
110
  msgstr ""
111
 
112
- #: ../super_socializer.php:1300
113
  msgid "Large Avatar Url"
114
  msgstr ""
115
 
116
- #: ../super_socializer.php:1304 ../helper.php:888
117
  msgid ""
118
  "Do not fetch and update social avatar from my profile, next time I Social "
119
  "Login"
120
  msgstr ""
121
 
122
- #: ../super_socializer.php:1308 ../helper.php:889
123
  msgid "Update social avatar, next time I Social Login"
124
  msgstr ""
125
 
126
- #: ../super_socializer.php:1381 ../super_socializer.php:1844
127
  msgid ""
128
  "Your browser is blocking some features of this website. Please follow the "
129
  "instructions at {support_url} to unblock these."
130
  msgstr ""
131
 
132
- #: ../super_socializer.php:1387
133
  msgid "Login with your Social ID"
134
  msgstr ""
135
 
136
- #: ../super_socializer.php:1388
137
  msgid "Email you entered is already registered or invalid"
138
  msgstr ""
139
 
140
- #: ../super_socializer.php:1393
141
  msgid "Please enter a valid email address. You might be required to verify it"
142
  msgstr ""
143
 
144
- #: ../super_socializer.php:1597
145
  msgid ""
146
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
147
  "current version of Super Socialzer"
148
  msgstr ""
149
 
150
- #: ../super_socializer.php:1606
151
  msgid ""
152
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
153
  "version of Super Socialzer"
154
  msgstr ""
155
 
156
- #: ../super_socializer.php:1615
157
  msgid ""
158
  "Update \"Social Login Buttons\" add-on for compatibility with current "
159
  "version of Super Socialzer"
160
  msgstr ""
161
 
162
- #: ../super_socializer.php:1624
163
  msgid ""
164
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
165
  "with current version of Super Socialzer"
166
  msgstr ""
167
 
168
- #: ../super_socializer.php:1633
169
  msgid ""
170
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
171
  "with current version of Super Socialzer"
172
  msgstr ""
173
 
174
- #: ../super_socializer.php:1640
175
  msgid ""
176
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
177
  "LiveJournal Login of Super Socialzer"
178
  msgstr ""
179
 
180
- #: ../super_socializer.php:1651
181
  #, php-format
182
  msgid ""
183
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
184
  msgstr ""
185
 
186
- #: ../super_socializer.php:1667
187
  #, php-format
188
  msgid ""
189
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
190
  msgstr ""
191
 
192
- #: ../super_socializer.php:1691
193
  #, php-format
194
  msgid ""
195
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -197,13 +197,13 @@ msgid ""
197
  "target=\"_blank\">here</a>"
198
  msgstr ""
199
 
200
- #: ../super_socializer.php:1691 ../super_socializer.php:1716
201
- #: ../super_socializer.php:1741 ../super_socializer.php:1774
202
- #: ../super_socializer.php:1799
203
  msgid "Okay"
204
  msgstr ""
205
 
206
- #: ../super_socializer.php:1716
207
  #, php-format
208
  msgid ""
209
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -211,7 +211,7 @@ msgid ""
211
  "target=\"_blank\">here</a>"
212
  msgstr ""
213
 
214
- #: ../super_socializer.php:1741
215
  #, php-format
216
  msgid ""
217
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -219,13 +219,13 @@ msgid ""
219
  "target=\"_blank\">here</a>"
220
  msgstr ""
221
 
222
- #: ../super_socializer.php:1752
223
  #, php-format
224
  msgid ""
225
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
226
  msgstr ""
227
 
228
- #: ../super_socializer.php:1774
229
  #, php-format
230
  msgid ""
231
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
@@ -233,7 +233,7 @@ msgid ""
233
  "\"%s\" target=\"_blank\">here</a>"
234
  msgstr ""
235
 
236
- #: ../super_socializer.php:1799
237
  #, php-format
238
  msgid ""
239
  "Your website visitors will see a popup notification (only once) if their "
@@ -271,11 +271,11 @@ msgstr ""
271
  msgid "Settings"
272
  msgstr ""
273
 
274
- #: ../helper.php:552
275
  msgid "Account linked successfully"
276
  msgstr ""
277
 
278
- #: ../helper.php:556
279
  msgid "Account already exists or linked"
280
  msgstr ""
281
 
@@ -341,7 +341,7 @@ msgstr ""
341
 
342
  #: ../helper.php:900 ../admin/general_options.php:128
343
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
344
- #: ../admin/social_login.php:1142 ../admin/like_buttons.php:822
345
  msgid "Save Changes"
346
  msgstr ""
347
 
@@ -420,13 +420,13 @@ msgid "You can specify any additional CSS rules (without &lt;style&gt; tag)"
420
  msgstr ""
421
 
422
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
423
- #: ../admin/social_commenting.php:492 ../admin/social_login.php:1147
424
  #: ../admin/like_buttons.php:827
425
  msgid "Instagram Shoutout"
426
  msgstr ""
427
 
428
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
429
- #: ../admin/social_commenting.php:494 ../admin/social_login.php:1149
430
  #: ../admin/like_buttons.php:829
431
  msgid ""
432
  "If you can send (to hello@heateor.com) how our plugin is helping your "
@@ -435,7 +435,7 @@ msgid ""
435
  msgstr ""
436
 
437
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
438
- #: ../admin/social_commenting.php:495 ../admin/social_login.php:1150
439
  #: ../admin/like_buttons.php:830
440
  msgid ""
441
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
@@ -446,7 +446,7 @@ msgid ""
446
  msgstr ""
447
 
448
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
449
- #: ../admin/social_commenting.php:496 ../admin/social_login.php:1151
450
  #: ../admin/like_buttons.php:831
451
  msgid ""
452
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
@@ -579,7 +579,7 @@ msgstr ""
579
 
580
  #: ../admin/social_sharing.php:52 ../admin/social_sharing.php:1905
581
  #: ../admin/social_sharing.php:1907 ../admin/social_login.php:41
582
- #: ../admin/social_login.php:1109 ../admin/like_buttons.php:47
583
  #: ../admin/like_buttons.php:793
584
  msgid "Shortcode & Widget"
585
  msgstr ""
@@ -590,7 +590,7 @@ msgstr ""
590
 
591
  #: ../admin/social_sharing.php:54 ../admin/social_sharing.php:1938
592
  #: ../admin/social_commenting.php:36 ../admin/social_commenting.php:471
593
- #: ../admin/social_login.php:42 ../admin/social_login.php:1123
594
  #: ../admin/like_buttons.php:48 ../admin/like_buttons.php:806
595
  msgid "FAQ"
596
  msgstr ""
@@ -1286,7 +1286,7 @@ msgid ""
1286
  msgstr ""
1287
 
1288
  #: ../admin/social_sharing.php:1940 ../admin/social_commenting.php:473
1289
- #: ../admin/social_login.php:1125
1290
  msgid ""
1291
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1292
  "an online website for the plugin to function properly."
@@ -1314,7 +1314,7 @@ msgid ""
1314
  msgstr ""
1315
 
1316
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1317
- #: ../admin/social_login.php:1131
1318
  msgid "Why is my browser blocking some features of the plugin?"
1319
  msgstr ""
1320
 
@@ -1635,7 +1635,7 @@ msgstr ""
1635
  msgid "GDPR"
1636
  msgstr ""
1637
 
1638
- #: ../admin/social_login.php:39 ../admin/social_login.php:1060
1639
  msgid "XProfile Integration"
1640
  msgstr ""
1641
 
@@ -2170,53 +2170,62 @@ msgid ""
2170
  msgstr ""
2171
 
2172
  #: ../admin/social_login.php:984
2173
- msgid "Opt-in text"
2174
  msgstr ""
2175
 
2176
  #: ../admin/social_login.php:994
 
 
 
 
 
 
 
 
 
2177
  msgid "Text for the opt-in appearing above the social login icons"
2178
  msgstr ""
2179
 
2180
- #: ../admin/social_login.php:1002
2181
  msgid "Text to link to Privacy Policy page"
2182
  msgstr ""
2183
 
2184
- #: ../admin/social_login.php:1012
2185
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2186
  msgstr ""
2187
 
2188
- #: ../admin/social_login.php:1020
2189
  msgid "Privacy Policy Url"
2190
  msgstr ""
2191
 
2192
- #: ../admin/social_login.php:1030
2193
  msgid "Url of the privacy policy page of your website"
2194
  msgstr ""
2195
 
2196
- #: ../admin/social_login.php:1080 ../inc/widget.php:248 ../inc/widget.php:414
2197
  #: ../inc/widget.php:578 ../inc/widget.php:726
2198
  msgid "Select"
2199
  msgstr ""
2200
 
2201
- #: ../admin/social_login.php:1111
2202
  msgid "Social Login Shortcode & Widget"
2203
  msgstr ""
2204
 
2205
- #: ../admin/social_login.php:1112
2206
  msgid "Social Linking Shortcode"
2207
  msgstr ""
2208
 
2209
- #: ../admin/social_login.php:1127
2210
  msgid "Why is social login not working?"
2211
  msgstr ""
2212
 
2213
- #: ../admin/social_login.php:1128
2214
  msgid ""
2215
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2216
  "belong to the same app"
2217
  msgstr ""
2218
 
2219
- #: ../admin/social_login.php:1130
2220
  msgid ""
2221
  "Why the user is not appearing logged in even after Social Login until the "
2222
  "webpage is refreshed manually?"
@@ -2422,27 +2431,27 @@ msgstr ""
2422
  msgid "Providers not selected"
2423
  msgstr ""
2424
 
2425
- #: ../inc/social_login.php:710
2426
  msgid "Email"
2427
  msgstr ""
2428
 
2429
- #: ../inc/social_login.php:711
2430
  msgid "Confirm email"
2431
  msgstr ""
2432
 
2433
- #: ../inc/social_login.php:713
2434
  msgid "Save"
2435
  msgstr ""
2436
 
2437
- #: ../inc/social_login.php:714
2438
  msgid "Cancel"
2439
  msgstr ""
2440
 
2441
- #: ../inc/social_login.php:788
2442
  msgid "Email Verification"
2443
  msgstr ""
2444
 
2445
- #: ../inc/social_login.php:790
2446
  msgid ""
2447
  "Please click on the following link or paste it in browser to verify your "
2448
  "email"
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-05-26 08:47+0530\n"
6
+ "PO-Revision-Date: 2018-05-26 08:47+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: en_IN\n"
27
  msgid "Graph returned an error: "
28
  msgstr ""
29
 
30
+ #: ../super_socializer.php:569
31
  msgid ""
32
  "cURL is not enabled at your website server. Please contact your website "
33
  "server administrator to enable it."
34
  msgstr ""
35
 
36
+ #: ../super_socializer.php:596
37
  #, php-format
38
  msgid ""
39
  "Enter exactly the following url in <strong>Website</strong> and "
40
  "<strong>Callback Url</strong> options in your Twitter app (see step 3 %s)"
41
  msgstr ""
42
 
43
+ #: ../super_socializer.php:599
44
  msgid ""
45
  "Make sure cURL is enabled at your website server. You may need to contact "
46
  "the server administrator of your website to verify this"
47
  msgstr ""
48
 
49
+ #: ../super_socializer.php:600
50
  #, php-format
51
  msgid ""
52
  "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
53
  msgstr ""
54
 
55
+ #: ../super_socializer.php:866 ../helper.php:963
56
  msgid "Please verify your email address to login."
57
  msgstr ""
58
 
59
+ #: ../super_socializer.php:866
60
  msgid "Your email has been verified. Now you can login to your account"
61
  msgstr ""
62
 
63
+ #: ../super_socializer.php:870
64
  msgid "Notification"
65
  msgstr ""
66
 
67
+ #: ../super_socializer.php:888 ../admin/social_login.php:756
68
  msgid "Email required"
69
  msgstr ""
70
 
71
+ #: ../super_socializer.php:891
72
  msgid "Please check your email inbox to complete the registration."
73
  msgstr ""
74
 
75
+ #: ../super_socializer.php:898 ../helper.php:503
76
  msgid "Enter your LiveJournal username"
77
  msgstr ""
78
 
79
+ #: ../super_socializer.php:972
80
  msgid "Leave a reply"
81
  msgstr ""
82
 
83
+ #: ../super_socializer.php:984 ../inc/social_sharing.php:233
84
  msgid "Shares"
85
  msgstr ""
86
 
87
+ #: ../super_socializer.php:984 ../inc/social_sharing.php:233
88
  msgid "Share"
89
  msgstr ""
90
 
91
+ #: ../super_socializer.php:984
92
  msgid "Link copied."
93
  msgstr ""
94
 
95
+ #: ../super_socializer.php:1227
96
  msgid "Super Socializer - General Options"
97
  msgstr ""
98
 
99
+ #: ../super_socializer.php:1227 ../admin/general_options.php:11
100
  #: ../admin/social_commenting.php:43
101
  msgid "General Options"
102
  msgstr ""
103
 
104
+ #: ../super_socializer.php:1295 ../helper.php:885
105
  msgid "Social Avatar"
106
  msgstr ""
107
 
108
+ #: ../super_socializer.php:1298
109
  msgid "Small Avatar Url"
110
  msgstr ""
111
 
112
+ #: ../super_socializer.php:1302
113
  msgid "Large Avatar Url"
114
  msgstr ""
115
 
116
+ #: ../super_socializer.php:1306 ../helper.php:888
117
  msgid ""
118
  "Do not fetch and update social avatar from my profile, next time I Social "
119
  "Login"
120
  msgstr ""
121
 
122
+ #: ../super_socializer.php:1310 ../helper.php:889
123
  msgid "Update social avatar, next time I Social Login"
124
  msgstr ""
125
 
126
+ #: ../super_socializer.php:1383 ../super_socializer.php:1853
127
  msgid ""
128
  "Your browser is blocking some features of this website. Please follow the "
129
  "instructions at {support_url} to unblock these."
130
  msgstr ""
131
 
132
+ #: ../super_socializer.php:1389
133
  msgid "Login with your Social ID"
134
  msgstr ""
135
 
136
+ #: ../super_socializer.php:1390
137
  msgid "Email you entered is already registered or invalid"
138
  msgstr ""
139
 
140
+ #: ../super_socializer.php:1395
141
  msgid "Please enter a valid email address. You might be required to verify it"
142
  msgstr ""
143
 
144
+ #: ../super_socializer.php:1600
145
  msgid ""
146
  "Update \"Facebook Comments Moderation\" add-on for compatibility with "
147
  "current version of Super Socialzer"
148
  msgstr ""
149
 
150
+ #: ../super_socializer.php:1609
151
  msgid ""
152
  "Update \"Facebook Comments Notifier\" add-on for compatibility with current "
153
  "version of Super Socialzer"
154
  msgstr ""
155
 
156
+ #: ../super_socializer.php:1618
157
  msgid ""
158
  "Update \"Social Login Buttons\" add-on for compatibility with current "
159
  "version of Super Socialzer"
160
  msgstr ""
161
 
162
+ #: ../super_socializer.php:1627
163
  msgid ""
164
  "Update \"Social Share myCRED Integration\" add-on for maximum compatibility "
165
  "with current version of Super Socialzer"
166
  msgstr ""
167
 
168
+ #: ../super_socializer.php:1636
169
  msgid ""
170
  "Update \"Social Login myCRED Integration\" add-on for maximum compatibility "
171
  "with current version of Super Socialzer"
172
  msgstr ""
173
 
174
+ #: ../super_socializer.php:1643
175
  msgid ""
176
  "Update \"Social Login myCRED Integration\" add-on for compatibility with "
177
  "LiveJournal Login of Super Socialzer"
178
  msgstr ""
179
 
180
+ #: ../super_socializer.php:1654
181
  #, php-format
182
  msgid ""
183
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
184
  msgstr ""
185
 
186
+ #: ../super_socializer.php:1670
187
  #, php-format
188
  msgid ""
189
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
190
  msgstr ""
191
 
192
+ #: ../super_socializer.php:1694
193
  #, php-format
194
  msgid ""
195
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
197
  "target=\"_blank\">here</a>"
198
  msgstr ""
199
 
200
+ #: ../super_socializer.php:1694 ../super_socializer.php:1719
201
+ #: ../super_socializer.php:1744 ../super_socializer.php:1777
202
+ #: ../super_socializer.php:1802
203
  msgid "Okay"
204
  msgstr ""
205
 
206
+ #: ../super_socializer.php:1719
207
  #, php-format
208
  msgid ""
209
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
211
  "target=\"_blank\">here</a>"
212
  msgstr ""
213
 
214
+ #: ../super_socializer.php:1744
215
  #, php-format
216
  msgid ""
217
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
219
  "target=\"_blank\">here</a>"
220
  msgstr ""
221
 
222
+ #: ../super_socializer.php:1755
223
  #, php-format
224
  msgid ""
225
  "Save the url of privacy policy page of your website <a href=\"%s\">here</a>"
226
  msgstr ""
227
 
228
+ #: ../super_socializer.php:1777
229
  #, php-format
230
  msgid ""
231
  "This plugin is GDPR compliant. You need to update the privacy policy of your "
233
  "\"%s\" target=\"_blank\">here</a>"
234
  msgstr ""
235
 
236
+ #: ../super_socializer.php:1802
237
  #, php-format
238
  msgid ""
239
  "Your website visitors will see a popup notification (only once) if their "
271
  msgid "Settings"
272
  msgstr ""
273
 
274
+ #: ../helper.php:548
275
  msgid "Account linked successfully"
276
  msgstr ""
277
 
278
+ #: ../helper.php:552
279
  msgid "Account already exists or linked"
280
  msgstr ""
281
 
341
 
342
  #: ../helper.php:900 ../admin/general_options.php:128
343
  #: ../admin/social_sharing.php:1973 ../admin/social_commenting.php:487
344
+ #: ../admin/social_login.php:1162 ../admin/like_buttons.php:822
345
  msgid "Save Changes"
346
  msgstr ""
347
 
420
  msgstr ""
421
 
422
  #: ../admin/general_options.php:139 ../admin/social_sharing.php:1978
423
+ #: ../admin/social_commenting.php:492 ../admin/social_login.php:1167
424
  #: ../admin/like_buttons.php:827
425
  msgid "Instagram Shoutout"
426
  msgstr ""
427
 
428
  #: ../admin/general_options.php:141 ../admin/social_sharing.php:1980
429
+ #: ../admin/social_commenting.php:494 ../admin/social_login.php:1169
430
  #: ../admin/like_buttons.php:829
431
  msgid ""
432
  "If you can send (to hello@heateor.com) how our plugin is helping your "
435
  msgstr ""
436
 
437
  #: ../admin/general_options.php:142 ../admin/social_sharing.php:1981
438
+ #: ../admin/social_commenting.php:495 ../admin/social_login.php:1170
439
  #: ../admin/like_buttons.php:830
440
  msgid ""
441
  "<b>Example</b> - Blah-Blah Online Coaching teaches various programming "
446
  msgstr ""
447
 
448
  #: ../admin/general_options.php:143 ../admin/social_sharing.php:1982
449
+ #: ../admin/social_commenting.php:496 ../admin/social_login.php:1171
450
  #: ../admin/like_buttons.php:831
451
  msgid ""
452
  "@blahblahonlinecoaching proudly use #SuperSocializer to enable social "
579
 
580
  #: ../admin/social_sharing.php:52 ../admin/social_sharing.php:1905
581
  #: ../admin/social_sharing.php:1907 ../admin/social_login.php:41
582
+ #: ../admin/social_login.php:1129 ../admin/like_buttons.php:47
583
  #: ../admin/like_buttons.php:793
584
  msgid "Shortcode & Widget"
585
  msgstr ""
590
 
591
  #: ../admin/social_sharing.php:54 ../admin/social_sharing.php:1938
592
  #: ../admin/social_commenting.php:36 ../admin/social_commenting.php:471
593
+ #: ../admin/social_login.php:42 ../admin/social_login.php:1143
594
  #: ../admin/like_buttons.php:48 ../admin/like_buttons.php:806
595
  msgid "FAQ"
596
  msgstr ""
1286
  msgstr ""
1287
 
1288
  #: ../admin/social_sharing.php:1940 ../admin/social_commenting.php:473
1289
+ #: ../admin/social_login.php:1145
1290
  msgid ""
1291
  "<strong>Note:</strong> Plugin will not work on local server. You should have "
1292
  "an online website for the plugin to function properly."
1314
  msgstr ""
1315
 
1316
  #: ../admin/social_sharing.php:1947 ../admin/social_commenting.php:476
1317
+ #: ../admin/social_login.php:1151
1318
  msgid "Why is my browser blocking some features of the plugin?"
1319
  msgstr ""
1320
 
1635
  msgid "GDPR"
1636
  msgstr ""
1637
 
1638
+ #: ../admin/social_login.php:39 ../admin/social_login.php:1080
1639
  msgid "XProfile Integration"
1640
  msgstr ""
1641
 
2170
  msgstr ""
2171
 
2172
  #: ../admin/social_login.php:984
2173
+ msgid "Enable GDPR opt-in"
2174
  msgstr ""
2175
 
2176
  #: ../admin/social_login.php:994
2177
+ msgid ""
2178
+ "Enable it to show GDPR opt-in for social login and social account linking"
2179
+ msgstr ""
2180
+
2181
+ #: ../admin/social_login.php:1003
2182
+ msgid "Opt-in text"
2183
+ msgstr ""
2184
+
2185
+ #: ../admin/social_login.php:1013
2186
  msgid "Text for the opt-in appearing above the social login icons"
2187
  msgstr ""
2188
 
2189
+ #: ../admin/social_login.php:1021
2190
  msgid "Text to link to Privacy Policy page"
2191
  msgstr ""
2192
 
2193
+ #: ../admin/social_login.php:1031
2194
  msgid "Word(s) in the opt-in text to be linked to privacy policy page"
2195
  msgstr ""
2196
 
2197
+ #: ../admin/social_login.php:1039
2198
  msgid "Privacy Policy Url"
2199
  msgstr ""
2200
 
2201
+ #: ../admin/social_login.php:1049
2202
  msgid "Url of the privacy policy page of your website"
2203
  msgstr ""
2204
 
2205
+ #: ../admin/social_login.php:1100 ../inc/widget.php:248 ../inc/widget.php:414
2206
  #: ../inc/widget.php:578 ../inc/widget.php:726
2207
  msgid "Select"
2208
  msgstr ""
2209
 
2210
+ #: ../admin/social_login.php:1131
2211
  msgid "Social Login Shortcode & Widget"
2212
  msgstr ""
2213
 
2214
+ #: ../admin/social_login.php:1132
2215
  msgid "Social Linking Shortcode"
2216
  msgstr ""
2217
 
2218
+ #: ../admin/social_login.php:1147
2219
  msgid "Why is social login not working?"
2220
  msgstr ""
2221
 
2222
+ #: ../admin/social_login.php:1148
2223
  msgid ""
2224
  "Make sure that App ID and Secret (Client ID and Secret) keys you have saved, "
2225
  "belong to the same app"
2226
  msgstr ""
2227
 
2228
+ #: ../admin/social_login.php:1150
2229
  msgid ""
2230
  "Why the user is not appearing logged in even after Social Login until the "
2231
  "webpage is refreshed manually?"
2431
  msgid "Providers not selected"
2432
  msgstr ""
2433
 
2434
+ #: ../inc/social_login.php:712
2435
  msgid "Email"
2436
  msgstr ""
2437
 
2438
+ #: ../inc/social_login.php:713
2439
  msgid "Confirm email"
2440
  msgstr ""
2441
 
2442
+ #: ../inc/social_login.php:715
2443
  msgid "Save"
2444
  msgstr ""
2445
 
2446
+ #: ../inc/social_login.php:716
2447
  msgid "Cancel"
2448
  msgstr ""
2449
 
2450
+ #: ../inc/social_login.php:790
2451
  msgid "Email Verification"
2452
  msgstr ""
2453
 
2454
+ #: ../inc/social_login.php:792
2455
  msgid ""
2456
  "Please click on the following link or paste it in browser to verify your "
2457
  "email"
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, Twitch login
5
  Requires at least: 2.5.0
6
  Tested up to: 4.9.6
7
- Stable tag: 7.11.12
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
@@ -210,6 +210,13 @@ Yes, we can help you with it. Just drop an email at support[ at ]heateor[ dot ]c
210
  8. **Social Commenting**: Disqus Commenting selected
211
 
212
  == Changelog ==
 
 
 
 
 
 
 
213
  = 7.11.12 =
214
  * [Improvement] Compatible with GDPR
215
  * [New] Added option to delete social profile data saved in usermeta after social login
@@ -1542,4 +1549,11 @@ Yes, we can help you with it. Just drop an email at support[ at ]heateor[ dot ]c
1542
  = 7.11.12 =
1543
  * [Improvement] Compatible with GDPR
1544
  * [New] Added option to delete social profile data saved in usermeta after social login
1545
- * [Bugfix] Admin UI code improvement
 
 
 
 
 
 
 
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, Twitch login
5
  Requires at least: 2.5.0
6
  Tested up to: 4.9.6
7
+ Stable tag: 7.11.13
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
210
  8. **Social Commenting**: Disqus Commenting selected
211
 
212
  == Changelog ==
213
+ = 7.11.13 =
214
+ * [New] Added option to turn OFF GDPR opt-in for social login
215
+ * [Bugfix] GDPR opt-in was not appearing for social account linking icons
216
+ * [Bugfix] Users were able to social-login with opt-in unchecked with <a href="https://www.heateor.com/social-login-buttons" target="_blank">Social Login Buttons</a> add-on active
217
+ * [Improvement] Code improvement
218
+ * [Improvement] Compatibility with version 1.1.7 of <a href="https://www.heateor.com/facebook-comments-notifier/" target="_blank">Facebook Comments Notifier</a> and version 1.2.5 of <a href="https://www.heateor.com/facebook-comments-moderation/" target="_blank">Facebook Comments Moderation</a>
219
+
220
  = 7.11.12 =
221
  * [Improvement] Compatible with GDPR
222
  * [New] Added option to delete social profile data saved in usermeta after social login
1549
  = 7.11.12 =
1550
  * [Improvement] Compatible with GDPR
1551
  * [New] Added option to delete social profile data saved in usermeta after social login
1552
+ * [Bugfix] Admin UI code improvement
1553
+
1554
+ = 7.11.13 =
1555
+ * [New] Added option to turn OFF GDPR opt-in for social login
1556
+ * [Bugfix] GDPR opt-in was not appearing for social account linking icons
1557
+ * [Bugfix] Users were able to social-login with opt-in unchecked with <a href="https://www.heateor.com/social-login-buttons" target="_blank">Social Login Buttons</a> add-on active
1558
+ * [Improvement] Code improvement
1559
+ * [Improvement] Compatibility with version 1.1.7 of <a href="https://www.heateor.com/facebook-comments-notifier/" target="_blank">Facebook Comments Notifier</a> and version 1.2.5 of <a href="https://www.heateor.com/facebook-comments-moderation/" target="_blank">Facebook Comments Moderation</a>
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.12
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.12');
15
 
16
  require 'helper.php';
17
 
@@ -475,31 +475,33 @@ function the_champ_connect(){
475
  }
476
  if(isset($_GET['code']) && isset($_GET['state'])){
477
  //Authenticate code from Google OAuth Flow
478
- $googleClient->authenticate($_GET['code']);
479
- $accessTokenStr = $googleClient->getAccessToken();
480
- if($accessTokenStr){
481
- $userData = $objOAuthService->userinfo->get();
482
- if(is_object($userData) && isset($userData -> id)){
483
- $profileData = the_champ_sanitize_profile_data($userData, 'google');
484
- if(isset($_GET['heateorMSEnabled'])){
485
- $profileData['mc_subscribe'] = 1;
486
- }
487
- $googleRedirectUrl = isset($_GET['state']) ? esc_url(trim($_GET['state'])) : home_url();
488
- $response = the_champ_user_auth($profileData, 'google', $googleRedirectUrl);
489
- if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
490
- $redirectTo = the_champ_get_login_redirection_url($googleRedirectUrl, true);
491
- }elseif(isset($response['message']) && $response['message'] == 'linked'){
492
- $redirectTo = $googleRedirectUrl . (strpos($googleRedirectUrl, '?') !== false ? '&' : '?') . 'linked=1';
493
- }elseif(isset($response['message']) && $response['message'] == 'not linked'){
494
- $redirectTo = $googleRedirectUrl . (strpos($googleRedirectUrl, '?') !== false ? '&' : '?') . 'linked=0';
495
- }elseif(isset($response['url']) && $response['url'] != ''){
496
- $redirectTo = $response['url'];
497
- }else{
498
- $redirectTo = the_champ_get_login_redirection_url($googleRedirectUrl);
499
- }
500
- the_champ_close_login_popup($redirectTo);
501
- }
502
- }
 
 
503
  }
504
  // Vkontakte
505
  if((isset($_GET['SuperSocializerAuth']) && sanitize_text_field($_GET['SuperSocializerAuth']) == 'Vkontakte') || (isset($_GET['code']) && !isset($_GET['SuperSocializerAuth']))){
@@ -954,14 +956,14 @@ function the_champ_frontend_scripts(){
954
  $labels['fb'] .= ' (<fb:comments-count href='. $commentUrl .'></fb:comments-count>)';
955
  $labels['googleplus'] = $theChampFacebookOptions['label_googleplus_comments'] != '' ? htmlspecialchars($theChampFacebookOptions['label_googleplus_comments'], ENT_QUOTES) : 'GooglePlus Comments';
956
  $labels['disqus'] = $theChampFacebookOptions['label_disqus_comments'] != '' ? htmlspecialchars($theChampFacebookOptions['label_disqus_comments'], ENT_QUOTES) : 'Disqus Comments';
957
- if(defined('HEATEOR_FB_COM_MOD_VERSION') && version_compare('1.2.3', HEATEOR_FB_COM_MOD_VERSION) < 0){
958
- global $heateor_fcm_options;
959
  ?>
960
  <script type="text/javascript">var theChampFacebookCommentsOptinText = '<?php echo str_replace($heateor_fcm_options['ppu_placeholder'], '<a href="'. $heateor_fcm_options['privacy_policy_url'] .'" target="_blank">'. $heateor_fcm_options['ppu_placeholder'] .'</a>', wp_strip_all_tags($heateor_fcm_options['privacy_policy_optin_text'])) ?>';</script>
961
  <?php
962
  }
963
- if(defined('HEATEOR_FB_COM_NOT_VERSION') && version_compare('1.1.5', HEATEOR_FB_COM_NOT_VERSION) < 0){
964
- global $heateor_fcn_options;
965
  ?>
966
  <script type="text/javascript">var theChampFacebookCommentsNotifierOptinText = '<?php echo str_replace($heateor_fcn_options['ppu_placeholder'], '<a href="'. $heateor_fcn_options['privacy_policy_url'] .'" target="_blank">'. $heateor_fcn_options['ppu_placeholder'] .'</a>', wp_strip_all_tags($heateor_fcn_options['privacy_policy_optin_text'])) ?>';</script>
967
  <?php
@@ -1395,6 +1397,7 @@ function the_champ_save_default_options(){
1395
  'enableAtRegister' => 1,
1396
  'enableAtComment' => 1,
1397
  'link_account' => 1,
 
1398
  'privacy_policy_url' => '',
1399
  'privacy_policy_optin_text' => 'I agree to my personal data being stored and used as per Privacy Policy',
1400
  'ppu_placeholder' => 'Privacy Policy'
@@ -1590,7 +1593,7 @@ add_action('wp_ajax_heateor_ss_google_redirection_notification_read', 'heateor_s
1590
  function the_champ_addon_update_notification(){
1591
  if(current_user_can('manage_options')){
1592
  global $theChampLoginOptions;
1593
- if(defined('HEATEOR_FB_COM_MOD_VERSION') && version_compare('1.2.4', HEATEOR_FB_COM_MOD_VERSION) > 0){
1594
  ?>
1595
  <div class="error notice">
1596
  <h3>Facebook Comments Moderation</h3>
@@ -1599,7 +1602,7 @@ function the_champ_addon_update_notification(){
1599
  <?php
1600
  }
1601
 
1602
- if(defined('HEATEOR_FB_COM_NOT_VERSION') && version_compare('1.1.6', HEATEOR_FB_COM_NOT_VERSION) > 0){
1603
  ?>
1604
  <div class="error notice">
1605
  <h3>Facebook Comments Notifier</h3>
@@ -1608,7 +1611,7 @@ function the_champ_addon_update_notification(){
1608
  <?php
1609
  }
1610
 
1611
- if(defined('HEATEOR_SOCIAL_LOGIN_BUTTONS_VERSION') && version_compare('1.1.1', HEATEOR_SOCIAL_LOGIN_BUTTONS_VERSION) > 0){
1612
  ?>
1613
  <div class="error notice">
1614
  <h3>Social Login Buttons</h3>
@@ -1811,6 +1814,12 @@ function the_champ_update_db_check(){
1811
  $currentVersion = get_option('the_champ_ss_version');
1812
 
1813
  if($currentVersion && $currentVersion != THE_CHAMP_SS_VERSION){
 
 
 
 
 
 
1814
  if(version_compare("7.11.12", $currentVersion) > 0){
1815
  global $theChampLoginOptions;
1816
  $theChampLoginOptions['privacy_policy_optin_text'] = 'I agree to my personal data being stored and used as per Privacy Policy';
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.13
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.13');
15
 
16
  require 'helper.php';
17
 
475
  }
476
  if(isset($_GET['code']) && isset($_GET['state'])){
477
  //Authenticate code from Google OAuth Flow
478
+ if(is_object($googleClient)){
479
+ $googleClient->authenticate($_GET['code']);
480
+ $accessTokenStr = $googleClient->getAccessToken();
481
+ if($accessTokenStr){
482
+ $userData = $objOAuthService->userinfo->get();
483
+ if(is_object($userData) && isset($userData -> id)){
484
+ $profileData = the_champ_sanitize_profile_data($userData, 'google');
485
+ if(isset($_GET['heateorMSEnabled'])){
486
+ $profileData['mc_subscribe'] = 1;
487
+ }
488
+ $googleRedirectUrl = isset($_GET['state']) ? esc_url(trim($_GET['state'])) : home_url();
489
+ $response = the_champ_user_auth($profileData, 'google', $googleRedirectUrl);
490
+ if(is_array($response) && isset($response['message']) && $response['message'] == 'register' && (!isset($response['url']) || $response['url'] == '')){
491
+ $redirectTo = the_champ_get_login_redirection_url($googleRedirectUrl, true);
492
+ }elseif(isset($response['message']) && $response['message'] == 'linked'){
493
+ $redirectTo = $googleRedirectUrl . (strpos($googleRedirectUrl, '?') !== false ? '&' : '?') . 'linked=1';
494
+ }elseif(isset($response['message']) && $response['message'] == 'not linked'){
495
+ $redirectTo = $googleRedirectUrl . (strpos($googleRedirectUrl, '?') !== false ? '&' : '?') . 'linked=0';
496
+ }elseif(isset($response['url']) && $response['url'] != ''){
497
+ $redirectTo = $response['url'];
498
+ }else{
499
+ $redirectTo = the_champ_get_login_redirection_url($googleRedirectUrl);
500
+ }
501
+ the_champ_close_login_popup($redirectTo);
502
+ }
503
+ }
504
+ }
505
  }
506
  // Vkontakte
507
  if((isset($_GET['SuperSocializerAuth']) && sanitize_text_field($_GET['SuperSocializerAuth']) == 'Vkontakte') || (isset($_GET['code']) && !isset($_GET['SuperSocializerAuth']))){
956
  $labels['fb'] .= ' (<fb:comments-count href='. $commentUrl .'></fb:comments-count>)';
957
  $labels['googleplus'] = $theChampFacebookOptions['label_googleplus_comments'] != '' ? htmlspecialchars($theChampFacebookOptions['label_googleplus_comments'], ENT_QUOTES) : 'GooglePlus Comments';
958
  $labels['disqus'] = $theChampFacebookOptions['label_disqus_comments'] != '' ? htmlspecialchars($theChampFacebookOptions['label_disqus_comments'], ENT_QUOTES) : 'Disqus Comments';
959
+ global $heateor_fcm_options;
960
+ if(defined('HEATEOR_FB_COM_MOD_VERSION') && version_compare('1.2.4', HEATEOR_FB_COM_MOD_VERSION) < 0 && isset($heateor_fcm_options['gdpr_enable'])){
961
  ?>
962
  <script type="text/javascript">var theChampFacebookCommentsOptinText = '<?php echo str_replace($heateor_fcm_options['ppu_placeholder'], '<a href="'. $heateor_fcm_options['privacy_policy_url'] .'" target="_blank">'. $heateor_fcm_options['ppu_placeholder'] .'</a>', wp_strip_all_tags($heateor_fcm_options['privacy_policy_optin_text'])) ?>';</script>
963
  <?php
964
  }
965
+ global $heateor_fcn_options;
966
+ if(defined('HEATEOR_FB_COM_NOT_VERSION') && version_compare('1.1.6', HEATEOR_FB_COM_NOT_VERSION) < 0 && isset($heateor_fcn_options['gdpr_enable'])){
967
  ?>
968
  <script type="text/javascript">var theChampFacebookCommentsNotifierOptinText = '<?php echo str_replace($heateor_fcn_options['ppu_placeholder'], '<a href="'. $heateor_fcn_options['privacy_policy_url'] .'" target="_blank">'. $heateor_fcn_options['ppu_placeholder'] .'</a>', wp_strip_all_tags($heateor_fcn_options['privacy_policy_optin_text'])) ?>';</script>
969
  <?php
1397
  'enableAtRegister' => 1,
1398
  'enableAtComment' => 1,
1399
  'link_account' => 1,
1400
+ 'gdpr_enable' => 1,
1401
  'privacy_policy_url' => '',
1402
  'privacy_policy_optin_text' => 'I agree to my personal data being stored and used as per Privacy Policy',
1403
  'ppu_placeholder' => 'Privacy Policy'
1593
  function the_champ_addon_update_notification(){
1594
  if(current_user_can('manage_options')){
1595
  global $theChampLoginOptions;
1596
+ if(defined('HEATEOR_FB_COM_MOD_VERSION') && version_compare('1.2.5', HEATEOR_FB_COM_MOD_VERSION) > 0){
1597
  ?>
1598
  <div class="error notice">
1599
  <h3>Facebook Comments Moderation</h3>
1602
  <?php
1603
  }
1604
 
1605
+ if(defined('HEATEOR_FB_COM_NOT_VERSION') && version_compare('1.1.7', HEATEOR_FB_COM_NOT_VERSION) > 0){
1606
  ?>
1607
  <div class="error notice">
1608
  <h3>Facebook Comments Notifier</h3>
1611
  <?php
1612
  }
1613
 
1614
+ if(defined('HEATEOR_SOCIAL_LOGIN_BUTTONS_VERSION') && version_compare('1.1.2', HEATEOR_SOCIAL_LOGIN_BUTTONS_VERSION) > 0){
1615
  ?>
1616
  <div class="error notice">
1617
  <h3>Social Login Buttons</h3>
1814
  $currentVersion = get_option('the_champ_ss_version');
1815
 
1816
  if($currentVersion && $currentVersion != THE_CHAMP_SS_VERSION){
1817
+ if(version_compare("7.11.13", $currentVersion) > 0){
1818
+ global $theChampLoginOptions;
1819
+ $theChampLoginOptions['gdpr_enable'] = 1;
1820
+ update_option('the_champ_login', $theChampLoginOptions);
1821
+ }
1822
+
1823
  if(version_compare("7.11.12", $currentVersion) > 0){
1824
  global $theChampLoginOptions;
1825
  $theChampLoginOptions['privacy_policy_optin_text'] = 'I agree to my personal data being stored and used as per Privacy Policy';