I have a website that showcases environmental data for all countries,
http://uneplive.unep.org. When I visit the page for the country Albania,
http://uneplive.unep.org/country/index/AL, and translate it to any other language apart from English, it seems to translate fine. But when I translate the page back to English, the country name Albania gets translated to India. Is this a bug? My site's default language is English.
This is my html declaration:
<!doctype html>
<html lang="en" xml:lang="en" >
This is my code:
<div id="google_translate_element" style="font-size:8px;margin-top:-5px; max-width:200px;" ></div>
<script type="text/javascript">
function googleTranslateElementInit() {
new google.translate.TranslateElement({pageLanguage: 'en', layout: google.translate.TranslateElement.InlineLayout.SIMPLE, multilanguagePage: false}, 'google_translate_element');
}
</script>
<script type="text/javascript" src="//
translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
