From e6ef3ea24f5c2938f4052e5875488a14acaf0151 Mon Sep 17 00:00:00 2001 From: Jeremy Bicha Date: Mon, 3 Dec 2012 23:15:57 -0500 Subject: [PATCH] power: consistently use Title Case https://bugzilla.gnome.org/show_bug.cgi?id=689589 --- js/ui/status/power.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/js/ui/status/power.js b/js/ui/status/power.js index d5b2de08e..53dc52cd4 100644 --- a/js/ui/status/power.js +++ b/js/ui/status/power.js @@ -198,9 +198,9 @@ const DeviceItem = new Lang.Class({ _deviceTypeToString: function(type) { switch (type) { case UPDeviceType.AC_POWER: - return _("AC adapter"); + return _("AC Adapter"); case UPDeviceType.BATTERY: - return _("Laptop battery"); + return _("Laptop Battery"); case UPDeviceType.UPS: return _("UPS"); case UPDeviceType.MONITOR: @@ -212,9 +212,9 @@ const DeviceItem = new Lang.Class({ case UPDeviceType.PDA: return _("PDA"); case UPDeviceType.PHONE: - return _("Cell phone"); + return _("Cell Phone"); case UPDeviceType.MEDIA_PLAYER: - return _("Media player"); + return _("Media Player"); case UPDeviceType.TABLET: return _("Tablet"); case UPDeviceType.COMPUTER: