diff options
author | Adam <Adam@anope.org> | 2011-11-04 17:55:14 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-11-04 17:55:14 -0400 |
commit | a42cafbf69ac2753cb891f87664d1218b00a1bcf (patch) | |
tree | 039c2cfb75d96adce264cb9647ba7699c865d9cf /src/misc.cpp | |
parent | 066e5b3fc08b6b85311e29aad6e78f12aba1a30e (diff) |
Store flags for memos, fixed the expiring very soon message, fixed /os session view when a session exception is added at a lower limit than th default
Diffstat (limited to 'src/misc.cpp')
-rw-r--r-- | src/misc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/misc.cpp b/src/misc.cpp index 9354201b2..5e899effd 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -276,7 +276,7 @@ Anope::string expire_left(NickCore *nc, time_t expires) if (!expires) return translate(nc, NO_EXPIRE); else if (expires <= Anope::CurTime) - return translate(nc, _("expires at next database update")); + return translate(nc, _("expires momentarily")); else { char buf[256]; |