Mercurial > libervia-backend
diff frontends/src/constants.py @ 1119:5968fd8d2248
primitivus: change behavior of commands ":presence" and ":status" :
- ":presence " and ":status " open a dialog (like if you type it without the trailing space)
- you need to type ":presence online" to directly reset your presence (was done with ":presence " before)
- there's no more way to directly set an empty status (you now do it via the dialog)
author | souliane <souliane@mailoo.org> |
---|---|
date | Sat, 23 Aug 2014 20:11:37 +0200 |
parents | e2e1e27a3680 |
children | faa1129559b8 |
line wrap: on
line diff
--- a/frontends/src/constants.py Sun Aug 24 13:15:51 2014 +0200 +++ b/frontends/src/constants.py Sat Aug 23 20:11:37 2014 +0200 @@ -40,13 +40,13 @@ ("chat", _("Free for chat")), ("away", _("Away from keyboard")), ("dnd", _("Do not disturb")), - ("xa", _("Away"))]) + ("xa", _("Extended away"))]) except TypeError: presence = {"": _("Online"), "chat": _("Free for chat"), "away": _("Away from keyboard"), "dnd": _("Do not disturb"), - "xa": _("Away") + "xa": _("Extended away") } return presence