Skip to content Skip to sidebar Skip to footer

Translate Html Files To Another Language

I have a website with Dutch text which I want to translate to English. Is there a fast way of doing this with keeping the HTML tags(,) in tact. I know I c

Solution 1:

Online translators are good to turn foreign text into something that can be understood, but they are useless for producing quality translations. Even if you fix obvious problems at the end, you will get an amateurish word-by-word translation. If you want your visitors to take you seriously, you should translate from scratch.

Solution 2:

If you want to preserve the HTML formatting at the same time as translating, you will have to work directly with the HTML source and update the text yourself without touching the formatting.

You may be able to use an XML editor like XmlSpy that will let you edit text nodes directly without touching the tagging, but this requires that the HTML is actually XHTML. You may still need to translate some attributes (such as title and alt attributes).

Solution 3:

Is a virtual traslate a good option for you? Because if you paste google translato script into your page source, it will translate your text on the site, and the formating will stay there too. http://translate.google.com/translate_tools

Post a Comment for "Translate Html Files To Another Language"