Skip to content

Commit

Permalink
More rebranding (card image credit to Matthew)
Browse files Browse the repository at this point in the history
  • Loading branch information
thaerkh committed Apr 30, 2018
1 parent cd576fc commit 0aea3ab
Show file tree
Hide file tree
Showing 41 changed files with 89 additions and 89 deletions.
Binary file modified images/card-background.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions main.cpp
Expand Up @@ -81,7 +81,7 @@ int main(int argc, char *argv[])
//#endif

// Log settings
Monero::Wallet::init(argv[0], "monero-wallet-gui");
Monero::Wallet::init(argv[0], "masari-wallet-gui");
// qInstallMessageHandler(messageHandler);

MainApp app(argc, argv);
Expand Down Expand Up @@ -249,7 +249,7 @@ int main(int argc, char *argv[])
accountName = qgetenv("USERNAME"); // Windows
}
if (accountName.isEmpty()) {
accountName = "My monero Account";
accountName = "My masari Account";
}

engine.rootContext()->setContextProperty("defaultAccountName", accountName);
Expand Down
16 changes: 8 additions & 8 deletions main.qml
Expand Up @@ -526,7 +526,7 @@ ApplicationWindow {
currentWallet.startRefresh();
daemonRunning = false;
informationPopup.title = qsTr("Daemon failed to start") + translationManager.emptyString;
informationPopup.text = qsTr("Please check your wallet and daemon log for errors. You can also try to start %1 manually.").arg((isWindows)? "monerod.exe" : "monerod")
informationPopup.text = qsTr("Please check your wallet and daemon log for errors. You can also try to start %1 manually.").arg((isWindows)? "masarid.exe" : "masarid")
informationPopup.icon = StandardIcon.Critical
informationPopup.onCloseCallback = null
informationPopup.open();
Expand Down Expand Up @@ -564,7 +564,7 @@ ApplicationWindow {

function onWalletMoneySent(txId, amount) {
// refresh transaction history here
console.log("monero sent found")
console.log("masari sent found")
currentWallet.refresh()
currentWallet.history.refresh(currentWallet.currentSubaddressAccount) // this will refresh model
}
Expand Down Expand Up @@ -779,7 +779,7 @@ ApplicationWindow {
txid_text += ", "
txid_text += txid[i]
}
informationPopup.text = (viewOnly)? qsTr("Transaction saved to file: %1").arg(path) : qsTr("Monero sent successfully: %1 transaction(s) ").arg(txid.length) + txid_text + translationManager.emptyString
informationPopup.text = (viewOnly)? qsTr("Transaction saved to file: %1").arg(path) : qsTr("Masari sent successfully: %1 transaction(s) ").arg(txid.length) + txid_text + translationManager.emptyString
informationPopup.icon = StandardIcon.Information
if (transactionDescription.length > 0) {
for (var i = 0; i < txid.length; ++i)
Expand Down Expand Up @@ -850,10 +850,10 @@ ApplicationWindow {
} else if (received > 0) {
received = received / 1e12
if (in_pool) {
informationPopup.text = qsTr("This address received %1 monero, but the transaction is not yet mined").arg(received);
informationPopup.text = qsTr("This address received %1 masari, but the transaction is not yet mined").arg(received);
}
else {
informationPopup.text = qsTr("This address received %1 monero, with %2 confirmation(s).").arg(received).arg(confirmations);
informationPopup.text = qsTr("This address received %1 masari, with %2 confirmation(s).").arg(received).arg(confirmations);
}
}
else {
Expand Down Expand Up @@ -1297,7 +1297,7 @@ ApplicationWindow {
// PropertyChanges { target: frameArea; blocked: true }
PropertyChanges { target: titleBar; visible: true }
// PropertyChanges { target: titleBar; y: 0 }
PropertyChanges { target: titleBar; title: qsTr("Monero") + translationManager.emptyString }
PropertyChanges { target: titleBar; title: qsTr("Masari") + translationManager.emptyString }
PropertyChanges { target: mobileHeader; visible: isMobile ? true : false }
}
]
Expand Down Expand Up @@ -1714,7 +1714,7 @@ ApplicationWindow {
var hash = parts[1]
var user_url = parts[2]
var auto_url = parts[3]
var msg = qsTr("New version of monero-wallet-gui is available: %1<br>%2").arg(version).arg(user_url) + translationManager.emptyString
var msg = qsTr("New version of masari-wallet-gui is available: %1<br>%2").arg(version).arg(user_url) + translationManager.emptyString
notifier.show(msg)
}
else {
Expand All @@ -1723,7 +1723,7 @@ ApplicationWindow {
}

function checkUpdates() {
walletManager.checkUpdatesAsync("monero-gui", "gui")
walletManager.checkUpdatesAsync("masari-wallet-gui", "gui")
}

Timer {
Expand Down
2 changes: 1 addition & 1 deletion masari-wallet-gui.pro
Expand Up @@ -454,7 +454,7 @@ OTHER_FILES += \

DISTFILES += \
notes.txt \
monero/src/wallet/CMakeLists.txt \
masari/src/wallet/CMakeLists.txt \
components/MobileHeader.qml


Expand Down
2 changes: 1 addition & 1 deletion pages/Keys.qml
Expand Up @@ -252,7 +252,7 @@ Rectangle {
seedText.text = currentWallet.seed

if(typeof currentWallet != "undefined") {
viewOnlyQRCode.source = "image://qrcode/monero:" + currentWallet.address+"?secret_view_key="+currentWallet.secretViewKey+"&restore_height="+currentWallet.restoreHeight
viewOnlyQRCode.source = "image://qrcode/masari:" + currentWallet.address+"?secret_view_key="+currentWallet.secretViewKey+"&restore_height="+currentWallet.restoreHeight
fullWalletQRCode.source = viewOnlyQRCode.source +"&secret_spend_key="+currentWallet.secretSpendKey

if(currentWallet.viewOnly) {
Expand Down
2 changes: 1 addition & 1 deletion pages/Receive.qml
Expand Up @@ -50,7 +50,7 @@ Rectangle {
property string trackingLineText: ""

function makeQRCodeString() {
var s = "monero:"
var s = "masari:"
var nfields = 0
s += current_address;
var amount = amountLine.text.trim()
Expand Down
2 changes: 1 addition & 1 deletion pages/Transfer.qml
Expand Up @@ -617,7 +617,7 @@ Rectangle {
informationPopup.open();
} else {
informationPopup.title = qsTr("Information") + translationManager.emptyString
informationPopup.text = qsTr("Monero sent successfully") + translationManager.emptyString
informationPopup.text = qsTr("Masari sent successfully") + translationManager.emptyString
informationPopup.icon = StandardIcon.Information
informationPopup.onCloseCallback = null
informationPopup.open();
Expand Down
6 changes: 3 additions & 3 deletions src/daemon/DaemonManager.cpp
Expand Up @@ -74,7 +74,7 @@ bool DaemonManager::start(const QString &flags, NetworkType::Type nettype, const



qDebug() << "starting monerod " + m_monerod;
qDebug() << "starting masarid " + m_monerod;
qDebug() << "With command line arguments " << arguments;

m_daemon = new QProcess();
Expand Down Expand Up @@ -166,9 +166,9 @@ bool DaemonManager::stopWatcher(NetworkType::Type nettype) const
if(counter >= 5) {
qDebug() << "Killing it! ";
#ifdef Q_OS_WIN
QProcess::execute("taskkill /F /IM monerod.exe");
QProcess::execute("taskkill /F /IM masarid.exe");
#else
QProcess::execute("pkill monerod");
QProcess::execute("pkill masarid");
#endif
}

Expand Down
2 changes: 1 addition & 1 deletion start-low-graphics-mode.bat
Expand Up @@ -2,4 +2,4 @@

set QMLSCENE_DEVICE=softwarecontext

start /b monero-wallet-gui.exe
start /b masari-wallet-gui.exe
2 changes: 1 addition & 1 deletion translations/monero-core.ts
Expand Up @@ -1904,7 +1904,7 @@ For the case with Spend Proof, you don&apos;t need to specify the recipient addr
</message>
<message>
<location filename="../wizard/WizardDonation.qml" line="164"/>
<source>For every transaction, a small transaction fee is charged. This option lets you add an additional amount, as a percentage of that fee, to your transaction to support Monero development. For instance, a 50% autodonation take a transaction fee of 0.005 XMR and add a 0.0025 XMR to support Monero development.</source>
<source>For every transaction, a small transaction fee is charged. This option lets you add an additional amount, as a percentage of that fee, to your transaction to support Monero development. For instance, a 50% autodonation take a transaction fee of 0.005 MSR and add a 0.0025 MSR to support Monero development.</source>
<translation type="unfinished"></translation>
</message>
<message>
Expand Down
4 changes: 2 additions & 2 deletions translations/monero-core_ar.ts
Expand Up @@ -1905,8 +1905,8 @@ For the case with Spend Proof, you don&apos;t need to specify the recipient addr
</message>
<message>
<location filename="../wizard/WizardDonation.qml" line="164"/>
<source>For every transaction, a small transaction fee is charged. This option lets you add an additional amount, as a percentage of that fee, to your transaction to support Monero development. For instance, a 50% autodonation take a transaction fee of 0.005 XMR and add a 0.0025 XMR to support Monero development.</source>
<translation>لكل معامله هناك رسوم بسيطه. هذا الخيار يسمح ك باضافه كميه ا ضافيه , كنسبه من هذه الرسوم , من معاملتك لدعم تطوير مونيرو. علي المثال , 50% تبرع تلقائي من معامله رسومها 0.005 XMR ويضاف 0.0025 XMR لمساعده تطوير مونيرو. </translation>
<source>For every transaction, a small transaction fee is charged. This option lets you add an additional amount, as a percentage of that fee, to your transaction to support Monero development. For instance, a 50% autodonation take a transaction fee of 0.005 MSR and add a 0.0025 MSR to support Monero development.</source>
<translation>لكل معامله هناك رسوم بسيطه. هذا الخيار يسمح ك باضافه كميه ا ضافيه , كنسبه من هذه الرسوم , من معاملتك لدعم تطوير مونيرو. علي المثال , 50% تبرع تلقائي من معامله رسومها 0.005 MSR ويضاف 0.0025 MSR لمساعده تطوير مونيرو. </translation>
</message>
<message>
<location filename="../wizard/WizardDonation.qml" line="176"/>
Expand Down
4 changes: 2 additions & 2 deletions translations/monero-core_cat.ts
Expand Up @@ -1913,8 +1913,8 @@ For the case with Spend Proof, you don&apos;t need to specify the recipient addr
</message>
<message>
<location filename="../wizard/WizardDonation.qml" line="164"/>
<source>For every transaction, a small transaction fee is charged. This option lets you add an additional amount, as a percentage of that fee, to your transaction to support Monero development. For instance, a 50% autodonation take a transaction fee of 0.005 XMR and add a 0.0025 XMR to support Monero development.</source>
<translation>Per cada transacció es carrega una petita comissió. Aquesta opció permet afegir una cantita adicional, com a porcentatge d&apos;aquesta comissió, per a donar suport a Monero. Per exemple, una autodonació del 50% d&apos;una comissió de 0.005 XMR afegeix0.0025 XMR per donar suport al desenvolupament de Monero.</translation>
<source>For every transaction, a small transaction fee is charged. This option lets you add an additional amount, as a percentage of that fee, to your transaction to support Monero development. For instance, a 50% autodonation take a transaction fee of 0.005 MSR and add a 0.0025 MSR to support Monero development.</source>
<translation>Per cada transacció es carrega una petita comissió. Aquesta opció permet afegir una cantita adicional, com a porcentatge d&apos;aquesta comissió, per a donar suport a Monero. Per exemple, una autodonació del 50% d&apos;una comissió de 0.005 MSR afegeix0.0025 MSR per donar suport al desenvolupament de Monero.</translation>
</message>
<message>
<location filename="../wizard/WizardDonation.qml" line="176"/>
Expand Down
4 changes: 2 additions & 2 deletions translations/monero-core_cs.ts
Expand Up @@ -1919,8 +1919,8 @@ For the case of outgoing payments, you can get a &apos;Spend Proof&apos; that pr
</message>
<message>
<location filename="../wizard/WizardDonation.qml" line="164"/>
<source>For every transaction, a small transaction fee is charged. This option lets you add an additional amount, as a percentage of that fee, to your transaction to support Monero development. For instance, a 50% autodonation take a transaction fee of 0.005 XMR and add a 0.0025 XMR to support Monero development.</source>
<translation>Pro každou transakci je účtován malý transakční poplatek. Tato volba vám umožní přidat částku z tohoto poplatku do vaší transakce na podporu vývoje společnosti Monero. Například 50% autodonace převezme transakční poplatek 0,005 XMR a přidá 0,0025 XMR k podpoře vývoje společnosti Monero.</translation>
<source>For every transaction, a small transaction fee is charged. This option lets you add an additional amount, as a percentage of that fee, to your transaction to support Monero development. For instance, a 50% autodonation take a transaction fee of 0.005 MSR and add a 0.0025 MSR to support Monero development.</source>
<translation>Pro každou transakci je účtován malý transakční poplatek. Tato volba vám umožní přidat částku z tohoto poplatku do vaší transakce na podporu vývoje společnosti Monero. Například 50% autodonace převezme transakční poplatek 0,005 MSR a přidá 0,0025 MSR k podpoře vývoje společnosti Monero.</translation>
</message>
<message>
<location filename="../wizard/WizardDonation.qml" line="176"/>
Expand Down
4 changes: 2 additions & 2 deletions translations/monero-core_da.ts
Expand Up @@ -1904,8 +1904,8 @@ For the case with Spend Proof, you don&apos;t need to specify the recipient addr
</message>
<message>
<location filename="../wizard/WizardDonation.qml" line="164"/>
<source>For every transaction, a small transaction fee is charged. This option lets you add an additional amount, as a percentage of that fee, to your transaction to support Monero development. For instance, a 50% autodonation take a transaction fee of 0.005 XMR and add a 0.0025 XMR to support Monero development.</source>
<translation>For hver transaktion, ville der blive trukket et lille gebyr. Denne mulighed lader dig tilføje et ekstra beløb, som en procentdel af den gebyr til din transaktion for at støtte Monero udvikling. F.eks. ville en 50% autodonation tag en transaktions gebyr på 0,005 XMR og lægge 0,0025 XMR oveni for at støtte Monero&apos;s udvikling.</translation>
<source>For every transaction, a small transaction fee is charged. This option lets you add an additional amount, as a percentage of that fee, to your transaction to support Monero development. For instance, a 50% autodonation take a transaction fee of 0.005 MSR and add a 0.0025 MSR to support Monero development.</source>
<translation>For hver transaktion, ville der blive trukket et lille gebyr. Denne mulighed lader dig tilføje et ekstra beløb, som en procentdel af den gebyr til din transaktion for at støtte Monero udvikling. F.eks. ville en 50% autodonation tag en transaktions gebyr på 0,005 MSR og lægge 0,0025 MSR oveni for at støtte Monero&apos;s udvikling.</translation>
</message>
<message>
<location filename="../wizard/WizardDonation.qml" line="176"/>
Expand Down
4 changes: 2 additions & 2 deletions translations/monero-core_de.ts
Expand Up @@ -1912,8 +1912,8 @@ For the case with Spend Proof, you don&apos;t need to specify the recipient addr
</message>
<message>
<location filename="../wizard/WizardDonation.qml" line="164"/>
<source>For every transaction, a small transaction fee is charged. This option lets you add an additional amount, as a percentage of that fee, to your transaction to support Monero development. For instance, a 50% autodonation take a transaction fee of 0.005 XMR and add a 0.0025 XMR to support Monero development.</source>
<translation>Für jede Transaktion fällt eine kleine Gebühr an. Mit dieser Option kannst Du diese Gebühr um einen zusätzlichen Prozentsatz erhöhen, um die Entwicklung von Monero voranzutreiben. Bei einer 50-%igen automatischen Spende und einer Transaktionsgebühr von 0.005 XMR würden somit zusätzliche 0.0025 der Entwicklung von Monero zukommen.</translation>
<source>For every transaction, a small transaction fee is charged. This option lets you add an additional amount, as a percentage of that fee, to your transaction to support Monero development. For instance, a 50% autodonation take a transaction fee of 0.005 MSR and add a 0.0025 MSR to support Monero development.</source>
<translation>Für jede Transaktion fällt eine kleine Gebühr an. Mit dieser Option kannst Du diese Gebühr um einen zusätzlichen Prozentsatz erhöhen, um die Entwicklung von Monero voranzutreiben. Bei einer 50-%igen automatischen Spende und einer Transaktionsgebühr von 0.005 MSR würden somit zusätzliche 0.0025 der Entwicklung von Monero zukommen.</translation>
</message>
<message>
<location filename="../wizard/WizardDonation.qml" line="176"/>
Expand Down
4 changes: 2 additions & 2 deletions translations/monero-core_eo.ts
Expand Up @@ -1907,8 +1907,8 @@ For the case with Spend Proof, you don&apos;t need to specify the recipient addr
</message>
<message>
<location filename="../wizard/WizardDonation.qml" line="164"/>
<source>For every transaction, a small transaction fee is charged. This option lets you add an additional amount, as a percentage of that fee, to your transaction to support Monero development. For instance, a 50% autodonation take a transaction fee of 0.005 XMR and add a 0.0025 XMR to support Monero development.</source>
<translation>Por ĉiu transakcio, oni devas pagi malgrandan transakcikoston. Tiu ĉi opcio ebligas aldonan sumon (procento de la baza kosto) al via transakcio por subteni la programadon de Monero. Ekzemple, 50% aŭtomata donaco aldonas 0.0025 XMR al transakcikosto de 0.005 XMR.</translation>
<source>For every transaction, a small transaction fee is charged. This option lets you add an additional amount, as a percentage of that fee, to your transaction to support Monero development. For instance, a 50% autodonation take a transaction fee of 0.005 MSR and add a 0.0025 MSR to support Monero development.</source>
<translation>Por ĉiu transakcio, oni devas pagi malgrandan transakcikoston. Tiu ĉi opcio ebligas aldonan sumon (procento de la baza kosto) al via transakcio por subteni la programadon de Monero. Ekzemple, 50% aŭtomata donaco aldonas 0.0025 MSR al transakcikosto de 0.005 MSR.</translation>
</message>
<message>
<location filename="../wizard/WizardDonation.qml" line="176"/>
Expand Down
4 changes: 2 additions & 2 deletions translations/monero-core_es.ts
Expand Up @@ -1918,8 +1918,8 @@ For the case with Spend Proof, you don&apos;t need to specify the recipient addr
</message>
<message>
<location filename="../wizard/WizardDonation.qml" line="164"/>
<source>For every transaction, a small transaction fee is charged. This option lets you add an additional amount, as a percentage of that fee, to your transaction to support Monero development. For instance, a 50% autodonation take a transaction fee of 0.005 XMR and add a 0.0025 XMR to support Monero development.</source>
<translation>Por cada transacción, se carga una pequeña comisión. Esta opción le permite añadir una cantidad adicional, como porcentaje de esta comisión, para dar apoyo a Monero. Por ejemplo, una autodonación del 50% de una comisión de 0.005 XMR añade 0.0025 XMR para apoyar el desarrollo de Monero.</translation>
<source>For every transaction, a small transaction fee is charged. This option lets you add an additional amount, as a percentage of that fee, to your transaction to support Monero development. For instance, a 50% autodonation take a transaction fee of 0.005 MSR and add a 0.0025 MSR to support Monero development.</source>
<translation>Por cada transacción, se carga una pequeña comisión. Esta opción le permite añadir una cantidad adicional, como porcentaje de esta comisión, para dar apoyo a Monero. Por ejemplo, una autodonación del 50% de una comisión de 0.005 MSR añade 0.0025 MSR para apoyar el desarrollo de Monero.</translation>
</message>
<message>
<location filename="../wizard/WizardDonation.qml" line="176"/>
Expand Down

0 comments on commit 0aea3ab

Please sign in to comment.