diff options
| author | Luke Dashjr <[email protected]> | 2015-12-09 10:53:12 +0000 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2015-12-14 02:11:10 +0000 |
| commit | d5f46832de900cee0801ca40bba743c9564cccb8 (patch) | |
| tree | 6cf53662ecd4e95a8803e7e51d6fe59f3e321708 /src/qt/optionsdialog.cpp | |
| parent | Merge pull request #7092 (diff) | |
| download | discoin-d5f46832de900cee0801ca40bba743c9564cccb8.tar.xz discoin-d5f46832de900cee0801ca40bba743c9564cccb8.zip | |
Unify package name to as few places as possible without major changes
Diffstat (limited to 'src/qt/optionsdialog.cpp')
| -rw-r--r-- | src/qt/optionsdialog.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/qt/optionsdialog.cpp b/src/qt/optionsdialog.cpp index d0191fa6d..79a740612 100644 --- a/src/qt/optionsdialog.cpp +++ b/src/qt/optionsdialog.cpp @@ -80,6 +80,11 @@ OptionsDialog::OptionsDialog(QWidget *parent, bool enableWallet) : /* Display elements init */ QDir translations(":translations"); + + ui->bitcoinAtStartup->setToolTip(ui->bitcoinAtStartup->toolTip().arg(tr(PACKAGE_NAME))); + ui->bitcoinAtStartup->setText(ui->bitcoinAtStartup->text().arg(tr(PACKAGE_NAME))); + + ui->lang->setToolTip(ui->lang->toolTip().arg(tr(PACKAGE_NAME))); ui->lang->addItem(QString("(") + tr("default") + QString(")"), QVariant("")); Q_FOREACH(const QString &langStr, translations.entryList()) { |