Hi Klas
It worked with joomla 2.5 + seblod 3 but with some hacks of ours. Of course we can do as you wrote (create a site for each language) but in this case we LOOSE the menu items associations!
I really believe Seblod could take advantage of the joomla multilanguage features combined with multi sites.
As for your information in the previous J2 + seblod 3 we had two hacks: It is bad (I know, even very bad since we hacked a joomla module) and it no loger works with Joomla 3 but at least it gives some hints how seblod could be modified accordingly
file cck.php
(plugins/system/cck) line 537:
find:
if
( !( !$path || $path == 'index.php/'.@$my->alias || $path ==
@$my->alias.'.html' ) ) {
and replace with:
//
todo: need to be improved!
#
@$my->alias = old item
#
$path = new item
$pos = strpos($path, @$my->alias);
if ( !$path || $pos !== false
) {
file modules/mod_languages/helper.php :
line 26,
remplace
foreach($menu->getMenu()
as $item) {
if ($item->home) {
$homes[$item->language]
= $item;
with =>
foreach($menu->getMenu()
as $item) {
if
(!$item->home) {
$homes[$item->language]
= $item;
thanks
Cyril