diff --git a/HISTORY b/HISTORY index 2f727ffd..343a930c 100644 --- a/HISTORY +++ b/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. diff --git a/MANUAL b/MANUAL index 3e3adad3..e7431493 100644 --- a/MANUAL +++ b/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 diff --git a/config.c b/config.c index a3f67246..9015a531 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 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); diff --git a/config.h b/config.h index 97e6243d..d27afd9c 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 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; diff --git a/menu.c b/menu.c index 9167f47b..eb07c81a 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 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(); diff --git a/po/ar.po b/po/ar.po index 7482b22c..c656ab8c 100644 --- a/po/ar.po +++ b/po/ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.7.0\n" "Report-Msgid-Bugs-To: \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 \n" "Language-Team: Arabic \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 "رقم المواصلة" diff --git a/po/ca_ES.po b/po/ca_ES.po index 86ff70f7..c31d5195 100644 --- a/po/ca_ES.po +++ b/po/ca_ES.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.6.0\n" "Report-Msgid-Bugs-To: \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 \n" "Language-Team: Catalan \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" diff --git a/po/cs_CZ.po b/po/cs_CZ.po index a2cf9504..f55f0617 100644 --- a/po/cs_CZ.po +++ b/po/cs_CZ.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.7.14\n" "Report-Msgid-Bugs-To: \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ý \n" "Language-Team: Czech \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í" diff --git a/po/da_DK.po b/po/da_DK.po index ca99eaa7..f94bab2a 100644 --- a/po/da_DK.po +++ b/po/da_DK.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.6.0\n" "Report-Msgid-Bugs-To: \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 \n" "Language-Team: Danish \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" diff --git a/po/de_DE.po b/po/de_DE.po index 100c3ef5..0436cc72 100644 --- a/po/de_DE.po +++ b/po/de_DE.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.6.0\n" "Report-Msgid-Bugs-To: \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 \n" "Language-Team: German \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" diff --git a/po/el_GR.po b/po/el_GR.po index 244189d0..36923f06 100644 --- a/po/el_GR.po +++ b/po/el_GR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.6.0\n" "Report-Msgid-Bugs-To: \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 \n" "Language-Team: Greek \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 " diff --git a/po/es_ES.po b/po/es_ES.po index 968bf282..ef943984 100644 --- a/po/es_ES.po +++ b/po/es_ES.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.6.0\n" "Report-Msgid-Bugs-To: \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 \n" "Language-Team: Spanish \n" @@ -1081,6 +1081,9 @@ msgstr "Modo multi-velocidad" msgid "Setup.Replay$Show replay mode" msgstr "Mostrar modo de reproduccin" +msgid "Setup.Replay$Show remaining time" +msgstr "" + msgid "Setup.Replay$Resume ID" msgstr "ID de continuacin" diff --git a/po/et_EE.po b/po/et_EE.po index 7e6a1c99..70129fe0 100644 --- a/po/et_EE.po +++ b/po/et_EE.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.6.0\n" "Report-Msgid-Bugs-To: \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 \n" "Language-Team: Estonian \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 "Jtkamise ID" diff --git a/po/fi_FI.po b/po/fi_FI.po index 91128bfa..e4336027 100644 --- a/po/fi_FI.po +++ b/po/fi_FI.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.6.0\n" "Report-Msgid-Bugs-To: \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 \n" "Language-Team: Finnish \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" diff --git a/po/fr_FR.po b/po/fr_FR.po index c65bdba5..477dffe8 100644 --- a/po/fr_FR.po +++ b/po/fr_FR.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.6.0\n" "Report-Msgid-Bugs-To: \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 \n" "Language-Team: French \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" diff --git a/po/hr_HR.po b/po/hr_HR.po index 50720334..0bf055e7 100644 --- a/po/hr_HR.po +++ b/po/hr_HR.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.6.0\n" "Report-Msgid-Bugs-To: \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 \n" "Language-Team: Croatian \n" @@ -1082,6 +1082,9 @@ msgstr "Vi msgid "Setup.Replay$Show replay mode" msgstr "Prikai nain prikazivanja" +msgid "Setup.Replay$Show remaining time" +msgstr "" + msgid "Setup.Replay$Resume ID" msgstr "ID nastavka" diff --git a/po/hu_HU.po b/po/hu_HU.po index fb39ac02..0c56f85e 100644 --- a/po/hu_HU.po +++ b/po/hu_HU.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.6.0\n" "Report-Msgid-Bugs-To: \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: Istvn Fley \n" "Language-Team: Hungarian \n" @@ -1084,6 +1084,9 @@ msgstr "T msgid "Setup.Replay$Show replay mode" msgstr "Lejtszs feltntetse" +msgid "Setup.Replay$Show remaining time" +msgstr "" + msgid "Setup.Replay$Resume ID" msgstr "Lejtszs ID" diff --git a/po/it_IT.po b/po/it_IT.po index 95318b32..3f2f5f9d 100644 --- a/po/it_IT.po +++ b/po/it_IT.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.6.0\n" "Report-Msgid-Bugs-To: \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 \n" "Language-Team: Italian \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" diff --git a/po/lt_LT.po b/po/lt_LT.po index 2bf2cde5..eaa98d99 100644 --- a/po/lt_LT.po +++ b/po/lt_LT.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.7.16\n" "Report-Msgid-Bugs-To: \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 \n" "Language-Team: Lithuanian \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" diff --git a/po/mk_MK.po b/po/mk_MK.po index 2683dc85..eef92c2e 100644 --- a/po/mk_MK.po +++ b/po/mk_MK.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR-1.7.14\n" "Report-Msgid-Bugs-To: \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 \n" "Language-Team: Macedonian \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 на продолжеток" diff --git a/po/nl_NL.po b/po/nl_NL.po index a88ecfd1..8b0da153 100644 --- a/po/nl_NL.po +++ b/po/nl_NL.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.6.0\n" "Report-Msgid-Bugs-To: \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 \n" "Language-Team: Dutch \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" diff --git a/po/nn_NO.po b/po/nn_NO.po index e7348adb..fdb79819 100644 --- a/po/nn_NO.po +++ b/po/nn_NO.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.6.0\n" "Report-Msgid-Bugs-To: \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 \n" "Language-Team: Norwegian Nynorsk \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" diff --git a/po/pl_PL.po b/po/pl_PL.po index 1fad557a..5f02ee8d 100644 --- a/po/pl_PL.po +++ b/po/pl_PL.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.6.0\n" "Report-Msgid-Bugs-To: \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 \n" "Language-Team: Polish \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" diff --git a/po/pt_PT.po b/po/pt_PT.po index 7a49ac2c..e5684597 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.7.15\n" "Report-Msgid-Bugs-To: \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 \n" "Language-Team: Portuguese \n" @@ -1081,6 +1081,9 @@ msgstr "Modo multi velocidade" msgid "Setup.Replay$Show replay mode" msgstr "Mostrar modo de reproduo" +msgid "Setup.Replay$Show remaining time" +msgstr "" + msgid "Setup.Replay$Resume ID" msgstr "ID de resumo" diff --git a/po/ro_RO.po b/po/ro_RO.po index 59ee967b..285622f1 100644 --- a/po/ro_RO.po +++ b/po/ro_RO.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.7.12\n" "Report-Msgid-Bugs-To: \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 \n" "Language-Team: Romanian \n" @@ -1083,6 +1083,9 @@ msgstr "Mod multi-vitez msgid "Setup.Replay$Show replay mode" msgstr "Afieaz redarea" +msgid "Setup.Replay$Show remaining time" +msgstr "" + msgid "Setup.Replay$Resume ID" msgstr "Identificator continuare" diff --git a/po/ru_RU.po b/po/ru_RU.po index ac024d95..c14d7f05 100644 --- a/po/ru_RU.po +++ b/po/ru_RU.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.6.0\n" "Report-Msgid-Bugs-To: \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 \n" "Language-Team: Russian \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 " diff --git a/po/sk_SK.po b/po/sk_SK.po index af14119b..3f0ea60f 100644 --- a/po/sk_SK.po +++ b/po/sk_SK.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.7.16\n" "Report-Msgid-Bugs-To: \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 \n" "Language-Team: Slovak \n" @@ -1080,6 +1080,9 @@ msgstr "Viac r msgid "Setup.Replay$Show replay mode" msgstr "Zobrazi spsob prehrvania" +msgid "Setup.Replay$Show remaining time" +msgstr "" + msgid "Setup.Replay$Resume ID" msgstr "ID obnovenie" diff --git a/po/sl_SI.po b/po/sl_SI.po index 2adf6298..75d32c70 100644 --- a/po/sl_SI.po +++ b/po/sl_SI.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.6.0\n" "Report-Msgid-Bugs-To: \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 \n" "Language-Team: Slovenian \n" @@ -1081,6 +1081,9 @@ msgstr "Re msgid "Setup.Replay$Show replay mode" msgstr "Prikai reim predvajanja" +msgid "Setup.Replay$Show remaining time" +msgstr "" + msgid "Setup.Replay$Resume ID" msgstr "ID za predvajanje" diff --git a/po/sr_SR.po b/po/sr_SR.po index bb610467..743b1c63 100644 --- a/po/sr_SR.po +++ b/po/sr_SR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.7.1\n" "Report-Msgid-Bugs-To: \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 \n" "Language-Team: Serbian \n" @@ -1103,6 +1103,9 @@ msgstr "Vi msgid "Setup.Replay$Show replay mode" msgstr "Prikai reim reprodukcije" +msgid "Setup.Replay$Show remaining time" +msgstr "" + msgid "Setup.Replay$Resume ID" msgstr "ID nastavka" diff --git a/po/sv_SE.po b/po/sv_SE.po index b90dd200..57151a1c 100644 --- a/po/sv_SE.po +++ b/po/sv_SE.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.6.0\n" "Report-Msgid-Bugs-To: \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 \n" "Language-Team: Swedish \n" @@ -1083,6 +1083,9 @@ msgstr "Multispeed mode" msgid "Setup.Replay$Show replay mode" msgstr "Visa uppspelningslge" +msgid "Setup.Replay$Show remaining time" +msgstr "" + msgid "Setup.Replay$Resume ID" msgstr "teruppta ID" diff --git a/po/tr_TR.po b/po/tr_TR.po index 90d229c4..78bde2cd 100644 --- a/po/tr_TR.po +++ b/po/tr_TR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.6.0\n" "Report-Msgid-Bugs-To: \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 Yolgeen \n" "Language-Team: Turkish \n" @@ -1080,6 +1080,9 @@ msgstr "Katl msgid "Setup.Replay$Show replay mode" msgstr "Gsteri bilgisi" +msgid "Setup.Replay$Show remaining time" +msgstr "" + msgid "Setup.Replay$Resume ID" msgstr "Gsteri ID'si" diff --git a/po/uk_UA.po b/po/uk_UA.po index 444bc71d..73b1c4ad 100644 --- a/po/uk_UA.po +++ b/po/uk_UA.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.7.7\n" "Report-Msgid-Bugs-To: \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 \n" "Language-Team: Ukrainian \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 продовження" diff --git a/po/zh_CN.po b/po/zh_CN.po index 67825e88..81b381b1 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.6.0\n" "Report-Msgid-Bugs-To: \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 \n" "Language-Team: Chinese (simplified) \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"