From a479bc7c48f9a4f393320f09a4116d8ee5ee57c8 Mon Sep 17 00:00:00 2001 From: "Soren I. Bjornstad" Date: Mon, 11 Aug 2014 10:31:48 -0500 Subject: [PATCH] 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. --- aqt/importing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aqt/importing.py b/aqt/importing.py index e3a42a82c..ae0130a50 100644 --- a/aqt/importing.py +++ b/aqt/importing.py @@ -34,7 +34,7 @@ class ChangeMap(QDialog): self.frm.fields.setCurrentRow(n) n += 1 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 current == "_tags": self.frm.fields.setCurrentRow(n)