Does anybody know how to translate whole web page in-line without 500
words limit?
I'd like translate my website in different languages with Ajax API,
because Django i18n cannot be utilized yet.
Any comments?
Thanks,
Chef
Free Immigration Guide
visachoice.appspot.com
It is worth noting that some browsers GET request urls are limited to under 2,000 characters. The Javascript API is affected by this, and the text sent in the request will be part of the URL.
-Ben
On Nov 22, 2008 5:26 AM, "Jeremy Geerdes" <jrge...@gmail.com> wrote:
As I noted previously, there is a CHARACTER limit on the length of
your string to be translated. Specifically, it can be no longer than
5,000 characters. So it's not enough to simply parse by <p> or other
HTML element; you have to check the character count, too. For that
reason, I would recommend translating in chunks based on html element,
then length, and then sentences or clauses In other words, break the
original string into chunks based on elements. Then check those
strings for length. And if they are too long, break them into
individual sentences or even clauses.
Jeremy R. Geerdes Effective website design & development Des Moines, IA For more information or a ...
jgee...@mchsi.com
Unless otherwise noted, any price quotes contained within this communication are given in US doll...
On Nov 22, 2008, at 1:39 AM, tcs 241 wrote: > > > I revised google sample code according to code fr...