mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
The new setup option "Miscellaneous/Show channel names with source" can be used to turn on adding the source character to channel names whenever they are displayed
This commit is contained in:
parent
1912d36f00
commit
45d261fb74
4
HISTORY
4
HISTORY
@ -7148,7 +7148,7 @@ Video Disk Recorder Revision History
|
|||||||
caching the information whether a recording is stored on the video directory file
|
caching the information whether a recording is stored on the video directory file
|
||||||
system within the cRecording data (based on a patch from Torsten Lang).
|
system within the cRecording data (based on a patch from Torsten Lang).
|
||||||
|
|
||||||
2012-06-13: Version 1.7.29
|
2012-06-17: Version 1.7.29
|
||||||
|
|
||||||
- Added a missing template specification to the c'tor of cSortedTimers (thanks to Udo
|
- Added a missing template specification to the c'tor of cSortedTimers (thanks to Udo
|
||||||
Richter).
|
Richter).
|
||||||
@ -7187,3 +7187,5 @@ Video Disk Recorder Revision History
|
|||||||
is currently open.
|
is currently open.
|
||||||
- Changed some of the colors in the LCARS skin (you may need to delete the file
|
- Changed some of the colors in the LCARS skin (you may need to delete the file
|
||||||
lcars-default.theme from your themes directory to see these changes).
|
lcars-default.theme from your themes directory to see these changes).
|
||||||
|
- The new setup option "Miscellaneous/Show channel names with source" can be used to
|
||||||
|
turn on adding the source character to channel names whenever they are displayed.
|
||||||
|
5
MANUAL
5
MANUAL
@ -913,6 +913,11 @@ Version 1.6
|
|||||||
wrap around the beginning or end of the channel list if
|
wrap around the beginning or end of the channel list if
|
||||||
this parameter is set to 'yes'.
|
this parameter is set to 'yes'.
|
||||||
|
|
||||||
|
Show channel names with source = no
|
||||||
|
If this option is turned on, channel names will be displayed
|
||||||
|
with the source appended to them, as in "ZDF (S)", where
|
||||||
|
'S' stands for "Satellite".
|
||||||
|
|
||||||
Emergency exit = yes If, for some reason, a recording fails because the video
|
Emergency exit = yes If, for some reason, a recording fails because the video
|
||||||
data stream is broken, or the CAM doesn't decrypt etc.,
|
data stream is broken, or the CAM doesn't decrypt etc.,
|
||||||
VDR automatically exits in order to allow the surrounding
|
VDR automatically exits in order to allow the surrounding
|
||||||
|
36
channels.c
36
channels.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: channels.c 2.22 2012/04/01 09:27:08 kls Exp $
|
* $Id: channels.c 2.23 2012/06/17 11:53:10 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "channels.h"
|
#include "channels.h"
|
||||||
@ -112,10 +112,34 @@ cChannel& cChannel::operator= (const cChannel &Channel)
|
|||||||
provider = strcpyrealloc(provider, Channel.provider);
|
provider = strcpyrealloc(provider, Channel.provider);
|
||||||
portalName = strcpyrealloc(portalName, Channel.portalName);
|
portalName = strcpyrealloc(portalName, Channel.portalName);
|
||||||
memcpy(&__BeginData__, &Channel.__BeginData__, (char *)&Channel.__EndData__ - (char *)&Channel.__BeginData__);
|
memcpy(&__BeginData__, &Channel.__BeginData__, (char *)&Channel.__EndData__ - (char *)&Channel.__BeginData__);
|
||||||
|
nameSource = NULL; // these will be recalculated automatically
|
||||||
|
shortNameSource = NULL;
|
||||||
parameters = Channel.parameters;
|
parameters = Channel.parameters;
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const char *cChannel::Name(void) const
|
||||||
|
{
|
||||||
|
if (Setup.ShowChannelNamesWithSource) {
|
||||||
|
if (isempty(nameSource))
|
||||||
|
nameSource = cString::sprintf("%s (%c)", name, cSource::ToChar(source));
|
||||||
|
return nameSource;
|
||||||
|
}
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
const char *cChannel::ShortName(bool OrName) const
|
||||||
|
{
|
||||||
|
if (OrName && isempty(shortName))
|
||||||
|
return Name();
|
||||||
|
if (Setup.ShowChannelNamesWithSource) {
|
||||||
|
if (isempty(shortNameSource))
|
||||||
|
shortNameSource = cString::sprintf("%s (%c)", shortName, cSource::ToChar(source));
|
||||||
|
return shortNameSource;
|
||||||
|
}
|
||||||
|
return shortName;
|
||||||
|
}
|
||||||
|
|
||||||
int cChannel::Transponder(int Frequency, char Polarization)
|
int cChannel::Transponder(int Frequency, char Polarization)
|
||||||
{
|
{
|
||||||
// some satellites have transponders at the same frequency, just with different polarization:
|
// some satellites have transponders at the same frequency, just with different polarization:
|
||||||
@ -233,10 +257,14 @@ void cChannel::SetName(const char *Name, const char *ShortName, const char *Prov
|
|||||||
modification |= CHANNELMOD_NAME;
|
modification |= CHANNELMOD_NAME;
|
||||||
Channels.SetModified();
|
Channels.SetModified();
|
||||||
}
|
}
|
||||||
if (nn)
|
if (nn) {
|
||||||
name = strcpyrealloc(name, Name);
|
name = strcpyrealloc(name, Name);
|
||||||
if (ns)
|
nameSource = NULL;
|
||||||
|
}
|
||||||
|
if (ns) {
|
||||||
shortName = strcpyrealloc(shortName, ShortName);
|
shortName = strcpyrealloc(shortName, ShortName);
|
||||||
|
shortNameSource = NULL;
|
||||||
|
}
|
||||||
if (np)
|
if (np)
|
||||||
provider = strcpyrealloc(provider, Provider);
|
provider = strcpyrealloc(provider, Provider);
|
||||||
}
|
}
|
||||||
@ -721,6 +749,8 @@ bool cChannel::Parse(const char *s)
|
|||||||
free(tpidbuf);
|
free(tpidbuf);
|
||||||
free(caidbuf);
|
free(caidbuf);
|
||||||
free(namebuf);
|
free(namebuf);
|
||||||
|
nameSource = NULL;
|
||||||
|
shortNameSource = NULL;
|
||||||
if (!GetChannelID().Valid()) {
|
if (!GetChannelID().Valid()) {
|
||||||
esyslog("ERROR: channel data results in invalid ID!");
|
esyslog("ERROR: channel data results in invalid ID!");
|
||||||
return false;
|
return false;
|
||||||
|
@ -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: channels.h 2.15 2012/03/11 11:46:39 kls Exp $
|
* $Id: channels.h 2.16 2012/06/17 11:21:33 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __CHANNELS_H
|
#ifndef __CHANNELS_H
|
||||||
@ -123,6 +123,8 @@ private:
|
|||||||
int number; // Sequence number assigned on load
|
int number; // Sequence number assigned on load
|
||||||
bool groupSep;
|
bool groupSep;
|
||||||
int __EndData__;
|
int __EndData__;
|
||||||
|
mutable cString nameSource;
|
||||||
|
mutable cString shortNameSource;
|
||||||
cString parameters;
|
cString parameters;
|
||||||
int modification;
|
int modification;
|
||||||
mutable const cSchedule *schedule;
|
mutable const cSchedule *schedule;
|
||||||
@ -137,8 +139,8 @@ public:
|
|||||||
cString ToText(void) const;
|
cString ToText(void) const;
|
||||||
bool Parse(const char *s);
|
bool Parse(const char *s);
|
||||||
bool Save(FILE *f);
|
bool Save(FILE *f);
|
||||||
const char *Name(void) const { return name; }
|
const char *Name(void) const;
|
||||||
const char *ShortName(bool OrName = false) const { return (OrName && isempty(shortName)) ? name : shortName; }
|
const char *ShortName(bool OrName = false) const;
|
||||||
const char *Provider(void) const { return provider; }
|
const char *Provider(void) const { return provider; }
|
||||||
const char *PortalName(void) const { return portalName; }
|
const char *PortalName(void) const { return portalName; }
|
||||||
int Frequency(void) const { return frequency; } ///< Returns the actual frequency, as given in 'channels.conf'
|
int Frequency(void) const { return frequency; } ///< Returns the actual frequency, as given in 'channels.conf'
|
||||||
|
5
config.c
5
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.25 2012/06/13 09:12:53 kls Exp $
|
* $Id: config.c 2.26 2012/06/17 12:27:07 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
@ -462,6 +462,7 @@ cSetup::cSetup(void)
|
|||||||
DeviceBondings = "";
|
DeviceBondings = "";
|
||||||
InitialVolume = -1;
|
InitialVolume = -1;
|
||||||
ChannelsWrap = 0;
|
ChannelsWrap = 0;
|
||||||
|
ShowChannelNamesWithSource = 0;
|
||||||
EmergencyExit = 1;
|
EmergencyExit = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -657,6 +658,7 @@ bool cSetup::Parse(const char *Name, const char *Value)
|
|||||||
else if (!strcasecmp(Name, "InitialVolume")) InitialVolume = atoi(Value);
|
else if (!strcasecmp(Name, "InitialVolume")) InitialVolume = atoi(Value);
|
||||||
else if (!strcasecmp(Name, "DeviceBondings")) DeviceBondings = Value;
|
else if (!strcasecmp(Name, "DeviceBondings")) DeviceBondings = Value;
|
||||||
else if (!strcasecmp(Name, "ChannelsWrap")) ChannelsWrap = atoi(Value);
|
else if (!strcasecmp(Name, "ChannelsWrap")) ChannelsWrap = atoi(Value);
|
||||||
|
else if (!strcasecmp(Name, "ShowChannelNamesWithSource")) ShowChannelNamesWithSource = atoi(Value);
|
||||||
else if (!strcasecmp(Name, "EmergencyExit")) EmergencyExit = atoi(Value);
|
else if (!strcasecmp(Name, "EmergencyExit")) EmergencyExit = atoi(Value);
|
||||||
else
|
else
|
||||||
return false;
|
return false;
|
||||||
@ -755,6 +757,7 @@ bool cSetup::Save(void)
|
|||||||
Store("InitialVolume", InitialVolume);
|
Store("InitialVolume", InitialVolume);
|
||||||
Store("DeviceBondings", DeviceBondings);
|
Store("DeviceBondings", DeviceBondings);
|
||||||
Store("ChannelsWrap", ChannelsWrap);
|
Store("ChannelsWrap", ChannelsWrap);
|
||||||
|
Store("ShowChannelNamesWithSource", ShowChannelNamesWithSource);
|
||||||
Store("EmergencyExit", EmergencyExit);
|
Store("EmergencyExit", EmergencyExit);
|
||||||
|
|
||||||
Sort();
|
Sort();
|
||||||
|
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.48 2012/06/03 13:04:49 kls Exp $
|
* $Id: config.h 2.49 2012/06/17 11:14:50 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __CONFIG_H
|
#ifndef __CONFIG_H
|
||||||
@ -323,6 +323,7 @@ public:
|
|||||||
int CurrentDolby;
|
int CurrentDolby;
|
||||||
int InitialVolume;
|
int InitialVolume;
|
||||||
int ChannelsWrap;
|
int ChannelsWrap;
|
||||||
|
int ShowChannelNamesWithSource;
|
||||||
int EmergencyExit;
|
int EmergencyExit;
|
||||||
int __EndData__;
|
int __EndData__;
|
||||||
cString InitialChannel;
|
cString InitialChannel;
|
||||||
|
3
menu.c
3
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.57 2012/06/13 13:03:26 kls Exp $
|
* $Id: menu.c 2.58 2012/06/17 11:12:25 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "menu.h"
|
#include "menu.h"
|
||||||
@ -3158,6 +3158,7 @@ cMenuSetupMisc::cMenuSetupMisc(void)
|
|||||||
Add(new cMenuEditChanItem(tr("Setup.Miscellaneous$Initial channel"), &data.InitialChannel, tr("Setup.Miscellaneous$as before")));
|
Add(new cMenuEditChanItem(tr("Setup.Miscellaneous$Initial channel"), &data.InitialChannel, tr("Setup.Miscellaneous$as before")));
|
||||||
Add(new cMenuEditIntItem( tr("Setup.Miscellaneous$Initial volume"), &data.InitialVolume, -1, 255, tr("Setup.Miscellaneous$as before")));
|
Add(new cMenuEditIntItem( tr("Setup.Miscellaneous$Initial volume"), &data.InitialVolume, -1, 255, tr("Setup.Miscellaneous$as before")));
|
||||||
Add(new cMenuEditBoolItem(tr("Setup.Miscellaneous$Channels wrap"), &data.ChannelsWrap));
|
Add(new cMenuEditBoolItem(tr("Setup.Miscellaneous$Channels wrap"), &data.ChannelsWrap));
|
||||||
|
Add(new cMenuEditBoolItem(tr("Setup.Miscellaneous$Show channel names with source"), &data.ShowChannelNamesWithSource));
|
||||||
Add(new cMenuEditBoolItem(tr("Setup.Miscellaneous$Emergency exit"), &data.EmergencyExit));
|
Add(new cMenuEditBoolItem(tr("Setup.Miscellaneous$Emergency exit"), &data.EmergencyExit));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
5
po/ar.po
5
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-02 15:10+0200\n"
|
"POT-Creation-Date: 2012-06-17 13:59+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"
|
||||||
@ -1146,6 +1146,9 @@ msgstr "فعل الصوت"
|
|||||||
msgid "Setup.Miscellaneous$Channels wrap"
|
msgid "Setup.Miscellaneous$Channels wrap"
|
||||||
msgstr "كسابق"
|
msgstr "كسابق"
|
||||||
|
|
||||||
|
msgid "Setup.Miscellaneous$Show channel names with source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Miscellaneous$Emergency exit"
|
msgid "Setup.Miscellaneous$Emergency exit"
|
||||||
msgstr "خروج طارىء"
|
msgstr "خروج طارىء"
|
||||||
|
|
||||||
|
@ -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-02 15:10+0200\n"
|
"POT-Creation-Date: 2012-06-17 13:59+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"
|
||||||
@ -1122,6 +1122,9 @@ msgstr "Volum inicial"
|
|||||||
msgid "Setup.Miscellaneous$Channels wrap"
|
msgid "Setup.Miscellaneous$Channels wrap"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Miscellaneous$Show channel names with source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Miscellaneous$Emergency exit"
|
msgid "Setup.Miscellaneous$Emergency exit"
|
||||||
msgstr "Sortida d'emergència"
|
msgstr "Sortida d'emergència"
|
||||||
|
|
||||||
|
@ -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-02 15:10+0200\n"
|
"POT-Creation-Date: 2012-06-17 13:59+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"
|
||||||
@ -1121,6 +1121,9 @@ msgstr "Hlasitost po spuštění"
|
|||||||
msgid "Setup.Miscellaneous$Channels wrap"
|
msgid "Setup.Miscellaneous$Channels wrap"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Miscellaneous$Show channel names with source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Miscellaneous$Emergency exit"
|
msgid "Setup.Miscellaneous$Emergency exit"
|
||||||
msgstr "Nouzové ukončení"
|
msgstr "Nouzové ukončení"
|
||||||
|
|
||||||
|
@ -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-02 15:10+0200\n"
|
"POT-Creation-Date: 2012-06-17 13:59+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"
|
||||||
@ -1119,6 +1119,9 @@ msgstr "Lydstyrke ved opstart"
|
|||||||
msgid "Setup.Miscellaneous$Channels wrap"
|
msgid "Setup.Miscellaneous$Channels wrap"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Miscellaneous$Show channel names with source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Miscellaneous$Emergency exit"
|
msgid "Setup.Miscellaneous$Emergency exit"
|
||||||
msgstr "Nødudgang"
|
msgstr "Nødudgang"
|
||||||
|
|
||||||
|
@ -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-02 15:10+0200\n"
|
"POT-Creation-Date: 2012-06-17 13:59+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"
|
||||||
@ -1119,6 +1119,9 @@ msgstr "Lautst
|
|||||||
msgid "Setup.Miscellaneous$Channels wrap"
|
msgid "Setup.Miscellaneous$Channels wrap"
|
||||||
msgstr "Rundum zappen"
|
msgstr "Rundum zappen"
|
||||||
|
|
||||||
|
msgid "Setup.Miscellaneous$Show channel names with source"
|
||||||
|
msgstr "Kanalnamen mit Quelle anzeigen"
|
||||||
|
|
||||||
msgid "Setup.Miscellaneous$Emergency exit"
|
msgid "Setup.Miscellaneous$Emergency exit"
|
||||||
msgstr "Notausstieg"
|
msgstr "Notausstieg"
|
||||||
|
|
||||||
|
@ -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-02 15:10+0200\n"
|
"POT-Creation-Date: 2012-06-17 13:59+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"
|
||||||
@ -1119,6 +1119,9 @@ msgstr ""
|
|||||||
msgid "Setup.Miscellaneous$Channels wrap"
|
msgid "Setup.Miscellaneous$Channels wrap"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Miscellaneous$Show channel names with source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Miscellaneous$Emergency exit"
|
msgid "Setup.Miscellaneous$Emergency exit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -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-02 15:10+0200\n"
|
"POT-Creation-Date: 2012-06-17 13:59+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"
|
||||||
@ -1120,6 +1120,9 @@ msgstr "Volumen inicial"
|
|||||||
msgid "Setup.Miscellaneous$Channels wrap"
|
msgid "Setup.Miscellaneous$Channels wrap"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Miscellaneous$Show channel names with source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Miscellaneous$Emergency exit"
|
msgid "Setup.Miscellaneous$Emergency exit"
|
||||||
msgstr "Salida de emergencia"
|
msgstr "Salida de emergencia"
|
||||||
|
|
||||||
|
@ -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-02 15:10+0200\n"
|
"POT-Creation-Date: 2012-06-17 13:59+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"
|
||||||
@ -1119,6 +1119,9 @@ msgstr "Helitugevus käivitamisel"
|
|||||||
msgid "Setup.Miscellaneous$Channels wrap"
|
msgid "Setup.Miscellaneous$Channels wrap"
|
||||||
msgstr "Kanalite ringkerimine"
|
msgstr "Kanalite ringkerimine"
|
||||||
|
|
||||||
|
msgid "Setup.Miscellaneous$Show channel names with source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Miscellaneous$Emergency exit"
|
msgid "Setup.Miscellaneous$Emergency exit"
|
||||||
msgstr "Hädaväljumine"
|
msgstr "Hädaväljumine"
|
||||||
|
|
||||||
|
@ -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-02 15:10+0200\n"
|
"POT-Creation-Date: 2012-06-17 13:59+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"
|
||||||
@ -1122,6 +1122,9 @@ msgstr "Äänenvoimakkuus käynnistettäessä"
|
|||||||
msgid "Setup.Miscellaneous$Channels wrap"
|
msgid "Setup.Miscellaneous$Channels wrap"
|
||||||
msgstr "Kanavien rullaus"
|
msgstr "Kanavien rullaus"
|
||||||
|
|
||||||
|
msgid "Setup.Miscellaneous$Show channel names with source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Miscellaneous$Emergency exit"
|
msgid "Setup.Miscellaneous$Emergency exit"
|
||||||
msgstr "Käytä hätäsammutusta"
|
msgstr "Käytä hätäsammutusta"
|
||||||
|
|
||||||
|
@ -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-02 15:10+0200\n"
|
"POT-Creation-Date: 2012-06-17 13:59+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"
|
||||||
@ -1125,6 +1125,9 @@ msgstr "Volume initial"
|
|||||||
msgid "Setup.Miscellaneous$Channels wrap"
|
msgid "Setup.Miscellaneous$Channels wrap"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Miscellaneous$Show channel names with source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Miscellaneous$Emergency exit"
|
msgid "Setup.Miscellaneous$Emergency exit"
|
||||||
msgstr "Arrêt d'urgence"
|
msgstr "Arrêt d'urgence"
|
||||||
|
|
||||||
|
@ -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-02 15:10+0200\n"
|
"POT-Creation-Date: 2012-06-17 13:59+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"
|
||||||
@ -1121,6 +1121,9 @@ msgstr "Po
|
|||||||
msgid "Setup.Miscellaneous$Channels wrap"
|
msgid "Setup.Miscellaneous$Channels wrap"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Miscellaneous$Show channel names with source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Miscellaneous$Emergency exit"
|
msgid "Setup.Miscellaneous$Emergency exit"
|
||||||
msgstr "Izlaz u sluèaju nu¾de"
|
msgstr "Izlaz u sluèaju nu¾de"
|
||||||
|
|
||||||
|
@ -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-02 15:10+0200\n"
|
"POT-Creation-Date: 2012-06-17 13:59+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"
|
||||||
@ -1123,6 +1123,9 @@ msgstr "Hanger
|
|||||||
msgid "Setup.Miscellaneous$Channels wrap"
|
msgid "Setup.Miscellaneous$Channels wrap"
|
||||||
msgstr "Csatornalista görgetése"
|
msgstr "Csatornalista görgetése"
|
||||||
|
|
||||||
|
msgid "Setup.Miscellaneous$Show channel names with source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Miscellaneous$Emergency exit"
|
msgid "Setup.Miscellaneous$Emergency exit"
|
||||||
msgstr "Vészleállítás"
|
msgstr "Vészleállítás"
|
||||||
|
|
||||||
|
@ -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-02 15:10+0200\n"
|
"POT-Creation-Date: 2012-06-17 13:59+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"
|
||||||
@ -1126,6 +1126,9 @@ msgstr "Volume iniziale"
|
|||||||
msgid "Setup.Miscellaneous$Channels wrap"
|
msgid "Setup.Miscellaneous$Channels wrap"
|
||||||
msgstr "Riavvolgimento canali"
|
msgstr "Riavvolgimento canali"
|
||||||
|
|
||||||
|
msgid "Setup.Miscellaneous$Show channel names with source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Miscellaneous$Emergency exit"
|
msgid "Setup.Miscellaneous$Emergency exit"
|
||||||
msgstr "Uscita di emergenza"
|
msgstr "Uscita di emergenza"
|
||||||
|
|
||||||
|
@ -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-02 15:10+0200\n"
|
"POT-Creation-Date: 2012-06-17 13:59+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"
|
||||||
@ -1119,6 +1119,9 @@ msgstr "Garsas įjungimo metu"
|
|||||||
msgid "Setup.Miscellaneous$Channels wrap"
|
msgid "Setup.Miscellaneous$Channels wrap"
|
||||||
msgstr "Kanalų pridengimas"
|
msgstr "Kanalų pridengimas"
|
||||||
|
|
||||||
|
msgid "Setup.Miscellaneous$Show channel names with source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Miscellaneous$Emergency exit"
|
msgid "Setup.Miscellaneous$Emergency exit"
|
||||||
msgstr "Avarinis išėjimas"
|
msgstr "Avarinis išėjimas"
|
||||||
|
|
||||||
|
@ -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-02 15:10+0200\n"
|
"POT-Creation-Date: 2012-06-17 13:59+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"
|
||||||
@ -1120,6 +1120,9 @@ msgstr "Почетна јачина на звук"
|
|||||||
msgid "Setup.Miscellaneous$Channels wrap"
|
msgid "Setup.Miscellaneous$Channels wrap"
|
||||||
msgstr "Премотување канали"
|
msgstr "Премотување канали"
|
||||||
|
|
||||||
|
msgid "Setup.Miscellaneous$Show channel names with source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Miscellaneous$Emergency exit"
|
msgid "Setup.Miscellaneous$Emergency exit"
|
||||||
msgstr "Итен излез"
|
msgstr "Итен излез"
|
||||||
|
|
||||||
|
@ -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-02 15:10+0200\n"
|
"POT-Creation-Date: 2012-06-17 13:59+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"
|
||||||
@ -1123,6 +1123,9 @@ msgstr "Opstartvolume"
|
|||||||
msgid "Setup.Miscellaneous$Channels wrap"
|
msgid "Setup.Miscellaneous$Channels wrap"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Miscellaneous$Show channel names with source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Miscellaneous$Emergency exit"
|
msgid "Setup.Miscellaneous$Emergency exit"
|
||||||
msgstr "Nooduitgang"
|
msgstr "Nooduitgang"
|
||||||
|
|
||||||
|
@ -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-02 15:10+0200\n"
|
"POT-Creation-Date: 2012-06-17 13:59+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"
|
||||||
@ -1120,6 +1120,9 @@ msgstr ""
|
|||||||
msgid "Setup.Miscellaneous$Channels wrap"
|
msgid "Setup.Miscellaneous$Channels wrap"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Miscellaneous$Show channel names with source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Miscellaneous$Emergency exit"
|
msgid "Setup.Miscellaneous$Emergency exit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -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-02 15:10+0200\n"
|
"POT-Creation-Date: 2012-06-17 13:59+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"
|
||||||
@ -1120,6 +1120,9 @@ msgstr "Pocz
|
|||||||
msgid "Setup.Miscellaneous$Channels wrap"
|
msgid "Setup.Miscellaneous$Channels wrap"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Miscellaneous$Show channel names with source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Miscellaneous$Emergency exit"
|
msgid "Setup.Miscellaneous$Emergency exit"
|
||||||
msgstr "Wyj¶cie awaryjne"
|
msgstr "Wyj¶cie awaryjne"
|
||||||
|
|
||||||
|
@ -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-02 15:10+0200\n"
|
"POT-Creation-Date: 2012-06-17 13:59+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"
|
||||||
@ -1120,6 +1120,9 @@ msgstr "Volume inicial"
|
|||||||
msgid "Setup.Miscellaneous$Channels wrap"
|
msgid "Setup.Miscellaneous$Channels wrap"
|
||||||
msgstr "Retroceder canais"
|
msgstr "Retroceder canais"
|
||||||
|
|
||||||
|
msgid "Setup.Miscellaneous$Show channel names with source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Miscellaneous$Emergency exit"
|
msgid "Setup.Miscellaneous$Emergency exit"
|
||||||
msgstr "Saída de emergência"
|
msgstr "Saída de emergência"
|
||||||
|
|
||||||
|
@ -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-02 15:10+0200\n"
|
"POT-Creation-Date: 2012-06-17 13:59+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"
|
||||||
@ -1122,6 +1122,9 @@ msgstr "Volumul la pornire"
|
|||||||
msgid "Setup.Miscellaneous$Channels wrap"
|
msgid "Setup.Miscellaneous$Channels wrap"
|
||||||
msgstr "Lista de canale în buclã"
|
msgstr "Lista de canale în buclã"
|
||||||
|
|
||||||
|
msgid "Setup.Miscellaneous$Show channel names with source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Miscellaneous$Emergency exit"
|
msgid "Setup.Miscellaneous$Emergency exit"
|
||||||
msgstr "Oprire de urgenþã"
|
msgstr "Oprire de urgenþã"
|
||||||
|
|
||||||
|
@ -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-02 15:10+0200\n"
|
"POT-Creation-Date: 2012-06-17 13:59+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"
|
||||||
@ -1120,6 +1120,9 @@ msgstr "
|
|||||||
msgid "Setup.Miscellaneous$Channels wrap"
|
msgid "Setup.Miscellaneous$Channels wrap"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Miscellaneous$Show channel names with source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Miscellaneous$Emergency exit"
|
msgid "Setup.Miscellaneous$Emergency exit"
|
||||||
msgstr "°ÒÐàØÙÝëÙ ÒëåÞÔ"
|
msgstr "°ÒÐàØÙÝëÙ ÒëåÞÔ"
|
||||||
|
|
||||||
|
@ -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-02 15:10+0200\n"
|
"POT-Creation-Date: 2012-06-17 13:59+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"
|
||||||
@ -1119,6 +1119,9 @@ msgstr "Hlasitos
|
|||||||
msgid "Setup.Miscellaneous$Channels wrap"
|
msgid "Setup.Miscellaneous$Channels wrap"
|
||||||
msgstr "Prepína» z prvého na posledný a opaène"
|
msgstr "Prepína» z prvého na posledný a opaène"
|
||||||
|
|
||||||
|
msgid "Setup.Miscellaneous$Show channel names with source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Miscellaneous$Emergency exit"
|
msgid "Setup.Miscellaneous$Emergency exit"
|
||||||
msgstr "Núdzové ukonèenie"
|
msgstr "Núdzové ukonèenie"
|
||||||
|
|
||||||
|
@ -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-02 15:10+0200\n"
|
"POT-Creation-Date: 2012-06-17 13:59+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"
|
||||||
@ -1120,6 +1120,9 @@ msgstr "Privzeta glasnost"
|
|||||||
msgid "Setup.Miscellaneous$Channels wrap"
|
msgid "Setup.Miscellaneous$Channels wrap"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Miscellaneous$Show channel names with source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Miscellaneous$Emergency exit"
|
msgid "Setup.Miscellaneous$Emergency exit"
|
||||||
msgstr "Izhod v sili"
|
msgstr "Izhod v sili"
|
||||||
|
|
||||||
|
@ -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-02 15:10+0200\n"
|
"POT-Creation-Date: 2012-06-17 13:59+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"
|
||||||
@ -1143,6 +1143,9 @@ msgstr "Po
|
|||||||
msgid "Setup.Miscellaneous$Channels wrap"
|
msgid "Setup.Miscellaneous$Channels wrap"
|
||||||
msgstr "Kanal spakovan"
|
msgstr "Kanal spakovan"
|
||||||
|
|
||||||
|
msgid "Setup.Miscellaneous$Show channel names with source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Miscellaneous$Emergency exit"
|
msgid "Setup.Miscellaneous$Emergency exit"
|
||||||
msgstr "Izlaz u sluèaju nu¾de"
|
msgstr "Izlaz u sluèaju nu¾de"
|
||||||
|
|
||||||
|
@ -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-02 15:10+0200\n"
|
"POT-Creation-Date: 2012-06-17 13:59+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"
|
||||||
@ -1122,6 +1122,9 @@ msgstr "Ljudstyrka vid uppstart"
|
|||||||
msgid "Setup.Miscellaneous$Channels wrap"
|
msgid "Setup.Miscellaneous$Channels wrap"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Miscellaneous$Show channel names with source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Miscellaneous$Emergency exit"
|
msgid "Setup.Miscellaneous$Emergency exit"
|
||||||
msgstr "Oförutsedd avslutning"
|
msgstr "Oförutsedd avslutning"
|
||||||
|
|
||||||
|
@ -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-02 15:10+0200\n"
|
"POT-Creation-Date: 2012-06-17 13:59+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"
|
||||||
@ -1119,6 +1119,9 @@ msgstr "A
|
|||||||
msgid "Setup.Miscellaneous$Channels wrap"
|
msgid "Setup.Miscellaneous$Channels wrap"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Miscellaneous$Show channel names with source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Miscellaneous$Emergency exit"
|
msgid "Setup.Miscellaneous$Emergency exit"
|
||||||
msgstr "Acil cýkýþ"
|
msgstr "Acil cýkýþ"
|
||||||
|
|
||||||
|
@ -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-02 15:10+0200\n"
|
"POT-Creation-Date: 2012-06-17 13:59+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"
|
||||||
@ -1119,6 +1119,9 @@ msgstr "Гучність при включенні"
|
|||||||
msgid "Setup.Miscellaneous$Channels wrap"
|
msgid "Setup.Miscellaneous$Channels wrap"
|
||||||
msgstr "Кінець каналів"
|
msgstr "Кінець каналів"
|
||||||
|
|
||||||
|
msgid "Setup.Miscellaneous$Show channel names with source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Miscellaneous$Emergency exit"
|
msgid "Setup.Miscellaneous$Emergency exit"
|
||||||
msgstr "Аварійний вихід"
|
msgstr "Аварійний вихід"
|
||||||
|
|
||||||
|
@ -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-02 15:10+0200\n"
|
"POT-Creation-Date: 2012-06-17 13:59+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"
|
||||||
@ -1122,6 +1122,9 @@ msgstr "初始化声音"
|
|||||||
msgid "Setup.Miscellaneous$Channels wrap"
|
msgid "Setup.Miscellaneous$Channels wrap"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Setup.Miscellaneous$Show channel names with source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Setup.Miscellaneous$Emergency exit"
|
msgid "Setup.Miscellaneous$Emergency exit"
|
||||||
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: sources.h 2.3 2010/03/07 13:53:11 kls Exp $
|
* $Id: sources.h 2.4 2012/06/17 11:19:23 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __SOURCES_H
|
#ifndef __SOURCES_H
|
||||||
@ -33,6 +33,7 @@ public:
|
|||||||
int Code(void) const { return code; }
|
int Code(void) const { return code; }
|
||||||
const char *Description(void) const { return description; }
|
const char *Description(void) const { return description; }
|
||||||
bool Parse(const char *s);
|
bool Parse(const char *s);
|
||||||
|
static char ToChar(int Code) { return (Code & st_Mask) >> 24; }
|
||||||
static cString ToString(int Code);
|
static cString ToString(int Code);
|
||||||
static int FromString(const char *s);
|
static int FromString(const char *s);
|
||||||
static int FromData(eSourceType SourceType, int Position = 0, bool East = false);
|
static int FromData(eSourceType SourceType, int Position = 0, bool East = false);
|
||||||
|
Loading…
Reference in New Issue
Block a user