summaryrefslogtreecommitdiff
path: root/modules/commands/ns_status.cpp
diff options
context:
space:
mode:
authorRobby- <robby@chat.be>2013-12-28 23:28:30 +0100
committerRobby- <robby@chat.be>2013-12-28 23:28:30 +0100
commit780bc7ca1479a334a1bea59db3ffd89da1a87800 (patch)
tree71d28bb1e185e891ef2e332a023053e43ea55518 /modules/commands/ns_status.cpp
parent3d12752655405ae75265622cbec565f9efa23be3 (diff)
Do not translate command parameters that do not have translatable strings in them, or are not meant to be translated in the first place.
Diffstat (limited to 'modules/commands/ns_status.cpp')
-rw-r--r--modules/commands/ns_status.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/commands/ns_status.cpp b/modules/commands/ns_status.cpp
index 64d1f8db7..b47fa688f 100644
--- a/modules/commands/ns_status.cpp
+++ b/modules/commands/ns_status.cpp
@@ -32,18 +32,18 @@ class CommandNSStatus : public Command
{
User *u2 = User::Find(nickbuf, true);
if (!u2) /* Nick is not online */
- source.Reply(_("STATUS %s %d %s"), nickbuf.c_str(), 0, "");
+ source.Reply("STATUS %s %d %s", nickbuf.c_str(), 0, "");
else if (u2->IsIdentified() && na && na->nc == u2->Account()) /* Nick is identified */
- source.Reply(_("STATUS %s %d %s"), nickbuf.c_str(), 3, u2->Account()->display.c_str());
+ source.Reply("STATUS %s %d %s", nickbuf.c_str(), 3, u2->Account()->display.c_str());
else if (u2->IsRecognized()) /* Nick is recognised, but NOT identified */
- source.Reply(_("STATUS %s %d %s"), nickbuf.c_str(), 2, u2->Account() ? u2->Account()->display.c_str() : "");
+ source.Reply("STATUS %s %d %s", nickbuf.c_str(), 2, u2->Account() ? u2->Account()->display.c_str() : "");
else if (!na) /* Nick is online, but NOT a registered */
- source.Reply(_("STATUS %s %d %s"), nickbuf.c_str(), 0, "");
+ source.Reply("STATUS %s %d %s", nickbuf.c_str(), 0, "");
else
/* Nick is not identified for the nick, but they could be logged into an account,
* so we tell the user about it
*/
- source.Reply(_("STATUS %s %d %s"), nickbuf.c_str(), 1, u2->Account() ? u2->Account()->display.c_str() : "");
+ source.Reply("STATUS %s %d %s", nickbuf.c_str(), 1, u2->Account() ? u2->Account()->display.c_str() : "");
}
return;
}