diff options
-rw-r--r-- | src/status-service.c | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/src/status-service.c b/src/status-service.c index 840e164..cd131a4 100644 --- a/src/status-service.c +++ b/src/status-service.c @@ -14,6 +14,7 @@ typedef enum STATUS_SERVICE_STATUS_ONLINE, STATUS_SERVICE_STATUS_AWAY, STATUS_SERVICE_STATUS_DND, + STATUS_SERVICE_STATUS_INVISIBLE, STATUS_SERVICE_STATUS_OFFLINE, /* Leave as last */ STATUS_SERVICE_STATUS_LAST @@ -21,17 +22,19 @@ typedef enum StatusServiceStatus; static const gchar * status_strings [STATUS_SERVICE_STATUS_LAST] = { - /* STATUS_SERVICE_STATUS_ONLINE, */ N_("Available"), - /* STATUS_SERVICE_STATUS_AWAY, */ N_("Away"), - /* STATUS_SERVICE_STATUS_DND */ N_("Busy"), - /* STATUS_SERVICE_STATUS_OFFLINE, */ N_("Offline") + /* STATUS_SERVICE_STATUS_ONLINE, */ N_("Available"), + /* STATUS_SERVICE_STATUS_AWAY, */ N_("Away"), + /* STATUS_SERVICE_STATUS_DND */ N_("Busy"), + /* STATUS_SERVICE_STATUS_INVISIBLE */ N_("Invisible"), + /* STATUS_SERVICE_STATUS_OFFLINE, */ N_("Offline") }; static const gchar * status_icons[STATUS_SERVICE_STATUS_LAST] = { - /* STATUS_SERVICE_STATUS_ONLINE, */ "user-online", - /* STATUS_SERVICE_STATUS_AWAY, */ "user-away", - /* STATUS_SERVICE_STATUS_DND, */ "user-busy", - /* STATUS_SERVICE_STATUS_OFFLINE */ "user-offline" + /* STATUS_SERVICE_STATUS_ONLINE, */ "user-online", + /* STATUS_SERVICE_STATUS_AWAY, */ "user-away", + /* STATUS_SERVICE_STATUS_DND, */ "user-busy", + /* STATUS_SERVICE_STATUS_INVISIBLE, */ "user-invisible", + /* STATUS_SERVICE_STATUS_OFFLINE */ "user-offline" }; |