summaryrefslogtreecommitdiff
path: root/src/qt
diff options
context:
space:
mode:
authorMonzero Build System <builds@monzero.org>2026-08-15 21:26:40 +0100
committerMonzero Build System <builds@monzero.org>2026-08-15 21:26:40 +0100
commitdceeb88444ce966caa1a133d2926d5f7213c87ff (patch)
treed74c9c7d7e43c2a0d39d656c690c63050cff7f53 /src/qt
parent81f33c7e00bf183823909a02e6d96ce11e41adce (diff)
downloadmonzero-gui-phase0-20260815.tar.gz
monzero-gui-phase0-20260815.tar.xz
monzero-gui-phase0-20260815.zip
Establish Monzero GUI Phase 0 baselinemonzero-gui-phase0-20260815
Diffstat (limited to 'src/qt')
-rw-r--r--src/qt/TailsOS.cpp6
-rw-r--r--src/qt/utils.cpp14
2 files changed, 10 insertions, 10 deletions
diff --git a/src/qt/TailsOS.cpp b/src/qt/TailsOS.cpp
index 1ab15721..099dc39d 100644
--- a/src/qt/TailsOS.cpp
+++ b/src/qt/TailsOS.cpp
@@ -42,9 +42,9 @@ void TailsOS::showDataPersistenceDisabledWarning()
msgBox.setText(QObject::tr("Warning: persistence disabled"));
msgBox.setWindowTitle(QObject::tr("Warning: persistence disabled"));
msgBox.setInformativeText(
- QObject::tr("Monero GUI has detected that Tails persistence is "
+ QObject::tr("Monzero GUI has detected that Tails persistence is "
"currently disabled. Any configurations you make inside "
- "the Monero GUI will not be saved."
+ "the Monzero GUI will not be saved."
"\n\n"
"In addition, make sure to not save your wallet on the "
"filesystem, as it will be lost at shutdown."
@@ -62,7 +62,7 @@ void TailsOS::showDataPersistenceDisabledWarning()
void TailsOS::askPersistence()
{
QMessageBox msgBox;
- msgBox.setWindowTitle(QObject::tr("Monero GUI"));
+ msgBox.setWindowTitle(QObject::tr("Monzero GUI"));
msgBox.setText(QObject::tr("Use Tails persistence?"));
msgBox.setInformativeText(
QObject::tr("Persist wallet files and configuration on the encrypted volume?"
diff --git a/src/qt/utils.cpp b/src/qt/utils.cpp
index c5910d66..eba3affa 100644
--- a/src/qt/utils.cpp
+++ b/src/qt/utils.cpp
@@ -85,7 +85,7 @@ QString getAccountName(){
if (accountName.isEmpty())
accountName = qgetenv("USERNAME"); // Windows
if (accountName.isEmpty())
- accountName = "My monero Account";
+ accountName = "My Monzero Account";
return accountName;
}
@@ -93,11 +93,11 @@ QString getAccountName(){
QString xdgMime(){
return QString(
"[Desktop Entry]\n"
- "Name=Monero GUI\n"
- "GenericName=Monero-GUI\n"
- "X-GNOME-FullName=Monero-GUI\n"
- "Comment=Monero GUI\n"
- "Keywords=Monero;\n"
+ "Name=Monzero GUI\n"
+ "GenericName=Monzero GUI\n"
+ "X-GNOME-FullName=Monzero GUI\n"
+ "Comment=Monzero GUI\n"
+ "Keywords=Monzero;XMZ;\n"
"Exec=\"%1\" %u\n"
"Terminal=false\n"
"Type=Application\n"
@@ -107,7 +107,7 @@ QString xdgMime(){
"StartupNotify=true\n"
"X-GNOME-Bugzilla-Bugzilla=GNOME\n"
"X-GNOME-UsesNotifications=true\n"
- "StartupWMClass=monero-wallet-gui\n"
+ "StartupWMClass=monzero-wallet-gui\n"
).arg(QCoreApplication::applicationFilePath());
}