I guess you could try to parse (using an AJAX engine as jQuery is suggested here) the navigator.appVersion string data to detect the browser language (should be working on every browser, although less clean than using :
navigator.browserLanguage (IE & Opera, no FF)
or
navigator.systemLanguage (IE, no Opera or FF)
or
navigator.userLanguage (IE & Opera, no FF)
& then on the onload of your body, you could dynamically change the value of your title with JavaScript. That's the best I can suggest for now.

(I'll do something like that on my webpage some day...
That's not a very good tweak, as it won't be able to read the user favorite language setting (in Firefox for example).
for the DOM navigator variable, see here :
http://www.w3schools.com/js/tryit.asp?f ... _navigator
By the way, does anyone have any idea why FF doesn't support browser language detection ? I don't see any security flaw here, as the language is sent in the HTTP header.