diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index d24fa78..c148ddc 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -682,7 +682,7 @@ void BitcoinGUI::setNumBlocks(int count, int nTotalBlocks) void BitcoinGUI::message(const QString &title, const QString &message, unsigned int style, bool *ret) { - QString strTitle = tr("Anoncoin"); // default title + QString strTitle = tr("Gostcoin"); // default title // Default to information icon int nMBoxIcon = QMessageBox::Information; int nNotifyIcon = Notificator::Information; diff --git a/src/qt/gostcoin.cpp b/src/qt/gostcoin.cpp index 5543145..8c0bc7d 100644 --- a/src/qt/gostcoin.cpp +++ b/src/qt/gostcoin.cpp @@ -190,7 +190,7 @@ int main(int argc, char *argv[]) { // This message can not be translated, as translation is not initialized yet // (which not yet possible because lang=XX can be overridden in bitcoin.conf in the data directory) - QMessageBox::critical(0, "Anoncoin", + QMessageBox::critical(0, "Gostcoin", QString("Error: Specified data directory \"%1\" does not exist.").arg(QString::fromStdString(mapArgs["-datadir"]))); return 1; } diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp index cced756..5c4a0ca 100644 --- a/src/qt/guiutil.cpp +++ b/src/qt/guiutil.cpp @@ -139,9 +139,9 @@ bool parseBitcoinURI(QString uri, SendCoinsRecipient *out) // // Cannot handle this later, because bitcoin:// will cause Qt to see the part after // as host, // which will lower-case it (and thus invalidate the address). - if(uri.startsWith("anoncoin://")) + if(uri.startsWith("gostcoin://")) { - uri.replace(0, 11, "anoncoin:"); + uri.replace(0, 11, "gostcoin:"); } QUrl uriInstance(uri); return parseBitcoinURI(uriInstance, out); @@ -495,10 +495,10 @@ bool SetStartOnSystemStartup(bool fAutoStart) { return false; } HelpMessageBox::HelpMessageBox(QWidget *parent) : QMessageBox(parent) { - header = tr("Anoncoin-Qt") + " " + tr("version") + " " + + header = tr("Gostcoin-Qt") + " " + tr("version") + " " + QString::fromStdString(FormatFullVersion()) + "\n\n" + tr("Usage:") + "\n" + - " anoncoin-qt [" + tr("command-line options") + "] " + "\n"; + " gostcoin-qt [" + tr("command-line options") + "] " + "\n"; coreOptions = QString::fromStdString(HelpMessage()); @@ -507,7 +507,7 @@ HelpMessageBox::HelpMessageBox(QWidget *parent) : " -min " + tr("Start minimized") + "\n" + " -splash " + tr("Show splash screen on startup (default: 1)") + "\n"; - setWindowTitle(tr("Anoncoin-Qt")); + setWindowTitle(tr("Gostcoin-Qt")); setTextFormat(Qt::PlainText); // setMinimumWidth is ignored for QMessageBox so put in non-breaking spaces to make it wider. setText(header + QString(QChar(0x2003)).repeated(50));