From de478cb9f84028e5019b824936db8eee04808353 Mon Sep 17 00:00:00 2001 From: rbuj Date: Sat, 27 Jul 2019 15:17:57 +0200 Subject: gvc applet: add missing translations (i18n) --- mate-volume-control/gvc-applet.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mate-volume-control') 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"); } } -- cgit v1.2.1