diff --git a/CONTRIBUTORS b/CONTRIBUTORS index db232e5c..90dce69d 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -2550,3 +2550,6 @@ Matthieu Castet Francesco Saverio Schiavarelli for reporting a problem with channels that have some encrypted components that VDR doesn't use + +Matti Lehtimki + for implementing the setup option "Miscellaneous/Channels wrap" diff --git a/HISTORY b/HISTORY index a29ba7f8..73f0da91 100644 --- a/HISTORY +++ b/HISTORY @@ -6291,3 +6291,6 @@ Video Disk Recorder Revision History by Rolf Ahrenberg). - cPalette::ClosestColor() now treats fully transparent colors as "equal"; improved cDvbSpuBitmap::getMinBpp() (thanks to Matthieu Castet and Johann Friedrichs). +- The new setup option "Miscellaneous/Channels wrap" controls whether the current + channel wraps around the beginning or end of the channel list when zapping (thanks + to Matti Lehtimki). diff --git a/MANUAL b/MANUAL index 8cf7639c..405f6a8e 100644 --- a/MANUAL +++ b/MANUAL @@ -877,6 +877,11 @@ Version 1.6 VDR was stopped will be used. The valid range is from 0 (silent) to 255 (loudest). + Channels wrap = no During zapping with the "Up" and "Down" keys (or the + "Channel+" and "Channel-" keys) the current channel will + wrap around the beginning or end of the channel list if + this parameter is set to 'yes'. + Emergency exit = yes If, for some reason, a recording fails because the video data stream is broken, or the CAM doesn't decrypt etc., VDR automatically exits in order to allow the surrounding diff --git a/config.c b/config.c index 9c73e872..494eb3dc 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.8 2010/01/17 12:22:56 kls Exp $ + * $Id: config.c 2.9 2010/01/17 15:08:32 kls Exp $ */ #include "config.h" @@ -459,6 +459,7 @@ cSetup::cSetup(void) CurrentDolby = 0; InitialChannel = 0; InitialVolume = -1; + ChannelsWrap = 0; EmergencyExit = 1; } @@ -646,6 +647,7 @@ bool cSetup::Parse(const char *Name, const char *Value) else if (!strcasecmp(Name, "CurrentDolby")) CurrentDolby = atoi(Value); else if (!strcasecmp(Name, "InitialChannel")) InitialChannel = atoi(Value); else if (!strcasecmp(Name, "InitialVolume")) InitialVolume = atoi(Value); + else if (!strcasecmp(Name, "ChannelsWrap")) ChannelsWrap = atoi(Value); else if (!strcasecmp(Name, "EmergencyExit")) EmergencyExit = atoi(Value); else return false; @@ -738,6 +740,7 @@ bool cSetup::Save(void) Store("CurrentDolby", CurrentDolby); Store("InitialChannel", InitialChannel); Store("InitialVolume", InitialVolume); + Store("ChannelsWrap", ChannelsWrap); Store("EmergencyExit", EmergencyExit); Sort(); diff --git a/config.h b/config.h index 68354b80..37e11a41 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.19 2010/01/17 12:22:21 kls Exp $ + * $Id: config.h 2.20 2010/01/17 15:08:32 kls Exp $ */ #ifndef __CONFIG_H @@ -303,6 +303,7 @@ public: int CurrentDolby; int InitialChannel; int InitialVolume; + int ChannelsWrap; int EmergencyExit; int __EndData__; cSetup(void); diff --git a/menu.c b/menu.c index f37ee25e..8ccd728c 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.11 2010/01/17 12:08:03 kls Exp $ + * $Id: menu.c 2.12 2010/01/17 15:10:07 kls Exp $ */ #include "menu.h" @@ -3039,6 +3039,7 @@ cMenuSetupMisc::cMenuSetupMisc(void) Add(new cMenuEditIntItem( tr("Setup.Miscellaneous$Channel entry timeout (ms)"), &data.ChannelEntryTimeout, 0)); Add(new cMenuEditChanItem(tr("Setup.Miscellaneous$Initial channel"), &data.InitialChannel, tr("Setup.Miscellaneous$as before"))); Add(new cMenuEditIntItem( tr("Setup.Miscellaneous$Initial volume"), &data.InitialVolume, -1, 255, tr("Setup.Miscellaneous$as before"))); + Add(new cMenuEditBoolItem(tr("Setup.Miscellaneous$Channels wrap"), &data.ChannelsWrap)); Add(new cMenuEditBoolItem(tr("Setup.Miscellaneous$Emergency exit"), &data.EmergencyExit)); } @@ -3538,6 +3539,8 @@ cChannel *cDisplayChannel::NextAvailableChannel(cChannel *Channel, int Direction if (Direction) { while (Channel) { Channel = Direction > 0 ? Channels.Next(Channel) : Channels.Prev(Channel); + if (!Channel && Setup.ChannelsWrap) + Channel = Direction > 0 ? Channels.First() : Channels.Last(); if (Channel && !Channel->GroupSep() && cDevice::GetDevice(Channel, 0, true)) return Channel; } diff --git a/po/ca_ES.po b/po/ca_ES.po index ff78d0e4..fcdf6724 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: 2010-01-17 13:05+0100\n" +"POT-Creation-Date: 2010-01-17 16:18+0100\n" "PO-Revision-Date: 2008-03-02 19:02+0100\n" "Last-Translator: Luca Olivetti \n" "Language-Team: Catalanian\n" @@ -1078,6 +1078,9 @@ msgstr "anterior" msgid "Setup.Miscellaneous$Initial volume" msgstr "Volum inicial" +msgid "Setup.Miscellaneous$Channels wrap" +msgstr "" + msgid "Setup.Miscellaneous$Emergency exit" msgstr "Sortida d'emergncia" diff --git a/po/cs_CZ.po b/po/cs_CZ.po index 25efb50f..3bbd6eb3 100644 --- a/po/cs_CZ.po +++ b/po/cs_CZ.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-17 13:05+0100\n" +"POT-Creation-Date: 2010-01-17 16:18+0100\n" "PO-Revision-Date: 2008-02-28 15:00+0200\n" "Last-Translator: Vladimr Brta , Ji Dobr \n" "Language-Team: Czech\n" @@ -1076,6 +1076,9 @@ msgstr "jako naposledy" msgid "Setup.Miscellaneous$Initial volume" msgstr "Hlasitost po sputn" +msgid "Setup.Miscellaneous$Channels wrap" +msgstr "" + msgid "Setup.Miscellaneous$Emergency exit" msgstr "Nouzov ukonen" diff --git a/po/da_DK.po b/po/da_DK.po index 41ca40f0..fbad9094 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: 2010-01-17 13:05+0100\n" +"POT-Creation-Date: 2010-01-17 16:18+0100\n" "PO-Revision-Date: 2007-08-12 14:17+0200\n" "Last-Translator: Mogens Elneff \n" "Language-Team: Danish\n" @@ -1075,6 +1075,9 @@ msgstr "som f msgid "Setup.Miscellaneous$Initial volume" msgstr "Lydstyrke ved opstart" +msgid "Setup.Miscellaneous$Channels wrap" +msgstr "" + msgid "Setup.Miscellaneous$Emergency exit" msgstr "Ndudgang" diff --git a/po/de_DE.po b/po/de_DE.po index 480ff610..ad6401b5 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: 2010-01-17 13:05+0100\n" +"POT-Creation-Date: 2010-01-17 16:18+0100\n" "PO-Revision-Date: 2010-01-16 16:46+0100\n" "Last-Translator: Klaus Schmidinger \n" "Language-Team: German\n" @@ -1075,6 +1075,9 @@ msgstr "wie vorher" msgid "Setup.Miscellaneous$Initial volume" msgstr "Lautstrke beim Einschalten" +msgid "Setup.Miscellaneous$Channels wrap" +msgstr "Rundum zappen" + msgid "Setup.Miscellaneous$Emergency exit" msgstr "Notausstieg" diff --git a/po/el_GR.po b/po/el_GR.po index ff04e274..e8382b86 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: 2010-01-17 13:05+0100\n" +"POT-Creation-Date: 2010-01-17 16:18+0100\n" "PO-Revision-Date: 2007-08-12 14:17+0200\n" "Last-Translator: Dimitrios Dimitrakos \n" "Language-Team: Greek\n" @@ -1075,6 +1075,9 @@ msgstr "" msgid "Setup.Miscellaneous$Initial volume" msgstr "" +msgid "Setup.Miscellaneous$Channels wrap" +msgstr "" + msgid "Setup.Miscellaneous$Emergency exit" msgstr "" diff --git a/po/es_ES.po b/po/es_ES.po index bb57d3f7..d2bf5b00 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: 2010-01-17 13:05+0100\n" +"POT-Creation-Date: 2010-01-17 16:18+0100\n" "PO-Revision-Date: 2008-03-02 19:02+0100\n" "Last-Translator: Luca Olivetti \n" "Language-Team: Spanish\n" @@ -1076,6 +1076,9 @@ msgstr "anterior" msgid "Setup.Miscellaneous$Initial volume" msgstr "Volumen inicial" +msgid "Setup.Miscellaneous$Channels wrap" +msgstr "" + msgid "Setup.Miscellaneous$Emergency exit" msgstr "Salida de emergencia" diff --git a/po/et_EE.po b/po/et_EE.po index 37d42fae..97e2aeec 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: 2010-01-17 13:05+0100\n" +"POT-Creation-Date: 2010-01-17 16:18+0100\n" "PO-Revision-Date: 2007-08-12 14:17+0200\n" "Last-Translator: Arthur Konovalov \n" "Language-Team: Estonian\n" @@ -1075,6 +1075,9 @@ msgstr "endine" msgid "Setup.Miscellaneous$Initial volume" msgstr "Helitugevus kivitamisel" +msgid "Setup.Miscellaneous$Channels wrap" +msgstr "" + msgid "Setup.Miscellaneous$Emergency exit" msgstr "Hdavljumine" diff --git a/po/fi_FI.po b/po/fi_FI.po index 012e2f38..916b51e4 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: 2010-01-17 13:05+0100\n" +"POT-Creation-Date: 2010-01-17 16:18+0100\n" "PO-Revision-Date: 2007-08-15 15:52+0200\n" "Last-Translator: Rolf Ahrenberg \n" "Language-Team: Finnish\n" @@ -1078,6 +1078,9 @@ msgstr "edellinen" msgid "Setup.Miscellaneous$Initial volume" msgstr "nenvoimakkuus kynnistettess" +msgid "Setup.Miscellaneous$Channels wrap" +msgstr "" + msgid "Setup.Miscellaneous$Emergency exit" msgstr "Kyt htsammutusta" diff --git a/po/fr_FR.po b/po/fr_FR.po index 25d13e19..4c4dcce0 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: 2010-01-17 13:05+0100\n" +"POT-Creation-Date: 2010-01-17 16:18+0100\n" "PO-Revision-Date: 2008-02-27 18:14+0100\n" "Last-Translator: Jean-Claude Repetto \n" "Language-Team: French\n" @@ -1081,6 +1081,9 @@ msgstr "comme avant" msgid "Setup.Miscellaneous$Initial volume" msgstr "Volume initial" +msgid "Setup.Miscellaneous$Channels wrap" +msgstr "" + msgid "Setup.Miscellaneous$Emergency exit" msgstr "Arrt d'urgence" diff --git a/po/hr_HR.po b/po/hr_HR.po index 74cd6397..b7cf5a0f 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: 2010-01-17 13:05+0100\n" +"POT-Creation-Date: 2010-01-17 16:18+0100\n" "PO-Revision-Date: 2008-03-17 19:00+0100\n" "Last-Translator: Adrian Caval \n" "Language-Team: Croatian\n" @@ -1077,6 +1077,9 @@ msgstr "kao prethodno" msgid "Setup.Miscellaneous$Initial volume" msgstr "Poetna jaina zvuka" +msgid "Setup.Miscellaneous$Channels wrap" +msgstr "" + msgid "Setup.Miscellaneous$Emergency exit" msgstr "Izlaz u sluaju nude" diff --git a/po/hu_HU.po b/po/hu_HU.po index 5238da22..d09c8dd4 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: 2010-01-17 13:05+0100\n" +"POT-Creation-Date: 2010-01-17 16:18+0100\n" "PO-Revision-Date: 2007-12-01 21:42+0200\n" "Last-Translator: Istvn Fley \n" "Language-Team: Hungarian\n" @@ -1078,6 +1078,9 @@ msgstr "ahogy az el msgid "Setup.Miscellaneous$Initial volume" msgstr "Hanger a bekapcsolsnl" +msgid "Setup.Miscellaneous$Channels wrap" +msgstr "" + msgid "Setup.Miscellaneous$Emergency exit" msgstr "" diff --git a/po/it_IT.po b/po/it_IT.po index 290e685f..3a8f2e22 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: 2010-01-03 15:10+0100\n" +"POT-Creation-Date: 2010-01-17 16:18+0100\n" "PO-Revision-Date: 2010-01-12 23:53+0100\n" "Last-Translator: Diego Pierotto \n" "Language-Team: Italian\n" @@ -1082,6 +1082,9 @@ msgstr "come prima" msgid "Setup.Miscellaneous$Initial volume" msgstr "Volume iniziale" +msgid "Setup.Miscellaneous$Channels wrap" +msgstr "" + msgid "Setup.Miscellaneous$Emergency exit" msgstr "Uscita di emergenza" diff --git a/po/lt_LT.po b/po/lt_LT.po index 19075d7e..93583c57 100644 --- a/po/lt_LT.po +++ b/po/lt_LT.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.7.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-17 13:05+0100\n" +"POT-Creation-Date: 2010-01-17 16:18+0100\n" "PO-Revision-Date: 2009-10-17 14:19+0200\n" "Last-Translator: Valdemaras Pipiras \n" "Language-Team: Lithuanian\n" @@ -1075,6 +1075,9 @@ msgstr "kaip anksčiau" msgid "Setup.Miscellaneous$Initial volume" msgstr "Garsas įjungimo metu" +msgid "Setup.Miscellaneous$Channels wrap" +msgstr "" + msgid "Setup.Miscellaneous$Emergency exit" msgstr "Avarinis išėjimas" diff --git a/po/nl_NL.po b/po/nl_NL.po index 1bb8b50d..fdfaf8d1 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: 2010-01-17 13:05+0100\n" +"POT-Creation-Date: 2010-01-17 16:18+0100\n" "PO-Revision-Date: 2008-02-26 17:20+0100\n" "Last-Translator: Johan Schuring \n" "Language-Team: Dutch\n" @@ -1079,6 +1079,9 @@ msgstr "zoals eerder" msgid "Setup.Miscellaneous$Initial volume" msgstr "Opstartvolume" +msgid "Setup.Miscellaneous$Channels wrap" +msgstr "" + msgid "Setup.Miscellaneous$Emergency exit" msgstr "Nooduitgang" diff --git a/po/nn_NO.po b/po/nn_NO.po index 99950ea7..1f50117f 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: 2010-01-17 13:05+0100\n" +"POT-Creation-Date: 2010-01-17 16:18+0100\n" "PO-Revision-Date: 2007-08-12 14:17+0200\n" "Last-Translator: Truls Slevigen \n" "Language-Team: Norwegian\n" @@ -1076,6 +1076,9 @@ msgstr "" msgid "Setup.Miscellaneous$Initial volume" msgstr "" +msgid "Setup.Miscellaneous$Channels wrap" +msgstr "" + msgid "Setup.Miscellaneous$Emergency exit" msgstr "" diff --git a/po/pl_PL.po b/po/pl_PL.po index b22a508a..038d058a 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: 2010-01-17 13:05+0100\n" +"POT-Creation-Date: 2010-01-17 16:18+0100\n" "PO-Revision-Date: 2008-03-09 12:59+0100\n" "Last-Translator: Michael Rakowski \n" "Language-Team: Polish\n" @@ -1076,6 +1076,9 @@ msgstr "jak ostatnio" msgid "Setup.Miscellaneous$Initial volume" msgstr "Pocztkowa gono" +msgid "Setup.Miscellaneous$Channels wrap" +msgstr "" + msgid "Setup.Miscellaneous$Emergency exit" msgstr "Wyjcie awaryjne" diff --git a/po/pt_PT.po b/po/pt_PT.po index 07163ec5..e409581c 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-17 13:05+0100\n" +"POT-Creation-Date: 2010-01-17 16:18+0100\n" "PO-Revision-Date: 2008-03-18 17:04+0100\n" "Last-Translator: anonymous\n" "Language-Team: Portuguese\n" @@ -1075,6 +1075,9 @@ msgstr "Como estava" msgid "Setup.Miscellaneous$Initial volume" msgstr "Volume inicial" +msgid "Setup.Miscellaneous$Channels wrap" +msgstr "" + msgid "Setup.Miscellaneous$Emergency exit" msgstr "Sada de emergncia" diff --git a/po/ro_RO.po b/po/ro_RO.po index 43ab3ad3..f52a7d8b 100644 --- a/po/ro_RO.po +++ b/po/ro_RO.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-17 13:05+0100\n" +"POT-Creation-Date: 2010-01-17 16:18+0100\n" "PO-Revision-Date: 2008-02-25 00:39+0100\n" "Last-Translator: Lucian Muresan \n" "Language-Team: Romanian\n" @@ -1078,6 +1078,9 @@ msgstr "ca mai msgid "Setup.Miscellaneous$Initial volume" msgstr "Volumul la pornire" +msgid "Setup.Miscellaneous$Channels wrap" +msgstr "" + msgid "Setup.Miscellaneous$Emergency exit" msgstr "Oprire de urgen" diff --git a/po/ru_RU.po b/po/ru_RU.po index 3bd68e5e..c6d6aca0 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: 2010-01-17 13:05+0100\n" +"POT-Creation-Date: 2010-01-17 16:18+0100\n" "PO-Revision-Date: 2008-12-15 14:37+0100\n" "Last-Translator: Oleg Roitburd \n" "Language-Team: Russian\n" @@ -1076,6 +1076,9 @@ msgstr " msgid "Setup.Miscellaneous$Initial volume" msgstr " " +msgid "Setup.Miscellaneous$Channels wrap" +msgstr "" + msgid "Setup.Miscellaneous$Emergency exit" msgstr " " diff --git a/po/sk_SK.po b/po/sk_SK.po index eb2e2b40..c66132ad 100644 --- a/po/sk_SK.po +++ b/po/sk_SK.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-01-17 13:05+0100\n" +"POT-Creation-Date: 2010-01-17 16:18+0100\n" "PO-Revision-Date: 2009-09-30 12:50+0100\n" "Last-Translator: Milan Hrala \n" "Language-Team: Slovak\n" @@ -1076,6 +1076,9 @@ msgstr "ako naposledy" msgid "Setup.Miscellaneous$Initial volume" msgstr "Hlasitos po spusten" +msgid "Setup.Miscellaneous$Channels wrap" +msgstr "" + msgid "Setup.Miscellaneous$Emergency exit" msgstr "Ndzov ukonenie" diff --git a/po/sl_SI.po b/po/sl_SI.po index 25738654..2c20440e 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: 2010-01-17 13:05+0100\n" +"POT-Creation-Date: 2010-01-17 16:18+0100\n" "PO-Revision-Date: 2008-02-28 19:44+0100\n" "Last-Translator: Matjaz Thaler \n" "Language-Team: Slovenian\n" @@ -1076,6 +1076,9 @@ msgstr "kot prej" msgid "Setup.Miscellaneous$Initial volume" msgstr "Privzeta glasnost" +msgid "Setup.Miscellaneous$Channels wrap" +msgstr "" + msgid "Setup.Miscellaneous$Emergency exit" msgstr "Izhod v sili" diff --git a/po/sv_SE.po b/po/sv_SE.po index b958e4b7..4ac9a0f5 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: 2010-01-17 13:05+0100\n" +"POT-Creation-Date: 2010-01-17 16:18+0100\n" "PO-Revision-Date: 2008-03-12 18:25+0100\n" "Last-Translator: Magnus Andersson \n" "Language-Team: Swedish\n" @@ -1078,6 +1078,9 @@ msgstr "som f msgid "Setup.Miscellaneous$Initial volume" msgstr "Ljudstyrka vid uppstart" +msgid "Setup.Miscellaneous$Channels wrap" +msgstr "" + msgid "Setup.Miscellaneous$Emergency exit" msgstr "Ofrutsedd avslutning" diff --git a/po/tr_TR.po b/po/tr_TR.po index d0997a72..02a96424 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: 2010-01-17 13:05+0100\n" +"POT-Creation-Date: 2010-01-17 16:18+0100\n" "PO-Revision-Date: 2008-02-28 00:33+0100\n" "Last-Translator: Oktay Yolgeen \n" "Language-Team: Turkish\n" @@ -1075,6 +1075,9 @@ msgstr " msgid "Setup.Miscellaneous$Initial volume" msgstr "Aldaki ses" +msgid "Setup.Miscellaneous$Channels wrap" +msgstr "" + msgid "Setup.Miscellaneous$Emergency exit" msgstr "Acil ck" diff --git a/po/uk_UA.po b/po/uk_UA.po index a84196c7..7e3010c0 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: 2010-01-17 13:05+0100\n" +"POT-Creation-Date: 2010-01-17 16:18+0100\n" "PO-Revision-Date: 2009-05-31 13:17+0200\n" "Last-Translator: Yarema aka Knedlyk \n" "Language-Team: Ukrainian\n" @@ -1075,6 +1075,9 @@ msgstr "як раніше" msgid "Setup.Miscellaneous$Initial volume" msgstr "Гучність при включенні" +msgid "Setup.Miscellaneous$Channels wrap" +msgstr "" + msgid "Setup.Miscellaneous$Emergency exit" msgstr "Аварійний вихід" diff --git a/po/zh_CN.po b/po/zh_CN.po index 0921d90e..1d12f71e 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: 2010-01-17 13:05+0100\n" +"POT-Creation-Date: 2010-01-17 16:18+0100\n" "PO-Revision-Date: 2009-09-23 23:50+0800\n" "Last-Translator: Nan Feng \n" "Language-Team: Chinese\n" @@ -1078,6 +1078,9 @@ msgstr "之前" msgid "Setup.Miscellaneous$Initial volume" msgstr "初始化声音" +msgid "Setup.Miscellaneous$Channels wrap" +msgstr "" + msgid "Setup.Miscellaneous$Emergency exit" msgstr "突发事件退出"