Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas Lange <thomas-lange2@gmx.de>2021-03-17 01:48:52 +0300
committerThomas Lange <thomas-lange2@gmx.de>2021-03-17 01:48:52 +0300
commit989522254b6fdc445ea7553cc3971de4b157c955 (patch)
treed53b4bbd397e8c33413248b7a846ba518acb4b68 /src
parent9c98a65734f1c37fc1a92d53014e5ce75896e3c3 (diff)
FIX(client): Make button in config dialog translatable
Diffstat (limited to 'src')
-rw-r--r--src/mumble/ConfigDialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mumble/ConfigDialog.cpp b/src/mumble/ConfigDialog.cpp
index c4c342aef..27a23d5c5 100644
--- a/src/mumble/ConfigDialog.cpp
+++ b/src/mumble/ConfigDialog.cpp
@@ -75,7 +75,7 @@ ConfigDialog::ConfigDialog(QWidget *p) : QDialog(p) {
"To restore all settings to their defaults, you can press the \"Defaults (All)\" button."));
QPushButton *restoreAllButton =
- pageButtonBox->addButton(QString::fromLatin1("Defaults (All)"), QDialogButtonBox::ResetRole);
+ pageButtonBox->addButton(tr("Defaults (All)"), QDialogButtonBox::ResetRole);
restoreAllButton->setToolTip(tr("Restore all defaults"));
restoreAllButton->setWhatsThis(tr("This button will restore the defaults for all settings."));