From 24a8beaf22b62385a71d6aca3849587159611213 Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Thu, 13 Mar 2008 22:53:26 +0000 Subject: [PATCH] add some translator comments, by Anders Holst --- data/setup.xml | 21 +++++++++++++++++++-- lib/python/Screens/InfoBarGenerics.py | 7 +++++++ 2 files changed, 26 insertions(+), 2 deletions(-) diff --git a/data/setup.xml b/data/setup.xml index 219f9b5..ab95968 100644 --- a/data/setup.xml +++ b/data/setup.xml @@ -41,10 +41,27 @@ config.seek.speeds_forward config.seek.speeds_backward config.seek.speeds_slowmotion + config.seek.enter_forward config.seek.enter_backward - config.seek.stepwise_minspeed - config.seek.stepwise_repeat + + config.seek.stepwise_minspeed + config.seek.stepwise_repeat config.seek.on_pause config.usage.pip_zero_button config.usage.alternatives_priority diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py index 66af357..633dcfd 100644 --- a/lib/python/Screens/InfoBarGenerics.py +++ b/lib/python/Screens/InfoBarGenerics.py @@ -1884,6 +1884,13 @@ class InfoBarCueSheetSupport: if config.usage.on_movie_start.value == "ask": Notifications.AddNotificationWithCallback(self.playLastCB, MessageBox, _("Do you want to resume this playback?"), timeout=10) elif config.usage.on_movie_start.value == "resume": +# TRANSLATORS: The string "Resuming playback" flashes for a moment +# TRANSLATORS: at the start of a movie, when the user has selected +# TRANSLATORS: "Resume from last position" as start behavior. +# TRANSLATORS: The purpose is to notify the user that the movie starts +# TRANSLATORS: in the middle somewhere and not from the beginning. +# TRANSLATORS: (Some translators seem to have interpreted it as a +# TRANSLATORS: question or a choice, but it is a statement.) Notifications.AddNotificationWithCallback(self.playLastCB, MessageBox, _("Resuming playback"), timeout=2, type=MessageBox.TYPE_INFO) def playLastCB(self, answer): -- 2.7.4