Is there a tool or a way to translate a requested loading webpage according to the origins (IP, region) of the viewer. Illustration below: Person A in Japan comes to my site which is in English, as soon as he starts loading my webpage a java-script checks and sees Person A is from Japan and converts my english webpage to Japanese language, Person A will also have the option on converting it back to English. Is that possible? does anyone know of a method that might work similar to what is being described above?
Yes, it is possible. There are a few ways to do it, but none of them are technically simple. You might have an easier time using a server-side re-direction based on the users location.
The serverside re-direction would use a geo-location database to determine which url it will redirect the requests to. For example, if you are using apache, you would setup and entry in your .htaccess file to forward visitors to your home page to a re-direction script which uses the database of IPs to determine which customized language url to send them to.
I really dont know about this topic if i will get any information then i will send you.........................!
I really dont know about this topic if i will get any information then i will send you.........................! Home Mortgage Refinance
What about if I am using blogger/blogspot? any advise about a re-direction in blogger by some scripts or something? Thanks
If you are using blogger/blogspot then you will not be able to use the server-side method I mentioned. A custom programed javascript can do the job. I don't know of any that exist already - but it will require access to a geo location database. Seems like a fun challenge for javascript codemonkeys, but it's not a simple challenge for javascript beginners.
In Blogger , i think language detection is not possible . Like a site turning into a mobile version in mobile handsets , You need some kinds PHP/JavaScript to be hosted on your server to make this work . But language translation widgets are available on Blogger that can be used manually by the user .
This would be quite interesting for someone like me as well. I'm curious if it can be done now. I was under the impression you needed to rewrite the actual text on the site for each of the geo locations your redirecting to. However, if you had a java-script that translated it and redirected them automatically? Or am I completely off point here?
@Eliteworx yes, a simple (albiet not totally accurate option) would be to use Javascript to determine the User's language setting and then some AJAX (or a JS re-direct) to swap the translated content.