I use CMSms multilang beta 2. It has few bugs, but works great (if you take time to go through the readme...). However, I have not found a way the change the default langage, so that the introduction page (the index) would be rendered in another language than english. Somebody knows how?
Thanks for this wonderful cms.
Multilanguage CMSms: setup the default language
-
katon
Re: Multilanguage CMSms: setup the default language
No, English is hardcoded as the default language, and there is no way to change this. Sorry about this.
-
dernier_recours
Re: Multilanguage CMSms: setup the default language
A solution is a simple html redirection in the root directory, in a file called index.html:
Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<__html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title></title>
<META http-EQUIV="Refresh" CONTENT="0; url=index.php?&lan=fr">
</head>
</__body>
<__body>
</__html>-
dernier_recours
Re: Multilanguage CMSms: setup the default language
Hi Katon,
I saw your multilingual site. Its awesome. How could you get different templates for different languages? For example, I would like to title a column "News" in English and "Nouvelles" in French.
Thanks!
I saw your multilingual site. Its awesome. How could you get different templates for different languages? For example, I would like to title a column "News" in English and "Nouvelles" in French.
Thanks!
-
katon
Re: Multilanguage CMSms: setup the default language
I didn't use different templates. If I had to use different languages in the template, I used User-Defined Tags. For instance:
if ($_GET['lan'] == 'ua'){
echo 'Копирайт 2004-2006 Киевская федерация Айкидо и боевых искусств.
Все права защищены.
Дизайн студии "Зебрасус",
Движок CMSMadeSimple';
} else {
echo 'Copyright 2004-2006 Kiev Aikido and Marital Arts Federation. All Rights Reserved.
Design by Zebrasus Studio,
Powered by CMSMadeSimple';
}
if ($_GET['lan'] == 'ua'){
echo 'Копирайт 2004-2006 Киевская федерация Айкидо и боевых искусств.
Все права защищены.
Дизайн студии "Зебрасус",
Движок CMSMadeSimple';
} else {
echo 'Copyright 2004-2006 Kiev Aikido and Marital Arts Federation. All Rights Reserved.
Design by Zebrasus Studio,
Powered by CMSMadeSimple';
}
