aboutsummaryrefslogtreecommitdiff
path: root/src/qt/intro.cpp
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2017-02-08 03:56:52 +0000
committerLuke Dashjr <luke-jr+git@utopios.org>2017-02-08 19:23:31 +0000
commit9adb694b171efd6c0f87f96436de92526f920383 (patch)
tree00741bf7323275ca303abaaf1879660364836132 /src/qt/intro.cpp
parenta9baa6d742c0425af4fb048cbd85707143227e84 (diff)
downloadbitcoin-9adb694b171efd6c0f87f96436de92526f920383.tar.xz
Qt/Intro: Move sizeWarningLabel text into C++ code
Diffstat (limited to 'src/qt/intro.cpp')
-rw-r--r--src/qt/intro.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/qt/intro.cpp b/src/qt/intro.cpp
index 96bddb81ed..aec9a97cfc 100644
--- a/src/qt/intro.cpp
+++ b/src/qt/intro.cpp
@@ -133,7 +133,11 @@ Intro::Intro(QWidget *parent) :
}
}
requiredSpace += CHAIN_STATE_SIZE;
- ui->sizeWarningLabel->setText(ui->sizeWarningLabel->text().arg(tr(PACKAGE_NAME)).arg(requiredSpace));
+ ui->sizeWarningLabel->setText(
+ tr("%1 will download and store a copy of the Bitcoin block chain.").arg(tr(PACKAGE_NAME)) + " " +
+ tr("At least %1 GB of data will be stored in this directory, and it will grow over time.").arg(requiredSpace) + " " +
+ tr("The wallet will also be stored in this directory.")
+ );
startThread();
}