diff options
author | rbuj <[email protected]> | 2019-07-27 15:17:57 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-07-28 13:56:40 +0200 |
commit | de478cb9f84028e5019b824936db8eee04808353 (patch) | |
tree | 785b7ee04c725c0ba42340ce442329902039bcb3 /mate-volume-control/gvc-applet.c | |
parent | 74f5181315401e5a2bb1a635ef3bc2ca9e51328a (diff) | |
download | mate-media-de478cb9f84028e5019b824936db8eee04808353.tar.bz2 mate-media-de478cb9f84028e5019b824936db8eee04808353.tar.xz |
gvc applet: add missing translations (i18n)
Diffstat (limited to 'mate-volume-control/gvc-applet.c')
-rw-r--r-- | mate-volume-control/gvc-applet.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mate-volume-control/gvc-applet.c b/mate-volume-control/gvc-applet.c index 518a827..0c1d5ac 100644 --- a/mate-volume-control/gvc-applet.c +++ b/mate-volume-control/gvc-applet.c @@ -395,12 +395,12 @@ gvc_applet_set_mute (GtkWidget* widget, int size, gpointer user_data) action = gtk_action_group_get_action (applet->priv->action_group, "MuteOutput"); if (is_muted) { - gtk_action_set_label (action, "Unmute Output"); + gtk_action_set_label (action, _("Unmute Output")); gtk_action_set_icon_name (action, "audio-volume-medium"); } else { - gtk_action_set_label (action, "Mute Output"); + gtk_action_set_label (action, _("Mute Output")); gtk_action_set_icon_name (action, "audio-volume-muted"); } } |