Page 1 of 1

Bilingual website

Posted: Sun Nov 07, 2010 1:19 pm
by chukwuma
Hello.
  I,m running CMS made simple 1.8.2, and i want to design a bilingual website ; English and Japanese,  i,ve finished with the english side  but i don`t know how to make it bilingual,
How can i created new set of menus the japanese site.
thanks in advance.
 

Re: Bilingual website

Posted: Sun Nov 07, 2010 1:48 pm
by Rolf
There more ways to do this.
But this is my way:
http://forum.cmsmadesimple.org/index.ph ... 112.0.html

Regards, Rolf

Re: Bilingual website

Posted: Mon Nov 08, 2010 2:33 pm
by Aureli
I used the Babel module and worked very well and very easy to set up.

I can see that the module has now been marked as "stale".  I haven't checked it with the new version CMSMS 1.9 but it worked for me with the previous version.

Now that I have upgraded to 1.9 will try the solution that Rolf suggests.

BTW, if the variable

Code: Select all

{$gCms}
has been removed, will the solution you suggested, Rolf, work with CMSMS 1.9?  It does use this variable:

Code: Select all

$smarty = &$gCms->GetSmarty();
.

All the best,

A.

Re: Bilingual website

Posted: Wed Nov 10, 2010 11:29 am
by opawaldburger
It's never a mistake to use the forum search!

That's the way I use, I can totally recommend it!
http://forum.cmsmadesimple.org/index.ph ... 756.0.html

Cheers!

Re: Bilingual website

Posted: Wed Nov 10, 2010 4:11 pm
by Rolf
Aureli wrote: BTW, if the variable

Code: Select all

{$gCms}
has been removed, will the solution you suggested, Rolf, work with CMSMS 1.9?  It does use this variable:

Code: Select all

$smarty = &$gCms->GetSmarty();
.
Yes, the UDT in my multilanguage post works in 1.9!

Code: Select all

global $gCms;
is replaced by

Code: Select all

$gCms = cmsms();
Hope this helps,

Rolf  :)

Re: Bilingual website

Posted: Wed Nov 10, 2010 5:01 pm
by Aureli
It does, Rolf,

Thanks, I will give it a go soon enough.

A.