Fix minor typo in exporting labels

Changed "where" to "were"
This commit is contained in:
J.R. Mathis 2017-08-12 22:59:07 -05:00 committed by GitHub
parent 8d82e66eee
commit 5062e642c2
1 changed files with 1 additions and 1 deletions

View File

@ -2201,7 +2201,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
if fileName:
with open(fileName, 'w+') as f:
json.dump(labels, f, indent=4, sort_keys=True)
self.show_message(_("Your labels where exported to") + " '%s'" % str(fileName))
self.show_message(_("Your labels were exported to") + " '%s'" % str(fileName))
except (IOError, os.error), reason:
self.show_critical(_("Electrum was unable to export your labels.") + "\n" + str(reason))