aboutsummaryrefslogtreecommitdiff
path: root/src/qt/paymentserver.cpp
diff options
context:
space:
mode:
authorRoss Nicoll <[email protected]>2018-01-20 17:55:38 +0000
committerRoss Nicoll <[email protected]>2019-03-25 05:36:11 +0000
commit4a87b53e556e5f1ecfa53f606f9a26b50d2d6fea (patch)
tree0e0b1c7e38b695b677691459adc010d22d4e4aa1 /src/qt/paymentserver.cpp
parentFix copyright substitution (diff)
downloaddiscoin-4a87b53e556e5f1ecfa53f606f9a26b50d2d6fea.tar.xz
discoin-4a87b53e556e5f1ecfa53f606f9a26b50d2d6fea.zip
Update QT client messages and translations to Doge equivalents (#1429)
Update QT client messages and translations to Doge equivalents.
Diffstat (limited to 'src/qt/paymentserver.cpp')
-rw-r--r--src/qt/paymentserver.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qt/paymentserver.cpp b/src/qt/paymentserver.cpp
index fd54591a7..88aaec8d3 100644
--- a/src/qt/paymentserver.cpp
+++ b/src/qt/paymentserver.cpp
@@ -78,7 +78,7 @@ namespace // Anon namespace
//
static QString ipcServerName()
{
- QString name("BitcoinQt");
+ QString name("DogecoinQt");
// Append a simple hash of the datadir
// Note that GetDataDir(true) returns a different path
@@ -324,7 +324,7 @@ PaymentServer::PaymentServer(QObject* parent, bool startLocalServer) :
if (!uriServer->listen(name)) {
// constructor is called early in init, so don't use "Q_EMIT message()" here
QMessageBox::critical(0, tr("Payment request error"),
- tr("Cannot start bitcoin: click-to-pay handler"));
+ tr("Cannot start dogecoin: click-to-pay handler"));
}
else {
connect(uriServer, SIGNAL(newConnection()), this, SLOT(handleURIConnection()));
@@ -449,7 +449,7 @@ void PaymentServer::handleURIOrFile(const QString& s)
}
else
Q_EMIT message(tr("URI handling"),
- tr("URI cannot be parsed! This can be caused by an invalid Bitcoin address or malformed URI parameters."),
+ tr("URI cannot be parsed! This can be caused by an invalid Dogecoin address or malformed URI parameters."),
CClientUIInterface::ICON_WARNING);
return;