summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY4
-rw-r--r--MANUAL12
-rw-r--r--config.c5
-rw-r--r--config.h3
-rw-r--r--menu.c8
-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.po5
-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
33 files changed, 140 insertions, 32 deletions
diff --git a/HISTORY b/HISTORY
index db189e0f..48f2e998 100644
--- a/HISTORY
+++ b/HISTORY
@@ -8467,3 +8467,7 @@ Video Disk Recorder Revision History
added NO_KBD and BIDI.
- Added code from the "jumpplay" patch that makes the recording still be considered
unviewed when stopping replay within RESUMEBACKUP seconds of the first mark.
+- The new option "Setup/Replay/Binary skip strict" can be used to make binary 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 many skips in a certain
+ direction (see MANUAL for details).
diff --git a/MANUAL b/MANUAL
index 4f783c41..ea4fd191 100644
--- a/MANUAL
+++ b/MANUAL
@@ -1006,6 +1006,18 @@ Version 2.0
the binary mode and makes '1' and '3' always skip the number
of seconds configured as the initial value.
+ Binary skip strict = yes
+ When skipping in binary mode with the '1' and '3' keys, the
+ distance of the skip is halved with every key press after the
+ first change of direction. While this allows for locating a
+ particular position in a recording very fast, once you make
+ one step too many in the current direction you have no chance
+ of ever reaching the desired point any more. You will have to
+ wait for the timeout to occur and start binary skipping anew.
+ If this option is set to 'no', the skip distance will only be
+ halved if the direction actually changes. That way, even if
+ you missed the target point, you can still back up to it.
+
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
files for each recording. The valid range is 0...99, with
diff --git a/config.c b/config.c
index 9e6f301b..bc9c9b8d 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.6 2015/01/29 09:01:30 kls Exp $
+ * $Id: config.c 3.7 2015/02/02 12:22:30 kls Exp $
*/
#include "config.h"
@@ -475,6 +475,7 @@ cSetup::cSetup(void)
PauseAtLastMark = 0;
BinarySkipInitial = 120;
BinarySkipTimeout = 3;
+ BinarySkipStrict = 1;
ResumeID = 0;
CurrentChannel = -1;
CurrentVolume = MAXVOLUME;
@@ -693,6 +694,7 @@ bool cSetup::Parse(const char *Name, const char *Value)
else if (!strcasecmp(Name, "PauseAtLastMark")) PauseAtLastMark = atoi(Value);
else if (!strcasecmp(Name, "BinarySkipInitial")) BinarySkipInitial = atoi(Value);
else if (!strcasecmp(Name, "BinarySkipTimeout")) BinarySkipTimeout = atoi(Value);
+ else if (!strcasecmp(Name, "BinarySkipStrict")) BinarySkipStrict = atoi(Value);
else if (!strcasecmp(Name, "ResumeID")) ResumeID = atoi(Value);
else if (!strcasecmp(Name, "CurrentChannel")) CurrentChannel = atoi(Value);
else if (!strcasecmp(Name, "CurrentVolume")) CurrentVolume = atoi(Value);
@@ -815,6 +817,7 @@ bool cSetup::Save(void)
Store("PauseAtLastMark", PauseAtLastMark);
Store("BinarySkipInitial", BinarySkipInitial);
Store("BinarySkipTimeout", BinarySkipTimeout);
+ Store("BinarySkipStrict", BinarySkipStrict);
Store("ResumeID", ResumeID);
Store("CurrentChannel", CurrentChannel);
Store("CurrentVolume", CurrentVolume);
diff --git a/config.h b/config.h
index 4ce08c90..97a0088c 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.14 2015/02/01 14:59:52 kls Exp $
+ * $Id: config.h 3.15 2015/02/02 12:21:13 kls Exp $
*/
#ifndef __CONFIG_H
@@ -338,6 +338,7 @@ public:
int PauseAtLastMark;
int BinarySkipInitial;
int BinarySkipTimeout;
+ int BinarySkipStrict;
int ResumeID;
int CurrentChannel;
int CurrentVolume;
diff --git a/menu.c b/menu.c
index 16f98c45..2d6916ed 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.35 2015/02/01 10:42:11 kls Exp $
+ * $Id: menu.c 3.36 2015/02/02 12:23:18 kls Exp $
*/
#include "menu.h"
@@ -3641,6 +3641,7 @@ cMenuSetupReplay::cMenuSetupReplay(void)
Add(new cMenuEditBoolItem(tr("Setup.Replay$Pause replay at last mark"), &data.PauseAtLastMark));
Add(new cMenuEditIntItem( tr("Setup.Replay$Binary skip initial value (s)"), &data.BinarySkipInitial, 10, 600));
Add(new cMenuEditIntItem( tr("Setup.Replay$Binary skip timeout (s)"), &data.BinarySkipTimeout, 0, 10));
+ Add(new cMenuEditBoolItem(tr("Setup.Replay$Binary skip strict"), &data.BinarySkipStrict));
Add(new cMenuEditIntItem(tr("Setup.Replay$Resume ID"), &data.ResumeID, 0, 99));
}
@@ -5007,7 +5008,10 @@ int cBinarySkipper::GetValue(eKeys Key)
}
else if (Key != lastKey) {
currentValue /= 2;
- lastKey = kNone; // once the direction has changed, every further call halves the value
+ if (Setup.BinarySkipStrict)
+ lastKey = kNone; // once the direction has changed, every further call halves the value
+ else
+ lastKey = Key; // only halve the value when the direction is changed
}
timeout.Set(Setup.BinarySkipTimeout * 1000);
return max(currentValue, 1);
diff --git a/po/ar.po b/po/ar.po
index e26a4305..67093741 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-01-30 13:14+0100\n"
+"POT-Creation-Date: 2015-02-02 14:58+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"
@@ -1251,6 +1251,9 @@ msgstr ""
msgid "Setup.Replay$Binary skip timeout (s)"
msgstr ""
+msgid "Setup.Replay$Binary skip strict"
+msgstr ""
+
msgid "Setup.Replay$Resume ID"
msgstr "رقم المواصلة"
diff --git a/po/ca_ES.po b/po/ca_ES.po
index 4d910257..1825ac21 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-01-30 13:14+0100\n"
+"POT-Creation-Date: 2015-02-02 14:58+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"
@@ -1250,6 +1250,9 @@ msgstr ""
msgid "Setup.Replay$Binary skip timeout (s)"
msgstr ""
+msgid "Setup.Replay$Binary skip strict"
+msgstr ""
+
msgid "Setup.Replay$Resume ID"
msgstr "ID de Continuar"
diff --git a/po/cs_CZ.po b/po/cs_CZ.po
index 78fa4080..c751bb71 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-01-30 13:14+0100\n"
+"POT-Creation-Date: 2015-02-02 14:58+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"
@@ -1250,6 +1250,9 @@ msgstr ""
msgid "Setup.Replay$Binary skip timeout (s)"
msgstr ""
+msgid "Setup.Replay$Binary skip strict"
+msgstr ""
+
msgid "Setup.Replay$Resume ID"
msgstr "ID obnovení"
diff --git a/po/da_DK.po b/po/da_DK.po
index c2773f81..1d4ecb8e 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-01-30 13:14+0100\n"
+"POT-Creation-Date: 2015-02-02 14:58+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"
@@ -1247,6 +1247,9 @@ msgstr ""
msgid "Setup.Replay$Binary skip timeout (s)"
msgstr ""
+msgid "Setup.Replay$Binary skip strict"
+msgstr ""
+
msgid "Setup.Replay$Resume ID"
msgstr "Genoptagelses ID"
diff --git a/po/de_DE.po b/po/de_DE.po
index 19cf6163..69717a89 100644
--- a/po/de_DE.po
+++ b/po/de_DE.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-01-30 13:14+0100\n"
+"POT-Creation-Date: 2015-02-02 14:58+0100\n"
"PO-Revision-Date: 2010-01-16 16:46+0100\n"
"Last-Translator: Klaus Schmidinger <vdr@tvdr.de>\n"
"Language-Team: German <vdr@linuxtv.org>\n"
@@ -1247,6 +1247,9 @@ msgstr "Anfangswert fr binres Springen (s)"
msgid "Setup.Replay$Binary skip timeout (s)"
msgstr "Zeitlimit fr binres Springen (s)"
+msgid "Setup.Replay$Binary skip strict"
+msgstr "Striktes binres Springen"
+
msgid "Setup.Replay$Resume ID"
msgstr "Wiedergabe-ID"
diff --git a/po/el_GR.po b/po/el_GR.po
index ab60f68f..acadb8b1 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-01-30 13:14+0100\n"
+"POT-Creation-Date: 2015-02-02 14:58+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"
@@ -1247,6 +1247,9 @@ msgstr ""
msgid "Setup.Replay$Binary skip timeout (s)"
msgstr ""
+msgid "Setup.Replay$Binary skip strict"
+msgstr ""
+
msgid "Setup.Replay$Resume ID"
msgstr "ID "
diff --git a/po/es_ES.po b/po/es_ES.po
index 40d72080..90b57fae 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-01-30 13:14+0100\n"
+"POT-Creation-Date: 2015-02-02 14:58+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"
@@ -1248,6 +1248,9 @@ msgstr ""
msgid "Setup.Replay$Binary skip timeout (s)"
msgstr ""
+msgid "Setup.Replay$Binary skip strict"
+msgstr ""
+
msgid "Setup.Replay$Resume ID"
msgstr "ID de continuacin"
diff --git a/po/et_EE.po b/po/et_EE.po
index 607f7348..c6154a67 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-01-30 13:14+0100\n"
+"POT-Creation-Date: 2015-02-02 14:58+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"
@@ -1247,6 +1247,9 @@ msgstr ""
msgid "Setup.Replay$Binary skip timeout (s)"
msgstr ""
+msgid "Setup.Replay$Binary skip strict"
+msgstr ""
+
msgid "Setup.Replay$Resume ID"
msgstr "Jätkamise ID"
diff --git a/po/fi_FI.po b/po/fi_FI.po
index 8a94795b..56311361 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-01-30 13:14+0100\n"
+"POT-Creation-Date: 2015-02-02 14:58+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"
@@ -1251,6 +1251,9 @@ msgstr "Binäärihypyn oletuspituus (s)"
msgid "Setup.Replay$Binary skip timeout (s)"
msgstr "Binäärihypyn odotusaika (s)"
+msgid "Setup.Replay$Binary skip strict"
+msgstr ""
+
msgid "Setup.Replay$Resume ID"
msgstr "Tallenteen paluutunniste"
diff --git a/po/fr_FR.po b/po/fr_FR.po
index 65ed4fb7..6594f157 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-01-30 13:14+0100\n"
+"POT-Creation-Date: 2015-02-02 14:58+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"
@@ -1257,6 +1257,9 @@ msgstr ""
msgid "Setup.Replay$Binary skip timeout (s)"
msgstr ""
+msgid "Setup.Replay$Binary skip strict"
+msgstr ""
+
msgid "Setup.Replay$Resume ID"
msgstr "ID de reprise"
diff --git a/po/hr_HR.po b/po/hr_HR.po
index b9bd7002..148af1d1 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-01-30 13:14+0100\n"
+"POT-Creation-Date: 2015-02-02 14:58+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"
@@ -1249,6 +1249,9 @@ msgstr ""
msgid "Setup.Replay$Binary skip timeout (s)"
msgstr ""
+msgid "Setup.Replay$Binary skip strict"
+msgstr ""
+
msgid "Setup.Replay$Resume ID"
msgstr "ID nastavka"
diff --git a/po/hu_HU.po b/po/hu_HU.po
index 00dcc247..ad1cde71 100644
--- a/po/hu_HU.po
+++ b/po/hu_HU.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-01-30 13:14+0100\n"
+"POT-Creation-Date: 2015-02-02 14:58+0100\n"
"PO-Revision-Date: 2013-03-01 19:22+0200\n"
"Last-Translator: István Füley <ifuley@tigercomp.ro>\n"
"Language-Team: Hungarian <vdr@linuxtv.org>\n"
@@ -1251,6 +1251,9 @@ msgstr ""
msgid "Setup.Replay$Binary skip timeout (s)"
msgstr ""
+msgid "Setup.Replay$Binary skip strict"
+msgstr ""
+
msgid "Setup.Replay$Resume ID"
msgstr "Lejátszás ID"
diff --git a/po/it_IT.po b/po/it_IT.po
index 78456437..62324ae9 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-01-30 13:14+0100\n"
+"POT-Creation-Date: 2015-02-02 14:58+0100\n"
"PO-Revision-Date: 2015-01-19 20:19+0100\n"
"Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n"
"Language-Team: Italian <vdr@linuxtv.org>\n"
@@ -1254,6 +1254,9 @@ msgstr ""
msgid "Setup.Replay$Binary skip timeout (s)"
msgstr ""
+msgid "Setup.Replay$Binary skip strict"
+msgstr ""
+
msgid "Setup.Replay$Resume ID"
msgstr "ID di ripristino"
diff --git a/po/lt_LT.po b/po/lt_LT.po
index dee68114..b5ea7b4f 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-01-30 13:14+0100\n"
+"POT-Creation-Date: 2015-02-02 14:58+0100\n"
"PO-Revision-Date: 2010-10-30 11:55+0200\n"
"Last-Translator: Valdemaras Pipiras <varas@ambernet.lt>\n"
"Language-Team: Lithuanian <vdr@linuxtv.org>\n"
@@ -1247,6 +1247,9 @@ msgstr "Setup.Replay$Dvetetainis pradinės reikšmės praleidimas (s)"
msgid "Setup.Replay$Binary skip timeout (s)"
msgstr "Setup.Replay$Dvejetainis pertraukos praleidimas (s)"
+msgid "Setup.Replay$Binary skip strict"
+msgstr ""
+
msgid "Setup.Replay$Resume ID"
msgstr "Kūrinio ID"
diff --git a/po/mk_MK.po b/po/mk_MK.po
index 418381c2..e9112d6a 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-01-30 13:14+0100\n"
+"POT-Creation-Date: 2015-02-02 14:58+0100\n"
"PO-Revision-Date: 2012-11-19 15:18+0100\n"
"Last-Translator: Dimitar Petrovski <dimeptr@gmail.com>\n"
"Language-Team: Macedonian <en@li.org>\n"
@@ -1248,6 +1248,9 @@ msgstr ""
msgid "Setup.Replay$Binary skip timeout (s)"
msgstr ""
+msgid "Setup.Replay$Binary skip strict"
+msgstr ""
+
msgid "Setup.Replay$Resume ID"
msgstr "ID на продолжеток"
diff --git a/po/nl_NL.po b/po/nl_NL.po
index 7f9af104..d0a89097 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-01-30 13:14+0100\n"
+"POT-Creation-Date: 2015-02-02 14:58+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"
@@ -1252,6 +1252,9 @@ msgstr ""
msgid "Setup.Replay$Binary skip timeout (s)"
msgstr ""
+msgid "Setup.Replay$Binary skip strict"
+msgstr ""
+
msgid "Setup.Replay$Resume ID"
msgstr "Hervattings ID"
diff --git a/po/nn_NO.po b/po/nn_NO.po
index 6eb63fab..54c539ca 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-01-30 13:14+0100\n"
+"POT-Creation-Date: 2015-02-02 14:58+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"
@@ -1248,6 +1248,9 @@ msgstr ""
msgid "Setup.Replay$Binary skip timeout (s)"
msgstr ""
+msgid "Setup.Replay$Binary skip strict"
+msgstr ""
+
msgid "Setup.Replay$Resume ID"
msgstr "Resume ID"
diff --git a/po/pl_PL.po b/po/pl_PL.po
index 18c8662c..fa9e3806 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-01-30 13:14+0100\n"
+"POT-Creation-Date: 2015-02-02 14:58+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"
@@ -1249,6 +1249,9 @@ msgstr ""
msgid "Setup.Replay$Binary skip timeout (s)"
msgstr ""
+msgid "Setup.Replay$Binary skip strict"
+msgstr ""
+
msgid "Setup.Replay$Resume ID"
msgstr "ID wznowienia"
diff --git a/po/pt_PT.po b/po/pt_PT.po
index b3a891cc..6e8e2c63 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-01-30 13:14+0100\n"
+"POT-Creation-Date: 2015-02-02 14:58+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"
@@ -1248,6 +1248,9 @@ msgstr ""
msgid "Setup.Replay$Binary skip timeout (s)"
msgstr ""
+msgid "Setup.Replay$Binary skip strict"
+msgstr ""
+
msgid "Setup.Replay$Resume ID"
msgstr "ID de resumo"
diff --git a/po/ro_RO.po b/po/ro_RO.po
index 25766cf0..771ef5ca 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-01-30 13:14+0100\n"
+"POT-Creation-Date: 2015-02-02 14:58+0100\n"
"PO-Revision-Date: 2015-01-21 22:34+0100\n"
"Last-Translator: Lucian Muresan <lucianm@users.sourceforge.net>\n"
"Language-Team: Romanian <vdr@linuxtv.org>\n"
@@ -1249,6 +1249,9 @@ msgstr ""
msgid "Setup.Replay$Binary skip timeout (s)"
msgstr ""
+msgid "Setup.Replay$Binary skip strict"
+msgstr ""
+
msgid "Setup.Replay$Resume ID"
msgstr "Identificator continuare"
diff --git a/po/ru_RU.po b/po/ru_RU.po
index e0a291aa..b7d9160d 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-01-30 13:14+0100\n"
+"POT-Creation-Date: 2015-02-02 14:58+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"
@@ -1248,6 +1248,9 @@ msgstr ""
msgid "Setup.Replay$Binary skip timeout (s)"
msgstr ""
+msgid "Setup.Replay$Binary skip strict"
+msgstr ""
+
msgid "Setup.Replay$Resume ID"
msgstr "ID "
diff --git a/po/sk_SK.po b/po/sk_SK.po
index c8c4225b..9c384e06 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-01-30 13:14+0100\n"
+"POT-Creation-Date: 2015-02-02 14:58+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"
@@ -1247,6 +1247,9 @@ msgstr ""
msgid "Setup.Replay$Binary skip timeout (s)"
msgstr ""
+msgid "Setup.Replay$Binary skip strict"
+msgstr ""
+
msgid "Setup.Replay$Resume ID"
msgstr "ident. slo obnovenia prehrvania"
diff --git a/po/sl_SI.po b/po/sl_SI.po
index 9d58dd53..8d93914b 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-01-30 13:14+0100\n"
+"POT-Creation-Date: 2015-02-02 14:58+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"
@@ -1248,6 +1248,9 @@ msgstr ""
msgid "Setup.Replay$Binary skip timeout (s)"
msgstr ""
+msgid "Setup.Replay$Binary skip strict"
+msgstr ""
+
msgid "Setup.Replay$Resume ID"
msgstr "ID za predvajanje"
diff --git a/po/sr_RS.po b/po/sr_RS.po
index dbe75fde..42531aa7 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-01-30 13:14+0100\n"
+"POT-Creation-Date: 2015-02-02 14:58+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"
@@ -1248,6 +1248,9 @@ msgstr ""
msgid "Setup.Replay$Binary skip timeout (s)"
msgstr ""
+msgid "Setup.Replay$Binary skip strict"
+msgstr ""
+
msgid "Setup.Replay$Resume ID"
msgstr "ID reprodukcije"
diff --git a/po/sv_SE.po b/po/sv_SE.po
index 33add95c..f94f8c0b 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-01-30 13:14+0100\n"
+"POT-Creation-Date: 2015-02-02 14:58+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"
@@ -1251,6 +1251,9 @@ msgstr ""
msgid "Setup.Replay$Binary skip timeout (s)"
msgstr ""
+msgid "Setup.Replay$Binary skip strict"
+msgstr ""
+
msgid "Setup.Replay$Resume ID"
msgstr "terupptagnings-ID"
diff --git a/po/tr_TR.po b/po/tr_TR.po
index e6708427..cc034bef 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-01-30 13:14+0100\n"
+"POT-Creation-Date: 2015-02-02 14:58+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"
@@ -1247,6 +1247,9 @@ msgstr ""
msgid "Setup.Replay$Binary skip timeout (s)"
msgstr ""
+msgid "Setup.Replay$Binary skip strict"
+msgstr ""
+
msgid "Setup.Replay$Resume ID"
msgstr "Gsteri ID'si"
diff --git a/po/uk_UA.po b/po/uk_UA.po
index 351d94df..2e0086f2 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-01-30 13:14+0100\n"
+"POT-Creation-Date: 2015-02-02 14:58+0100\n"
"PO-Revision-Date: 2013-02-09 16:00+0100\n"
"Last-Translator: Yarema aka Knedlyk <yupadmin@gmail.com>\n"
"Language-Team: Ukrainian <vdr@linuxtv.org>\n"
@@ -1248,6 +1248,9 @@ msgstr ""
msgid "Setup.Replay$Binary skip timeout (s)"
msgstr ""
+msgid "Setup.Replay$Binary skip strict"
+msgstr ""
+
msgid "Setup.Replay$Resume ID"
msgstr "ID продовження"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index bf253817..58494f4c 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-01-30 13:14+0100\n"
+"POT-Creation-Date: 2015-02-02 14:58+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"
@@ -1249,6 +1249,9 @@ msgstr ""
msgid "Setup.Replay$Binary skip timeout (s)"
msgstr ""
+msgid "Setup.Replay$Binary skip strict"
+msgstr ""
+
msgid "Setup.Replay$Resume ID"
msgstr "恢复 ID"