aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorcharles kerr <charlesk@canonical.com>2016-01-01 11:11:53 -0600
committercharles kerr <charlesk@canonical.com>2016-01-01 11:11:53 -0600
commit2769b3bb6b6cdfb19ecf84aba9f44ebd8fe62ae9 (patch)
treeb72dd979973835be948d1ca225df02b7cd95d1f3 /src
parentc799846b912a8008fef6118cd4817d4fd843dd5a (diff)
downloadayatana-indicator-sound-2769b3bb6b6cdfb19ecf84aba9f44ebd8fe62ae9.tar.gz
ayatana-indicator-sound-2769b3bb6b6cdfb19ecf84aba9f44ebd8fe62ae9.tar.bz2
ayatana-indicator-sound-2769b3bb6b6cdfb19ecf84aba9f44ebd8fe62ae9.zip
typo fix: s/Usb/USB/ in ui strings
Diffstat (limited to 'src')
-rw-r--r--src/info-notification.vala4
-rw-r--r--src/sound-menu.vala4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/info-notification.vala b/src/info-notification.vala
index 2ce8ef6..797bdc3 100644
--- a/src/info-notification.vala
+++ b/src/info-notification.vala
@@ -60,9 +60,9 @@ public class IndicatorSound.InfoNotification: Notification
case VolumeControl.ActiveOutput.BLUETOOTH_SPEAKER:
return _("Bluetooth speaker");
case VolumeControl.ActiveOutput.USB_SPEAKER:
- return _("Usb speaker");
+ return _("USB speaker");
case VolumeControl.ActiveOutput.USB_HEADPHONES:
- return _("Usb headphones");
+ return _("USB headphones");
case VolumeControl.ActiveOutput.HDMI_SPEAKER:
return _("HDMI speaker");
case VolumeControl.ActiveOutput.HDMI_HEADPHONES:
diff --git a/src/sound-menu.vala b/src/sound-menu.vala
index bdb8df2..638c883 100644
--- a/src/sound-menu.vala
+++ b/src/sound-menu.vala
@@ -209,7 +209,7 @@ public class SoundMenu: Object
label = _("Volume (Bluetooth)");
break;
case VolumeControl.ActiveOutput.USB_SPEAKER:
- label = _("Volume (Usb)");
+ label = _("Volume (USB)");
break;
case VolumeControl.ActiveOutput.HDMI_SPEAKER:
label = _("Volume (HDMI)");
@@ -218,7 +218,7 @@ public class SoundMenu: Object
label = _("Volume (Bluetooth headphones)");
break;
case VolumeControl.ActiveOutput.USB_HEADPHONES:
- label = _("Volume (Usb headphones)");
+ label = _("Volume (USB headphones)");
break;
case VolumeControl.ActiveOutput.HDMI_HEADPHONES:
label = _("Volume (HDMI headphones)");