aboutsummaryrefslogtreecommitdiff
path: root/src/qt/createwalletdialog.cpp
diff options
context:
space:
mode:
authorAndrew Chow <[email protected]>2019-05-24 17:14:16 -0400
committerAndrew Chow <[email protected]>2019-09-05 20:36:57 -0400
commit9b41cbb28f603f4f71f5854d6ae2527932bba3cb (patch)
tree2b88b292c10566b75c0df9128ffc8ad913e2635e /src/qt/createwalletdialog.cpp
parentAdd CreateWalletDialog to create wallets from the GUI (diff)
downloaddiscoin-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.cpp2
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);