Hi,
I've installed RoundCube Webmail in my server.
This is accessible now by : http://webmail.domain.tld
Now, all my customers can view their mails in roundcube, but i want to change the default language, i want to switch it into FRENCH(FR) for all customers.
Which file i must change ?
Thanks and sorry for my english, i'm french
To change the default language go to:
config/main.inc.php
and then edit the line that has:
$rcmail_config['locale_string'] = 'en';
It works, Thanks ;)
Now, how to change the main page of RoundCube, i wanted to change the welcome message an add some texts.
How can i do that ?
To change the default welcome message go to:
config/main.inc.php
and then edit the line that has:
$rcmail_config['product_name'] = 'RoundCube Webmail';
If you what to edit it more then just go to
program/localization/{Lag}/labels.inc
and edit this line:
$labels['welcome']
As for adding any more text on the login page you can add it in the theme file:
skins/{Theme}/templates/login.html
Thanks for your help, it works perfectly :)