PDA

View Full Version : help Me Guys



snowbaby
August 17th, 2006, 07:46
Hello Guys

I want to know How to Create Website In Other Languages! I wish Create Website In Malayalam!

Please Help Me Guys

[JSH]John
August 17th, 2006, 13:19
To do this you'll need to get yourself a translator, there's companys that can do this or you could find someone that can speak malayalam as well as english then they could work with you on translating your site.

Keagle
August 17th, 2006, 15:48
The only downside being, is that each time you update your site with more content, you have to have the extra parts translated.

dark vader
August 21st, 2006, 20:35
some engines translate upon request of viewer but here s a bit of code for language redirection.

CODE;
Language redirector
<!-- ONE STEP TO INSTALL LANGUAGE:

1. Copy the coding into the HEAD of your HTML document and modify to suit -->

<!-- STEP ONE: Paste this code into the HEAD of your HTML document -->

<head>

<script type="text/javascript" language="JavaScript1.2">
<!-- Begin
if (navigator.appName == 'Netscape')
var language = navigator.language;
else
var language = navigator.browserLanguage;

// Modify the .html pages, can be either file.html or, http://www.domain

if (language.indexOf('en') > -1) document.location.href = 'English.html';
else if (language.indexOf('nl') > -1) document.location.href = 'dutch.html';
else if (language.indexOf('fr') > -1) document.location.href = 'french.html';
else if (language.indexOf('de') > -1) document.location.href = 'german.html';
else if (language.indexOf('ja') > -1) document.location.href = 'japanese.html';
else if (language.indexOf('it') > -1) document.location.href = 'italian.html';
else if (language.indexOf('pt') > -1) document.location.href = 'portuguese.html';
else if (language.indexOf('es') > -1) document.location.href = 'Spanish.html';
else if (language.indexOf('sv') > -1) document.location.href = 'swedish.html';
else if (language.indexOf('zh') > -1) document.location.href = 'chinese.html';
else
document.location.href = 'English.html';
// End -->
</script>

Meksilon
August 24th, 2006, 00:17
If english is default, then you don't need it twice:
<script type="text/javascript" language="JavaScript1.2">
<!-- Begin
if (navigator.appName == 'Netscape')
var language = navigator.language;
else
var language = navigator.browserLanguage;

// Modify the .html pages, can be either file.html or, http://www.domain

if (language.indexOf('nl') > -1) document.location.href = 'dutch.html';
else if (language.indexOf('fr') > -1) document.location.href = 'french.html';
else if (language.indexOf('de') > -1) document.location.href = 'german.html';
else if (language.indexOf('ja') > -1) document.location.href = 'japanese.html';
else if (language.indexOf('it') > -1) document.location.href = 'italian.html';
else if (language.indexOf('pt') > -1) document.location.href = 'portuguese.html';
else if (language.indexOf('es') > -1) document.location.href = 'Spanish.html';
else if (language.indexOf('sv') > -1) document.location.href = 'swedish.html';
else if (language.indexOf('zh') > -1) document.location.href = 'chinese.html';
else document.location.href = 'English.html';
// End -->
</script>