mirror of
https://github.com/anope/anope.git
synced 2026-07-04 16:53:16 +02:00
replaced all %R with %s in the language strings
This commit is contained in:
@@ -34,9 +34,9 @@ class MemoListCallback : public NumberList
|
||||
{
|
||||
Memo *m = mi->memos[index];
|
||||
if (ci)
|
||||
source.Reply(_("Memo %d from %s (%s). To delete, type: \002%R%s DEL %s %d\002"), index + 1, m->sender.c_str(), do_strftime(m->time).c_str(), Config->s_MemoServ.c_str(), ci->name.c_str(), index + 1);
|
||||
source.Reply(_("Memo %d from %s (%s). To delete, type: \002%s%s DEL %s %d\002"), index + 1, m->sender.c_str(), do_strftime(m->time).c_str(), Config->UseStrictPrivMsgString.c_str(), Config->s_MemoServ.c_str(), ci->name.c_str(), index + 1);
|
||||
else
|
||||
source.Reply(_("Memo %d from %s (%s). To delete, type: \002%R%s DEL %d\002"), index + 1, m->sender.c_str(), do_strftime(m->time).c_str(), Config->s_MemoServ.c_str(), index + 1);
|
||||
source.Reply(_("Memo %d from %s (%s). To delete, type: \002%s%s DEL %d\002"), index + 1, m->sender.c_str(), do_strftime(m->time).c_str(), Config->UseStrictPrivMsgString.c_str(), Config->s_MemoServ.c_str(), index + 1);
|
||||
source.Reply("%s", m->text.c_str());
|
||||
m->UnsetFlag(MF_UNREAD);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user