diff options
author | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-06-27 15:39:41 +0000 |
---|---|---|
committer | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-06-27 15:39:41 +0000 |
commit | 89249b2383a7c7e0c3ebdba8c80d09e044f4bc40 (patch) | |
tree | 18b5eb5f938d89530b4d960fc857474732363819 /src/modules/cs_tban.c | |
parent | e530d7e814d89e7d4193a02b988014e891b68215 (diff) |
BUILD : 1.7.10 (836) BUGS : NOTES : Added italian translations for all modpack modules
git-svn-id: svn://svn.anope.org/anope/trunk@836 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@589 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/modules/cs_tban.c')
-rw-r--r-- | src/modules/cs_tban.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/modules/cs_tban.c b/src/modules/cs_tban.c index 4bbe26a9a..815c3d5b0 100644 --- a/src/modules/cs_tban.c +++ b/src/modules/cs_tban.c @@ -179,6 +179,7 @@ void mAddLanguages(void) "time. If the ban is removed before by hand, it will NOT be replaced.", "%s banned from %s, will auto-expire in %s" }; + char *langtable_nl[] = { " TBAN Verban een gebruiker voor een bepaalde tijd", "Syntax: TBAN kanaal nick tijd", @@ -204,10 +205,19 @@ void mAddLanguages(void) "%s foi banido do %s, irį auto-expirar em %s" }; + char *langtable_it[] = { + " TBAN Banna l'utente per un periodo di tempo specificato", + "Sintassi: TBAN canale nick tempo", + "Banna l'utente specificato da un canale per un periodo di tempo\n" + "specificato. Se il ban viene rimosso a mano prima della scadenza, NON verrą rimpiazzato.", + "%s bannato da %s, scadrą automaticamente tra %s" + }; + moduleInsertLanguage(LANG_EN_US, LANG_NUM_STRINGS, langtable_en_us); moduleInsertLanguage(LANG_NL, LANG_NUM_STRINGS, langtable_nl); moduleInsertLanguage(LANG_DE, LANG_NUM_STRINGS, langtable_de); moduleInsertLanguage(LANG_PT, LANG_NUM_STRINGS, langtable_pt); + moduleInsertLanguage(LANG_IT, LANG_NUM_STRINGS, langtable_it); } |