diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2008-03-13 22:53:26 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2008-03-13 22:53:26 +0000 |
| commit | 24a8beaf22b62385a71d6aca3849587159611213 (patch) | |
| tree | d72597280ad464b093c45f25aba3a0ac6004e035 /lib/python | |
| parent | 0cb0ae82b752fa39732f42ac348dd34ffeef2052 (diff) | |
| download | enigma2-24a8beaf22b62385a71d6aca3849587159611213.tar.gz enigma2-24a8beaf22b62385a71d6aca3849587159611213.zip | |
add some translator comments, by Anders Holst
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/InfoBarGenerics.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py index 66af3574..633dcfd3 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): |
