1
0

Add translations and fixes to 1.9 master

Added translations, fixes to syntax errors and other minor fixes for
text strings.

Tested all changes. I hope not to break anyhting…

I was unsurem, but the menu bar on the Lite GUI dissapeared. Looking at
the commits on master, it seems that it wasn't me.
This commit is contained in:
rdymac
2013-09-17 05:19:23 +02:00
parent 428fbf1f63
commit 10be6e7609
7 changed files with 47 additions and 39 deletions

View File

@@ -131,7 +131,7 @@ def csv_transaction(wallet):
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))
QMessageBox.critical(None,_("Unable to create csv"), export_error_label + "\n" + str(reason))
@@ -710,7 +710,7 @@ class MiniActuator:
w = QDialog()
w.resize(200, 70)
w.setWindowTitle('Electrum')
l = QLabel('Sending transaction, please wait.')
l = QLabel(_('Sending transaction, please wait.'))
vbox = QVBoxLayout()
vbox.addWidget(l)
w.setLayout(vbox)