diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-08-27 16:47:30 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-08-27 16:47:30 +0000 |
commit | e30482976af0325e93615f59588d9fe3baacb9d7 (patch) | |
tree | 076484688673db234bea377ad958bce0d7d9d52e /src | |
parent | bcf2e57d8125fceb2f573fe77ac122158aa75a13 (diff) |
Fix for problems with translations
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7896 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/m_remove.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/modules/m_remove.cpp b/src/modules/m_remove.cpp index feb2afa85..cbb7138d7 100644 --- a/src/modules/m_remove.cpp +++ b/src/modules/m_remove.cpp @@ -211,6 +211,9 @@ class cmd_remove : public command_t, public RemoveBase this->source = "m_remove.so"; syntax = "<nick> <channel> [<reason>]"; TRANSLATE4(TR_NICK, TR_TEXT, TR_TEXT, TR_END); + + for (size_t x = 0; x < translation.size(); x++) + printf("translation[%ld] = %ld\n", x, translation[x]); } CmdResult Handle (const char** parameters, int pcnt, userrec *user) |