Quote:
Originally Posted by Natch
Like this eg:
Change php_include to match this:
Code:
$translationurl=$_SERVER['PHP_SELF']."?".$_SERVER['QUERY_STRING'];
This will pass all query strings to the translator ...
|
I'll make this even easier....
PHP Code:
$translationurl = $_SERVER['REQUEST_URI'];
Will get you everything. And, change
HTML Code:
<input type="hidden"name="u" value="http://www.yoursite.com$translationurl">
to
HTML Code:
<input type="hidden" name="u" value="$vboptions[homeurl]$translationurl" />
to make this totally plug and play. Here is the template part that I use, which is 100% valid XHTML:
Code:
<div align="center">
Translate this page:<br />
<form action="http://translate.google.com/translate" method="post">
<input type="hidden" name="u" value="$vboptions[bburl]$translationurl" />
<select name="langpair" onchange="this.form.submit();">
<option value="en|de">English to German</option>
<option value="en|es">English to Spanish</option>
<option value="en|fr">English to French</option>
<option value="en|it">English to Italian</option>
<option value="en|pt">English to Portuguese</option>
</select>
<input type="hidden" name="hl" value="en" />
<input type="hidden" name="ie" value="UTF-8" />
<input type="hidden" name="oe" value="UTF-8" />
<input type="hidden" name="safe" value="active" />
<input type="hidden" name="prev" value="/language_tools" />
<input type="submit" value="Translate" />
</form>
</div>
<br/>