Re:123 flash chat MOD for my phpbb
Yes, you can make the MOD french version by modifying a few words in language/lang_french/lang_main.php.
#-----[ FIND ]------------------------------------------
#
//
// That's all, Folks!
#
#-----[ BEFORE, ADD ]------------------------------------------
#
$lang['CHAT'] = 'Chat';
$lang['Chat_connections_zero'] = 'There are <b>0</b> user connected to the chat server';
$lang['Chat_connections'] = 'There are <b>%d</b> users connected to the chat server';
$lang['Chat_connection'] = 'There is <b>%d</b> user connected to the chat server';
$lang['Chat_rooms_zero'] = 'There are <b>0</b> Chat rooms';
$lang['Chat_rooms'] = 'There are <b>%d</b> Chat rooms';
$lang['Chat_room'] = 'There is <b>%d</b> Chat room';
$lang['Chat_logon_users_zero'] = 'There are <b>0</b> logon chatters';
$lang['Chat_logon_users'] = 'There are <b>%d</b> logon chatters ';
$lang['Chat_logon_user'] = 'There is <b>%d</b> logon chatter';
(please translate them in french.)
|