1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 12:43:12 +02:00

changed some _() to gtl() and updated do_strftime() and duration()

This commit is contained in:
DukePyrolator
2011-06-13 18:20:22 +02:00
parent 6148ffa669
commit 1cd65878db
14 changed files with 147 additions and 145 deletions
+3 -3
View File
@@ -17,16 +17,16 @@
static BotInfo *MemoServ = NULL;
static bool SendMemoMail(NickCore *nc, MemoInfo *mi, Memo *m)
{
Anope::string message = Anope::printf(GetString(nc,
Anope::string message = Anope::printf(GetString(nc, gtl(
"Hi %s\n"
" \n"
"You've just received a new memo from %s. This is memo number %d.\n"
" \n"
"Memo text:\n"
" \n"
"%s").c_str(), nc->display.c_str(), m->sender.c_str(), mi->GetIndex(m), m->text.c_str());
"%s")).c_str(), nc->display.c_str(), m->sender.c_str(), mi->GetIndex(m), m->text.c_str());
return Mail(nc, GetString(nc, _("New memo")), message);
return Mail(nc, GetString(nc, gtl("New memo")), message);
}
class MyMemoServService : public MemoServService