Hi!
Just for help users who are searching a solution to this problem. I also have a website in english, french and traditional chinese. Here is what to do:
Edit administrator/components/com_maxcomment/maxcomment_config.php
Replace the lines with the variables $mxc_label_xxx like this:
| Code: |
$mxc_label_showcommentusers = _MXC_LABEL_USERCOMMENT;
$mxc_label_showcommenteditor = _MXC_LABEL_EDITORS;
$mxc_label_quote = _MXC_LABEL_QUOTE;
$mxc_label_favoured = _MXC_LABEL_FAVOURED;
$mxc_label_print = _MXC_LABEL_PRINT;
$mxc_label_sendmail = _MXC_LABEL_SEND;
$mxc_label_delicious = _MXC_LABEL_SAVE;
$mxc_label_related = _MXC_LABEL_RELATED;
$mxc_label_readmore = _MXC_LABEL_READ;
|
Then edit your language file in administrator/components/com_maxcomment/languages/
and add the lines
for exemple in english.php :
| Code: |
DEFINE("_MXC_LABEL_PRINT","Print"«»);
DEFINE("_MXC_LABEL_SEND","Send to a friend"«»);
DEFINE("_MXC_LABEL_SAVE","Save to del.icio.us"«»);
DEFINE("_MXC_LABEL_RELATED","Related articles"«»);
DEFINE("_MXC_LABEL_EDITORS","Editor\'s review"«»);
DEFINE("_MXC_LABEL_USERCOMMENT","User comment"«»);
DEFINE("_MXC_LABEL_QUOTE","Quote this article in website"«»);
DEFINE("_MXC_LABEL_FAVOURED","Favoured"«»);
DEFINE("_MXC_LABEL_READ","Read more..."«»);
|
in french.php :
| Code: |
DEFINE("_MXC_LABEL_PRINT","Imprimer"«»);
DEFINE("_MXC_LABEL_SEND","Envoyer à un ami"«»);
DEFINE("_MXC_LABEL_SAVE","Sauver avec del.icio.us"«»);
DEFINE("_MXC_LABEL_RELATED","Articles connectés"«»);
DEFINE("_MXC_LABEL_EDITORS","Avis des éditeurs"«»);
DEFINE("_MXC_LABEL_USERCOMMENT","Commentaires des membres"«»);
DEFINE("_MXC_LABEL_QUOTE","Citer cet article sur votre site"«»);
DEFINE("_MXC_LABEL_FAVOURED","Favoris"«»);
DEFINE("_MXC_LABEL_READ","Lire la suite..."«»);
|

<br /><br />Post edited by: dbass, at: 2008/04/02 19:21