Skip to content

Commit f8e0f56

Browse files
committed
better wording of updating options
1 parent f65716e commit f8e0f56

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

anknotes/__main__.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -383,9 +383,11 @@ def setup_evernote(self):
383383
layout.insertWidget(int(layout.count()) + 1, keep_evernote_tags)
384384

385385
# Update Existing Notes
386+
updated_label = QLabel("Behavior if a note is already imported:")
386387
update_existing_notes = QComboBox()
387-
update_existing_notes.addItems(["Ignore Existing Notes", "Update Existing Notes In-Place",
388-
"Delete and Re-Add Existing Notes"])
388+
update_existing_notes.addItems(["Ignore (do nothing)",
389+
"Update (raise API usage, but useful if you tend to edit your cards in Evernote)",
390+
"Reset (same as Update, but cards are rescheduled)"])
389391
update_existing_notes.setCurrentIndex(mw.col.conf.get(SETTING_UPDATE_EXISTING_NOTES,
390392
UpdateExistingNotes.UpdateNotesInPlace))
391393
update_existing_notes.activated.connect(update_evernote_update_existing_notes)

0 commit comments

Comments
 (0)