summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2015-02-10 12:51:07 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2015-02-10 12:51:07 +0100
commitd34abd6665242550e8aed1c134de7fd83e86bb5b (patch)
treece5417c0eb13e907cc608b8633f9e4efcdba225b
parentfb37e93b044be4acc92bb8a593a8aa01e5477581 (diff)
downloadvdr-d34abd6665242550e8aed1c134de7fd83e86bb5b.tar.gz
vdr-d34abd6665242550e8aed1c134de7fd83e86bb5b.tar.bz2
Made the function of the Prev/Next keys during replay configurable
-rw-r--r--HISTORY3
-rw-r--r--MANUAL6
-rw-r--r--UPDATE-2.2.03
-rw-r--r--config.c5
-rw-r--r--config.h3
-rw-r--r--menu.c15
-rw-r--r--po/ar.po5
-rw-r--r--po/ca_ES.po5
-rw-r--r--po/cs_CZ.po5
-rw-r--r--po/da_DK.po5
-rw-r--r--po/de_DE.po7
-rw-r--r--po/el_GR.po5
-rw-r--r--po/es_ES.po5
-rw-r--r--po/et_EE.po5
-rw-r--r--po/fi_FI.po5
-rw-r--r--po/fr_FR.po5
-rw-r--r--po/hr_HR.po5
-rw-r--r--po/hu_HU.po5
-rw-r--r--po/it_IT.po5
-rw-r--r--po/lt_LT.po5
-rw-r--r--po/mk_MK.po5
-rw-r--r--po/nl_NL.po5
-rw-r--r--po/nn_NO.po5
-rw-r--r--po/pl_PL.po5
-rw-r--r--po/pt_PT.po5
-rw-r--r--po/ro_RO.po5
-rw-r--r--po/ru_RU.po5
-rw-r--r--po/sk_SK.po5
-rw-r--r--po/sl_SI.po5
-rw-r--r--po/sr_RS.po5
-rw-r--r--po/sv_SE.po5
-rw-r--r--po/tr_TR.po5
-rw-r--r--po/uk_UA.po5
-rw-r--r--po/zh_CN.po5
34 files changed, 143 insertions, 34 deletions
diff --git a/HISTORY b/HISTORY
index 714657f5..e2119b12 100644
--- a/HISTORY
+++ b/HISTORY
@@ -8542,3 +8542,6 @@ Video Disk Recorder Revision History
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).
+- The new option "Setup/Replay/Use Prev/Next keys for adaptive skipping" can be used
+ to change the behavior of these keys during replay. They normally jump between
+ editing marks, but with this option set to 'yes' they will do adaptive skipping.
diff --git a/MANUAL b/MANUAL
index 292e7f21..a04a63f4 100644
--- a/MANUAL
+++ b/MANUAL
@@ -1026,6 +1026,12 @@ Version 2.0
halved if the direction actually changes. That way, even if
you missed the target point, you can still back up to it.
+ Use Prev/Next keys for adaptive skipping = no
+ Normally the Prev/Next keys jump between editing marks (or
+ the beginning/end of the recording). You can set this option
+ to 'yes' if you want to use these keys for adaptive skipping
+ instead.
+
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.
diff --git a/UPDATE-2.2.0 b/UPDATE-2.2.0
index 6e073444..df967bc7 100644
--- a/UPDATE-2.2.0
+++ b/UPDATE-2.2.0
@@ -333,6 +333,9 @@ Replay:
"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.
+- The new option "Setup/Replay/Use Prev/Next keys for adaptive skipping" can be used
+ to change the behavior of these keys during replay. They normally jump between
+ editing marks, but with this option set to 'yes' they will do adaptive skipping.
SVDRP:
diff --git a/config.c b/config.c
index 9c1a5e74..9c6b71e5 100644
--- a/config.c
+++ b/config.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: config.c 3.9 2015/02/10 11:43:11 kls Exp $
+ * $Id: config.c 3.10 2015/02/10 12:24:13 kls Exp $
*/
#include "config.h"
@@ -476,6 +476,7 @@ cSetup::cSetup(void)
AdaptiveSkipInitial = 120;
AdaptiveSkipTimeout = 3;
AdaptiveSkipAlternate = 0;
+ AdaptiveSkipPrevNext = 0;
SkipSeconds = 60;
SkipSecondsRepeat = 60;
ResumeID = 0;
@@ -697,6 +698,7 @@ bool cSetup::Parse(const char *Name, const char *Value)
else if (!strcasecmp(Name, "AdaptiveSkipInitial")) AdaptiveSkipInitial= atoi(Value);
else if (!strcasecmp(Name, "AdaptiveSkipTimeout")) AdaptiveSkipTimeout= atoi(Value);
else if (!strcasecmp(Name, "AdaptiveSkipAlternate")) AdaptiveSkipAlternate = atoi(Value);
+ else if (!strcasecmp(Name, "AdaptiveSkipPrevNext")) AdaptiveSkipPrevNext = 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);
@@ -822,6 +824,7 @@ bool cSetup::Save(void)
Store("AdaptiveSkipInitial",AdaptiveSkipInitial);
Store("AdaptiveSkipTimeout",AdaptiveSkipTimeout);
Store("AdaptiveSkipAlternate", AdaptiveSkipAlternate);
+ Store("AdaptiveSkipPrevNext", AdaptiveSkipPrevNext);
Store("SkipSeconds", SkipSeconds);
Store("SkipSecondsRepeat", SkipSecondsRepeat);
Store("ResumeID", ResumeID);
diff --git a/config.h b/config.h
index b6446d60..452e096c 100644
--- a/config.h
+++ b/config.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: config.h 3.18 2015/02/10 11:48:17 kls Exp $
+ * $Id: config.h 3.19 2015/02/10 12:23:10 kls Exp $
*/
#ifndef __CONFIG_H
@@ -340,6 +340,7 @@ public:
int AdaptiveSkipInitial;
int AdaptiveSkipTimeout;
int AdaptiveSkipAlternate;
+ int AdaptiveSkipPrevNext;
int SkipSeconds;
int SkipSecondsRepeat;
int ResumeID;
diff --git a/menu.c b/menu.c
index 70c0f8d1..ae61c64d 100644
--- a/menu.c
+++ b/menu.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: menu.c 3.47 2015/02/10 11:51:10 kls Exp $
+ * $Id: menu.c 3.48 2015/02/10 12:37:06 kls Exp $
*/
#include "menu.h"
@@ -3730,6 +3730,7 @@ 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$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$Use Prev/Next keys for adaptive skipping"), &data.AdaptiveSkipPrevNext));
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));
@@ -5600,11 +5601,19 @@ eOSState cReplayControl::ProcessKey(eKeys Key)
// Editing:
case kMarkToggle: MarkToggle(); break;
case kPrev|k_Repeat:
- case kPrev:
+ case kPrev: if (Setup.AdaptiveSkipPrevNext) {
+ MarkMove(-adaptiveSkipper.GetValue(RAWKEY(Key)), false);
+ break;
+ }
+ // fall through...
case kMarkJumpBack|k_Repeat:
case kMarkJumpBack: MarkJump(false); break;
case kNext|k_Repeat:
- case kNext:
+ case kNext: if (Setup.AdaptiveSkipPrevNext) {
+ MarkMove(+adaptiveSkipper.GetValue(RAWKEY(Key)), false);
+ break;
+ }
+ // fall through...
case kMarkJumpForward|k_Repeat:
case kMarkJumpForward: MarkJump(true); break;
case kMarkMoveBack|k_Repeat:
diff --git a/po/ar.po b/po/ar.po
index 50dd2397..bc850415 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2015-02-10 12:51+0100\n"
+"POT-Creation-Date: 2015-02-10 13:40+0100\n"
"PO-Revision-Date: 2008-10-16 11:16-0400\n"
"Last-Translator: Osama Alrawab <alrawab@hotmail.com>\n"
"Language-Team: Arabic <ar@li.org>\n"
@@ -1257,6 +1257,9 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr ""
+msgid "Setup.Replay$Use Prev/Next keys for adaptive skipping"
+msgstr ""
+
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
diff --git a/po/ca_ES.po b/po/ca_ES.po
index e6d2cb11..5be0a2e5 100644
--- a/po/ca_ES.po
+++ b/po/ca_ES.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2015-02-10 12:51+0100\n"
+"POT-Creation-Date: 2015-02-10 13:40+0100\n"
"PO-Revision-Date: 2008-03-02 19:02+0100\n"
"Last-Translator: Luca Olivetti <luca@ventoso.org>\n"
"Language-Team: Catalan <vdr@linuxtv.org>\n"
@@ -1256,6 +1256,9 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr ""
+msgid "Setup.Replay$Use Prev/Next keys for adaptive skipping"
+msgstr ""
+
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
diff --git a/po/cs_CZ.po b/po/cs_CZ.po
index 51302d27..ff153dab 100644
--- a/po/cs_CZ.po
+++ b/po/cs_CZ.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2015-02-10 12:51+0100\n"
+"POT-Creation-Date: 2015-02-10 13:40+0100\n"
"PO-Revision-Date: 2010-05-06 11:00+0200\n"
"Last-Translator: Aleš Juřík <ajurik@quick.cz>\n"
"Language-Team: Czech <vdr@linuxtv.org>\n"
@@ -1256,6 +1256,9 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr ""
+msgid "Setup.Replay$Use Prev/Next keys for adaptive skipping"
+msgstr ""
+
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
diff --git a/po/da_DK.po b/po/da_DK.po
index 51cb1e02..382704e8 100644
--- a/po/da_DK.po
+++ b/po/da_DK.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2015-02-10 12:51+0100\n"
+"POT-Creation-Date: 2015-02-10 13:40+0100\n"
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
"Last-Translator: Mogens Elneff <mogens@elneff.dk>\n"
"Language-Team: Danish <vdr@linuxtv.org>\n"
@@ -1253,6 +1253,9 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr ""
+msgid "Setup.Replay$Use Prev/Next keys for adaptive skipping"
+msgstr ""
+
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
diff --git a/po/de_DE.po b/po/de_DE.po
index 8e61f035..4ea9a28f 100644
--- a/po/de_DE.po
+++ b/po/de_DE.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2015-02-10 12:51+0100\n"
-"PO-Revision-Date: 2015-02-10 12:53+0100\n"
+"POT-Creation-Date: 2015-02-10 13:40+0100\n"
+"PO-Revision-Date: 2015-02-10 13:45+0100\n"
"Last-Translator: Klaus Schmidinger <vdr@tvdr.de>\n"
"Language-Team: German <vdr@linuxtv.org>\n"
"Language: de\n"
@@ -1253,6 +1253,9 @@ msgstr "Zeitlimit beim Halbieren der Sprungweite (s)"
msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "Sprungweite nur bei Richtungswechsel halbieren"
+msgid "Setup.Replay$Use Prev/Next keys for adaptive skipping"
+msgstr "Zurck/Vorwrts-Tasten halbieren Sprungweite"
+
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr "Sprungweite mit Taste Grn/Gelb (s)"
diff --git a/po/el_GR.po b/po/el_GR.po
index bf724f65..6e3552e6 100644
--- a/po/el_GR.po
+++ b/po/el_GR.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2015-02-10 12:51+0100\n"
+"POT-Creation-Date: 2015-02-10 13:40+0100\n"
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
"Last-Translator: Dimitrios Dimitrakos <mail@dimitrios.de>\n"
"Language-Team: Greek <vdr@linuxtv.org>\n"
@@ -1253,6 +1253,9 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr ""
+msgid "Setup.Replay$Use Prev/Next keys for adaptive skipping"
+msgstr ""
+
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
diff --git a/po/es_ES.po b/po/es_ES.po
index f8e5d3f3..e6b488a0 100644
--- a/po/es_ES.po
+++ b/po/es_ES.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2015-02-10 12:51+0100\n"
+"POT-Creation-Date: 2015-02-10 13:40+0100\n"
"PO-Revision-Date: 2008-03-02 19:02+0100\n"
"Last-Translator: Luca Olivetti <luca@ventoso.org>\n"
"Language-Team: Spanish <vdr@linuxtv.org>\n"
@@ -1254,6 +1254,9 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr ""
+msgid "Setup.Replay$Use Prev/Next keys for adaptive skipping"
+msgstr ""
+
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
diff --git a/po/et_EE.po b/po/et_EE.po
index 2411d4d8..5caeb507 100644
--- a/po/et_EE.po
+++ b/po/et_EE.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2015-02-10 12:51+0100\n"
+"POT-Creation-Date: 2015-02-10 13:40+0100\n"
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
"Last-Translator: Arthur Konovalov <artlov@gmail.com>\n"
"Language-Team: Estonian <vdr@linuxtv.org>\n"
@@ -1253,6 +1253,9 @@ msgstr "Adaptiivse hüppe lähtestamise viide (s)"
msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "Adaptiivse hüppe vaheldumine käitumine"
+msgid "Setup.Replay$Use Prev/Next keys for adaptive skipping"
+msgstr ""
+
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
diff --git a/po/fi_FI.po b/po/fi_FI.po
index 3deff323..7cf860aa 100644
--- a/po/fi_FI.po
+++ b/po/fi_FI.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2015-02-10 12:51+0100\n"
+"POT-Creation-Date: 2015-02-10 13:40+0100\n"
"PO-Revision-Date: 2007-08-15 15:52+0200\n"
"Last-Translator: Matti Lehtimäki <matti.lehtimaki@gmail.com>\n"
"Language-Team: Finnish <vdr@linuxtv.org>\n"
@@ -1257,6 +1257,9 @@ msgstr "Mukautuvan hypyn nollausviive (s)"
msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "Käytä vaihtoehtoista mukautuvaa hyppyä"
+msgid "Setup.Replay$Use Prev/Next keys for adaptive skipping"
+msgstr ""
+
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
diff --git a/po/fr_FR.po b/po/fr_FR.po
index 0d3b8b58..5a5a76c2 100644
--- a/po/fr_FR.po
+++ b/po/fr_FR.po
@@ -17,7 +17,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2015-02-10 12:51+0100\n"
+"POT-Creation-Date: 2015-02-10 13:40+0100\n"
"PO-Revision-Date: 2013-02-24 12:56+0100\n"
"Last-Translator: Dominique Plu <dplu@free.fr>\n"
"Language-Team: French <vdr@linuxtv.org>\n"
@@ -1263,6 +1263,9 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr ""
+msgid "Setup.Replay$Use Prev/Next keys for adaptive skipping"
+msgstr ""
+
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
diff --git a/po/hr_HR.po b/po/hr_HR.po
index a23210b3..1eb9e2be 100644
--- a/po/hr_HR.po
+++ b/po/hr_HR.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2015-02-10 12:51+0100\n"
+"POT-Creation-Date: 2015-02-10 13:40+0100\n"
"PO-Revision-Date: 2008-03-17 19:00+0100\n"
"Last-Translator: Adrian Caval <anrxc@sysphere.org>\n"
"Language-Team: Croatian <vdr@linuxtv.org>\n"
@@ -1255,6 +1255,9 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr ""
+msgid "Setup.Replay$Use Prev/Next keys for adaptive skipping"
+msgstr ""
+
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
diff --git a/po/hu_HU.po b/po/hu_HU.po
index 6fa8075a..0ddceec7 100644
--- a/po/hu_HU.po
+++ b/po/hu_HU.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2015-02-10 12:51+0100\n"
+"POT-Creation-Date: 2015-02-10 13:40+0100\n"
"PO-Revision-Date: 2015-02-03 11:35+0200\n"
"Last-Translator: István Füley <ifuley@tigercomp.ro>\n"
"Language-Team: Hungarian <vdr@linuxtv.org>\n"
@@ -1258,6 +1258,9 @@ msgstr "Felezett ugrás időkorláta (mp)"
msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "Felezett ugrás csak irányváltoztatásnál"
+msgid "Setup.Replay$Use Prev/Next keys for adaptive skipping"
+msgstr ""
+
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
diff --git a/po/it_IT.po b/po/it_IT.po
index 0d5a4fd3..c2c50db7 100644
--- a/po/it_IT.po
+++ b/po/it_IT.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2015-02-10 12:51+0100\n"
+"POT-Creation-Date: 2015-02-10 13:40+0100\n"
"PO-Revision-Date: 2015-02-09 20:26+0100\n"
"Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n"
"Language-Team: Italian <vdr@linuxtv.org>\n"
@@ -1259,6 +1259,9 @@ msgstr "Reimposta scadenza per spostamenti adattivi (s)"
msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "Comportamento alternativo per spostamenti adattivi"
+msgid "Setup.Replay$Use Prev/Next keys for adaptive skipping"
+msgstr ""
+
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
diff --git a/po/lt_LT.po b/po/lt_LT.po
index 8708c547..af5a5f35 100644
--- a/po/lt_LT.po
+++ b/po/lt_LT.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2015-02-10 12:51+0100\n"
+"POT-Creation-Date: 2015-02-10 13:40+0100\n"
"PO-Revision-Date: 2015-02-09 17:08+0100\n"
"Last-Translator: Valdemaras Pipiras <varas@ambernet.lt>\n"
"Language-Team: Lithuanian <vdr@linuxtv.org>\n"
@@ -1253,6 +1253,9 @@ msgstr "Setup.Replay$Adaptyvaus peršokimo perkrovimo užlaikymas(s)"
msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "Setup.Replay$Adaptyvaus peršokimo galima elgsena"
+msgid "Setup.Replay$Use Prev/Next keys for adaptive skipping"
+msgstr ""
+
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
diff --git a/po/mk_MK.po b/po/mk_MK.po
index 7c555898..dd740f27 100644
--- a/po/mk_MK.po
+++ b/po/mk_MK.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2015-02-10 12:51+0100\n"
+"POT-Creation-Date: 2015-02-10 13:40+0100\n"
"PO-Revision-Date: 2015-02-08 15:18+0100\n"
"Last-Translator: Dimitar Petrovski <dimeptr@gmail.com>\n"
"Language-Team: Macedonian <en@li.org>\n"
@@ -1254,6 +1254,9 @@ msgstr "Време на ресетирање за адаптабилно ско
msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "Алтернативно однесување за адаптабилно скокање"
+msgid "Setup.Replay$Use Prev/Next keys for adaptive skipping"
+msgstr ""
+
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
diff --git a/po/nl_NL.po b/po/nl_NL.po
index e3f75fd4..609d15a3 100644
--- a/po/nl_NL.po
+++ b/po/nl_NL.po
@@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2015-02-10 12:51+0100\n"
+"POT-Creation-Date: 2015-02-10 13:40+0100\n"
"PO-Revision-Date: 2008-02-26 17:20+0100\n"
"Last-Translator: Cedric Dewijs <cedric.dewijs@telfort.nl>\n"
"Language-Team: Dutch <vdr@linuxtv.org>\n"
@@ -1258,6 +1258,9 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr ""
+msgid "Setup.Replay$Use Prev/Next keys for adaptive skipping"
+msgstr ""
+
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
diff --git a/po/nn_NO.po b/po/nn_NO.po
index cbdbcd2d..219bbb6d 100644
--- a/po/nn_NO.po
+++ b/po/nn_NO.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2015-02-10 12:51+0100\n"
+"POT-Creation-Date: 2015-02-10 13:40+0100\n"
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
"Last-Translator: Truls Slevigen <truls@slevigen.no>\n"
"Language-Team: Norwegian Nynorsk <vdr@linuxtv.org>\n"
@@ -1254,6 +1254,9 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr ""
+msgid "Setup.Replay$Use Prev/Next keys for adaptive skipping"
+msgstr ""
+
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
diff --git a/po/pl_PL.po b/po/pl_PL.po
index 4d5d5529..931fd6d7 100644
--- a/po/pl_PL.po
+++ b/po/pl_PL.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2015-02-10 12:51+0100\n"
+"POT-Creation-Date: 2015-02-10 13:40+0100\n"
"PO-Revision-Date: 2008-03-09 12:59+0100\n"
"Last-Translator: Marek Nazarko <mnazarko@gmail.com>\n"
"Language-Team: Polish <vdr@linuxtv.org>\n"
@@ -1255,6 +1255,9 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr ""
+msgid "Setup.Replay$Use Prev/Next keys for adaptive skipping"
+msgstr ""
+
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
diff --git a/po/pt_PT.po b/po/pt_PT.po
index 574b9417..9390217f 100644
--- a/po/pt_PT.po
+++ b/po/pt_PT.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2015-02-10 12:51+0100\n"
+"POT-Creation-Date: 2015-02-10 13:40+0100\n"
"PO-Revision-Date: 2010-03-28 22:49+0100\n"
"Last-Translator: Cris Silva <hudokkow@gmail.com>\n"
"Language-Team: Portuguese <vdr@linuxtv.org>\n"
@@ -1254,6 +1254,9 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr ""
+msgid "Setup.Replay$Use Prev/Next keys for adaptive skipping"
+msgstr ""
+
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
diff --git a/po/ro_RO.po b/po/ro_RO.po
index 47085ec3..1d1460c5 100644
--- a/po/ro_RO.po
+++ b/po/ro_RO.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2015-02-10 12:51+0100\n"
+"POT-Creation-Date: 2015-02-10 13:40+0100\n"
"PO-Revision-Date: 2015-02-09 00:23+0100\n"
"Last-Translator: Lucian Muresan <lucianm@users.sourceforge.net>\n"
"Language-Team: Romanian <vdr@linuxtv.org>\n"
@@ -1255,6 +1255,9 @@ msgstr "Timeout (s) de resetare pentru săritul adaptiv al marcajelor"
msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "Strategie alternativă pentru săritul adaptiv al marcajelor"
+msgid "Setup.Replay$Use Prev/Next keys for adaptive skipping"
+msgstr ""
+
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
diff --git a/po/ru_RU.po b/po/ru_RU.po
index cb85b36a..9ac95d3f 100644
--- a/po/ru_RU.po
+++ b/po/ru_RU.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2015-02-10 12:51+0100\n"
+"POT-Creation-Date: 2015-02-10 13:40+0100\n"
"PO-Revision-Date: 2013-03-10 17:13+0100\n"
"Last-Translator: Oleg Roitburd <oroitburd@gmail.com>\n"
"Language-Team: Russian <vdr@linuxtv.org>\n"
@@ -1254,6 +1254,9 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr ""
+msgid "Setup.Replay$Use Prev/Next keys for adaptive skipping"
+msgstr ""
+
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
diff --git a/po/sk_SK.po b/po/sk_SK.po
index f4348c0e..01e83ad2 100644
--- a/po/sk_SK.po
+++ b/po/sk_SK.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2015-02-10 12:51+0100\n"
+"POT-Creation-Date: 2015-02-10 13:40+0100\n"
"PO-Revision-Date: 2013-03-04 21:24+0100\n"
"Last-Translator: Milan Hrala <hrala.milan@gmail.com>\n"
"Language-Team: Slovak <vdr@linuxtv.org>\n"
@@ -1253,6 +1253,9 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr ""
+msgid "Setup.Replay$Use Prev/Next keys for adaptive skipping"
+msgstr ""
+
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
diff --git a/po/sl_SI.po b/po/sl_SI.po
index ace05ce6..33c3c465 100644
--- a/po/sl_SI.po
+++ b/po/sl_SI.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2015-02-10 12:51+0100\n"
+"POT-Creation-Date: 2015-02-10 13:40+0100\n"
"PO-Revision-Date: 2013-03-04 12:46+0100\n"
"Last-Translator: Matjaz Thaler <matjaz.thaler@guest.arnes.si>\n"
"Language-Team: Slovenian <vdr@linuxtv.org>\n"
@@ -1254,6 +1254,9 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr ""
+msgid "Setup.Replay$Use Prev/Next keys for adaptive skipping"
+msgstr ""
+
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
diff --git a/po/sr_RS.po b/po/sr_RS.po
index 009d042a..fb834f12 100644
--- a/po/sr_RS.po
+++ b/po/sr_RS.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2015-02-10 12:51+0100\n"
+"POT-Creation-Date: 2015-02-10 13:40+0100\n"
"PO-Revision-Date: 2013-03-16 15:05+0100\n"
"Last-Translator: Zoran Turalija <zoran.turalija@gmail.com>\n"
"Language-Team: Serbian <vdr@linuxtv.org>\n"
@@ -1254,6 +1254,9 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr ""
+msgid "Setup.Replay$Use Prev/Next keys for adaptive skipping"
+msgstr ""
+
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
diff --git a/po/sv_SE.po b/po/sv_SE.po
index a3084d68..e2efbe0f 100644
--- a/po/sv_SE.po
+++ b/po/sv_SE.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2015-02-10 12:51+0100\n"
+"POT-Creation-Date: 2015-02-10 13:40+0100\n"
"PO-Revision-Date: 2013-02-18 17:04+0100\n"
"Last-Translator: Richard Lithvall <r-vdr@boomer.se>\n"
"Language-Team: Swedish <vdr@linuxtv.org>\n"
@@ -1257,6 +1257,9 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr ""
+msgid "Setup.Replay$Use Prev/Next keys for adaptive skipping"
+msgstr ""
+
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
diff --git a/po/tr_TR.po b/po/tr_TR.po
index 54b1783f..f832ec80 100644
--- a/po/tr_TR.po
+++ b/po/tr_TR.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2015-02-10 12:51+0100\n"
+"POT-Creation-Date: 2015-02-10 13:40+0100\n"
"PO-Revision-Date: 2008-02-28 00:33+0100\n"
"Last-Translator: Oktay Yolgeen <oktay_73@yahoo.de>\n"
"Language-Team: Turkish <vdr@linuxtv.org>\n"
@@ -1253,6 +1253,9 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr ""
+msgid "Setup.Replay$Use Prev/Next keys for adaptive skipping"
+msgstr ""
+
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
diff --git a/po/uk_UA.po b/po/uk_UA.po
index 5a7bad4d..7875fac1 100644
--- a/po/uk_UA.po
+++ b/po/uk_UA.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2015-02-10 12:51+0100\n"
+"POT-Creation-Date: 2015-02-10 13:40+0100\n"
"PO-Revision-Date: 2015-02-08 16:03+0100\n"
"Last-Translator: Yarema aka Knedlyk <yupadmin@gmail.com>\n"
"Language-Team: Ukrainian <vdr@linuxtv.org>\n"
@@ -1254,6 +1254,9 @@ msgstr "Скинути тайм-аут для адаптивного пропу
msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr "Альтернативна поведінка для адаптивного пропуску (ів)"
+msgid "Setup.Replay$Use Prev/Next keys for adaptive skipping"
+msgstr ""
+
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 05d3eda9..77c15ee6 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2015-02-10 12:51+0100\n"
+"POT-Creation-Date: 2015-02-10 13:40+0100\n"
"PO-Revision-Date: 2013-03-04 14:52+0800\n"
"Last-Translator: NFVDR <nfvdr@live.com>\n"
"Language-Team: Chinese (simplified) <nfvdr@live.com>\n"
@@ -1255,6 +1255,9 @@ msgstr ""
msgid "Setup.Replay$Alternate behavior for adaptive skipping"
msgstr ""
+msgid "Setup.Replay$Use Prev/Next keys for adaptive skipping"
+msgstr ""
+
msgid "Setup.Replay$Skip distance with Green/Yellow keys (s)"
msgstr ""