diff options
| author | 2013-06-13 18:41:10 +0200 | |
|---|---|---|
| committer | 2013-06-13 18:41:10 +0200 | |
| commit | c25a59d9036444872d831a126c6326f3d8be5e74 (patch) | |
| tree | ee29e42bf59f5207890bb97fae37fd2d1ac6771b /src/modules/m_remove.cpp | |
| parent | Rewrite CommandParser::TranslateUIDs() (diff) | |
Remove TR_END, remove TRANSLATEx() from commands that do not need it
Diffstat (limited to 'src/modules/m_remove.cpp')
| -rw-r--r-- | src/modules/m_remove.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_remove.cpp b/src/modules/m_remove.cpp index d4b7ca42f..ee44e77ff 100644 --- a/src/modules/m_remove.cpp +++ b/src/modules/m_remove.cpp @@ -148,7 +148,7 @@ class CommandRemove : public RemoveBase : RemoveBase(Creator, snk, "REMOVE") { syntax = "<nick> <channel> [<reason>]"; - TRANSLATE4(TR_NICK, TR_TEXT, TR_TEXT, TR_END); + TRANSLATE3(TR_NICK, TR_TEXT, TR_TEXT); } CmdResult Handle (const std::vector<std::string>& parameters, User *user) @@ -174,7 +174,7 @@ class CommandFpart : public RemoveBase : RemoveBase(Creator, snk, "FPART") { syntax = "<channel> <nick> [<reason>]"; - TRANSLATE4(TR_TEXT, TR_NICK, TR_TEXT, TR_END); + TRANSLATE3(TR_TEXT, TR_NICK, TR_TEXT); } CmdResult Handle (const std::vector<std::string>& parameters, User *user) |
