diff options
author | Lars Uebernickel <lars.uebernickel@canonical.com> | 2013-09-11 12:31:10 +0200 |
---|---|---|
committer | Lars Uebernickel <lars.uebernickel@canonical.com> | 2013-09-11 12:31:10 +0200 |
commit | 5423d97e09eb9e21f513e6c09fbc61fc30c6a38e (patch) | |
tree | b63cd23a65ac2b5d9a590da625bee8613f9cd37b /src | |
parent | 1cb2bdc65658b189f593e77c71b438625cd6ec75 (diff) | |
download | ayatana-indicator-sound-5423d97e09eb9e21f513e6c09fbc61fc30c6a38e.tar.gz ayatana-indicator-sound-5423d97e09eb9e21f513e6c09fbc61fc30c6a38e.tar.bz2 ayatana-indicator-sound-5423d97e09eb9e21f513e6c09fbc61fc30c6a38e.zip |
Remove volume percentage from translatable part of the accessible title
Diffstat (limited to 'src')
-rw-r--r-- | src/service.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/service.vala b/src/service.vala index 7d59fe5..5cf90b6 100644 --- a/src/service.vala +++ b/src/service.vala @@ -141,7 +141,7 @@ public class IndicatorSound.Service { accessible_name = _("Volume (muted)"); } else { int volume_int = (int)(volume * 100); - accessible_name = _("Volume (%d%%)").printf (volume_int); + accessible_name = "%s (%d%%)".printf (_("Volume"), volume_int); } var root_action = actions.lookup_action ("root") as SimpleAction; |