Browse Source

more name changes

pull/7/head
orignal 7 years ago
parent
commit
fac1dd544d
  1. 2
      src/qt/editaddressdialog.cpp
  2. 6
      src/qt/optionsdialog.cpp
  3. 12
      src/qt/res/bitcoin-qt.rc
  4. 4
      src/qt/sendcoinsdialog.cpp
  5. 2
      src/qt/sendcoinsentry.cpp
  6. 6
      src/qt/signverifymessagedialog.cpp

2
src/qt/editaddressdialog.cpp

@ -100,7 +100,7 @@ void EditAddressDialog::accept() @@ -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:

6
src/qt/optionsdialog.cpp

@ -245,7 +245,7 @@ void OptionsDialog::showRestartWarning_Proxy() @@ -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() @@ -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() @@ -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;
}
}

12
src/qt/res/bitcoin-qt.rc

@ -8,7 +8,7 @@ IDI_ICON2 ICON DISCARDABLE "icons/bitcoin_testnet.ico" @@ -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 @@ -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

4
src/qt/sendcoinsdialog.cpp

@ -32,7 +32,7 @@ SendCoinsDialog::SendCoinsDialog(QWidget *parent) : @@ -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) @@ -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
{

2
src/qt/sendcoinsentry.cpp

@ -24,7 +24,7 @@ SendCoinsEntry::SendCoinsEntry(QWidget *parent) : @@ -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);

6
src/qt/signverifymessagedialog.cpp

@ -24,11 +24,11 @@ SignVerifyMessageDialog::SignVerifyMessageDialog(QWidget *parent) : @@ -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);

Loading…
Cancel
Save