From fac1dd544d43bc934227ced2fdd3ce1865ccafcd Mon Sep 17 00:00:00 2001 From: orignal Date: Mon, 24 Apr 2017 20:48:50 -0400 Subject: [PATCH] more name changes --- src/qt/editaddressdialog.cpp | 2 +- src/qt/optionsdialog.cpp | 6 +++--- src/qt/res/bitcoin-qt.rc | 12 ++++++------ src/qt/sendcoinsdialog.cpp | 4 ++-- src/qt/sendcoinsentry.cpp | 2 +- src/qt/signverifymessagedialog.cpp | 6 +++--- 6 files changed, 16 insertions(+), 16 deletions(-) diff --git a/src/qt/editaddressdialog.cpp b/src/qt/editaddressdialog.cpp index 39eafa4..ed915d2 100644 --- a/src/qt/editaddressdialog.cpp +++ b/src/qt/editaddressdialog.cpp @@ -100,7 +100,7 @@ void EditAddressDialog::accept() break; case AddressTableModel::INVALID_ADDRESS: QMessageBox::warning(this, windowTitle(), - tr("The entered address \"%1\" is not a valid Anoncoin address.").arg(ui->addressEdit->text()), + tr("The entered address \"%1\" is not a valid Gostcoin address.").arg(ui->addressEdit->text()), QMessageBox::Ok, QMessageBox::Ok); break; case AddressTableModel::DUPLICATE_ADDRESS: diff --git a/src/qt/optionsdialog.cpp b/src/qt/optionsdialog.cpp index bc3d263..7e6c977 100644 --- a/src/qt/optionsdialog.cpp +++ b/src/qt/optionsdialog.cpp @@ -245,7 +245,7 @@ void OptionsDialog::showRestartWarning_Proxy() { if(!fRestartWarningDisplayed_Proxy) { - QMessageBox::warning(this, tr("Warning"), tr("This setting will take effect after restarting Anoncoin."), QMessageBox::Ok); + QMessageBox::warning(this, tr("Warning"), tr("This setting will take effect after restarting Gostcoin."), QMessageBox::Ok); fRestartWarningDisplayed_Proxy = true; } } @@ -254,7 +254,7 @@ void OptionsDialog::showRestartWarning_I2P() { if(!fRestartWarningDisplayed_I2P) { - QMessageBox::warning(this, tr("Warning"), tr("This setting will take effect after restarting Bitcoin."), QMessageBox::Ok); + QMessageBox::warning(this, tr("Warning"), tr("This setting will take effect after restarting Gostcoin."), QMessageBox::Ok); fRestartWarningDisplayed_I2P = true; } } @@ -263,7 +263,7 @@ void OptionsDialog::showRestartWarning_Lang() { if(!fRestartWarningDisplayed_Lang) { - QMessageBox::warning(this, tr("Warning"), tr("This setting will take effect after restarting Anoncoin."), QMessageBox::Ok); + QMessageBox::warning(this, tr("Warning"), tr("This setting will take effect after restarting Gostcoin."), QMessageBox::Ok); fRestartWarningDisplayed_Lang = true; } } diff --git a/src/qt/res/bitcoin-qt.rc b/src/qt/res/bitcoin-qt.rc index bc6a8b4..5d7889c 100644 --- a/src/qt/res/bitcoin-qt.rc +++ b/src/qt/res/bitcoin-qt.rc @@ -8,7 +8,7 @@ IDI_ICON2 ICON DISCARDABLE "icons/bitcoin_testnet.ico" #define VER_PRODUCTVERSION_STR STRINGIZE(CLIENT_VERSION_MAJOR) "." STRINGIZE(CLIENT_VERSION_MINOR) "." STRINGIZE(CLIENT_VERSION_REVISION) "." STRINGIZE(CLIENT_VERSION_BUILD) #define VER_FILEVERSION VER_PRODUCTVERSION #define VER_FILEVERSION_STR VER_PRODUCTVERSION_STR -#define COPYRIGHT_STR "2009-" STRINGIZE(COPYRIGHT_YEAR) " The Bitcoin developers 2011-" STRINGIZE(COPYRIGHT_YEAR) " The Litecoin developers " STRINGIZE(COPYRIGHT_YEAR) "The Anoncoin developers" +#define COPYRIGHT_STR "2009-" STRINGIZE(COPYRIGHT_YEAR) " The Bitcoin developers 2011-" STRINGIZE(COPYRIGHT_YEAR) " The Litecoin developers " STRINGIZE(COPYRIGHT_YEAR) "The Anoncoin developers" STRINGIZE(COPYRIGHT_YEAR) "The i2pd developers" STRINGIZE(COPYRIGHT_YEAR) "The Gostcoin developers" VS_VERSION_INFO VERSIONINFO FILEVERSION VER_FILEVERSION @@ -20,14 +20,14 @@ BEGIN BEGIN BLOCK "040904E4" // U.S. English - multilingual (hex) BEGIN - VALUE "CompanyName", "Anoncoin" - VALUE "FileDescription", "Anoncoin-Qt (OSS GUI client for Anoncoin)" + VALUE "CompanyName", "GOSTSec" + VALUE "FileDescription", "Gostcoin-Qt (OSS GUI client for Gostcoin)" VALUE "FileVersion", VER_FILEVERSION_STR - VALUE "InternalName", "anoncoin-qt" + VALUE "InternalName", "gostcoin-qt" VALUE "LegalCopyright", COPYRIGHT_STR VALUE "LegalTrademarks1", "Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php." - VALUE "OriginalFilename", "anoncoin-qt.exe" - VALUE "ProductName", "Anoncoin-Qt" + VALUE "OriginalFilename", "gostcoin-qt.exe" + VALUE "ProductName", "Gostcoin-Qt" VALUE "ProductVersion", VER_PRODUCTVERSION_STR END END diff --git a/src/qt/sendcoinsdialog.cpp b/src/qt/sendcoinsdialog.cpp index fea2deb..0160285 100644 --- a/src/qt/sendcoinsdialog.cpp +++ b/src/qt/sendcoinsdialog.cpp @@ -32,7 +32,7 @@ SendCoinsDialog::SendCoinsDialog(QWidget *parent) : #endif #if QT_VERSION >= 0x040700 /* Do not move this to the XML file, Qt before 4.7 will choke on it */ - ui->lineEditCoinControlChange->setPlaceholderText(tr("Enter a Anoncoin address (e.g. AMeehr1AtpyMaZKVLv4Tb1wdRtVfx3wDj3")); + ui->lineEditCoinControlChange->setPlaceholderText(tr("Enter a Gostcoin address (e.g. GbD2JSQHBHCKLa9WTHmigJRpyFgmBj4woG")); #endif addEntry(); @@ -479,7 +479,7 @@ void SendCoinsDialog::coinControlChangeEdited(const QString & text) else if (!CBitcoinAddress(text.toStdString()).IsValid()) { ui->labelCoinControlChangeLabel->setStyleSheet("QLabel{color:red;}"); - ui->labelCoinControlChangeLabel->setText(tr("Warning: Invalid Anoncoin address")); + ui->labelCoinControlChangeLabel->setText(tr("Warning: Invalid Gostcoin address")); } else { diff --git a/src/qt/sendcoinsentry.cpp b/src/qt/sendcoinsentry.cpp index 5bfb2f1..2dd9bef 100644 --- a/src/qt/sendcoinsentry.cpp +++ b/src/qt/sendcoinsentry.cpp @@ -24,7 +24,7 @@ SendCoinsEntry::SendCoinsEntry(QWidget *parent) : #if QT_VERSION >= 0x040700 /* Do not move this to the XML file, Qt before 4.7 will choke on it */ ui->addAsLabel->setPlaceholderText(tr("Enter a label for this address to add it to your address book")); - ui->payTo->setPlaceholderText(tr("Enter a Anoncoin address (e.g. AMeehr1AtpyMaZKVLv4Tb1wdRtVfx3wDj3)")); + ui->payTo->setPlaceholderText(tr("Enter a Gostcoin address (e.g. GbD2JSQHBHCKLa9WTHmigJRpyFgmBj4woG)")); #endif setFocusPolicy(Qt::TabFocus); setFocusProxy(ui->payTo); diff --git a/src/qt/signverifymessagedialog.cpp b/src/qt/signverifymessagedialog.cpp index 938e3d5..585a3c1 100644 --- a/src/qt/signverifymessagedialog.cpp +++ b/src/qt/signverifymessagedialog.cpp @@ -24,11 +24,11 @@ SignVerifyMessageDialog::SignVerifyMessageDialog(QWidget *parent) : #if (QT_VERSION >= 0x040700) /* Do not move this to the XML file, Qt before 4.7 will choke on it */ - ui->addressIn_SM->setPlaceholderText(tr("Enter a Anoncoin address (e.g. AMeehr1AtpyMaZKVLv4Tb1wdRtVfx3wDj3)")); + ui->addressIn_SM->setPlaceholderText(tr("Enter a Gostcoin address (e.g. GbD2JSQHBHCKLa9WTHmigJRpyFgmBj4woG)")); ui->signatureOut_SM->setPlaceholderText(tr("Click \"Sign Message\" to generate signature")); - ui->addressIn_VM->setPlaceholderText(tr("Enter a Anoncoin address (e.g. AMeehr1AtpyMaZKVLv4Tb1wdRtVfx3wDj3)")); - ui->signatureIn_VM->setPlaceholderText(tr("Enter Anoncoin signature")); + ui->addressIn_VM->setPlaceholderText(tr("Enter a Gostcoin address (e.g. GbD2JSQHBHCKLa9WTHmigJRpyFgmBj4woG)")); + ui->signatureIn_VM->setPlaceholderText(tr("Enter Gostcoin signature")); #endif GUIUtil::setupAddressWidget(ui->addressIn_SM, this);