aboutsummaryrefslogtreecommitdiff
path: root/src/qt/utilitydialog.cpp
diff options
context:
space:
mode:
authorRoss Nicoll <[email protected]>2015-08-05 18:48:47 +0100
committerJ Ross Nicoll <[email protected]>2015-10-31 14:49:40 +0000
commit3d0f19a3a06775cf4572c484e8d461fb5a796a8b (patch)
tree43ceec8d0580b6030e92fc912455c05eed345378 /src/qt/utilitydialog.cpp
parentAdded wallet_bgcoin.png to QT makefile (diff)
downloaddiscoin-3d0f19a3a06775cf4572c484e8d461fb5a796a8b.tar.xz
discoin-3d0f19a3a06775cf4572c484e8d461fb5a796a8b.zip
Update QT client messages and corresponding translations
Update QT client messages and translations to Doge equivalents. Where specific contributions were made in languages for Dogecoin, those translations are used in preference.
Diffstat (limited to 'src/qt/utilitydialog.cpp')
-rw-r--r--src/qt/utilitydialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qt/utilitydialog.cpp b/src/qt/utilitydialog.cpp
index 567747a35..02a337fdf 100644
--- a/src/qt/utilitydialog.cpp
+++ b/src/qt/utilitydialog.cpp
@@ -62,7 +62,7 @@ HelpMessageDialog::HelpMessageDialog(QWidget *parent, bool about) :
{
ui->setupUi(this);
- QString version = tr("Bitcoin Core") + " " + tr("version") + " " + QString::fromStdString(FormatFullVersion());
+ QString version = tr("Dogecoin Core") + " " + tr("version") + " " + QString::fromStdString(FormatFullVersion());
/* On x86 add a bit specifier to the version so that users can distinguish between
* 32 and 64 bit builds. On other architectures, 32/64 bit may be more ambigious.
*/
@@ -74,7 +74,7 @@ HelpMessageDialog::HelpMessageDialog(QWidget *parent, bool about) :
if (about)
{
- setWindowTitle(tr("About Bitcoin Core"));
+ setWindowTitle(tr("About Dogecoin Core"));
/// HTML-format the license message from the core
QString licenseInfo = QString::fromStdString(LicenseInfo());
@@ -467,7 +467,7 @@ ShutdownWindow::ShutdownWindow(QWidget *parent, Qt::WindowFlags f):
{
QVBoxLayout *layout = new QVBoxLayout();
layout->addWidget(new QLabel(
- tr("Bitcoin Core is shutting down...") + "<br /><br />" +
+ tr("Dogecoin Core is shutting down...") + "<br /><br />" +
tr("Do not shut down the computer until this window disappears.")));
setLayout(layout);
}