diff options
author | DukePyrolator <DukePyrolator@anope.org> | 2011-06-13 18:20:22 +0200 |
---|---|---|
committer | DukePyrolator <DukePyrolator@anope.org> | 2011-06-13 18:20:22 +0200 |
commit | 1cd65878dbdae1d64f70522c3586897a9a7adc36 (patch) | |
tree | 30aefc309b0e06b254993a39760abe377bf7bfa7 /modules/core/ns_sendpass.cpp | |
parent | 6148ffa66932e1d85a5f9a90298624da583ce5ed (diff) |
changed some _() to gtl() and updated do_strftime() and duration()
Diffstat (limited to 'modules/core/ns_sendpass.cpp')
-rw-r--r-- | modules/core/ns_sendpass.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/core/ns_sendpass.cpp b/modules/core/ns_sendpass.cpp index 47e8d6a82..e9ef06d59 100644 --- a/modules/core/ns_sendpass.cpp +++ b/modules/core/ns_sendpass.cpp @@ -98,8 +98,8 @@ static bool SendPassMail(User *u, NickAlias *na, const Anope::string &pass) { char subject[BUFSIZE], message[BUFSIZE]; - snprintf(subject, sizeof(subject), GetString(na->nc, "Nickname password (%s)").c_str(), na->nick.c_str()); - snprintf(message, sizeof(message), GetString(na->nc, + snprintf(subject, sizeof(subject), GetString(na->nc, gtl("Nickname password (%s)")).c_str(), na->nick.c_str()); + snprintf(message, sizeof(message), GetString(na->nc, gtl( "Hi,\n" " \n" "You have requested to receive the password of nickname %s by e-mail.\n" @@ -107,7 +107,7 @@ static bool SendPassMail(User *u, NickAlias *na, const Anope::string &pass) " \n" "If you don't know why this mail was sent to you, please ignore it silently.\n" " \n" - "%s administrators.").c_str(), na->nick.c_str(), pass.c_str(), Config->NetworkName.c_str()); + "%s administrators.")).c_str(), na->nick.c_str(), pass.c_str(), Config->NetworkName.c_str()); return Mail(u, na->nc, nickserv->Bot(), subject, message); } |