aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-06-10 17:17:25 -0500
committerTed Gould <ted@canonical.com>2009-06-10 17:17:25 -0500
commit6a310124ced26f2753c32ece249ca092214b73ee (patch)
treeda70a5666238e520aa9576b84664a8a445308e57
parent257c07fe3c71a19a116a5d9f64e6ffb4e3f9fb0d (diff)
downloadayatana-indicator-session-6a310124ced26f2753c32ece249ca092214b73ee.tar.gz
ayatana-indicator-session-6a310124ced26f2753c32ece249ca092214b73ee.tar.bz2
ayatana-indicator-session-6a310124ced26f2753c32ece249ca092214b73ee.zip
Oops, forgot about invisible. I guess that's kinda expected though, as it's invisible.
-rw-r--r--src/status-service.c19
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"
};