change "discard field" to "ignore" in text importer

A user pointed out that once selected it said "ignore" and that
"discard" threatened that the information might be deleted.
This commit is contained in:
Soren I. Bjornstad 2014-08-11 10:31:48 -05:00
parent 1ea9fb3d4a
commit a479bc7c48

View file

@ -34,7 +34,7 @@ class ChangeMap(QDialog):
self.frm.fields.setCurrentRow(n) self.frm.fields.setCurrentRow(n)
n += 1 n += 1
self.frm.fields.addItem(QListWidgetItem(_("Map to Tags"))) self.frm.fields.addItem(QListWidgetItem(_("Map to Tags")))
self.frm.fields.addItem(QListWidgetItem(_("Discard field"))) self.frm.fields.addItem(QListWidgetItem(_("Ignore field")))
if not setCurrent: if not setCurrent:
if current == "_tags": if current == "_tags":
self.frm.fields.setCurrentRow(n) self.frm.fields.setCurrentRow(n)