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

Version Description

  • [Bugfix] Google login stopped working due to some changes in Google OAuth process
  • [Bugfix] Facebook login window was needed to be streched to see the content inside, in a few cases
  • [Bugfix] Short url option was not working for Copy Link icon
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.8
Comparing to
See all releases

Code changes from version 7.11.7 to 7.11.8

js/front/combined.js CHANGED
@@ -1,6 +1,6 @@
1
  theChampFBKey = typeof theChampFBKey != 'undefined' ? theChampFBKey : '', theChampFBLang = typeof theChampFBLang != 'undefined' ? theChampFBLang : 'en_US', theChampFbIosLogin = typeof theChampFbIosLogin != 'undefined' ? theChampFbIosLogin : 0;
2
  // general.js
3
- function theChampPopup(e){window.open(e,"_blank","height=420,width=700,left=350,top=80,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}function theChampStrReplace(e,t,n){for(var r=0;r<e.length;r++){n=n.replace(new RegExp(e[r],"g"),t[r])}return n}function theChampCallAjax(e){if(typeof jQuery!="undefined"){e()}else{theChampGetScript("https://code.jquery.com/jquery-latest.min.js",e)}}function theChampGetScript(e,t){var n=document.createElement("script");n.src=e;var r=document.getElementsByTagName("head")[0],i=false;n.onload=n.onreadystatechange=function(){if(!i&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){i=true;t();n.onload=n.onreadystatechange=null;r.removeChild(n)}};r.appendChild(n)}function theChampGetElementsByClass(e,t){if(e.getElementsByClassName){return e.getElementsByClassName(t)}else{return function(e,t){if(t==null){t=document}var n=[],r=t.getElementsByTagName("*"),i=r.length,s=new RegExp("(^|\\s)"+e+"(\\s|$)"),o,u;for(o=0,u=0;o<i;o++){if(s.test(r[o].className)){n[u]=r[o];u++}}return n}(t,e)}}if(typeof String.prototype.trim!=="function"){String.prototype.trim=function(){return this.replace(/^\s+|\s+$/g,"")}}
4
  function heateorSsBrowserMsg(){var a=document.createElement("div");a.innerHTML='<button id="heateor_ss_browser_msg_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;"><p>'+heateorSsSDKBlockedMsg+"</p></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_browser_popup_bg"),jQuery("body").append(a).append(b),document.getElementById("heateor_ss_browser_popup_bg").onclick=document.getElementById("heateor_ss_browser_msg_close").onclick=function(){a.parentNode.removeChild(a),b.parentNode.removeChild(b)}}
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)}}
@@ -62,6 +62,7 @@ function theChampRenderFBCommenting(){var e='';if(typeof theChampCommentingId !=
62
  * Show more sharing services popup
63
  */
64
  function theChampMoreSharingPopup(elem, postUrl, postTitle, twitterTitle){
 
65
  postUrl = encodeURIComponent(postUrl);
66
  concate = '</ul></div><div class="footer-panel"><p></p></div></div>';
67
  var theChampMoreSharingServices = {
@@ -622,7 +623,7 @@ function theChampMoreSharingPopup(elem, postUrl, postTitle, twitterTitle){
622
  redirect_url: "//youmob.com/startmob.aspx?cookietest=true&mob=" + postUrl,
623
  }
624
  }
625
- var theChampMoreSharingServicesHtml = '<button id="the_champ_sharing_popup_close" class="close-button separated"><img src="'+ theChampCloseIconPath +'" /></button><div id="the_champ_sharing_more_content" data-href="'+ decodeURIComponent(postUrl) +'"><div class="filter"><input type="text" onkeyup="theChampFilterSharing(this.value.trim())" placeholder="Search" class="search"></div><div class="all-services"><ul class="mini">';
626
  for(var i in theChampMoreSharingServices){
627
  var tempTitle = theChampCapitaliseFirstLetter(theChampMoreSharingServices[i].title.replace(/[_. ]/g, ""));
628
  theChampMoreSharingServicesHtml += '<li><a rel="nofollow" class="theChamp'+i+'Share" title="'+ theChampMoreSharingServices[i].title +'" alt="'+ theChampMoreSharingServices[i].title +'" ';
@@ -897,6 +898,11 @@ jQuery(function(){
897
  }else if(jQuery(trigger).hasClass('theChampCopyLinkSvg')){
898
  var element = trigger.parentElement.parentElement.parentElement.parentElement;
899
  var url = jQuery(element).attr("super-socializer-data-href") || "";
 
 
 
 
 
900
  if(!url){
901
  var element = trigger.parentElement.parentElement.parentElement.parentElement.parentElement.parentElement;
902
  var url = jQuery(element).attr("data-href") || "";
1
  theChampFBKey = typeof theChampFBKey != 'undefined' ? theChampFBKey : '', theChampFBLang = typeof theChampFBLang != 'undefined' ? theChampFBLang : 'en_US', theChampFbIosLogin = typeof theChampFbIosLogin != 'undefined' ? theChampFbIosLogin : 0;
2
  // general.js
3
+ function theChampPopup(e){window.open(e,"_blank","height=520,width=770,left=315,top=80,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}function theChampStrReplace(e,t,n){for(var r=0;r<e.length;r++){n=n.replace(new RegExp(e[r],"g"),t[r])}return n}function theChampCallAjax(e){if(typeof jQuery!="undefined"){e()}else{theChampGetScript("https://code.jquery.com/jquery-latest.min.js",e)}}function theChampGetScript(e,t){var n=document.createElement("script");n.src=e;var r=document.getElementsByTagName("head")[0],i=false;n.onload=n.onreadystatechange=function(){if(!i&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){i=true;t();n.onload=n.onreadystatechange=null;r.removeChild(n)}};r.appendChild(n)}function theChampGetElementsByClass(e,t){if(e.getElementsByClassName){return e.getElementsByClassName(t)}else{return function(e,t){if(t==null){t=document}var n=[],r=t.getElementsByTagName("*"),i=r.length,s=new RegExp("(^|\\s)"+e+"(\\s|$)"),o,u;for(o=0,u=0;o<i;o++){if(s.test(r[o].className)){n[u]=r[o];u++}}return n}(t,e)}}if(typeof String.prototype.trim!=="function"){String.prototype.trim=function(){return this.replace(/^\s+|\s+$/g,"")}}
4
  function heateorSsBrowserMsg(){var a=document.createElement("div");a.innerHTML='<button id="heateor_ss_browser_msg_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;"><p>'+heateorSsSDKBlockedMsg+"</p></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_browser_popup_bg"),jQuery("body").append(a).append(b),document.getElementById("heateor_ss_browser_popup_bg").onclick=document.getElementById("heateor_ss_browser_msg_close").onclick=function(){a.parentNode.removeChild(a),b.parentNode.removeChild(b)}}
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)}}
62
  * Show more sharing services popup
63
  */
64
  function theChampMoreSharingPopup(elem, postUrl, postTitle, twitterTitle){
65
+ var shareContainer = elem.parentElement.parentElement.parentElement;
66
  postUrl = encodeURIComponent(postUrl);
67
  concate = '</ul></div><div class="footer-panel"><p></p></div></div>';
68
  var theChampMoreSharingServices = {
623
  redirect_url: "//youmob.com/startmob.aspx?cookietest=true&mob=" + postUrl,
624
  }
625
  }
626
+ var theChampMoreSharingServicesHtml = '<button id="the_champ_sharing_popup_close" class="close-button separated"><img src="'+ theChampCloseIconPath +'" /></button><div id="the_champ_sharing_more_content" data-href="'+ decodeURIComponent(shareContainer.getAttribute('class').indexOf('the_champ_horizontal_sharing') != -1 ? heateorSsHorSharingShortUrl : heateorSsVerticalSharingShortUrl) +'"><div class="filter"><input type="text" onkeyup="theChampFilterSharing(this.value.trim())" placeholder="Search" class="search"></div><div class="all-services"><ul class="mini">';
627
  for(var i in theChampMoreSharingServices){
628
  var tempTitle = theChampCapitaliseFirstLetter(theChampMoreSharingServices[i].title.replace(/[_. ]/g, ""));
629
  theChampMoreSharingServicesHtml += '<li><a rel="nofollow" class="theChamp'+i+'Share" title="'+ theChampMoreSharingServices[i].title +'" alt="'+ theChampMoreSharingServices[i].title +'" ';
898
  }else if(jQuery(trigger).hasClass('theChampCopyLinkSvg')){
899
  var element = trigger.parentElement.parentElement.parentElement.parentElement;
900
  var url = jQuery(element).attr("super-socializer-data-href") || "";
901
+ if(jQuery(element).hasClass('the_champ_horizontal_sharing') && typeof heateorSsHorSharingShortUrl != undefined){
902
+ var url = heateorSsHorSharingShortUrl;
903
+ }else if(jQuery(element).hasClass('the_champ_vertical_sharing') && typeof heateorSsVerticalSharingShortUrl != undefined){
904
+ var url = heateorSsVerticalSharingShortUrl;
905
+ }
906
  if(!url){
907
  var element = trigger.parentElement.parentElement.parentElement.parentElement.parentElement.parentElement;
908
  var url = jQuery(element).attr("data-href") || "";
js/front/sharing/sharing.js CHANGED
@@ -2,6 +2,7 @@
2
  * Show more sharing services popup
3
  */
4
  function theChampMoreSharingPopup(elem, postUrl, postTitle, twitterTitle){
 
5
  postUrl = encodeURIComponent(postUrl);
6
  concate = '</ul></div><div class="footer-panel"><p></p></div></div>';
7
  var theChampMoreSharingServices = {
@@ -562,7 +563,7 @@ function theChampMoreSharingPopup(elem, postUrl, postTitle, twitterTitle){
562
  redirect_url: "//youmob.com/startmob.aspx?cookietest=true&mob=" + postUrl,
563
  }
564
  }
565
- var theChampMoreSharingServicesHtml = '<button id="the_champ_sharing_popup_close" class="close-button separated"><img src="'+ theChampCloseIconPath +'" /></button><div id="the_champ_sharing_more_content" data-href="'+ decodeURIComponent(postUrl) +'"><div class="filter"><input type="text" onkeyup="theChampFilterSharing(this.value.trim())" placeholder="Search" class="search"></div><div class="all-services"><ul class="mini">';
566
  for(var i in theChampMoreSharingServices){
567
  var tempTitle = theChampCapitaliseFirstLetter(theChampMoreSharingServices[i].title.replace(/[_. ]/g, ""));
568
  theChampMoreSharingServicesHtml += '<li><a rel="nofollow" class="theChamp'+i+'Share" title="'+ theChampMoreSharingServices[i].title +'" alt="'+ theChampMoreSharingServices[i].title +'" ';
@@ -837,6 +838,11 @@ jQuery(function(){
837
  }else if(jQuery(trigger).hasClass('theChampCopyLinkSvg')){
838
  var element = trigger.parentElement.parentElement.parentElement.parentElement;
839
  var url = jQuery(element).attr("super-socializer-data-href") || "";
 
 
 
 
 
840
  if(!url){
841
  var element = trigger.parentElement.parentElement.parentElement.parentElement.parentElement.parentElement;
842
  var url = jQuery(element).attr("data-href") || "";
2
  * Show more sharing services popup
3
  */
4
  function theChampMoreSharingPopup(elem, postUrl, postTitle, twitterTitle){
5
+ var shareContainer = elem.parentElement.parentElement.parentElement;
6
  postUrl = encodeURIComponent(postUrl);
7
  concate = '</ul></div><div class="footer-panel"><p></p></div></div>';
8
  var theChampMoreSharingServices = {
563
  redirect_url: "//youmob.com/startmob.aspx?cookietest=true&mob=" + postUrl,
564
  }
565
  }
566
+ var theChampMoreSharingServicesHtml = '<button id="the_champ_sharing_popup_close" class="close-button separated"><img src="'+ theChampCloseIconPath +'" /></button><div id="the_champ_sharing_more_content" data-href="'+ decodeURIComponent(shareContainer.getAttribute('class').indexOf('the_champ_horizontal_sharing') != -1 ? heateorSsHorSharingShortUrl : heateorSsVerticalSharingShortUrl) +'"><div class="filter"><input type="text" onkeyup="theChampFilterSharing(this.value.trim())" placeholder="Search" class="search"></div><div class="all-services"><ul class="mini">';
567
  for(var i in theChampMoreSharingServices){
568
  var tempTitle = theChampCapitaliseFirstLetter(theChampMoreSharingServices[i].title.replace(/[_. ]/g, ""));
569
  theChampMoreSharingServicesHtml += '<li><a rel="nofollow" class="theChamp'+i+'Share" title="'+ theChampMoreSharingServices[i].title +'" alt="'+ theChampMoreSharingServices[i].title +'" ';
838
  }else if(jQuery(trigger).hasClass('theChampCopyLinkSvg')){
839
  var element = trigger.parentElement.parentElement.parentElement.parentElement;
840
  var url = jQuery(element).attr("super-socializer-data-href") || "";
841
+ if(jQuery(element).hasClass('the_champ_horizontal_sharing') && typeof heateorSsHorSharingShortUrl != undefined){
842
+ var url = heateorSsHorSharingShortUrl;
843
+ }else if(jQuery(element).hasClass('the_champ_vertical_sharing') && typeof heateorSsVerticalSharingShortUrl != undefined){
844
+ var url = heateorSsVerticalSharingShortUrl;
845
+ }
846
  if(!url){
847
  var element = trigger.parentElement.parentElement.parentElement.parentElement.parentElement.parentElement;
848
  var url = jQuery(element).attr("data-href") || "";
js/front/social_login/general.js CHANGED
@@ -1,4 +1,4 @@
1
- function theChampPopup(e){window.open(e,"_blank","height=420,width=700,left=350,top=80,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}function theChampStrReplace(e,t,n){for(var r=0;r<e.length;r++){n=n.replace(new RegExp(e[r],"g"),t[r])}return n}function theChampCallAjax(e){if(typeof jQuery!="undefined"){e()}else{theChampGetScript("https://code.jquery.com/jquery-latest.min.js",e)}}function theChampGetScript(e,t){var n=document.createElement("script");n.src=e;var r=document.getElementsByTagName("head")[0],i=false;n.onload=n.onreadystatechange=function(){if(!i&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){i=true;t();n.onload=n.onreadystatechange=null;r.removeChild(n)}};r.appendChild(n)}function theChampGetElementsByClass(e,t){if(e.getElementsByClassName){return e.getElementsByClassName(t)}else{return function(e,t){if(t==null){t=document}var n=[],r=t.getElementsByTagName("*"),i=r.length,s=new RegExp("(^|\\s)"+e+"(\\s|$)"),o,u;for(o=0,u=0;o<i;o++){if(s.test(r[o].className)){n[u]=r[o];u++}}return n}(t,e)}}if(typeof String.prototype.trim!=="function"){String.prototype.trim=function(){return this.replace(/^\s+|\s+$/g,"")}}
2
  function heateorSsBrowserMsg(){var a=document.createElement("div");a.innerHTML='<button id="heateor_ss_browser_msg_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;"><p>'+heateorSsSDKBlockedMsg+"</p></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_browser_popup_bg"),jQuery("body").append(a).append(b),document.getElementById("heateor_ss_browser_popup_bg").onclick=document.getElementById("heateor_ss_browser_msg_close").onclick=function(){a.parentNode.removeChild(a),b.parentNode.removeChild(b)}}
3
  "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"))});
4
  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)}}
1
+ function theChampPopup(e){window.open(e,"_blank","height=520,width=770,left=315,top=80,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}function theChampStrReplace(e,t,n){for(var r=0;r<e.length;r++){n=n.replace(new RegExp(e[r],"g"),t[r])}return n}function theChampCallAjax(e){if(typeof jQuery!="undefined"){e()}else{theChampGetScript("https://code.jquery.com/jquery-latest.min.js",e)}}function theChampGetScript(e,t){var n=document.createElement("script");n.src=e;var r=document.getElementsByTagName("head")[0],i=false;n.onload=n.onreadystatechange=function(){if(!i&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){i=true;t();n.onload=n.onreadystatechange=null;r.removeChild(n)}};r.appendChild(n)}function theChampGetElementsByClass(e,t){if(e.getElementsByClassName){return e.getElementsByClassName(t)}else{return function(e,t){if(t==null){t=document}var n=[],r=t.getElementsByTagName("*"),i=r.length,s=new RegExp("(^|\\s)"+e+"(\\s|$)"),o,u;for(o=0,u=0;o<i;o++){if(s.test(r[o].className)){n[u]=r[o];u++}}return n}(t,e)}}if(typeof String.prototype.trim!=="function"){String.prototype.trim=function(){return this.replace(/^\s+|\s+$/g,"")}}
2
  function heateorSsBrowserMsg(){var a=document.createElement("div");a.innerHTML='<button id="heateor_ss_browser_msg_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;"><p>'+heateorSsSDKBlockedMsg+"</p></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_browser_popup_bg"),jQuery("body").append(a).append(b),document.getElementById("heateor_ss_browser_popup_bg").onclick=document.getElementById("heateor_ss_browser_msg_close").onclick=function(){a.parentNode.removeChild(a),b.parentNode.removeChild(b)}}
3
  "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"))});
4
  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)}}
languages/super-socializer-ar_AR.mo CHANGED
Binary file
languages/super-socializer-ar_AR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-03-25 15:07+0530\n"
6
- "PO-Revision-Date: 2018-03-25 15:08+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <support@heateor.com>\n"
9
  "Language: ar\n"
@@ -15,15 +15,19 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
- #: ../super_socializer.php:390 ../super_socializer.php:404
 
 
 
 
19
  msgid "Facebook SDK returned an error: "
20
  msgstr ""
21
 
22
- #: ../super_socializer.php:400
23
  msgid "Graph returned an error: "
24
  msgstr ""
25
 
26
- #: ../super_socializer.php:563
27
  #, fuzzy
28
  msgid ""
29
  "cURL is not enabled at your website server. Please contact your website "
@@ -32,7 +36,7 @@ msgstr ""
32
  "يتم تمكين جعل الضفيرة متأكدا في الخادم موقع الويب الخاص بك. قد تحتاج إلى "
33
  "الاتصال بمسؤول الملقم من موقع الويب الخاص بك للتحقق من ذلك"
34
 
35
- #: ../super_socializer.php:590
36
  #, php-format
37
  msgid ""
38
  "Enter exactly the following url in <strong>Website</strong> and "
@@ -41,7 +45,7 @@ msgstr ""
41
  "أدخل بالضبط العنوان التالي في <strong>الموقع واستدعاء رابط</strong> الخيارات "
42
  "في تويتر التطبيق الخاص بك (راجع الخطوة 3 %s )"
43
 
44
- #: ../super_socializer.php:593
45
  msgid ""
46
  "Make sure cURL is enabled at your website server. You may need to contact "
47
  "the server administrator of your website to verify this"
@@ -49,119 +53,119 @@ msgstr ""
49
  "يتم تمكين جعل الضفيرة متأكدا في الخادم موقع الويب الخاص بك. قد تحتاج إلى "
50
  "الاتصال بمسؤول الملقم من موقع الويب الخاص بك للتحقق من ذلك"
51
 
52
- #: ../super_socializer.php:594
53
  #, php-format
54
  msgid ""
55
  "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
56
  msgstr ""
57
 
58
- #: ../super_socializer.php:860 ../helper.php:963
59
  msgid "Please verify your email address to login."
60
  msgstr "يرجى التحقق من عنوان البريد الإلكتروني الخاص بك للدخول."
61
 
62
- #: ../super_socializer.php:860
63
  msgid "Your email has been verified. Now you can login to your account"
64
  msgstr "تم التحقق من بريدك الإلكتروني. الآن يمكنك تسجيل الدخول إلى حسابك"
65
 
66
- #: ../super_socializer.php:864
67
  msgid "Notification"
68
  msgstr "تنبيهات"
69
 
70
- #: ../super_socializer.php:882 ../admin/social_login.php:755
71
  msgid "Email required"
72
  msgstr "البريد الإلكتروني - إدخال القيمة إجباري"
73
 
74
- #: ../super_socializer.php:885
75
  msgid "Please check your email inbox to complete the registration."
76
  msgstr "يرجى التحقق من بريدك الالكتروني لإكمال التسجيل."
77
 
78
- #: ../super_socializer.php:892 ../helper.php:503
79
  msgid "Enter your LiveJournal username"
80
  msgstr ""
81
 
82
- #: ../super_socializer.php:954
83
  msgid "Leave a reply"
84
  msgstr "اترك رد"
85
 
86
- #: ../super_socializer.php:966 ../inc/social_sharing.php:233
87
  msgid "Shares"
88
  msgstr ""
89
 
90
- #: ../super_socializer.php:966 ../inc/social_sharing.php:233
91
  msgid "Share"
92
  msgstr ""
93
 
94
- #: ../super_socializer.php:966
95
  #, fuzzy
96
  msgid "Link copied."
97
  msgstr "شارك الأخرين عبر لنكيدان"
98
 
99
- #: ../super_socializer.php:1153
100
  #, fuzzy
101
  msgid "Super Socializer - General Options"
102
  msgstr "آخر تسجيل دخول | Last Login"
103
 
104
- #: ../super_socializer.php:1153 ../admin/general_options.php:11
105
  #: ../admin/social_commenting.php:43
106
  #, fuzzy
107
  msgid "General Options"
108
  msgstr "المشاركات الأفقي"
109
 
110
- #: ../super_socializer.php:1221 ../helper.php:885
111
  #, fuzzy
112
  msgid "Social Avatar"
113
  msgstr "صغير الرمزية رابط"
114
 
115
- #: ../super_socializer.php:1224
116
  msgid "Small Avatar Url"
117
  msgstr "صغير الرمزية رابط"
118
 
119
- #: ../super_socializer.php:1228
120
  #, fuzzy
121
  msgid "Large Avatar Url"
122
  msgstr "الرابط المصدر و الرابط الهدف لا يمكن أن يكونا متطابقين."
123
 
124
- #: ../super_socializer.php:1232 ../helper.php:888
125
  msgid ""
126
  "Do not fetch and update social avatar from my profile, next time I Social "
127
  "Login"
128
  msgstr ""
129
 
130
- #: ../super_socializer.php:1236 ../helper.php:889
131
  msgid "Update social avatar, next time I Social Login"
132
  msgstr ""
133
 
134
- #: ../super_socializer.php:1309 ../super_socializer.php:1692
135
  msgid ""
136
  "Your browser is blocking some features of this website. Please follow the "
137
  "instructions at {support_url} to unblock these."
138
  msgstr ""
139
 
140
- #: ../super_socializer.php:1315
141
  msgid "Login with your Social ID"
142
  msgstr ""
143
 
144
- #: ../super_socializer.php:1316
145
  msgid "Email you entered is already registered or invalid"
146
  msgstr "البريد الإلكتروني الذي أدخلته غير مسجل من قبل أو غير صالحة"
147
 
148
- #: ../super_socializer.php:1321
149
  msgid "Please enter a valid email address. You might be required to verify it"
150
  msgstr "يرجى إدخال عنوان بريد إلكتروني صالح. قد تكون هناك حاجة للتحقق من ذلك"
151
 
152
- #: ../super_socializer.php:1540
153
  #, php-format
154
  msgid ""
155
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
156
  msgstr ""
157
 
158
- #: ../super_socializer.php:1556
159
  #, php-format
160
  msgid ""
161
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
162
  msgstr ""
163
 
164
- #: ../super_socializer.php:1580
165
  #, php-format
166
  msgid ""
167
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -169,12 +173,12 @@ msgid ""
169
  "target=\"_blank\">here</a>"
170
  msgstr ""
171
 
172
- #: ../super_socializer.php:1580 ../super_socializer.php:1605
173
- #: ../super_socializer.php:1630 ../super_socializer.php:1654
174
  msgid "Okay"
175
  msgstr ""
176
 
177
- #: ../super_socializer.php:1605
178
  #, php-format
179
  msgid ""
180
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -182,7 +186,7 @@ msgid ""
182
  "target=\"_blank\">here</a>"
183
  msgstr ""
184
 
185
- #: ../super_socializer.php:1630
186
  #, php-format
187
  msgid ""
188
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -190,7 +194,7 @@ msgid ""
190
  "target=\"_blank\">here</a>"
191
  msgstr ""
192
 
193
- #: ../super_socializer.php:1654
194
  #, php-format
195
  msgid ""
196
  "Your website visitors will see a popup notification (only once) if their "
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-04-04 10:49+0530\n"
6
+ "PO-Revision-Date: 2018-04-04 10:49+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <support@heateor.com>\n"
9
  "Language: ar\n"
15
  "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
+ #: ../super_socializer.php:389
19
+ msgid "Problem fetching access token: "
20
+ msgstr ""
21
+
22
+ #: ../super_socializer.php:393 ../super_socializer.php:407
23
  msgid "Facebook SDK returned an error: "
24
  msgstr ""
25
 
26
+ #: ../super_socializer.php:403
27
  msgid "Graph returned an error: "
28
  msgstr ""
29
 
30
+ #: ../super_socializer.php:566
31
  #, fuzzy
32
  msgid ""
33
  "cURL is not enabled at your website server. Please contact your website "
36
  "يتم تمكين جعل الضفيرة متأكدا في الخادم موقع الويب الخاص بك. قد تحتاج إلى "
37
  "الاتصال بمسؤول الملقم من موقع الويب الخاص بك للتحقق من ذلك"
38
 
39
+ #: ../super_socializer.php:593
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:596
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:597
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:863 ../helper.php:963
63
  msgid "Please verify your email address to login."
64
  msgstr "يرجى التحقق من عنوان البريد الإلكتروني الخاص بك للدخول."
65
 
66
+ #: ../super_socializer.php:863
67
  msgid "Your email has been verified. Now you can login to your account"
68
  msgstr "تم التحقق من بريدك الإلكتروني. الآن يمكنك تسجيل الدخول إلى حسابك"
69
 
70
+ #: ../super_socializer.php:867
71
  msgid "Notification"
72
  msgstr "تنبيهات"
73
 
74
+ #: ../super_socializer.php:885 ../admin/social_login.php:755
75
  msgid "Email required"
76
  msgstr "البريد الإلكتروني - إدخال القيمة إجباري"
77
 
78
+ #: ../super_socializer.php:888
79
  msgid "Please check your email inbox to complete the registration."
80
  msgstr "يرجى التحقق من بريدك الالكتروني لإكمال التسجيل."
81
 
82
+ #: ../super_socializer.php:895 ../helper.php:503
83
  msgid "Enter your LiveJournal username"
84
  msgstr ""
85
 
86
+ #: ../super_socializer.php:957
87
  msgid "Leave a reply"
88
  msgstr "اترك رد"
89
 
90
+ #: ../super_socializer.php:969 ../inc/social_sharing.php:233
91
  msgid "Shares"
92
  msgstr ""
93
 
94
+ #: ../super_socializer.php:969 ../inc/social_sharing.php:233
95
  msgid "Share"
96
  msgstr ""
97
 
98
+ #: ../super_socializer.php:969
99
  #, fuzzy
100
  msgid "Link copied."
101
  msgstr "شارك الأخرين عبر لنكيدان"
102
 
103
+ #: ../super_socializer.php:1204
104
  #, fuzzy
105
  msgid "Super Socializer - General Options"
106
  msgstr "آخر تسجيل دخول | Last Login"
107
 
108
+ #: ../super_socializer.php:1204 ../admin/general_options.php:11
109
  #: ../admin/social_commenting.php:43
110
  #, fuzzy
111
  msgid "General Options"
112
  msgstr "المشاركات الأفقي"
113
 
114
+ #: ../super_socializer.php:1272 ../helper.php:885
115
  #, fuzzy
116
  msgid "Social Avatar"
117
  msgstr "صغير الرمزية رابط"
118
 
119
+ #: ../super_socializer.php:1275
120
  msgid "Small Avatar Url"
121
  msgstr "صغير الرمزية رابط"
122
 
123
+ #: ../super_socializer.php:1279
124
  #, fuzzy
125
  msgid "Large Avatar Url"
126
  msgstr "الرابط المصدر و الرابط الهدف لا يمكن أن يكونا متطابقين."
127
 
128
+ #: ../super_socializer.php:1283 ../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:1287 ../helper.php:889
135
  msgid "Update social avatar, next time I Social Login"
136
  msgstr ""
137
 
138
+ #: ../super_socializer.php:1360 ../super_socializer.php:1743
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:1366
145
  msgid "Login with your Social ID"
146
  msgstr ""
147
 
148
+ #: ../super_socializer.php:1367
149
  msgid "Email you entered is already registered or invalid"
150
  msgstr "البريد الإلكتروني الذي أدخلته غير مسجل من قبل أو غير صالحة"
151
 
152
+ #: ../super_socializer.php:1372
153
  msgid "Please enter a valid email address. You might be required to verify it"
154
  msgstr "يرجى إدخال عنوان بريد إلكتروني صالح. قد تكون هناك حاجة للتحقق من ذلك"
155
 
156
+ #: ../super_socializer.php:1591
157
  #, php-format
158
  msgid ""
159
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
160
  msgstr ""
161
 
162
+ #: ../super_socializer.php:1607
163
  #, php-format
164
  msgid ""
165
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
166
  msgstr ""
167
 
168
+ #: ../super_socializer.php:1631
169
  #, php-format
170
  msgid ""
171
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
173
  "target=\"_blank\">here</a>"
174
  msgstr ""
175
 
176
+ #: ../super_socializer.php:1631 ../super_socializer.php:1656
177
+ #: ../super_socializer.php:1681 ../super_socializer.php:1705
178
  msgid "Okay"
179
  msgstr ""
180
 
181
+ #: ../super_socializer.php:1656
182
  #, php-format
183
  msgid ""
184
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
186
  "target=\"_blank\">here</a>"
187
  msgstr ""
188
 
189
+ #: ../super_socializer.php:1681
190
  #, php-format
191
  msgid ""
192
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
194
  "target=\"_blank\">here</a>"
195
  msgstr ""
196
 
197
+ #: ../super_socializer.php:1705
198
  #, php-format
199
  msgid ""
200
  "Your website visitors will see a popup notification (only once) if their "
languages/super-socializer-es_ES.mo CHANGED
Binary file
languages/super-socializer-es_ES.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-03-25 15:07+0530\n"
6
- "PO-Revision-Date: 2018-03-25 15:07+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: es\n"
@@ -16,15 +16,19 @@ msgstr ""
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
- #: ../super_socializer.php:390 ../super_socializer.php:404
 
 
 
 
20
  msgid "Facebook SDK returned an error: "
21
  msgstr ""
22
 
23
- #: ../super_socializer.php:400
24
  msgid "Graph returned an error: "
25
  msgstr ""
26
 
27
- #: ../super_socializer.php:563
28
  #, fuzzy
29
  msgid ""
30
  "cURL is not enabled at your website server. Please contact your website "
@@ -34,7 +38,7 @@ msgstr ""
34
  "posible que necesites contactar con el administrador de tu servidor para "
35
  "verificar esto"
36
 
37
- #: ../super_socializer.php:590
38
  #, php-format
39
  msgid ""
40
  "Enter exactly the following url in <strong>Website</strong> and "
@@ -43,7 +47,7 @@ msgstr ""
43
  "Introduce exactamente la siguiente URL en las <strong>Website</strong> y "
44
  "<strong>Callback Url</strong> opciones en tu Twitter app (ver paso 3 %s)"
45
 
46
- #: ../super_socializer.php:593
47
  msgid ""
48
  "Make sure cURL is enabled at your website server. You may need to contact "
49
  "the server administrator of your website to verify this"
@@ -52,77 +56,77 @@ msgstr ""
52
  "posible que necesites contactar con el administrador de tu servidor para "
53
  "verificar esto"
54
 
55
- #: ../super_socializer.php:594
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:860 ../helper.php:963
62
  msgid "Please verify your email address to login."
63
  msgstr "Por favor verifica tu dirección de email para ingresar."
64
 
65
- #: ../super_socializer.php:860
66
  msgid "Your email has been verified. Now you can login to your account"
67
  msgstr "Tu email ha sido verificado. Ahora puedes ingresar en tu cuenta"
68
 
69
- #: ../super_socializer.php:864
70
  msgid "Notification"
71
  msgstr "Notificación"
72
 
73
- #: ../super_socializer.php:882 ../admin/social_login.php:755
74
  msgid "Email required"
75
  msgstr "Email requerido"
76
 
77
- #: ../super_socializer.php:885
78
  msgid "Please check your email inbox to complete the registration."
79
  msgstr ""
80
  "Por favor revisa la bandeja de entrada de tu correo para completar el "
81
  "registro."
82
 
83
- #: ../super_socializer.php:892 ../helper.php:503
84
  msgid "Enter your LiveJournal username"
85
  msgstr ""
86
 
87
- #: ../super_socializer.php:954
88
  msgid "Leave a reply"
89
  msgstr "Deja una respuesta"
90
 
91
- #: ../super_socializer.php:966 ../inc/social_sharing.php:233
92
  msgid "Shares"
93
  msgstr ""
94
 
95
- #: ../super_socializer.php:966 ../inc/social_sharing.php:233
96
  msgid "Share"
97
  msgstr ""
98
 
99
- #: ../super_socializer.php:966
100
  #, fuzzy
101
  msgid "Link copied."
102
  msgstr "LinkedIn"
103
 
104
- #: ../super_socializer.php:1153
105
  msgid "Super Socializer - General Options"
106
  msgstr "Super Socializer - Opciones Generales"
107
 
108
- #: ../super_socializer.php:1153 ../admin/general_options.php:11
109
  #: ../admin/social_commenting.php:43
110
  msgid "General Options"
111
  msgstr "Opciones Generales"
112
 
113
- #: ../super_socializer.php:1221 ../helper.php:885
114
  msgid "Social Avatar"
115
  msgstr "Avatar Social"
116
 
117
- #: ../super_socializer.php:1224
118
  msgid "Small Avatar Url"
119
  msgstr "Url de Avatar Pequeño"
120
 
121
- #: ../super_socializer.php:1228
122
  msgid "Large Avatar Url"
123
  msgstr "Url de Avatar Grande"
124
 
125
- #: ../super_socializer.php:1232 ../helper.php:888
126
  msgid ""
127
  "Do not fetch and update social avatar from my profile, next time I Social "
128
  "Login"
@@ -130,43 +134,43 @@ msgstr ""
130
  "No se ha podido recuperar y actualizar el avatar social desde mi perfil, la "
131
  "próxima vez | Social Login"
132
 
133
- #: ../super_socializer.php:1236 ../helper.php:889
134
  msgid "Update social avatar, next time I Social Login"
135
  msgstr "Actualiza tu avatar de redes sociales | Social Login"
136
 
137
- #: ../super_socializer.php:1309 ../super_socializer.php:1692
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:1315
144
  msgid "Login with your Social ID"
145
  msgstr ""
146
 
147
- #: ../super_socializer.php:1316
148
  msgid "Email you entered is already registered or invalid"
149
  msgstr "El email que has escrito ya está registrado o no es válido"
150
 
151
- #: ../super_socializer.php:1321
152
  msgid "Please enter a valid email address. You might be required to verify it"
153
  msgstr ""
154
  "Por favor escribe una dirección de email válida. Puedes ser requerido para "
155
  "verificarla"
156
 
157
- #: ../super_socializer.php:1540
158
  #, php-format
159
  msgid ""
160
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
161
  msgstr ""
162
 
163
- #: ../super_socializer.php:1556
164
  #, php-format
165
  msgid ""
166
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
167
  msgstr ""
168
 
169
- #: ../super_socializer.php:1580
170
  #, php-format
171
  msgid ""
172
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -174,12 +178,12 @@ msgid ""
174
  "target=\"_blank\">here</a>"
175
  msgstr ""
176
 
177
- #: ../super_socializer.php:1580 ../super_socializer.php:1605
178
- #: ../super_socializer.php:1630 ../super_socializer.php:1654
179
  msgid "Okay"
180
  msgstr ""
181
 
182
- #: ../super_socializer.php:1605
183
  #, php-format
184
  msgid ""
185
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -187,7 +191,7 @@ msgid ""
187
  "target=\"_blank\">here</a>"
188
  msgstr ""
189
 
190
- #: ../super_socializer.php:1630
191
  #, php-format
192
  msgid ""
193
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -195,7 +199,7 @@ msgid ""
195
  "target=\"_blank\">here</a>"
196
  msgstr ""
197
 
198
- #: ../super_socializer.php:1654
199
  #, php-format
200
  msgid ""
201
  "Your website visitors will see a popup notification (only once) if their "
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-04-04 10:48+0530\n"
6
+ "PO-Revision-Date: 2018-04-04 10:48+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: es\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
+ #: ../super_socializer.php:389
20
+ msgid "Problem fetching access token: "
21
+ msgstr ""
22
+
23
+ #: ../super_socializer.php:393 ../super_socializer.php:407
24
  msgid "Facebook SDK returned an error: "
25
  msgstr ""
26
 
27
+ #: ../super_socializer.php:403
28
  msgid "Graph returned an error: "
29
  msgstr ""
30
 
31
+ #: ../super_socializer.php:566
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:593
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:596
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:597
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:863 ../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:863
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:867
74
  msgid "Notification"
75
  msgstr "Notificación"
76
 
77
+ #: ../super_socializer.php:885 ../admin/social_login.php:755
78
  msgid "Email required"
79
  msgstr "Email requerido"
80
 
81
+ #: ../super_socializer.php:888
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:895 ../helper.php:503
88
  msgid "Enter your LiveJournal username"
89
  msgstr ""
90
 
91
+ #: ../super_socializer.php:957
92
  msgid "Leave a reply"
93
  msgstr "Deja una respuesta"
94
 
95
+ #: ../super_socializer.php:969 ../inc/social_sharing.php:233
96
  msgid "Shares"
97
  msgstr ""
98
 
99
+ #: ../super_socializer.php:969 ../inc/social_sharing.php:233
100
  msgid "Share"
101
  msgstr ""
102
 
103
+ #: ../super_socializer.php:969
104
  #, fuzzy
105
  msgid "Link copied."
106
  msgstr "LinkedIn"
107
 
108
+ #: ../super_socializer.php:1204
109
  msgid "Super Socializer - General Options"
110
  msgstr "Super Socializer - Opciones Generales"
111
 
112
+ #: ../super_socializer.php:1204 ../admin/general_options.php:11
113
  #: ../admin/social_commenting.php:43
114
  msgid "General Options"
115
  msgstr "Opciones Generales"
116
 
117
+ #: ../super_socializer.php:1272 ../helper.php:885
118
  msgid "Social Avatar"
119
  msgstr "Avatar Social"
120
 
121
+ #: ../super_socializer.php:1275
122
  msgid "Small Avatar Url"
123
  msgstr "Url de Avatar Pequeño"
124
 
125
+ #: ../super_socializer.php:1279
126
  msgid "Large Avatar Url"
127
  msgstr "Url de Avatar Grande"
128
 
129
+ #: ../super_socializer.php:1283 ../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:1287 ../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:1360 ../super_socializer.php:1743
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:1366
148
  msgid "Login with your Social ID"
149
  msgstr ""
150
 
151
+ #: ../super_socializer.php:1367
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:1372
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:1591
162
  #, php-format
163
  msgid ""
164
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
165
  msgstr ""
166
 
167
+ #: ../super_socializer.php:1607
168
  #, php-format
169
  msgid ""
170
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
171
  msgstr ""
172
 
173
+ #: ../super_socializer.php:1631
174
  #, php-format
175
  msgid ""
176
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
178
  "target=\"_blank\">here</a>"
179
  msgstr ""
180
 
181
+ #: ../super_socializer.php:1631 ../super_socializer.php:1656
182
+ #: ../super_socializer.php:1681 ../super_socializer.php:1705
183
  msgid "Okay"
184
  msgstr ""
185
 
186
+ #: ../super_socializer.php:1656
187
  #, php-format
188
  msgid ""
189
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
191
  "target=\"_blank\">here</a>"
192
  msgstr ""
193
 
194
+ #: ../super_socializer.php:1681
195
  #, php-format
196
  msgid ""
197
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
199
  "target=\"_blank\">here</a>"
200
  msgstr ""
201
 
202
+ #: ../super_socializer.php:1705
203
  #, php-format
204
  msgid ""
205
  "Your website visitors will see a popup notification (only once) if their "
languages/super-socializer-hu_HU.mo CHANGED
Binary file
languages/super-socializer-hu_HU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-03-25 15:07+0530\n"
6
- "PO-Revision-Date: 2018-03-25 15:07+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: The Champ <lordofthechamps@gmail.com>\n"
9
  "Language: hu\n"
@@ -16,15 +16,19 @@ msgstr ""
16
  "X-Poedit-KeywordsList: __;_e\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
- #: ../super_socializer.php:390 ../super_socializer.php:404
 
 
 
 
20
  msgid "Facebook SDK returned an error: "
21
  msgstr ""
22
 
23
- #: ../super_socializer.php:400
24
  msgid "Graph returned an error: "
25
  msgstr ""
26
 
27
- #: ../super_socializer.php:563
28
  #, fuzzy
29
  msgid ""
30
  "cURL is not enabled at your website server. Please contact your website "
@@ -33,7 +37,7 @@ msgstr ""
33
  "Ellenőrizd, hogy a cURL be van kapcsolva a szervereden. Lehetséges, hogy "
34
  "ehhez fel kell keresned a szerver adminisztrátorát, a tárhelyszolgáltatódat"
35
 
36
- #: ../super_socializer.php:590
37
  #, php-format
38
  msgid ""
39
  "Enter exactly the following url in <strong>Website</strong> and "
@@ -43,7 +47,7 @@ msgstr ""
43
  "<strong>Callback Url</strong> mezőbe a Twitter alkalmazásodban lásd 3. "
44
  "lépés %s)"
45
 
46
- #: ../super_socializer.php:593
47
  msgid ""
48
  "Make sure cURL is enabled at your website server. You may need to contact "
49
  "the server administrator of your website to verify this"
@@ -51,119 +55,119 @@ msgstr ""
51
  "Ellenőrizd, hogy a cURL be van kapcsolva a szervereden. Lehetséges, hogy "
52
  "ehhez fel kell keresned a szerver adminisztrátorát, a tárhelyszolgáltatódat"
53
 
54
- #: ../super_socializer.php:594
55
  #, php-format
56
  msgid ""
57
  "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
58
  msgstr ""
59
 
60
- #: ../super_socializer.php:860 ../helper.php:963
61
  msgid "Please verify your email address to login."
62
  msgstr "Kérjük, ellenőrizd e-mail címed a belépéshez."
63
 
64
- #: ../super_socializer.php:860
65
  msgid "Your email has been verified. Now you can login to your account"
66
  msgstr "E-mail címed ellenőrzése sikeres. Most már beléphetsz fiókodba"
67
 
68
- #: ../super_socializer.php:864
69
  msgid "Notification"
70
  msgstr "Értesítés"
71
 
72
- #: ../super_socializer.php:882 ../admin/social_login.php:755
73
  msgid "Email required"
74
  msgstr "E-mail cím szükséges"
75
 
76
- #: ../super_socializer.php:885
77
  msgid "Please check your email inbox to complete the registration."
78
  msgstr "Kérjük, nézd meg e-mail címed a regisztráció befejezéséhez."
79
 
80
- #: ../super_socializer.php:892 ../helper.php:503
81
  msgid "Enter your LiveJournal username"
82
  msgstr ""
83
 
84
- #: ../super_socializer.php:954
85
  msgid "Leave a reply"
86
  msgstr "Válaszolj"
87
 
88
- #: ../super_socializer.php:966 ../inc/social_sharing.php:233
89
  msgid "Shares"
90
  msgstr ""
91
 
92
- #: ../super_socializer.php:966 ../inc/social_sharing.php:233
93
  msgid "Share"
94
  msgstr ""
95
 
96
- #: ../super_socializer.php:966
97
  #, fuzzy
98
  msgid "Link copied."
99
  msgstr "LinkedIn"
100
 
101
- #: ../super_socializer.php:1153
102
  #, fuzzy
103
  msgid "Super Socializer - General Options"
104
  msgstr "Super Socializer - Belépés"
105
 
106
- #: ../super_socializer.php:1153 ../admin/general_options.php:11
107
  #: ../admin/social_commenting.php:43
108
  #, fuzzy
109
  msgid "General Options"
110
  msgstr "Megosztási beállítások"
111
 
112
- #: ../super_socializer.php:1221 ../helper.php:885
113
  #, fuzzy
114
  msgid "Social Avatar"
115
  msgstr "Kis Avatar URL"
116
 
117
- #: ../super_socializer.php:1224
118
  msgid "Small Avatar Url"
119
  msgstr "Kis Avatar URL"
120
 
121
- #: ../super_socializer.php:1228
122
  #, fuzzy
123
  msgid "Large Avatar Url"
124
  msgstr "Cél Url"
125
 
126
- #: ../super_socializer.php:1232 ../helper.php:888
127
  msgid ""
128
  "Do not fetch and update social avatar from my profile, next time I Social "
129
  "Login"
130
  msgstr ""
131
 
132
- #: ../super_socializer.php:1236 ../helper.php:889
133
  msgid "Update social avatar, next time I Social Login"
134
  msgstr ""
135
 
136
- #: ../super_socializer.php:1309 ../super_socializer.php:1692
137
  msgid ""
138
  "Your browser is blocking some features of this website. Please follow the "
139
  "instructions at {support_url} to unblock these."
140
  msgstr ""
141
 
142
- #: ../super_socializer.php:1315
143
  msgid "Login with your Social ID"
144
  msgstr ""
145
 
146
- #: ../super_socializer.php:1316
147
  msgid "Email you entered is already registered or invalid"
148
  msgstr "A megadott e-mail már regisztrálva van, vagy hibás"
149
 
150
- #: ../super_socializer.php:1321
151
  msgid "Please enter a valid email address. You might be required to verify it"
152
  msgstr "Kérlek, érvényes e-mail címet adj meg. Ezt később ellenőrizhetjük"
153
 
154
- #: ../super_socializer.php:1540
155
  #, php-format
156
  msgid ""
157
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
158
  msgstr ""
159
 
160
- #: ../super_socializer.php:1556
161
  #, php-format
162
  msgid ""
163
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
164
  msgstr ""
165
 
166
- #: ../super_socializer.php:1580
167
  #, php-format
168
  msgid ""
169
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -171,12 +175,12 @@ msgid ""
171
  "target=\"_blank\">here</a>"
172
  msgstr ""
173
 
174
- #: ../super_socializer.php:1580 ../super_socializer.php:1605
175
- #: ../super_socializer.php:1630 ../super_socializer.php:1654
176
  msgid "Okay"
177
  msgstr ""
178
 
179
- #: ../super_socializer.php:1605
180
  #, php-format
181
  msgid ""
182
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -184,7 +188,7 @@ msgid ""
184
  "target=\"_blank\">here</a>"
185
  msgstr ""
186
 
187
- #: ../super_socializer.php:1630
188
  #, php-format
189
  msgid ""
190
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -192,7 +196,7 @@ msgid ""
192
  "target=\"_blank\">here</a>"
193
  msgstr ""
194
 
195
- #: ../super_socializer.php:1654
196
  #, php-format
197
  msgid ""
198
  "Your website visitors will see a popup notification (only once) if their "
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-04-04 10:48+0530\n"
6
+ "PO-Revision-Date: 2018-04-04 10:48+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: The Champ <lordofthechamps@gmail.com>\n"
9
  "Language: hu\n"
16
  "X-Poedit-KeywordsList: __;_e\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
+ #: ../super_socializer.php:389
20
+ msgid "Problem fetching access token: "
21
+ msgstr ""
22
+
23
+ #: ../super_socializer.php:393 ../super_socializer.php:407
24
  msgid "Facebook SDK returned an error: "
25
  msgstr ""
26
 
27
+ #: ../super_socializer.php:403
28
  msgid "Graph returned an error: "
29
  msgstr ""
30
 
31
+ #: ../super_socializer.php:566
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:593
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:596
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:597
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:863 ../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:863
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:867
73
  msgid "Notification"
74
  msgstr "Értesítés"
75
 
76
+ #: ../super_socializer.php:885 ../admin/social_login.php:755
77
  msgid "Email required"
78
  msgstr "E-mail cím szükséges"
79
 
80
+ #: ../super_socializer.php:888
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:895 ../helper.php:503
85
  msgid "Enter your LiveJournal username"
86
  msgstr ""
87
 
88
+ #: ../super_socializer.php:957
89
  msgid "Leave a reply"
90
  msgstr "Válaszolj"
91
 
92
+ #: ../super_socializer.php:969 ../inc/social_sharing.php:233
93
  msgid "Shares"
94
  msgstr ""
95
 
96
+ #: ../super_socializer.php:969 ../inc/social_sharing.php:233
97
  msgid "Share"
98
  msgstr ""
99
 
100
+ #: ../super_socializer.php:969
101
  #, fuzzy
102
  msgid "Link copied."
103
  msgstr "LinkedIn"
104
 
105
+ #: ../super_socializer.php:1204
106
  #, fuzzy
107
  msgid "Super Socializer - General Options"
108
  msgstr "Super Socializer - Belépés"
109
 
110
+ #: ../super_socializer.php:1204 ../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:1272 ../helper.php:885
117
  #, fuzzy
118
  msgid "Social Avatar"
119
  msgstr "Kis Avatar URL"
120
 
121
+ #: ../super_socializer.php:1275
122
  msgid "Small Avatar Url"
123
  msgstr "Kis Avatar URL"
124
 
125
+ #: ../super_socializer.php:1279
126
  #, fuzzy
127
  msgid "Large Avatar Url"
128
  msgstr "Cél Url"
129
 
130
+ #: ../super_socializer.php:1283 ../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:1287 ../helper.php:889
137
  msgid "Update social avatar, next time I Social Login"
138
  msgstr ""
139
 
140
+ #: ../super_socializer.php:1360 ../super_socializer.php:1743
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:1366
147
  msgid "Login with your Social ID"
148
  msgstr ""
149
 
150
+ #: ../super_socializer.php:1367
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:1372
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:1591
159
  #, php-format
160
  msgid ""
161
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
162
  msgstr ""
163
 
164
+ #: ../super_socializer.php:1607
165
  #, php-format
166
  msgid ""
167
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
168
  msgstr ""
169
 
170
+ #: ../super_socializer.php:1631
171
  #, php-format
172
  msgid ""
173
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
175
  "target=\"_blank\">here</a>"
176
  msgstr ""
177
 
178
+ #: ../super_socializer.php:1631 ../super_socializer.php:1656
179
+ #: ../super_socializer.php:1681 ../super_socializer.php:1705
180
  msgid "Okay"
181
  msgstr ""
182
 
183
+ #: ../super_socializer.php:1656
184
  #, php-format
185
  msgid ""
186
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
188
  "target=\"_blank\">here</a>"
189
  msgstr ""
190
 
191
+ #: ../super_socializer.php:1681
192
  #, php-format
193
  msgid ""
194
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
196
  "target=\"_blank\">here</a>"
197
  msgstr ""
198
 
199
+ #: ../super_socializer.php:1705
200
  #, php-format
201
  msgid ""
202
  "Your website visitors will see a popup notification (only once) if their "
languages/super-socializer-it_IT.mo CHANGED
Binary file
languages/super-socializer-it_IT.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-03-25 15:07+0530\n"
6
- "PO-Revision-Date: 2018-03-25 15:07+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"
@@ -16,15 +16,19 @@ msgstr ""
16
  "X-Poedit-KeywordsList: __;_e\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
- #: ../super_socializer.php:390 ../super_socializer.php:404
 
 
 
 
20
  msgid "Facebook SDK returned an error: "
21
  msgstr ""
22
 
23
- #: ../super_socializer.php:400
24
  msgid "Graph returned an error: "
25
  msgstr ""
26
 
27
- #: ../super_socializer.php:563
28
  #, fuzzy
29
  msgid ""
30
  "cURL is not enabled at your website server. Please contact your website "
@@ -33,7 +37,7 @@ msgstr ""
33
  "Assicurati che cURL sia abilitato sul server del tuo sito. Per verificare "
34
  "questo, potrebbe essere necessario contattare l'amministratore del server."
35
 
36
- #: ../super_socializer.php:590
37
  #, php-format
38
  msgid ""
39
  "Enter exactly the following url in <strong>Website</strong> and "
@@ -43,7 +47,7 @@ msgstr ""
43
  "e <strong>Callback URL </ strong> della tua applicazione Twitter (vedi punto "
44
  "3 %s)"
45
 
46
- #: ../super_socializer.php:593
47
  msgid ""
48
  "Make sure cURL is enabled at your website server. You may need to contact "
49
  "the server administrator of your website to verify this"
@@ -51,79 +55,79 @@ msgstr ""
51
  "Assicurati che cURL sia abilitato sul server del tuo sito. Per verificare "
52
  "questo, potrebbe essere necessario contattare l'amministratore del server."
53
 
54
- #: ../super_socializer.php:594
55
  #, php-format
56
  msgid ""
57
  "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
58
  msgstr ""
59
 
60
- #: ../super_socializer.php:860 ../helper.php:963
61
  msgid "Please verify your email address to login."
62
  msgstr "Per favore, per accedere verifica il tuo indirizzo e-mail."
63
 
64
- #: ../super_socializer.php:860
65
  msgid "Your email has been verified. Now you can login to your account"
66
  msgstr ""
67
  "Il tuo indirizzo e-mail é stato verificato, adesso puoi accedere al tuo "
68
  "account"
69
 
70
- #: ../super_socializer.php:864
71
  msgid "Notification"
72
  msgstr "Notifiche"
73
 
74
- #: ../super_socializer.php:882 ../admin/social_login.php:755
75
  msgid "Email required"
76
  msgstr "Email Obbligatoria"
77
 
78
- #: ../super_socializer.php:885
79
  msgid "Please check your email inbox to complete the registration."
80
  msgstr ""
81
  "Per favore, per completare la registrazione, controlla la tua casella di "
82
  "posta elettronica."
83
 
84
- #: ../super_socializer.php:892 ../helper.php:503
85
  msgid "Enter your LiveJournal username"
86
  msgstr ""
87
 
88
- #: ../super_socializer.php:954
89
  msgid "Leave a reply"
90
  msgstr "Lascia un commento"
91
 
92
- #: ../super_socializer.php:966 ../inc/social_sharing.php:233
93
  msgid "Shares"
94
  msgstr "Shares"
95
 
96
- #: ../super_socializer.php:966 ../inc/social_sharing.php:233
97
  msgid "Share"
98
  msgstr "Share"
99
 
100
- #: ../super_socializer.php:966
101
  #, fuzzy
102
  msgid "Link copied."
103
  msgstr "LinkedIn"
104
 
105
- #: ../super_socializer.php:1153
106
  msgid "Super Socializer - General Options"
107
  msgstr "Super Socializer - Opzioni"
108
 
109
- #: ../super_socializer.php:1153 ../admin/general_options.php:11
110
  #: ../admin/social_commenting.php:43
111
  msgid "General Options"
112
  msgstr "Opzioni Generali"
113
 
114
- #: ../super_socializer.php:1221 ../helper.php:885
115
  msgid "Social Avatar"
116
  msgstr "Social Avatar"
117
 
118
- #: ../super_socializer.php:1224
119
  msgid "Small Avatar Url"
120
  msgstr "Url Avatar Piccolo"
121
 
122
- #: ../super_socializer.php:1228
123
  msgid "Large Avatar Url"
124
  msgstr "URL Avatar Grande"
125
 
126
- #: ../super_socializer.php:1232 ../helper.php:888
127
  msgid ""
128
  "Do not fetch and update social avatar from my profile, next time I Social "
129
  "Login"
@@ -131,43 +135,43 @@ msgstr ""
131
  "La prossima volta che uso Social Login, non prendere e/o aggiornare il "
132
  "social avatar dal mio profilo."
133
 
134
- #: ../super_socializer.php:1236 ../helper.php:889
135
  msgid "Update social avatar, next time I Social Login"
136
  msgstr "La prossima volta che si usa Social Login, aggiorna il social avatar."
137
 
138
- #: ../super_socializer.php:1309 ../super_socializer.php:1692
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:1315
145
  msgid "Login with your Social ID"
146
  msgstr "Login con il tuo ID Social"
147
 
148
- #: ../super_socializer.php:1316
149
  msgid "Email you entered is already registered or invalid"
150
  msgstr "La email inserita è già registrata o non è valida"
151
 
152
- #: ../super_socializer.php:1321
153
  msgid "Please enter a valid email address. You might be required to verify it"
154
  msgstr ""
155
  "Si prega di inserire un indirizzo email valido. Potrebbe esserne richiesta "
156
  "una verifica"
157
 
158
- #: ../super_socializer.php:1540
159
  #, php-format
160
  msgid ""
161
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
162
  msgstr ""
163
 
164
- #: ../super_socializer.php:1556
165
  #, php-format
166
  msgid ""
167
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
168
  msgstr ""
169
 
170
- #: ../super_socializer.php:1580
171
  #, php-format
172
  msgid ""
173
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -175,12 +179,12 @@ msgid ""
175
  "target=\"_blank\">here</a>"
176
  msgstr ""
177
 
178
- #: ../super_socializer.php:1580 ../super_socializer.php:1605
179
- #: ../super_socializer.php:1630 ../super_socializer.php:1654
180
  msgid "Okay"
181
  msgstr ""
182
 
183
- #: ../super_socializer.php:1605
184
  #, php-format
185
  msgid ""
186
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -188,7 +192,7 @@ msgid ""
188
  "target=\"_blank\">here</a>"
189
  msgstr ""
190
 
191
- #: ../super_socializer.php:1630
192
  #, php-format
193
  msgid ""
194
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -196,7 +200,7 @@ msgid ""
196
  "target=\"_blank\">here</a>"
197
  msgstr ""
198
 
199
- #: ../super_socializer.php:1654
200
  #, php-format
201
  msgid ""
202
  "Your website visitors will see a popup notification (only once) if their "
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-04-04 10:48+0530\n"
6
+ "PO-Revision-Date: 2018-04-04 10:48+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"
16
  "X-Poedit-KeywordsList: __;_e\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
+ #: ../super_socializer.php:389
20
+ msgid "Problem fetching access token: "
21
+ msgstr ""
22
+
23
+ #: ../super_socializer.php:393 ../super_socializer.php:407
24
  msgid "Facebook SDK returned an error: "
25
  msgstr ""
26
 
27
+ #: ../super_socializer.php:403
28
  msgid "Graph returned an error: "
29
  msgstr ""
30
 
31
+ #: ../super_socializer.php:566
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:593
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:596
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:597
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:863 ../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:863
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:867
75
  msgid "Notification"
76
  msgstr "Notifiche"
77
 
78
+ #: ../super_socializer.php:885 ../admin/social_login.php:755
79
  msgid "Email required"
80
  msgstr "Email Obbligatoria"
81
 
82
+ #: ../super_socializer.php:888
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:895 ../helper.php:503
89
  msgid "Enter your LiveJournal username"
90
  msgstr ""
91
 
92
+ #: ../super_socializer.php:957
93
  msgid "Leave a reply"
94
  msgstr "Lascia un commento"
95
 
96
+ #: ../super_socializer.php:969 ../inc/social_sharing.php:233
97
  msgid "Shares"
98
  msgstr "Shares"
99
 
100
+ #: ../super_socializer.php:969 ../inc/social_sharing.php:233
101
  msgid "Share"
102
  msgstr "Share"
103
 
104
+ #: ../super_socializer.php:969
105
  #, fuzzy
106
  msgid "Link copied."
107
  msgstr "LinkedIn"
108
 
109
+ #: ../super_socializer.php:1204
110
  msgid "Super Socializer - General Options"
111
  msgstr "Super Socializer - Opzioni"
112
 
113
+ #: ../super_socializer.php:1204 ../admin/general_options.php:11
114
  #: ../admin/social_commenting.php:43
115
  msgid "General Options"
116
  msgstr "Opzioni Generali"
117
 
118
+ #: ../super_socializer.php:1272 ../helper.php:885
119
  msgid "Social Avatar"
120
  msgstr "Social Avatar"
121
 
122
+ #: ../super_socializer.php:1275
123
  msgid "Small Avatar Url"
124
  msgstr "Url Avatar Piccolo"
125
 
126
+ #: ../super_socializer.php:1279
127
  msgid "Large Avatar Url"
128
  msgstr "URL Avatar Grande"
129
 
130
+ #: ../super_socializer.php:1283 ../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:1287 ../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:1360 ../super_socializer.php:1743
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:1366
149
  msgid "Login with your Social ID"
150
  msgstr "Login con il tuo ID Social"
151
 
152
+ #: ../super_socializer.php:1367
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:1372
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:1591
163
  #, php-format
164
  msgid ""
165
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
166
  msgstr ""
167
 
168
+ #: ../super_socializer.php:1607
169
  #, php-format
170
  msgid ""
171
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
172
  msgstr ""
173
 
174
+ #: ../super_socializer.php:1631
175
  #, php-format
176
  msgid ""
177
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
179
  "target=\"_blank\">here</a>"
180
  msgstr ""
181
 
182
+ #: ../super_socializer.php:1631 ../super_socializer.php:1656
183
+ #: ../super_socializer.php:1681 ../super_socializer.php:1705
184
  msgid "Okay"
185
  msgstr ""
186
 
187
+ #: ../super_socializer.php:1656
188
  #, php-format
189
  msgid ""
190
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
192
  "target=\"_blank\">here</a>"
193
  msgstr ""
194
 
195
+ #: ../super_socializer.php:1681
196
  #, php-format
197
  msgid ""
198
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
200
  "target=\"_blank\">here</a>"
201
  msgstr ""
202
 
203
+ #: ../super_socializer.php:1705
204
  #, php-format
205
  msgid ""
206
  "Your website visitors will see a popup notification (only once) if their "
languages/super-socializer-pt_BR.mo CHANGED
Binary file
languages/super-socializer-pt_BR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-03-25 15:07+0530\n"
6
- "PO-Revision-Date: 2018-03-25 15:07+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: en_IN\n"
@@ -15,15 +15,19 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
- #: ../super_socializer.php:390 ../super_socializer.php:404
 
 
 
 
19
  msgid "Facebook SDK returned an error: "
20
  msgstr ""
21
 
22
- #: ../super_socializer.php:400
23
  msgid "Graph returned an error: "
24
  msgstr ""
25
 
26
- #: ../super_socializer.php:563
27
  #, fuzzy
28
  msgid ""
29
  "cURL is not enabled at your website server. Please contact your website "
@@ -32,7 +36,7 @@ msgstr ""
32
  "Certifique que a cURL esteja habilitada no seu servidor web. Você poderá ter "
33
  "que contatar o administrador do servidor do seu website para verificar isso."
34
 
35
- #: ../super_socializer.php:590
36
  #, php-format
37
  msgid ""
38
  "Enter exactly the following url in <strong>Website</strong> and "
@@ -42,7 +46,7 @@ msgstr ""
42
  "<strong>Callback Url</strong> nas opções do seu app Twitter (veja o passo 3 "
43
  "%s)"
44
 
45
- #: ../super_socializer.php:593
46
  msgid ""
47
  "Make sure cURL is enabled at your website server. You may need to contact "
48
  "the server administrator of your website to verify this"
@@ -50,75 +54,75 @@ msgstr ""
50
  "Certifique que a cURL esteja habilitada no seu servidor web. Você poderá ter "
51
  "que contatar o administrador do servidor do seu website para verificar isso."
52
 
53
- #: ../super_socializer.php:594
54
  #, php-format
55
  msgid ""
56
  "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
57
  msgstr ""
58
 
59
- #: ../super_socializer.php:860 ../helper.php:963
60
  msgid "Please verify your email address to login."
61
  msgstr "Por favor verifique seu endereço de email no login."
62
 
63
- #: ../super_socializer.php:860
64
  msgid "Your email has been verified. Now you can login to your account"
65
  msgstr "Seu email foi verificado. Agora você pode fazer login na sua conta"
66
 
67
- #: ../super_socializer.php:864
68
  msgid "Notification"
69
  msgstr "Notificaçao"
70
 
71
- #: ../super_socializer.php:882 ../admin/social_login.php:755
72
  msgid "Email required"
73
  msgstr "Necessário email"
74
 
75
- #: ../super_socializer.php:885
76
  msgid "Please check your email inbox to complete the registration."
77
  msgstr "Por favor verifique sua caixa de email para completar o registro."
78
 
79
- #: ../super_socializer.php:892 ../helper.php:503
80
  msgid "Enter your LiveJournal username"
81
  msgstr ""
82
 
83
- #: ../super_socializer.php:954
84
  msgid "Leave a reply"
85
  msgstr "Deixe uma resposta"
86
 
87
- #: ../super_socializer.php:966 ../inc/social_sharing.php:233
88
  msgid "Shares"
89
  msgstr ""
90
 
91
- #: ../super_socializer.php:966 ../inc/social_sharing.php:233
92
  msgid "Share"
93
  msgstr ""
94
 
95
- #: ../super_socializer.php:966
96
  #, fuzzy
97
  msgid "Link copied."
98
  msgstr "LinkedIn"
99
 
100
- #: ../super_socializer.php:1153
101
  msgid "Super Socializer - General Options"
102
  msgstr "Super Socializer - Opções Gerais"
103
 
104
- #: ../super_socializer.php:1153 ../admin/general_options.php:11
105
  #: ../admin/social_commenting.php:43
106
  msgid "General Options"
107
  msgstr "Opções Gerais"
108
 
109
- #: ../super_socializer.php:1221 ../helper.php:885
110
  msgid "Social Avatar"
111
  msgstr "Avatar Social"
112
 
113
- #: ../super_socializer.php:1224
114
  msgid "Small Avatar Url"
115
  msgstr "Url para Avatar pequeno"
116
 
117
- #: ../super_socializer.php:1228
118
  msgid "Large Avatar Url"
119
  msgstr "Url para Avatar Grande"
120
 
121
- #: ../super_socializer.php:1232 ../helper.php:888
122
  msgid ""
123
  "Do not fetch and update social avatar from my profile, next time I Social "
124
  "Login"
@@ -126,43 +130,43 @@ msgstr ""
126
  "Não busque ou atualize o avatar social do meu perfil, na próxima vez farei a "
127
  "Autenticação Social"
128
 
129
- #: ../super_socializer.php:1236 ../helper.php:889
130
  msgid "Update social avatar, next time I Social Login"
131
  msgstr "Atualize o avatar social, na próxima vez farei a Autenticação Social"
132
 
133
- #: ../super_socializer.php:1309 ../super_socializer.php:1692
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:1315
140
  msgid "Login with your Social ID"
141
  msgstr ""
142
 
143
- #: ../super_socializer.php:1316
144
  msgid "Email you entered is already registered or invalid"
145
  msgstr "Email fornecido já está registrado ou é inválido"
146
 
147
- #: ../super_socializer.php:1321
148
  msgid "Please enter a valid email address. You might be required to verify it"
149
  msgstr ""
150
  "Por favor forneça um endereço de email válido. Você pode ser solicitado a "
151
  "confirmá-lo"
152
 
153
- #: ../super_socializer.php:1540
154
  #, php-format
155
  msgid ""
156
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
157
  msgstr ""
158
 
159
- #: ../super_socializer.php:1556
160
  #, php-format
161
  msgid ""
162
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
163
  msgstr ""
164
 
165
- #: ../super_socializer.php:1580
166
  #, php-format
167
  msgid ""
168
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -170,12 +174,12 @@ msgid ""
170
  "target=\"_blank\">here</a>"
171
  msgstr ""
172
 
173
- #: ../super_socializer.php:1580 ../super_socializer.php:1605
174
- #: ../super_socializer.php:1630 ../super_socializer.php:1654
175
  msgid "Okay"
176
  msgstr ""
177
 
178
- #: ../super_socializer.php:1605
179
  #, php-format
180
  msgid ""
181
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -183,7 +187,7 @@ msgid ""
183
  "target=\"_blank\">here</a>"
184
  msgstr ""
185
 
186
- #: ../super_socializer.php:1630
187
  #, php-format
188
  msgid ""
189
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -191,7 +195,7 @@ msgid ""
191
  "target=\"_blank\">here</a>"
192
  msgstr ""
193
 
194
- #: ../super_socializer.php:1654
195
  #, php-format
196
  msgid ""
197
  "Your website visitors will see a popup notification (only once) if their "
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-04-04 10:48+0530\n"
6
+ "PO-Revision-Date: 2018-04-04 10:48+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: en_IN\n"
15
  "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
+ #: ../super_socializer.php:389
19
+ msgid "Problem fetching access token: "
20
+ msgstr ""
21
+
22
+ #: ../super_socializer.php:393 ../super_socializer.php:407
23
  msgid "Facebook SDK returned an error: "
24
  msgstr ""
25
 
26
+ #: ../super_socializer.php:403
27
  msgid "Graph returned an error: "
28
  msgstr ""
29
 
30
+ #: ../super_socializer.php:566
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:593
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:596
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:597
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:863 ../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:863
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:867
72
  msgid "Notification"
73
  msgstr "Notificaçao"
74
 
75
+ #: ../super_socializer.php:885 ../admin/social_login.php:755
76
  msgid "Email required"
77
  msgstr "Necessário email"
78
 
79
+ #: ../super_socializer.php:888
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:895 ../helper.php:503
84
  msgid "Enter your LiveJournal username"
85
  msgstr ""
86
 
87
+ #: ../super_socializer.php:957
88
  msgid "Leave a reply"
89
  msgstr "Deixe uma resposta"
90
 
91
+ #: ../super_socializer.php:969 ../inc/social_sharing.php:233
92
  msgid "Shares"
93
  msgstr ""
94
 
95
+ #: ../super_socializer.php:969 ../inc/social_sharing.php:233
96
  msgid "Share"
97
  msgstr ""
98
 
99
+ #: ../super_socializer.php:969
100
  #, fuzzy
101
  msgid "Link copied."
102
  msgstr "LinkedIn"
103
 
104
+ #: ../super_socializer.php:1204
105
  msgid "Super Socializer - General Options"
106
  msgstr "Super Socializer - Opções Gerais"
107
 
108
+ #: ../super_socializer.php:1204 ../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:1272 ../helper.php:885
114
  msgid "Social Avatar"
115
  msgstr "Avatar Social"
116
 
117
+ #: ../super_socializer.php:1275
118
  msgid "Small Avatar Url"
119
  msgstr "Url para Avatar pequeno"
120
 
121
+ #: ../super_socializer.php:1279
122
  msgid "Large Avatar Url"
123
  msgstr "Url para Avatar Grande"
124
 
125
+ #: ../super_socializer.php:1283 ../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:1287 ../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:1360 ../super_socializer.php:1743
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:1366
144
  msgid "Login with your Social ID"
145
  msgstr ""
146
 
147
+ #: ../super_socializer.php:1367
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:1372
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:1591
158
  #, php-format
159
  msgid ""
160
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
161
  msgstr ""
162
 
163
+ #: ../super_socializer.php:1607
164
  #, php-format
165
  msgid ""
166
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
167
  msgstr ""
168
 
169
+ #: ../super_socializer.php:1631
170
  #, php-format
171
  msgid ""
172
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
174
  "target=\"_blank\">here</a>"
175
  msgstr ""
176
 
177
+ #: ../super_socializer.php:1631 ../super_socializer.php:1656
178
+ #: ../super_socializer.php:1681 ../super_socializer.php:1705
179
  msgid "Okay"
180
  msgstr ""
181
 
182
+ #: ../super_socializer.php:1656
183
  #, php-format
184
  msgid ""
185
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
187
  "target=\"_blank\">here</a>"
188
  msgstr ""
189
 
190
+ #: ../super_socializer.php:1681
191
  #, php-format
192
  msgid ""
193
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
195
  "target=\"_blank\">here</a>"
196
  msgstr ""
197
 
198
+ #: ../super_socializer.php:1705
199
  #, php-format
200
  msgid ""
201
  "Your website visitors will see a popup notification (only once) if their "
languages/super-socializer-ru_RU.mo CHANGED
Binary file
languages/super-socializer-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-03-25 15:06+0530\n"
6
- "PO-Revision-Date: 2018-03-25 15:06+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Russian\n"
9
  "Language: ru_RU\n"
@@ -17,15 +17,19 @@ msgstr ""
17
  "%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2);\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
- #: ../super_socializer.php:390 ../super_socializer.php:404
 
 
 
 
21
  msgid "Facebook SDK returned an error: "
22
  msgstr ""
23
 
24
- #: ../super_socializer.php:400
25
  msgid "Graph returned an error: "
26
  msgstr ""
27
 
28
- #: ../super_socializer.php:563
29
  msgid ""
30
  "cURL is not enabled at your website server. Please contact your website "
31
  "server administrator to enable it."
@@ -33,7 +37,7 @@ msgstr ""
33
  "Curl не включен в вашем веб-сайте. Вам, возможно, потребуется обратиться к "
34
  "администратору вашего сайта, чтобы включить это."
35
 
36
- #: ../super_socializer.php:590
37
  #, php-format
38
  msgid ""
39
  "Enter exactly the following url in <strong>Website</strong> and "
@@ -42,7 +46,7 @@ msgstr ""
42
  "Введите действующую ссылку для <strong>сайта</strong> и <strong>обратную "
43
  "ссылку</strong> в вашем приложении Твиттера (смотрите шаг 3 %s)"
44
 
45
- #: ../super_socializer.php:593
46
  msgid ""
47
  "Make sure cURL is enabled at your website server. You may need to contact "
48
  "the server administrator of your website to verify this"
@@ -50,7 +54,7 @@ msgstr ""
50
  "Убедитесь Curl включен в вашем веб-сайте сервера. Вы, возможно, потребуется "
51
  "обратиться к администратору сервера вашего сайта, чтобы убедиться, это"
52
 
53
- #: ../super_socializer.php:594
54
  #, php-format
55
  msgid ""
56
  "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
@@ -58,69 +62,69 @@ msgstr ""
58
  "Убедитесь, что «Включить Блокировку обратного вызова » параметр отключен. "
59
  "Смотрите шаг 4 %s"
60
 
61
- #: ../super_socializer.php:860 ../helper.php:963
62
  msgid "Please verify your email address to login."
63
  msgstr "Пожалуйста, подтвердите ваш адрес электронной почты."
64
 
65
- #: ../super_socializer.php:860
66
  msgid "Your email has been verified. Now you can login to your account"
67
  msgstr "Ваше сообщение было проверено. Теперь вы можете войти в свой аккаунт"
68
 
69
- #: ../super_socializer.php:864
70
  msgid "Notification"
71
  msgstr "Уведомления"
72
 
73
- #: ../super_socializer.php:882 ../admin/social_login.php:755
74
  msgid "Email required"
75
  msgstr "Email (Обязательно)"
76
 
77
- #: ../super_socializer.php:885
78
  msgid "Please check your email inbox to complete the registration."
79
  msgstr "Пожалуйста, проверьте свой почтовый ящик для завершения регистрации."
80
 
81
- #: ../super_socializer.php:892 ../helper.php:503
82
  msgid "Enter your LiveJournal username"
83
  msgstr "Введите ваше имя пользователя LiveJournal"
84
 
85
- #: ../super_socializer.php:954
86
  msgid "Leave a reply"
87
  msgstr "Оставить ответ"
88
 
89
- #: ../super_socializer.php:966 ../inc/social_sharing.php:233
90
  msgid "Shares"
91
  msgstr "Поделились"
92
 
93
- #: ../super_socializer.php:966 ../inc/social_sharing.php:233
94
  msgid "Share"
95
  msgstr "Поделиться"
96
 
97
- #: ../super_socializer.php:966
98
  #, fuzzy
99
  msgid "Link copied."
100
  msgstr "LinkedIn"
101
 
102
- #: ../super_socializer.php:1153
103
  msgid "Super Socializer - General Options"
104
  msgstr "Super Socializer - Общие настройки"
105
 
106
- #: ../super_socializer.php:1153 ../admin/general_options.php:11
107
  #: ../admin/social_commenting.php:43
108
  msgid "General Options"
109
  msgstr "Основные настройки"
110
 
111
- #: ../super_socializer.php:1221 ../helper.php:885
112
  msgid "Social Avatar"
113
  msgstr "Социальный аватар"
114
 
115
- #: ../super_socializer.php:1224
116
  msgid "Small Avatar Url"
117
  msgstr "Ссылка для маленького аватара"
118
 
119
- #: ../super_socializer.php:1228
120
  msgid "Large Avatar Url"
121
  msgstr "Ссылка для большого аватара"
122
 
123
- #: ../super_socializer.php:1232 ../helper.php:888
124
  msgid ""
125
  "Do not fetch and update social avatar from my profile, next time I Social "
126
  "Login"
@@ -128,13 +132,13 @@ msgstr ""
128
  "Не получать и обновлять социальный аватар из моего профиля, в следующий раз "
129
  "я когда я использую вход через соцсети"
130
 
131
- #: ../super_socializer.php:1236 ../helper.php:889
132
  msgid "Update social avatar, next time I Social Login"
133
  msgstr ""
134
  "Обновление аватара соцсетей в следующий раз при использовании входа через "
135
  "соцсети"
136
 
137
- #: ../super_socializer.php:1309 ../super_socializer.php:1692
138
  msgid ""
139
  "Your browser is blocking some features of this website. Please follow the "
140
  "instructions at {support_url} to unblock these."
@@ -142,34 +146,34 @@ msgstr ""
142
  "Ваш браузер блокирует некоторые функции данного веб-сайта. Пожалуйста, "
143
  "следуйте инструкциям в {support_url}, чтобы разблокировать функции."
144
 
145
- #: ../super_socializer.php:1315
146
  msgid "Login with your Social ID"
147
  msgstr "Войти, используя социальный аккаунт"
148
 
149
- #: ../super_socializer.php:1316
150
  msgid "Email you entered is already registered or invalid"
151
  msgstr ""
152
  "Электронная почта, которую вы ввели, уже зарегистрирована или недействительна"
153
 
154
- #: ../super_socializer.php:1321
155
  msgid "Please enter a valid email address. You might be required to verify it"
156
  msgstr ""
157
  "Пожалуйста, введите действительный адрес электронной почты. Вам, возможно, "
158
  "потребуется проверить его"
159
 
160
- #: ../super_socializer.php:1540
161
  #, php-format
162
  msgid ""
163
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
164
  msgstr ""
165
 
166
- #: ../super_socializer.php:1556
167
  #, php-format
168
  msgid ""
169
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
170
  msgstr ""
171
 
172
- #: ../super_socializer.php:1580
173
  #, php-format
174
  msgid ""
175
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -177,12 +181,12 @@ msgid ""
177
  "target=\"_blank\">here</a>"
178
  msgstr ""
179
 
180
- #: ../super_socializer.php:1580 ../super_socializer.php:1605
181
- #: ../super_socializer.php:1630 ../super_socializer.php:1654
182
  msgid "Okay"
183
  msgstr "Окей"
184
 
185
- #: ../super_socializer.php:1605
186
  #, php-format
187
  msgid ""
188
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -190,7 +194,7 @@ msgid ""
190
  "target=\"_blank\">here</a>"
191
  msgstr ""
192
 
193
- #: ../super_socializer.php:1630
194
  #, php-format
195
  msgid ""
196
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -198,7 +202,7 @@ msgid ""
198
  "target=\"_blank\">here</a>"
199
  msgstr ""
200
 
201
- #: ../super_socializer.php:1654
202
  #, php-format
203
  msgid ""
204
  "Your website visitors will see a popup notification (only once) if their "
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-04-04 10:48+0530\n"
6
+ "PO-Revision-Date: 2018-04-04 10:48+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Russian\n"
9
  "Language: ru_RU\n"
17
  "%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2);\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
+ #: ../super_socializer.php:389
21
+ msgid "Problem fetching access token: "
22
+ msgstr ""
23
+
24
+ #: ../super_socializer.php:393 ../super_socializer.php:407
25
  msgid "Facebook SDK returned an error: "
26
  msgstr ""
27
 
28
+ #: ../super_socializer.php:403
29
  msgid "Graph returned an error: "
30
  msgstr ""
31
 
32
+ #: ../super_socializer.php:566
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:593
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:596
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:597
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:863 ../helper.php:963
66
  msgid "Please verify your email address to login."
67
  msgstr "Пожалуйста, подтвердите ваш адрес электронной почты."
68
 
69
+ #: ../super_socializer.php:863
70
  msgid "Your email has been verified. Now you can login to your account"
71
  msgstr "Ваше сообщение было проверено. Теперь вы можете войти в свой аккаунт"
72
 
73
+ #: ../super_socializer.php:867
74
  msgid "Notification"
75
  msgstr "Уведомления"
76
 
77
+ #: ../super_socializer.php:885 ../admin/social_login.php:755
78
  msgid "Email required"
79
  msgstr "Email (Обязательно)"
80
 
81
+ #: ../super_socializer.php:888
82
  msgid "Please check your email inbox to complete the registration."
83
  msgstr "Пожалуйста, проверьте свой почтовый ящик для завершения регистрации."
84
 
85
+ #: ../super_socializer.php:895 ../helper.php:503
86
  msgid "Enter your LiveJournal username"
87
  msgstr "Введите ваше имя пользователя LiveJournal"
88
 
89
+ #: ../super_socializer.php:957
90
  msgid "Leave a reply"
91
  msgstr "Оставить ответ"
92
 
93
+ #: ../super_socializer.php:969 ../inc/social_sharing.php:233
94
  msgid "Shares"
95
  msgstr "Поделились"
96
 
97
+ #: ../super_socializer.php:969 ../inc/social_sharing.php:233
98
  msgid "Share"
99
  msgstr "Поделиться"
100
 
101
+ #: ../super_socializer.php:969
102
  #, fuzzy
103
  msgid "Link copied."
104
  msgstr "LinkedIn"
105
 
106
+ #: ../super_socializer.php:1204
107
  msgid "Super Socializer - General Options"
108
  msgstr "Super Socializer - Общие настройки"
109
 
110
+ #: ../super_socializer.php:1204 ../admin/general_options.php:11
111
  #: ../admin/social_commenting.php:43
112
  msgid "General Options"
113
  msgstr "Основные настройки"
114
 
115
+ #: ../super_socializer.php:1272 ../helper.php:885
116
  msgid "Social Avatar"
117
  msgstr "Социальный аватар"
118
 
119
+ #: ../super_socializer.php:1275
120
  msgid "Small Avatar Url"
121
  msgstr "Ссылка для маленького аватара"
122
 
123
+ #: ../super_socializer.php:1279
124
  msgid "Large Avatar Url"
125
  msgstr "Ссылка для большого аватара"
126
 
127
+ #: ../super_socializer.php:1283 ../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:1287 ../helper.php:889
136
  msgid "Update social avatar, next time I Social Login"
137
  msgstr ""
138
  "Обновление аватара соцсетей в следующий раз при использовании входа через "
139
  "соцсети"
140
 
141
+ #: ../super_socializer.php:1360 ../super_socializer.php:1743
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:1366
150
  msgid "Login with your Social ID"
151
  msgstr "Войти, используя социальный аккаунт"
152
 
153
+ #: ../super_socializer.php:1367
154
  msgid "Email you entered is already registered or invalid"
155
  msgstr ""
156
  "Электронная почта, которую вы ввели, уже зарегистрирована или недействительна"
157
 
158
+ #: ../super_socializer.php:1372
159
  msgid "Please enter a valid email address. You might be required to verify it"
160
  msgstr ""
161
  "Пожалуйста, введите действительный адрес электронной почты. Вам, возможно, "
162
  "потребуется проверить его"
163
 
164
+ #: ../super_socializer.php:1591
165
  #, php-format
166
  msgid ""
167
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
168
  msgstr ""
169
 
170
+ #: ../super_socializer.php:1607
171
  #, php-format
172
  msgid ""
173
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
174
  msgstr ""
175
 
176
+ #: ../super_socializer.php:1631
177
  #, php-format
178
  msgid ""
179
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
181
  "target=\"_blank\">here</a>"
182
  msgstr ""
183
 
184
+ #: ../super_socializer.php:1631 ../super_socializer.php:1656
185
+ #: ../super_socializer.php:1681 ../super_socializer.php:1705
186
  msgid "Okay"
187
  msgstr "Окей"
188
 
189
+ #: ../super_socializer.php:1656
190
  #, php-format
191
  msgid ""
192
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
194
  "target=\"_blank\">here</a>"
195
  msgstr ""
196
 
197
+ #: ../super_socializer.php:1681
198
  #, php-format
199
  msgid ""
200
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
202
  "target=\"_blank\">here</a>"
203
  msgstr ""
204
 
205
+ #: ../super_socializer.php:1705
206
  #, php-format
207
  msgid ""
208
  "Your website visitors will see a popup notification (only once) if their "
languages/super-socializer-uk.mo CHANGED
Binary file
languages/super-socializer-uk.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-03-25 15:06+0530\n"
6
- "PO-Revision-Date: 2018-03-25 15:06+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Ukrainian\n"
9
  "Language: uk\n"
@@ -17,15 +17,19 @@ msgstr ""
17
  "%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2);\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
- #: ../super_socializer.php:390 ../super_socializer.php:404
 
 
 
 
21
  msgid "Facebook SDK returned an error: "
22
  msgstr ""
23
 
24
- #: ../super_socializer.php:400
25
  msgid "Graph returned an error: "
26
  msgstr ""
27
 
28
- #: ../super_socializer.php:563
29
  msgid ""
30
  "cURL is not enabled at your website server. Please contact your website "
31
  "server administrator to enable it."
@@ -33,7 +37,7 @@ msgstr ""
33
  "Curl не включений у вашому веб-сайті. Вам, можливо, буде потрібно звернутися "
34
  "до адміністратора вашого сайту, щоб включити це."
35
 
36
- #: ../super_socializer.php:590
37
  #, php-format
38
  msgid ""
39
  "Enter exactly the following url in <strong>Website</strong> and "
@@ -42,7 +46,7 @@ msgstr ""
42
  "Введіть діюче посилання для <strong> сайту </ strong> та <strong> зворотне "
43
  "посилання </ strong> у вашому додатку Твіттера (дивіться крок 3% s)"
44
 
45
- #: ../super_socializer.php:593
46
  msgid ""
47
  "Make sure cURL is enabled at your website server. You may need to contact "
48
  "the server administrator of your website to verify this"
@@ -51,7 +55,7 @@ msgstr ""
51
  "буде потрібно звернутися до адміністратора сервера вашого сайту, щоб "
52
  "переконатися в цьому."
53
 
54
- #: ../super_socializer.php:594
55
  #, php-format
56
  msgid ""
57
  "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
@@ -59,71 +63,71 @@ msgstr ""
59
  "Переконайтеся, що «Включити Блокування зворотного виклику» параметр "
60
  "відключений. Дивіться крок 4% s"
61
 
62
- #: ../super_socializer.php:860 ../helper.php:963
63
  msgid "Please verify your email address to login."
64
  msgstr "Будь ласка, підтвердіть свою адресу електронної пошти."
65
 
66
- #: ../super_socializer.php:860
67
  msgid "Your email has been verified. Now you can login to your account"
68
  msgstr ""
69
  "Ваша електронна адреса була перевірена. Тепер ви можете увійти до свого "
70
  "облікового запису"
71
 
72
- #: ../super_socializer.php:864
73
  msgid "Notification"
74
  msgstr "Повідомлення"
75
 
76
- #: ../super_socializer.php:882 ../admin/social_login.php:755
77
  msgid "Email required"
78
  msgstr "Електронна адреса (обо'язково)"
79
 
80
- #: ../super_socializer.php:885
81
  msgid "Please check your email inbox to complete the registration."
82
  msgstr "Будь ласка, перевірте вашу поштову скриньку для завершення реєстрації."
83
 
84
- #: ../super_socializer.php:892 ../helper.php:503
85
  msgid "Enter your LiveJournal username"
86
  msgstr "Введіть ваше ім'я користувача LiveJournal"
87
 
88
- #: ../super_socializer.php:954
89
  msgid "Leave a reply"
90
  msgstr "Залишити коментар"
91
 
92
- #: ../super_socializer.php:966 ../inc/social_sharing.php:233
93
  msgid "Shares"
94
  msgstr "Поширили:"
95
 
96
- #: ../super_socializer.php:966 ../inc/social_sharing.php:233
97
  msgid "Share"
98
  msgstr "Поділитися"
99
 
100
- #: ../super_socializer.php:966
101
  #, fuzzy
102
  msgid "Link copied."
103
  msgstr "LinkedIn"
104
 
105
- #: ../super_socializer.php:1153
106
  msgid "Super Socializer - General Options"
107
  msgstr "Super Socializer - Загальні Параметри"
108
 
109
- #: ../super_socializer.php:1153 ../admin/general_options.php:11
110
  #: ../admin/social_commenting.php:43
111
  msgid "General Options"
112
  msgstr "Загальні параметри"
113
 
114
- #: ../super_socializer.php:1221 ../helper.php:885
115
  msgid "Social Avatar"
116
  msgstr "Соціальний Аватар"
117
 
118
- #: ../super_socializer.php:1224
119
  msgid "Small Avatar Url"
120
  msgstr "Посилання для маленького аватара"
121
 
122
- #: ../super_socializer.php:1228
123
  msgid "Large Avatar Url"
124
  msgstr "Посилання для великого аватара"
125
 
126
- #: ../super_socializer.php:1232 ../helper.php:888
127
  msgid ""
128
  "Do not fetch and update social avatar from my profile, next time I Social "
129
  "Login"
@@ -131,13 +135,13 @@ msgstr ""
131
  "Не отримувати і оновлювати соціальний аватар з мого профілю, в наступний "
132
  "раз коли я використовую вхід через соцмережі"
133
 
134
- #: ../super_socializer.php:1236 ../helper.php:889
135
  msgid "Update social avatar, next time I Social Login"
136
  msgstr ""
137
  "Оновлення аватара соцмереж наступного разу при використанні входу через "
138
  "соцмережі"
139
 
140
- #: ../super_socializer.php:1309 ../super_socializer.php:1692
141
  msgid ""
142
  "Your browser is blocking some features of this website. Please follow the "
143
  "instructions at {support_url} to unblock these."
@@ -145,33 +149,33 @@ msgstr ""
145
  "Ваш браузер блокує деякі функції даного веб-сайту. Будь ласка, дотримуйтесь "
146
  "інструкцій в {support_url}, щоб розблокувати функції."
147
 
148
- #: ../super_socializer.php:1315
149
  msgid "Login with your Social ID"
150
  msgstr "Увійти через соціальний аккаунт"
151
 
152
- #: ../super_socializer.php:1316
153
  msgid "Email you entered is already registered or invalid"
154
  msgstr "Електронна пошта, яку ви ввели, вже зареєстрована або недійсна"
155
 
156
- #: ../super_socializer.php:1321
157
  msgid "Please enter a valid email address. You might be required to verify it"
158
  msgstr ""
159
  "Будь ласка, введіть дійсну адресу електронної пошти. Вам, можливо, буде "
160
  "потрібно перевірити його"
161
 
162
- #: ../super_socializer.php:1540
163
  #, php-format
164
  msgid ""
165
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
166
  msgstr ""
167
 
168
- #: ../super_socializer.php:1556
169
  #, php-format
170
  msgid ""
171
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
172
  msgstr ""
173
 
174
- #: ../super_socializer.php:1580
175
  #, php-format
176
  msgid ""
177
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -179,12 +183,12 @@ msgid ""
179
  "target=\"_blank\">here</a>"
180
  msgstr ""
181
 
182
- #: ../super_socializer.php:1580 ../super_socializer.php:1605
183
- #: ../super_socializer.php:1630 ../super_socializer.php:1654
184
  msgid "Okay"
185
  msgstr "Гаразд."
186
 
187
- #: ../super_socializer.php:1605
188
  #, php-format
189
  msgid ""
190
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -192,7 +196,7 @@ msgid ""
192
  "target=\"_blank\">here</a>"
193
  msgstr ""
194
 
195
- #: ../super_socializer.php:1630
196
  #, php-format
197
  msgid ""
198
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -200,7 +204,7 @@ msgid ""
200
  "target=\"_blank\">here</a>"
201
  msgstr ""
202
 
203
- #: ../super_socializer.php:1654
204
  #, php-format
205
  msgid ""
206
  "Your website visitors will see a popup notification (only once) if their "
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-04-04 10:47+0530\n"
6
+ "PO-Revision-Date: 2018-04-04 10:47+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Ukrainian\n"
9
  "Language: uk\n"
17
  "%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2);\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
+ #: ../super_socializer.php:389
21
+ msgid "Problem fetching access token: "
22
+ msgstr ""
23
+
24
+ #: ../super_socializer.php:393 ../super_socializer.php:407
25
  msgid "Facebook SDK returned an error: "
26
  msgstr ""
27
 
28
+ #: ../super_socializer.php:403
29
  msgid "Graph returned an error: "
30
  msgstr ""
31
 
32
+ #: ../super_socializer.php:566
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:593
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:596
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:597
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:863 ../helper.php:963
67
  msgid "Please verify your email address to login."
68
  msgstr "Будь ласка, підтвердіть свою адресу електронної пошти."
69
 
70
+ #: ../super_socializer.php:863
71
  msgid "Your email has been verified. Now you can login to your account"
72
  msgstr ""
73
  "Ваша електронна адреса була перевірена. Тепер ви можете увійти до свого "
74
  "облікового запису"
75
 
76
+ #: ../super_socializer.php:867
77
  msgid "Notification"
78
  msgstr "Повідомлення"
79
 
80
+ #: ../super_socializer.php:885 ../admin/social_login.php:755
81
  msgid "Email required"
82
  msgstr "Електронна адреса (обо'язково)"
83
 
84
+ #: ../super_socializer.php:888
85
  msgid "Please check your email inbox to complete the registration."
86
  msgstr "Будь ласка, перевірте вашу поштову скриньку для завершення реєстрації."
87
 
88
+ #: ../super_socializer.php:895 ../helper.php:503
89
  msgid "Enter your LiveJournal username"
90
  msgstr "Введіть ваше ім'я користувача LiveJournal"
91
 
92
+ #: ../super_socializer.php:957
93
  msgid "Leave a reply"
94
  msgstr "Залишити коментар"
95
 
96
+ #: ../super_socializer.php:969 ../inc/social_sharing.php:233
97
  msgid "Shares"
98
  msgstr "Поширили:"
99
 
100
+ #: ../super_socializer.php:969 ../inc/social_sharing.php:233
101
  msgid "Share"
102
  msgstr "Поділитися"
103
 
104
+ #: ../super_socializer.php:969
105
  #, fuzzy
106
  msgid "Link copied."
107
  msgstr "LinkedIn"
108
 
109
+ #: ../super_socializer.php:1204
110
  msgid "Super Socializer - General Options"
111
  msgstr "Super Socializer - Загальні Параметри"
112
 
113
+ #: ../super_socializer.php:1204 ../admin/general_options.php:11
114
  #: ../admin/social_commenting.php:43
115
  msgid "General Options"
116
  msgstr "Загальні параметри"
117
 
118
+ #: ../super_socializer.php:1272 ../helper.php:885
119
  msgid "Social Avatar"
120
  msgstr "Соціальний Аватар"
121
 
122
+ #: ../super_socializer.php:1275
123
  msgid "Small Avatar Url"
124
  msgstr "Посилання для маленького аватара"
125
 
126
+ #: ../super_socializer.php:1279
127
  msgid "Large Avatar Url"
128
  msgstr "Посилання для великого аватара"
129
 
130
+ #: ../super_socializer.php:1283 ../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:1287 ../helper.php:889
139
  msgid "Update social avatar, next time I Social Login"
140
  msgstr ""
141
  "Оновлення аватара соцмереж наступного разу при використанні входу через "
142
  "соцмережі"
143
 
144
+ #: ../super_socializer.php:1360 ../super_socializer.php:1743
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:1366
153
  msgid "Login with your Social ID"
154
  msgstr "Увійти через соціальний аккаунт"
155
 
156
+ #: ../super_socializer.php:1367
157
  msgid "Email you entered is already registered or invalid"
158
  msgstr "Електронна пошта, яку ви ввели, вже зареєстрована або недійсна"
159
 
160
+ #: ../super_socializer.php:1372
161
  msgid "Please enter a valid email address. You might be required to verify it"
162
  msgstr ""
163
  "Будь ласка, введіть дійсну адресу електронної пошти. Вам, можливо, буде "
164
  "потрібно перевірити його"
165
 
166
+ #: ../super_socializer.php:1591
167
  #, php-format
168
  msgid ""
169
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
170
  msgstr ""
171
 
172
+ #: ../super_socializer.php:1607
173
  #, php-format
174
  msgid ""
175
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
176
  msgstr ""
177
 
178
+ #: ../super_socializer.php:1631
179
  #, php-format
180
  msgid ""
181
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
183
  "target=\"_blank\">here</a>"
184
  msgstr ""
185
 
186
+ #: ../super_socializer.php:1631 ../super_socializer.php:1656
187
+ #: ../super_socializer.php:1681 ../super_socializer.php:1705
188
  msgid "Okay"
189
  msgstr "Гаразд."
190
 
191
+ #: ../super_socializer.php:1656
192
  #, php-format
193
  msgid ""
194
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
196
  "target=\"_blank\">here</a>"
197
  msgstr ""
198
 
199
+ #: ../super_socializer.php:1681
200
  #, php-format
201
  msgid ""
202
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
204
  "target=\"_blank\">here</a>"
205
  msgstr ""
206
 
207
+ #: ../super_socializer.php:1705
208
  #, php-format
209
  msgid ""
210
  "Your website visitors will see a popup notification (only once) if their "
languages/super-socializer-zh_CN.mo CHANGED
Binary file
languages/super-socializer-zh_CN.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-03-25 15:06+0530\n"
6
- "PO-Revision-Date: 2018-03-25 15:06+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: zh_CN\n"
@@ -16,15 +16,19 @@ msgstr ""
16
  "Plural-Forms: nplurals=1; plural=0;\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
- #: ../super_socializer.php:390 ../super_socializer.php:404
 
 
 
 
20
  msgid "Facebook SDK returned an error: "
21
  msgstr ""
22
 
23
- #: ../super_socializer.php:400
24
  msgid "Graph returned an error: "
25
  msgstr ""
26
 
27
- #: ../super_socializer.php:563
28
  #, fuzzy
29
  msgid ""
30
  "cURL is not enabled at your website server. Please contact your website "
@@ -32,7 +36,7 @@ msgid ""
32
  msgstr ""
33
  "请确保在您的网站服务器上启用了cURL。对此,请您与您的网站的服务器管理员核实。"
34
 
35
- #: ../super_socializer.php:590
36
  #, php-format
37
  msgid ""
38
  "Enter exactly the following url in <strong>Website</strong> and "
@@ -41,122 +45,122 @@ msgstr ""
41
  "在Twitter 应用程序的选项中输入准确的<strong>网站</strong>和<strong>回调 Url</"
42
  "strong> 的url地址 (请参阅步骤 3 %s)"
43
 
44
- #: ../super_socializer.php:593
45
  msgid ""
46
  "Make sure cURL is enabled at your website server. You may need to contact "
47
  "the server administrator of your website to verify this"
48
  msgstr ""
49
  "请确保在您的网站服务器上启用了cURL。对此,请您与您的网站的服务器管理员核实。"
50
 
51
- #: ../super_socializer.php:594
52
  #, php-format
53
  msgid ""
54
  "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
55
  msgstr ""
56
 
57
- #: ../super_socializer.php:860 ../helper.php:963
58
  msgid "Please verify your email address to login."
59
  msgstr "请验证您的电子邮件地址以便登录。"
60
 
61
- #: ../super_socializer.php:860
62
  msgid "Your email has been verified. Now you can login to your account"
63
  msgstr "您的电子邮件已验证。现在你可以登录到您的帐户"
64
 
65
- #: ../super_socializer.php:864
66
  msgid "Notification"
67
  msgstr "通知"
68
 
69
- #: ../super_socializer.php:882 ../admin/social_login.php:755
70
  msgid "Email required"
71
  msgstr "邮件地址(比选)"
72
 
73
- #: ../super_socializer.php:885
74
  msgid "Please check your email inbox to complete the registration."
75
  msgstr "请检查您的电子邮件收件箱以完成注册。"
76
 
77
- #: ../super_socializer.php:892 ../helper.php:503
78
  msgid "Enter your LiveJournal username"
79
  msgstr ""
80
 
81
- #: ../super_socializer.php:954
82
  msgid "Leave a reply"
83
  msgstr "回复"
84
 
85
- #: ../super_socializer.php:966 ../inc/social_sharing.php:233
86
  msgid "Shares"
87
  msgstr ""
88
 
89
- #: ../super_socializer.php:966 ../inc/social_sharing.php:233
90
  msgid "Share"
91
  msgstr ""
92
 
93
- #: ../super_socializer.php:966
94
  #, fuzzy
95
  msgid "Link copied."
96
  msgstr "LinkedIn"
97
 
98
- #: ../super_socializer.php:1153
99
  msgid "Super Socializer - General Options"
100
  msgstr "Super Socializer-常规选项"
101
 
102
- #: ../super_socializer.php:1153 ../admin/general_options.php:11
103
  #: ../admin/social_commenting.php:43
104
  msgid "General Options"
105
  msgstr "常规选项"
106
 
107
- #: ../super_socializer.php:1221 ../helper.php:885
108
  msgid "Social Avatar"
109
  msgstr "社会化头像"
110
 
111
- #: ../super_socializer.php:1224
112
  msgid "Small Avatar Url"
113
  msgstr "小头像 Url"
114
 
115
- #: ../super_socializer.php:1228
116
  msgid "Large Avatar Url"
117
  msgstr "大头像 Url"
118
 
119
- #: ../super_socializer.php:1232 ../helper.php:888
120
  msgid ""
121
  "Do not fetch and update social avatar from my profile, next time I Social "
122
  "Login"
123
  msgstr "不从我的个人资料里获取及更新社会化头像,下次社会化登录"
124
 
125
- #: ../super_socializer.php:1236 ../helper.php:889
126
  msgid "Update social avatar, next time I Social Login"
127
  msgstr "更新社会化头像,下次社会化登录"
128
 
129
- #: ../super_socializer.php:1309 ../super_socializer.php:1692
130
  msgid ""
131
  "Your browser is blocking some features of this website. Please follow the "
132
  "instructions at {support_url} to unblock these."
133
  msgstr ""
134
 
135
- #: ../super_socializer.php:1315
136
  msgid "Login with your Social ID"
137
  msgstr ""
138
 
139
- #: ../super_socializer.php:1316
140
  msgid "Email you entered is already registered or invalid"
141
  msgstr "您输入的电子邮件已经注册或无效"
142
 
143
- #: ../super_socializer.php:1321
144
  msgid "Please enter a valid email address. You might be required to verify it"
145
  msgstr "请输入一个有效的电子邮件地址。您可能需要验证它"
146
 
147
- #: ../super_socializer.php:1540
148
  #, php-format
149
  msgid ""
150
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
151
  msgstr ""
152
 
153
- #: ../super_socializer.php:1556
154
  #, php-format
155
  msgid ""
156
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
157
  msgstr ""
158
 
159
- #: ../super_socializer.php:1580
160
  #, php-format
161
  msgid ""
162
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -164,12 +168,12 @@ msgid ""
164
  "target=\"_blank\">here</a>"
165
  msgstr ""
166
 
167
- #: ../super_socializer.php:1580 ../super_socializer.php:1605
168
- #: ../super_socializer.php:1630 ../super_socializer.php:1654
169
  msgid "Okay"
170
  msgstr ""
171
 
172
- #: ../super_socializer.php:1605
173
  #, php-format
174
  msgid ""
175
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -177,7 +181,7 @@ msgid ""
177
  "target=\"_blank\">here</a>"
178
  msgstr ""
179
 
180
- #: ../super_socializer.php:1630
181
  #, php-format
182
  msgid ""
183
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -185,7 +189,7 @@ msgid ""
185
  "target=\"_blank\">here</a>"
186
  msgstr ""
187
 
188
- #: ../super_socializer.php:1654
189
  #, php-format
190
  msgid ""
191
  "Your website visitors will see a popup notification (only once) if their "
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-04-04 10:47+0530\n"
6
+ "PO-Revision-Date: 2018-04-04 10:47+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: zh_CN\n"
16
  "Plural-Forms: nplurals=1; plural=0;\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
+ #: ../super_socializer.php:389
20
+ msgid "Problem fetching access token: "
21
+ msgstr ""
22
+
23
+ #: ../super_socializer.php:393 ../super_socializer.php:407
24
  msgid "Facebook SDK returned an error: "
25
  msgstr ""
26
 
27
+ #: ../super_socializer.php:403
28
  msgid "Graph returned an error: "
29
  msgstr ""
30
 
31
+ #: ../super_socializer.php:566
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:593
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:596
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:597
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:863 ../helper.php:963
62
  msgid "Please verify your email address to login."
63
  msgstr "请验证您的电子邮件地址以便登录。"
64
 
65
+ #: ../super_socializer.php:863
66
  msgid "Your email has been verified. Now you can login to your account"
67
  msgstr "您的电子邮件已验证。现在你可以登录到您的帐户"
68
 
69
+ #: ../super_socializer.php:867
70
  msgid "Notification"
71
  msgstr "通知"
72
 
73
+ #: ../super_socializer.php:885 ../admin/social_login.php:755
74
  msgid "Email required"
75
  msgstr "邮件地址(比选)"
76
 
77
+ #: ../super_socializer.php:888
78
  msgid "Please check your email inbox to complete the registration."
79
  msgstr "请检查您的电子邮件收件箱以完成注册。"
80
 
81
+ #: ../super_socializer.php:895 ../helper.php:503
82
  msgid "Enter your LiveJournal username"
83
  msgstr ""
84
 
85
+ #: ../super_socializer.php:957
86
  msgid "Leave a reply"
87
  msgstr "回复"
88
 
89
+ #: ../super_socializer.php:969 ../inc/social_sharing.php:233
90
  msgid "Shares"
91
  msgstr ""
92
 
93
+ #: ../super_socializer.php:969 ../inc/social_sharing.php:233
94
  msgid "Share"
95
  msgstr ""
96
 
97
+ #: ../super_socializer.php:969
98
  #, fuzzy
99
  msgid "Link copied."
100
  msgstr "LinkedIn"
101
 
102
+ #: ../super_socializer.php:1204
103
  msgid "Super Socializer - General Options"
104
  msgstr "Super Socializer-常规选项"
105
 
106
+ #: ../super_socializer.php:1204 ../admin/general_options.php:11
107
  #: ../admin/social_commenting.php:43
108
  msgid "General Options"
109
  msgstr "常规选项"
110
 
111
+ #: ../super_socializer.php:1272 ../helper.php:885
112
  msgid "Social Avatar"
113
  msgstr "社会化头像"
114
 
115
+ #: ../super_socializer.php:1275
116
  msgid "Small Avatar Url"
117
  msgstr "小头像 Url"
118
 
119
+ #: ../super_socializer.php:1279
120
  msgid "Large Avatar Url"
121
  msgstr "大头像 Url"
122
 
123
+ #: ../super_socializer.php:1283 ../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:1287 ../helper.php:889
130
  msgid "Update social avatar, next time I Social Login"
131
  msgstr "更新社会化头像,下次社会化登录"
132
 
133
+ #: ../super_socializer.php:1360 ../super_socializer.php:1743
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:1366
140
  msgid "Login with your Social ID"
141
  msgstr ""
142
 
143
+ #: ../super_socializer.php:1367
144
  msgid "Email you entered is already registered or invalid"
145
  msgstr "您输入的电子邮件已经注册或无效"
146
 
147
+ #: ../super_socializer.php:1372
148
  msgid "Please enter a valid email address. You might be required to verify it"
149
  msgstr "请输入一个有效的电子邮件地址。您可能需要验证它"
150
 
151
+ #: ../super_socializer.php:1591
152
  #, php-format
153
  msgid ""
154
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
155
  msgstr ""
156
 
157
+ #: ../super_socializer.php:1607
158
  #, php-format
159
  msgid ""
160
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
161
  msgstr ""
162
 
163
+ #: ../super_socializer.php:1631
164
  #, php-format
165
  msgid ""
166
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
168
  "target=\"_blank\">here</a>"
169
  msgstr ""
170
 
171
+ #: ../super_socializer.php:1631 ../super_socializer.php:1656
172
+ #: ../super_socializer.php:1681 ../super_socializer.php:1705
173
  msgid "Okay"
174
  msgstr ""
175
 
176
+ #: ../super_socializer.php:1656
177
  #, php-format
178
  msgid ""
179
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
181
  "target=\"_blank\">here</a>"
182
  msgstr ""
183
 
184
+ #: ../super_socializer.php:1681
185
  #, php-format
186
  msgid ""
187
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
189
  "target=\"_blank\">here</a>"
190
  msgstr ""
191
 
192
+ #: ../super_socializer.php:1705
193
  #, php-format
194
  msgid ""
195
  "Your website visitors will see a popup notification (only once) if their "
languages/super-socializer.pot CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-03-25 15:08+0530\n"
6
- "PO-Revision-Date: 2018-03-25 15:08+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: en_IN\n"
@@ -15,141 +15,145 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
- #: ../super_socializer.php:390 ../super_socializer.php:404
 
 
 
 
19
  msgid "Facebook SDK returned an error: "
20
  msgstr ""
21
 
22
- #: ../super_socializer.php:400
23
  msgid "Graph returned an error: "
24
  msgstr ""
25
 
26
- #: ../super_socializer.php:563
27
  msgid ""
28
  "cURL is not enabled at your website server. Please contact your website "
29
  "server administrator to enable it."
30
  msgstr ""
31
 
32
- #: ../super_socializer.php:590
33
  #, php-format
34
  msgid ""
35
  "Enter exactly the following url in <strong>Website</strong> and "
36
  "<strong>Callback Url</strong> options in your Twitter app (see step 3 %s)"
37
  msgstr ""
38
 
39
- #: ../super_socializer.php:593
40
  msgid ""
41
  "Make sure cURL is enabled at your website server. You may need to contact "
42
  "the server administrator of your website to verify this"
43
  msgstr ""
44
 
45
- #: ../super_socializer.php:594
46
  #, php-format
47
  msgid ""
48
  "Make sure that \"Enable Callback Locking\" option is disabled. See step 4 %s"
49
  msgstr ""
50
 
51
- #: ../super_socializer.php:860 ../helper.php:963
52
  msgid "Please verify your email address to login."
53
  msgstr ""
54
 
55
- #: ../super_socializer.php:860
56
  msgid "Your email has been verified. Now you can login to your account"
57
  msgstr ""
58
 
59
- #: ../super_socializer.php:864
60
  msgid "Notification"
61
  msgstr ""
62
 
63
- #: ../super_socializer.php:882 ../admin/social_login.php:755
64
  msgid "Email required"
65
  msgstr ""
66
 
67
- #: ../super_socializer.php:885
68
  msgid "Please check your email inbox to complete the registration."
69
  msgstr ""
70
 
71
- #: ../super_socializer.php:892 ../helper.php:503
72
  msgid "Enter your LiveJournal username"
73
  msgstr ""
74
 
75
- #: ../super_socializer.php:954
76
  msgid "Leave a reply"
77
  msgstr ""
78
 
79
- #: ../super_socializer.php:966 ../inc/social_sharing.php:233
80
  msgid "Shares"
81
  msgstr ""
82
 
83
- #: ../super_socializer.php:966 ../inc/social_sharing.php:233
84
  msgid "Share"
85
  msgstr ""
86
 
87
- #: ../super_socializer.php:966
88
  msgid "Link copied."
89
  msgstr ""
90
 
91
- #: ../super_socializer.php:1153
92
  msgid "Super Socializer - General Options"
93
  msgstr ""
94
 
95
- #: ../super_socializer.php:1153 ../admin/general_options.php:11
96
  #: ../admin/social_commenting.php:43
97
  msgid "General Options"
98
  msgstr ""
99
 
100
- #: ../super_socializer.php:1221 ../helper.php:885
101
  msgid "Social Avatar"
102
  msgstr ""
103
 
104
- #: ../super_socializer.php:1224
105
  msgid "Small Avatar Url"
106
  msgstr ""
107
 
108
- #: ../super_socializer.php:1228
109
  msgid "Large Avatar Url"
110
  msgstr ""
111
 
112
- #: ../super_socializer.php:1232 ../helper.php:888
113
  msgid ""
114
  "Do not fetch and update social avatar from my profile, next time I Social "
115
  "Login"
116
  msgstr ""
117
 
118
- #: ../super_socializer.php:1236 ../helper.php:889
119
  msgid "Update social avatar, next time I Social Login"
120
  msgstr ""
121
 
122
- #: ../super_socializer.php:1309 ../super_socializer.php:1692
123
  msgid ""
124
  "Your browser is blocking some features of this website. Please follow the "
125
  "instructions at {support_url} to unblock these."
126
  msgstr ""
127
 
128
- #: ../super_socializer.php:1315
129
  msgid "Login with your Social ID"
130
  msgstr ""
131
 
132
- #: ../super_socializer.php:1316
133
  msgid "Email you entered is already registered or invalid"
134
  msgstr ""
135
 
136
- #: ../super_socializer.php:1321
137
  msgid "Please enter a valid email address. You might be required to verify it"
138
  msgstr ""
139
 
140
- #: ../super_socializer.php:1540
141
  #, php-format
142
  msgid ""
143
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
144
  msgstr ""
145
 
146
- #: ../super_socializer.php:1556
147
  #, php-format
148
  msgid ""
149
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
150
  msgstr ""
151
 
152
- #: ../super_socializer.php:1580
153
  #, php-format
154
  msgid ""
155
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
@@ -157,12 +161,12 @@ msgid ""
157
  "target=\"_blank\">here</a>"
158
  msgstr ""
159
 
160
- #: ../super_socializer.php:1580 ../super_socializer.php:1605
161
- #: ../super_socializer.php:1630 ../super_socializer.php:1654
162
  msgid "Okay"
163
  msgstr ""
164
 
165
- #: ../super_socializer.php:1605
166
  #, php-format
167
  msgid ""
168
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
@@ -170,7 +174,7 @@ msgid ""
170
  "target=\"_blank\">here</a>"
171
  msgstr ""
172
 
173
- #: ../super_socializer.php:1630
174
  #, php-format
175
  msgid ""
176
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
@@ -178,7 +182,7 @@ msgid ""
178
  "target=\"_blank\">here</a>"
179
  msgstr ""
180
 
181
- #: ../super_socializer.php:1654
182
  #, php-format
183
  msgid ""
184
  "Your website visitors will see a popup notification (only once) if their "
2
  msgstr ""
3
  "Project-Id-Version: Super Socializer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-04-04 10:49+0530\n"
6
+ "PO-Revision-Date: 2018-04-04 10:49+0530\n"
7
  "Last-Translator: Team Heateor <hello@heateor.com>\n"
8
  "Language-Team: Heateor <hello@heateor.com>\n"
9
  "Language: en_IN\n"
15
  "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
+ #: ../super_socializer.php:389
19
+ msgid "Problem fetching access token: "
20
+ msgstr ""
21
+
22
+ #: ../super_socializer.php:393 ../super_socializer.php:407
23
  msgid "Facebook SDK returned an error: "
24
  msgstr ""
25
 
26
+ #: ../super_socializer.php:403
27
  msgid "Graph returned an error: "
28
  msgstr ""
29
 
30
+ #: ../super_socializer.php:566
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:593
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:596
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:597
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:863 ../helper.php:963
56
  msgid "Please verify your email address to login."
57
  msgstr ""
58
 
59
+ #: ../super_socializer.php:863
60
  msgid "Your email has been verified. Now you can login to your account"
61
  msgstr ""
62
 
63
+ #: ../super_socializer.php:867
64
  msgid "Notification"
65
  msgstr ""
66
 
67
+ #: ../super_socializer.php:885 ../admin/social_login.php:755
68
  msgid "Email required"
69
  msgstr ""
70
 
71
+ #: ../super_socializer.php:888
72
  msgid "Please check your email inbox to complete the registration."
73
  msgstr ""
74
 
75
+ #: ../super_socializer.php:895 ../helper.php:503
76
  msgid "Enter your LiveJournal username"
77
  msgstr ""
78
 
79
+ #: ../super_socializer.php:957
80
  msgid "Leave a reply"
81
  msgstr ""
82
 
83
+ #: ../super_socializer.php:969 ../inc/social_sharing.php:233
84
  msgid "Shares"
85
  msgstr ""
86
 
87
+ #: ../super_socializer.php:969 ../inc/social_sharing.php:233
88
  msgid "Share"
89
  msgstr ""
90
 
91
+ #: ../super_socializer.php:969
92
  msgid "Link copied."
93
  msgstr ""
94
 
95
+ #: ../super_socializer.php:1204
96
  msgid "Super Socializer - General Options"
97
  msgstr ""
98
 
99
+ #: ../super_socializer.php:1204 ../admin/general_options.php:11
100
  #: ../admin/social_commenting.php:43
101
  msgid "General Options"
102
  msgstr ""
103
 
104
+ #: ../super_socializer.php:1272 ../helper.php:885
105
  msgid "Social Avatar"
106
  msgstr ""
107
 
108
+ #: ../super_socializer.php:1275
109
  msgid "Small Avatar Url"
110
  msgstr ""
111
 
112
+ #: ../super_socializer.php:1279
113
  msgid "Large Avatar Url"
114
  msgstr ""
115
 
116
+ #: ../super_socializer.php:1283 ../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:1287 ../helper.php:889
123
  msgid "Update social avatar, next time I Social Login"
124
  msgstr ""
125
 
126
+ #: ../super_socializer.php:1360 ../super_socializer.php:1743
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:1366
133
  msgid "Login with your Social ID"
134
  msgstr ""
135
 
136
+ #: ../super_socializer.php:1367
137
  msgid "Email you entered is already registered or invalid"
138
  msgstr ""
139
 
140
+ #: ../super_socializer.php:1372
141
  msgid "Please enter a valid email address. You might be required to verify it"
142
  msgstr ""
143
 
144
+ #: ../super_socializer.php:1591
145
  #, php-format
146
  msgid ""
147
  "To continue using Steam login save Steam API key <a href=\"%s\">here</a>"
148
  msgstr ""
149
 
150
+ #: ../super_socializer.php:1607
151
  #, php-format
152
  msgid ""
153
  "To continue using Social Login, save the secret keys <a href=\"%s\">here</a>"
154
  msgstr ""
155
 
156
+ #: ../super_socializer.php:1631
157
  #, php-format
158
  msgid ""
159
  "Add %s in \"Valid OAuth redirect URIs\" option in your Facebook app settings "
161
  "target=\"_blank\">here</a>"
162
  msgstr ""
163
 
164
+ #: ../super_socializer.php:1631 ../super_socializer.php:1656
165
+ #: ../super_socializer.php:1681 ../super_socializer.php:1705
166
  msgid "Okay"
167
  msgstr ""
168
 
169
+ #: ../super_socializer.php:1656
170
  #, php-format
171
  msgid ""
172
  "Add %s in \"Authorized Redirect URLs\" option in your Linkedin app settings "
174
  "target=\"_blank\">here</a>"
175
  msgstr ""
176
 
177
+ #: ../super_socializer.php:1681
178
  #, php-format
179
  msgid ""
180
  "Add %s in \"Authorized redirect URIs\" option in your Google client settings "
182
  "target=\"_blank\">here</a>"
183
  msgstr ""
184
 
185
+ #: ../super_socializer.php:1705
186
  #, php-format
187
  msgid ""
188
  "Your website visitors will see a popup notification (only once) if their "
library/Twitch/index.php ADDED
@@ -0,0 +1 @@
 
1
+ <?php die("Silence is Golden"); ?>
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: Heateor, the_champ, Hungarian Translator: László Tavaszi http://
3
  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.4
7
- Stable tag: 7.11.7
8
  License: GPLv2 or later
9
 
10
  The unique Social Plugin to let you integrate Social Login, Social Share, Social Comments and Social Media follow at your website
@@ -209,6 +209,11 @@ Yes, we can help you with it. Just drop an email at support[ at ]heateor[ dot ]c
209
  8. **Social Commenting**: Disqus Commenting selected
210
 
211
  == Changelog ==
 
 
 
 
 
212
  = 7.11.7 =
213
  * [Bugfix] Redirection to same page was not working for Facebook and Vkontakte social login
214
  * [Improvement] Added Twitch in social login networks
@@ -1487,4 +1492,9 @@ Yes, we can help you with it. Just drop an email at support[ at ]heateor[ dot ]c
1487
 
1488
  = 7.11.7 =
1489
  * [Bugfix] Redirection to same page was not working for Facebook and Vkontakte social login
1490
- * [Improvement] Added Twitch in social login networks
 
 
 
 
 
3
  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.5
7
+ Stable tag: 7.11.8
8
  License: GPLv2 or later
9
 
10
  The unique Social Plugin to let you integrate Social Login, Social Share, Social Comments and Social Media follow at your website
209
  8. **Social Commenting**: Disqus Commenting selected
210
 
211
  == Changelog ==
212
+ = 7.11.8 =
213
+ * [Bugfix] Google login stopped working due to some changes in Google OAuth process
214
+ * [Bugfix] Facebook login window was needed to be streched to see the content inside, in a few cases
215
+ * [Bugfix] Short url option was not working for Copy Link icon
216
+
217
  = 7.11.7 =
218
  * [Bugfix] Redirection to same page was not working for Facebook and Vkontakte social login
219
  * [Improvement] Added Twitch in social login networks
1492
 
1493
  = 7.11.7 =
1494
  * [Bugfix] Redirection to same page was not working for Facebook and Vkontakte social login
1495
+ * [Improvement] Added Twitch in social login networks
1496
+
1497
+ = 7.11.8 =
1498
+ * [Bugfix] Google login stopped working due to some changes in Google OAuth process
1499
+ * [Bugfix] Facebook login window was needed to be streched to see the content inside, in a few cases
1500
+ * [Bugfix] Short url option was not working for Copy Link icon
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.7
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.7');
15
 
16
  require 'helper.php';
17
 
@@ -386,6 +386,9 @@ function the_champ_connect(){
386
  try{
387
  $accessToken = $helper->getAccessToken(home_url() . '/?SuperSocializerAuth=Facebook');
388
  }catch(Facebook\Exceptions\FacebookResponseException $e){
 
 
 
389
  }catch(Facebook\Exceptions\FacebookSDKException $e){
390
  _e('Facebook SDK returned an error: ', 'super-socializer');
391
  echo $e->getMessage();
@@ -432,7 +435,7 @@ function the_champ_connect(){
432
  }
433
  }
434
  }
435
- if((isset($_GET['SuperSocializerAuth']) && sanitize_text_field($_GET['SuperSocializerAuth']) == 'Google') || (isset($_GET['code']) && isset($_GET['session_state']))){
436
  if(isset($theChampLoginOptions['google_key']) && $theChampLoginOptions['google_key'] != '' && isset($theChampLoginOptions['google_secret']) && $theChampLoginOptions['google_secret'] != ''){
437
  require_once 'library/Google/Config.php';
438
  require_once 'library/Google/Service.php';
@@ -463,13 +466,13 @@ function the_champ_connect(){
463
  //Send Client Request
464
  $objOAuthService = new Google_Service_Oauth2($googleClient);
465
  $gpAuthUrl = $googleClient->createAuthUrl() . '&state=' . (isset($_GET['super_socializer_redirect_to']) ? esc_url(trim($_GET['super_socializer_redirect_to'])) : '');
466
- if(!isset($_GET['code']) && !isset($_GET['session_state'])){
467
  wp_redirect($gpAuthUrl);
468
  die;
469
  }
470
  }
471
  }
472
- if(isset($_GET['code']) && isset($_GET['session_state'])){
473
  //Authenticate code from Google OAuth Flow
474
  $googleClient->authenticate($_GET['code']);
475
  $accessTokenStr = $googleClient->getAccessToken();
@@ -963,8 +966,56 @@ function the_champ_frontend_scripts(){
963
  if(the_champ_social_sharing_enabled() || (the_champ_social_counter_enabled() && the_champ_vertical_social_counter_enabled())){
964
  global $theChampSharingOptions, $theChampCounterOptions, $post;
965
  ?>
966
- <script> var theChampSharingAjaxUrl = '<?php echo get_admin_url() ?>admin-ajax.php', heateorSsUrlCountFetched = [], heateorSsSharesText = '<?php echo htmlspecialchars(__('Shares', 'super-socializer'), ENT_QUOTES); ?>', heateorSsShareText = '<?php echo htmlspecialchars(__('Share', 'super-socializer'), ENT_QUOTES); ?>', theChampPluginIconPath = '<?php echo plugins_url('images/logo.png', __FILE__) ?>', theChampHorizontalSharingCountEnable = <?php echo isset($theChampSharingOptions['enable']) && isset($theChampSharingOptions['hor_enable']) && ( isset($theChampSharingOptions['horizontal_counts']) || isset($theChampSharingOptions['horizontal_total_shares']) ) ? 1 : 0 ?>, theChampVerticalSharingCountEnable = <?php echo isset($theChampSharingOptions['enable']) && isset($theChampSharingOptions['vertical_enable']) && ( isset($theChampSharingOptions['vertical_counts']) || isset($theChampSharingOptions['vertical_total_shares']) ) ? 1 : 0 ?>, theChampSharingOffset = <?php echo (isset($theChampSharingOptions['alignment']) && $theChampSharingOptions['alignment'] != '' && isset($theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset']) && $theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset'] != '' ? $theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset'] : 0) ?>, theChampCounterOffset = <?php echo (isset($theChampCounterOptions['alignment']) && $theChampCounterOptions['alignment'] != '' && isset($theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset']) && $theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset'] != '' ? $theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset'] : 0) ?>, theChampMobileStickySharingEnabled = <?php echo isset($theChampSharingOptions['vertical_enable']) && isset($theChampSharingOptions['bottom_mobile_sharing']) && $theChampSharingOptions['horizontal_screen_width'] != '' ? 1 : 0; ?>;var heateorSsCopyLinkMessage = "<?php echo htmlspecialchars(__('Link copied.', 'super-socializer'), ENT_QUOTES); ?>";
967
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
968
  if(isset($theChampSharingOptions['horizontal_counts']) && isset($theChampSharingOptions['horizontal_counter_position'])){
969
  echo in_array($theChampSharingOptions['horizontal_counter_position'], array('inner_left', 'inner_right')) ? 'var theChampReduceHorizontalSvgWidth = true;' : '';
970
  echo in_array($theChampSharingOptions['horizontal_counter_position'], array('inner_top', 'inner_bottom')) ? 'var theChampReduceHorizontalSvgHeight = true;' : '';
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.8
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.8');
15
 
16
  require 'helper.php';
17
 
386
  try{
387
  $accessToken = $helper->getAccessToken(home_url() . '/?SuperSocializerAuth=Facebook');
388
  }catch(Facebook\Exceptions\FacebookResponseException $e){
389
+ _e('Problem fetching access token: ', 'super-socializer');
390
+ echo $e->getMessage();
391
+ die;
392
  }catch(Facebook\Exceptions\FacebookSDKException $e){
393
  _e('Facebook SDK returned an error: ', 'super-socializer');
394
  echo $e->getMessage();
435
  }
436
  }
437
  }
438
+ if((isset($_GET['SuperSocializerAuth']) && sanitize_text_field($_GET['SuperSocializerAuth']) == 'Google') || (isset($_GET['code']) && isset($_GET['state']))){
439
  if(isset($theChampLoginOptions['google_key']) && $theChampLoginOptions['google_key'] != '' && isset($theChampLoginOptions['google_secret']) && $theChampLoginOptions['google_secret'] != ''){
440
  require_once 'library/Google/Config.php';
441
  require_once 'library/Google/Service.php';
466
  //Send Client Request
467
  $objOAuthService = new Google_Service_Oauth2($googleClient);
468
  $gpAuthUrl = $googleClient->createAuthUrl() . '&state=' . (isset($_GET['super_socializer_redirect_to']) ? esc_url(trim($_GET['super_socializer_redirect_to'])) : '');
469
+ if(!isset($_GET['code']) && !isset($_GET['state'])){
470
  wp_redirect($gpAuthUrl);
471
  die;
472
  }
473
  }
474
  }
475
+ if(isset($_GET['code']) && isset($_GET['state'])){
476
  //Authenticate code from Google OAuth Flow
477
  $googleClient->authenticate($_GET['code']);
478
  $accessTokenStr = $googleClient->getAccessToken();
966
  if(the_champ_social_sharing_enabled() || (the_champ_social_counter_enabled() && the_champ_vertical_social_counter_enabled())){
967
  global $theChampSharingOptions, $theChampCounterOptions, $post;
968
  ?>
969
+ <script> var theChampSharingAjaxUrl = '<?php echo get_admin_url() ?>admin-ajax.php', heateorSsUrlCountFetched = [], heateorSsSharesText = '<?php echo htmlspecialchars(__('Shares', 'super-socializer'), ENT_QUOTES); ?>', heateorSsShareText = '<?php echo htmlspecialchars(__('Share', 'super-socializer'), ENT_QUOTES); ?>', theChampPluginIconPath = '<?php echo plugins_url('images/logo.png', __FILE__) ?>', theChampHorizontalSharingCountEnable = <?php echo isset($theChampSharingOptions['enable']) && isset($theChampSharingOptions['hor_enable']) && ( isset($theChampSharingOptions['horizontal_counts']) || isset($theChampSharingOptions['horizontal_total_shares']) ) ? 1 : 0 ?>, theChampVerticalSharingCountEnable = <?php echo isset($theChampSharingOptions['enable']) && isset($theChampSharingOptions['vertical_enable']) && ( isset($theChampSharingOptions['vertical_counts']) || isset($theChampSharingOptions['vertical_total_shares']) ) ? 1 : 0 ?>, theChampSharingOffset = <?php echo (isset($theChampSharingOptions['alignment']) && $theChampSharingOptions['alignment'] != '' && isset($theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset']) && $theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset'] != '' ? $theChampSharingOptions[$theChampSharingOptions['alignment'].'_offset'] : 0) ?>, theChampCounterOffset = <?php echo (isset($theChampCounterOptions['alignment']) && $theChampCounterOptions['alignment'] != '' && isset($theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset']) && $theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset'] != '' ? $theChampCounterOptions[$theChampCounterOptions['alignment'].'_offset'] : 0) ?>, theChampMobileStickySharingEnabled = <?php echo isset($theChampSharingOptions['vertical_enable']) && isset($theChampSharingOptions['bottom_mobile_sharing']) && $theChampSharingOptions['horizontal_screen_width'] != '' ? 1 : 0; ?>, heateorSsCopyLinkMessage = "<?php echo htmlspecialchars(__('Link copied.', 'super-socializer'), ENT_QUOTES); ?>";
970
  <?php
971
+ if(isset($theChampSharingOptions['horizontal_re_providers']) && (isset($theChampSharingOptions['horizontal_more']) || in_array('Copy_Link', $theChampSharingOptions['horizontal_re_providers']))){
972
+ if(isset($theChampSharingOptions['horizontal_target_url']) && $theChampSharingOptions['horizontal_target_url'] == 'default'){
973
+ if(isset($theChampSharingOptions['horizontal_target_url'])){
974
+ if($theChampSharingOptions['horizontal_target_url'] == 'default'){
975
+ $postUrl = get_permalink($post->ID);
976
+ if((isset($_SERVER['QUERY_STRING']) && $_SERVER['QUERY_STRING']) || $postUrl == ''){
977
+ $postUrl = html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]));
978
+ }
979
+ $postId = $post->ID;
980
+ }elseif($theChampSharingOptions['horizontal_target_url'] == 'home'){
981
+ $postUrl = esc_url(home_url());
982
+ $postId = 0;
983
+ }elseif($theChampSharingOptions['horizontal_target_url'] == 'custom'){
984
+ $postUrl = isset($theChampSharingOptions['horizontal_target_url_custom']) ? trim($theChampSharingOptions['horizontal_target_url_custom']) : get_permalink($post->ID);
985
+ $postId = 0;
986
+ }
987
+ }else{
988
+ $postUrl = get_permalink($post->ID);
989
+ }
990
+ $postUrl = heateor_ss_apply_target_share_url_filter($postUrl, 'horizontal', false);
991
+ $sharingShortUrl = the_champ_generate_social_sharing_short_url($postUrl, $postId);
992
+ echo 'var heateorSsHorSharingShortUrl = "'. $sharingShortUrl .'";';
993
+ }
994
+ }
995
+ if(isset($theChampSharingOptions['vertical_re_providers']) && (isset($theChampSharingOptions['vertical_more']) || in_array('Copy_Link', $theChampSharingOptions['vertical_re_providers']))){
996
+ if(isset($theChampSharingOptions['vertical_target_url']) && $theChampSharingOptions['vertical_target_url'] == 'default'){
997
+ if(isset($theChampSharingOptions['vertical_target_url'])){
998
+ if($theChampSharingOptions['vertical_target_url'] == 'default'){
999
+ $postUrl = get_permalink($post->ID);
1000
+ if((isset($_SERVER['QUERY_STRING']) && $_SERVER['QUERY_STRING']) || $postUrl == ''){
1001
+ $postUrl = html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]));
1002
+ }
1003
+ $postId = $post->ID;
1004
+ }elseif($theChampSharingOptions['vertical_target_url'] == 'home'){
1005
+ $postUrl = esc_url(home_url());
1006
+ $postId = 0;
1007
+ }elseif($theChampSharingOptions['vertical_target_url'] == 'custom'){
1008
+ $postUrl = isset($theChampSharingOptions['vertical_target_url_custom']) ? trim($theChampSharingOptions['vertical_target_url_custom']) : get_permalink($post->ID);
1009
+ $postId = 0;
1010
+ }
1011
+ }else{
1012
+ $postUrl = get_permalink($post->ID);
1013
+ }
1014
+ $postUrl = heateor_ss_apply_target_share_url_filter($postUrl, 'vertical', false);
1015
+ $sharingShortUrl = the_champ_generate_social_sharing_short_url($postUrl, $postId);
1016
+ echo 'var heateorSsVerticalSharingShortUrl = "'. $sharingShortUrl .'";';
1017
+ }
1018
+ }
1019
  if(isset($theChampSharingOptions['horizontal_counts']) && isset($theChampSharingOptions['horizontal_counter_position'])){
1020
  echo in_array($theChampSharingOptions['horizontal_counter_position'], array('inner_left', 'inner_right')) ? 'var theChampReduceHorizontalSvgWidth = true;' : '';
1021
  echo in_array($theChampSharingOptions['horizontal_counter_position'], array('inner_top', 'inner_bottom')) ? 'var theChampReduceHorizontalSvgHeight = true;' : '';