From 7841d59f02d20aad1b242e0ab7410f177b5f5837 Mon Sep 17 00:00:00 2001 From: gpdionisio Date: Sat, 5 May 2018 14:30:04 +0200 Subject: [PATCH] more friendly collateral spending messages --- src/tabRewards.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/tabRewards.py b/src/tabRewards.py index d063ff2..b77218e 100644 --- a/src/tabRewards.py +++ b/src/tabRewards.py @@ -221,18 +221,18 @@ def onSendRewards(self): # Check Noob spending collateral if (self.ui.rewardsList.box.collateralRow is not None and self.ui.rewardsList.box.item(self.ui.rewardsList.box.collateralRow, 0).isSelected() ): - warning1 = "Are you sure you want to transfer the collateral? (only n00bs click \"Yes\" )" - warning2 = "Are you sure you want to give up on a one-way trip to the moon?" - warning3 = "Take a deep breath. This is not the solution. Think again. Do you REALLY want to transfer your collateral?" - ans = self.caller.myPopUp(QMessageBox.Warning, 'SPMT - da fuk!?', warning1) + warning1 = "Are you sure you want to transfer the collateral?" + warning2 = "Really?" + warning3 = "Take a deep breath. Do you REALLY want to transfer your collateral?" + ans = self.caller.myPopUp(QMessageBox.Warning, 'SPMT - warning', warning1) if ans == QMessageBox.No: return None else: - ans2 = self.caller.myPopUp(QMessageBox.Warning, 'SPMT - da fuk!?', warning2) + ans2 = self.caller.myPopUp(QMessageBox.Warning, 'SPMT - warning', warning2) if ans2 == QMessageBox.No: return None else: - ans3 = self.caller.myPopUp(QMessageBox.Critical, 'SPMT - da fuk!?', warning3) + ans3 = self.caller.myPopUp(QMessageBox.Critical, 'SPMT - warning', warning3) if ans3 == QMessageBox.No: return None