Skip to content

Commit

Permalink
Update dialogue highlighting settings text in Preferences
Browse files Browse the repository at this point in the history
  • Loading branch information
vkbo committed Nov 12, 2024
1 parent 8c95295 commit 1bd8370
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions novelwriter/dialogs/preferences.py
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ def buildForm(self) -> None:
self.dialogLine.setText(CONFIG.dialogLine)
self.mainForm.addRow(
self.tr("Dialogue line symbols"), self.dialogLine,
self.tr("Lines starting with these symbols are always dialogue.")
self.tr("Lines starting with any of these symbols are dialogue.")
)

self.narratorBreak = QLineEdit(self)
Expand All @@ -583,8 +583,8 @@ def buildForm(self) -> None:
self.narratorBreak.setAlignment(QtAlignCenter)
self.narratorBreak.setText(CONFIG.narratorBreak)
self.mainForm.addRow(
self.tr("Dialogue narrator break symbol"), self.narratorBreak,
self.tr("Symbol to indicate injected narrator break in dialogue")
self.tr("Narrator break symbol"), self.narratorBreak,
self.tr("Symbol to indicate a narrator break in dialogue")
)

self.narratorDialog = QLineEdit(self)
Expand Down

0 comments on commit 1bd8370

Please sign in to comment.