• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

help Me Guys

snowbaby

New Member
Hello Guys

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

Please Help Me Guys
 
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.
 
The only downside being, is that each time you update your site with more content, you have to have the extra parts translated.
 
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>
 
If english is default, then you don't need it twice:
Code:
<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>
 
Back
Top