From: Felix Domke Date: Wed, 11 Jul 2007 13:25:00 +0000 (+0000) Subject: (ralfk) make cuesheet actions translatable X-Git-Tag: 2.6.0~2114 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/5c647467dcacf02c52304186df62f03d21a3f094 (ralfk) make cuesheet actions translatable --- diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py index ee1ffaa8..99f6ba0c 100644 --- a/lib/python/Screens/InfoBarGenerics.py +++ b/lib/python/Screens/InfoBarGenerics.py @@ -1698,9 +1698,9 @@ class InfoBarCueSheetSupport: def __init__(self): self["CueSheetActions"] = HelpableActionMap(self, "InfobarCueSheetActions", { - "jumpPreviousMark": (self.jumpPreviousMark, "jump to next marked position"), - "jumpNextMark": (self.jumpNextMark, "jump to previous marked position"), - "toggleMark": (self.toggleMark, "toggle a cut mark at the current position") + "jumpPreviousMark": (self.jumpPreviousMark, _("jump to next marked position")), + "jumpNextMark": (self.jumpNextMark, _("jump to previous marked position")), + "toggleMark": (self.toggleMark, _("toggle a cut mark at the current position")) }, prio=1) self.cut_list = [ ]