Implemented a Facebook like button feature on my site. Everything is working fine. If I use a locale parameter for the API. Then it hides the total count value. Example given below.
<iframe src="//www.facebook.com/plugins/like.php?href=http%3A%2F%2Fdevelopers.facebook.com%2Fdocs%2Freference%2Fplugins%2Flike&width=450&height=80&colorscheme=light&layout=standard&action=like&show_faces=true&send=true&appId=218119584872965" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>
Above code block will show like button along with count but default language is English (Like).
Below code is same as above and here I used locale variable.
<iframe src="//www.facebook.com/plugins/like.php?locale=de_DE&href=http%3A%2F%2Fdevelopers.facebook.com%2Fdocs%2Freference%2Fplugins%2Flike&width=450&height=80&colorscheme=light&layout=standard&action=like&show_faces=true&send=true&appId=218119584872965" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>
Above code will show 'Gefällt mir' but hides like count.
Is there anything missing?