I’m adding a send button for sending a link to a friend within a canvas application on a page tab:
$(anchorTag).bind('click',function(e){
//console.log($(this));
e.preventDefault();
FB.ui({
method: 'send',
name:$(this).attr('title'),
display: 'iframe',
link: $(this).attr('href')
});
});
I would like to have an icon like
as the image for my button but I need to localise the text for different languages. Do I need to craft my own using CSS or is this button available via the API?
In the documentation of the Like Button and Send Button it has a section about different languages, but the one in the Like is a bit more detailed: