aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Uebernickel <lars.uebernickel@canonical.com>2013-09-11 12:31:10 +0200
committerLars Uebernickel <lars.uebernickel@canonical.com>2013-09-11 12:31:10 +0200
commit5423d97e09eb9e21f513e6c09fbc61fc30c6a38e (patch)
treeb63cd23a65ac2b5d9a590da625bee8613f9cd37b
parent1cb2bdc65658b189f593e77c71b438625cd6ec75 (diff)
downloadayatana-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
-rw-r--r--src/service.vala2
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;