aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2007-07-11 13:25:00 +0000
committerFelix Domke <tmbinc@elitedvb.net>2007-07-11 13:25:00 +0000
commit5c647467dcacf02c52304186df62f03d21a3f094 (patch)
tree6738896d91bea0353d4025648f75295157e9c78f /lib/python
parentc29fae81384c5331ab078dfcbd69573a9e3c662e (diff)
downloadenigma2-5c647467dcacf02c52304186df62f03d21a3f094.tar.gz
enigma2-5c647467dcacf02c52304186df62f03d21a3f094.zip
(ralfk) make cuesheet actions translatable
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/InfoBarGenerics.py6
1 files changed, 3 insertions, 3 deletions
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 = [ ]