mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Implemented Play/Pause key
This commit is contained in:
parent
85b9c2f370
commit
551b46cab1
@ -3003,3 +3003,7 @@ Peter M
|
||||
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"
|
||||
|
4
HISTORY
4
HISTORY
@ -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).
|
||||
|
1
MANUAL
1
MANUAL
@ -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
|
||||
|
3
keys.c
3
keys.c
@ -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") },
|
||||
|
3
keys.h
3
keys.h
@ -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,
|
||||
|
10
menu.c
10
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.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:
|
||||
|
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-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 "عرض"
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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 "ÁíáðáñáãùãÞ"
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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: István Füley <ifuley@tigercomp.ro>\n"
|
||||
"Language-Team: Hungarian <vdr@linuxtv.org>\n"
|
||||
@ -413,6 +413,9 @@ msgstr "K
|
||||
msgid "Key$Info"
|
||||
msgstr "Információ"
|
||||
|
||||
msgid "Key$Play/Pause"
|
||||
msgstr ""
|
||||
|
||||
msgid "Key$Play"
|
||||
msgstr "Lejátszás"
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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 "Старт"
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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 ""
|
||||
|
||||
|
@ -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 "Odtwórz"
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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 "²ÞáßàÞØ×ÒÕÔÕÝØÕ"
|
||||
|
||||
|
@ -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»"
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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 Yolgeçen <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 "Göster"
|
||||
|
||||
|
@ -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 "Програвання"
|
||||
|
||||
|
@ -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 "播放"
|
||||
|
||||
|
3
vdr.c
3
vdr.c
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user