diff options
author | DukePyrolator <DukePyrolator@anope.org> | 2012-12-17 21:09:26 +0100 |
---|---|---|
committer | DukePyrolator <DukePyrolator@anope.org> | 2012-12-17 21:09:26 +0100 |
commit | fa33bb28424e7b6e96c611a94e2039a0153ff6f9 (patch) | |
tree | 29979dff9f4dd12d138bb8e566bd211f9fe6fd95 /src/modules/cs_appendtopic.c | |
parent | cb9ab016f5104f732098f31dd40aaf2afd6e2107 (diff) |
Added french language support to some modules (patch provided by Coolsmile)
Diffstat (limited to 'src/modules/cs_appendtopic.c')
-rw-r--r-- | src/modules/cs_appendtopic.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/modules/cs_appendtopic.c b/src/modules/cs_appendtopic.c index 13d232105..fe21e9cef 100644 --- a/src/modules/cs_appendtopic.c +++ b/src/modules/cs_appendtopic.c @@ -236,12 +236,25 @@ static void my_add_languages(void) "Sintassi: APPENDTOPIC canale testo\n" }; + /* French (US) */ + char *langtable_fr[] = { + /* LNG_CHAN_HELP */ + " APPENDTOPIC Ajoute du texte dans le sujet d'un salon", + /* LNG_CHAN_HELP_APPENDTOPIC */ + "Cette commande permet aux utilisateurs d'ajouter du texte à un sujet\n" + "du salon. Quand TOPICLOCK est actif, le sujet est mis à jour et\n" + "le nouveau sujet modifié est vérrouillé.", + /* LNG_APPENDTOPIC_SYNTAX */ + "Syntaxe: \002APPENDTOPIC \037canal\037 \037texte\037\002\n" + }; + moduleInsertLanguage(LANG_EN_US, LNG_NUM_STRINGS, langtable_en_us); moduleInsertLanguage(LANG_NL, LNG_NUM_STRINGS, langtable_nl); moduleInsertLanguage(LANG_DE, LNG_NUM_STRINGS, langtable_de); moduleInsertLanguage(LANG_PT, LNG_NUM_STRINGS, langtable_pt); moduleInsertLanguage(LANG_RU, LNG_NUM_STRINGS, langtable_ru); moduleInsertLanguage(LANG_IT, LNG_NUM_STRINGS, langtable_it); + moduleInsertLanguage(LANG_FR, LNG_NUM_STRINGS, langtable_fr); } /* EOF */ |