From 962792bdcdb0f9b222cf3645ea58f2270aa053d6 Mon Sep 17 00:00:00 2001 From: rdymac <1rdymac@MacBook-Air-de-Randy.local> Date: Wed, 16 Oct 2013 14:04:38 +0200 Subject: [PATCH] missing text strings missing text strings --- gui/qt/lite_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/qt/lite_window.py b/gui/qt/lite_window.py index b57a82117..1a422b1e2 100644 --- a/gui/qt/lite_window.py +++ b/gui/qt/lite_window.py @@ -127,7 +127,7 @@ def csv_transaction(wallet): balance_string = format_satoshis(balance, False) transaction.writerow([tx_hash, label, confirmations, value_string, fee_string, balance_string, time_string]) - QMessageBox.information(None,"CSV Export created", "Your CSV export has been successfully created.") + QMessageBox.information(None,_("CSV Export created"), _("Your CSV export has been successfully created.")) except (IOError, os.error), reason: export_error_label = _("Electrum was unable to produce a transaction export.") QMessageBox.critical(None,_("Unable to create csv"), export_error_label + "\n" + str(reason))