Browse Source
remove disambiguation argument from mute text
Co-authored-by: Morph <39850852+Morph1984@users.noreply.github.com>
pull/15/merge
Jonas Gutenschwager
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/yuzu/main.cpp
|
|
@ -3973,7 +3973,7 @@ void GMainWindow::UpdateVolumeUI() { |
|
|
volume_slider->setValue(volume_value); |
|
|
volume_slider->setValue(volume_value); |
|
|
if (Settings::values.audio_muted) { |
|
|
if (Settings::values.audio_muted) { |
|
|
volume_button->setChecked(false); |
|
|
volume_button->setChecked(false); |
|
|
volume_button->setText(tr("VOLUME: MUTE", "Volume percentage (e.g. 50%)")); |
|
|
|
|
|
|
|
|
volume_button->setText(tr("VOLUME: MUTE")); |
|
|
} else { |
|
|
} else { |
|
|
volume_button->setChecked(true); |
|
|
volume_button->setChecked(true); |
|
|
volume_button->setText(tr("VOLUME: %1%", "Volume percentage (e.g. 50%)").arg(volume_value)); |
|
|
volume_button->setText(tr("VOLUME: %1%", "Volume percentage (e.g. 50%)").arg(volume_value)); |
|
|
|