1
0
mirror of https://github.com/VDR4Arch/vdr.git synced 2023-10-10 13:36:52 +02:00

Made skipping with Green/Yellow keys configurable

This commit is contained in:
Klaus Schmidinger 2015-02-10 12:18:39 +01:00
parent 888c33c890
commit fb37e93b04
35 changed files with 239 additions and 35 deletions

View File

@ -3233,6 +3233,7 @@ Matthias Senzel <matthias.senzel@t-online.de>
for fixing the German translation of "Binary skip timeout (s)" for fixing the German translation of "Binary skip timeout (s)"
for reporting a bug in switching channels in the Schedule menu after going through for reporting a bug in switching channels in the Schedule menu after going through
various Now and Schedule menus for different channels various Now and Schedule menus for different channels
for the "jumpingseconds" patch
Marek Nazarko <mnazarko@gmail.com> Marek Nazarko <mnazarko@gmail.com>
for translating OSD texts to the Polish language for translating OSD texts to the Polish language
@ -3371,3 +3372,6 @@ Clemens Brauers <vdr@admin-cb.de>
Stefan Herdler <herdler@gmx.de> Stefan Herdler <herdler@gmx.de>
for fixing cMarks::GetNextBegin() and cMarks::GetNextEnd() for fixing cMarks::GetNextBegin() and cMarks::GetNextEnd()
Tobias Faust <tobias.faust@gmx.de>
for the original "jumpingseconds" patch

View File

@ -8523,7 +8523,7 @@ Video Disk Recorder Revision History
copy process has been successful (problem reported by Christoph Haubrich). copy process has been successful (problem reported by Christoph Haubrich).
- Added the UPDATE-2.2.0 file. - Added the UPDATE-2.2.0 file.
2015-02-09: Version 2.1.10 2015-02-10: Version 2.1.10
- Updated the Finnish OSD texts (thanks to Rolf Ahrenberg). - Updated the Finnish OSD texts (thanks to Rolf Ahrenberg).
- Updated the Macedonian OSD texts (thanks to Dimitar Petrovski). - Updated the Macedonian OSD texts (thanks to Dimitar Petrovski).
@ -8537,3 +8537,8 @@ Video Disk Recorder Revision History
called (thanks to Sören Moch). called (thanks to Sören Moch).
- Updated the Italian OSD texts (thanks to Diego Pierotto and Nino Gerbino). - Updated the Italian OSD texts (thanks to Diego Pierotto and Nino Gerbino).
- Updated the Lithuanian OSD texts (thanks to Valdemaras Pipiras). - Updated the Lithuanian OSD texts (thanks to Valdemaras Pipiras).
- The new options "Setup/Replay/Skip distance with Green/Yellow keys" and
"Setup/Replay/Skip distance with Green/Yellow keys in repeat" can be used to
configure the number of seconds to skip when pressing these keys once or pressing
and holding them (based on a patch from Matthias Senzel, originally from Tobias
Faust).

11
MANUAL
View File

@ -1026,6 +1026,17 @@ Version 2.0
halved if the direction actually changes. That way, even if halved if the direction actually changes. That way, even if
you missed the target point, you can still back up to it. you missed the target point, you can still back up to it.
Skip distance with Green/Yellow keys (s) = 60
Defines the number of seconds to skip in either direction
when pressing the "Green" or "Yellow" key, respectively.
The valid range is 5...600.
Skip distance with Green/Yellow keys in repeat (s) = 60
Defines the number of seconds to skip in either direction
when pressing and holding the "Green" or "Yellow" key,
respectively.
The valid range is 5...600.
Resume ID = 0 Defines an additional ID that can be used in a multi user Resume ID = 0 Defines an additional ID that can be used in a multi user
environment, so that every user has his/her own resume environment, so that every user has his/her own resume
files for each recording. The valid range is 0...99, with files for each recording. The valid range is 0...99, with

View File

@ -329,6 +329,10 @@ Replay:
to make adaptive skipping only halve the skip distance when the direction changes. to make adaptive skipping only halve the skip distance when the direction changes.
That way you can reach the desired point in a recording even if you make one too That way you can reach the desired point in a recording even if you make one too
many skips in a certain direction (see MANUAL for details). many skips in a certain direction (see MANUAL for details).
- The new options "Setup/Replay/Skip distance with Green/Yellow keys" and
"Setup/Replay/Skip distance with Green/Yellow keys in repeat" can be used to
configure the number of seconds to skip when pressing these keys once or pressing
and holding them.
SVDRP: SVDRP:

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: config.c 3.8 2015/02/06 10:10:22 kls Exp $ * $Id: config.c 3.9 2015/02/10 11:43:11 kls Exp $
*/ */
#include "config.h" #include "config.h"
@ -476,6 +476,8 @@ cSetup::cSetup(void)
AdaptiveSkipInitial = 120; AdaptiveSkipInitial = 120;
AdaptiveSkipTimeout = 3; AdaptiveSkipTimeout = 3;
AdaptiveSkipAlternate = 0; AdaptiveSkipAlternate = 0;
SkipSeconds = 60;
SkipSecondsRepeat = 60;
ResumeID = 0; ResumeID = 0;
CurrentChannel = -1; CurrentChannel = -1;
CurrentVolume = MAXVOLUME; CurrentVolume = MAXVOLUME;
@ -695,6 +697,8 @@ bool cSetup::Parse(const char *Name, const char *Value)
else if (!strcasecmp(Name, "AdaptiveSkipInitial")) AdaptiveSkipInitial= atoi(Value); else if (!strcasecmp(Name, "AdaptiveSkipInitial")) AdaptiveSkipInitial= atoi(Value);
else if (!strcasecmp(Name, "AdaptiveSkipTimeout")) AdaptiveSkipTimeout= atoi(Value); else if (!strcasecmp(Name, "AdaptiveSkipTimeout")) AdaptiveSkipTimeout= atoi(Value);
else if (!strcasecmp(Name, "AdaptiveSkipAlternate")) AdaptiveSkipAlternate = atoi(Value); else if (!strcasecmp(Name, "AdaptiveSkipAlternate")) AdaptiveSkipAlternate = atoi(Value);
else if (!strcasecmp(Name, "SkipSeconds")) SkipSeconds = atoi(Value);
else if (!strcasecmp(Name, "SkipSecondsRepeat")) SkipSecondsRepeat = atoi(Value);
else if (!strcasecmp(Name, "ResumeID")) ResumeID = atoi(Value); else if (!strcasecmp(Name, "ResumeID")) ResumeID = atoi(Value);
else if (!strcasecmp(Name, "CurrentChannel")) CurrentChannel = atoi(Value); else if (!strcasecmp(Name, "CurrentChannel")) CurrentChannel = atoi(Value);
else if (!strcasecmp(Name, "CurrentVolume")) CurrentVolume = atoi(Value); else if (!strcasecmp(Name, "CurrentVolume")) CurrentVolume = atoi(Value);
@ -818,6 +822,8 @@ bool cSetup::Save(void)
Store("AdaptiveSkipInitial",AdaptiveSkipInitial); Store("AdaptiveSkipInitial",AdaptiveSkipInitial);
Store("AdaptiveSkipTimeout",AdaptiveSkipTimeout); Store("AdaptiveSkipTimeout",AdaptiveSkipTimeout);
Store("AdaptiveSkipAlternate", AdaptiveSkipAlternate); Store("AdaptiveSkipAlternate", AdaptiveSkipAlternate);
Store("SkipSeconds", SkipSeconds);
Store("SkipSecondsRepeat", SkipSecondsRepeat);
Store("ResumeID", ResumeID); Store("ResumeID", ResumeID);
Store("CurrentChannel", CurrentChannel); Store("CurrentChannel", CurrentChannel);
Store("CurrentVolume", CurrentVolume); Store("CurrentVolume", CurrentVolume);

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: config.h 3.17 2015/02/06 09:53:50 kls Exp $ * $Id: config.h 3.18 2015/02/10 11:48:17 kls Exp $
*/ */
#ifndef __CONFIG_H #ifndef __CONFIG_H
@ -340,6 +340,8 @@ public:
int AdaptiveSkipInitial; int AdaptiveSkipInitial;
int AdaptiveSkipTimeout; int AdaptiveSkipTimeout;
int AdaptiveSkipAlternate; int AdaptiveSkipAlternate;
int SkipSeconds;
int SkipSecondsRepeat;
int ResumeID; int ResumeID;
int CurrentChannel; int CurrentChannel;
int CurrentVolume; int CurrentVolume;

10
menu.c
View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: menu.c 3.46 2015/02/07 15:56:26 kls Exp $ * $Id: menu.c 3.47 2015/02/10 11:51:10 kls Exp $
*/ */
#include "menu.h" #include "menu.h"
@ -3730,6 +3730,8 @@ cMenuSetupReplay::cMenuSetupReplay(void)
Add(new cMenuEditIntItem( tr("Setup.Replay$Initial duration for adaptive skipping (s)"), &data.AdaptiveSkipInitial, 10, 600)); Add(new cMenuEditIntItem( tr("Setup.Replay$Initial duration for adaptive skipping (s)"), &data.AdaptiveSkipInitial, 10, 600));
Add(new cMenuEditIntItem( tr("Setup.Replay$Reset timeout for adaptive skipping (s)"), &data.AdaptiveSkipTimeout, 0, 10)); Add(new cMenuEditIntItem( tr("Setup.Replay$Reset timeout for adaptive skipping (s)"), &data.AdaptiveSkipTimeout, 0, 10));
Add(new cMenuEditBoolItem(tr("Setup.Replay$Alternate behavior for adaptive skipping"), &data.AdaptiveSkipAlternate)); Add(new cMenuEditBoolItem(tr("Setup.Replay$Alternate behavior for adaptive skipping"), &data.AdaptiveSkipAlternate));
Add(new cMenuEditIntItem( tr("Setup.Replay$Skip distance with Green/Yellow keys (s)"), &data.SkipSeconds, 5, 600));
Add(new cMenuEditIntItem( tr("Setup.Replay$Skip distance with Green/Yellow keys in repeat (s)"), &data.SkipSecondsRepeat, 5, 600));
Add(new cMenuEditIntItem(tr("Setup.Replay$Resume ID"), &data.ResumeID, 0, 99)); Add(new cMenuEditIntItem(tr("Setup.Replay$Resume ID"), &data.ResumeID, 0, 99));
} }
@ -5583,9 +5585,11 @@ eOSState cReplayControl::ProcessKey(eKeys Key)
case kRight: Forward(); break; case kRight: Forward(); break;
case kRed: TimeSearch(); break; case kRed: TimeSearch(); break;
case kGreen|k_Repeat: case kGreen|k_Repeat:
case kGreen: SkipSeconds(-60); break; SkipSeconds(-Setup.SkipSecondsRepeat); break;
case kGreen: SkipSeconds(-Setup.SkipSeconds); break;
case kYellow|k_Repeat: case kYellow|k_Repeat:
case kYellow: SkipSeconds( 60); break; SkipSeconds(Setup.SkipSecondsRepeat); break;
case kYellow: SkipSeconds(Setup.SkipSeconds); break;
case kStop: case kStop:
case kBlue: Hide(); case kBlue: Hide();
Stop(); Stop();

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2015-02-07 17:08+0100\n" "POT-Creation-Date: 2015-02-10 12:51+0100\n"
"PO-Revision-Date: 2008-10-16 11:16-0400\n" "PO-Revision-Date: 2008-10-16 11:16-0400\n"
"Last-Translator: Osama Alrawab <alrawab@hotmail.com>\n" "Last-Translator: Osama Alrawab <alrawab@hotmail.com>\n"
"Language-Team: Arabic <ar@li.org>\n" "Language-Team: Arabic <ar@li.org>\n"
@ -1257,6 +1257,12 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping" msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "" msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys in repeat (s)"
msgstr ""
msgid "Setup.Replay$Resume ID" msgid "Setup.Replay$Resume ID"
msgstr "رقم المواصلة" msgstr "رقم المواصلة"

View File

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2015-02-07 17:08+0100\n" "POT-Creation-Date: 2015-02-10 12:51+0100\n"
"PO-Revision-Date: 2008-03-02 19:02+0100\n" "PO-Revision-Date: 2008-03-02 19:02+0100\n"
"Last-Translator: Luca Olivetti <luca@ventoso.org>\n" "Last-Translator: Luca Olivetti <luca@ventoso.org>\n"
"Language-Team: Catalan <vdr@linuxtv.org>\n" "Language-Team: Catalan <vdr@linuxtv.org>\n"
@ -1256,6 +1256,12 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping" msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "" msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys in repeat (s)"
msgstr ""
msgid "Setup.Replay$Resume ID" msgid "Setup.Replay$Resume ID"
msgstr "ID de Continuar" msgstr "ID de Continuar"

View File

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2015-02-07 17:08+0100\n" "POT-Creation-Date: 2015-02-10 12:51+0100\n"
"PO-Revision-Date: 2010-05-06 11:00+0200\n" "PO-Revision-Date: 2010-05-06 11:00+0200\n"
"Last-Translator: Aleš Juřík <ajurik@quick.cz>\n" "Last-Translator: Aleš Juřík <ajurik@quick.cz>\n"
"Language-Team: Czech <vdr@linuxtv.org>\n" "Language-Team: Czech <vdr@linuxtv.org>\n"
@ -1256,6 +1256,12 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping" msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "" msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys in repeat (s)"
msgstr ""
msgid "Setup.Replay$Resume ID" msgid "Setup.Replay$Resume ID"
msgstr "ID obnovení" msgstr "ID obnovení"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2015-02-07 17:08+0100\n" "POT-Creation-Date: 2015-02-10 12:51+0100\n"
"PO-Revision-Date: 2007-08-12 14:17+0200\n" "PO-Revision-Date: 2007-08-12 14:17+0200\n"
"Last-Translator: Mogens Elneff <mogens@elneff.dk>\n" "Last-Translator: Mogens Elneff <mogens@elneff.dk>\n"
"Language-Team: Danish <vdr@linuxtv.org>\n" "Language-Team: Danish <vdr@linuxtv.org>\n"
@ -1253,6 +1253,12 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping" msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "" msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys in repeat (s)"
msgstr ""
msgid "Setup.Replay$Resume ID" msgid "Setup.Replay$Resume ID"
msgstr "Genoptagelses ID" msgstr "Genoptagelses ID"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2015-02-07 17:08+0100\n" "POT-Creation-Date: 2015-02-10 12:51+0100\n"
"PO-Revision-Date: 2010-01-16 16:46+0100\n" "PO-Revision-Date: 2015-02-10 12:53+0100\n"
"Last-Translator: Klaus Schmidinger <vdr@tvdr.de>\n" "Last-Translator: Klaus Schmidinger <vdr@tvdr.de>\n"
"Language-Team: German <vdr@linuxtv.org>\n" "Language-Team: German <vdr@linuxtv.org>\n"
"Language: de\n" "Language: de\n"
@ -1253,6 +1253,12 @@ msgstr "Zeitlimit beim Halbieren der Sprungweite (s)"
msgid "Setup.Replay$Alternate behavior for adaptive skipping" msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "Sprungweite nur bei Richtungswechsel halbieren" msgstr "Sprungweite nur bei Richtungswechsel halbieren"
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr "Sprungweite mit Taste Grün/Gelb (s)"
msgid "Setup.Replay$Skip distance with Green/Yellow keys in repeat (s)"
msgstr "Sprungweite mit Taste Grün/Gelb bei Wiederh. (s)"
msgid "Setup.Replay$Resume ID" msgid "Setup.Replay$Resume ID"
msgstr "Wiedergabe-ID" msgstr "Wiedergabe-ID"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2015-02-07 17:08+0100\n" "POT-Creation-Date: 2015-02-10 12:51+0100\n"
"PO-Revision-Date: 2007-08-12 14:17+0200\n" "PO-Revision-Date: 2007-08-12 14:17+0200\n"
"Last-Translator: Dimitrios Dimitrakos <mail@dimitrios.de>\n" "Last-Translator: Dimitrios Dimitrakos <mail@dimitrios.de>\n"
"Language-Team: Greek <vdr@linuxtv.org>\n" "Language-Team: Greek <vdr@linuxtv.org>\n"
@ -1253,6 +1253,12 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping" msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "" msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys in repeat (s)"
msgstr ""
msgid "Setup.Replay$Resume ID" msgid "Setup.Replay$Resume ID"
msgstr "ID áíáìåôÜäïóçò" msgstr "ID áíáìåôÜäïóçò"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2015-02-07 17:08+0100\n" "POT-Creation-Date: 2015-02-10 12:51+0100\n"
"PO-Revision-Date: 2008-03-02 19:02+0100\n" "PO-Revision-Date: 2008-03-02 19:02+0100\n"
"Last-Translator: Luca Olivetti <luca@ventoso.org>\n" "Last-Translator: Luca Olivetti <luca@ventoso.org>\n"
"Language-Team: Spanish <vdr@linuxtv.org>\n" "Language-Team: Spanish <vdr@linuxtv.org>\n"
@ -1254,6 +1254,12 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping" msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "" msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys in repeat (s)"
msgstr ""
msgid "Setup.Replay$Resume ID" msgid "Setup.Replay$Resume ID"
msgstr "ID de continuación" msgstr "ID de continuación"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2015-02-07 17:08+0100\n" "POT-Creation-Date: 2015-02-10 12:51+0100\n"
"PO-Revision-Date: 2007-08-12 14:17+0200\n" "PO-Revision-Date: 2007-08-12 14:17+0200\n"
"Last-Translator: Arthur Konovalov <artlov@gmail.com>\n" "Last-Translator: Arthur Konovalov <artlov@gmail.com>\n"
"Language-Team: Estonian <vdr@linuxtv.org>\n" "Language-Team: Estonian <vdr@linuxtv.org>\n"
@ -1253,6 +1253,12 @@ msgstr "Adaptiivse hüppe lähtestamise viide (s)"
msgid "Setup.Replay$Alternate behavior for adaptive skipping" msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "Adaptiivse hüppe vaheldumine käitumine" msgstr "Adaptiivse hüppe vaheldumine käitumine"
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys in repeat (s)"
msgstr ""
msgid "Setup.Replay$Resume ID" msgid "Setup.Replay$Resume ID"
msgstr "Jätkamise ID" msgstr "Jätkamise ID"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2015-02-07 17:08+0100\n" "POT-Creation-Date: 2015-02-10 12:51+0100\n"
"PO-Revision-Date: 2007-08-15 15:52+0200\n" "PO-Revision-Date: 2007-08-15 15:52+0200\n"
"Last-Translator: Matti Lehtimäki <matti.lehtimaki@gmail.com>\n" "Last-Translator: Matti Lehtimäki <matti.lehtimaki@gmail.com>\n"
"Language-Team: Finnish <vdr@linuxtv.org>\n" "Language-Team: Finnish <vdr@linuxtv.org>\n"
@ -1257,6 +1257,12 @@ msgstr "Mukautuvan hypyn nollausviive (s)"
msgid "Setup.Replay$Alternate behavior for adaptive skipping" msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "Käytä vaihtoehtoista mukautuvaa hyppyä" msgstr "Käytä vaihtoehtoista mukautuvaa hyppyä"
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys in repeat (s)"
msgstr ""
msgid "Setup.Replay$Resume ID" msgid "Setup.Replay$Resume ID"
msgstr "Tallenteen paluutunniste" msgstr "Tallenteen paluutunniste"

View File

@ -17,7 +17,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2015-02-07 17:08+0100\n" "POT-Creation-Date: 2015-02-10 12:51+0100\n"
"PO-Revision-Date: 2013-02-24 12:56+0100\n" "PO-Revision-Date: 2013-02-24 12:56+0100\n"
"Last-Translator: Dominique Plu <dplu@free.fr>\n" "Last-Translator: Dominique Plu <dplu@free.fr>\n"
"Language-Team: French <vdr@linuxtv.org>\n" "Language-Team: French <vdr@linuxtv.org>\n"
@ -1263,6 +1263,12 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping" msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "" msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys in repeat (s)"
msgstr ""
msgid "Setup.Replay$Resume ID" msgid "Setup.Replay$Resume ID"
msgstr "ID de reprise" msgstr "ID de reprise"

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2015-02-07 17:08+0100\n" "POT-Creation-Date: 2015-02-10 12:51+0100\n"
"PO-Revision-Date: 2008-03-17 19:00+0100\n" "PO-Revision-Date: 2008-03-17 19:00+0100\n"
"Last-Translator: Adrian Caval <anrxc@sysphere.org>\n" "Last-Translator: Adrian Caval <anrxc@sysphere.org>\n"
"Language-Team: Croatian <vdr@linuxtv.org>\n" "Language-Team: Croatian <vdr@linuxtv.org>\n"
@ -1255,6 +1255,12 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping" msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "" msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys in repeat (s)"
msgstr ""
msgid "Setup.Replay$Resume ID" msgid "Setup.Replay$Resume ID"
msgstr "ID nastavka" msgstr "ID nastavka"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2015-02-09 11:45+0100\n" "POT-Creation-Date: 2015-02-10 12:51+0100\n"
"PO-Revision-Date: 2015-02-03 11:35+0200\n" "PO-Revision-Date: 2015-02-03 11:35+0200\n"
"Last-Translator: István Füley <ifuley@tigercomp.ro>\n" "Last-Translator: István Füley <ifuley@tigercomp.ro>\n"
"Language-Team: Hungarian <vdr@linuxtv.org>\n" "Language-Team: Hungarian <vdr@linuxtv.org>\n"
@ -1258,6 +1258,12 @@ msgstr "Felezett ugrás időkorláta (mp)"
msgid "Setup.Replay$Alternate behavior for adaptive skipping" msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "Felezett ugrás csak irányváltoztatásnál" msgstr "Felezett ugrás csak irányváltoztatásnál"
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys in repeat (s)"
msgstr ""
msgid "Setup.Replay$Resume ID" msgid "Setup.Replay$Resume ID"
msgstr "Lejátszás azonosító" msgstr "Lejátszás azonosító"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2015-02-07 17:08+0100\n" "POT-Creation-Date: 2015-02-10 12:51+0100\n"
"PO-Revision-Date: 2015-02-09 20:26+0100\n" "PO-Revision-Date: 2015-02-09 20:26+0100\n"
"Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n" "Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n"
"Language-Team: Italian <vdr@linuxtv.org>\n" "Language-Team: Italian <vdr@linuxtv.org>\n"
@ -1259,6 +1259,12 @@ msgstr "Reimposta scadenza per spostamenti adattivi (s)"
msgid "Setup.Replay$Alternate behavior for adaptive skipping" msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "Comportamento alternativo per spostamenti adattivi" msgstr "Comportamento alternativo per spostamenti adattivi"
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys in repeat (s)"
msgstr ""
msgid "Setup.Replay$Resume ID" msgid "Setup.Replay$Resume ID"
msgstr "ID di ripristino" msgstr "ID di ripristino"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2010-10-30 11:55+0200\n" "POT-Creation-Date: 2015-02-10 12:51+0100\n"
"PO-Revision-Date: 2015-02-09 17:08+0100\n" "PO-Revision-Date: 2015-02-09 17:08+0100\n"
"Last-Translator: Valdemaras Pipiras <varas@ambernet.lt>\n" "Last-Translator: Valdemaras Pipiras <varas@ambernet.lt>\n"
"Language-Team: Lithuanian <vdr@linuxtv.org>\n" "Language-Team: Lithuanian <vdr@linuxtv.org>\n"
@ -1253,6 +1253,12 @@ msgstr "Setup.Replay$Adaptyvaus peršokimo perkrovimo užlaikymas(s)"
msgid "Setup.Replay$Alternate behavior for adaptive skipping" msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "Setup.Replay$Adaptyvaus peršokimo galima elgsena" msgstr "Setup.Replay$Adaptyvaus peršokimo galima elgsena"
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys in repeat (s)"
msgstr ""
msgid "Setup.Replay$Resume ID" msgid "Setup.Replay$Resume ID"
msgstr "Kūrinio ID" msgstr "Kūrinio ID"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2015-02-07 17:08+0100\n" "POT-Creation-Date: 2015-02-10 12:51+0100\n"
"PO-Revision-Date: 2015-02-08 15:18+0100\n" "PO-Revision-Date: 2015-02-08 15:18+0100\n"
"Last-Translator: Dimitar Petrovski <dimeptr@gmail.com>\n" "Last-Translator: Dimitar Petrovski <dimeptr@gmail.com>\n"
"Language-Team: Macedonian <en@li.org>\n" "Language-Team: Macedonian <en@li.org>\n"
@ -1254,6 +1254,12 @@ msgstr "Време на ресетирање за адаптабилно ско
msgid "Setup.Replay$Alternate behavior for adaptive skipping" msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "Алтернативно однесување за адаптабилно скокање" msgstr "Алтернативно однесување за адаптабилно скокање"
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys in repeat (s)"
msgstr ""
msgid "Setup.Replay$Resume ID" msgid "Setup.Replay$Resume ID"
msgstr "ID на продолжеток" msgstr "ID на продолжеток"

View File

@ -12,7 +12,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2015-02-07 17:08+0100\n" "POT-Creation-Date: 2015-02-10 12:51+0100\n"
"PO-Revision-Date: 2008-02-26 17:20+0100\n" "PO-Revision-Date: 2008-02-26 17:20+0100\n"
"Last-Translator: Cedric Dewijs <cedric.dewijs@telfort.nl>\n" "Last-Translator: Cedric Dewijs <cedric.dewijs@telfort.nl>\n"
"Language-Team: Dutch <vdr@linuxtv.org>\n" "Language-Team: Dutch <vdr@linuxtv.org>\n"
@ -1258,6 +1258,12 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping" msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "" msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys in repeat (s)"
msgstr ""
msgid "Setup.Replay$Resume ID" msgid "Setup.Replay$Resume ID"
msgstr "Hervattings ID" msgstr "Hervattings ID"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2015-02-07 17:08+0100\n" "POT-Creation-Date: 2015-02-10 12:51+0100\n"
"PO-Revision-Date: 2007-08-12 14:17+0200\n" "PO-Revision-Date: 2007-08-12 14:17+0200\n"
"Last-Translator: Truls Slevigen <truls@slevigen.no>\n" "Last-Translator: Truls Slevigen <truls@slevigen.no>\n"
"Language-Team: Norwegian Nynorsk <vdr@linuxtv.org>\n" "Language-Team: Norwegian Nynorsk <vdr@linuxtv.org>\n"
@ -1254,6 +1254,12 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping" msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "" msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys in repeat (s)"
msgstr ""
msgid "Setup.Replay$Resume ID" msgid "Setup.Replay$Resume ID"
msgstr "Resume ID" msgstr "Resume ID"

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2015-02-07 17:08+0100\n" "POT-Creation-Date: 2015-02-10 12:51+0100\n"
"PO-Revision-Date: 2008-03-09 12:59+0100\n" "PO-Revision-Date: 2008-03-09 12:59+0100\n"
"Last-Translator: Marek Nazarko <mnazarko@gmail.com>\n" "Last-Translator: Marek Nazarko <mnazarko@gmail.com>\n"
"Language-Team: Polish <vdr@linuxtv.org>\n" "Language-Team: Polish <vdr@linuxtv.org>\n"
@ -1255,6 +1255,12 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping" msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "" msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys in repeat (s)"
msgstr ""
msgid "Setup.Replay$Resume ID" msgid "Setup.Replay$Resume ID"
msgstr "ID wznowienia" msgstr "ID wznowienia"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2015-02-07 17:08+0100\n" "POT-Creation-Date: 2015-02-10 12:51+0100\n"
"PO-Revision-Date: 2010-03-28 22:49+0100\n" "PO-Revision-Date: 2010-03-28 22:49+0100\n"
"Last-Translator: Cris Silva <hudokkow@gmail.com>\n" "Last-Translator: Cris Silva <hudokkow@gmail.com>\n"
"Language-Team: Portuguese <vdr@linuxtv.org>\n" "Language-Team: Portuguese <vdr@linuxtv.org>\n"
@ -1254,6 +1254,12 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping" msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "" msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys in repeat (s)"
msgstr ""
msgid "Setup.Replay$Resume ID" msgid "Setup.Replay$Resume ID"
msgstr "ID de resumo" msgstr "ID de resumo"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2015-02-07 17:08+0100\n" "POT-Creation-Date: 2015-02-10 12:51+0100\n"
"PO-Revision-Date: 2015-02-09 00:23+0100\n" "PO-Revision-Date: 2015-02-09 00:23+0100\n"
"Last-Translator: Lucian Muresan <lucianm@users.sourceforge.net>\n" "Last-Translator: Lucian Muresan <lucianm@users.sourceforge.net>\n"
"Language-Team: Romanian <vdr@linuxtv.org>\n" "Language-Team: Romanian <vdr@linuxtv.org>\n"
@ -1255,6 +1255,12 @@ msgstr "Timeout (s) de resetare pentru săritul adaptiv al marcajelor"
msgid "Setup.Replay$Alternate behavior for adaptive skipping" msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "Strategie alternativă pentru săritul adaptiv al marcajelor" msgstr "Strategie alternativă pentru săritul adaptiv al marcajelor"
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys in repeat (s)"
msgstr ""
msgid "Setup.Replay$Resume ID" msgid "Setup.Replay$Resume ID"
msgstr "Identificator continuare" msgstr "Identificator continuare"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2015-02-07 17:08+0100\n" "POT-Creation-Date: 2015-02-10 12:51+0100\n"
"PO-Revision-Date: 2013-03-10 17:13+0100\n" "PO-Revision-Date: 2013-03-10 17:13+0100\n"
"Last-Translator: Oleg Roitburd <oroitburd@gmail.com>\n" "Last-Translator: Oleg Roitburd <oroitburd@gmail.com>\n"
"Language-Team: Russian <vdr@linuxtv.org>\n" "Language-Team: Russian <vdr@linuxtv.org>\n"
@ -1254,6 +1254,12 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping" msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "" msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys in repeat (s)"
msgstr ""
msgid "Setup.Replay$Resume ID" msgid "Setup.Replay$Resume ID"
msgstr "ID ÒÞáßàÞØ×ÒÕÔÕÝØï" msgstr "ID ÒÞáßàÞØ×ÒÕÔÕÝØï"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2015-02-07 17:08+0100\n" "POT-Creation-Date: 2015-02-10 12:51+0100\n"
"PO-Revision-Date: 2013-03-04 21:24+0100\n" "PO-Revision-Date: 2013-03-04 21:24+0100\n"
"Last-Translator: Milan Hrala <hrala.milan@gmail.com>\n" "Last-Translator: Milan Hrala <hrala.milan@gmail.com>\n"
"Language-Team: Slovak <vdr@linuxtv.org>\n" "Language-Team: Slovak <vdr@linuxtv.org>\n"
@ -1253,6 +1253,12 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping" msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "" msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys in repeat (s)"
msgstr ""
msgid "Setup.Replay$Resume ID" msgid "Setup.Replay$Resume ID"
msgstr "ident. èíslo obnovenia prehrávania" msgstr "ident. èíslo obnovenia prehrávania"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2015-02-07 17:08+0100\n" "POT-Creation-Date: 2015-02-10 12:51+0100\n"
"PO-Revision-Date: 2013-03-04 12:46+0100\n" "PO-Revision-Date: 2013-03-04 12:46+0100\n"
"Last-Translator: Matjaz Thaler <matjaz.thaler@guest.arnes.si>\n" "Last-Translator: Matjaz Thaler <matjaz.thaler@guest.arnes.si>\n"
"Language-Team: Slovenian <vdr@linuxtv.org>\n" "Language-Team: Slovenian <vdr@linuxtv.org>\n"
@ -1254,6 +1254,12 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping" msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "" msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys in repeat (s)"
msgstr ""
msgid "Setup.Replay$Resume ID" msgid "Setup.Replay$Resume ID"
msgstr "ID za predvajanje" msgstr "ID za predvajanje"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2015-02-07 17:08+0100\n" "POT-Creation-Date: 2015-02-10 12:51+0100\n"
"PO-Revision-Date: 2013-03-16 15:05+0100\n" "PO-Revision-Date: 2013-03-16 15:05+0100\n"
"Last-Translator: Zoran Turalija <zoran.turalija@gmail.com>\n" "Last-Translator: Zoran Turalija <zoran.turalija@gmail.com>\n"
"Language-Team: Serbian <vdr@linuxtv.org>\n" "Language-Team: Serbian <vdr@linuxtv.org>\n"
@ -1254,6 +1254,12 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping" msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "" msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys in repeat (s)"
msgstr ""
msgid "Setup.Replay$Resume ID" msgid "Setup.Replay$Resume ID"
msgstr "ID reprodukcije" msgstr "ID reprodukcije"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2015-02-07 17:08+0100\n" "POT-Creation-Date: 2015-02-10 12:51+0100\n"
"PO-Revision-Date: 2013-02-18 17:04+0100\n" "PO-Revision-Date: 2013-02-18 17:04+0100\n"
"Last-Translator: Richard Lithvall <r-vdr@boomer.se>\n" "Last-Translator: Richard Lithvall <r-vdr@boomer.se>\n"
"Language-Team: Swedish <vdr@linuxtv.org>\n" "Language-Team: Swedish <vdr@linuxtv.org>\n"
@ -1257,6 +1257,12 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping" msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "" msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys in repeat (s)"
msgstr ""
msgid "Setup.Replay$Resume ID" msgid "Setup.Replay$Resume ID"
msgstr "Återupptagnings-ID" msgstr "Återupptagnings-ID"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2015-02-07 17:08+0100\n" "POT-Creation-Date: 2015-02-10 12:51+0100\n"
"PO-Revision-Date: 2008-02-28 00:33+0100\n" "PO-Revision-Date: 2008-02-28 00:33+0100\n"
"Last-Translator: Oktay Yolgeçen <oktay_73@yahoo.de>\n" "Last-Translator: Oktay Yolgeçen <oktay_73@yahoo.de>\n"
"Language-Team: Turkish <vdr@linuxtv.org>\n" "Language-Team: Turkish <vdr@linuxtv.org>\n"
@ -1253,6 +1253,12 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping" msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "" msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys in repeat (s)"
msgstr ""
msgid "Setup.Replay$Resume ID" msgid "Setup.Replay$Resume ID"
msgstr "Gösteriþ ID'si" msgstr "Gösteriþ ID'si"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2015-02-07 17:08+0100\n" "POT-Creation-Date: 2015-02-10 12:51+0100\n"
"PO-Revision-Date: 2015-02-08 16:03+0100\n" "PO-Revision-Date: 2015-02-08 16:03+0100\n"
"Last-Translator: Yarema aka Knedlyk <yupadmin@gmail.com>\n" "Last-Translator: Yarema aka Knedlyk <yupadmin@gmail.com>\n"
"Language-Team: Ukrainian <vdr@linuxtv.org>\n" "Language-Team: Ukrainian <vdr@linuxtv.org>\n"
@ -1254,6 +1254,12 @@ msgstr "Скинути тайм-аут для адаптивного пропу
msgid "Setup.Replay$Alternate behavior for adaptive skipping" msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "Альтернативна поведінка для адаптивного пропуску (ів)" msgstr "Альтернативна поведінка для адаптивного пропуску (ів)"
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys in repeat (s)"
msgstr ""
msgid "Setup.Replay$Resume ID" msgid "Setup.Replay$Resume ID"
msgstr "ID продовження" msgstr "ID продовження"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2015-02-07 17:08+0100\n" "POT-Creation-Date: 2015-02-10 12:51+0100\n"
"PO-Revision-Date: 2013-03-04 14:52+0800\n" "PO-Revision-Date: 2013-03-04 14:52+0800\n"
"Last-Translator: NFVDR <nfvdr@live.com>\n" "Last-Translator: NFVDR <nfvdr@live.com>\n"
"Language-Team: Chinese (simplified) <nfvdr@live.com>\n" "Language-Team: Chinese (simplified) <nfvdr@live.com>\n"
@ -1255,6 +1255,12 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping" msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "" msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
msgid "Setup.Replay$Skip distance with Green/Yellow keys in repeat (s)"
msgstr ""
msgid "Setup.Replay$Resume ID" msgid "Setup.Replay$Resume ID"
msgstr "恢复 ID" msgstr "恢复 ID"