mirror of
https://git.wownero.com/wowlet/wowlet.git
synced 2024-08-15 01:03:14 +00:00
Merge pull request 'rename to wow' (#40) from wowario/wowlet:rename1 into master
Reviewed-on: https://git.wownero.com/wowlet/wowlet/pulls/40
This commit is contained in:
commit
5f746999c2
4 changed files with 4 additions and 4 deletions
|
@ -26,7 +26,7 @@ ViewOnlyDialog::ViewOnlyDialog(AppContext *ctx, QWidget *parent)
|
|||
}
|
||||
|
||||
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.endsWith(".keys")) fn += ".keys";
|
||||
|
||||
|
|
|
@ -58,7 +58,7 @@ QVariant CCSModel::data(const QModelIndex &index, int role) const
|
|||
return entry->author;
|
||||
#ifdef Q_OS_MACOS
|
||||
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
|
||||
default:
|
||||
return QVariant();
|
||||
|
|
|
@ -32,7 +32,7 @@ SendWidget::SendWidget(QWidget *parent) :
|
|||
ui->btn_openAlias->hide();
|
||||
|
||||
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"
|
||||
"The description is not sent to the recipient of the funds. It is stored in your wallet cache, "
|
||||
"and displayed in the 'History' tab.");
|
||||
|
|
|
@ -269,7 +269,7 @@ QString Utils::xdgDesktopEntry(){
|
|||
"Exec=\"%1\" %u\n"
|
||||
"Terminal=false\n"
|
||||
"Type=Application\n"
|
||||
"Icon=monero\n"
|
||||
"Icon=wowlet\n"
|
||||
"Categories=Network;GNOME;Qt;\n"
|
||||
"StartupNotify=true\n"
|
||||
"X-GNOME-Bugzilla-Bugzilla=GNOME\n"
|
||||
|
|
Loading…
Reference in a new issue