add help text for csv
authorThomasV <thomasv@gitorious>
Sat, 28 Sep 2013 14:03:52 +0000 (16:03 +0200)
committerThomasV <thomasv@gitorious>
Sat, 28 Sep 2013 14:07:07 +0000 (16:07 +0200)
gui/qt/main_window.py

index 6171e67..4f59ecc 100644 (file)
@@ -1750,7 +1750,8 @@ class ElectrumWindow(QMainWindow):
             return
 
     def do_process_from_csv_text(self):
-        text = text_dialog(self, _('Input CSV'), _("CSV:"), _("Load CSV"))
+        text = text_dialog(self, _('Input CSV'), _("Please enter a list of outputs.") + '\n' \
+                               + _("Format: address, amount. One output per line"), _("Load CSV"))
         if not text:
             return
         f = StringIO.StringIO(text)