def script_announceAudioSelection(self, gesture):
# Parse this string to get individual info such as marker positions.
audioSelectionParsed = self.getAudioSelectionParsed()
if not audioSelectionParsed:
# Translators: Presented when there is no audio selection summary available.
self.message(_("Unable to obtain audio selection summary. Please close and reopen the audio track."))
else:
# Translators: The audio selection summary message (example output: "0.00 to 1.00 (1.00)").
self.message(_("{audioSelectionStart} to {audioSelectionEnd} {audioSelectionLength}").format(audioSelectionStart = audioSelectionParsed[0], audioSelectionEnd = audioSelectionParsed[2], audioSelectionLength = audioSelectionParsed[3]))
# Translators: Input help mode message for a Goldwave command.
评论列表
文章目录