Skip to content

Commit

Permalink
Fix stranslatable strings (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
nvdaes authored Aug 7, 2021
1 parent 9323d23 commit 0564507
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions addon/globalPlugins/placeMarkers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,7 @@ def onCopy(self, evt):

@script(
# Translators: message presented in input mode, when a keystroke of an addon script is pressed.
description=_("Activates the Copy dialog of %s." % ADDON_SUMMARY)
description=_("Activates the Copy dialog of %s.") % ADDON_SUMMARY
)
def script_activateCopyDialog(self, gesture):
wx.CallAfter(self.onCopy, None)
Expand All @@ -725,7 +725,7 @@ def onRestore(self, evt):

@script(
# Translators: message presented in input mode, when a keystroke of an addon script is pressed.
description=_("Activates the Restore dialog of %s." % ADDON_SUMMARY)
description=_("Activates the Restore dialog of %s.") % ADDON_SUMMARY
)
def script_activateRestoreDialog(self, gesture):
wx.CallAfter(self.onRestore, None)
Expand Down Expand Up @@ -1030,7 +1030,7 @@ def script_showCurrentBookmarksFile(self, gesture):
fileName = getFile("bookmarks")
ui.browseableMessage(
# Translators: Title for a message presented when the file name for place markers is shown in browse mode.
fileName, _("%s file" % ADDON_SUMMARY)
fileName, _("%s file") % ADDON_SUMMARY
)

@script(
Expand Down

0 comments on commit 0564507

Please sign in to comment.