Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The button works but when I click to like the label turns to "share". This is my button:

<div data-href="http://facebook.com/Fitnoss" data-send="false" data-layout="button_count" data-show-faces="false" class="fb-like"></div>

And this is my SDK call & init:

window.fbAsyncInit = function() {
  FB.init({
    appId: "XXXXXXXXXXXXXXX",
    channelUrl: "/fbc.html",
    cookie: true,
    logging: true,
    status: true,
    xfbml: true
  });
};

(function(d) {
  var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
  if (d.getElementById(id)) {return;}
  js = d.createElement('script'); js.id = id; js.async = true;
  js.src = "//connect.facebook.net/pt_BR/all.js";
  ref.parentNode.insertBefore(js, ref);
}(document));

I'm using the brazilian portuguese SDK!

Does anyone knows or have any idea why this happens?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.