diff options
author | Sadie Powell <sadie@witchery.services> | 2024-06-12 17:53:15 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-06-12 17:53:15 +0100 |
commit | f2b66278aa4dae89533510f59216510fa1bec2f5 (patch) | |
tree | 5d3fbf03baaab0d6cddf2506eb976f9e79210867 /modules | |
parent | 5b7d952626160e7e17762bdc69211c69b1b3c8cd (diff) |
Fix a string that should be marked as translatable in ns_info.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/nickserv/ns_info.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/nickserv/ns_info.cpp b/modules/nickserv/ns_info.cpp index fb43aacd0..e74e9442a 100644 --- a/modules/nickserv/ns_info.cpp +++ b/modules/nickserv/ns_info.cpp @@ -42,7 +42,7 @@ public: } if (!u->AccountNick()) { - source.Reply("User \002%s\002 isn't currently logged in to an account.", nick.c_str()); + source.Reply(_("User \002%s\002 isn't currently logged in to an account."), nick.c_str()); return; } nick = u->AccountNick()->nick; |