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:
parent
ed766859d7
commit
e2d0f3f845
4
HISTORY
4
HISTORY
@ -8467,3 +8467,7 @@ Video Disk Recorder Revision History
|
|||||||
added NO_KBD and BIDI.
|
added NO_KBD and BIDI.
|
||||||
- Added code from the "jumpplay" patch that makes the recording still be considered
|
- Added code from the "jumpplay" patch that makes the recording still be considered
|
||||||
unviewed when stopping replay within RESUMEBACKUP seconds of the first mark.
|
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
12
MANUAL
@ -1006,6 +1006,18 @@ Version 2.0
|
|||||||
the binary mode and makes '1' and '3' always skip the number
|
the binary mode and makes '1' and '3' always skip the number
|
||||||
of seconds configured as the initial value.
|
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
|
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
|
||||||
|
5
config.c
5
config.c
@ -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.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"
|
#include "config.h"
|
||||||
@ -475,6 +475,7 @@ cSetup::cSetup(void)
|
|||||||
PauseAtLastMark = 0;
|
PauseAtLastMark = 0;
|
||||||
BinarySkipInitial = 120;
|
BinarySkipInitial = 120;
|
||||||
BinarySkipTimeout = 3;
|
BinarySkipTimeout = 3;
|
||||||
|
BinarySkipStrict = 1;
|
||||||
ResumeID = 0;
|
ResumeID = 0;
|
||||||
CurrentChannel = -1;
|
CurrentChannel = -1;
|
||||||
CurrentVolume = MAXVOLUME;
|
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, "PauseAtLastMark")) PauseAtLastMark = atoi(Value);
|
||||||
else if (!strcasecmp(Name, "BinarySkipInitial")) BinarySkipInitial = atoi(Value);
|
else if (!strcasecmp(Name, "BinarySkipInitial")) BinarySkipInitial = atoi(Value);
|
||||||
else if (!strcasecmp(Name, "BinarySkipTimeout")) BinarySkipTimeout = 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, "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);
|
||||||
@ -815,6 +817,7 @@ bool cSetup::Save(void)
|
|||||||
Store("PauseAtLastMark", PauseAtLastMark);
|
Store("PauseAtLastMark", PauseAtLastMark);
|
||||||
Store("BinarySkipInitial", BinarySkipInitial);
|
Store("BinarySkipInitial", BinarySkipInitial);
|
||||||
Store("BinarySkipTimeout", BinarySkipTimeout);
|
Store("BinarySkipTimeout", BinarySkipTimeout);
|
||||||
|
Store("BinarySkipStrict", BinarySkipStrict);
|
||||||
Store("ResumeID", ResumeID);
|
Store("ResumeID", ResumeID);
|
||||||
Store("CurrentChannel", CurrentChannel);
|
Store("CurrentChannel", CurrentChannel);
|
||||||
Store("CurrentVolume", CurrentVolume);
|
Store("CurrentVolume", CurrentVolume);
|
||||||
|
3
config.h
3
config.h
@ -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.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
|
#ifndef __CONFIG_H
|
||||||
@ -338,6 +338,7 @@ public:
|
|||||||
int PauseAtLastMark;
|
int PauseAtLastMark;
|
||||||
int BinarySkipInitial;
|
int BinarySkipInitial;
|
||||||
int BinarySkipTimeout;
|
int BinarySkipTimeout;
|
||||||
|
int BinarySkipStrict;
|
||||||
int ResumeID;
|
int ResumeID;
|
||||||
int CurrentChannel;
|
int CurrentChannel;
|
||||||
int CurrentVolume;
|
int CurrentVolume;
|
||||||
|
8
menu.c
8
menu.c
@ -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.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"
|
#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 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 initial value (s)"), &data.BinarySkipInitial, 10, 600));
|
||||||
Add(new cMenuEditIntItem( tr("Setup.Replay$Binary skip timeout (s)"), &data.BinarySkipTimeout, 0, 10));
|
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));
|
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) {
|
else if (Key != lastKey) {
|
||||||
currentValue /= 2;
|
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);
|
timeout.Set(Setup.BinarySkipTimeout * 1000);
|
||||||
return max(currentValue, 1);
|
return max(currentValue, 1);
|
||||||
|
5
po/ar.po
5
po/ar.po
@ -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-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"
|
"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"
|
||||||
@ -1251,6 +1251,9 @@ msgstr ""
|
|||||||
msgid "Setup.Replay$Binary skip timeout (s)"
|
msgid "Setup.Replay$Binary skip timeout (s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Replay$Binary skip strict"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Replay$Resume ID"
|
msgid "Setup.Replay$Resume ID"
|
||||||
msgstr "رقم المواصلة"
|
msgstr "رقم المواصلة"
|
||||||
|
|
||||||
|
@ -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-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"
|
"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"
|
||||||
@ -1250,6 +1250,9 @@ msgstr ""
|
|||||||
msgid "Setup.Replay$Binary skip timeout (s)"
|
msgid "Setup.Replay$Binary skip timeout (s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Replay$Binary skip strict"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Replay$Resume ID"
|
msgid "Setup.Replay$Resume ID"
|
||||||
msgstr "ID de Continuar"
|
msgstr "ID de Continuar"
|
||||||
|
|
||||||
|
@ -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-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"
|
"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"
|
||||||
@ -1250,6 +1250,9 @@ msgstr ""
|
|||||||
msgid "Setup.Replay$Binary skip timeout (s)"
|
msgid "Setup.Replay$Binary skip timeout (s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Replay$Binary skip strict"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Replay$Resume ID"
|
msgid "Setup.Replay$Resume ID"
|
||||||
msgstr "ID obnovení"
|
msgstr "ID obnovení"
|
||||||
|
|
||||||
|
@ -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-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"
|
"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"
|
||||||
@ -1247,6 +1247,9 @@ msgstr ""
|
|||||||
msgid "Setup.Replay$Binary skip timeout (s)"
|
msgid "Setup.Replay$Binary skip timeout (s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Replay$Binary skip strict"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Replay$Resume ID"
|
msgid "Setup.Replay$Resume ID"
|
||||||
msgstr "Genoptagelses ID"
|
msgstr "Genoptagelses ID"
|
||||||
|
|
||||||
|
@ -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-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"
|
"PO-Revision-Date: 2010-01-16 16:46+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"
|
||||||
@ -1247,6 +1247,9 @@ msgstr "Anfangswert f
|
|||||||
msgid "Setup.Replay$Binary skip timeout (s)"
|
msgid "Setup.Replay$Binary skip timeout (s)"
|
||||||
msgstr "Zeitlimit für binäres Springen (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"
|
msgid "Setup.Replay$Resume ID"
|
||||||
msgstr "Wiedergabe-ID"
|
msgstr "Wiedergabe-ID"
|
||||||
|
|
||||||
|
@ -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-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"
|
"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"
|
||||||
@ -1247,6 +1247,9 @@ msgstr ""
|
|||||||
msgid "Setup.Replay$Binary skip timeout (s)"
|
msgid "Setup.Replay$Binary skip timeout (s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Replay$Binary skip strict"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Replay$Resume ID"
|
msgid "Setup.Replay$Resume ID"
|
||||||
msgstr "ID áíáìåôÜäïóçò"
|
msgstr "ID áíáìåôÜäïóçò"
|
||||||
|
|
||||||
|
@ -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-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"
|
"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"
|
||||||
@ -1248,6 +1248,9 @@ msgstr ""
|
|||||||
msgid "Setup.Replay$Binary skip timeout (s)"
|
msgid "Setup.Replay$Binary skip timeout (s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Replay$Binary skip strict"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Replay$Resume ID"
|
msgid "Setup.Replay$Resume ID"
|
||||||
msgstr "ID de continuación"
|
msgstr "ID de continuación"
|
||||||
|
|
||||||
|
@ -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-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"
|
"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"
|
||||||
@ -1247,6 +1247,9 @@ msgstr ""
|
|||||||
msgid "Setup.Replay$Binary skip timeout (s)"
|
msgid "Setup.Replay$Binary skip timeout (s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Replay$Binary skip strict"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Replay$Resume ID"
|
msgid "Setup.Replay$Resume ID"
|
||||||
msgstr "Jätkamise ID"
|
msgstr "Jätkamise ID"
|
||||||
|
|
||||||
|
@ -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-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"
|
"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"
|
||||||
@ -1251,6 +1251,9 @@ msgstr "Binäärihypyn oletuspituus (s)"
|
|||||||
msgid "Setup.Replay$Binary skip timeout (s)"
|
msgid "Setup.Replay$Binary skip timeout (s)"
|
||||||
msgstr "Binäärihypyn odotusaika (s)"
|
msgstr "Binäärihypyn odotusaika (s)"
|
||||||
|
|
||||||
|
msgid "Setup.Replay$Binary skip strict"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Replay$Resume ID"
|
msgid "Setup.Replay$Resume ID"
|
||||||
msgstr "Tallenteen paluutunniste"
|
msgstr "Tallenteen paluutunniste"
|
||||||
|
|
||||||
|
@ -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-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"
|
"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"
|
||||||
@ -1257,6 +1257,9 @@ msgstr ""
|
|||||||
msgid "Setup.Replay$Binary skip timeout (s)"
|
msgid "Setup.Replay$Binary skip timeout (s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Replay$Binary skip strict"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Replay$Resume ID"
|
msgid "Setup.Replay$Resume ID"
|
||||||
msgstr "ID de reprise"
|
msgstr "ID de reprise"
|
||||||
|
|
||||||
|
@ -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-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"
|
"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"
|
||||||
@ -1249,6 +1249,9 @@ msgstr ""
|
|||||||
msgid "Setup.Replay$Binary skip timeout (s)"
|
msgid "Setup.Replay$Binary skip timeout (s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Replay$Binary skip strict"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Replay$Resume ID"
|
msgid "Setup.Replay$Resume ID"
|
||||||
msgstr "ID nastavka"
|
msgstr "ID nastavka"
|
||||||
|
|
||||||
|
@ -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-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"
|
"PO-Revision-Date: 2013-03-01 19:22+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"
|
||||||
@ -1251,6 +1251,9 @@ msgstr ""
|
|||||||
msgid "Setup.Replay$Binary skip timeout (s)"
|
msgid "Setup.Replay$Binary skip timeout (s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Replay$Binary skip strict"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Replay$Resume ID"
|
msgid "Setup.Replay$Resume ID"
|
||||||
msgstr "Lejátszás ID"
|
msgstr "Lejátszás ID"
|
||||||
|
|
||||||
|
@ -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-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"
|
"PO-Revision-Date: 2015-01-19 20:19+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"
|
||||||
@ -1254,6 +1254,9 @@ msgstr ""
|
|||||||
msgid "Setup.Replay$Binary skip timeout (s)"
|
msgid "Setup.Replay$Binary skip timeout (s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Replay$Binary skip strict"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Replay$Resume ID"
|
msgid "Setup.Replay$Resume ID"
|
||||||
msgstr "ID di ripristino"
|
msgstr "ID di ripristino"
|
||||||
|
|
||||||
|
@ -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-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"
|
"PO-Revision-Date: 2010-10-30 11:55+0200\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"
|
||||||
@ -1247,6 +1247,9 @@ msgstr "Setup.Replay$Dvetetainis pradinės reikšmės praleidimas (s)"
|
|||||||
msgid "Setup.Replay$Binary skip timeout (s)"
|
msgid "Setup.Replay$Binary skip timeout (s)"
|
||||||
msgstr "Setup.Replay$Dvejetainis pertraukos praleidimas (s)"
|
msgstr "Setup.Replay$Dvejetainis pertraukos praleidimas (s)"
|
||||||
|
|
||||||
|
msgid "Setup.Replay$Binary skip strict"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Replay$Resume ID"
|
msgid "Setup.Replay$Resume ID"
|
||||||
msgstr "Kūrinio ID"
|
msgstr "Kūrinio ID"
|
||||||
|
|
||||||
|
@ -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-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"
|
"PO-Revision-Date: 2012-11-19 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"
|
||||||
@ -1248,6 +1248,9 @@ msgstr ""
|
|||||||
msgid "Setup.Replay$Binary skip timeout (s)"
|
msgid "Setup.Replay$Binary skip timeout (s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Replay$Binary skip strict"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Replay$Resume ID"
|
msgid "Setup.Replay$Resume ID"
|
||||||
msgstr "ID на продолжеток"
|
msgstr "ID на продолжеток"
|
||||||
|
|
||||||
|
@ -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-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"
|
"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"
|
||||||
@ -1252,6 +1252,9 @@ msgstr ""
|
|||||||
msgid "Setup.Replay$Binary skip timeout (s)"
|
msgid "Setup.Replay$Binary skip timeout (s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Replay$Binary skip strict"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Replay$Resume ID"
|
msgid "Setup.Replay$Resume ID"
|
||||||
msgstr "Hervattings ID"
|
msgstr "Hervattings ID"
|
||||||
|
|
||||||
|
@ -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-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"
|
"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"
|
||||||
@ -1248,6 +1248,9 @@ msgstr ""
|
|||||||
msgid "Setup.Replay$Binary skip timeout (s)"
|
msgid "Setup.Replay$Binary skip timeout (s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Replay$Binary skip strict"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Replay$Resume ID"
|
msgid "Setup.Replay$Resume ID"
|
||||||
msgstr "Resume ID"
|
msgstr "Resume ID"
|
||||||
|
|
||||||
|
@ -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-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"
|
"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"
|
||||||
@ -1249,6 +1249,9 @@ msgstr ""
|
|||||||
msgid "Setup.Replay$Binary skip timeout (s)"
|
msgid "Setup.Replay$Binary skip timeout (s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Replay$Binary skip strict"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Replay$Resume ID"
|
msgid "Setup.Replay$Resume ID"
|
||||||
msgstr "ID wznowienia"
|
msgstr "ID wznowienia"
|
||||||
|
|
||||||
|
@ -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-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"
|
"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"
|
||||||
@ -1248,6 +1248,9 @@ msgstr ""
|
|||||||
msgid "Setup.Replay$Binary skip timeout (s)"
|
msgid "Setup.Replay$Binary skip timeout (s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Replay$Binary skip strict"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Replay$Resume ID"
|
msgid "Setup.Replay$Resume ID"
|
||||||
msgstr "ID de resumo"
|
msgstr "ID de resumo"
|
||||||
|
|
||||||
|
@ -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-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"
|
"PO-Revision-Date: 2015-01-21 22:34+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"
|
||||||
@ -1249,6 +1249,9 @@ msgstr ""
|
|||||||
msgid "Setup.Replay$Binary skip timeout (s)"
|
msgid "Setup.Replay$Binary skip timeout (s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Replay$Binary skip strict"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Replay$Resume ID"
|
msgid "Setup.Replay$Resume ID"
|
||||||
msgstr "Identificator continuare"
|
msgstr "Identificator continuare"
|
||||||
|
|
||||||
|
@ -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-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"
|
"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"
|
||||||
@ -1248,6 +1248,9 @@ msgstr ""
|
|||||||
msgid "Setup.Replay$Binary skip timeout (s)"
|
msgid "Setup.Replay$Binary skip timeout (s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Replay$Binary skip strict"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Replay$Resume ID"
|
msgid "Setup.Replay$Resume ID"
|
||||||
msgstr "ID ÒÞáßàÞØ×ÒÕÔÕÝØï"
|
msgstr "ID ÒÞáßàÞØ×ÒÕÔÕÝØï"
|
||||||
|
|
||||||
|
@ -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-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"
|
"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"
|
||||||
@ -1247,6 +1247,9 @@ msgstr ""
|
|||||||
msgid "Setup.Replay$Binary skip timeout (s)"
|
msgid "Setup.Replay$Binary skip timeout (s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Replay$Binary skip strict"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Replay$Resume ID"
|
msgid "Setup.Replay$Resume ID"
|
||||||
msgstr "ident. èíslo obnovenia prehrávania"
|
msgstr "ident. èíslo obnovenia prehrávania"
|
||||||
|
|
||||||
|
@ -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-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"
|
"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"
|
||||||
@ -1248,6 +1248,9 @@ msgstr ""
|
|||||||
msgid "Setup.Replay$Binary skip timeout (s)"
|
msgid "Setup.Replay$Binary skip timeout (s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Replay$Binary skip strict"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Replay$Resume ID"
|
msgid "Setup.Replay$Resume ID"
|
||||||
msgstr "ID za predvajanje"
|
msgstr "ID za predvajanje"
|
||||||
|
|
||||||
|
@ -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-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"
|
"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"
|
||||||
@ -1248,6 +1248,9 @@ msgstr ""
|
|||||||
msgid "Setup.Replay$Binary skip timeout (s)"
|
msgid "Setup.Replay$Binary skip timeout (s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Replay$Binary skip strict"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Replay$Resume ID"
|
msgid "Setup.Replay$Resume ID"
|
||||||
msgstr "ID reprodukcije"
|
msgstr "ID reprodukcije"
|
||||||
|
|
||||||
|
@ -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-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"
|
"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"
|
||||||
@ -1251,6 +1251,9 @@ msgstr ""
|
|||||||
msgid "Setup.Replay$Binary skip timeout (s)"
|
msgid "Setup.Replay$Binary skip timeout (s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Replay$Binary skip strict"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Replay$Resume ID"
|
msgid "Setup.Replay$Resume ID"
|
||||||
msgstr "Återupptagnings-ID"
|
msgstr "Återupptagnings-ID"
|
||||||
|
|
||||||
|
@ -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-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"
|
"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"
|
||||||
@ -1247,6 +1247,9 @@ msgstr ""
|
|||||||
msgid "Setup.Replay$Binary skip timeout (s)"
|
msgid "Setup.Replay$Binary skip timeout (s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Replay$Binary skip strict"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Replay$Resume ID"
|
msgid "Setup.Replay$Resume ID"
|
||||||
msgstr "Gösteriþ ID'si"
|
msgstr "Gösteriþ ID'si"
|
||||||
|
|
||||||
|
@ -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-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"
|
"PO-Revision-Date: 2013-02-09 16:00+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"
|
||||||
@ -1248,6 +1248,9 @@ msgstr ""
|
|||||||
msgid "Setup.Replay$Binary skip timeout (s)"
|
msgid "Setup.Replay$Binary skip timeout (s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Replay$Binary skip strict"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Replay$Resume ID"
|
msgid "Setup.Replay$Resume ID"
|
||||||
msgstr "ID продовження"
|
msgstr "ID продовження"
|
||||||
|
|
||||||
|
@ -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-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"
|
"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"
|
||||||
@ -1249,6 +1249,9 @@ msgstr ""
|
|||||||
msgid "Setup.Replay$Binary skip timeout (s)"
|
msgid "Setup.Replay$Binary skip timeout (s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Replay$Binary skip strict"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Replay$Resume ID"
|
msgid "Setup.Replay$Resume ID"
|
||||||
msgstr "恢复 ID"
|
msgstr "恢复 ID"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user