From 56f1ac658bbfcb1595a41c17e5bac4bbc49efb4a Mon Sep 17 00:00:00 2001 From: Kai Uwe Broulik Date: Sun, 23 Nov 2014 15:08:27 +0100 Subject: [PATCH] Add context to "Audio Muted" asking the translators to keep the text short The German "Audio stummgeschaltet" (rather than eg. "Audio stumm") is just too long CCMAIL: kde-i18n-doc@kde.org --- shell/osd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/osd.cpp b/shell/osd.cpp index e3118ee38..4653ba839 100644 --- a/shell/osd.cpp +++ b/shell/osd.cpp @@ -74,7 +74,7 @@ void Osd::volumeChanged(int percent) icon = QStringLiteral("audio-volume-low"); } else if (percent == 0) { icon = QStringLiteral("audio-volume-muted"); - showText(icon, i18n("Audio Muted")); + showText(icon, i18nc("OSD informing that the system is muted, keep short", "Audio Muted")); return; }