summaryrefslogtreecommitdiff
path: root/src/modules/ns_maxemail.c
diff options
context:
space:
mode:
authorDukePyrolator <DukePyrolator@anope.org>2012-12-17 21:09:26 +0100
committerDukePyrolator <DukePyrolator@anope.org>2012-12-17 21:09:26 +0100
commitfa33bb28424e7b6e96c611a94e2039a0153ff6f9 (patch)
tree29979dff9f4dd12d138bb8e566bd211f9fe6fd95 /src/modules/ns_maxemail.c
parentcb9ab016f5104f732098f31dd40aaf2afd6e2107 (diff)
Added french language support to some modules (patch provided by Coolsmile)
Diffstat (limited to 'src/modules/ns_maxemail.c')
-rw-r--r--src/modules/ns_maxemail.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/modules/ns_maxemail.c b/src/modules/ns_maxemail.c
index 3f009f5f5..f19a3e6ef 100644
--- a/src/modules/ns_maxemail.c
+++ b/src/modules/ns_maxemail.c
@@ -271,12 +271,20 @@ static void my_add_languages(void)
"L'indirizzo email specificato ha raggiunto il suo limite d'utilizzo di 1 utente."
};
+ char *langtable_fr[] = {
+ /* LNG_NSEMAILMAX_REACHED */
+ "L'adresse e-mail indiquée a atteint la limite fixée à %d utilisateurs.",
+ /* LNG_NSEMAILMAX_REACHED_ONE */
+ "L'adresse e-mail indiquée a atteint la limite fixée à 1 utilisateur."
+ };
+
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 */