]> Nutra Git (v2) - gamesguru/feather.git/commitdiff
mainwindow: improve donation reminder
authortobtoht <tob@featherwallet.org>
Mon, 7 Oct 2024 15:36:33 +0000 (17:36 +0200)
committertobtoht <tob@featherwallet.org>
Mon, 7 Oct 2024 15:36:33 +0000 (17:36 +0200)
src/MainWindow.cpp

index 324ea902fd6179aa8f87ef36c8867d0235b55234..1be5eb8b5c3dca402dc8d73b46461fd8b1601d20 100644 (file)
@@ -1798,8 +1798,8 @@ void MainWindow::donationNag() {
 
     donationCounter++;
     if (donationCounter % constants::donationBoundary == 0) {
-        auto msg = "Feather is a 100% community-sponsored endeavor. Please consider supporting "
-                   "the project financially. Get rid of this message by donating any amount.";
+        auto msg = "Feather development is funded entirely through donations.\n\nPlease consider supporting "
+                   "the project. Donate any amount to remove this reminder.";
         int ret = QMessageBox::information(this, "Donate to Feather", msg, QMessageBox::Yes, QMessageBox::No);
         if (ret == QMessageBox::Yes) {
             this->donateButtonClicked();