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

Added "Setup/Replay/Binary skip strict"

This commit is contained in:
Klaus Schmidinger 2015-02-02 13:59:19 +01:00
parent ed766859d7
commit e2d0f3f845
33 changed files with 140 additions and 32 deletions

View File

@ -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).

12
MANUAL
View File

@ -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

View File

@ -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);

View File

@ -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;

6
menu.c
View File

@ -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;
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);

View File

@ -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 "رقم المواصلة"

View File

@ -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"

View File

@ -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í"

View File

@ -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"

View File

@ -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 f
msgid "Setup.Replay$Binary skip timeout (s)"
msgstr "Zeitlimit für binäres Springen (s)"
msgid "Setup.Replay$Binary skip strict"
msgstr "Striktes binäres Springen"
msgid "Setup.Replay$Resume ID"
msgstr "Wiedergabe-ID"

View File

@ -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 áíáìåôÜäïóçò"

View File

@ -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 continuación"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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 на продолжеток"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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 ÒÞáßàÞØ×ÒÕÔÕÝØï"

View File

@ -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 prehrávania"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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 Yolgeçen <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 "Gösteriþ ID'si"

View File

@ -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 продовження"

View File

@ -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"