phpfreechat is working fine for me,but there is one issue i cannot figure out.
i have added two channels with 'channels' parameter as
$params["channels"] = array("English","French");
Now i want to make two channels work in such a way that in one people will be chatting in english and the other where people would be chatting in french.
But i can't figure out how to do this.
I have used language parameter with
$params["language"] = "en_US";
it is working fine but if i use it like
$params["language"] = "en_US,fr_FR";
or
$params["language"] = array("en_US","fr_FR");
its not working and giving the error....
"phpFreeChat cannot be initialized, please correct these errors:
* 'language' parameter is not valid. Available values are: 'nl_NL, ko_KR, nl_BE, tr_TR,
pt_PT, en_US, eo, hr_HR, vi_VN, es_ES, zh_TW, nn_NO, ru_RU, id_ID, hu_HU, th_TH, hy_AM,
oc_FR, da_DK, de_DE-formal, uk_RO, nb_NO, fr_FR, it_IT, sv_SE, uk_UA, sr_CS, ar_LB, bg_BG,
pt_BR, ba_BA, bn_BD, el_GR, zh_CN, gl_ES, pl_PL, de_DE-informal, ja_JP'
"
To be short, current phpfreechat demo with multiple channels and multiple languages is what i want.
Please help me.