diff options
author | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-05-10 14:48:26 +0000 |
---|---|---|
committer | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-05-10 14:48:26 +0000 |
commit | 7c586a83ddb2174be52e2eb4c6967799463f59a4 (patch) | |
tree | d9b7106dca3e3317565bc980c6d10ea863d1e9af /src/modules/cs_tban.c | |
parent | d2b08b8e04583219cf34e406da31e510661a79a6 (diff) |
BUILD : 1.7.9 (786) BUGS : NOTES : Applied patch by crazy for language updates and removal of IRCDFILE stuff
git-svn-id: svn://svn.anope.org/anope/trunk@786 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@546 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/modules/cs_tban.c')
-rw-r--r-- | src/modules/cs_tban.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/modules/cs_tban.c b/src/modules/cs_tban.c index 567fc4729..4c550e44b 100644 --- a/src/modules/cs_tban.c +++ b/src/modules/cs_tban.c @@ -176,7 +176,7 @@ void mAddLanguages(void) " TBAN Bans the user for a given length of time", "Syntax: TBAN channel nick time", "Bans the given user from a channel for a specified length of\n" - "time. If the ban is removed before hand, it will NOT be replaced.", + "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[] = { @@ -187,8 +187,18 @@ void mAddLanguages(void) "zal deze NIET worden vervangen.", "%s verbannen van %s, zal verlopen in %s" }; + + char *langtable_de[] = { + " TBAN Bant ein User für eine bestimmte Zeit aus ein Channel", + "Syntax: TBAN Channel Nickname Zeit", + "Bant ein User für eine bestimmte Zeit aus ein Channel\n" + "Wenn der Ban manuell entfernt wird, wird es NICHT ersetzt.", + "%s gebannt von %s, wird auto-auslaufen in %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); } |