mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Implemented the setup options "OSD/Color key [0123]"
This commit is contained in:
parent
3d60eba129
commit
eb8fbeba27
@ -2936,3 +2936,6 @@ Mehdi Karamnejad <mehdi_karamnejad@sfu.ca>
|
|||||||
|
|
||||||
Dennis Bendlin <dennisbendlin@online.de>
|
Dennis Bendlin <dennisbendlin@online.de>
|
||||||
for a patch that implements FHS support
|
for a patch that implements FHS support
|
||||||
|
|
||||||
|
Oliver Schinagl <oliver@schinagl.nl>
|
||||||
|
for a patch that was used to implement the setup options "OSD/Color key [0123]"
|
||||||
|
8
HISTORY
8
HISTORY
@ -7191,7 +7191,7 @@ Video Disk Recorder Revision History
|
|||||||
turn on adding the source character to channel names whenever they are displayed
|
turn on adding the source character to channel names whenever they are displayed
|
||||||
(suggested by Ludi Kaleni).
|
(suggested by Ludi Kaleni).
|
||||||
|
|
||||||
2012-09-07: Version 1.7.30
|
2012-09-09: Version 1.7.30
|
||||||
|
|
||||||
- Fixed sorting recordings in the top level video directory.
|
- Fixed sorting recordings in the top level video directory.
|
||||||
- Fixed handling control characters in SI data in case of UTF-8 encoded strings
|
- Fixed handling control characters in SI data in case of UTF-8 encoded strings
|
||||||
@ -7228,3 +7228,9 @@ Video Disk Recorder Revision History
|
|||||||
of the index file).
|
of the index file).
|
||||||
- Fixed sluggish response when manipulating editing marks while a cutting thread
|
- Fixed sluggish response when manipulating editing marks while a cutting thread
|
||||||
is running (reported by Torsten Lang).
|
is running (reported by Torsten Lang).
|
||||||
|
- The new setup options "OSD/Color key [0123]" can be used to adjust the sequence
|
||||||
|
of the color buttons displayed in the menus to that of the color keys on your
|
||||||
|
remote control (based on a patch from Oliver Schinagl).
|
||||||
|
Authors of plugins that implement skins may want to adapt their SetButtons()
|
||||||
|
function in order to make use of this new feature. See, for instance, the function
|
||||||
|
cSkinClassicDisplayMenu::SetButtons() in skinclassic.c for details.
|
||||||
|
8
MANUAL
8
MANUAL
@ -601,6 +601,14 @@ Version 1.6
|
|||||||
characters in a text input field. You may want to set this
|
characters in a text input field. You may want to set this
|
||||||
to "no" if you are using an actual keyboard to control VDR.
|
to "no" if you are using an actual keyboard to control VDR.
|
||||||
|
|
||||||
|
Color key 0 = 0 By default, VDR assumes that the sequence of the color
|
||||||
|
Color key 1 = 1 keys on the remote control is red-green-yellow-blue. If
|
||||||
|
Color key 2 = 2 your remote control has these keys in a different sequence,
|
||||||
|
Color key 3 = 3 you can adjust these parameters to reorder the corresponding
|
||||||
|
color buttons in the menus accordingly. Note that this does
|
||||||
|
not change the functionality of the individual keys; it only
|
||||||
|
changes the sequence in which the color buttons are displayed.
|
||||||
|
|
||||||
EPG:
|
EPG:
|
||||||
|
|
||||||
EPG scan timeout = 5 The time (in hours) of user inactivity after which the
|
EPG scan timeout = 5 The time (in hours) of user inactivity after which the
|
||||||
|
14
config.c
14
config.c
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: config.c 2.26 2012/06/17 12:27:07 kls Exp $
|
* $Id: config.c 2.27 2012/09/09 12:58:23 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
@ -418,6 +418,10 @@ cSetup::cSetup(void)
|
|||||||
RecordingDirs = 1;
|
RecordingDirs = 1;
|
||||||
FoldersInTimerMenu = 1;
|
FoldersInTimerMenu = 1;
|
||||||
NumberKeysForChars = 1;
|
NumberKeysForChars = 1;
|
||||||
|
ColorKey0 = 0;
|
||||||
|
ColorKey1 = 1;
|
||||||
|
ColorKey2 = 2;
|
||||||
|
ColorKey3 = 3;
|
||||||
VideoDisplayFormat = 1;
|
VideoDisplayFormat = 1;
|
||||||
VideoFormat = 0;
|
VideoFormat = 0;
|
||||||
UpdateChannels = 5;
|
UpdateChannels = 5;
|
||||||
@ -614,6 +618,10 @@ bool cSetup::Parse(const char *Name, const char *Value)
|
|||||||
else if (!strcasecmp(Name, "RecordingDirs")) RecordingDirs = atoi(Value);
|
else if (!strcasecmp(Name, "RecordingDirs")) RecordingDirs = atoi(Value);
|
||||||
else if (!strcasecmp(Name, "FoldersInTimerMenu")) FoldersInTimerMenu = atoi(Value);
|
else if (!strcasecmp(Name, "FoldersInTimerMenu")) FoldersInTimerMenu = atoi(Value);
|
||||||
else if (!strcasecmp(Name, "NumberKeysForChars")) NumberKeysForChars = atoi(Value);
|
else if (!strcasecmp(Name, "NumberKeysForChars")) NumberKeysForChars = atoi(Value);
|
||||||
|
else if (!strcasecmp(Name, "ColorKey0")) ColorKey0 = atoi(Value);
|
||||||
|
else if (!strcasecmp(Name, "ColorKey1")) ColorKey1 = atoi(Value);
|
||||||
|
else if (!strcasecmp(Name, "ColorKey2")) ColorKey2 = atoi(Value);
|
||||||
|
else if (!strcasecmp(Name, "ColorKey3")) ColorKey3 = atoi(Value);
|
||||||
else if (!strcasecmp(Name, "VideoDisplayFormat")) VideoDisplayFormat = atoi(Value);
|
else if (!strcasecmp(Name, "VideoDisplayFormat")) VideoDisplayFormat = atoi(Value);
|
||||||
else if (!strcasecmp(Name, "VideoFormat")) VideoFormat = atoi(Value);
|
else if (!strcasecmp(Name, "VideoFormat")) VideoFormat = atoi(Value);
|
||||||
else if (!strcasecmp(Name, "UpdateChannels")) UpdateChannels = atoi(Value);
|
else if (!strcasecmp(Name, "UpdateChannels")) UpdateChannels = atoi(Value);
|
||||||
@ -713,6 +721,10 @@ bool cSetup::Save(void)
|
|||||||
Store("RecordingDirs", RecordingDirs);
|
Store("RecordingDirs", RecordingDirs);
|
||||||
Store("FoldersInTimerMenu", FoldersInTimerMenu);
|
Store("FoldersInTimerMenu", FoldersInTimerMenu);
|
||||||
Store("NumberKeysForChars", NumberKeysForChars);
|
Store("NumberKeysForChars", NumberKeysForChars);
|
||||||
|
Store("ColorKey0", ColorKey0);
|
||||||
|
Store("ColorKey1", ColorKey1);
|
||||||
|
Store("ColorKey2", ColorKey2);
|
||||||
|
Store("ColorKey3", ColorKey3);
|
||||||
Store("VideoDisplayFormat", VideoDisplayFormat);
|
Store("VideoDisplayFormat", VideoDisplayFormat);
|
||||||
Store("VideoFormat", VideoFormat);
|
Store("VideoFormat", VideoFormat);
|
||||||
Store("UpdateChannels", UpdateChannels);
|
Store("UpdateChannels", UpdateChannels);
|
||||||
|
3
config.h
3
config.h
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: config.h 2.50 2012/07/15 10:51:56 kls Exp $
|
* $Id: config.h 2.51 2012/09/09 12:57:33 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __CONFIG_H
|
#ifndef __CONFIG_H
|
||||||
@ -288,6 +288,7 @@ public:
|
|||||||
int RecordingDirs;
|
int RecordingDirs;
|
||||||
int FoldersInTimerMenu;
|
int FoldersInTimerMenu;
|
||||||
int NumberKeysForChars;
|
int NumberKeysForChars;
|
||||||
|
int ColorKey0, ColorKey1, ColorKey2, ColorKey3;
|
||||||
int VideoDisplayFormat;
|
int VideoDisplayFormat;
|
||||||
int VideoFormat;
|
int VideoFormat;
|
||||||
int UpdateChannels;
|
int UpdateChannels;
|
||||||
|
11
menu.c
11
menu.c
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: menu.c 2.59 2012/09/09 09:19:15 kls Exp $
|
* $Id: menu.c 2.60 2012/09/09 12:23:00 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "menu.h"
|
#include "menu.h"
|
||||||
@ -2510,6 +2510,7 @@ void cMenuSetupBase::Store(void)
|
|||||||
class cMenuSetupOSD : public cMenuSetupBase {
|
class cMenuSetupOSD : public cMenuSetupBase {
|
||||||
private:
|
private:
|
||||||
const char *useSmallFontTexts[3];
|
const char *useSmallFontTexts[3];
|
||||||
|
const char *keyColorTexts[4];
|
||||||
int osdLanguageIndex;
|
int osdLanguageIndex;
|
||||||
int numSkins;
|
int numSkins;
|
||||||
int originalSkinIndex;
|
int originalSkinIndex;
|
||||||
@ -2560,6 +2561,10 @@ void cMenuSetupOSD::Set(void)
|
|||||||
useSmallFontTexts[0] = tr("never");
|
useSmallFontTexts[0] = tr("never");
|
||||||
useSmallFontTexts[1] = tr("skin dependent");
|
useSmallFontTexts[1] = tr("skin dependent");
|
||||||
useSmallFontTexts[2] = tr("always");
|
useSmallFontTexts[2] = tr("always");
|
||||||
|
keyColorTexts[0] = tr("Key$Red");
|
||||||
|
keyColorTexts[1] = tr("Key$Green");
|
||||||
|
keyColorTexts[2] = tr("Key$Yellow");
|
||||||
|
keyColorTexts[3] = tr("Key$Blue");
|
||||||
Clear();
|
Clear();
|
||||||
SetSection(tr("OSD"));
|
SetSection(tr("OSD"));
|
||||||
Add(new cMenuEditStraItem(tr("Setup.OSD$Language"), &osdLanguageIndex, I18nNumLanguagesWithLocale(), &I18nLanguages()->At(0)));
|
Add(new cMenuEditStraItem(tr("Setup.OSD$Language"), &osdLanguageIndex, I18nNumLanguagesWithLocale(), &I18nLanguages()->At(0)));
|
||||||
@ -2589,6 +2594,10 @@ void cMenuSetupOSD::Set(void)
|
|||||||
Add(new cMenuEditBoolItem(tr("Setup.OSD$Recording directories"), &data.RecordingDirs));
|
Add(new cMenuEditBoolItem(tr("Setup.OSD$Recording directories"), &data.RecordingDirs));
|
||||||
Add(new cMenuEditBoolItem(tr("Setup.OSD$Folders in timer menu"), &data.FoldersInTimerMenu));
|
Add(new cMenuEditBoolItem(tr("Setup.OSD$Folders in timer menu"), &data.FoldersInTimerMenu));
|
||||||
Add(new cMenuEditBoolItem(tr("Setup.OSD$Number keys for characters"), &data.NumberKeysForChars));
|
Add(new cMenuEditBoolItem(tr("Setup.OSD$Number keys for characters"), &data.NumberKeysForChars));
|
||||||
|
Add(new cMenuEditStraItem(tr("Setup.OSD$Color key 0"), &data.ColorKey0, 4, keyColorTexts));
|
||||||
|
Add(new cMenuEditStraItem(tr("Setup.OSD$Color key 1"), &data.ColorKey1, 4, keyColorTexts));
|
||||||
|
Add(new cMenuEditStraItem(tr("Setup.OSD$Color key 2"), &data.ColorKey2, 4, keyColorTexts));
|
||||||
|
Add(new cMenuEditStraItem(tr("Setup.OSD$Color key 3"), &data.ColorKey3, 4, keyColorTexts));
|
||||||
SetCurrent(Get(current));
|
SetCurrent(Get(current));
|
||||||
Display();
|
Display();
|
||||||
}
|
}
|
||||||
|
14
po/ar.po
14
po/ar.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 1.7.0\n"
|
"Project-Id-Version: VDR 1.7.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2012-06-17 13:59+0200\n"
|
"POT-Creation-Date: 2012-09-09 15:20+0200\n"
|
||||||
"PO-Revision-Date: 2008-10-16 11:16-0400\n"
|
"PO-Revision-Date: 2008-10-16 11:16-0400\n"
|
||||||
"Last-Translator: Osama Alrawab <alrawab@hotmail.com>\n"
|
"Last-Translator: Osama Alrawab <alrawab@hotmail.com>\n"
|
||||||
"Language-Team: Arabic <ar@li.org>\n"
|
"Language-Team: Arabic <ar@li.org>\n"
|
||||||
@ -870,6 +870,18 @@ msgstr "مدة معلومات القناة"
|
|||||||
msgid "Setup.OSD$Number keys for characters"
|
msgid "Setup.OSD$Number keys for characters"
|
||||||
msgstr "زر اغلاق القاائمة"
|
msgstr "زر اغلاق القاائمة"
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 2"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 3"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "EPG"
|
msgid "EPG"
|
||||||
msgstr "الدليل الالكتونى للقنوات"
|
msgstr "الدليل الالكتونى للقنوات"
|
||||||
|
|
||||||
|
14
po/ca_ES.po
14
po/ca_ES.po
@ -10,7 +10,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 1.6.0\n"
|
"Project-Id-Version: VDR 1.6.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2012-06-17 13:59+0200\n"
|
"POT-Creation-Date: 2012-09-09 15:20+0200\n"
|
||||||
"PO-Revision-Date: 2008-03-02 19:02+0100\n"
|
"PO-Revision-Date: 2008-03-02 19:02+0100\n"
|
||||||
"Last-Translator: Luca Olivetti <luca@ventoso.org>\n"
|
"Last-Translator: Luca Olivetti <luca@ventoso.org>\n"
|
||||||
"Language-Team: Catalan <vdr@linuxtv.org>\n"
|
"Language-Team: Catalan <vdr@linuxtv.org>\n"
|
||||||
@ -852,6 +852,18 @@ msgstr ""
|
|||||||
msgid "Setup.OSD$Number keys for characters"
|
msgid "Setup.OSD$Number keys for characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 2"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 3"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "EPG"
|
msgid "EPG"
|
||||||
msgstr "Guia de Programes"
|
msgstr "Guia de Programes"
|
||||||
|
|
||||||
|
14
po/cs_CZ.po
14
po/cs_CZ.po
@ -9,7 +9,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 1.7.14\n"
|
"Project-Id-Version: VDR 1.7.14\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2012-06-17 13:59+0200\n"
|
"POT-Creation-Date: 2012-09-09 15:20+0200\n"
|
||||||
"PO-Revision-Date: 2010-05-06 11:00+0200\n"
|
"PO-Revision-Date: 2010-05-06 11:00+0200\n"
|
||||||
"Last-Translator: Radek Šťastný <dedkus@gmail.com>\n"
|
"Last-Translator: Radek Šťastný <dedkus@gmail.com>\n"
|
||||||
"Language-Team: Czech <vdr@linuxtv.org>\n"
|
"Language-Team: Czech <vdr@linuxtv.org>\n"
|
||||||
@ -851,6 +851,18 @@ msgstr "Složky v menu časovače"
|
|||||||
msgid "Setup.OSD$Number keys for characters"
|
msgid "Setup.OSD$Number keys for characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 2"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 3"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "EPG"
|
msgid "EPG"
|
||||||
msgstr "EPG"
|
msgstr "EPG"
|
||||||
|
|
||||||
|
14
po/da_DK.po
14
po/da_DK.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 1.6.0\n"
|
"Project-Id-Version: VDR 1.6.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2012-06-17 13:59+0200\n"
|
"POT-Creation-Date: 2012-09-09 15:20+0200\n"
|
||||||
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
|
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
|
||||||
"Last-Translator: Mogens Elneff <mogens@elneff.dk>\n"
|
"Last-Translator: Mogens Elneff <mogens@elneff.dk>\n"
|
||||||
"Language-Team: Danish <vdr@linuxtv.org>\n"
|
"Language-Team: Danish <vdr@linuxtv.org>\n"
|
||||||
@ -849,6 +849,18 @@ msgstr ""
|
|||||||
msgid "Setup.OSD$Number keys for characters"
|
msgid "Setup.OSD$Number keys for characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 2"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 3"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "EPG"
|
msgid "EPG"
|
||||||
msgstr "EPG"
|
msgstr "EPG"
|
||||||
|
|
||||||
|
14
po/de_DE.po
14
po/de_DE.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 1.6.0\n"
|
"Project-Id-Version: VDR 1.6.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2012-06-17 13:59+0200\n"
|
"POT-Creation-Date: 2012-09-09 15:20+0200\n"
|
||||||
"PO-Revision-Date: 2010-01-16 16:46+0100\n"
|
"PO-Revision-Date: 2010-01-16 16:46+0100\n"
|
||||||
"Last-Translator: Klaus Schmidinger <kls@tvdr.de>\n"
|
"Last-Translator: Klaus Schmidinger <kls@tvdr.de>\n"
|
||||||
"Language-Team: German <vdr@linuxtv.org>\n"
|
"Language-Team: German <vdr@linuxtv.org>\n"
|
||||||
@ -849,6 +849,18 @@ msgstr "Verzeichnisse im Timer-Men
|
|||||||
msgid "Setup.OSD$Number keys for characters"
|
msgid "Setup.OSD$Number keys for characters"
|
||||||
msgstr "Nummerntasten für Zeichen"
|
msgstr "Nummerntasten für Zeichen"
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 0"
|
||||||
|
msgstr "Farbtaste 0"
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 1"
|
||||||
|
msgstr "Farbtaste 1"
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 2"
|
||||||
|
msgstr "Farbtaste 2"
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 3"
|
||||||
|
msgstr "Farbtaste 3"
|
||||||
|
|
||||||
msgid "EPG"
|
msgid "EPG"
|
||||||
msgstr "EPG"
|
msgstr "EPG"
|
||||||
|
|
||||||
|
14
po/el_GR.po
14
po/el_GR.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 1.6.0\n"
|
"Project-Id-Version: VDR 1.6.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2012-06-17 13:59+0200\n"
|
"POT-Creation-Date: 2012-09-09 15:20+0200\n"
|
||||||
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
|
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
|
||||||
"Last-Translator: Dimitrios Dimitrakos <mail@dimitrios.de>\n"
|
"Last-Translator: Dimitrios Dimitrakos <mail@dimitrios.de>\n"
|
||||||
"Language-Team: Greek <vdr@linuxtv.org>\n"
|
"Language-Team: Greek <vdr@linuxtv.org>\n"
|
||||||
@ -849,6 +849,18 @@ msgstr ""
|
|||||||
msgid "Setup.OSD$Number keys for characters"
|
msgid "Setup.OSD$Number keys for characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 2"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 3"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "EPG"
|
msgid "EPG"
|
||||||
msgstr "Çëåêôñïíéêüò ïäçãüò ðñïãñÜììáôïò"
|
msgstr "Çëåêôñïíéêüò ïäçãüò ðñïãñÜììáôïò"
|
||||||
|
|
||||||
|
14
po/es_ES.po
14
po/es_ES.po
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 1.6.0\n"
|
"Project-Id-Version: VDR 1.6.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2012-06-17 13:59+0200\n"
|
"POT-Creation-Date: 2012-09-09 15:20+0200\n"
|
||||||
"PO-Revision-Date: 2008-03-02 19:02+0100\n"
|
"PO-Revision-Date: 2008-03-02 19:02+0100\n"
|
||||||
"Last-Translator: Luca Olivetti <luca@ventoso.org>\n"
|
"Last-Translator: Luca Olivetti <luca@ventoso.org>\n"
|
||||||
"Language-Team: Spanish <vdr@linuxtv.org>\n"
|
"Language-Team: Spanish <vdr@linuxtv.org>\n"
|
||||||
@ -850,6 +850,18 @@ msgstr ""
|
|||||||
msgid "Setup.OSD$Number keys for characters"
|
msgid "Setup.OSD$Number keys for characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 2"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 3"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "EPG"
|
msgid "EPG"
|
||||||
msgstr "Guía de Programación"
|
msgstr "Guía de Programación"
|
||||||
|
|
||||||
|
14
po/et_EE.po
14
po/et_EE.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 1.6.0\n"
|
"Project-Id-Version: VDR 1.6.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2012-06-17 13:59+0200\n"
|
"POT-Creation-Date: 2012-09-09 15:20+0200\n"
|
||||||
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
|
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
|
||||||
"Last-Translator: Arthur Konovalov <artlov@gmail.com>\n"
|
"Last-Translator: Arthur Konovalov <artlov@gmail.com>\n"
|
||||||
"Language-Team: Estonian <vdr@linuxtv.org>\n"
|
"Language-Team: Estonian <vdr@linuxtv.org>\n"
|
||||||
@ -849,6 +849,18 @@ msgstr "Kaustad taimeri menüüs"
|
|||||||
msgid "Setup.OSD$Number keys for characters"
|
msgid "Setup.OSD$Number keys for characters"
|
||||||
msgstr "Teksti sisestamine numbriklahvidega"
|
msgstr "Teksti sisestamine numbriklahvidega"
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 2"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 3"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "EPG"
|
msgid "EPG"
|
||||||
msgstr "EPG"
|
msgstr "EPG"
|
||||||
|
|
||||||
|
14
po/fi_FI.po
14
po/fi_FI.po
@ -10,7 +10,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 1.6.0\n"
|
"Project-Id-Version: VDR 1.6.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2012-06-17 13:59+0200\n"
|
"POT-Creation-Date: 2012-09-09 15:20+0200\n"
|
||||||
"PO-Revision-Date: 2007-08-15 15:52+0200\n"
|
"PO-Revision-Date: 2007-08-15 15:52+0200\n"
|
||||||
"Last-Translator: Rolf Ahrenberg <rahrenbe@cc.hut.fi>\n"
|
"Last-Translator: Rolf Ahrenberg <rahrenbe@cc.hut.fi>\n"
|
||||||
"Language-Team: Finnish <vdr@linuxtv.org>\n"
|
"Language-Team: Finnish <vdr@linuxtv.org>\n"
|
||||||
@ -852,6 +852,18 @@ msgstr "Näytä kansiot ajastinvalikossa"
|
|||||||
msgid "Setup.OSD$Number keys for characters"
|
msgid "Setup.OSD$Number keys for characters"
|
||||||
msgstr "Käytä numeronäppäimiä tekstisyötteessä"
|
msgstr "Käytä numeronäppäimiä tekstisyötteessä"
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 2"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 3"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "EPG"
|
msgid "EPG"
|
||||||
msgstr "Ohjelmaopas"
|
msgstr "Ohjelmaopas"
|
||||||
|
|
||||||
|
14
po/fr_FR.po
14
po/fr_FR.po
@ -13,7 +13,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 1.6.0\n"
|
"Project-Id-Version: VDR 1.6.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2012-06-17 13:59+0200\n"
|
"POT-Creation-Date: 2012-09-09 15:20+0200\n"
|
||||||
"PO-Revision-Date: 2008-02-27 18:14+0100\n"
|
"PO-Revision-Date: 2008-02-27 18:14+0100\n"
|
||||||
"Last-Translator: Jean-Claude Repetto <jc@repetto.org>\n"
|
"Last-Translator: Jean-Claude Repetto <jc@repetto.org>\n"
|
||||||
"Language-Team: French <vdr@linuxtv.org>\n"
|
"Language-Team: French <vdr@linuxtv.org>\n"
|
||||||
@ -855,6 +855,18 @@ msgstr ""
|
|||||||
msgid "Setup.OSD$Number keys for characters"
|
msgid "Setup.OSD$Number keys for characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 2"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 3"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "EPG"
|
msgid "EPG"
|
||||||
msgstr "Guide des programmes"
|
msgstr "Guide des programmes"
|
||||||
|
|
||||||
|
14
po/hr_HR.po
14
po/hr_HR.po
@ -9,7 +9,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 1.6.0\n"
|
"Project-Id-Version: VDR 1.6.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2012-06-17 13:59+0200\n"
|
"POT-Creation-Date: 2012-09-09 15:20+0200\n"
|
||||||
"PO-Revision-Date: 2008-03-17 19:00+0100\n"
|
"PO-Revision-Date: 2008-03-17 19:00+0100\n"
|
||||||
"Last-Translator: Adrian Caval <anrxc@sysphere.org>\n"
|
"Last-Translator: Adrian Caval <anrxc@sysphere.org>\n"
|
||||||
"Language-Team: Croatian <vdr@linuxtv.org>\n"
|
"Language-Team: Croatian <vdr@linuxtv.org>\n"
|
||||||
@ -851,6 +851,18 @@ msgstr ""
|
|||||||
msgid "Setup.OSD$Number keys for characters"
|
msgid "Setup.OSD$Number keys for characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 2"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 3"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "EPG"
|
msgid "EPG"
|
||||||
msgstr "EPG (elektronski programski vodiè)"
|
msgstr "EPG (elektronski programski vodiè)"
|
||||||
|
|
||||||
|
14
po/hu_HU.po
14
po/hu_HU.po
@ -10,7 +10,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 1.6.0\n"
|
"Project-Id-Version: VDR 1.6.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2012-06-17 13:59+0200\n"
|
"POT-Creation-Date: 2012-09-09 15:20+0200\n"
|
||||||
"PO-Revision-Date: 2012-01-02 11:54+0200\n"
|
"PO-Revision-Date: 2012-01-02 11:54+0200\n"
|
||||||
"Last-Translator: István Füley <ifuley@tigercomp.ro>\n"
|
"Last-Translator: István Füley <ifuley@tigercomp.ro>\n"
|
||||||
"Language-Team: Hungarian <vdr@linuxtv.org>\n"
|
"Language-Team: Hungarian <vdr@linuxtv.org>\n"
|
||||||
@ -852,6 +852,18 @@ msgstr "K
|
|||||||
msgid "Setup.OSD$Number keys for characters"
|
msgid "Setup.OSD$Number keys for characters"
|
||||||
msgstr "Számgombok a betûkön"
|
msgstr "Számgombok a betûkön"
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 2"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 3"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "EPG"
|
msgid "EPG"
|
||||||
msgstr "EPG"
|
msgstr "EPG"
|
||||||
|
|
||||||
|
14
po/it_IT.po
14
po/it_IT.po
@ -11,7 +11,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 1.6.0\n"
|
"Project-Id-Version: VDR 1.6.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2012-06-17 13:59+0200\n"
|
"POT-Creation-Date: 2012-09-09 15:20+0200\n"
|
||||||
"PO-Revision-Date: 2012-06-06 22:50+0100\n"
|
"PO-Revision-Date: 2012-06-06 22:50+0100\n"
|
||||||
"Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n"
|
"Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n"
|
||||||
"Language-Team: Italian <vdr@linuxtv.org>\n"
|
"Language-Team: Italian <vdr@linuxtv.org>\n"
|
||||||
@ -856,6 +856,18 @@ msgstr "Cartelle nel menu timer"
|
|||||||
msgid "Setup.OSD$Number keys for characters"
|
msgid "Setup.OSD$Number keys for characters"
|
||||||
msgstr "Tasti numerici per i caratteri"
|
msgstr "Tasti numerici per i caratteri"
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 2"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 3"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "EPG"
|
msgid "EPG"
|
||||||
msgstr "Guida programmi EPG"
|
msgstr "Guida programmi EPG"
|
||||||
|
|
||||||
|
14
po/lt_LT.po
14
po/lt_LT.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 1.7.16\n"
|
"Project-Id-Version: VDR 1.7.16\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2012-06-17 13:59+0200\n"
|
"POT-Creation-Date: 2012-09-09 15:20+0200\n"
|
||||||
"PO-Revision-Date: 2010-10-30 11:55+0200\n"
|
"PO-Revision-Date: 2010-10-30 11:55+0200\n"
|
||||||
"Last-Translator: Valdemaras Pipiras <varas@ambernet.lt>\n"
|
"Last-Translator: Valdemaras Pipiras <varas@ambernet.lt>\n"
|
||||||
"Language-Team: Lithuanian <vdr@linuxtv.org>\n"
|
"Language-Team: Lithuanian <vdr@linuxtv.org>\n"
|
||||||
@ -849,6 +849,18 @@ msgstr "Katalogai esantys laikmačių meniu"
|
|||||||
msgid "Setup.OSD$Number keys for characters"
|
msgid "Setup.OSD$Number keys for characters"
|
||||||
msgstr "Skaičių mygtukai simboliams"
|
msgstr "Skaičių mygtukai simboliams"
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 2"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 3"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "EPG"
|
msgid "EPG"
|
||||||
msgstr "Elektroninis programų gidas (EPG)"
|
msgstr "Elektroninis programų gidas (EPG)"
|
||||||
|
|
||||||
|
14
po/mk_MK.po
14
po/mk_MK.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR-1.7.14\n"
|
"Project-Id-Version: VDR-1.7.14\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2012-06-17 13:59+0200\n"
|
"POT-Creation-Date: 2012-09-09 15:20+0200\n"
|
||||||
"PO-Revision-Date: 2010-03-11 00:54+0100\n"
|
"PO-Revision-Date: 2010-03-11 00:54+0100\n"
|
||||||
"Last-Translator: Dimitar Petrovski <dimeptr@gmail.com>\n"
|
"Last-Translator: Dimitar Petrovski <dimeptr@gmail.com>\n"
|
||||||
"Language-Team: Macedonian <en@li.org>\n"
|
"Language-Team: Macedonian <en@li.org>\n"
|
||||||
@ -850,6 +850,18 @@ msgstr "Директориуми во менито за тајмер"
|
|||||||
msgid "Setup.OSD$Number keys for characters"
|
msgid "Setup.OSD$Number keys for characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 2"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 3"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "EPG"
|
msgid "EPG"
|
||||||
msgstr "EPG (електронски водич на програми)"
|
msgstr "EPG (електронски водич на програми)"
|
||||||
|
|
||||||
|
14
po/nl_NL.po
14
po/nl_NL.po
@ -11,7 +11,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 1.6.0\n"
|
"Project-Id-Version: VDR 1.6.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2012-06-17 13:59+0200\n"
|
"POT-Creation-Date: 2012-09-09 15:20+0200\n"
|
||||||
"PO-Revision-Date: 2008-02-26 17:20+0100\n"
|
"PO-Revision-Date: 2008-02-26 17:20+0100\n"
|
||||||
"Last-Translator: Johan Schuring <johan.schuring@vetteblei.nl>\n"
|
"Last-Translator: Johan Schuring <johan.schuring@vetteblei.nl>\n"
|
||||||
"Language-Team: Dutch <vdr@linuxtv.org>\n"
|
"Language-Team: Dutch <vdr@linuxtv.org>\n"
|
||||||
@ -853,6 +853,18 @@ msgstr ""
|
|||||||
msgid "Setup.OSD$Number keys for characters"
|
msgid "Setup.OSD$Number keys for characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 2"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 3"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "EPG"
|
msgid "EPG"
|
||||||
msgstr "EPG"
|
msgstr "EPG"
|
||||||
|
|
||||||
|
14
po/nn_NO.po
14
po/nn_NO.po
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 1.6.0\n"
|
"Project-Id-Version: VDR 1.6.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2012-06-17 13:59+0200\n"
|
"POT-Creation-Date: 2012-09-09 15:20+0200\n"
|
||||||
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
|
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
|
||||||
"Last-Translator: Truls Slevigen <truls@slevigen.no>\n"
|
"Last-Translator: Truls Slevigen <truls@slevigen.no>\n"
|
||||||
"Language-Team: Norwegian Nynorsk <vdr@linuxtv.org>\n"
|
"Language-Team: Norwegian Nynorsk <vdr@linuxtv.org>\n"
|
||||||
@ -850,6 +850,18 @@ msgstr ""
|
|||||||
msgid "Setup.OSD$Number keys for characters"
|
msgid "Setup.OSD$Number keys for characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 2"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 3"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "EPG"
|
msgid "EPG"
|
||||||
msgstr "Programoversikt"
|
msgstr "Programoversikt"
|
||||||
|
|
||||||
|
14
po/pl_PL.po
14
po/pl_PL.po
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 1.6.0\n"
|
"Project-Id-Version: VDR 1.6.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2012-06-17 13:59+0200\n"
|
"POT-Creation-Date: 2012-09-09 15:20+0200\n"
|
||||||
"PO-Revision-Date: 2008-03-09 12:59+0100\n"
|
"PO-Revision-Date: 2008-03-09 12:59+0100\n"
|
||||||
"Last-Translator: Michael Rakowski <mrak@gmx.de>\n"
|
"Last-Translator: Michael Rakowski <mrak@gmx.de>\n"
|
||||||
"Language-Team: Polish <vdr@linuxtv.org>\n"
|
"Language-Team: Polish <vdr@linuxtv.org>\n"
|
||||||
@ -850,6 +850,18 @@ msgstr ""
|
|||||||
msgid "Setup.OSD$Number keys for characters"
|
msgid "Setup.OSD$Number keys for characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 2"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 3"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "EPG"
|
msgid "EPG"
|
||||||
msgstr "EPG"
|
msgstr "EPG"
|
||||||
|
|
||||||
|
14
po/pt_PT.po
14
po/pt_PT.po
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 1.7.15\n"
|
"Project-Id-Version: VDR 1.7.15\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2012-06-17 13:59+0200\n"
|
"POT-Creation-Date: 2012-09-09 15:20+0200\n"
|
||||||
"PO-Revision-Date: 2010-03-28 22:49+0100\n"
|
"PO-Revision-Date: 2010-03-28 22:49+0100\n"
|
||||||
"Last-Translator: Cris Silva <hudokkow@gmail.com>\n"
|
"Last-Translator: Cris Silva <hudokkow@gmail.com>\n"
|
||||||
"Language-Team: Portuguese <vdr@linuxtv.org>\n"
|
"Language-Team: Portuguese <vdr@linuxtv.org>\n"
|
||||||
@ -850,6 +850,18 @@ msgstr "Pastas no menu de grava
|
|||||||
msgid "Setup.OSD$Number keys for characters"
|
msgid "Setup.OSD$Number keys for characters"
|
||||||
msgstr "Teclas numéricas para caracteres"
|
msgstr "Teclas numéricas para caracteres"
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 2"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 3"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "EPG"
|
msgid "EPG"
|
||||||
msgstr "Guia de Programação"
|
msgstr "Guia de Programação"
|
||||||
|
|
||||||
|
14
po/ro_RO.po
14
po/ro_RO.po
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 1.7.12\n"
|
"Project-Id-Version: VDR 1.7.12\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2012-06-17 13:59+0200\n"
|
"POT-Creation-Date: 2012-09-09 15:20+0200\n"
|
||||||
"PO-Revision-Date: 2011-03-10 23:52+0100\n"
|
"PO-Revision-Date: 2011-03-10 23:52+0100\n"
|
||||||
"Last-Translator: Lucian Muresan <lucianm@users.sourceforge.net>\n"
|
"Last-Translator: Lucian Muresan <lucianm@users.sourceforge.net>\n"
|
||||||
"Language-Team: Romanian <vdr@linuxtv.org>\n"
|
"Language-Team: Romanian <vdr@linuxtv.org>\n"
|
||||||
@ -852,6 +852,18 @@ msgstr "Directoare
|
|||||||
msgid "Setup.OSD$Number keys for characters"
|
msgid "Setup.OSD$Number keys for characters"
|
||||||
msgstr "Caractere pe tastele numerice"
|
msgstr "Caractere pe tastele numerice"
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 2"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 3"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "EPG"
|
msgid "EPG"
|
||||||
msgstr "EPG"
|
msgstr "EPG"
|
||||||
|
|
||||||
|
14
po/ru_RU.po
14
po/ru_RU.po
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 1.6.0\n"
|
"Project-Id-Version: VDR 1.6.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2012-06-17 13:59+0200\n"
|
"POT-Creation-Date: 2012-09-09 15:20+0200\n"
|
||||||
"PO-Revision-Date: 2008-12-15 14:37+0100\n"
|
"PO-Revision-Date: 2008-12-15 14:37+0100\n"
|
||||||
"Last-Translator: Oleg Roitburd <oleg@roitburd.de>\n"
|
"Last-Translator: Oleg Roitburd <oleg@roitburd.de>\n"
|
||||||
"Language-Team: Russian <vdr@linuxtv.org>\n"
|
"Language-Team: Russian <vdr@linuxtv.org>\n"
|
||||||
@ -850,6 +850,18 @@ msgstr ""
|
|||||||
msgid "Setup.OSD$Number keys for characters"
|
msgid "Setup.OSD$Number keys for characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 2"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 3"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "EPG"
|
msgid "EPG"
|
||||||
msgstr "ÂÕÛÕÓØÔ"
|
msgstr "ÂÕÛÕÓØÔ"
|
||||||
|
|
||||||
|
14
po/sk_SK.po
14
po/sk_SK.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 1.7.16\n"
|
"Project-Id-Version: VDR 1.7.16\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2012-06-17 13:59+0200\n"
|
"POT-Creation-Date: 2012-09-09 15:20+0200\n"
|
||||||
"PO-Revision-Date: 2011-02-15 16:29+0100\n"
|
"PO-Revision-Date: 2011-02-15 16:29+0100\n"
|
||||||
"Last-Translator: Milan Hrala <hrala.milan@gmail.com>\n"
|
"Last-Translator: Milan Hrala <hrala.milan@gmail.com>\n"
|
||||||
"Language-Team: Slovak <vdr@linuxtv.org>\n"
|
"Language-Team: Slovak <vdr@linuxtv.org>\n"
|
||||||
@ -849,6 +849,18 @@ msgstr "Zlo
|
|||||||
msgid "Setup.OSD$Number keys for characters"
|
msgid "Setup.OSD$Number keys for characters"
|
||||||
msgstr "Èíselné tlaèidlá pre znaky"
|
msgstr "Èíselné tlaèidlá pre znaky"
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 2"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 3"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "EPG"
|
msgid "EPG"
|
||||||
msgstr "EPG"
|
msgstr "EPG"
|
||||||
|
|
||||||
|
14
po/sl_SI.po
14
po/sl_SI.po
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 1.6.0\n"
|
"Project-Id-Version: VDR 1.6.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2012-06-17 13:59+0200\n"
|
"POT-Creation-Date: 2012-09-09 15:20+0200\n"
|
||||||
"PO-Revision-Date: 2008-02-28 19:44+0100\n"
|
"PO-Revision-Date: 2008-02-28 19:44+0100\n"
|
||||||
"Last-Translator: Matjaz Thaler <matjaz.thaler@guest.arnes.si>\n"
|
"Last-Translator: Matjaz Thaler <matjaz.thaler@guest.arnes.si>\n"
|
||||||
"Language-Team: Slovenian <vdr@linuxtv.org>\n"
|
"Language-Team: Slovenian <vdr@linuxtv.org>\n"
|
||||||
@ -850,6 +850,18 @@ msgstr ""
|
|||||||
msgid "Setup.OSD$Number keys for characters"
|
msgid "Setup.OSD$Number keys for characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 2"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 3"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "EPG"
|
msgid "EPG"
|
||||||
msgstr "Programski vodnik"
|
msgstr "Programski vodnik"
|
||||||
|
|
||||||
|
14
po/sr_SR.po
14
po/sr_SR.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 1.7.1\n"
|
"Project-Id-Version: VDR 1.7.1\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2012-06-17 13:59+0200\n"
|
"POT-Creation-Date: 2012-09-09 15:20+0200\n"
|
||||||
"PO-Revision-Date: 2011-01-09 15:57+0100\n"
|
"PO-Revision-Date: 2011-01-09 15:57+0100\n"
|
||||||
"Last-Translator: Milan Cvijanoviæ <elcom_cvijo@hotmail.com>\n"
|
"Last-Translator: Milan Cvijanoviæ <elcom_cvijo@hotmail.com>\n"
|
||||||
"Language-Team: Serbian <vdr@linuxtv.org>\n"
|
"Language-Team: Serbian <vdr@linuxtv.org>\n"
|
||||||
@ -867,6 +867,18 @@ msgstr "Direktoriji u tajmer meni-ju "
|
|||||||
msgid "Setup.OSD$Number keys for characters"
|
msgid "Setup.OSD$Number keys for characters"
|
||||||
msgstr "Number keys for characters"
|
msgstr "Number keys for characters"
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 2"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 3"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "EPG"
|
msgid "EPG"
|
||||||
msgstr "EPG (TV Raspored¨)"
|
msgstr "EPG (TV Raspored¨)"
|
||||||
|
|
||||||
|
14
po/sv_SE.po
14
po/sv_SE.po
@ -10,7 +10,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 1.6.0\n"
|
"Project-Id-Version: VDR 1.6.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2012-06-17 13:59+0200\n"
|
"POT-Creation-Date: 2012-09-09 15:20+0200\n"
|
||||||
"PO-Revision-Date: 2008-03-12 18:25+0100\n"
|
"PO-Revision-Date: 2008-03-12 18:25+0100\n"
|
||||||
"Last-Translator: Magnus Andersson <svankan@bahnhof.se>\n"
|
"Last-Translator: Magnus Andersson <svankan@bahnhof.se>\n"
|
||||||
"Language-Team: Swedish <vdr@linuxtv.org>\n"
|
"Language-Team: Swedish <vdr@linuxtv.org>\n"
|
||||||
@ -852,6 +852,18 @@ msgstr ""
|
|||||||
msgid "Setup.OSD$Number keys for characters"
|
msgid "Setup.OSD$Number keys for characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 2"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 3"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "EPG"
|
msgid "EPG"
|
||||||
msgstr "EPG"
|
msgstr "EPG"
|
||||||
|
|
||||||
|
14
po/tr_TR.po
14
po/tr_TR.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 1.6.0\n"
|
"Project-Id-Version: VDR 1.6.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2012-06-17 13:59+0200\n"
|
"POT-Creation-Date: 2012-09-09 15:20+0200\n"
|
||||||
"PO-Revision-Date: 2008-02-28 00:33+0100\n"
|
"PO-Revision-Date: 2008-02-28 00:33+0100\n"
|
||||||
"Last-Translator: Oktay Yolgeçen <oktay_73@yahoo.de>\n"
|
"Last-Translator: Oktay Yolgeçen <oktay_73@yahoo.de>\n"
|
||||||
"Language-Team: Turkish <vdr@linuxtv.org>\n"
|
"Language-Team: Turkish <vdr@linuxtv.org>\n"
|
||||||
@ -849,6 +849,18 @@ msgstr ""
|
|||||||
msgid "Setup.OSD$Number keys for characters"
|
msgid "Setup.OSD$Number keys for characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 2"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 3"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "EPG"
|
msgid "EPG"
|
||||||
msgstr "EPG"
|
msgstr "EPG"
|
||||||
|
|
||||||
|
14
po/uk_UA.po
14
po/uk_UA.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 1.7.7\n"
|
"Project-Id-Version: VDR 1.7.7\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2012-06-17 13:59+0200\n"
|
"POT-Creation-Date: 2012-09-09 15:20+0200\n"
|
||||||
"PO-Revision-Date: 2010-04-25 16:35+0200\n"
|
"PO-Revision-Date: 2010-04-25 16:35+0200\n"
|
||||||
"Last-Translator: Yarema aka Knedlyk <yupadmin@gmail.com>\n"
|
"Last-Translator: Yarema aka Knedlyk <yupadmin@gmail.com>\n"
|
||||||
"Language-Team: Ukrainian <vdr@linuxtv.org>\n"
|
"Language-Team: Ukrainian <vdr@linuxtv.org>\n"
|
||||||
@ -849,6 +849,18 @@ msgstr "Каталоги в меню таймера"
|
|||||||
msgid "Setup.OSD$Number keys for characters"
|
msgid "Setup.OSD$Number keys for characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 2"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 3"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "EPG"
|
msgid "EPG"
|
||||||
msgstr "Телегід (EPG)"
|
msgstr "Телегід (EPG)"
|
||||||
|
|
||||||
|
14
po/zh_CN.po
14
po/zh_CN.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 1.6.0\n"
|
"Project-Id-Version: VDR 1.6.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2012-06-17 13:59+0200\n"
|
"POT-Creation-Date: 2012-09-09 15:20+0200\n"
|
||||||
"PO-Revision-Date: 2009-09-23 23:50+0800\n"
|
"PO-Revision-Date: 2009-09-23 23:50+0800\n"
|
||||||
"Last-Translator: Nan Feng <nfgx@21cn.com>\n"
|
"Last-Translator: Nan Feng <nfgx@21cn.com>\n"
|
||||||
"Language-Team: Chinese (simplified) <vdr@linuxtv.org>\n"
|
"Language-Team: Chinese (simplified) <vdr@linuxtv.org>\n"
|
||||||
@ -852,6 +852,18 @@ msgstr ""
|
|||||||
msgid "Setup.OSD$Number keys for characters"
|
msgid "Setup.OSD$Number keys for characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 2"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.OSD$Color key 3"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "EPG"
|
msgid "EPG"
|
||||||
msgstr "电子节目单设置"
|
msgstr "电子节目单设置"
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: skinclassic.c 2.7 2012/04/23 08:48:03 kls Exp $
|
* $Id: skinclassic.c 2.8 2012/09/09 11:39:06 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "skinclassic.h"
|
#include "skinclassic.h"
|
||||||
@ -291,16 +291,19 @@ void cSkinClassicDisplayMenu::SetTitle(const char *Title)
|
|||||||
void cSkinClassicDisplayMenu::SetButtons(const char *Red, const char *Green, const char *Yellow, const char *Blue)
|
void cSkinClassicDisplayMenu::SetButtons(const char *Red, const char *Green, const char *Yellow, const char *Blue)
|
||||||
{
|
{
|
||||||
const cFont *font = cFont::GetFont(fontOsd);
|
const cFont *font = cFont::GetFont(fontOsd);
|
||||||
|
const char *lutText[] = { Red, Green, Yellow, Blue };
|
||||||
|
tColor lutFg[] = { clrButtonRedFg, clrButtonGreenFg, clrButtonYellowFg, clrButtonBlueFg };
|
||||||
|
tColor lutBg[] = { clrButtonRedBg, clrButtonGreenBg, clrButtonYellowBg, clrButtonBlueBg };
|
||||||
int w = x3 - x0;
|
int w = x3 - x0;
|
||||||
int t0 = x0;
|
int t0 = x0;
|
||||||
int t1 = x0 + w / 4;
|
int t1 = x0 + w / 4;
|
||||||
int t2 = x0 + w / 2;
|
int t2 = x0 + w / 2;
|
||||||
int t3 = x3 - w / 4;
|
int t3 = x3 - w / 4;
|
||||||
int t4 = x3;
|
int t4 = x3;
|
||||||
osd->DrawText(t0, y4, Red, Theme.Color(clrButtonRedFg), Red ? Theme.Color(clrButtonRedBg) : Theme.Color(clrBackground), font, t1 - t0, 0, taCenter);
|
osd->DrawText(t0, y4, lutText[Setup.ColorKey0], Theme.Color(lutFg[Setup.ColorKey0]), lutText[Setup.ColorKey0] ? Theme.Color(lutBg[Setup.ColorKey0]) : Theme.Color(clrBackground), font, t1 - t0, 0, taCenter);
|
||||||
osd->DrawText(t1, y4, Green, Theme.Color(clrButtonGreenFg), Green ? Theme.Color(clrButtonGreenBg) : Theme.Color(clrBackground), font, t2 - t1, 0, taCenter);
|
osd->DrawText(t1, y4, lutText[Setup.ColorKey1], Theme.Color(lutFg[Setup.ColorKey1]), lutText[Setup.ColorKey1] ? Theme.Color(lutBg[Setup.ColorKey1]) : Theme.Color(clrBackground), font, t2 - t1, 0, taCenter);
|
||||||
osd->DrawText(t2, y4, Yellow, Theme.Color(clrButtonYellowFg), Yellow ? Theme.Color(clrButtonYellowBg) : Theme.Color(clrBackground), font, t3 - t2, 0, taCenter);
|
osd->DrawText(t2, y4, lutText[Setup.ColorKey2], Theme.Color(lutFg[Setup.ColorKey2]), lutText[Setup.ColorKey2] ? Theme.Color(lutBg[Setup.ColorKey2]) : Theme.Color(clrBackground), font, t3 - t2, 0, taCenter);
|
||||||
osd->DrawText(t3, y4, Blue, Theme.Color(clrButtonBlueFg), Blue ? Theme.Color(clrButtonBlueBg) : Theme.Color(clrBackground), font, t4 - t3, 0, taCenter);
|
osd->DrawText(t3, y4, lutText[Setup.ColorKey3], Theme.Color(lutFg[Setup.ColorKey3]), lutText[Setup.ColorKey3] ? Theme.Color(lutBg[Setup.ColorKey3]) : Theme.Color(clrBackground), font, t4 - t3, 0, taCenter);
|
||||||
}
|
}
|
||||||
|
|
||||||
void cSkinClassicDisplayMenu::SetMessage(eMessageType Type, const char *Text)
|
void cSkinClassicDisplayMenu::SetMessage(eMessageType Type, const char *Text)
|
||||||
|
30
skinlcars.c
30
skinlcars.c
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: skinlcars.c 2.13 2012/06/13 13:27:31 kls Exp $
|
* $Id: skinlcars.c 2.14 2012/09/09 12:16:50 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// "Star Trek: The Next Generation"(R) is a registered trademark of Paramount Pictures,
|
// "Star Trek: The Next Generation"(R) is a registered trademark of Paramount Pictures,
|
||||||
@ -975,10 +975,11 @@ void cSkinLCARSDisplayMenu::DrawMenuFrame(void)
|
|||||||
osd->DrawEllipse (xa08 + lineHeight / 2, yb14, xa09 - 1, yb15 - 1, frameColor, 5);
|
osd->DrawEllipse (xa08 + lineHeight / 2, yb14, xa09 - 1, yb15 - 1, frameColor, 5);
|
||||||
osd->DrawText(xa00, yb10, "VDR", Theme.Color(clrMenuFrameFg), frameColor, tallFont, xa02 - xa00, yb11 - yb10, taTop | taRight | taBorder);
|
osd->DrawText(xa00, yb10, "VDR", Theme.Color(clrMenuFrameFg), frameColor, tallFont, xa02 - xa00, yb11 - yb10, taTop | taRight | taBorder);
|
||||||
// Color buttons:
|
// Color buttons:
|
||||||
osd->DrawRectangle(xb00, yb14, xb01 - 1, yb15 - 1, Theme.Color(clrButtonRedBg));
|
tColor lutBg[] = { clrButtonRedBg, clrButtonGreenBg, clrButtonYellowBg, clrButtonBlueBg };
|
||||||
osd->DrawRectangle(xb04, yb14, xb05 - 1, yb15 - 1, Theme.Color(clrButtonGreenBg));
|
osd->DrawRectangle(xb00, yb14, xb01 - 1, yb15 - 1, Theme.Color(lutBg[Setup.ColorKey0]));
|
||||||
osd->DrawRectangle(xb08, yb14, xb09 - 1, yb15 - 1, Theme.Color(clrButtonYellowBg));
|
osd->DrawRectangle(xb04, yb14, xb05 - 1, yb15 - 1, Theme.Color(lutBg[Setup.ColorKey1]));
|
||||||
osd->DrawRectangle(xb12, yb14, xb13 - 1, yb15 - 1, Theme.Color(clrButtonBlueBg));
|
osd->DrawRectangle(xb08, yb14, xb09 - 1, yb15 - 1, Theme.Color(lutBg[Setup.ColorKey2]));
|
||||||
|
osd->DrawRectangle(xb12, yb14, xb13 - 1, yb15 - 1, Theme.Color(lutBg[Setup.ColorKey3]));
|
||||||
}
|
}
|
||||||
|
|
||||||
void cSkinLCARSDisplayMenu::DrawDate(void)
|
void cSkinLCARSDisplayMenu::DrawDate(void)
|
||||||
@ -1458,19 +1459,22 @@ void cSkinLCARSDisplayMenu::SetTitle(const char *Title)
|
|||||||
|
|
||||||
void cSkinLCARSDisplayMenu::SetButtons(const char *Red, const char *Green, const char *Yellow, const char *Blue)
|
void cSkinLCARSDisplayMenu::SetButtons(const char *Red, const char *Green, const char *Yellow, const char *Blue)
|
||||||
{
|
{
|
||||||
|
const char *lutText[] = { Red, Green, Yellow, Blue };
|
||||||
|
tColor lutFg[] = { clrButtonRedFg, clrButtonGreenFg, clrButtonYellowFg, clrButtonBlueFg };
|
||||||
|
tColor lutBg[] = { clrButtonRedBg, clrButtonGreenBg, clrButtonYellowBg, clrButtonBlueBg };
|
||||||
const cFont *font = cFont::GetFont(fontSml);
|
const cFont *font = cFont::GetFont(fontSml);
|
||||||
if (MenuCategory() == mcMain) {
|
if (MenuCategory() == mcMain) {
|
||||||
DrawMainButton(Red, xd00, xd01, xd02, xd03, yd02, yd03, Theme.Color(clrButtonRedFg), Theme.Color(clrButtonRedBg), font);
|
DrawMainButton(lutText[Setup.ColorKey0], xd00, xd01, xd02, xd03, yd02, yd03, Theme.Color(lutFg[Setup.ColorKey0]), Theme.Color(lutBg[Setup.ColorKey0]), font);
|
||||||
DrawMainButton(Green, xd04, xd05, xd06, xd07, yd02, yd03, Theme.Color(clrButtonGreenFg), Theme.Color(clrButtonGreenBg), font);
|
DrawMainButton(lutText[Setup.ColorKey1], xd04, xd05, xd06, xd07, yd02, yd03, Theme.Color(lutFg[Setup.ColorKey1]), Theme.Color(lutBg[Setup.ColorKey1]), font);
|
||||||
DrawMainButton(Yellow, xd00, xd01, xd02, xd03, yd04, yd05, Theme.Color(clrButtonYellowFg), Theme.Color(clrButtonYellowBg), font);
|
DrawMainButton(lutText[Setup.ColorKey2], xd00, xd01, xd02, xd03, yd04, yd05, Theme.Color(lutFg[Setup.ColorKey2]), Theme.Color(lutBg[Setup.ColorKey2]), font);
|
||||||
DrawMainButton(Blue, xd04, xd05, xd06, xd07, yd04, yd05, Theme.Color(clrButtonBlueFg), Theme.Color(clrButtonBlueBg), font);
|
DrawMainButton(lutText[Setup.ColorKey3], xd04, xd05, xd06, xd07, yd04, yd05, Theme.Color(lutFg[Setup.ColorKey3]), Theme.Color(lutBg[Setup.ColorKey3]), font);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
int h = yb15 - yb14;
|
int h = yb15 - yb14;
|
||||||
osd->DrawText(xb02, yb14, Red, Theme.Color(clrButtonRedFg), Theme.Color(clrButtonRedBg), font, xb03 - xb02, h, taLeft | taBorder);
|
osd->DrawText(xb02, yb14, lutText[Setup.ColorKey0], Theme.Color(lutFg[Setup.ColorKey0]), Theme.Color(lutBg[Setup.ColorKey0]), font, xb03 - xb02, h, taLeft | taBorder);
|
||||||
osd->DrawText(xb06, yb14, Green, Theme.Color(clrButtonGreenFg), Theme.Color(clrButtonGreenBg), font, xb07 - xb06, h, taLeft | taBorder);
|
osd->DrawText(xb06, yb14, lutText[Setup.ColorKey1], Theme.Color(lutFg[Setup.ColorKey1]), Theme.Color(lutBg[Setup.ColorKey1]), font, xb07 - xb06, h, taLeft | taBorder);
|
||||||
osd->DrawText(xb10, yb14, Yellow, Theme.Color(clrButtonYellowFg), Theme.Color(clrButtonYellowBg), font, xb11 - xb10, h, taLeft | taBorder);
|
osd->DrawText(xb10, yb14, lutText[Setup.ColorKey2], Theme.Color(lutFg[Setup.ColorKey2]), Theme.Color(lutBg[Setup.ColorKey2]), font, xb11 - xb10, h, taLeft | taBorder);
|
||||||
osd->DrawText(xb14, yb14, Blue, Theme.Color(clrButtonBlueFg), Theme.Color(clrButtonBlueBg), font, xb15 - xb14, h, taLeft | taBorder);
|
osd->DrawText(xb14, yb14, lutText[Setup.ColorKey3], Theme.Color(lutFg[Setup.ColorKey3]), Theme.Color(lutBg[Setup.ColorKey3]), font, xb15 - xb14, h, taLeft | taBorder);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
13
skinsttng.c
13
skinsttng.c
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: skinsttng.c 2.15 2012/04/23 08:39:11 kls Exp $
|
* $Id: skinsttng.c 2.16 2012/09/09 11:39:06 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// "Star Trek: The Next Generation"(R) is a registered trademark of Paramount Pictures
|
// "Star Trek: The Next Generation"(R) is a registered trademark of Paramount Pictures
|
||||||
@ -571,6 +571,9 @@ void cSkinSTTNGDisplayMenu::SetTitle(const char *Title)
|
|||||||
|
|
||||||
void cSkinSTTNGDisplayMenu::SetButtons(const char *Red, const char *Green, const char *Yellow, const char *Blue)
|
void cSkinSTTNGDisplayMenu::SetButtons(const char *Red, const char *Green, const char *Yellow, const char *Blue)
|
||||||
{
|
{
|
||||||
|
const char *lutText[] = { Red, Green, Yellow, Blue };
|
||||||
|
tColor lutFg[] = { clrButtonRedFg, clrButtonGreenFg, clrButtonYellowFg, clrButtonBlueFg };
|
||||||
|
tColor lutBg[] = { clrButtonRedBg, clrButtonGreenBg, clrButtonYellowBg, clrButtonBlueBg };
|
||||||
cString date = DayDateTime();
|
cString date = DayDateTime();
|
||||||
const cFont *font = cFont::GetFont(fontSml);
|
const cFont *font = cFont::GetFont(fontSml);
|
||||||
int d = 2 * Gap;
|
int d = 2 * Gap;
|
||||||
@ -585,10 +588,10 @@ void cSkinSTTNGDisplayMenu::SetButtons(const char *Red, const char *Green, const
|
|||||||
osd->DrawRectangle(t1 + d2, y6, t2 - d2, y7 - 1, clrBlack);
|
osd->DrawRectangle(t1 + d2, y6, t2 - d2, y7 - 1, clrBlack);
|
||||||
osd->DrawRectangle(t2 + d2, y6, t3 - d2, y7 - 1, clrBlack);
|
osd->DrawRectangle(t2 + d2, y6, t3 - d2, y7 - 1, clrBlack);
|
||||||
osd->DrawRectangle(t3 + d2, y6, t4 - d2, y7 - 1, clrBlack);
|
osd->DrawRectangle(t3 + d2, y6, t4 - d2, y7 - 1, clrBlack);
|
||||||
osd->DrawText(t0 + d, y6, Red, Theme.Color(clrButtonRedFg), Theme.Color(clrButtonRedBg), font, t1 - t0 - 2 * d, 0, taCenter);
|
osd->DrawText(t0 + d, y6, lutText[Setup.ColorKey0], Theme.Color(lutFg[Setup.ColorKey0]), Theme.Color(lutBg[Setup.ColorKey0]), font, t1 - t0 - 2 * d, 0, taCenter);
|
||||||
osd->DrawText(t1 + d, y6, Green, Theme.Color(clrButtonGreenFg), Theme.Color(clrButtonGreenBg), font, t2 - t1 - 2 * d, 0, taCenter);
|
osd->DrawText(t1 + d, y6, lutText[Setup.ColorKey1], Theme.Color(lutFg[Setup.ColorKey1]), Theme.Color(lutBg[Setup.ColorKey1]), font, t2 - t1 - 2 * d, 0, taCenter);
|
||||||
osd->DrawText(t2 + d, y6, Yellow, Theme.Color(clrButtonYellowFg), Theme.Color(clrButtonYellowBg), font, t3 - t2 - 2 * d, 0, taCenter);
|
osd->DrawText(t2 + d, y6, lutText[Setup.ColorKey2], Theme.Color(lutFg[Setup.ColorKey2]), Theme.Color(lutBg[Setup.ColorKey2]), font, t3 - t2 - 2 * d, 0, taCenter);
|
||||||
osd->DrawText(t3 + d, y6, Blue, Theme.Color(clrButtonBlueFg), Theme.Color(clrButtonBlueBg), font, t4 - t3 - 2 * d, 0, taCenter);
|
osd->DrawText(t3 + d, y6, lutText[Setup.ColorKey3], Theme.Color(lutFg[Setup.ColorKey3]), Theme.Color(lutBg[Setup.ColorKey3]), font, t4 - t3 - 2 * d, 0, taCenter);
|
||||||
}
|
}
|
||||||
|
|
||||||
void cSkinSTTNGDisplayMenu::SetMessage(eMessageType Type, const char *Text)
|
void cSkinSTTNGDisplayMenu::SetMessage(eMessageType Type, const char *Text)
|
||||||
|
Loading…
Reference in New Issue
Block a user