diff options
| author | Andrew Chow <[email protected]> | 2019-05-24 17:14:16 -0400 |
|---|---|---|
| committer | Andrew Chow <[email protected]> | 2019-09-05 20:36:57 -0400 |
| commit | 9b41cbb28f603f4f71f5854d6ae2527932bba3cb (patch) | |
| tree | 2b88b292c10566b75c0df9128ffc8ad913e2635e /src/qt/createwalletdialog.cpp | |
| parent | Add CreateWalletDialog to create wallets from the GUI (diff) | |
| download | discoin-9b41cbb28f603f4f71f5854d6ae2527932bba3cb.tar.xz discoin-9b41cbb28f603f4f71f5854d6ae2527932bba3cb.zip | |
Expose wallet creation to the GUI via WalletController
Co-authored-by: João Barbosa <[email protected]>
Diffstat (limited to 'src/qt/createwalletdialog.cpp')
| -rw-r--r-- | src/qt/createwalletdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/createwalletdialog.cpp b/src/qt/createwalletdialog.cpp index 449dcc70a..10262c37c 100644 --- a/src/qt/createwalletdialog.cpp +++ b/src/qt/createwalletdialog.cpp @@ -16,7 +16,7 @@ CreateWalletDialog::CreateWalletDialog(QWidget* parent) : ui(new Ui::CreateWalletDialog) { ui->setupUi(this); - ui->buttonBox->button(QDialogButtonBox::Ok)->setText("Create"); + ui->buttonBox->button(QDialogButtonBox::Ok)->setText(tr("Create")); ui->buttonBox->button(QDialogButtonBox::Ok)->setEnabled(false); ui->wallet_name_line_edit->setFocus(Qt::ActiveWindowFocusReason); |