From: Michele Pinassi <michele AT asb.unisi.it>
Date: Wed, 1 Jul 2009 14:25:51 +0200
| Threading: | ↑ [EP-tech] does not generate static in languages different from english from alfredo.cosco AT gmail.com • This Message |
http://mailman.ecs.soton.ac.uk/mailman/listinfo/eprints-tech
*** EPrints community wiki - http://wiki.eprints.org/
> I changed the default language and available languages in
> /lib/defaultcfg/cfg.d/languages.pl in this way:
>
> $c->{defaultlanguage} = 'it';
>
> $c->{languages} = [ 'it' ];
> $c->{languages} = [ 'en' ];
Maybe you need to change it as follow:
$c->{languages} = ['it','en']
because it's a Perl array.
Good luck, Michele