Skip to content

Commit

Permalink
More improvements to show the symbol replacement
Browse files Browse the repository at this point in the history
  • Loading branch information
nvdaes committed Jun 30, 2019
1 parent 0d453fd commit 46101cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addon/globalPlugins/emoticons/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def script_showReviewCursorSymbol(self, gesture):
message = _("Character: {}\nReplacement: {}").format(text, expandedSymbol)
languageDescription = languageHandler.getLanguageDescription(curLanguage)
# Translators: title for expanded symbol dialog. Example: "Expanded symbol (English)"
title = _("Expanded symbol at the review cursor ({})").format(languageDescription)
title = _("Symbol at the review cursor position ({})").format(languageDescription)
ui.browseableMessage(message, title)

@script(
Expand Down Expand Up @@ -278,7 +278,7 @@ def script_showCaretSymbol(self, gesture):
message = _("Character: {}\nReplacement: {}").format(text, expandedSymbol)
languageDescription = languageHandler.getLanguageDescription(curLanguage)
# Translators: title for expanded symbol dialog. Example: "Expanded symbol (English)"
title = _("Expanded symbol at the caret position({})").format(languageDescription)
title = _("Symbol at the caret position ({})").format(languageDescription)
ui.browseableMessage(message, title)


Expand Down

0 comments on commit 46101cc

Please sign in to comment.