From 6b5162880591f1c708d5d320e4c58cbf27cebdbd Mon Sep 17 00:00:00 2001 From: thomasv Date: Thu, 3 Jan 2013 15:27:39 +0100 Subject: [PATCH] text for help button of the receive tab mode --- lib/gui_qt.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/lib/gui_qt.py b/lib/gui_qt.py index c7e2d8db9..1be3f86b1 100644 --- a/lib/gui_qt.py +++ b/lib/gui_qt.py @@ -1595,13 +1595,18 @@ class ElectrumWindow(QMainWindow): for w in [lang_combo, lang_label]: w.setEnabled(False) - view_label=QLabel(_('Receive mode') + ':') + view_label=QLabel(_('Receive Tab') + ':') grid_ui.addWidget(view_label , 9, 0) view_combo = QComboBox() - view_combo.addItems([_('Simple View'), _('Detailed View'), _('Point of Sale')]) + view_combo.addItems([_('Simple'), _('Advanced'), _('Point of Sale')]) view_combo.setCurrentIndex(self.receive_tab_mode) grid_ui.addWidget(view_combo, 9, 1) - grid_ui.addWidget(HelpButton(_('View mode for your "Receive" tab. ')), 9, 2) + hh = _('This selects the interaction mode of the "Receive" tab. ') + '\n\n' \ + + _('Simple') + ': ' + _('Show only addresses and labels.') + '\n\n' \ + + _('Advanced') + ': ' + _('Show address balances and add extra menu items to freeze/prioritize addresses.') + '\n\n' \ + + _('Point of Sale') + ': ' + _('Show QR code window and amounts requested for each address. Add menu item to request amount.') + '\n\n' + + grid_ui.addWidget(HelpButton(hh), 9, 2) vbox.addLayout(ok_cancel_buttons(d)) d.setLayout(vbox)