diff options
author | Jonas Gutenschwager <spam.saikai@googlemail.com> | 2023-02-04 00:00:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-04 00:00:20 +0100 |
commit | 2a491f7aaa6977b7818b37a87fb8d2be8d1351c9 (patch) | |
tree | 252b728018eca48c21f48ae602ff278bac702a36 /src/yuzu/main.cpp | |
parent | 4653effad8e45667752a6e7cc8413e5e94a3f6c0 (diff) |
remove disambiguation argument from mute text
Co-authored-by: Morph <39850852+Morph1984@users.noreply.github.com>
Diffstat (limited to 'src/yuzu/main.cpp')
-rw-r--r-- | src/yuzu/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index b855416196..c278620ab3 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -3973,7 +3973,7 @@ void GMainWindow::UpdateVolumeUI() { volume_slider->setValue(volume_value); if (Settings::values.audio_muted) { volume_button->setChecked(false); - volume_button->setText(tr("VOLUME: MUTE", "Volume percentage (e.g. 50%)")); + volume_button->setText(tr("VOLUME: MUTE")); } else { volume_button->setChecked(true); volume_button->setText(tr("VOLUME: %1%", "Volume percentage (e.g. 50%)").arg(volume_value)); |