mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Implemented setup option "Replay/Show remaining time"
This commit is contained in:
parent
5f86af093e
commit
81f349bf58
3
HISTORY
3
HISTORY
@ -6828,3 +6828,6 @@ Video Disk Recorder Revision History
|
||||
- Changed IndexToHMSF() so that it can handle negative Index values.
|
||||
- Added option -N to the msgmerge call in the Makefile, because fuzzy translation
|
||||
mostly resulted in useless strings.
|
||||
- The new setup option "Replay/Show remaining time" can be used to switch between
|
||||
showing the total length or the remaining time of the recording that is currently
|
||||
replayed.
|
||||
|
4
MANUAL
4
MANUAL
@ -856,6 +856,10 @@ Version 1.6
|
||||
|
||||
Show replay mode = no Turns displaying the current replay mode on or off.
|
||||
|
||||
Show remaining time = no
|
||||
Defines whether the replay progress display shows the
|
||||
remaining time or the total length of the recording.
|
||||
|
||||
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
|
||||
|
5
config.c
5
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 2.17 2011/12/10 14:33:27 kls Exp $
|
||||
* $Id: config.c 2.18 2012/01/14 13:04:59 kls Exp $
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
@ -453,6 +453,7 @@ cSetup::cSetup(void)
|
||||
NextWakeupTime = 0;
|
||||
MultiSpeedMode = 0;
|
||||
ShowReplayMode = 0;
|
||||
ShowRemainingTime = 0;
|
||||
ResumeID = 0;
|
||||
CurrentChannel = -1;
|
||||
CurrentVolume = MAXVOLUME;
|
||||
@ -647,6 +648,7 @@ bool cSetup::Parse(const char *Name, const char *Value)
|
||||
else if (!strcasecmp(Name, "NextWakeupTime")) NextWakeupTime = atoi(Value);
|
||||
else if (!strcasecmp(Name, "MultiSpeedMode")) MultiSpeedMode = atoi(Value);
|
||||
else if (!strcasecmp(Name, "ShowReplayMode")) ShowReplayMode = atoi(Value);
|
||||
else if (!strcasecmp(Name, "ShowRemainingTime")) ShowRemainingTime = 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);
|
||||
@ -744,6 +746,7 @@ bool cSetup::Save(void)
|
||||
Store("NextWakeupTime", NextWakeupTime);
|
||||
Store("MultiSpeedMode", MultiSpeedMode);
|
||||
Store("ShowReplayMode", ShowReplayMode);
|
||||
Store("ShowRemainingTime", ShowRemainingTime);
|
||||
Store("ResumeID", ResumeID);
|
||||
Store("CurrentChannel", CurrentChannel);
|
||||
Store("CurrentVolume", CurrentVolume);
|
||||
|
3
config.h
3
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 2.38 2012/01/11 15:40:47 kls Exp $
|
||||
* $Id: config.h 2.39 2012/01/14 13:03:53 kls Exp $
|
||||
*/
|
||||
|
||||
#ifndef __CONFIG_H
|
||||
@ -302,6 +302,7 @@ public:
|
||||
time_t NextWakeupTime;
|
||||
int MultiSpeedMode;
|
||||
int ShowReplayMode;
|
||||
int ShowRemainingTime;
|
||||
int ResumeID;
|
||||
int CurrentChannel;
|
||||
int CurrentVolume;
|
||||
|
16
menu.c
16
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 2.34 2011/12/04 14:52:38 kls Exp $
|
||||
* $Id: menu.c 2.35 2012/01/14 13:06:03 kls Exp $
|
||||
*/
|
||||
|
||||
#include "menu.h"
|
||||
@ -3114,6 +3114,7 @@ cMenuSetupReplay::cMenuSetupReplay(void)
|
||||
SetSection(tr("Replay"));
|
||||
Add(new cMenuEditBoolItem(tr("Setup.Replay$Multi speed mode"), &data.MultiSpeedMode));
|
||||
Add(new cMenuEditBoolItem(tr("Setup.Replay$Show replay mode"), &data.ShowReplayMode));
|
||||
Add(new cMenuEditBoolItem(tr("Setup.Replay$Show remaining time"), &data.ShowRemainingTime));
|
||||
Add(new cMenuEditIntItem(tr("Setup.Replay$Resume ID"), &data.ResumeID, 0, 99));
|
||||
}
|
||||
|
||||
@ -4568,12 +4569,15 @@ bool cReplayControl::ShowProgress(bool Initial)
|
||||
displayReplay->SetTitle(title);
|
||||
lastCurrent = lastTotal = -1;
|
||||
}
|
||||
if (Total != lastTotal) {
|
||||
displayReplay->SetTotal(IndexToHMSF(Total, false, FramesPerSecond()));
|
||||
if (!Initial)
|
||||
displayReplay->Flush();
|
||||
}
|
||||
if (Current != lastCurrent || Total != lastTotal) {
|
||||
if (Setup.ShowRemainingTime || Total != lastTotal) {
|
||||
int Index = Total;
|
||||
if (Setup.ShowRemainingTime)
|
||||
Index = Current - Index;
|
||||
displayReplay->SetTotal(IndexToHMSF(Index, false, FramesPerSecond()));
|
||||
if (!Initial)
|
||||
displayReplay->Flush();
|
||||
}
|
||||
displayReplay->SetProgress(Current, Total);
|
||||
if (!Initial)
|
||||
displayReplay->Flush();
|
||||
|
5
po/ar.po
5
po/ar.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.7.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2012-01-11 13:47+0100\n"
|
||||
"POT-Creation-Date: 2012-01-14 14:06+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"
|
||||
@ -1106,6 +1106,9 @@ msgstr "موءقت النوم"
|
||||
msgid "Setup.Replay$Show replay mode"
|
||||
msgstr "اضهر طور الاعادة"
|
||||
|
||||
msgid "Setup.Replay$Show remaining time"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.Replay$Resume ID"
|
||||
msgstr "رقم المواصلة"
|
||||
|
||||
|
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2012-01-11 13:47+0100\n"
|
||||
"POT-Creation-Date: 2012-01-14 14:06+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"
|
||||
@ -1083,6 +1083,9 @@ msgstr "Mode de multivelocitat"
|
||||
msgid "Setup.Replay$Show replay mode"
|
||||
msgstr "Mostrar mode de reproducció"
|
||||
|
||||
msgid "Setup.Replay$Show remaining time"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.Replay$Resume ID"
|
||||
msgstr "ID de Continuar"
|
||||
|
||||
|
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.7.14\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2012-01-11 13:47+0100\n"
|
||||
"POT-Creation-Date: 2012-01-14 14:06+0100\n"
|
||||
"PO-Revision-Date: 2010-05-06 11:00+0200\n"
|
||||
"Last-Translator: Radek Šťastný <dedkus@gmail.com>\n"
|
||||
"Language-Team: Czech <vdr@linuxtv.org>\n"
|
||||
@ -1082,6 +1082,9 @@ msgstr "Vícerychlostní mód"
|
||||
msgid "Setup.Replay$Show replay mode"
|
||||
msgstr "Zobrazit režim přehrávání"
|
||||
|
||||
msgid "Setup.Replay$Show remaining time"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.Replay$Resume ID"
|
||||
msgstr "ID obnovení"
|
||||
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2012-01-11 13:47+0100\n"
|
||||
"POT-Creation-Date: 2012-01-14 14:06+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"
|
||||
@ -1080,6 +1080,9 @@ msgstr "Multi hastighedsmodus"
|
||||
msgid "Setup.Replay$Show replay mode"
|
||||
msgstr "Vis afspilningsmodus"
|
||||
|
||||
msgid "Setup.Replay$Show remaining time"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.Replay$Resume ID"
|
||||
msgstr "Genoptagelses ID"
|
||||
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2012-01-11 13:47+0100\n"
|
||||
"POT-Creation-Date: 2012-01-14 14:06+0100\n"
|
||||
"PO-Revision-Date: 2010-01-16 16:46+0100\n"
|
||||
"Last-Translator: Klaus Schmidinger <kls@tvdr.de>\n"
|
||||
"Language-Team: German <vdr@linuxtv.org>\n"
|
||||
@ -1080,6 +1080,9 @@ msgstr "Mehrstufiger Vor-/R
|
||||
msgid "Setup.Replay$Show replay mode"
|
||||
msgstr "Wiedergabestatus anzeigen"
|
||||
|
||||
msgid "Setup.Replay$Show remaining time"
|
||||
msgstr "Verbleibende Zeit anzeigen"
|
||||
|
||||
msgid "Setup.Replay$Resume ID"
|
||||
msgstr "Wiedergabe-ID"
|
||||
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2012-01-11 13:47+0100\n"
|
||||
"POT-Creation-Date: 2012-01-14 14:06+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"
|
||||
@ -1080,6 +1080,9 @@ msgstr "
|
||||
msgid "Setup.Replay$Show replay mode"
|
||||
msgstr "¸íäåéîç êáôÜóôáóçò áíáìåôÜäïóçò"
|
||||
|
||||
msgid "Setup.Replay$Show remaining time"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.Replay$Resume ID"
|
||||
msgstr "ID áíáìåôÜäïóçò"
|
||||
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2012-01-11 13:47+0100\n"
|
||||
"POT-Creation-Date: 2012-01-14 14:06+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"
|
||||
@ -1081,6 +1081,9 @@ msgstr "Modo multi-velocidad"
|
||||
msgid "Setup.Replay$Show replay mode"
|
||||
msgstr "Mostrar modo de reproducción"
|
||||
|
||||
msgid "Setup.Replay$Show remaining time"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.Replay$Resume ID"
|
||||
msgstr "ID de continuación"
|
||||
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2012-01-11 13:47+0100\n"
|
||||
"POT-Creation-Date: 2012-01-14 14:06+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"
|
||||
@ -1080,6 +1080,9 @@ msgstr "Mitmekiiruse moodus"
|
||||
msgid "Setup.Replay$Show replay mode"
|
||||
msgstr "Korduse moodus"
|
||||
|
||||
msgid "Setup.Replay$Show remaining time"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.Replay$Resume ID"
|
||||
msgstr "Jätkamise ID"
|
||||
|
||||
|
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2012-01-11 13:47+0100\n"
|
||||
"POT-Creation-Date: 2012-01-14 14:06+0100\n"
|
||||
"PO-Revision-Date: 2007-08-15 15:52+0200\n"
|
||||
"Last-Translator: Rolf Ahrenberg <rahrenbe@cc.hut.fi>\n"
|
||||
"Language-Team: Finnish <vdr@linuxtv.org>\n"
|
||||
@ -1083,6 +1083,9 @@ msgstr "Käytä toiston moninopeustilaa"
|
||||
msgid "Setup.Replay$Show replay mode"
|
||||
msgstr "Näytä toiston tila"
|
||||
|
||||
msgid "Setup.Replay$Show remaining time"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.Replay$Resume ID"
|
||||
msgstr "Tallenteen paluutunniste"
|
||||
|
||||
|
@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2012-01-11 13:47+0100\n"
|
||||
"POT-Creation-Date: 2012-01-14 14:06+0100\n"
|
||||
"PO-Revision-Date: 2008-02-27 18:14+0100\n"
|
||||
"Last-Translator: Jean-Claude Repetto <jc@repetto.org>\n"
|
||||
"Language-Team: French <vdr@linuxtv.org>\n"
|
||||
@ -1086,6 +1086,9 @@ msgstr "Mode multi-vitesses"
|
||||
msgid "Setup.Replay$Show replay mode"
|
||||
msgstr "Affichage mode de lecture"
|
||||
|
||||
msgid "Setup.Replay$Show remaining time"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.Replay$Resume ID"
|
||||
msgstr "ID de reprise"
|
||||
|
||||
|
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2012-01-11 13:47+0100\n"
|
||||
"POT-Creation-Date: 2012-01-14 14:06+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"
|
||||
@ -1082,6 +1082,9 @@ msgstr "Vi
|
||||
msgid "Setup.Replay$Show replay mode"
|
||||
msgstr "Prika¾i naèin prikazivanja"
|
||||
|
||||
msgid "Setup.Replay$Show remaining time"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.Replay$Resume ID"
|
||||
msgstr "ID nastavka"
|
||||
|
||||
|
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2012-01-11 13:47+0100\n"
|
||||
"POT-Creation-Date: 2012-01-14 14:06+0100\n"
|
||||
"PO-Revision-Date: 2012-01-02 11:54+0200\n"
|
||||
"Last-Translator: István Füley <ifuley@tigercomp.ro>\n"
|
||||
"Language-Team: Hungarian <vdr@linuxtv.org>\n"
|
||||
@ -1084,6 +1084,9 @@ msgstr "T
|
||||
msgid "Setup.Replay$Show replay mode"
|
||||
msgstr "Lejátszás feltüntetése"
|
||||
|
||||
msgid "Setup.Replay$Show remaining time"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.Replay$Resume ID"
|
||||
msgstr "Lejátszás ID"
|
||||
|
||||
|
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2012-01-11 13:47+0100\n"
|
||||
"POT-Creation-Date: 2012-01-14 14:06+0100\n"
|
||||
"PO-Revision-Date: 2010-06-13 00:30+0100\n"
|
||||
"Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n"
|
||||
"Language-Team: Italian <vdr@linuxtv.org>\n"
|
||||
@ -1087,6 +1087,9 @@ msgstr "Modalità multispeed"
|
||||
msgid "Setup.Replay$Show replay mode"
|
||||
msgstr "Mostra modalità riproduzione"
|
||||
|
||||
msgid "Setup.Replay$Show remaining time"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.Replay$Resume ID"
|
||||
msgstr "ID di ripristino"
|
||||
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.7.16\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2012-01-11 13:47+0100\n"
|
||||
"POT-Creation-Date: 2012-01-14 14:06+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"
|
||||
@ -1080,6 +1080,9 @@ msgstr "Prasukimo ręžimas"
|
||||
msgid "Setup.Replay$Show replay mode"
|
||||
msgstr "Rodyti pakartojimo ręžimą"
|
||||
|
||||
msgid "Setup.Replay$Show remaining time"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.Replay$Resume ID"
|
||||
msgstr "Kūrinio ID"
|
||||
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR-1.7.14\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2012-01-11 13:47+0100\n"
|
||||
"POT-Creation-Date: 2012-01-14 14:06+0100\n"
|
||||
"PO-Revision-Date: 2010-03-11 00:54+0100\n"
|
||||
"Last-Translator: Dimitar Petrovski <dimeptr@gmail.com>\n"
|
||||
"Language-Team: Macedonian <en@li.org>\n"
|
||||
@ -1081,6 +1081,9 @@ msgstr "Повеќебрзински режим"
|
||||
msgid "Setup.Replay$Show replay mode"
|
||||
msgstr "Прикажи начин на пуштање"
|
||||
|
||||
msgid "Setup.Replay$Show remaining time"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.Replay$Resume ID"
|
||||
msgstr "ID на продолжеток"
|
||||
|
||||
|
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2012-01-11 13:47+0100\n"
|
||||
"POT-Creation-Date: 2012-01-14 14:06+0100\n"
|
||||
"PO-Revision-Date: 2008-02-26 17:20+0100\n"
|
||||
"Last-Translator: Johan Schuring <johan.schuring@vetteblei.nl>\n"
|
||||
"Language-Team: Dutch <vdr@linuxtv.org>\n"
|
||||
@ -1084,6 +1084,9 @@ msgstr "Multi-speed mode"
|
||||
msgid "Setup.Replay$Show replay mode"
|
||||
msgstr "Weergave mode aangeven"
|
||||
|
||||
msgid "Setup.Replay$Show remaining time"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.Replay$Resume ID"
|
||||
msgstr "Hervattings ID"
|
||||
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2012-01-11 13:47+0100\n"
|
||||
"POT-Creation-Date: 2012-01-14 14:06+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"
|
||||
@ -1081,6 +1081,9 @@ msgstr "Multispeed modus"
|
||||
msgid "Setup.Replay$Show replay mode"
|
||||
msgstr "Vis avspillingsmodus"
|
||||
|
||||
msgid "Setup.Replay$Show remaining time"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.Replay$Resume ID"
|
||||
msgstr "Resume ID"
|
||||
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2012-01-11 13:47+0100\n"
|
||||
"POT-Creation-Date: 2012-01-14 14:06+0100\n"
|
||||
"PO-Revision-Date: 2008-03-09 12:59+0100\n"
|
||||
"Last-Translator: Michael Rakowski <mrak@gmx.de>\n"
|
||||
"Language-Team: Polish <vdr@linuxtv.org>\n"
|
||||
@ -1081,6 +1081,9 @@ msgstr "Tryb wielopr
|
||||
msgid "Setup.Replay$Show replay mode"
|
||||
msgstr "Pokazuj tryb odtwarzania"
|
||||
|
||||
msgid "Setup.Replay$Show remaining time"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.Replay$Resume ID"
|
||||
msgstr "ID wznowienia"
|
||||
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.7.15\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2012-01-11 13:47+0100\n"
|
||||
"POT-Creation-Date: 2012-01-14 14:06+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"
|
||||
@ -1081,6 +1081,9 @@ msgstr "Modo multi velocidade"
|
||||
msgid "Setup.Replay$Show replay mode"
|
||||
msgstr "Mostrar modo de reprodução"
|
||||
|
||||
msgid "Setup.Replay$Show remaining time"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.Replay$Resume ID"
|
||||
msgstr "ID de resumo"
|
||||
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.7.12\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2012-01-11 13:47+0100\n"
|
||||
"POT-Creation-Date: 2012-01-14 14:06+0100\n"
|
||||
"PO-Revision-Date: 2011-03-10 23:52+0100\n"
|
||||
"Last-Translator: Lucian Muresan <lucianm@users.sourceforge.net>\n"
|
||||
"Language-Team: Romanian <vdr@linuxtv.org>\n"
|
||||
@ -1083,6 +1083,9 @@ msgstr "Mod multi-vitez
|
||||
msgid "Setup.Replay$Show replay mode"
|
||||
msgstr "Afiºeazã redarea"
|
||||
|
||||
msgid "Setup.Replay$Show remaining time"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.Replay$Resume ID"
|
||||
msgstr "Identificator continuare"
|
||||
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2012-01-11 13:47+0100\n"
|
||||
"POT-Creation-Date: 2012-01-14 14:06+0100\n"
|
||||
"PO-Revision-Date: 2008-12-15 14:37+0100\n"
|
||||
"Last-Translator: Oleg Roitburd <oleg@roitburd.de>\n"
|
||||
"Language-Team: Russian <vdr@linuxtv.org>\n"
|
||||
@ -1081,6 +1081,9 @@ msgstr "
|
||||
msgid "Setup.Replay$Show replay mode"
|
||||
msgstr "¾âÞÑàÐÖÐâì àÕÖØÜ ÒÞáßàÞØ×ÒÕÔÕÝØï"
|
||||
|
||||
msgid "Setup.Replay$Show remaining time"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.Replay$Resume ID"
|
||||
msgstr "ID ÒÞáßàÞØ×ÒÕÔÕÝØï"
|
||||
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.7.16\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2012-01-11 13:47+0100\n"
|
||||
"POT-Creation-Date: 2012-01-14 14:06+0100\n"
|
||||
"PO-Revision-Date: 2011-02-15 16:29+0100\n"
|
||||
"Last-Translator: Milan Hrala <hrala.milan@gmail.com>\n"
|
||||
"Language-Team: Slovak <vdr@linuxtv.org>\n"
|
||||
@ -1080,6 +1080,9 @@ msgstr "Viac r
|
||||
msgid "Setup.Replay$Show replay mode"
|
||||
msgstr "Zobrazi» spôsob prehrávania"
|
||||
|
||||
msgid "Setup.Replay$Show remaining time"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.Replay$Resume ID"
|
||||
msgstr "ID obnovenie"
|
||||
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2012-01-11 13:47+0100\n"
|
||||
"POT-Creation-Date: 2012-01-14 14:06+0100\n"
|
||||
"PO-Revision-Date: 2008-02-28 19:44+0100\n"
|
||||
"Last-Translator: Matjaz Thaler <matjaz.thaler@guest.arnes.si>\n"
|
||||
"Language-Team: Slovenian <vdr@linuxtv.org>\n"
|
||||
@ -1081,6 +1081,9 @@ msgstr "Re
|
||||
msgid "Setup.Replay$Show replay mode"
|
||||
msgstr "Prika¾i re¾im predvajanja"
|
||||
|
||||
msgid "Setup.Replay$Show remaining time"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.Replay$Resume ID"
|
||||
msgstr "ID za predvajanje"
|
||||
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.7.1\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2012-01-11 13:47+0100\n"
|
||||
"POT-Creation-Date: 2012-01-14 14:06+0100\n"
|
||||
"PO-Revision-Date: 2011-01-09 15:57+0100\n"
|
||||
"Last-Translator: Milan Cvijanoviæ <elcom_cvijo@hotmail.com>\n"
|
||||
"Language-Team: Serbian <vdr@linuxtv.org>\n"
|
||||
@ -1103,6 +1103,9 @@ msgstr "Vi
|
||||
msgid "Setup.Replay$Show replay mode"
|
||||
msgstr "Prika¾i re¾im reprodukcije"
|
||||
|
||||
msgid "Setup.Replay$Show remaining time"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.Replay$Resume ID"
|
||||
msgstr "ID nastavka"
|
||||
|
||||
|
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2012-01-11 13:47+0100\n"
|
||||
"POT-Creation-Date: 2012-01-14 14:06+0100\n"
|
||||
"PO-Revision-Date: 2008-03-12 18:25+0100\n"
|
||||
"Last-Translator: Magnus Andersson <svankan@bahnhof.se>\n"
|
||||
"Language-Team: Swedish <vdr@linuxtv.org>\n"
|
||||
@ -1083,6 +1083,9 @@ msgstr "Multispeed mode"
|
||||
msgid "Setup.Replay$Show replay mode"
|
||||
msgstr "Visa uppspelningsläge"
|
||||
|
||||
msgid "Setup.Replay$Show remaining time"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.Replay$Resume ID"
|
||||
msgstr "Återuppta ID"
|
||||
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2012-01-11 13:47+0100\n"
|
||||
"POT-Creation-Date: 2012-01-14 14:06+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"
|
||||
@ -1080,6 +1080,9 @@ msgstr "Katl
|
||||
msgid "Setup.Replay$Show replay mode"
|
||||
msgstr "Gösteriþ bilgisi"
|
||||
|
||||
msgid "Setup.Replay$Show remaining time"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.Replay$Resume ID"
|
||||
msgstr "Gösteriþ ID'si"
|
||||
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.7.7\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2012-01-11 13:47+0100\n"
|
||||
"POT-Creation-Date: 2012-01-14 14:06+0100\n"
|
||||
"PO-Revision-Date: 2010-04-25 16:35+0200\n"
|
||||
"Last-Translator: Yarema aka Knedlyk <yupadmin@gmail.com>\n"
|
||||
"Language-Team: Ukrainian <vdr@linuxtv.org>\n"
|
||||
@ -1080,6 +1080,9 @@ msgstr "Багатошвидкісний режим"
|
||||
msgid "Setup.Replay$Show replay mode"
|
||||
msgstr "Віображати режим перегляду"
|
||||
|
||||
msgid "Setup.Replay$Show remaining time"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.Replay$Resume ID"
|
||||
msgstr "ID продовження"
|
||||
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2012-01-11 13:47+0100\n"
|
||||
"POT-Creation-Date: 2012-01-14 14:06+0100\n"
|
||||
"PO-Revision-Date: 2009-09-23 23:50+0800\n"
|
||||
"Last-Translator: Nan Feng <nfgx@21cn.com>\n"
|
||||
"Language-Team: Chinese (simplified) <vdr@linuxtv.org>\n"
|
||||
@ -1083,6 +1083,9 @@ msgstr "媒体速度模式"
|
||||
msgid "Setup.Replay$Show replay mode"
|
||||
msgstr "显示回放模式"
|
||||
|
||||
msgid "Setup.Replay$Show remaining time"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.Replay$Resume ID"
|
||||
msgstr "恢复 ID"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user