clarify deck description message

+ drop the reference to overview screen
This commit is contained in:
Damien Elmes 2021-07-24 21:45:09 +10:00
parent 7043e6f6f3
commit cd9f8d883c
2 changed files with 7 additions and 7 deletions

View File

@ -205,8 +205,11 @@ deck-config-revert-button-tooltip = Restore this setting to its default value.
## These strings are shown via the Description button at the bottom of the
## overview screen.
deck-config-description-markdown = Enable markdown+clean HTML
deck-config-description-markdown-hint = Will appear as text on Anki 2.1.40 and below.
deck-config-description-new-handling = Anki 2.1.41+ handling
deck-config-description-new-handling-hint =
Treats input as markdown, and cleans HTML input. When enabled, the
description will also be shown on the congratulations screen.
Markdown will appear as text on Anki 2.1.40 and below.
## Warnings shown to the user

View File

@ -48,11 +48,8 @@ class DeckDescriptionDialog(QDialog):
box = QVBoxLayout()
label = QLabel(tr.scheduling_description_to_show_on_overview_screen())
box.addWidget(label)
self.enable_markdown = QCheckBox(tr.deck_config_description_markdown())
self.enable_markdown.setToolTip(tr.deck_config_description_markdown_hint())
self.enable_markdown = QCheckBox(tr.deck_config_description_new_handling())
self.enable_markdown.setToolTip(tr.deck_config_description_new_handling_hint())
self.enable_markdown.setChecked(self.deck.get("md", False))
box.addWidget(self.enable_markdown)