aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/indicator-power.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/indicator-power.c b/src/indicator-power.c
index 412243e..f411483 100644
--- a/src/indicator-power.c
+++ b/src/indicator-power.c
@@ -202,6 +202,18 @@ device_kind_to_localised_string (UpDeviceKind kind)
/* TRANSLATORS: cell phone (mobile...) */
text = gettext ("Cell phone");
break;
+ case UP_DEVICE_KIND_MEDIA_PLAYER:
+ /* TRANSLATORS: media player, mp3 etc */
+ text = gettext ("Media player");
+ break;
+ case UP_DEVICE_KIND_TABLET:
+ /* TRANSLATORS: tablet device */
+ text = gettext ("Tablet");
+ break;
+ case UP_DEVICE_KIND_COMPUTER:
+ /* TRANSLATORS: tablet device */
+ text = gettext ("Computer");
+ break;
default:
g_warning ("enum unrecognised: %i", kind);
text = up_device_kind_to_string (kind);