power: consistently use Title Case

https://bugzilla.gnome.org/show_bug.cgi?id=689589
This commit is contained in:
Jeremy Bicha 2012-12-03 23:15:57 -05:00
parent 8dd880d0c8
commit e6ef3ea24f

View File

@ -198,9 +198,9 @@ const DeviceItem = new Lang.Class({
_deviceTypeToString: function(type) { _deviceTypeToString: function(type) {
switch (type) { switch (type) {
case UPDeviceType.AC_POWER: case UPDeviceType.AC_POWER:
return _("AC adapter"); return _("AC Adapter");
case UPDeviceType.BATTERY: case UPDeviceType.BATTERY:
return _("Laptop battery"); return _("Laptop Battery");
case UPDeviceType.UPS: case UPDeviceType.UPS:
return _("UPS"); return _("UPS");
case UPDeviceType.MONITOR: case UPDeviceType.MONITOR:
@ -212,9 +212,9 @@ const DeviceItem = new Lang.Class({
case UPDeviceType.PDA: case UPDeviceType.PDA:
return _("PDA"); return _("PDA");
case UPDeviceType.PHONE: case UPDeviceType.PHONE:
return _("Cell phone"); return _("Cell Phone");
case UPDeviceType.MEDIA_PLAYER: case UPDeviceType.MEDIA_PLAYER:
return _("Media player"); return _("Media Player");
case UPDeviceType.TABLET: case UPDeviceType.TABLET:
return _("Tablet"); return _("Tablet");
case UPDeviceType.COMPUTER: case UPDeviceType.COMPUTER: