mirror of
https://git.wownero.com/wowlet/wowlet.git
synced 2024-08-15 01:03:14 +00:00
rename to wow
This commit is contained in:
parent
ca72462125
commit
7a14d53ba0
4 changed files with 4 additions and 4 deletions
|
@ -26,7 +26,7 @@ ViewOnlyDialog::ViewOnlyDialog(AppContext *ctx, QWidget *parent)
|
||||||
}
|
}
|
||||||
|
|
||||||
void ViewOnlyDialog::onWriteViewOnlyWallet(){
|
void ViewOnlyDialog::onWriteViewOnlyWallet(){
|
||||||
QString fn = QFileDialog::getSaveFileName(this, "Save .keys wallet file", QDir::homePath(), "Monero wallet (*.keys)");
|
QString fn = QFileDialog::getSaveFileName(this, "Save .keys wallet file", QDir::homePath(), "Wownero wallet (*.keys)");
|
||||||
if(fn.isEmpty()) return;
|
if(fn.isEmpty()) return;
|
||||||
if(!fn.endsWith(".keys")) fn += ".keys";
|
if(!fn.endsWith(".keys")) fn += ".keys";
|
||||||
|
|
||||||
|
|
|
@ -58,7 +58,7 @@ QVariant CCSModel::data(const QModelIndex &index, int role) const
|
||||||
return entry->author;
|
return entry->author;
|
||||||
#ifdef Q_OS_MACOS
|
#ifdef Q_OS_MACOS
|
||||||
case Progress:
|
case Progress:
|
||||||
return QString("%1/%2 XMR").arg(entry->raised_amount).arg(entry->target_amount);
|
return QString("%1/%2 WOW").arg(entry->raised_amount).arg(entry->target_amount);
|
||||||
#endif
|
#endif
|
||||||
default:
|
default:
|
||||||
return QVariant();
|
return QVariant();
|
||||||
|
|
|
@ -32,7 +32,7 @@ SendWidget::SendWidget(QWidget *parent) :
|
||||||
ui->btn_openAlias->hide();
|
ui->btn_openAlias->hide();
|
||||||
|
|
||||||
ui->label_PayTo->setHelpText("Recipient of the funds.\n\n"
|
ui->label_PayTo->setHelpText("Recipient of the funds.\n\n"
|
||||||
"You may enter a Monero address, or an alias (email-like address that forwards to a Monero address)");
|
"You may enter a Wownero address, or an alias (email-like address that forwards to a Wownero address)");
|
||||||
ui->label_Description->setHelpText("Description of the transaction (optional).\n\n"
|
ui->label_Description->setHelpText("Description of the transaction (optional).\n\n"
|
||||||
"The description is not sent to the recipient of the funds. It is stored in your wallet cache, "
|
"The description is not sent to the recipient of the funds. It is stored in your wallet cache, "
|
||||||
"and displayed in the 'History' tab.");
|
"and displayed in the 'History' tab.");
|
||||||
|
|
|
@ -269,7 +269,7 @@ QString Utils::xdgDesktopEntry(){
|
||||||
"Exec=\"%1\" %u\n"
|
"Exec=\"%1\" %u\n"
|
||||||
"Terminal=false\n"
|
"Terminal=false\n"
|
||||||
"Type=Application\n"
|
"Type=Application\n"
|
||||||
"Icon=monero\n"
|
"Icon=wowlet\n"
|
||||||
"Categories=Network;GNOME;Qt;\n"
|
"Categories=Network;GNOME;Qt;\n"
|
||||||
"StartupNotify=true\n"
|
"StartupNotify=true\n"
|
||||||
"X-GNOME-Bugzilla-Bugzilla=GNOME\n"
|
"X-GNOME-Bugzilla-Bugzilla=GNOME\n"
|
||||||
|
|
Loading…
Reference in a new issue