mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Implemented setup option 'OSD/Number keys for characters'
This commit is contained in:
parent
fd42609883
commit
3aba9ec4e0
@ -2610,3 +2610,7 @@ Luis Fernandes <telping@gmail.com>
|
||||
Christopher Reimer <reimer.christopher@freenet.de>
|
||||
for reporting a problem with external Dolby Digital processing via the '-a' option
|
||||
in live mode and with TS recordings
|
||||
|
||||
Stefan Huskamp <coca_cola1@gmx.de>
|
||||
for suggesting to make entering characters via the number keys
|
||||
configurable
|
||||
|
5
HISTORY
5
HISTORY
@ -6411,7 +6411,7 @@ Video Disk Recorder Revision History
|
||||
- The new setup option "Folders in timer menu" controls whether the file names in
|
||||
the timer menu are shown with their full folder path.
|
||||
|
||||
2010-06-05: Version 1.7.15
|
||||
2010-06-06: Version 1.7.15
|
||||
|
||||
- Added Macedonian language texts (thanks to Dimitar Petrovski).
|
||||
- Updated the Estonian OSD texts (thanks to Arthur Konovalov).
|
||||
@ -6465,3 +6465,6 @@ Video Disk Recorder Revision History
|
||||
- Added detecting channels that use service type 0x16.
|
||||
- Added full handling of the stream types of Dolby Digital pids
|
||||
(thanks to Jose Alberto Reguero).
|
||||
- The new setup option "OSD/Number keys for characters" can be used to control whether
|
||||
the number keys can be used to enter characters in a text input field (suggested
|
||||
by Stefan Huskamp).
|
||||
|
5
MANUAL
5
MANUAL
@ -588,6 +588,11 @@ Version 1.6
|
||||
Controls whether the full folder path is shown in the
|
||||
"Timers" menu, or just the basic recording name.
|
||||
|
||||
Number keys for characters = yes
|
||||
Controls whether the number keys can be used to enter
|
||||
characters in a text input field. You may want to set this
|
||||
to "no" if you are using an actual keyboard to control VDR.
|
||||
|
||||
EPG:
|
||||
|
||||
EPG scan timeout = 5 The time (in hours) of user inactivity after which the
|
||||
|
5
config.c
5
config.c
@ -4,7 +4,7 @@
|
||||
* See the main source file 'vdr.c' for copyright information and
|
||||
* how to reach the author.
|
||||
*
|
||||
* $Id: config.c 2.12 2010/03/12 16:41:37 kls Exp $
|
||||
* $Id: config.c 2.13 2010/06/06 10:06:43 kls Exp $
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
@ -355,6 +355,7 @@ cSetup::cSetup(void)
|
||||
VpsMargin = 120;
|
||||
RecordingDirs = 1;
|
||||
FoldersInTimerMenu = 1;
|
||||
NumberKeysForChars = 1;
|
||||
VideoDisplayFormat = 1;
|
||||
VideoFormat = 0;
|
||||
UpdateChannels = 5;
|
||||
@ -545,6 +546,7 @@ bool cSetup::Parse(const char *Name, const char *Value)
|
||||
else if (!strcasecmp(Name, "VpsMargin")) VpsMargin = atoi(Value);
|
||||
else if (!strcasecmp(Name, "RecordingDirs")) RecordingDirs = atoi(Value);
|
||||
else if (!strcasecmp(Name, "FoldersInTimerMenu")) FoldersInTimerMenu = atoi(Value);
|
||||
else if (!strcasecmp(Name, "NumberKeysForChars")) NumberKeysForChars = atoi(Value);
|
||||
else if (!strcasecmp(Name, "VideoDisplayFormat")) VideoDisplayFormat = atoi(Value);
|
||||
else if (!strcasecmp(Name, "VideoFormat")) VideoFormat = atoi(Value);
|
||||
else if (!strcasecmp(Name, "UpdateChannels")) UpdateChannels = atoi(Value);
|
||||
@ -640,6 +642,7 @@ bool cSetup::Save(void)
|
||||
Store("VpsMargin", VpsMargin);
|
||||
Store("RecordingDirs", RecordingDirs);
|
||||
Store("FoldersInTimerMenu", FoldersInTimerMenu);
|
||||
Store("NumberKeysForChars", NumberKeysForChars);
|
||||
Store("VideoDisplayFormat", VideoDisplayFormat);
|
||||
Store("VideoFormat", VideoFormat);
|
||||
Store("UpdateChannels", UpdateChannels);
|
||||
|
3
config.h
3
config.h
@ -4,7 +4,7 @@
|
||||
* See the main source file 'vdr.c' for copyright information and
|
||||
* how to reach the author.
|
||||
*
|
||||
* $Id: config.h 2.26 2010/03/27 14:35:14 kls Exp $
|
||||
* $Id: config.h 2.27 2010/06/06 09:53:02 kls Exp $
|
||||
*/
|
||||
|
||||
#ifndef __CONFIG_H
|
||||
@ -254,6 +254,7 @@ public:
|
||||
int VpsMargin;
|
||||
int RecordingDirs;
|
||||
int FoldersInTimerMenu;
|
||||
int NumberKeysForChars;
|
||||
int VideoDisplayFormat;
|
||||
int VideoFormat;
|
||||
int UpdateChannels;
|
||||
|
3
menu.c
3
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.23 2010/05/13 13:32:01 kls Exp $
|
||||
* $Id: menu.c 2.24 2010/06/06 09:56:16 kls Exp $
|
||||
*/
|
||||
|
||||
#include "menu.h"
|
||||
@ -2569,6 +2569,7 @@ void cMenuSetupOSD::Set(void)
|
||||
Add(new cMenuEditBoolItem(tr("Setup.OSD$Menu key closes"), &data.MenuKeyCloses));
|
||||
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$Number keys for characters"), &data.NumberKeysForChars));
|
||||
SetCurrent(Get(current));
|
||||
Display();
|
||||
}
|
||||
|
97
menuitems.c
97
menuitems.c
@ -4,7 +4,7 @@
|
||||
* See the main source file 'vdr.c' for copyright information and
|
||||
* how to reach the author.
|
||||
*
|
||||
* $Id: menuitems.c 2.6 2010/02/16 14:44:35 kls Exp $
|
||||
* $Id: menuitems.c 2.7 2010/06/06 10:37:08 kls Exp $
|
||||
*/
|
||||
|
||||
#include "menuitems.h"
|
||||
@ -488,6 +488,20 @@ uint cMenuEditStrItem::Inc(uint c, bool Up)
|
||||
return *p;
|
||||
}
|
||||
|
||||
void cMenuEditStrItem::Type(uint c)
|
||||
{
|
||||
if (insert && lengthUtf8 < length - 1)
|
||||
Insert();
|
||||
valueUtf8[pos] = c;
|
||||
if (pos < length - 2)
|
||||
pos++;
|
||||
if (pos >= lengthUtf8) {
|
||||
valueUtf8[pos] = ' ';
|
||||
valueUtf8[pos + 1] = 0;
|
||||
lengthUtf8 = pos + 1;
|
||||
}
|
||||
}
|
||||
|
||||
void cMenuEditStrItem::Insert(void)
|
||||
{
|
||||
memmove(valueUtf8 + pos + 1, valueUtf8 + pos, (lengthUtf8 - pos + 1) * sizeof(*valueUtf8));
|
||||
@ -597,39 +611,43 @@ eOSState cMenuEditStrItem::ProcessKey(eKeys Key)
|
||||
case k0|k_Repeat ... k9|k_Repeat:
|
||||
case k0 ... k9: {
|
||||
if (InEditMode()) {
|
||||
if (!SameKey) {
|
||||
if (!newchar)
|
||||
AdvancePos();
|
||||
currentCharUtf8 = NULL;
|
||||
}
|
||||
if (!currentCharUtf8 || !*currentCharUtf8 || *currentCharUtf8 == '\t') {
|
||||
// find the beginning of the character map entry for Key
|
||||
int n = NORMALKEY(Key) - k0;
|
||||
currentCharUtf8 = charMapUtf8;
|
||||
while (n > 0 && *currentCharUtf8) {
|
||||
if (*currentCharUtf8++ == '\t')
|
||||
n--;
|
||||
}
|
||||
// find first allowed character
|
||||
while (*currentCharUtf8 && *currentCharUtf8 != '\t' && !IsAllowed(*currentCharUtf8))
|
||||
currentCharUtf8++;
|
||||
}
|
||||
if (*currentCharUtf8 && *currentCharUtf8 != '\t') {
|
||||
if (insert && newchar) {
|
||||
// create a new character in insert mode
|
||||
if (lengthUtf8 < length - 1)
|
||||
Insert();
|
||||
if (Setup.NumberKeysForChars) {
|
||||
if (!SameKey) {
|
||||
if (!newchar)
|
||||
AdvancePos();
|
||||
currentCharUtf8 = NULL;
|
||||
}
|
||||
if (!currentCharUtf8 || !*currentCharUtf8 || *currentCharUtf8 == '\t') {
|
||||
// find the beginning of the character map entry for Key
|
||||
int n = NORMALKEY(Key) - k0;
|
||||
currentCharUtf8 = charMapUtf8;
|
||||
while (n > 0 && *currentCharUtf8) {
|
||||
if (*currentCharUtf8++ == '\t')
|
||||
n--;
|
||||
}
|
||||
// find first allowed character
|
||||
while (*currentCharUtf8 && *currentCharUtf8 != '\t' && !IsAllowed(*currentCharUtf8))
|
||||
currentCharUtf8++;
|
||||
}
|
||||
if (*currentCharUtf8 && *currentCharUtf8 != '\t') {
|
||||
if (insert && newchar) {
|
||||
// create a new character in insert mode
|
||||
if (lengthUtf8 < length - 1)
|
||||
Insert();
|
||||
}
|
||||
valueUtf8[pos] = *currentCharUtf8;
|
||||
if (uppercase)
|
||||
valueUtf8[pos] = Utf8to(upper, valueUtf8[pos]);
|
||||
// find next allowed character
|
||||
do {
|
||||
currentCharUtf8++;
|
||||
} while (*currentCharUtf8 && *currentCharUtf8 != '\t' && !IsAllowed(*currentCharUtf8));
|
||||
newchar = false;
|
||||
autoAdvanceTimeout.Set(AUTO_ADVANCE_TIMEOUT);
|
||||
}
|
||||
valueUtf8[pos] = *currentCharUtf8;
|
||||
if (uppercase)
|
||||
valueUtf8[pos] = Utf8to(upper, valueUtf8[pos]);
|
||||
// find next allowed character
|
||||
do {
|
||||
currentCharUtf8++;
|
||||
} while (*currentCharUtf8 && *currentCharUtf8 != '\t' && !IsAllowed(*currentCharUtf8));
|
||||
newchar = false;
|
||||
autoAdvanceTimeout.Set(AUTO_ADVANCE_TIMEOUT);
|
||||
}
|
||||
else
|
||||
Type('0' + NORMALKEY(Key) - k0);
|
||||
}
|
||||
else
|
||||
return cMenuEditItem::ProcessKey(Key);
|
||||
@ -645,19 +663,8 @@ eOSState cMenuEditStrItem::ProcessKey(eKeys Key)
|
||||
default: if (InEditMode() && BASICKEY(Key) == kKbd) {
|
||||
int c = KEYKBD(Key);
|
||||
if (c <= 0xFF) { // FIXME what about other UTF-8 characters?
|
||||
uint *p = IsAllowed(Utf8to(lower, c));
|
||||
if (p) {
|
||||
if (insert && lengthUtf8 < length - 1)
|
||||
Insert();
|
||||
valueUtf8[pos] = c;
|
||||
if (pos < length - 2)
|
||||
pos++;
|
||||
if (pos >= lengthUtf8) {
|
||||
valueUtf8[pos] = ' ';
|
||||
valueUtf8[pos + 1] = 0;
|
||||
lengthUtf8 = pos + 1;
|
||||
}
|
||||
}
|
||||
if (IsAllowed(Utf8to(lower, c)))
|
||||
Type(c);
|
||||
else {
|
||||
switch (c) {
|
||||
case 0x7F: // backspace
|
||||
|
@ -4,7 +4,7 @@
|
||||
* See the main source file 'vdr.c' for copyright information and
|
||||
* how to reach the author.
|
||||
*
|
||||
* $Id: menuitems.h 2.3 2010/02/21 13:58:21 kls Exp $
|
||||
* $Id: menuitems.h 2.4 2010/06/06 10:32:38 kls Exp $
|
||||
*/
|
||||
|
||||
#ifndef __MENUITEMS_H
|
||||
@ -108,6 +108,7 @@ private:
|
||||
void AdvancePos(void);
|
||||
virtual void Set(void);
|
||||
uint Inc(uint c, bool Up);
|
||||
void Type(uint c);
|
||||
void Insert(void);
|
||||
void Delete(void);
|
||||
protected:
|
||||
|
@ -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: 2010-03-12 16:49+0100\n"
|
||||
"POT-Creation-Date: 2010-06-06 12:52+0200\n"
|
||||
"PO-Revision-Date: 2008-03-02 19:02+0100\n"
|
||||
"Last-Translator: Luca Olivetti <luca@ventoso.org>\n"
|
||||
"Language-Team: Catalanian\n"
|
||||
@ -842,6 +842,9 @@ msgstr "Gravacions en subcarpetes"
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.OSD$Number keys for characters"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "Guia de Programes"
|
||||
|
||||
|
@ -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: 2010-03-12 16:49+0100\n"
|
||||
"POT-Creation-Date: 2010-06-06 12:52+0200\n"
|
||||
"PO-Revision-Date: 2010-05-06 11:00+0200\n"
|
||||
"Last-Translator: Radek Šťastný <dedkus@gmail.com>\n"
|
||||
"Language-Team: Czech\n"
|
||||
@ -841,6 +841,9 @@ msgstr "Seznam nahrávek"
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr "Složky v menu časovače"
|
||||
|
||||
msgid "Setup.OSD$Number keys for characters"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "EPG"
|
||||
|
||||
|
@ -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: 2010-03-12 16:49+0100\n"
|
||||
"POT-Creation-Date: 2010-06-06 12:52+0200\n"
|
||||
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
|
||||
"Last-Translator: Mogens Elneff <mogens@elneff.dk>\n"
|
||||
"Language-Team: Danish\n"
|
||||
@ -839,6 +839,9 @@ msgstr "Optagelser i foldere"
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.OSD$Number keys for characters"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "EPG"
|
||||
|
||||
|
@ -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: 2010-03-12 16:49+0100\n"
|
||||
"POT-Creation-Date: 2010-06-06 12:52+0200\n"
|
||||
"PO-Revision-Date: 2010-01-16 16:46+0100\n"
|
||||
"Last-Translator: Klaus Schmidinger <kls@tvdr.de>\n"
|
||||
"Language-Team: German\n"
|
||||
@ -839,6 +839,9 @@ msgstr "Aufnahmeverzeichnisse"
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr "Verzeichnisse im Timer-Menü"
|
||||
|
||||
msgid "Setup.OSD$Number keys for characters"
|
||||
msgstr "Nummerntasten für Zeichen"
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "EPG"
|
||||
|
||||
|
@ -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: 2010-03-12 16:49+0100\n"
|
||||
"POT-Creation-Date: 2010-06-06 12:52+0200\n"
|
||||
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
|
||||
"Last-Translator: Dimitrios Dimitrakos <mail@dimitrios.de>\n"
|
||||
"Language-Team: Greek\n"
|
||||
@ -839,6 +839,9 @@ msgstr "
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.OSD$Number keys for characters"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
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: 2010-03-12 16:49+0100\n"
|
||||
"POT-Creation-Date: 2010-06-06 12:52+0200\n"
|
||||
"PO-Revision-Date: 2008-03-02 19:02+0100\n"
|
||||
"Last-Translator: Luca Olivetti <luca@ventoso.org>\n"
|
||||
"Language-Team: Spanish\n"
|
||||
@ -840,6 +840,9 @@ msgstr "Mostrar directorios de grabaciones"
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.OSD$Number keys for characters"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "Guía de Programación"
|
||||
|
||||
|
@ -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: 2010-03-12 16:49+0100\n"
|
||||
"POT-Creation-Date: 2010-06-06 12:52+0200\n"
|
||||
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
|
||||
"Last-Translator: Arthur Konovalov <artlov@gmail.com>\n"
|
||||
"Language-Team: Estonian\n"
|
||||
@ -839,6 +839,9 @@ msgstr "Kausta nime salvestamine"
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr "Kaustad taimeri menüüs"
|
||||
|
||||
msgid "Setup.OSD$Number keys for characters"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "EPG"
|
||||
|
||||
|
@ -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: 2010-03-12 16:49+0100\n"
|
||||
"POT-Creation-Date: 2010-06-06 12:52+0200\n"
|
||||
"PO-Revision-Date: 2007-08-15 15:52+0200\n"
|
||||
"Last-Translator: Rolf Ahrenberg <rahrenbe@cc.hut.fi>\n"
|
||||
"Language-Team: Finnish\n"
|
||||
@ -842,6 +842,9 @@ msgstr "Näytä tallennehakemistot"
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr "Näytä kansiot ajastinvalikossa"
|
||||
|
||||
msgid "Setup.OSD$Number keys for characters"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "Ohjelmaopas"
|
||||
|
||||
|
@ -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: 2010-03-12 16:49+0100\n"
|
||||
"POT-Creation-Date: 2010-06-06 12:52+0200\n"
|
||||
"PO-Revision-Date: 2008-02-27 18:14+0100\n"
|
||||
"Last-Translator: Jean-Claude Repetto <jc@repetto.org>\n"
|
||||
"Language-Team: French\n"
|
||||
@ -845,6 +845,9 @@ msgstr "Dossiers d'enregistrements"
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.OSD$Number keys for characters"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "Guide des programmes"
|
||||
|
||||
|
@ -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: 2010-03-12 16:49+0100\n"
|
||||
"POT-Creation-Date: 2010-06-06 12:52+0200\n"
|
||||
"PO-Revision-Date: 2008-03-17 19:00+0100\n"
|
||||
"Last-Translator: Adrian Caval <anrxc@sysphere.org>\n"
|
||||
"Language-Team: Croatian\n"
|
||||
@ -841,6 +841,9 @@ msgstr "Imenik za snimke"
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.OSD$Number keys for characters"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "EPG (elektronski programski vodiè)"
|
||||
|
||||
|
@ -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: 2010-03-12 16:49+0100\n"
|
||||
"POT-Creation-Date: 2010-06-06 12:52+0200\n"
|
||||
"PO-Revision-Date: 2007-12-01 21:42+0200\n"
|
||||
"Last-Translator: István Füley <ifuley@tigercomp.ro>\n"
|
||||
"Language-Team: Hungarian\n"
|
||||
@ -842,6 +842,9 @@ msgstr "Felv
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.OSD$Number keys for characters"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "EPG"
|
||||
|
||||
|
@ -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: 2010-03-12 16:49+0100\n"
|
||||
"POT-Creation-Date: 2010-06-06 12:52+0200\n"
|
||||
"PO-Revision-Date: 2010-03-28 22:49+0100\n"
|
||||
"Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n"
|
||||
"Language-Team: Italian\n"
|
||||
@ -846,6 +846,9 @@ msgstr "Directory di registrazione"
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr "Cartelle nel menu timer"
|
||||
|
||||
msgid "Setup.OSD$Number keys for characters"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "Guida programmi EPG"
|
||||
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VDR 1.7.12\n"
|
||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||
"POT-Creation-Date: 2010-03-12 16:49+0100\n"
|
||||
"POT-Creation-Date: 2010-06-06 12:52+0200\n"
|
||||
"PO-Revision-Date: 2010-02-22 18:05+0200\n"
|
||||
"Last-Translator: Valdemaras Pipiras <varas@ambernet.lt>\n"
|
||||
"Language-Team: Lithuanian\n"
|
||||
@ -839,6 +839,9 @@ msgstr "Įrašų katalogai"
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.OSD$Number keys for characters"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "Elektroninis programų gidas (EPG)"
|
||||
|
||||
|
@ -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: 2010-03-18 09:32+0100\n"
|
||||
"POT-Creation-Date: 2010-06-06 12:52+0200\n"
|
||||
"PO-Revision-Date: 2010-03-11 00:54+0100\n"
|
||||
"Last-Translator: Dimitar Petrovski <dimeptr@gmail.com>\n"
|
||||
"Language-Team: Macedonian <en@li.org>\n"
|
||||
@ -840,6 +840,9 @@ msgstr "Директориум за снимки"
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr "Директориуми во менито за тајмер"
|
||||
|
||||
msgid "Setup.OSD$Number keys for characters"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "EPG (електронски водич на програми)"
|
||||
|
||||
|
@ -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: 2010-03-12 16:49+0100\n"
|
||||
"POT-Creation-Date: 2010-06-06 12:52+0200\n"
|
||||
"PO-Revision-Date: 2008-02-26 17:20+0100\n"
|
||||
"Last-Translator: Johan Schuring <johan.schuring@vetteblei.nl>\n"
|
||||
"Language-Team: Dutch\n"
|
||||
@ -843,6 +843,9 @@ msgstr "Opname mappen"
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.OSD$Number keys for characters"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "EPG"
|
||||
|
||||
|
@ -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: 2010-03-12 16:49+0100\n"
|
||||
"POT-Creation-Date: 2010-06-06 12:52+0200\n"
|
||||
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
|
||||
"Last-Translator: Truls Slevigen <truls@slevigen.no>\n"
|
||||
"Language-Team: Norwegian\n"
|
||||
@ -840,6 +840,9 @@ msgstr "Kataloger til opptak"
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.OSD$Number keys for characters"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "Programoversikt"
|
||||
|
||||
|
@ -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: 2010-03-12 16:49+0100\n"
|
||||
"POT-Creation-Date: 2010-06-06 12:52+0200\n"
|
||||
"PO-Revision-Date: 2008-03-09 12:59+0100\n"
|
||||
"Last-Translator: Michael Rakowski <mrak@gmx.de>\n"
|
||||
"Language-Team: Polish\n"
|
||||
@ -840,6 +840,9 @@ msgstr "Katalogi nagra
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.OSD$Number keys for characters"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "EPG"
|
||||
|
||||
|
@ -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: 2010-03-12 16:49+0100\n"
|
||||
"POT-Creation-Date: 2010-06-06 12:52+0200\n"
|
||||
"PO-Revision-Date: 2008-03-18 17:04+0100\n"
|
||||
"Last-Translator: anonymous\n"
|
||||
"Language-Team: Portuguese\n"
|
||||
@ -839,6 +839,9 @@ msgstr "Directorias de grava
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.OSD$Number keys for characters"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "Guia de programação"
|
||||
|
||||
|
@ -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: 2010-03-12 16:49+0100\n"
|
||||
"POT-Creation-Date: 2010-06-06 12:52+0200\n"
|
||||
"PO-Revision-Date: 2010-02-11 13:38+0100\n"
|
||||
"Last-Translator: Lucian Muresan <lucianm@users.sourceforge.net>\n"
|
||||
"Language-Team: Romanian\n"
|
||||
@ -842,6 +842,9 @@ msgstr "Directoare
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.OSD$Number keys for characters"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "EPG"
|
||||
|
||||
|
@ -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: 2010-03-12 16:49+0100\n"
|
||||
"POT-Creation-Date: 2010-06-06 12:52+0200\n"
|
||||
"PO-Revision-Date: 2008-12-15 14:37+0100\n"
|
||||
"Last-Translator: Oleg Roitburd <oleg@roitburd.de>\n"
|
||||
"Language-Team: Russian\n"
|
||||
@ -840,6 +840,9 @@ msgstr "
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.OSD$Number keys for characters"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
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: 2010-03-12 16:49+0100\n"
|
||||
"POT-Creation-Date: 2010-06-06 12:52+0200\n"
|
||||
"PO-Revision-Date: 2009-09-30 12:50+0100\n"
|
||||
"Last-Translator: Milan Hrala <hrala.milan@gmail.com>\n"
|
||||
"Language-Team: Slovak\n"
|
||||
@ -840,6 +840,9 @@ msgstr "Zoznam z
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.OSD$Number keys for characters"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "EPG"
|
||||
|
||||
|
@ -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: 2010-03-12 16:49+0100\n"
|
||||
"POT-Creation-Date: 2010-06-06 12:52+0200\n"
|
||||
"PO-Revision-Date: 2008-02-28 19:44+0100\n"
|
||||
"Last-Translator: Matjaz Thaler <matjaz.thaler@guest.arnes.si>\n"
|
||||
"Language-Team: Slovenian\n"
|
||||
@ -840,6 +840,9 @@ msgstr "Direktoriji za posnetke"
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.OSD$Number keys for characters"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "Programski vodnik"
|
||||
|
||||
|
@ -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: 2010-03-12 16:49+0100\n"
|
||||
"POT-Creation-Date: 2010-06-06 12:52+0200\n"
|
||||
"PO-Revision-Date: 2008-03-12 18:25+0100\n"
|
||||
"Last-Translator: Magnus Andersson <svankan@bahnhof.se>\n"
|
||||
"Language-Team: Swedish\n"
|
||||
@ -842,6 +842,9 @@ msgstr "Kataloger f
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.OSD$Number keys for characters"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "EPG"
|
||||
|
||||
|
@ -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: 2010-03-12 16:49+0100\n"
|
||||
"POT-Creation-Date: 2010-06-06 12:52+0200\n"
|
||||
"PO-Revision-Date: 2008-02-28 00:33+0100\n"
|
||||
"Last-Translator: Oktay Yolgeçen <oktay_73@yahoo.de>\n"
|
||||
"Language-Team: Turkish\n"
|
||||
@ -839,6 +839,9 @@ msgstr "Kay
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.OSD$Number keys for characters"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "EPG"
|
||||
|
||||
|
@ -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: 2010-04-25 15:45+0200\n"
|
||||
"POT-Creation-Date: 2010-06-06 12:52+0200\n"
|
||||
"PO-Revision-Date: 2010-04-25 16:35+0200\n"
|
||||
"Last-Translator: Yarema aka Knedlyk <yupadmin@gmail.com>\n"
|
||||
"Language-Team: Ukrainian\n"
|
||||
@ -839,6 +839,9 @@ msgstr "Каталоги зберігання записів"
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr "Каталоги в меню таймера"
|
||||
|
||||
msgid "Setup.OSD$Number keys for characters"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "Телегід (EPG)"
|
||||
|
||||
|
@ -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: 2010-03-12 16:49+0100\n"
|
||||
"POT-Creation-Date: 2010-06-06 12:52+0200\n"
|
||||
"PO-Revision-Date: 2009-09-23 23:50+0800\n"
|
||||
"Last-Translator: Nan Feng <nfgx@21cn.com>\n"
|
||||
"Language-Team: Chinese\n"
|
||||
@ -842,6 +842,9 @@ msgstr "录像目录"
|
||||
msgid "Setup.OSD$Folders in timer menu"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setup.OSD$Number keys for characters"
|
||||
msgstr ""
|
||||
|
||||
msgid "EPG"
|
||||
msgstr "电子节目单设置"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user