diff options
-rw-r--r-- | CONTRIBUTORS | 4 | ||||
-rw-r--r-- | HISTORY | 4 | ||||
-rw-r--r-- | MANUAL | 1 | ||||
-rw-r--r-- | keys.c | 3 | ||||
-rw-r--r-- | keys.h | 3 | ||||
-rw-r--r-- | menu.c | 10 | ||||
-rw-r--r-- | po/ar.po | 5 | ||||
-rw-r--r-- | po/ca_ES.po | 5 | ||||
-rw-r--r-- | po/cs_CZ.po | 5 | ||||
-rw-r--r-- | po/da_DK.po | 5 | ||||
-rw-r--r-- | po/de_DE.po | 5 | ||||
-rw-r--r-- | po/el_GR.po | 5 | ||||
-rw-r--r-- | po/es_ES.po | 5 | ||||
-rw-r--r-- | po/et_EE.po | 5 | ||||
-rw-r--r-- | po/fi_FI.po | 5 | ||||
-rw-r--r-- | po/fr_FR.po | 5 | ||||
-rw-r--r-- | po/hr_HR.po | 5 | ||||
-rw-r--r-- | po/hu_HU.po | 5 | ||||
-rw-r--r-- | po/it_IT.po | 5 | ||||
-rw-r--r-- | po/lt_LT.po | 5 | ||||
-rw-r--r-- | po/mk_MK.po | 5 | ||||
-rw-r--r-- | po/nl_NL.po | 5 | ||||
-rw-r--r-- | po/nn_NO.po | 5 | ||||
-rw-r--r-- | po/pl_PL.po | 5 | ||||
-rw-r--r-- | po/pt_PT.po | 5 | ||||
-rw-r--r-- | po/ro_RO.po | 5 | ||||
-rw-r--r-- | po/ru_RU.po | 5 | ||||
-rw-r--r-- | po/sk_SK.po | 5 | ||||
-rw-r--r-- | po/sl_SI.po | 5 | ||||
-rw-r--r-- | po/sr_SR.po | 5 | ||||
-rw-r--r-- | po/sv_SE.po | 5 | ||||
-rw-r--r-- | po/tr_TR.po | 5 | ||||
-rw-r--r-- | po/uk_UA.po | 5 | ||||
-rw-r--r-- | po/zh_CN.po | 5 | ||||
-rw-r--r-- | vdr.c | 3 |
35 files changed, 136 insertions, 32 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index e4fbf2dc..34b9232e 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -3003,3 +3003,7 @@ Peter Mnster <pmlists@free.fr> Mike Hay <mike.hay@linenshorts.com> for reporting a problem with handling the case of the polarization character in channel definitions if no DiSEqC is used + +Stefan Hofmann <stefan.hofmann@t-online.de> + for suggesting to implement support for remote controls that only have a combined + "Play/Pause" key instead of separate keys for "Play" and "Pause" @@ -7380,3 +7380,7 @@ Video Disk Recorder Revision History (based on a suggestion by Lucian Muresan). - The SVDRP command HITK now discards any keys if the remote control is currently turned off (thanks to Alexander Hans). +- The new remote control key "Play/Pause" can be used with remote controls that don't + have separate keys for "Play" and "Pause", but rather have a single key for both + functions (thanks to Stefan Hofmann for suggesting to implement support for such + remote controls). @@ -39,6 +39,7 @@ Version 1.6 Info display information on the currently viewed programme or recording, or on the current item in a menu + Play/Pause combined key to resume or pause replay, or pause live video Play resume normal replay Pause pause replay or live video Stop stop replay @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: keys.c 2.1 2010/04/05 10:05:58 kls Exp $ + * $Id: keys.c 2.2 2012/12/04 12:52:52 kls Exp $ */ #include "keys.h" @@ -33,6 +33,7 @@ static tKey keyTable[] = { // "Up" and "Down" must be the first two keys! { k8, "8" }, { k9, "9" }, { kInfo, trNOOP("Key$Info") }, + { kPlayPause, trNOOP("Key$Play/Pause") }, { kPlay, trNOOP("Key$Play") }, { kPause, trNOOP("Key$Pause") }, { kStop, trNOOP("Key$Stop") }, @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: keys.h 2.1 2010/04/05 10:06:04 kls Exp $ + * $Id: keys.h 2.2 2012/12/04 12:51:25 kls Exp $ */ #ifndef __KEYS_H @@ -27,6 +27,7 @@ enum eKeys { // "Up" and "Down" must be the first two keys! kBlue, k0, k1, k2, k3, k4, k5, k6, k7, k8, k9, kInfo, + kPlayPause, // combined Play/Pause key kPlay, kPause, kStop, @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.c 2.66 2012/12/04 09:50:39 kls Exp $ + * $Id: menu.c 2.67 2012/12/04 13:17:49 kls Exp $ */ #include "menu.h" @@ -2454,6 +2454,7 @@ eOSState cMenuRecordings::ProcessKey(eKeys Key) if (state == osUnknown) { switch (Key) { + case kPlayPause: case kPlay: case kOk: return Play(); case kRed: return (helpKeys > 1 && RecordingCommands.Count()) ? Commands() : Play(); @@ -4685,6 +4686,7 @@ void cReplayControl::TimeSearchProcess(eKeys Key) timeSearchActive = false; } break; + case kPlayPause: case kPlay: case kUp: case kPause: @@ -4865,6 +4867,12 @@ eOSState cReplayControl::ProcessKey(eKeys Key) TimeSearchProcess(Key); return osContinue; } + if (Key == kPlayPause) { + bool Play, Forward; + int Speed; + GetReplayMode(Play, Forward, Speed); + Key = Play ? kPause : kPlay; + } bool DoShowMode = true; switch (int(Key)) { // Positioning: @@ -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-11-18 14:31+0100\n" +"POT-Creation-Date: 2012-12-04 14:36+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" @@ -417,6 +417,9 @@ msgstr "ازرق" msgid "Key$Info" msgstr "معلومات" +msgid "Key$Play/Pause" +msgstr "" + msgid "Key$Play" msgstr "عرض" diff --git a/po/ca_ES.po b/po/ca_ES.po index f08cd57b..b7b4a76f 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: <vdr-bugs@tvdr.de>\n" -"POT-Creation-Date: 2012-11-18 14:31+0100\n" +"POT-Creation-Date: 2012-12-04 14:36+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" @@ -413,6 +413,9 @@ msgstr "Blau" msgid "Key$Info" msgstr "Informaci" +msgid "Key$Play/Pause" +msgstr "" + msgid "Key$Play" msgstr "Reproduir" diff --git a/po/cs_CZ.po b/po/cs_CZ.po index 1a621026..06613418 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: <vdr-bugs@tvdr.de>\n" -"POT-Creation-Date: 2012-11-18 14:31+0100\n" +"POT-Creation-Date: 2012-12-04 14:36+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" @@ -412,6 +412,9 @@ msgstr "Modrý" msgid "Key$Info" msgstr "Info" +msgid "Key$Play/Pause" +msgstr "" + msgid "Key$Play" msgstr "Přehrát" diff --git a/po/da_DK.po b/po/da_DK.po index 597539ff..964cfc5e 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: <vdr-bugs@tvdr.de>\n" -"POT-Creation-Date: 2012-11-18 14:31+0100\n" +"POT-Creation-Date: 2012-12-04 14:36+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" @@ -410,6 +410,9 @@ msgstr "Bl" msgid "Key$Info" msgstr "Info" +msgid "Key$Play/Pause" +msgstr "" + msgid "Key$Play" msgstr "Afspil" diff --git a/po/de_DE.po b/po/de_DE.po index c958758c..e462a7f6 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: <vdr-bugs@tvdr.de>\n" -"POT-Creation-Date: 2012-11-18 14:31+0100\n" +"POT-Creation-Date: 2012-12-04 14:36+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" @@ -410,6 +410,9 @@ msgstr "Blau" msgid "Key$Info" msgstr "Info" +msgid "Key$Play/Pause" +msgstr "Wiedergabe/Pause" + msgid "Key$Play" msgstr "Wiedergabe" diff --git a/po/el_GR.po b/po/el_GR.po index 1347812d..738c90ee 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: <vdr-bugs@tvdr.de>\n" -"POT-Creation-Date: 2012-11-18 14:31+0100\n" +"POT-Creation-Date: 2012-12-04 14:36+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" @@ -410,6 +410,9 @@ msgstr "" msgid "Key$Info" msgstr "" +msgid "Key$Play/Pause" +msgstr "" + msgid "Key$Play" msgstr "" diff --git a/po/es_ES.po b/po/es_ES.po index 8e76063d..31fbec45 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: <vdr-bugs@tvdr.de>\n" -"POT-Creation-Date: 2012-11-18 14:31+0100\n" +"POT-Creation-Date: 2012-12-04 14:36+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" @@ -411,6 +411,9 @@ msgstr "Azul" msgid "Key$Info" msgstr "Info" +msgid "Key$Play/Pause" +msgstr "" + msgid "Key$Play" msgstr "Reproducir" diff --git a/po/et_EE.po b/po/et_EE.po index 12c1f259..20a3548c 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: <vdr-bugs@tvdr.de>\n" -"POT-Creation-Date: 2012-11-18 14:31+0100\n" +"POT-Creation-Date: 2012-12-04 14:36+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" @@ -410,6 +410,9 @@ msgstr "Sinine" msgid "Key$Info" msgstr "Info" +msgid "Key$Play/Pause" +msgstr "" + msgid "Key$Play" msgstr "Start" diff --git a/po/fi_FI.po b/po/fi_FI.po index 901328ae..9c1bdfe8 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: <vdr-bugs@tvdr.de>\n" -"POT-Creation-Date: 2012-11-18 14:31+0100\n" +"POT-Creation-Date: 2012-12-04 14:36+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" @@ -413,6 +413,9 @@ msgstr "Sininen" msgid "Key$Info" msgstr "Tiedot" +msgid "Key$Play/Pause" +msgstr "" + msgid "Key$Play" msgstr "Toista" diff --git a/po/fr_FR.po b/po/fr_FR.po index a0995aeb..b1e97310 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: <vdr-bugs@tvdr.de>\n" -"POT-Creation-Date: 2012-11-18 14:31+0100\n" +"POT-Creation-Date: 2012-12-04 14:36+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" @@ -416,6 +416,9 @@ msgstr "Bleu" msgid "Key$Info" msgstr "Info" +msgid "Key$Play/Pause" +msgstr "" + msgid "Key$Play" msgstr "Lecture" diff --git a/po/hr_HR.po b/po/hr_HR.po index 44cfd09f..2dcf4644 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: <vdr-bugs@tvdr.de>\n" -"POT-Creation-Date: 2012-11-18 14:31+0100\n" +"POT-Creation-Date: 2012-12-04 14:36+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" @@ -412,6 +412,9 @@ msgstr "Plavo" msgid "Key$Info" msgstr "Info" +msgid "Key$Play/Pause" +msgstr "" + msgid "Key$Play" msgstr "Start" diff --git a/po/hu_HU.po b/po/hu_HU.po index 30ab8ab6..5e17d1e4 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: <vdr-bugs@tvdr.de>\n" -"POT-Creation-Date: 2012-11-18 14:31+0100\n" +"POT-Creation-Date: 2012-12-04 14:36+0100\n" "PO-Revision-Date: 2012-01-02 11:54+0200\n" "Last-Translator: Istvn Fley <ifuley@tigercomp.ro>\n" "Language-Team: Hungarian <vdr@linuxtv.org>\n" @@ -413,6 +413,9 @@ msgstr "Kk" msgid "Key$Info" msgstr "Informci" +msgid "Key$Play/Pause" +msgstr "" + msgid "Key$Play" msgstr "Lejtszs" diff --git a/po/it_IT.po b/po/it_IT.po index 1258f23f..92b5526f 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: <vdr-bugs@tvdr.de>\n" -"POT-Creation-Date: 2012-11-18 14:31+0100\n" +"POT-Creation-Date: 2012-12-04 14:36+0100\n" "PO-Revision-Date: 2012-06-06 22:50+0100\n" "Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n" "Language-Team: Italian <vdr@linuxtv.org>\n" @@ -417,6 +417,9 @@ msgstr "Blu" msgid "Key$Info" msgstr "Info" +msgid "Key$Play/Pause" +msgstr "" + msgid "Key$Play" msgstr "Riproduci" diff --git a/po/lt_LT.po b/po/lt_LT.po index b53c7627..218e7546 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: <vdr-bugs@tvdr.de>\n" -"POT-Creation-Date: 2012-11-18 14:31+0100\n" +"POT-Creation-Date: 2012-12-04 14:36+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" @@ -410,6 +410,9 @@ msgstr "Mėlyna" msgid "Key$Info" msgstr "Info" +msgid "Key$Play/Pause" +msgstr "" + msgid "Key$Play" msgstr "Grona" diff --git a/po/mk_MK.po b/po/mk_MK.po index df552e0e..c65c9a5c 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: <vdr-bugs@tvdr.de>\n" -"POT-Creation-Date: 2012-11-19 13:33+0100\n" +"POT-Creation-Date: 2012-12-04 14:36+0100\n" "PO-Revision-Date: 2012-11-19 15:18+0100\n" "Last-Translator: Dimitar Petrovski <dimeptr@gmail.com>\n" "Language-Team: Macedonian <en@li.org>\n" @@ -411,6 +411,9 @@ msgstr "Сино" msgid "Key$Info" msgstr "Инфо" +msgid "Key$Play/Pause" +msgstr "" + msgid "Key$Play" msgstr "Старт" diff --git a/po/nl_NL.po b/po/nl_NL.po index 5e515c36..8c020fb2 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: <vdr-bugs@tvdr.de>\n" -"POT-Creation-Date: 2012-11-18 14:31+0100\n" +"POT-Creation-Date: 2012-12-04 14:36+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" @@ -414,6 +414,9 @@ msgstr "Blauw" msgid "Key$Info" msgstr "Info" +msgid "Key$Play/Pause" +msgstr "" + msgid "Key$Play" msgstr "Weergeven" diff --git a/po/nn_NO.po b/po/nn_NO.po index f3662605..5a4d648c 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: <vdr-bugs@tvdr.de>\n" -"POT-Creation-Date: 2012-11-18 14:31+0100\n" +"POT-Creation-Date: 2012-12-04 14:36+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" @@ -411,6 +411,9 @@ msgstr "Bl" msgid "Key$Info" msgstr "" +msgid "Key$Play/Pause" +msgstr "" + msgid "Key$Play" msgstr "" diff --git a/po/pl_PL.po b/po/pl_PL.po index fbe8a860..08210556 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: <vdr-bugs@tvdr.de>\n" -"POT-Creation-Date: 2012-11-18 14:31+0100\n" +"POT-Creation-Date: 2012-12-04 14:36+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" @@ -411,6 +411,9 @@ msgstr "Niebieski" msgid "Key$Info" msgstr "Info" +msgid "Key$Play/Pause" +msgstr "" + msgid "Key$Play" msgstr "Odtwrz" diff --git a/po/pt_PT.po b/po/pt_PT.po index d69e0690..0c5ca12f 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: <vdr-bugs@tvdr.de>\n" -"POT-Creation-Date: 2012-11-18 14:31+0100\n" +"POT-Creation-Date: 2012-12-04 14:36+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" @@ -411,6 +411,9 @@ msgstr "Azul" msgid "Key$Info" msgstr "Info" +msgid "Key$Play/Pause" +msgstr "" + msgid "Key$Play" msgstr "Reproduzir" diff --git a/po/ro_RO.po b/po/ro_RO.po index 03ae8f02..a5833dea 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: <vdr-bugs@tvdr.de>\n" -"POT-Creation-Date: 2012-11-18 14:31+0100\n" +"POT-Creation-Date: 2012-12-04 14:36+0100\n" "PO-Revision-Date: 2012-11-05 01:28+0100\n" "Last-Translator: Lucian Muresan <lucianm@users.sourceforge.net>\n" "Language-Team: Romanian <vdr@linuxtv.org>\n" @@ -413,6 +413,9 @@ msgstr "Albastru" msgid "Key$Info" msgstr "Info" +msgid "Key$Play/Pause" +msgstr "" + msgid "Key$Play" msgstr "Redare" diff --git a/po/ru_RU.po b/po/ru_RU.po index b58fd9a1..13510b64 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: <vdr-bugs@tvdr.de>\n" -"POT-Creation-Date: 2012-11-18 14:31+0100\n" +"POT-Creation-Date: 2012-12-04 14:36+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" @@ -411,6 +411,9 @@ msgstr "" msgid "Key$Info" msgstr "" +msgid "Key$Play/Pause" +msgstr "" + msgid "Key$Play" msgstr "" diff --git a/po/sk_SK.po b/po/sk_SK.po index ab5035e8..b59a86a2 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: <vdr-bugs@tvdr.de>\n" -"POT-Creation-Date: 2012-11-18 14:31+0100\n" +"POT-Creation-Date: 2012-12-04 14:36+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" @@ -410,6 +410,9 @@ msgstr "Modr" msgid "Key$Info" msgstr "Info" +msgid "Key$Play/Pause" +msgstr "" + msgid "Key$Play" msgstr "Prehra" diff --git a/po/sl_SI.po b/po/sl_SI.po index 9326d858..9ac44b0b 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: <vdr-bugs@tvdr.de>\n" -"POT-Creation-Date: 2012-11-18 14:31+0100\n" +"POT-Creation-Date: 2012-12-04 14:36+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" @@ -411,6 +411,9 @@ msgstr "Modra" msgid "Key$Info" msgstr "Info" +msgid "Key$Play/Pause" +msgstr "" + msgid "Key$Play" msgstr "Predvajaj" diff --git a/po/sr_SR.po b/po/sr_SR.po index c7b97d57..9ef0ef29 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: <vdr-bugs@tvdr.de>\n" -"POT-Creation-Date: 2012-11-18 14:31+0100\n" +"POT-Creation-Date: 2012-12-04 14:36+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" @@ -412,6 +412,9 @@ msgstr "Plavo" msgid "Key$Info" msgstr "Info" +msgid "Key$Play/Pause" +msgstr "" + msgid "Key$Play" msgstr "Start" diff --git a/po/sv_SE.po b/po/sv_SE.po index dc4d6208..702d273a 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: <vdr-bugs@tvdr.de>\n" -"POT-Creation-Date: 2012-11-18 14:31+0100\n" +"POT-Creation-Date: 2012-12-04 14:36+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" @@ -413,6 +413,9 @@ msgstr "Bl" msgid "Key$Info" msgstr "Info" +msgid "Key$Play/Pause" +msgstr "" + msgid "Key$Play" msgstr "Spela upp" diff --git a/po/tr_TR.po b/po/tr_TR.po index 1f619441..e3ca51d0 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: <vdr-bugs@tvdr.de>\n" -"POT-Creation-Date: 2012-11-18 14:31+0100\n" +"POT-Creation-Date: 2012-12-04 14:36+0100\n" "PO-Revision-Date: 2008-02-28 00:33+0100\n" "Last-Translator: Oktay Yolgeen <oktay_73@yahoo.de>\n" "Language-Team: Turkish <vdr@linuxtv.org>\n" @@ -410,6 +410,9 @@ msgstr "Mavi" msgid "Key$Info" msgstr "Bilgi" +msgid "Key$Play/Pause" +msgstr "" + msgid "Key$Play" msgstr "Gster" diff --git a/po/uk_UA.po b/po/uk_UA.po index 72fe84c5..e84bd342 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: <vdr-bugs@tvdr.de>\n" -"POT-Creation-Date: 2012-11-18 14:31+0100\n" +"POT-Creation-Date: 2012-12-04 14:36+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" @@ -410,6 +410,9 @@ msgstr "Синя" msgid "Key$Info" msgstr "Інфо" +msgid "Key$Play/Pause" +msgstr "" + msgid "Key$Play" msgstr "Програвання" diff --git a/po/zh_CN.po b/po/zh_CN.po index 56b2de0d..e88f9ead 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: <vdr-bugs@tvdr.de>\n" -"POT-Creation-Date: 2012-11-18 14:31+0100\n" +"POT-Creation-Date: 2012-12-04 14:36+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" @@ -413,6 +413,9 @@ msgstr "蓝" msgid "Key$Info" msgstr "信息" +msgid "Key$Play/Pause" +msgstr "" + msgid "Key$Play" msgstr "播放" @@ -22,7 +22,7 @@ * * The project's page is at http://www.tvdr.de * - * $Id: vdr.c 2.43 2012/12/03 13:24:39 kls Exp $ + * $Id: vdr.c 2.44 2012/12/04 12:55:02 kls Exp $ */ #include <getopt.h> @@ -1089,6 +1089,7 @@ int main(int argc, char *argv[]) key = kNone; break; // Pausing live video: + case kPlayPause: case kPause: if (!cControl::Control()) { DELETE_MENU; |