Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a web page in Bulgarian and I want my users be able to translate it one-click to English. Also there should not be any translation banner at the top of the page when a user enters to the page (it can after the user clicks the translation link). I have tried to use #googtrans(bg|en) (doc) but it didn't work, also it shows a banner at the top of the page due to this code:

<script>
function googleTranslateElementInit() {
  new google.translate.TranslateElement({
    pageLanguage: 'bg',
    autoDisplay: false,
    layout: google.translate.TranslateElement.InlineLayout.SIMPLE
  }, 'google_translate_element');
}
</script><script src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>

(doc)

the code is here krumovgrad.eu click the flags at the right top.

share|improve this question
What have you got so far? – Hannele Nov 30 '11 at 18:06
Translation banner with nonworking link. I don't want banner, I want link that works/translates. – ilhan Nov 30 '11 at 18:07
Update: In Firefox; banner with a link that works. In IE 8 nothing. – ilhan Nov 30 '11 at 18:11
Can you post the code or a jsfiddle so we can attempt to assist? – TimWickstrom.com Nov 30 '11 at 18:13
Update: I've removed the cookies in Fx and I've nothing. Behaves according to the old cookies. – ilhan Nov 30 '11 at 18:13

1 Answer

Google has thought ahead my friend. Please look at this page: http://translate.google.com/translate_tools

EDIT: I'm sorry, I just realized you're using what the page provides! You can, with simple javascript, hide the elements that are displayed and create a link for English where it's onClick changes the value of the hidden select element...and your entire page is translated.

It's a bit messy but it gets the job done and the user doesn't know it exists!

You can also consider capturing the request that is sent to the google translate servers and capture the link that is called when you select English and just use that link.

Chrome has a nice utility to capture requests (see ctrl+shift+j for a developer console)

share|improve this answer
man! give me a minute to edit my answer! lol... – vinnybad Nov 30 '11 at 18:25

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.