Implemented handling the "Content Descriptor"

This commit is contained in:
Klaus Schmidinger 2010-01-03 12:20:37 +01:00
parent 4b5f232e59
commit 56627cd12d
35 changed files with 6193 additions and 34 deletions

View File

@ -1087,6 +1087,7 @@ Rolf Ahrenberg <rahrenbe@cc.hut.fi>
for fixing handling DVB subtitles for PES recordings
for fixing compiler warnings "format not a string literal and no format arguments"
in some syslog calls
for a patch that was used to implement handling the "component descriptor" ("genre")
Ralf Klueber <ralf.klueber@vodafone.com>
for reporting a bug in cutting a recording if there is only a single editing mark

View File

@ -6256,3 +6256,7 @@ Video Disk Recorder Revision History
Winfried Köhler).
- Avoiding setting the video stream type to 2 if the vpid is 0 (problem reported
by Arthur Konovalov).
- Implemented handling the "Content Descriptor" (based on a patch from Rolf
Ahrenberg). The 'classic', 'sttng' and 'curses' skins display the textual
representation of the content descriptors as "genre". The epg.data file stores
the genre using the tag character 'G'.

View File

@ -79,3 +79,7 @@ VDR Plugin 'skincurses' Revision History
2008-03-14: Version 0.1.7
- Added Russian translations (thanks to Alexander Gross).
2010-01-03: Version 0.1.8
- Displaying "genre" in event descriptions.

View File

@ -3,7 +3,7 @@
*
* See the README file for copyright information and how to reach the author.
*
* $Id: skincurses.c 1.23 2008/03/14 12:57:14 kls Exp $
* $Id: skincurses.c 2.1 2010/01/03 11:05:44 kls Exp $
*/
#include <ncurses.h>
@ -11,7 +11,7 @@
#include <vdr/plugin.h>
#include <vdr/skins.h>
static const char *VERSION = "0.1.7";
static const char *VERSION = "0.1.8";
static const char *DESCRIPTION = trNOOP("A text only skin");
static const char *MAINMENUENTRY = NULL;
@ -409,6 +409,13 @@ void cSkinCursesDisplayMenu::SetEvent(const cEvent *Event)
ts.Set(osd, 0, y, ScOsdWidth, ScOsdHeight - y - 2, Event->ShortText(), &Font, clrYellow, clrBackground);
y += ts.Height();
}
for (int i = 0; Event->Contents(i); i++) {
const char *s = Event->ContentToString(Event->Contents(i));
if (!isempty(s)) {
ts.Set(osd, 0, y, ScOsdWidth, ScOsdHeight - y - 2, s, &Font, clrYellow, clrBackground);
y += 1;
}
}
y += 1;
if (!isempty(Event->Description())) {
textScroller.Set(osd, 0, y, ScOsdWidth - 2, ScOsdHeight - y - 2, Event->Description(), &Font, clrCyan, clrBackground);

16
eit.c
View File

@ -8,7 +8,7 @@
* Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>.
* Adapted to 'libsi' for VDR 1.3.0 by Marcel Wiesweg <marcel.wiesweg@gmx.de>.
*
* $Id: eit.c 2.7 2009/12/05 16:13:22 kls Exp $
* $Id: eit.c 2.8 2010/01/03 11:18:56 kls Exp $
*/
#include "eit.h"
@ -153,7 +153,19 @@ cEIT::cEIT(cSchedules *Schedules, int Source, u_char Tid, const u_char *Data, bo
}
}
break;
case SI::ContentDescriptorTag:
case SI::ContentDescriptorTag: {
SI::ContentDescriptor *cd = (SI::ContentDescriptor *)d;
SI::ContentDescriptor::Nibble Nibble;
int NumContents = 0;
uchar Contents[MAXEVCONTENTS] = { 0 };
for (SI::Loop::Iterator it3; cd->nibbleLoop.getNext(Nibble, it3); ) {
if (NumContents < MAXEVCONTENTS) {
Contents[NumContents] = ((Nibble.getContentNibbleLevel1() & 0xF) << 4) | (Nibble.getContentNibbleLevel2() & 0xF);
NumContents++;
}
}
pEvent->SetContents(Contents);
}
break;
case SI::ParentalRatingDescriptorTag:
break;

171
epg.c
View File

@ -7,7 +7,7 @@
* Original version (as used in VDR before 1.3.0) written by
* Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>.
*
* $Id: epg.c 2.2 2009/12/05 16:17:08 kls Exp $
* $Id: epg.c 2.3 2010/01/03 11:28:38 kls Exp $
*/
#include "epg.h"
@ -112,6 +112,7 @@ cEvent::cEvent(tEventID EventID)
shortText = NULL;
description = NULL;
components = NULL;
memset(contents, 0, sizeof(contents));
startTime = 0;
duration = 0;
vps = 0;
@ -186,6 +187,12 @@ void cEvent::SetComponents(cComponents *Components)
components = Components;
}
void cEvent::SetContents(uchar *Contents)
{
for (int i = 0; i < MAXEVCONTENTS; i++)
contents[i] = Contents[i];
}
void cEvent::SetStartTime(time_t StartTime)
{
if (startTime != StartTime) {
@ -234,6 +241,148 @@ bool cEvent::IsRunning(bool OrAboutToStart) const
return runningStatus >= (OrAboutToStart ? SI::RunningStatusStartsInAFewSeconds : SI::RunningStatusPausing);
}
const char *cEvent::ContentToString(uchar Content)
{
switch (Content & 0xF0) {
case EVCONTENTMASK_MOVIEDRAMA:
switch (Content & 0x0F) {
default:
case 0x00: return tr("Content$Movie/Drama");
case 0x01: return tr("Content$Detective/Thriller");
case 0x02: return tr("Content$Adventure/Western/War");
case 0x03: return tr("Content$Science Fiction/Fantasy/Horror");
case 0x04: return tr("Content$Comedy");
case 0x05: return tr("Content$Soap/Melodrama/Folkloric");
case 0x06: return tr("Content$Romance");
case 0x07: return tr("Content$Serious/Classical/Religious/Historical Movie/Drama");
case 0x08: return tr("Content$Adult Movie/Drama");
}
break;
case EVCONTENTMASK_NEWSCURRENTAFFAIRS:
switch (Content & 0x0F) {
default:
case 0x00: return tr("Content$News/Current Affairs");
case 0x01: return tr("Content$News/Weather Report");
case 0x02: return tr("Content$News Magazine");
case 0x03: return tr("Content$Documentary");
case 0x04: return tr("Content$Discussion/Inverview/Debate");
}
break;
case EVCONTENTMASK_SHOW:
switch (Content & 0x0F) {
default:
case 0x00: return tr("Content$Show/Game Show");
case 0x01: return tr("Content$Game Show/Quiz/Contest");
case 0x02: return tr("Content$Variety Show");
case 0x03: return tr("Content$Talk Show");
}
break;
case EVCONTENTMASK_SPORTS:
switch (Content & 0x0F) {
default:
case 0x00: return tr("Content$Sports");
case 0x01: return tr("Content$Special Event");
case 0x02: return tr("Content$Sport Magazine");
case 0x03: return tr("Content$Football/Soccer");
case 0x04: return tr("Content$Tennis/Squash");
case 0x05: return tr("Content$Team Sports");
case 0x06: return tr("Content$Athletics");
case 0x07: return tr("Content$Motor Sport");
case 0x08: return tr("Content$Water Sport");
case 0x09: return tr("Content$Winter Sports");
case 0x0A: return tr("Content$Equestrian");
case 0x0B: return tr("Content$Martial Sports");
}
break;
case EVCONTENTMASK_CHILDRENYOUTH:
switch (Content & 0x0F) {
default:
case 0x00: return tr("Content$Children's/Youth Programme");
case 0x01: return tr("Content$Pre-school Children's Programme");
case 0x02: return tr("Content$Entertainment Programme for 6 to 14");
case 0x03: return tr("Content$Entertainment Programme for 10 to 16");
case 0x04: return tr("Content$Informational/Educational/School Programme");
case 0x05: return tr("Content$Cartoons/Puppets");
}
break;
case EVCONTENTMASK_MUSICBALLETDANCE:
switch (Content & 0x0F) {
default:
case 0x00: return tr("Content$Music/Ballet/Dance");
case 0x01: return tr("Content$Rock/Pop");
case 0x02: return tr("Content$Serious/Classical Music");
case 0x03: return tr("Content$Folk/Tradional Music");
case 0x04: return tr("Content$Jazz");
case 0x05: return tr("Content$Musical/Opera");
case 0x06: return tr("Content$Ballet");
}
break;
case EVCONTENTMASK_ARTSCULTURE:
switch (Content & 0x0F) {
default:
case 0x00: return tr("Content$Arts/Culture");
case 0x01: return tr("Content$Performing Arts");
case 0x02: return tr("Content$Fine Arts");
case 0x03: return tr("Content$Religion");
case 0x04: return tr("Content$Popular Culture/Traditional Arts");
case 0x05: return tr("Content$Literature");
case 0x06: return tr("Content$Film/Cinema");
case 0x07: return tr("Content$Experimental Film/Video");
case 0x08: return tr("Content$Broadcasting/Press");
case 0x09: return tr("Content$New Media");
case 0x0A: return tr("Content$Arts/Culture Magazine");
case 0x0B: return tr("Content$Fashion");
}
break;
case EVCONTENTMASK_SOCIALPOLITICALECONOMICS:
switch (Content & 0x0F) {
default:
case 0x00: return tr("Content$Social/Political/Economics");
case 0x01: return tr("Content$Magazine/Report/Documentary");
case 0x02: return tr("Content$Economics/Social Advisory");
case 0x03: return tr("Content$Remarkable People");
}
break;
case EVCONTENTMASK_EDUCATIONALSCIENCE:
switch (Content & 0x0F) {
default:
case 0x00: return tr("Content$Education/Science/Factual");
case 0x01: return tr("Content$Nature/Animals/Environment");
case 0x02: return tr("Content$Technology/Natural Sciences");
case 0x03: return tr("Content$Medicine/Physiology/Psychology");
case 0x04: return tr("Content$Foreign Countries/Expeditions");
case 0x05: return tr("Content$Social/Spiritual Sciences");
case 0x06: return tr("Content$Further Education");
case 0x07: return tr("Content$Languages");
}
break;
case EVCONTENTMASK_LEISUREHOBBIES:
switch (Content & 0x0F) {
default:
case 0x00: return tr("Content$Leisure/Hobbies");
case 0x01: return tr("Content$Tourism/Travel");
case 0x02: return tr("Content$Handicraft");
case 0x03: return tr("Content$Motoring");
case 0x04: return tr("Content$Fitness & Health");
case 0x05: return tr("Content$Cooking");
case 0x06: return tr("Content$Advertisement/Shopping");
case 0x07: return tr("Content$Gardening");
}
break;
case EVCONTENTMASK_SPECIAL:
switch (Content & 0x0F) {
case 0x00: return tr("Content$Original Language");
case 0x01: return tr("Content$Black & White");
case 0x02: return tr("Content$Unpublished");
case 0x03: return tr("Content$Live Broadcast");
default: ;
}
break;
default: ;
}
return "";
}
cString cEvent::GetDateString(void) const
{
return DateString(startTime);
@ -270,6 +419,12 @@ void cEvent::Dump(FILE *f, const char *Prefix, bool InfoOnly) const
fprintf(f, "%sD %s\n", Prefix, description);
strreplace(description, '|', '\n');
}
if (contents[0]) {
fprintf(f, "%sG", Prefix);
for (int i = 0; Contents(i); i++)
fprintf(f, " %02X", Contents(i));
fprintf(f, "\n");
}
if (components) {
for (int i = 0; i < components->NumComponents(); i++) {
tComponent *p = components->Component(i);
@ -296,6 +451,20 @@ bool cEvent::Parse(char *s)
case 'D': strreplace(t, '|', '\n');
SetDescription(t);
break;
case 'G': {
memset(contents, 0, sizeof(contents));
for (int i = 0; i < MAXEVCONTENTS; i++) {
char *tail = NULL;
int c = strtol(t, &tail, 16);
if (0x00 < c && c <= 0xFF) {
contents[i] = c;
t = tail;
}
else
break;
}
}
break;
case 'X': if (!components)
components = new cComponents;
components->SetComponent(components->NumComponents(), t);

20
epg.h
View File

@ -7,7 +7,7 @@
* Original version (as used in VDR before 1.3.0) written by
* Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>.
*
* $Id: epg.h 1.35 2006/10/07 13:47:19 kls Exp $
* $Id: epg.h 2.1 2010/01/03 11:17:20 kls Exp $
*/
#ifndef __EPG_H
@ -19,6 +19,20 @@
#define MAXEPGBUGFIXLEVEL 3
#define MAXEVCONTENTS 4
#define EVCONTENTMASK_MOVIEDRAMA 0x10
#define EVCONTENTMASK_NEWSCURRENTAFFAIRS 0x20
#define EVCONTENTMASK_SHOW 0x30
#define EVCONTENTMASK_SPORTS 0x40
#define EVCONTENTMASK_CHILDRENYOUTH 0x50
#define EVCONTENTMASK_MUSICBALLETDANCE 0x60
#define EVCONTENTMASK_ARTSCULTURE 0x70
#define EVCONTENTMASK_SOCIALPOLITICALECONOMICS 0x80
#define EVCONTENTMASK_EDUCATIONALSCIENCE 0x90
#define EVCONTENTMASK_LEISUREHOBBIES 0xA0
#define EVCONTENTMASK_SPECIAL 0xB0
#define EVCONTENTMASK_USERDEFINED 0xF0
enum eDumpMode { dmAll, dmPresent, dmFollowing, dmAtTime };
struct tComponent {
@ -62,6 +76,7 @@ private:
char *shortText; // Short description of this event (typically the episode name in case of a series)
char *description; // Description of this event
cComponents *components; // The stream components of this event
uchar contents[MAXEVCONTENTS]; // Contents of this event
time_t startTime; // Start time of this event
int duration; // Duration of this event in seconds
time_t vps; // Video Programming Service timestamp (VPS, aka "Programme Identification Label", PIL)
@ -80,6 +95,7 @@ public:
const char *ShortText(void) const { return shortText; }
const char *Description(void) const { return description; }
const cComponents *Components(void) const { return components; }
uchar Contents(int i = 0) const { return (0 <= i && i < MAXEVCONTENTS) ? contents[i] : 0; }
time_t StartTime(void) const { return startTime; }
time_t EndTime(void) const { return startTime + duration; }
int Duration(void) const { return duration; }
@ -88,6 +104,7 @@ public:
bool SeenWithin(int Seconds) const { return time(NULL) - seen < Seconds; }
bool HasTimer(void) const;
bool IsRunning(bool OrAboutToStart = false) const;
static const char *ContentToString(uchar Content);
cString GetDateString(void) const;
cString GetTimeString(void) const;
cString GetEndTimeString(void) const;
@ -100,6 +117,7 @@ public:
void SetShortText(const char *ShortText);
void SetDescription(const char *Description);
void SetComponents(cComponents *Components); // Will take ownership of Components!
void SetContents(uchar *Contents);
void SetStartTime(time_t StartTime);
void SetDuration(int Duration);
void SetVps(time_t Vps);

View File

@ -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: 2009-11-22 12:28+0100\n"
"POT-Creation-Date: 2010-01-03 12:41+0100\n"
"PO-Revision-Date: 2008-03-02 19:02+0100\n"
"Last-Translator: Luca Olivetti <luca@ventoso.org>\n"
"Language-Team: Catalanian\n"
@ -42,6 +42,243 @@ msgstr "No puc iniciar el mode de transfer
msgid "Starting EPG scan"
msgstr "Iniciant exploració EPG"
msgid "Content$Movie/Drama"
msgstr ""
msgid "Content$Detective/Thriller"
msgstr ""
msgid "Content$Adventure/Western/War"
msgstr ""
msgid "Content$Science Fiction/Fantasy/Horror"
msgstr ""
msgid "Content$Comedy"
msgstr ""
msgid "Content$Soap/Melodrama/Folkloric"
msgstr ""
msgid "Content$Romance"
msgstr ""
msgid "Content$Serious/Classical/Religious/Historical Movie/Drama"
msgstr ""
msgid "Content$Adult Movie/Drama"
msgstr ""
msgid "Content$News/Current Affairs"
msgstr ""
msgid "Content$News/Weather Report"
msgstr ""
msgid "Content$News Magazine"
msgstr ""
msgid "Content$Documentary"
msgstr ""
msgid "Content$Discussion/Inverview/Debate"
msgstr ""
msgid "Content$Show/Game Show"
msgstr ""
msgid "Content$Game Show/Quiz/Contest"
msgstr ""
msgid "Content$Variety Show"
msgstr ""
msgid "Content$Talk Show"
msgstr ""
msgid "Content$Sports"
msgstr ""
msgid "Content$Special Event"
msgstr ""
msgid "Content$Sport Magazine"
msgstr ""
msgid "Content$Football/Soccer"
msgstr ""
msgid "Content$Tennis/Squash"
msgstr ""
msgid "Content$Team Sports"
msgstr ""
msgid "Content$Athletics"
msgstr ""
msgid "Content$Motor Sport"
msgstr ""
msgid "Content$Water Sport"
msgstr ""
msgid "Content$Winter Sports"
msgstr ""
msgid "Content$Equestrian"
msgstr ""
msgid "Content$Martial Sports"
msgstr ""
msgid "Content$Children's/Youth Programme"
msgstr ""
msgid "Content$Pre-school Children's Programme"
msgstr ""
msgid "Content$Entertainment Programme for 6 to 14"
msgstr ""
msgid "Content$Entertainment Programme for 10 to 16"
msgstr ""
msgid "Content$Informational/Educational/School Programme"
msgstr ""
msgid "Content$Cartoons/Puppets"
msgstr ""
msgid "Content$Music/Ballet/Dance"
msgstr ""
msgid "Content$Rock/Pop"
msgstr ""
msgid "Content$Serious/Classical Music"
msgstr ""
msgid "Content$Folk/Tradional Music"
msgstr ""
msgid "Content$Jazz"
msgstr ""
msgid "Content$Musical/Opera"
msgstr ""
msgid "Content$Ballet"
msgstr ""
msgid "Content$Arts/Culture"
msgstr ""
msgid "Content$Performing Arts"
msgstr ""
msgid "Content$Fine Arts"
msgstr ""
msgid "Content$Religion"
msgstr ""
msgid "Content$Popular Culture/Traditional Arts"
msgstr ""
msgid "Content$Literature"
msgstr ""
msgid "Content$Film/Cinema"
msgstr ""
msgid "Content$Experimental Film/Video"
msgstr ""
msgid "Content$Broadcasting/Press"
msgstr ""
msgid "Content$New Media"
msgstr ""
msgid "Content$Arts/Culture Magazine"
msgstr ""
msgid "Content$Fashion"
msgstr ""
msgid "Content$Social/Political/Economics"
msgstr ""
msgid "Content$Magazine/Report/Documentary"
msgstr ""
msgid "Content$Economics/Social Advisory"
msgstr ""
msgid "Content$Remarkable People"
msgstr ""
msgid "Content$Education/Science/Factual"
msgstr ""
msgid "Content$Nature/Animals/Environment"
msgstr ""
msgid "Content$Technology/Natural Sciences"
msgstr ""
msgid "Content$Medicine/Physiology/Psychology"
msgstr ""
msgid "Content$Foreign Countries/Expeditions"
msgstr ""
msgid "Content$Social/Spiritual Sciences"
msgstr ""
msgid "Content$Further Education"
msgstr ""
msgid "Content$Languages"
msgstr ""
msgid "Content$Leisure/Hobbies"
msgstr ""
msgid "Content$Tourism/Travel"
msgstr ""
msgid "Content$Handicraft"
msgstr ""
msgid "Content$Motoring"
msgstr ""
msgid "Content$Fitness & Health"
msgstr ""
msgid "Content$Cooking"
msgstr ""
msgid "Content$Advertisement/Shopping"
msgstr ""
msgid "Content$Gardening"
msgstr ""
msgid "Content$Original Language"
msgstr ""
msgid "Content$Black & White"
msgstr ""
msgid "Content$Unpublished"
msgstr ""
msgid "Content$Live Broadcast"
msgstr ""
msgid "No title"
msgstr "Sense títol"

View File

@ -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: 2009-11-22 12:28+0100\n"
"POT-Creation-Date: 2010-01-03 12:41+0100\n"
"PO-Revision-Date: 2008-02-28 15:00+0200\n"
"Last-Translator: Vladimír Bárta <vladimir.barta@k2atmitec.cz>, Jiøí Dobrý <jdobry@centrum.cz>\n"
"Language-Team: Czech\n"
@ -40,6 +40,243 @@ msgstr "Nelze za
msgid "Starting EPG scan"
msgstr "Zaèíná prohledávání EPG"
msgid "Content$Movie/Drama"
msgstr ""
msgid "Content$Detective/Thriller"
msgstr ""
msgid "Content$Adventure/Western/War"
msgstr ""
msgid "Content$Science Fiction/Fantasy/Horror"
msgstr ""
msgid "Content$Comedy"
msgstr ""
msgid "Content$Soap/Melodrama/Folkloric"
msgstr ""
msgid "Content$Romance"
msgstr ""
msgid "Content$Serious/Classical/Religious/Historical Movie/Drama"
msgstr ""
msgid "Content$Adult Movie/Drama"
msgstr ""
msgid "Content$News/Current Affairs"
msgstr ""
msgid "Content$News/Weather Report"
msgstr ""
msgid "Content$News Magazine"
msgstr ""
msgid "Content$Documentary"
msgstr ""
msgid "Content$Discussion/Inverview/Debate"
msgstr ""
msgid "Content$Show/Game Show"
msgstr ""
msgid "Content$Game Show/Quiz/Contest"
msgstr ""
msgid "Content$Variety Show"
msgstr ""
msgid "Content$Talk Show"
msgstr ""
msgid "Content$Sports"
msgstr ""
msgid "Content$Special Event"
msgstr ""
msgid "Content$Sport Magazine"
msgstr ""
msgid "Content$Football/Soccer"
msgstr ""
msgid "Content$Tennis/Squash"
msgstr ""
msgid "Content$Team Sports"
msgstr ""
msgid "Content$Athletics"
msgstr ""
msgid "Content$Motor Sport"
msgstr ""
msgid "Content$Water Sport"
msgstr ""
msgid "Content$Winter Sports"
msgstr ""
msgid "Content$Equestrian"
msgstr ""
msgid "Content$Martial Sports"
msgstr ""
msgid "Content$Children's/Youth Programme"
msgstr ""
msgid "Content$Pre-school Children's Programme"
msgstr ""
msgid "Content$Entertainment Programme for 6 to 14"
msgstr ""
msgid "Content$Entertainment Programme for 10 to 16"
msgstr ""
msgid "Content$Informational/Educational/School Programme"
msgstr ""
msgid "Content$Cartoons/Puppets"
msgstr ""
msgid "Content$Music/Ballet/Dance"
msgstr ""
msgid "Content$Rock/Pop"
msgstr ""
msgid "Content$Serious/Classical Music"
msgstr ""
msgid "Content$Folk/Tradional Music"
msgstr ""
msgid "Content$Jazz"
msgstr ""
msgid "Content$Musical/Opera"
msgstr ""
msgid "Content$Ballet"
msgstr ""
msgid "Content$Arts/Culture"
msgstr ""
msgid "Content$Performing Arts"
msgstr ""
msgid "Content$Fine Arts"
msgstr ""
msgid "Content$Religion"
msgstr ""
msgid "Content$Popular Culture/Traditional Arts"
msgstr ""
msgid "Content$Literature"
msgstr ""
msgid "Content$Film/Cinema"
msgstr ""
msgid "Content$Experimental Film/Video"
msgstr ""
msgid "Content$Broadcasting/Press"
msgstr ""
msgid "Content$New Media"
msgstr ""
msgid "Content$Arts/Culture Magazine"
msgstr ""
msgid "Content$Fashion"
msgstr ""
msgid "Content$Social/Political/Economics"
msgstr ""
msgid "Content$Magazine/Report/Documentary"
msgstr ""
msgid "Content$Economics/Social Advisory"
msgstr ""
msgid "Content$Remarkable People"
msgstr ""
msgid "Content$Education/Science/Factual"
msgstr ""
msgid "Content$Nature/Animals/Environment"
msgstr ""
msgid "Content$Technology/Natural Sciences"
msgstr ""
msgid "Content$Medicine/Physiology/Psychology"
msgstr ""
msgid "Content$Foreign Countries/Expeditions"
msgstr ""
msgid "Content$Social/Spiritual Sciences"
msgstr ""
msgid "Content$Further Education"
msgstr ""
msgid "Content$Languages"
msgstr ""
msgid "Content$Leisure/Hobbies"
msgstr ""
msgid "Content$Tourism/Travel"
msgstr ""
msgid "Content$Handicraft"
msgstr ""
msgid "Content$Motoring"
msgstr ""
msgid "Content$Fitness & Health"
msgstr ""
msgid "Content$Cooking"
msgstr ""
msgid "Content$Advertisement/Shopping"
msgstr ""
msgid "Content$Gardening"
msgstr ""
msgid "Content$Original Language"
msgstr ""
msgid "Content$Black & White"
msgstr ""
msgid "Content$Unpublished"
msgstr ""
msgid "Content$Live Broadcast"
msgstr ""
msgid "No title"
msgstr "Bez názvu"

View File

@ -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: 2009-11-22 12:28+0100\n"
"POT-Creation-Date: 2010-01-03 12:41+0100\n"
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
"Last-Translator: Mogens Elneff <mogens@elneff.dk>\n"
"Language-Team: Danish\n"
@ -39,6 +39,243 @@ msgstr "Kan ikke starte Transfer Mode!"
msgid "Starting EPG scan"
msgstr "Starter EPG skanning"
msgid "Content$Movie/Drama"
msgstr ""
msgid "Content$Detective/Thriller"
msgstr ""
msgid "Content$Adventure/Western/War"
msgstr ""
msgid "Content$Science Fiction/Fantasy/Horror"
msgstr ""
msgid "Content$Comedy"
msgstr ""
msgid "Content$Soap/Melodrama/Folkloric"
msgstr ""
msgid "Content$Romance"
msgstr ""
msgid "Content$Serious/Classical/Religious/Historical Movie/Drama"
msgstr ""
msgid "Content$Adult Movie/Drama"
msgstr ""
msgid "Content$News/Current Affairs"
msgstr ""
msgid "Content$News/Weather Report"
msgstr ""
msgid "Content$News Magazine"
msgstr ""
msgid "Content$Documentary"
msgstr ""
msgid "Content$Discussion/Inverview/Debate"
msgstr ""
msgid "Content$Show/Game Show"
msgstr ""
msgid "Content$Game Show/Quiz/Contest"
msgstr ""
msgid "Content$Variety Show"
msgstr ""
msgid "Content$Talk Show"
msgstr ""
msgid "Content$Sports"
msgstr ""
msgid "Content$Special Event"
msgstr ""
msgid "Content$Sport Magazine"
msgstr ""
msgid "Content$Football/Soccer"
msgstr ""
msgid "Content$Tennis/Squash"
msgstr ""
msgid "Content$Team Sports"
msgstr ""
msgid "Content$Athletics"
msgstr ""
msgid "Content$Motor Sport"
msgstr ""
msgid "Content$Water Sport"
msgstr ""
msgid "Content$Winter Sports"
msgstr ""
msgid "Content$Equestrian"
msgstr ""
msgid "Content$Martial Sports"
msgstr ""
msgid "Content$Children's/Youth Programme"
msgstr ""
msgid "Content$Pre-school Children's Programme"
msgstr ""
msgid "Content$Entertainment Programme for 6 to 14"
msgstr ""
msgid "Content$Entertainment Programme for 10 to 16"
msgstr ""
msgid "Content$Informational/Educational/School Programme"
msgstr ""
msgid "Content$Cartoons/Puppets"
msgstr ""
msgid "Content$Music/Ballet/Dance"
msgstr ""
msgid "Content$Rock/Pop"
msgstr ""
msgid "Content$Serious/Classical Music"
msgstr ""
msgid "Content$Folk/Tradional Music"
msgstr ""
msgid "Content$Jazz"
msgstr ""
msgid "Content$Musical/Opera"
msgstr ""
msgid "Content$Ballet"
msgstr ""
msgid "Content$Arts/Culture"
msgstr ""
msgid "Content$Performing Arts"
msgstr ""
msgid "Content$Fine Arts"
msgstr ""
msgid "Content$Religion"
msgstr ""
msgid "Content$Popular Culture/Traditional Arts"
msgstr ""
msgid "Content$Literature"
msgstr ""
msgid "Content$Film/Cinema"
msgstr ""
msgid "Content$Experimental Film/Video"
msgstr ""
msgid "Content$Broadcasting/Press"
msgstr ""
msgid "Content$New Media"
msgstr ""
msgid "Content$Arts/Culture Magazine"
msgstr ""
msgid "Content$Fashion"
msgstr ""
msgid "Content$Social/Political/Economics"
msgstr ""
msgid "Content$Magazine/Report/Documentary"
msgstr ""
msgid "Content$Economics/Social Advisory"
msgstr ""
msgid "Content$Remarkable People"
msgstr ""
msgid "Content$Education/Science/Factual"
msgstr ""
msgid "Content$Nature/Animals/Environment"
msgstr ""
msgid "Content$Technology/Natural Sciences"
msgstr ""
msgid "Content$Medicine/Physiology/Psychology"
msgstr ""
msgid "Content$Foreign Countries/Expeditions"
msgstr ""
msgid "Content$Social/Spiritual Sciences"
msgstr ""
msgid "Content$Further Education"
msgstr ""
msgid "Content$Languages"
msgstr ""
msgid "Content$Leisure/Hobbies"
msgstr ""
msgid "Content$Tourism/Travel"
msgstr ""
msgid "Content$Handicraft"
msgstr ""
msgid "Content$Motoring"
msgstr ""
msgid "Content$Fitness & Health"
msgstr ""
msgid "Content$Cooking"
msgstr ""
msgid "Content$Advertisement/Shopping"
msgstr ""
msgid "Content$Gardening"
msgstr ""
msgid "Content$Original Language"
msgstr ""
msgid "Content$Black & White"
msgstr ""
msgid "Content$Unpublished"
msgstr ""
msgid "Content$Live Broadcast"
msgstr ""
msgid "No title"
msgstr "Ingen titel"

View File

@ -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: 2009-11-22 12:28+0100\n"
"POT-Creation-Date: 2010-01-03 12:41+0100\n"
"PO-Revision-Date: 2007-11-25 15:19+0200\n"
"Last-Translator: Klaus Schmidinger <kls@tvdr.de>\n"
"Language-Team: German\n"
@ -39,6 +39,243 @@ msgstr "Transfer-Mode kann nicht gestartet werden!"
msgid "Starting EPG scan"
msgstr "Aktualisiere EPG-Daten"
msgid "Content$Movie/Drama"
msgstr "Film/Drama"
msgid "Content$Detective/Thriller"
msgstr "Detektiv/Thriller"
msgid "Content$Adventure/Western/War"
msgstr "Abenteuer/Western/Krieg"
msgid "Content$Science Fiction/Fantasy/Horror"
msgstr "Science-Fiction/Fantasy/Horror"
msgid "Content$Comedy"
msgstr "Komödie"
msgid "Content$Soap/Melodrama/Folkloric"
msgstr "Seife/Melodram/Folklore"
msgid "Content$Romance"
msgstr "Romanze"
msgid "Content$Serious/Classical/Religious/Historical Movie/Drama"
msgstr "Ernst/Klassik/Religion/Historischer Film/Drama"
msgid "Content$Adult Movie/Drama"
msgstr "Erwachsenen-Film/Drama"
msgid "Content$News/Current Affairs"
msgstr "Aktuelle Angelegenheiten"
msgid "Content$News/Weather Report"
msgstr "Wetterbericht"
msgid "Content$News Magazine"
msgstr "Nachrichtenmagazin"
msgid "Content$Documentary"
msgstr "Dokumentation"
msgid "Content$Discussion/Inverview/Debate"
msgstr "Diskussion/Interview/Debatte"
msgid "Content$Show/Game Show"
msgstr "Show/Spielshow"
msgid "Content$Game Show/Quiz/Contest"
msgstr "Spielshow/Quiz/Wettbewerb"
msgid "Content$Variety Show"
msgstr "Variete-Show"
msgid "Content$Talk Show"
msgstr "Talkshow"
msgid "Content$Sports"
msgstr "Sport"
msgid "Content$Special Event"
msgstr "Besonderes Ereignis"
msgid "Content$Sport Magazine"
msgstr "Sportmagazin"
msgid "Content$Football/Soccer"
msgstr "Football/Fußball"
msgid "Content$Tennis/Squash"
msgstr "Tennis/Squash"
msgid "Content$Team Sports"
msgstr "Mannschaftssport"
msgid "Content$Athletics"
msgstr "Athletik"
msgid "Content$Motor Sport"
msgstr "Motorsport"
msgid "Content$Water Sport"
msgstr "Wassersport"
msgid "Content$Winter Sports"
msgstr "Wintersport"
msgid "Content$Equestrian"
msgstr "Reitsport"
msgid "Content$Martial Sports"
msgstr "Kampfsport"
msgid "Content$Children's/Youth Programme"
msgstr "Kinder/Jugendprogramm"
msgid "Content$Pre-school Children's Programme"
msgstr "Programm für Vorschulkinder"
msgid "Content$Entertainment Programme for 6 to 14"
msgstr "Unterhaltungsprogramm für 6 bis 14"
msgid "Content$Entertainment Programme for 10 to 16"
msgstr "Unterhaltungsprogramm für 10 bis 16"
msgid "Content$Informational/Educational/School Programme"
msgstr "Informations/Lehr/Schul-Programm"
msgid "Content$Cartoons/Puppets"
msgstr "Zeichentrick/Puppen"
msgid "Content$Music/Ballet/Dance"
msgstr "Musik/Ballett/Tanz"
msgid "Content$Rock/Pop"
msgstr "Rock/Pop"
msgid "Content$Serious/Classical Music"
msgstr "Ernste/Klassische Musik"
msgid "Content$Folk/Tradional Music"
msgstr "Volks/Traditionelle Musik"
msgid "Content$Jazz"
msgstr "Jazz"
msgid "Content$Musical/Opera"
msgstr "Musical/Oper"
msgid "Content$Ballet"
msgstr "Ballett"
msgid "Content$Arts/Culture"
msgstr "Kunst/Kultur"
msgid "Content$Performing Arts"
msgstr "Darstellende Künste"
msgid "Content$Fine Arts"
msgstr "Bildende Künste"
msgid "Content$Religion"
msgstr "Religion"
msgid "Content$Popular Culture/Traditional Arts"
msgstr "Pop-Kultur/Traditionelle Künste"
msgid "Content$Literature"
msgstr "Literatur"
msgid "Content$Film/Cinema"
msgstr "Film/Kino"
msgid "Content$Experimental Film/Video"
msgstr "Experimentalfilm/Video"
msgid "Content$Broadcasting/Press"
msgstr "Rundfunk/Presse"
msgid "Content$New Media"
msgstr "Neue Medien"
msgid "Content$Arts/Culture Magazine"
msgstr "Kunst/Kulturmagazin"
msgid "Content$Fashion"
msgstr "Mode"
msgid "Content$Social/Political/Economics"
msgstr "Gesellschaft/Politik/Wirtschaft"
msgid "Content$Magazine/Report/Documentary"
msgstr "Magazin/Bericht/Dokumentation"
msgid "Content$Economics/Social Advisory"
msgstr "Wirtschafts/Gesellschaftsberatung"
msgid "Content$Remarkable People"
msgstr "Bemerkenswerte Leute"
msgid "Content$Education/Science/Factual"
msgstr "Ausbildung/Wissenschaft/Sachlich"
msgid "Content$Nature/Animals/Environment"
msgstr "Natur/Tiere/Umwelt"
msgid "Content$Technology/Natural Sciences"
msgstr "Technik/Naturwissenschaften"
msgid "Content$Medicine/Physiology/Psychology"
msgstr "Medizin/Physiologie/Psychologie"
msgid "Content$Foreign Countries/Expeditions"
msgstr "Ausland/Expeditionen"
msgid "Content$Social/Spiritual Sciences"
msgstr "Sozial/Geisteswissenschaften"
msgid "Content$Further Education"
msgstr "Weiterbildung"
msgid "Content$Languages"
msgstr "Sprachen"
msgid "Content$Leisure/Hobbies"
msgstr "Freizeit/Hobbies"
msgid "Content$Tourism/Travel"
msgstr "Tourismus/Reisen"
msgid "Content$Handicraft"
msgstr "Handwerk"
msgid "Content$Motoring"
msgstr "Autofahren"
msgid "Content$Fitness & Health"
msgstr "Fitness & Gesundheit"
msgid "Content$Cooking"
msgstr "Kochen"
msgid "Content$Advertisement/Shopping"
msgstr "Werbung/Einkaufen"
msgid "Content$Gardening"
msgstr "Gartenbau"
msgid "Content$Original Language"
msgstr "Originalsprache"
msgid "Content$Black & White"
msgstr "Schwarz-weiß"
msgid "Content$Unpublished"
msgstr "Unveröffentlicht"
msgid "Content$Live Broadcast"
msgstr "Live-Sendung"
msgid "No title"
msgstr "Kein Titel"

View File

@ -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: 2009-11-22 12:28+0100\n"
"POT-Creation-Date: 2010-01-03 12:41+0100\n"
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
"Last-Translator: Dimitrios Dimitrakos <mail@dimitrios.de>\n"
"Language-Team: Greek\n"
@ -39,6 +39,243 @@ msgstr "
msgid "Starting EPG scan"
msgstr "Áñ÷Þ óÜñùóç EPG"
msgid "Content$Movie/Drama"
msgstr ""
msgid "Content$Detective/Thriller"
msgstr ""
msgid "Content$Adventure/Western/War"
msgstr ""
msgid "Content$Science Fiction/Fantasy/Horror"
msgstr ""
msgid "Content$Comedy"
msgstr ""
msgid "Content$Soap/Melodrama/Folkloric"
msgstr ""
msgid "Content$Romance"
msgstr ""
msgid "Content$Serious/Classical/Religious/Historical Movie/Drama"
msgstr ""
msgid "Content$Adult Movie/Drama"
msgstr ""
msgid "Content$News/Current Affairs"
msgstr ""
msgid "Content$News/Weather Report"
msgstr ""
msgid "Content$News Magazine"
msgstr ""
msgid "Content$Documentary"
msgstr ""
msgid "Content$Discussion/Inverview/Debate"
msgstr ""
msgid "Content$Show/Game Show"
msgstr ""
msgid "Content$Game Show/Quiz/Contest"
msgstr ""
msgid "Content$Variety Show"
msgstr ""
msgid "Content$Talk Show"
msgstr ""
msgid "Content$Sports"
msgstr ""
msgid "Content$Special Event"
msgstr ""
msgid "Content$Sport Magazine"
msgstr ""
msgid "Content$Football/Soccer"
msgstr ""
msgid "Content$Tennis/Squash"
msgstr ""
msgid "Content$Team Sports"
msgstr ""
msgid "Content$Athletics"
msgstr ""
msgid "Content$Motor Sport"
msgstr ""
msgid "Content$Water Sport"
msgstr ""
msgid "Content$Winter Sports"
msgstr ""
msgid "Content$Equestrian"
msgstr ""
msgid "Content$Martial Sports"
msgstr ""
msgid "Content$Children's/Youth Programme"
msgstr ""
msgid "Content$Pre-school Children's Programme"
msgstr ""
msgid "Content$Entertainment Programme for 6 to 14"
msgstr ""
msgid "Content$Entertainment Programme for 10 to 16"
msgstr ""
msgid "Content$Informational/Educational/School Programme"
msgstr ""
msgid "Content$Cartoons/Puppets"
msgstr ""
msgid "Content$Music/Ballet/Dance"
msgstr ""
msgid "Content$Rock/Pop"
msgstr ""
msgid "Content$Serious/Classical Music"
msgstr ""
msgid "Content$Folk/Tradional Music"
msgstr ""
msgid "Content$Jazz"
msgstr ""
msgid "Content$Musical/Opera"
msgstr ""
msgid "Content$Ballet"
msgstr ""
msgid "Content$Arts/Culture"
msgstr ""
msgid "Content$Performing Arts"
msgstr ""
msgid "Content$Fine Arts"
msgstr ""
msgid "Content$Religion"
msgstr ""
msgid "Content$Popular Culture/Traditional Arts"
msgstr ""
msgid "Content$Literature"
msgstr ""
msgid "Content$Film/Cinema"
msgstr ""
msgid "Content$Experimental Film/Video"
msgstr ""
msgid "Content$Broadcasting/Press"
msgstr ""
msgid "Content$New Media"
msgstr ""
msgid "Content$Arts/Culture Magazine"
msgstr ""
msgid "Content$Fashion"
msgstr ""
msgid "Content$Social/Political/Economics"
msgstr ""
msgid "Content$Magazine/Report/Documentary"
msgstr ""
msgid "Content$Economics/Social Advisory"
msgstr ""
msgid "Content$Remarkable People"
msgstr ""
msgid "Content$Education/Science/Factual"
msgstr ""
msgid "Content$Nature/Animals/Environment"
msgstr ""
msgid "Content$Technology/Natural Sciences"
msgstr ""
msgid "Content$Medicine/Physiology/Psychology"
msgstr ""
msgid "Content$Foreign Countries/Expeditions"
msgstr ""
msgid "Content$Social/Spiritual Sciences"
msgstr ""
msgid "Content$Further Education"
msgstr ""
msgid "Content$Languages"
msgstr ""
msgid "Content$Leisure/Hobbies"
msgstr ""
msgid "Content$Tourism/Travel"
msgstr ""
msgid "Content$Handicraft"
msgstr ""
msgid "Content$Motoring"
msgstr ""
msgid "Content$Fitness & Health"
msgstr ""
msgid "Content$Cooking"
msgstr ""
msgid "Content$Advertisement/Shopping"
msgstr ""
msgid "Content$Gardening"
msgstr ""
msgid "Content$Original Language"
msgstr ""
msgid "Content$Black & White"
msgstr ""
msgid "Content$Unpublished"
msgstr ""
msgid "Content$Live Broadcast"
msgstr ""
msgid "No title"
msgstr "×ùñßò Ôßôëï"

View File

@ -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: 2009-11-22 12:28+0100\n"
"POT-Creation-Date: 2010-01-03 12:41+0100\n"
"PO-Revision-Date: 2008-03-02 19:02+0100\n"
"Last-Translator: Luca Olivetti <luca@ventoso.org>\n"
"Language-Team: Spanish\n"
@ -40,6 +40,243 @@ msgstr "
msgid "Starting EPG scan"
msgstr "Iniciando la exploración de EPG"
msgid "Content$Movie/Drama"
msgstr ""
msgid "Content$Detective/Thriller"
msgstr ""
msgid "Content$Adventure/Western/War"
msgstr ""
msgid "Content$Science Fiction/Fantasy/Horror"
msgstr ""
msgid "Content$Comedy"
msgstr ""
msgid "Content$Soap/Melodrama/Folkloric"
msgstr ""
msgid "Content$Romance"
msgstr ""
msgid "Content$Serious/Classical/Religious/Historical Movie/Drama"
msgstr ""
msgid "Content$Adult Movie/Drama"
msgstr ""
msgid "Content$News/Current Affairs"
msgstr ""
msgid "Content$News/Weather Report"
msgstr ""
msgid "Content$News Magazine"
msgstr ""
msgid "Content$Documentary"
msgstr ""
msgid "Content$Discussion/Inverview/Debate"
msgstr ""
msgid "Content$Show/Game Show"
msgstr ""
msgid "Content$Game Show/Quiz/Contest"
msgstr ""
msgid "Content$Variety Show"
msgstr ""
msgid "Content$Talk Show"
msgstr ""
msgid "Content$Sports"
msgstr ""
msgid "Content$Special Event"
msgstr ""
msgid "Content$Sport Magazine"
msgstr ""
msgid "Content$Football/Soccer"
msgstr ""
msgid "Content$Tennis/Squash"
msgstr ""
msgid "Content$Team Sports"
msgstr ""
msgid "Content$Athletics"
msgstr ""
msgid "Content$Motor Sport"
msgstr ""
msgid "Content$Water Sport"
msgstr ""
msgid "Content$Winter Sports"
msgstr ""
msgid "Content$Equestrian"
msgstr ""
msgid "Content$Martial Sports"
msgstr ""
msgid "Content$Children's/Youth Programme"
msgstr ""
msgid "Content$Pre-school Children's Programme"
msgstr ""
msgid "Content$Entertainment Programme for 6 to 14"
msgstr ""
msgid "Content$Entertainment Programme for 10 to 16"
msgstr ""
msgid "Content$Informational/Educational/School Programme"
msgstr ""
msgid "Content$Cartoons/Puppets"
msgstr ""
msgid "Content$Music/Ballet/Dance"
msgstr ""
msgid "Content$Rock/Pop"
msgstr ""
msgid "Content$Serious/Classical Music"
msgstr ""
msgid "Content$Folk/Tradional Music"
msgstr ""
msgid "Content$Jazz"
msgstr ""
msgid "Content$Musical/Opera"
msgstr ""
msgid "Content$Ballet"
msgstr ""
msgid "Content$Arts/Culture"
msgstr ""
msgid "Content$Performing Arts"
msgstr ""
msgid "Content$Fine Arts"
msgstr ""
msgid "Content$Religion"
msgstr ""
msgid "Content$Popular Culture/Traditional Arts"
msgstr ""
msgid "Content$Literature"
msgstr ""
msgid "Content$Film/Cinema"
msgstr ""
msgid "Content$Experimental Film/Video"
msgstr ""
msgid "Content$Broadcasting/Press"
msgstr ""
msgid "Content$New Media"
msgstr ""
msgid "Content$Arts/Culture Magazine"
msgstr ""
msgid "Content$Fashion"
msgstr ""
msgid "Content$Social/Political/Economics"
msgstr ""
msgid "Content$Magazine/Report/Documentary"
msgstr ""
msgid "Content$Economics/Social Advisory"
msgstr ""
msgid "Content$Remarkable People"
msgstr ""
msgid "Content$Education/Science/Factual"
msgstr ""
msgid "Content$Nature/Animals/Environment"
msgstr ""
msgid "Content$Technology/Natural Sciences"
msgstr ""
msgid "Content$Medicine/Physiology/Psychology"
msgstr ""
msgid "Content$Foreign Countries/Expeditions"
msgstr ""
msgid "Content$Social/Spiritual Sciences"
msgstr ""
msgid "Content$Further Education"
msgstr ""
msgid "Content$Languages"
msgstr ""
msgid "Content$Leisure/Hobbies"
msgstr ""
msgid "Content$Tourism/Travel"
msgstr ""
msgid "Content$Handicraft"
msgstr ""
msgid "Content$Motoring"
msgstr ""
msgid "Content$Fitness & Health"
msgstr ""
msgid "Content$Cooking"
msgstr ""
msgid "Content$Advertisement/Shopping"
msgstr ""
msgid "Content$Gardening"
msgstr ""
msgid "Content$Original Language"
msgstr ""
msgid "Content$Black & White"
msgstr ""
msgid "Content$Unpublished"
msgstr ""
msgid "Content$Live Broadcast"
msgstr ""
msgid "No title"
msgstr "Sin título"

View File

@ -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: 2009-11-22 12:28+0100\n"
"POT-Creation-Date: 2010-01-03 12:41+0100\n"
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
"Last-Translator: Arthur Konovalov <artlov@gmail.com>\n"
"Language-Team: Estonian\n"
@ -39,6 +39,243 @@ msgstr "Siirdemooduse start nurjus!"
msgid "Starting EPG scan"
msgstr "EPG skaneerimine käivitatud"
msgid "Content$Movie/Drama"
msgstr ""
msgid "Content$Detective/Thriller"
msgstr ""
msgid "Content$Adventure/Western/War"
msgstr ""
msgid "Content$Science Fiction/Fantasy/Horror"
msgstr ""
msgid "Content$Comedy"
msgstr ""
msgid "Content$Soap/Melodrama/Folkloric"
msgstr ""
msgid "Content$Romance"
msgstr ""
msgid "Content$Serious/Classical/Religious/Historical Movie/Drama"
msgstr ""
msgid "Content$Adult Movie/Drama"
msgstr ""
msgid "Content$News/Current Affairs"
msgstr ""
msgid "Content$News/Weather Report"
msgstr ""
msgid "Content$News Magazine"
msgstr ""
msgid "Content$Documentary"
msgstr ""
msgid "Content$Discussion/Inverview/Debate"
msgstr ""
msgid "Content$Show/Game Show"
msgstr ""
msgid "Content$Game Show/Quiz/Contest"
msgstr ""
msgid "Content$Variety Show"
msgstr ""
msgid "Content$Talk Show"
msgstr ""
msgid "Content$Sports"
msgstr ""
msgid "Content$Special Event"
msgstr ""
msgid "Content$Sport Magazine"
msgstr ""
msgid "Content$Football/Soccer"
msgstr ""
msgid "Content$Tennis/Squash"
msgstr ""
msgid "Content$Team Sports"
msgstr ""
msgid "Content$Athletics"
msgstr ""
msgid "Content$Motor Sport"
msgstr ""
msgid "Content$Water Sport"
msgstr ""
msgid "Content$Winter Sports"
msgstr ""
msgid "Content$Equestrian"
msgstr ""
msgid "Content$Martial Sports"
msgstr ""
msgid "Content$Children's/Youth Programme"
msgstr ""
msgid "Content$Pre-school Children's Programme"
msgstr ""
msgid "Content$Entertainment Programme for 6 to 14"
msgstr ""
msgid "Content$Entertainment Programme for 10 to 16"
msgstr ""
msgid "Content$Informational/Educational/School Programme"
msgstr ""
msgid "Content$Cartoons/Puppets"
msgstr ""
msgid "Content$Music/Ballet/Dance"
msgstr ""
msgid "Content$Rock/Pop"
msgstr ""
msgid "Content$Serious/Classical Music"
msgstr ""
msgid "Content$Folk/Tradional Music"
msgstr ""
msgid "Content$Jazz"
msgstr ""
msgid "Content$Musical/Opera"
msgstr ""
msgid "Content$Ballet"
msgstr ""
msgid "Content$Arts/Culture"
msgstr ""
msgid "Content$Performing Arts"
msgstr ""
msgid "Content$Fine Arts"
msgstr ""
msgid "Content$Religion"
msgstr ""
msgid "Content$Popular Culture/Traditional Arts"
msgstr ""
msgid "Content$Literature"
msgstr ""
msgid "Content$Film/Cinema"
msgstr ""
msgid "Content$Experimental Film/Video"
msgstr ""
msgid "Content$Broadcasting/Press"
msgstr ""
msgid "Content$New Media"
msgstr ""
msgid "Content$Arts/Culture Magazine"
msgstr ""
msgid "Content$Fashion"
msgstr ""
msgid "Content$Social/Political/Economics"
msgstr ""
msgid "Content$Magazine/Report/Documentary"
msgstr ""
msgid "Content$Economics/Social Advisory"
msgstr ""
msgid "Content$Remarkable People"
msgstr ""
msgid "Content$Education/Science/Factual"
msgstr ""
msgid "Content$Nature/Animals/Environment"
msgstr ""
msgid "Content$Technology/Natural Sciences"
msgstr ""
msgid "Content$Medicine/Physiology/Psychology"
msgstr ""
msgid "Content$Foreign Countries/Expeditions"
msgstr ""
msgid "Content$Social/Spiritual Sciences"
msgstr ""
msgid "Content$Further Education"
msgstr ""
msgid "Content$Languages"
msgstr ""
msgid "Content$Leisure/Hobbies"
msgstr ""
msgid "Content$Tourism/Travel"
msgstr ""
msgid "Content$Handicraft"
msgstr ""
msgid "Content$Motoring"
msgstr ""
msgid "Content$Fitness & Health"
msgstr ""
msgid "Content$Cooking"
msgstr ""
msgid "Content$Advertisement/Shopping"
msgstr ""
msgid "Content$Gardening"
msgstr ""
msgid "Content$Original Language"
msgstr ""
msgid "Content$Black & White"
msgstr ""
msgid "Content$Unpublished"
msgstr ""
msgid "Content$Live Broadcast"
msgstr ""
msgid "No title"
msgstr "Pealkiri puudub"

View File

@ -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: 2009-11-22 12:28+0100\n"
"POT-Creation-Date: 2010-01-03 12:41+0100\n"
"PO-Revision-Date: 2007-08-15 15:52+0200\n"
"Last-Translator: Rolf Ahrenberg <rahrenbe@cc.hut.fi>\n"
"Language-Team: Finnish\n"
@ -42,6 +42,243 @@ msgstr "Siirtotilan aloitus ep
msgid "Starting EPG scan"
msgstr "Ohjelmaoppaan päivitys aloitettu"
msgid "Content$Movie/Drama"
msgstr "Elokuva/draama"
msgid "Content$Detective/Thriller"
msgstr "Etsivä/trilleri"
msgid "Content$Adventure/Western/War"
msgstr "Seikkailu/western/sota"
msgid "Content$Science Fiction/Fantasy/Horror"
msgstr "Scifi/fantasia/kauhu"
msgid "Content$Comedy"
msgstr "Komedia"
msgid "Content$Soap/Melodrama/Folkloric"
msgstr "Saippua/melodraama/kansanperinne"
msgid "Content$Romance"
msgstr "Romanssi"
msgid "Content$Serious/Classical/Religious/Historical Movie/Drama"
msgstr "Vakava/klassinen/uskonnollinen/historiallinen elokuva/draama"
msgid "Content$Adult Movie/Drama"
msgstr "Aikuiselokuva/draama"
msgid "Content$News/Current Affairs"
msgstr "Uutiset/ajankohtaisohjelma"
msgid "Content$News/Weather Report"
msgstr "Uutiset/säätiedot"
msgid "Content$News Magazine"
msgstr "Uutismakasiini"
msgid "Content$Documentary"
msgstr "Dokumentti"
msgid "Content$Discussion/Inverview/Debate"
msgstr "Keskustelu/haastattelu/väittely"
msgid "Content$Show/Game Show"
msgstr "Show/visailu"
msgid "Content$Game Show/Quiz/Contest"
msgstr "Visailu/kilpailu"
msgid "Content$Variety Show"
msgstr "Varietee"
msgid "Content$Talk Show"
msgstr "Keskusteluohjelma"
msgid "Content$Sports"
msgstr "Urheilua"
msgid "Content$Special Event"
msgstr "Erikoistapahtuma"
msgid "Content$Sport Magazine"
msgstr "Urheilumakasiini"
msgid "Content$Football/Soccer"
msgstr "Jalkapallo"
msgid "Content$Tennis/Squash"
msgstr "Tennis/Squash"
msgid "Content$Team Sports"
msgstr "Joukkueurheilua"
msgid "Content$Athletics"
msgstr "Yleisurheilua"
msgid "Content$Motor Sport"
msgstr "Moottoriurheilua"
msgid "Content$Water Sport"
msgstr "Vesiurheilua"
msgid "Content$Winter Sports"
msgstr "Talviurheilua"
msgid "Content$Equestrian"
msgstr "Ratsastusta"
msgid "Content$Martial Sports"
msgstr "Kamppailu-urheilua"
msgid "Content$Children's/Youth Programme"
msgstr "Lasten ja nuorten ohjelma"
msgid "Content$Pre-school Children's Programme"
msgstr "Alle kouluikäisten ohjelma"
msgid "Content$Entertainment Programme for 6 to 14"
msgstr "Viihdeohjelma 6-14 vuotiaille"
msgid "Content$Entertainment Programme for 10 to 16"
msgstr "Viihdeohjelma 10-16 vuotiaille"
msgid "Content$Informational/Educational/School Programme"
msgstr "Opetus/kouluohjelma"
msgid "Content$Cartoons/Puppets"
msgstr "Piirretty/nukke-esitys"
msgid "Content$Music/Ballet/Dance"
msgstr "Musiikki/baletti/tanssi"
msgid "Content$Rock/Pop"
msgstr "Rock/pop"
msgid "Content$Serious/Classical Music"
msgstr "Vakava/klassinen musiikki"
msgid "Content$Folk/Tradional Music"
msgstr "Folk/kansanmusiikki"
msgid "Content$Jazz"
msgstr "Jazz"
msgid "Content$Musical/Opera"
msgstr "Musikaali/ooppera"
msgid "Content$Ballet"
msgstr "Baletti"
msgid "Content$Arts/Culture"
msgstr "Taide/kulttuuri"
msgid "Content$Performing Arts"
msgstr "Performanssitaide"
msgid "Content$Fine Arts"
msgstr "Kuvataide"
msgid "Content$Religion"
msgstr "Uskonto"
msgid "Content$Popular Culture/Traditional Arts"
msgstr "Populaarikulttuuri/perinnetaiteet"
msgid "Content$Literature"
msgstr "Kirjallisuus"
msgid "Content$Film/Cinema"
msgstr "Elokuvataide"
msgid "Content$Experimental Film/Video"
msgstr "Kokeellinen elokuva/video"
msgid "Content$Broadcasting/Press"
msgstr "Televisio/radio/lehdistö"
msgid "Content$New Media"
msgstr "Uusmedia"
msgid "Content$Arts/Culture Magazine"
msgstr "Taide/kulttuurimakasiini"
msgid "Content$Fashion"
msgstr "Muoti"
msgid "Content$Social/Political/Economics"
msgstr "Yhteiskunta/politiikka/talous"
msgid "Content$Magazine/Report/Documentary"
msgstr "Makasiini/reportaasi/dokumentti"
msgid "Content$Economics/Social Advisory"
msgstr "Talous/yhteiskunnallinen neuvonta"
msgid "Content$Remarkable People"
msgstr "Merkittävät henkilöt"
msgid "Content$Education/Science/Factual"
msgstr "Koulutus/tiede"
msgid "Content$Nature/Animals/Environment"
msgstr "Luonto/eläimet/ympäristö"
msgid "Content$Technology/Natural Sciences"
msgstr "Teknologia/luonnontiede"
msgid "Content$Medicine/Physiology/Psychology"
msgstr "Lääketiede/fysiologia/psykologia"
msgid "Content$Foreign Countries/Expeditions"
msgstr "Vieraat maat/tutkimusretket"
msgid "Content$Social/Spiritual Sciences"
msgstr "Yhteiskunta/hengelliset tieteet"
msgid "Content$Further Education"
msgstr "Jatkokoulutus"
msgid "Content$Languages"
msgstr "Kielet"
msgid "Content$Leisure/Hobbies"
msgstr "Vapaa-aika ja harrastukset"
msgid "Content$Tourism/Travel"
msgstr "Turismi/matkustaminen"
msgid "Content$Handicraft"
msgstr "Käsityöt"
msgid "Content$Motoring"
msgstr "Autoilu"
msgid "Content$Fitness & Health"
msgstr "Kuntoilu & terveys"
msgid "Content$Cooking"
msgstr "Ruuanlaitto"
msgid "Content$Advertisement/Shopping"
msgstr "Mainostaminen/ostaminen"
msgid "Content$Gardening"
msgstr "Puutarhanhoito"
msgid "Content$Original Language"
msgstr "Alkuperäiskieli"
msgid "Content$Black & White"
msgstr "Mustavalkoinen"
msgid "Content$Unpublished"
msgstr "Julkaisematon"
msgid "Content$Live Broadcast"
msgstr "Suoralähetys"
msgid "No title"
msgstr "Ei esitystä"

View File

@ -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: 2009-11-22 12:28+0100\n"
"POT-Creation-Date: 2010-01-03 12:41+0100\n"
"PO-Revision-Date: 2008-02-27 18:14+0100\n"
"Last-Translator: Jean-Claude Repetto <jc@repetto.org>\n"
"Language-Team: French\n"
@ -45,6 +45,243 @@ msgstr "Impossible d'utiliser le mode transfert !"
msgid "Starting EPG scan"
msgstr "Mise à jour du guide des programmes"
msgid "Content$Movie/Drama"
msgstr ""
msgid "Content$Detective/Thriller"
msgstr ""
msgid "Content$Adventure/Western/War"
msgstr ""
msgid "Content$Science Fiction/Fantasy/Horror"
msgstr ""
msgid "Content$Comedy"
msgstr ""
msgid "Content$Soap/Melodrama/Folkloric"
msgstr ""
msgid "Content$Romance"
msgstr ""
msgid "Content$Serious/Classical/Religious/Historical Movie/Drama"
msgstr ""
msgid "Content$Adult Movie/Drama"
msgstr ""
msgid "Content$News/Current Affairs"
msgstr ""
msgid "Content$News/Weather Report"
msgstr ""
msgid "Content$News Magazine"
msgstr ""
msgid "Content$Documentary"
msgstr ""
msgid "Content$Discussion/Inverview/Debate"
msgstr ""
msgid "Content$Show/Game Show"
msgstr ""
msgid "Content$Game Show/Quiz/Contest"
msgstr ""
msgid "Content$Variety Show"
msgstr ""
msgid "Content$Talk Show"
msgstr ""
msgid "Content$Sports"
msgstr ""
msgid "Content$Special Event"
msgstr ""
msgid "Content$Sport Magazine"
msgstr ""
msgid "Content$Football/Soccer"
msgstr ""
msgid "Content$Tennis/Squash"
msgstr ""
msgid "Content$Team Sports"
msgstr ""
msgid "Content$Athletics"
msgstr ""
msgid "Content$Motor Sport"
msgstr ""
msgid "Content$Water Sport"
msgstr ""
msgid "Content$Winter Sports"
msgstr ""
msgid "Content$Equestrian"
msgstr ""
msgid "Content$Martial Sports"
msgstr ""
msgid "Content$Children's/Youth Programme"
msgstr ""
msgid "Content$Pre-school Children's Programme"
msgstr ""
msgid "Content$Entertainment Programme for 6 to 14"
msgstr ""
msgid "Content$Entertainment Programme for 10 to 16"
msgstr ""
msgid "Content$Informational/Educational/School Programme"
msgstr ""
msgid "Content$Cartoons/Puppets"
msgstr ""
msgid "Content$Music/Ballet/Dance"
msgstr ""
msgid "Content$Rock/Pop"
msgstr ""
msgid "Content$Serious/Classical Music"
msgstr ""
msgid "Content$Folk/Tradional Music"
msgstr ""
msgid "Content$Jazz"
msgstr ""
msgid "Content$Musical/Opera"
msgstr ""
msgid "Content$Ballet"
msgstr ""
msgid "Content$Arts/Culture"
msgstr ""
msgid "Content$Performing Arts"
msgstr ""
msgid "Content$Fine Arts"
msgstr ""
msgid "Content$Religion"
msgstr ""
msgid "Content$Popular Culture/Traditional Arts"
msgstr ""
msgid "Content$Literature"
msgstr ""
msgid "Content$Film/Cinema"
msgstr ""
msgid "Content$Experimental Film/Video"
msgstr ""
msgid "Content$Broadcasting/Press"
msgstr ""
msgid "Content$New Media"
msgstr ""
msgid "Content$Arts/Culture Magazine"
msgstr ""
msgid "Content$Fashion"
msgstr ""
msgid "Content$Social/Political/Economics"
msgstr ""
msgid "Content$Magazine/Report/Documentary"
msgstr ""
msgid "Content$Economics/Social Advisory"
msgstr ""
msgid "Content$Remarkable People"
msgstr ""
msgid "Content$Education/Science/Factual"
msgstr ""
msgid "Content$Nature/Animals/Environment"
msgstr ""
msgid "Content$Technology/Natural Sciences"
msgstr ""
msgid "Content$Medicine/Physiology/Psychology"
msgstr ""
msgid "Content$Foreign Countries/Expeditions"
msgstr ""
msgid "Content$Social/Spiritual Sciences"
msgstr ""
msgid "Content$Further Education"
msgstr ""
msgid "Content$Languages"
msgstr ""
msgid "Content$Leisure/Hobbies"
msgstr ""
msgid "Content$Tourism/Travel"
msgstr ""
msgid "Content$Handicraft"
msgstr ""
msgid "Content$Motoring"
msgstr ""
msgid "Content$Fitness & Health"
msgstr ""
msgid "Content$Cooking"
msgstr ""
msgid "Content$Advertisement/Shopping"
msgstr ""
msgid "Content$Gardening"
msgstr ""
msgid "Content$Original Language"
msgstr ""
msgid "Content$Black & White"
msgstr ""
msgid "Content$Unpublished"
msgstr ""
msgid "Content$Live Broadcast"
msgstr ""
msgid "No title"
msgstr "Sans titre"

View File

@ -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: 2009-11-22 12:28+0100\n"
"POT-Creation-Date: 2010-01-03 12:41+0100\n"
"PO-Revision-Date: 2008-03-17 19:00+0100\n"
"Last-Translator: Adrian Caval <anrxc@sysphere.org>\n"
"Language-Team: Croatian\n"
@ -41,6 +41,243 @@ msgstr "Nemogu
msgid "Starting EPG scan"
msgstr "Poèinjem EPG pretragu"
msgid "Content$Movie/Drama"
msgstr ""
msgid "Content$Detective/Thriller"
msgstr ""
msgid "Content$Adventure/Western/War"
msgstr ""
msgid "Content$Science Fiction/Fantasy/Horror"
msgstr ""
msgid "Content$Comedy"
msgstr ""
msgid "Content$Soap/Melodrama/Folkloric"
msgstr ""
msgid "Content$Romance"
msgstr ""
msgid "Content$Serious/Classical/Religious/Historical Movie/Drama"
msgstr ""
msgid "Content$Adult Movie/Drama"
msgstr ""
msgid "Content$News/Current Affairs"
msgstr ""
msgid "Content$News/Weather Report"
msgstr ""
msgid "Content$News Magazine"
msgstr ""
msgid "Content$Documentary"
msgstr ""
msgid "Content$Discussion/Inverview/Debate"
msgstr ""
msgid "Content$Show/Game Show"
msgstr ""
msgid "Content$Game Show/Quiz/Contest"
msgstr ""
msgid "Content$Variety Show"
msgstr ""
msgid "Content$Talk Show"
msgstr ""
msgid "Content$Sports"
msgstr ""
msgid "Content$Special Event"
msgstr ""
msgid "Content$Sport Magazine"
msgstr ""
msgid "Content$Football/Soccer"
msgstr ""
msgid "Content$Tennis/Squash"
msgstr ""
msgid "Content$Team Sports"
msgstr ""
msgid "Content$Athletics"
msgstr ""
msgid "Content$Motor Sport"
msgstr ""
msgid "Content$Water Sport"
msgstr ""
msgid "Content$Winter Sports"
msgstr ""
msgid "Content$Equestrian"
msgstr ""
msgid "Content$Martial Sports"
msgstr ""
msgid "Content$Children's/Youth Programme"
msgstr ""
msgid "Content$Pre-school Children's Programme"
msgstr ""
msgid "Content$Entertainment Programme for 6 to 14"
msgstr ""
msgid "Content$Entertainment Programme for 10 to 16"
msgstr ""
msgid "Content$Informational/Educational/School Programme"
msgstr ""
msgid "Content$Cartoons/Puppets"
msgstr ""
msgid "Content$Music/Ballet/Dance"
msgstr ""
msgid "Content$Rock/Pop"
msgstr ""
msgid "Content$Serious/Classical Music"
msgstr ""
msgid "Content$Folk/Tradional Music"
msgstr ""
msgid "Content$Jazz"
msgstr ""
msgid "Content$Musical/Opera"
msgstr ""
msgid "Content$Ballet"
msgstr ""
msgid "Content$Arts/Culture"
msgstr ""
msgid "Content$Performing Arts"
msgstr ""
msgid "Content$Fine Arts"
msgstr ""
msgid "Content$Religion"
msgstr ""
msgid "Content$Popular Culture/Traditional Arts"
msgstr ""
msgid "Content$Literature"
msgstr ""
msgid "Content$Film/Cinema"
msgstr ""
msgid "Content$Experimental Film/Video"
msgstr ""
msgid "Content$Broadcasting/Press"
msgstr ""
msgid "Content$New Media"
msgstr ""
msgid "Content$Arts/Culture Magazine"
msgstr ""
msgid "Content$Fashion"
msgstr ""
msgid "Content$Social/Political/Economics"
msgstr ""
msgid "Content$Magazine/Report/Documentary"
msgstr ""
msgid "Content$Economics/Social Advisory"
msgstr ""
msgid "Content$Remarkable People"
msgstr ""
msgid "Content$Education/Science/Factual"
msgstr ""
msgid "Content$Nature/Animals/Environment"
msgstr ""
msgid "Content$Technology/Natural Sciences"
msgstr ""
msgid "Content$Medicine/Physiology/Psychology"
msgstr ""
msgid "Content$Foreign Countries/Expeditions"
msgstr ""
msgid "Content$Social/Spiritual Sciences"
msgstr ""
msgid "Content$Further Education"
msgstr ""
msgid "Content$Languages"
msgstr ""
msgid "Content$Leisure/Hobbies"
msgstr ""
msgid "Content$Tourism/Travel"
msgstr ""
msgid "Content$Handicraft"
msgstr ""
msgid "Content$Motoring"
msgstr ""
msgid "Content$Fitness & Health"
msgstr ""
msgid "Content$Cooking"
msgstr ""
msgid "Content$Advertisement/Shopping"
msgstr ""
msgid "Content$Gardening"
msgstr ""
msgid "Content$Original Language"
msgstr ""
msgid "Content$Black & White"
msgstr ""
msgid "Content$Unpublished"
msgstr ""
msgid "Content$Live Broadcast"
msgstr ""
msgid "No title"
msgstr "Bez naziva"

View File

@ -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: 2009-11-22 12:28+0100\n"
"POT-Creation-Date: 2010-01-03 12:41+0100\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"
@ -42,6 +42,243 @@ msgstr "Transfer-Mode nem ind
msgid "Starting EPG scan"
msgstr "EPG adatok aktualizálása"
msgid "Content$Movie/Drama"
msgstr ""
msgid "Content$Detective/Thriller"
msgstr ""
msgid "Content$Adventure/Western/War"
msgstr ""
msgid "Content$Science Fiction/Fantasy/Horror"
msgstr ""
msgid "Content$Comedy"
msgstr ""
msgid "Content$Soap/Melodrama/Folkloric"
msgstr ""
msgid "Content$Romance"
msgstr ""
msgid "Content$Serious/Classical/Religious/Historical Movie/Drama"
msgstr ""
msgid "Content$Adult Movie/Drama"
msgstr ""
msgid "Content$News/Current Affairs"
msgstr ""
msgid "Content$News/Weather Report"
msgstr ""
msgid "Content$News Magazine"
msgstr ""
msgid "Content$Documentary"
msgstr ""
msgid "Content$Discussion/Inverview/Debate"
msgstr ""
msgid "Content$Show/Game Show"
msgstr ""
msgid "Content$Game Show/Quiz/Contest"
msgstr ""
msgid "Content$Variety Show"
msgstr ""
msgid "Content$Talk Show"
msgstr ""
msgid "Content$Sports"
msgstr ""
msgid "Content$Special Event"
msgstr ""
msgid "Content$Sport Magazine"
msgstr ""
msgid "Content$Football/Soccer"
msgstr ""
msgid "Content$Tennis/Squash"
msgstr ""
msgid "Content$Team Sports"
msgstr ""
msgid "Content$Athletics"
msgstr ""
msgid "Content$Motor Sport"
msgstr ""
msgid "Content$Water Sport"
msgstr ""
msgid "Content$Winter Sports"
msgstr ""
msgid "Content$Equestrian"
msgstr ""
msgid "Content$Martial Sports"
msgstr ""
msgid "Content$Children's/Youth Programme"
msgstr ""
msgid "Content$Pre-school Children's Programme"
msgstr ""
msgid "Content$Entertainment Programme for 6 to 14"
msgstr ""
msgid "Content$Entertainment Programme for 10 to 16"
msgstr ""
msgid "Content$Informational/Educational/School Programme"
msgstr ""
msgid "Content$Cartoons/Puppets"
msgstr ""
msgid "Content$Music/Ballet/Dance"
msgstr ""
msgid "Content$Rock/Pop"
msgstr ""
msgid "Content$Serious/Classical Music"
msgstr ""
msgid "Content$Folk/Tradional Music"
msgstr ""
msgid "Content$Jazz"
msgstr ""
msgid "Content$Musical/Opera"
msgstr ""
msgid "Content$Ballet"
msgstr ""
msgid "Content$Arts/Culture"
msgstr ""
msgid "Content$Performing Arts"
msgstr ""
msgid "Content$Fine Arts"
msgstr ""
msgid "Content$Religion"
msgstr ""
msgid "Content$Popular Culture/Traditional Arts"
msgstr ""
msgid "Content$Literature"
msgstr ""
msgid "Content$Film/Cinema"
msgstr ""
msgid "Content$Experimental Film/Video"
msgstr ""
msgid "Content$Broadcasting/Press"
msgstr ""
msgid "Content$New Media"
msgstr ""
msgid "Content$Arts/Culture Magazine"
msgstr ""
msgid "Content$Fashion"
msgstr ""
msgid "Content$Social/Political/Economics"
msgstr ""
msgid "Content$Magazine/Report/Documentary"
msgstr ""
msgid "Content$Economics/Social Advisory"
msgstr ""
msgid "Content$Remarkable People"
msgstr ""
msgid "Content$Education/Science/Factual"
msgstr ""
msgid "Content$Nature/Animals/Environment"
msgstr ""
msgid "Content$Technology/Natural Sciences"
msgstr ""
msgid "Content$Medicine/Physiology/Psychology"
msgstr ""
msgid "Content$Foreign Countries/Expeditions"
msgstr ""
msgid "Content$Social/Spiritual Sciences"
msgstr ""
msgid "Content$Further Education"
msgstr ""
msgid "Content$Languages"
msgstr ""
msgid "Content$Leisure/Hobbies"
msgstr ""
msgid "Content$Tourism/Travel"
msgstr ""
msgid "Content$Handicraft"
msgstr ""
msgid "Content$Motoring"
msgstr ""
msgid "Content$Fitness & Health"
msgstr ""
msgid "Content$Cooking"
msgstr ""
msgid "Content$Advertisement/Shopping"
msgstr ""
msgid "Content$Gardening"
msgstr ""
msgid "Content$Original Language"
msgstr ""
msgid "Content$Black & White"
msgstr ""
msgid "Content$Unpublished"
msgstr ""
msgid "Content$Live Broadcast"
msgstr ""
msgid "No title"
msgstr "név nélkül"

View File

@ -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: 2009-11-22 12:28+0100\n"
"POT-Creation-Date: 2010-01-03 12:41+0100\n"
"PO-Revision-Date: 2009-11-28 22:50+0100\n"
"Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n"
"Language-Team: Italian\n"
@ -46,6 +46,243 @@ msgstr "Impossibile avviare mod. trasferimento!"
msgid "Starting EPG scan"
msgstr "Inizio scansione EPG"
msgid "Content$Movie/Drama"
msgstr ""
msgid "Content$Detective/Thriller"
msgstr ""
msgid "Content$Adventure/Western/War"
msgstr ""
msgid "Content$Science Fiction/Fantasy/Horror"
msgstr ""
msgid "Content$Comedy"
msgstr ""
msgid "Content$Soap/Melodrama/Folkloric"
msgstr ""
msgid "Content$Romance"
msgstr ""
msgid "Content$Serious/Classical/Religious/Historical Movie/Drama"
msgstr ""
msgid "Content$Adult Movie/Drama"
msgstr ""
msgid "Content$News/Current Affairs"
msgstr ""
msgid "Content$News/Weather Report"
msgstr ""
msgid "Content$News Magazine"
msgstr ""
msgid "Content$Documentary"
msgstr ""
msgid "Content$Discussion/Inverview/Debate"
msgstr ""
msgid "Content$Show/Game Show"
msgstr ""
msgid "Content$Game Show/Quiz/Contest"
msgstr ""
msgid "Content$Variety Show"
msgstr ""
msgid "Content$Talk Show"
msgstr ""
msgid "Content$Sports"
msgstr ""
msgid "Content$Special Event"
msgstr ""
msgid "Content$Sport Magazine"
msgstr ""
msgid "Content$Football/Soccer"
msgstr ""
msgid "Content$Tennis/Squash"
msgstr ""
msgid "Content$Team Sports"
msgstr ""
msgid "Content$Athletics"
msgstr ""
msgid "Content$Motor Sport"
msgstr ""
msgid "Content$Water Sport"
msgstr ""
msgid "Content$Winter Sports"
msgstr ""
msgid "Content$Equestrian"
msgstr ""
msgid "Content$Martial Sports"
msgstr ""
msgid "Content$Children's/Youth Programme"
msgstr ""
msgid "Content$Pre-school Children's Programme"
msgstr ""
msgid "Content$Entertainment Programme for 6 to 14"
msgstr ""
msgid "Content$Entertainment Programme for 10 to 16"
msgstr ""
msgid "Content$Informational/Educational/School Programme"
msgstr ""
msgid "Content$Cartoons/Puppets"
msgstr ""
msgid "Content$Music/Ballet/Dance"
msgstr ""
msgid "Content$Rock/Pop"
msgstr ""
msgid "Content$Serious/Classical Music"
msgstr ""
msgid "Content$Folk/Tradional Music"
msgstr ""
msgid "Content$Jazz"
msgstr ""
msgid "Content$Musical/Opera"
msgstr ""
msgid "Content$Ballet"
msgstr ""
msgid "Content$Arts/Culture"
msgstr ""
msgid "Content$Performing Arts"
msgstr ""
msgid "Content$Fine Arts"
msgstr ""
msgid "Content$Religion"
msgstr ""
msgid "Content$Popular Culture/Traditional Arts"
msgstr ""
msgid "Content$Literature"
msgstr ""
msgid "Content$Film/Cinema"
msgstr ""
msgid "Content$Experimental Film/Video"
msgstr ""
msgid "Content$Broadcasting/Press"
msgstr ""
msgid "Content$New Media"
msgstr ""
msgid "Content$Arts/Culture Magazine"
msgstr ""
msgid "Content$Fashion"
msgstr ""
msgid "Content$Social/Political/Economics"
msgstr ""
msgid "Content$Magazine/Report/Documentary"
msgstr ""
msgid "Content$Economics/Social Advisory"
msgstr ""
msgid "Content$Remarkable People"
msgstr ""
msgid "Content$Education/Science/Factual"
msgstr ""
msgid "Content$Nature/Animals/Environment"
msgstr ""
msgid "Content$Technology/Natural Sciences"
msgstr ""
msgid "Content$Medicine/Physiology/Psychology"
msgstr ""
msgid "Content$Foreign Countries/Expeditions"
msgstr ""
msgid "Content$Social/Spiritual Sciences"
msgstr ""
msgid "Content$Further Education"
msgstr ""
msgid "Content$Languages"
msgstr ""
msgid "Content$Leisure/Hobbies"
msgstr ""
msgid "Content$Tourism/Travel"
msgstr ""
msgid "Content$Handicraft"
msgstr ""
msgid "Content$Motoring"
msgstr ""
msgid "Content$Fitness & Health"
msgstr ""
msgid "Content$Cooking"
msgstr ""
msgid "Content$Advertisement/Shopping"
msgstr ""
msgid "Content$Gardening"
msgstr ""
msgid "Content$Original Language"
msgstr ""
msgid "Content$Black & White"
msgstr ""
msgid "Content$Unpublished"
msgstr ""
msgid "Content$Live Broadcast"
msgstr ""
msgid "No title"
msgstr "Senza titolo"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.7.9\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2009-11-22 12:28+0100\n"
"POT-Creation-Date: 2010-01-03 12:41+0100\n"
"PO-Revision-Date: 2009-10-17 14:19+0200\n"
"Last-Translator: Valdemaras Pipiras <varas@ambernet.lt>\n"
"Language-Team: Lithuanian\n"
@ -39,6 +39,243 @@ msgstr "Negali pradėti perdavimo"
msgid "Starting EPG scan"
msgstr "Pradedamas EPG skanavimas"
msgid "Content$Movie/Drama"
msgstr ""
msgid "Content$Detective/Thriller"
msgstr ""
msgid "Content$Adventure/Western/War"
msgstr ""
msgid "Content$Science Fiction/Fantasy/Horror"
msgstr ""
msgid "Content$Comedy"
msgstr ""
msgid "Content$Soap/Melodrama/Folkloric"
msgstr ""
msgid "Content$Romance"
msgstr ""
msgid "Content$Serious/Classical/Religious/Historical Movie/Drama"
msgstr ""
msgid "Content$Adult Movie/Drama"
msgstr ""
msgid "Content$News/Current Affairs"
msgstr ""
msgid "Content$News/Weather Report"
msgstr ""
msgid "Content$News Magazine"
msgstr ""
msgid "Content$Documentary"
msgstr ""
msgid "Content$Discussion/Inverview/Debate"
msgstr ""
msgid "Content$Show/Game Show"
msgstr ""
msgid "Content$Game Show/Quiz/Contest"
msgstr ""
msgid "Content$Variety Show"
msgstr ""
msgid "Content$Talk Show"
msgstr ""
msgid "Content$Sports"
msgstr ""
msgid "Content$Special Event"
msgstr ""
msgid "Content$Sport Magazine"
msgstr ""
msgid "Content$Football/Soccer"
msgstr ""
msgid "Content$Tennis/Squash"
msgstr ""
msgid "Content$Team Sports"
msgstr ""
msgid "Content$Athletics"
msgstr ""
msgid "Content$Motor Sport"
msgstr ""
msgid "Content$Water Sport"
msgstr ""
msgid "Content$Winter Sports"
msgstr ""
msgid "Content$Equestrian"
msgstr ""
msgid "Content$Martial Sports"
msgstr ""
msgid "Content$Children's/Youth Programme"
msgstr ""
msgid "Content$Pre-school Children's Programme"
msgstr ""
msgid "Content$Entertainment Programme for 6 to 14"
msgstr ""
msgid "Content$Entertainment Programme for 10 to 16"
msgstr ""
msgid "Content$Informational/Educational/School Programme"
msgstr ""
msgid "Content$Cartoons/Puppets"
msgstr ""
msgid "Content$Music/Ballet/Dance"
msgstr ""
msgid "Content$Rock/Pop"
msgstr ""
msgid "Content$Serious/Classical Music"
msgstr ""
msgid "Content$Folk/Tradional Music"
msgstr ""
msgid "Content$Jazz"
msgstr ""
msgid "Content$Musical/Opera"
msgstr ""
msgid "Content$Ballet"
msgstr ""
msgid "Content$Arts/Culture"
msgstr ""
msgid "Content$Performing Arts"
msgstr ""
msgid "Content$Fine Arts"
msgstr ""
msgid "Content$Religion"
msgstr ""
msgid "Content$Popular Culture/Traditional Arts"
msgstr ""
msgid "Content$Literature"
msgstr ""
msgid "Content$Film/Cinema"
msgstr ""
msgid "Content$Experimental Film/Video"
msgstr ""
msgid "Content$Broadcasting/Press"
msgstr ""
msgid "Content$New Media"
msgstr ""
msgid "Content$Arts/Culture Magazine"
msgstr ""
msgid "Content$Fashion"
msgstr ""
msgid "Content$Social/Political/Economics"
msgstr ""
msgid "Content$Magazine/Report/Documentary"
msgstr ""
msgid "Content$Economics/Social Advisory"
msgstr ""
msgid "Content$Remarkable People"
msgstr ""
msgid "Content$Education/Science/Factual"
msgstr ""
msgid "Content$Nature/Animals/Environment"
msgstr ""
msgid "Content$Technology/Natural Sciences"
msgstr ""
msgid "Content$Medicine/Physiology/Psychology"
msgstr ""
msgid "Content$Foreign Countries/Expeditions"
msgstr ""
msgid "Content$Social/Spiritual Sciences"
msgstr ""
msgid "Content$Further Education"
msgstr ""
msgid "Content$Languages"
msgstr ""
msgid "Content$Leisure/Hobbies"
msgstr ""
msgid "Content$Tourism/Travel"
msgstr ""
msgid "Content$Handicraft"
msgstr ""
msgid "Content$Motoring"
msgstr ""
msgid "Content$Fitness & Health"
msgstr ""
msgid "Content$Cooking"
msgstr ""
msgid "Content$Advertisement/Shopping"
msgstr ""
msgid "Content$Gardening"
msgstr ""
msgid "Content$Original Language"
msgstr ""
msgid "Content$Black & White"
msgstr ""
msgid "Content$Unpublished"
msgstr ""
msgid "Content$Live Broadcast"
msgstr ""
msgid "No title"
msgstr "Be pavadinimo"

View File

@ -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: 2009-11-22 12:28+0100\n"
"POT-Creation-Date: 2010-01-03 12:41+0100\n"
"PO-Revision-Date: 2008-02-26 17:20+0100\n"
"Last-Translator: Johan Schuring <johan.schuring@vetteblei.nl>\n"
"Language-Team: Dutch\n"
@ -43,6 +43,243 @@ msgstr "Kan Transfer-Mode niet starten"
msgid "Starting EPG scan"
msgstr "Bezig met starten EPG scan"
msgid "Content$Movie/Drama"
msgstr ""
msgid "Content$Detective/Thriller"
msgstr ""
msgid "Content$Adventure/Western/War"
msgstr ""
msgid "Content$Science Fiction/Fantasy/Horror"
msgstr ""
msgid "Content$Comedy"
msgstr ""
msgid "Content$Soap/Melodrama/Folkloric"
msgstr ""
msgid "Content$Romance"
msgstr ""
msgid "Content$Serious/Classical/Religious/Historical Movie/Drama"
msgstr ""
msgid "Content$Adult Movie/Drama"
msgstr ""
msgid "Content$News/Current Affairs"
msgstr ""
msgid "Content$News/Weather Report"
msgstr ""
msgid "Content$News Magazine"
msgstr ""
msgid "Content$Documentary"
msgstr ""
msgid "Content$Discussion/Inverview/Debate"
msgstr ""
msgid "Content$Show/Game Show"
msgstr ""
msgid "Content$Game Show/Quiz/Contest"
msgstr ""
msgid "Content$Variety Show"
msgstr ""
msgid "Content$Talk Show"
msgstr ""
msgid "Content$Sports"
msgstr ""
msgid "Content$Special Event"
msgstr ""
msgid "Content$Sport Magazine"
msgstr ""
msgid "Content$Football/Soccer"
msgstr ""
msgid "Content$Tennis/Squash"
msgstr ""
msgid "Content$Team Sports"
msgstr ""
msgid "Content$Athletics"
msgstr ""
msgid "Content$Motor Sport"
msgstr ""
msgid "Content$Water Sport"
msgstr ""
msgid "Content$Winter Sports"
msgstr ""
msgid "Content$Equestrian"
msgstr ""
msgid "Content$Martial Sports"
msgstr ""
msgid "Content$Children's/Youth Programme"
msgstr ""
msgid "Content$Pre-school Children's Programme"
msgstr ""
msgid "Content$Entertainment Programme for 6 to 14"
msgstr ""
msgid "Content$Entertainment Programme for 10 to 16"
msgstr ""
msgid "Content$Informational/Educational/School Programme"
msgstr ""
msgid "Content$Cartoons/Puppets"
msgstr ""
msgid "Content$Music/Ballet/Dance"
msgstr ""
msgid "Content$Rock/Pop"
msgstr ""
msgid "Content$Serious/Classical Music"
msgstr ""
msgid "Content$Folk/Tradional Music"
msgstr ""
msgid "Content$Jazz"
msgstr ""
msgid "Content$Musical/Opera"
msgstr ""
msgid "Content$Ballet"
msgstr ""
msgid "Content$Arts/Culture"
msgstr ""
msgid "Content$Performing Arts"
msgstr ""
msgid "Content$Fine Arts"
msgstr ""
msgid "Content$Religion"
msgstr ""
msgid "Content$Popular Culture/Traditional Arts"
msgstr ""
msgid "Content$Literature"
msgstr ""
msgid "Content$Film/Cinema"
msgstr ""
msgid "Content$Experimental Film/Video"
msgstr ""
msgid "Content$Broadcasting/Press"
msgstr ""
msgid "Content$New Media"
msgstr ""
msgid "Content$Arts/Culture Magazine"
msgstr ""
msgid "Content$Fashion"
msgstr ""
msgid "Content$Social/Political/Economics"
msgstr ""
msgid "Content$Magazine/Report/Documentary"
msgstr ""
msgid "Content$Economics/Social Advisory"
msgstr ""
msgid "Content$Remarkable People"
msgstr ""
msgid "Content$Education/Science/Factual"
msgstr ""
msgid "Content$Nature/Animals/Environment"
msgstr ""
msgid "Content$Technology/Natural Sciences"
msgstr ""
msgid "Content$Medicine/Physiology/Psychology"
msgstr ""
msgid "Content$Foreign Countries/Expeditions"
msgstr ""
msgid "Content$Social/Spiritual Sciences"
msgstr ""
msgid "Content$Further Education"
msgstr ""
msgid "Content$Languages"
msgstr ""
msgid "Content$Leisure/Hobbies"
msgstr ""
msgid "Content$Tourism/Travel"
msgstr ""
msgid "Content$Handicraft"
msgstr ""
msgid "Content$Motoring"
msgstr ""
msgid "Content$Fitness & Health"
msgstr ""
msgid "Content$Cooking"
msgstr ""
msgid "Content$Advertisement/Shopping"
msgstr ""
msgid "Content$Gardening"
msgstr ""
msgid "Content$Original Language"
msgstr ""
msgid "Content$Black & White"
msgstr ""
msgid "Content$Unpublished"
msgstr ""
msgid "Content$Live Broadcast"
msgstr ""
msgid "No title"
msgstr "Geen titel"

View File

@ -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: 2009-11-22 12:28+0100\n"
"POT-Creation-Date: 2010-01-03 12:41+0100\n"
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
"Last-Translator: Truls Slevigen <truls@slevigen.no>\n"
"Language-Team: Norwegian\n"
@ -40,6 +40,243 @@ msgstr "Kan ikke starte transfer modus!"
msgid "Starting EPG scan"
msgstr ""
msgid "Content$Movie/Drama"
msgstr ""
msgid "Content$Detective/Thriller"
msgstr ""
msgid "Content$Adventure/Western/War"
msgstr ""
msgid "Content$Science Fiction/Fantasy/Horror"
msgstr ""
msgid "Content$Comedy"
msgstr ""
msgid "Content$Soap/Melodrama/Folkloric"
msgstr ""
msgid "Content$Romance"
msgstr ""
msgid "Content$Serious/Classical/Religious/Historical Movie/Drama"
msgstr ""
msgid "Content$Adult Movie/Drama"
msgstr ""
msgid "Content$News/Current Affairs"
msgstr ""
msgid "Content$News/Weather Report"
msgstr ""
msgid "Content$News Magazine"
msgstr ""
msgid "Content$Documentary"
msgstr ""
msgid "Content$Discussion/Inverview/Debate"
msgstr ""
msgid "Content$Show/Game Show"
msgstr ""
msgid "Content$Game Show/Quiz/Contest"
msgstr ""
msgid "Content$Variety Show"
msgstr ""
msgid "Content$Talk Show"
msgstr ""
msgid "Content$Sports"
msgstr ""
msgid "Content$Special Event"
msgstr ""
msgid "Content$Sport Magazine"
msgstr ""
msgid "Content$Football/Soccer"
msgstr ""
msgid "Content$Tennis/Squash"
msgstr ""
msgid "Content$Team Sports"
msgstr ""
msgid "Content$Athletics"
msgstr ""
msgid "Content$Motor Sport"
msgstr ""
msgid "Content$Water Sport"
msgstr ""
msgid "Content$Winter Sports"
msgstr ""
msgid "Content$Equestrian"
msgstr ""
msgid "Content$Martial Sports"
msgstr ""
msgid "Content$Children's/Youth Programme"
msgstr ""
msgid "Content$Pre-school Children's Programme"
msgstr ""
msgid "Content$Entertainment Programme for 6 to 14"
msgstr ""
msgid "Content$Entertainment Programme for 10 to 16"
msgstr ""
msgid "Content$Informational/Educational/School Programme"
msgstr ""
msgid "Content$Cartoons/Puppets"
msgstr ""
msgid "Content$Music/Ballet/Dance"
msgstr ""
msgid "Content$Rock/Pop"
msgstr ""
msgid "Content$Serious/Classical Music"
msgstr ""
msgid "Content$Folk/Tradional Music"
msgstr ""
msgid "Content$Jazz"
msgstr ""
msgid "Content$Musical/Opera"
msgstr ""
msgid "Content$Ballet"
msgstr ""
msgid "Content$Arts/Culture"
msgstr ""
msgid "Content$Performing Arts"
msgstr ""
msgid "Content$Fine Arts"
msgstr ""
msgid "Content$Religion"
msgstr ""
msgid "Content$Popular Culture/Traditional Arts"
msgstr ""
msgid "Content$Literature"
msgstr ""
msgid "Content$Film/Cinema"
msgstr ""
msgid "Content$Experimental Film/Video"
msgstr ""
msgid "Content$Broadcasting/Press"
msgstr ""
msgid "Content$New Media"
msgstr ""
msgid "Content$Arts/Culture Magazine"
msgstr ""
msgid "Content$Fashion"
msgstr ""
msgid "Content$Social/Political/Economics"
msgstr ""
msgid "Content$Magazine/Report/Documentary"
msgstr ""
msgid "Content$Economics/Social Advisory"
msgstr ""
msgid "Content$Remarkable People"
msgstr ""
msgid "Content$Education/Science/Factual"
msgstr ""
msgid "Content$Nature/Animals/Environment"
msgstr ""
msgid "Content$Technology/Natural Sciences"
msgstr ""
msgid "Content$Medicine/Physiology/Psychology"
msgstr ""
msgid "Content$Foreign Countries/Expeditions"
msgstr ""
msgid "Content$Social/Spiritual Sciences"
msgstr ""
msgid "Content$Further Education"
msgstr ""
msgid "Content$Languages"
msgstr ""
msgid "Content$Leisure/Hobbies"
msgstr ""
msgid "Content$Tourism/Travel"
msgstr ""
msgid "Content$Handicraft"
msgstr ""
msgid "Content$Motoring"
msgstr ""
msgid "Content$Fitness & Health"
msgstr ""
msgid "Content$Cooking"
msgstr ""
msgid "Content$Advertisement/Shopping"
msgstr ""
msgid "Content$Gardening"
msgstr ""
msgid "Content$Original Language"
msgstr ""
msgid "Content$Black & White"
msgstr ""
msgid "Content$Unpublished"
msgstr ""
msgid "Content$Live Broadcast"
msgstr ""
msgid "No title"
msgstr ""

View File

@ -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: 2009-11-22 12:28+0100\n"
"POT-Creation-Date: 2010-01-03 12:41+0100\n"
"PO-Revision-Date: 2008-03-09 12:59+0100\n"
"Last-Translator: Michael Rakowski <mrak@gmx.de>\n"
"Language-Team: Polish\n"
@ -40,6 +40,243 @@ msgstr "Nie mo
msgid "Starting EPG scan"
msgstr "Rozpoczynam skanowanie EPG"
msgid "Content$Movie/Drama"
msgstr ""
msgid "Content$Detective/Thriller"
msgstr ""
msgid "Content$Adventure/Western/War"
msgstr ""
msgid "Content$Science Fiction/Fantasy/Horror"
msgstr ""
msgid "Content$Comedy"
msgstr ""
msgid "Content$Soap/Melodrama/Folkloric"
msgstr ""
msgid "Content$Romance"
msgstr ""
msgid "Content$Serious/Classical/Religious/Historical Movie/Drama"
msgstr ""
msgid "Content$Adult Movie/Drama"
msgstr ""
msgid "Content$News/Current Affairs"
msgstr ""
msgid "Content$News/Weather Report"
msgstr ""
msgid "Content$News Magazine"
msgstr ""
msgid "Content$Documentary"
msgstr ""
msgid "Content$Discussion/Inverview/Debate"
msgstr ""
msgid "Content$Show/Game Show"
msgstr ""
msgid "Content$Game Show/Quiz/Contest"
msgstr ""
msgid "Content$Variety Show"
msgstr ""
msgid "Content$Talk Show"
msgstr ""
msgid "Content$Sports"
msgstr ""
msgid "Content$Special Event"
msgstr ""
msgid "Content$Sport Magazine"
msgstr ""
msgid "Content$Football/Soccer"
msgstr ""
msgid "Content$Tennis/Squash"
msgstr ""
msgid "Content$Team Sports"
msgstr ""
msgid "Content$Athletics"
msgstr ""
msgid "Content$Motor Sport"
msgstr ""
msgid "Content$Water Sport"
msgstr ""
msgid "Content$Winter Sports"
msgstr ""
msgid "Content$Equestrian"
msgstr ""
msgid "Content$Martial Sports"
msgstr ""
msgid "Content$Children's/Youth Programme"
msgstr ""
msgid "Content$Pre-school Children's Programme"
msgstr ""
msgid "Content$Entertainment Programme for 6 to 14"
msgstr ""
msgid "Content$Entertainment Programme for 10 to 16"
msgstr ""
msgid "Content$Informational/Educational/School Programme"
msgstr ""
msgid "Content$Cartoons/Puppets"
msgstr ""
msgid "Content$Music/Ballet/Dance"
msgstr ""
msgid "Content$Rock/Pop"
msgstr ""
msgid "Content$Serious/Classical Music"
msgstr ""
msgid "Content$Folk/Tradional Music"
msgstr ""
msgid "Content$Jazz"
msgstr ""
msgid "Content$Musical/Opera"
msgstr ""
msgid "Content$Ballet"
msgstr ""
msgid "Content$Arts/Culture"
msgstr ""
msgid "Content$Performing Arts"
msgstr ""
msgid "Content$Fine Arts"
msgstr ""
msgid "Content$Religion"
msgstr ""
msgid "Content$Popular Culture/Traditional Arts"
msgstr ""
msgid "Content$Literature"
msgstr ""
msgid "Content$Film/Cinema"
msgstr ""
msgid "Content$Experimental Film/Video"
msgstr ""
msgid "Content$Broadcasting/Press"
msgstr ""
msgid "Content$New Media"
msgstr ""
msgid "Content$Arts/Culture Magazine"
msgstr ""
msgid "Content$Fashion"
msgstr ""
msgid "Content$Social/Political/Economics"
msgstr ""
msgid "Content$Magazine/Report/Documentary"
msgstr ""
msgid "Content$Economics/Social Advisory"
msgstr ""
msgid "Content$Remarkable People"
msgstr ""
msgid "Content$Education/Science/Factual"
msgstr ""
msgid "Content$Nature/Animals/Environment"
msgstr ""
msgid "Content$Technology/Natural Sciences"
msgstr ""
msgid "Content$Medicine/Physiology/Psychology"
msgstr ""
msgid "Content$Foreign Countries/Expeditions"
msgstr ""
msgid "Content$Social/Spiritual Sciences"
msgstr ""
msgid "Content$Further Education"
msgstr ""
msgid "Content$Languages"
msgstr ""
msgid "Content$Leisure/Hobbies"
msgstr ""
msgid "Content$Tourism/Travel"
msgstr ""
msgid "Content$Handicraft"
msgstr ""
msgid "Content$Motoring"
msgstr ""
msgid "Content$Fitness & Health"
msgstr ""
msgid "Content$Cooking"
msgstr ""
msgid "Content$Advertisement/Shopping"
msgstr ""
msgid "Content$Gardening"
msgstr ""
msgid "Content$Original Language"
msgstr ""
msgid "Content$Black & White"
msgstr ""
msgid "Content$Unpublished"
msgstr ""
msgid "Content$Live Broadcast"
msgstr ""
msgid "No title"
msgstr "Bez tytu³u"

View File

@ -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: 2009-11-22 12:28+0100\n"
"POT-Creation-Date: 2010-01-03 12:41+0100\n"
"PO-Revision-Date: 2008-03-18 17:04+0100\n"
"Last-Translator: anonymous\n"
"Language-Team: Portuguese\n"
@ -39,6 +39,243 @@ msgstr "Imposs
msgid "Starting EPG scan"
msgstr "Iniciar a procura de EPG"
msgid "Content$Movie/Drama"
msgstr ""
msgid "Content$Detective/Thriller"
msgstr ""
msgid "Content$Adventure/Western/War"
msgstr ""
msgid "Content$Science Fiction/Fantasy/Horror"
msgstr ""
msgid "Content$Comedy"
msgstr ""
msgid "Content$Soap/Melodrama/Folkloric"
msgstr ""
msgid "Content$Romance"
msgstr ""
msgid "Content$Serious/Classical/Religious/Historical Movie/Drama"
msgstr ""
msgid "Content$Adult Movie/Drama"
msgstr ""
msgid "Content$News/Current Affairs"
msgstr ""
msgid "Content$News/Weather Report"
msgstr ""
msgid "Content$News Magazine"
msgstr ""
msgid "Content$Documentary"
msgstr ""
msgid "Content$Discussion/Inverview/Debate"
msgstr ""
msgid "Content$Show/Game Show"
msgstr ""
msgid "Content$Game Show/Quiz/Contest"
msgstr ""
msgid "Content$Variety Show"
msgstr ""
msgid "Content$Talk Show"
msgstr ""
msgid "Content$Sports"
msgstr ""
msgid "Content$Special Event"
msgstr ""
msgid "Content$Sport Magazine"
msgstr ""
msgid "Content$Football/Soccer"
msgstr ""
msgid "Content$Tennis/Squash"
msgstr ""
msgid "Content$Team Sports"
msgstr ""
msgid "Content$Athletics"
msgstr ""
msgid "Content$Motor Sport"
msgstr ""
msgid "Content$Water Sport"
msgstr ""
msgid "Content$Winter Sports"
msgstr ""
msgid "Content$Equestrian"
msgstr ""
msgid "Content$Martial Sports"
msgstr ""
msgid "Content$Children's/Youth Programme"
msgstr ""
msgid "Content$Pre-school Children's Programme"
msgstr ""
msgid "Content$Entertainment Programme for 6 to 14"
msgstr ""
msgid "Content$Entertainment Programme for 10 to 16"
msgstr ""
msgid "Content$Informational/Educational/School Programme"
msgstr ""
msgid "Content$Cartoons/Puppets"
msgstr ""
msgid "Content$Music/Ballet/Dance"
msgstr ""
msgid "Content$Rock/Pop"
msgstr ""
msgid "Content$Serious/Classical Music"
msgstr ""
msgid "Content$Folk/Tradional Music"
msgstr ""
msgid "Content$Jazz"
msgstr ""
msgid "Content$Musical/Opera"
msgstr ""
msgid "Content$Ballet"
msgstr ""
msgid "Content$Arts/Culture"
msgstr ""
msgid "Content$Performing Arts"
msgstr ""
msgid "Content$Fine Arts"
msgstr ""
msgid "Content$Religion"
msgstr ""
msgid "Content$Popular Culture/Traditional Arts"
msgstr ""
msgid "Content$Literature"
msgstr ""
msgid "Content$Film/Cinema"
msgstr ""
msgid "Content$Experimental Film/Video"
msgstr ""
msgid "Content$Broadcasting/Press"
msgstr ""
msgid "Content$New Media"
msgstr ""
msgid "Content$Arts/Culture Magazine"
msgstr ""
msgid "Content$Fashion"
msgstr ""
msgid "Content$Social/Political/Economics"
msgstr ""
msgid "Content$Magazine/Report/Documentary"
msgstr ""
msgid "Content$Economics/Social Advisory"
msgstr ""
msgid "Content$Remarkable People"
msgstr ""
msgid "Content$Education/Science/Factual"
msgstr ""
msgid "Content$Nature/Animals/Environment"
msgstr ""
msgid "Content$Technology/Natural Sciences"
msgstr ""
msgid "Content$Medicine/Physiology/Psychology"
msgstr ""
msgid "Content$Foreign Countries/Expeditions"
msgstr ""
msgid "Content$Social/Spiritual Sciences"
msgstr ""
msgid "Content$Further Education"
msgstr ""
msgid "Content$Languages"
msgstr ""
msgid "Content$Leisure/Hobbies"
msgstr ""
msgid "Content$Tourism/Travel"
msgstr ""
msgid "Content$Handicraft"
msgstr ""
msgid "Content$Motoring"
msgstr ""
msgid "Content$Fitness & Health"
msgstr ""
msgid "Content$Cooking"
msgstr ""
msgid "Content$Advertisement/Shopping"
msgstr ""
msgid "Content$Gardening"
msgstr ""
msgid "Content$Original Language"
msgstr ""
msgid "Content$Black & White"
msgstr ""
msgid "Content$Unpublished"
msgstr ""
msgid "Content$Live Broadcast"
msgstr ""
msgid "No title"
msgstr "Sem título"

View File

@ -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: 2009-11-22 12:28+0100\n"
"POT-Creation-Date: 2010-01-03 12:41+0100\n"
"PO-Revision-Date: 2008-02-25 00:39+0100\n"
"Last-Translator: Lucian Muresan <lucianm@users.sourceforge.net>\n"
"Language-Team: Romanian\n"
@ -42,6 +42,243 @@ msgstr "Nu pot porni modul de transfer!"
msgid "Starting EPG scan"
msgstr "Pornesc achiziþia EPG"
msgid "Content$Movie/Drama"
msgstr ""
msgid "Content$Detective/Thriller"
msgstr ""
msgid "Content$Adventure/Western/War"
msgstr ""
msgid "Content$Science Fiction/Fantasy/Horror"
msgstr ""
msgid "Content$Comedy"
msgstr ""
msgid "Content$Soap/Melodrama/Folkloric"
msgstr ""
msgid "Content$Romance"
msgstr ""
msgid "Content$Serious/Classical/Religious/Historical Movie/Drama"
msgstr ""
msgid "Content$Adult Movie/Drama"
msgstr ""
msgid "Content$News/Current Affairs"
msgstr ""
msgid "Content$News/Weather Report"
msgstr ""
msgid "Content$News Magazine"
msgstr ""
msgid "Content$Documentary"
msgstr ""
msgid "Content$Discussion/Inverview/Debate"
msgstr ""
msgid "Content$Show/Game Show"
msgstr ""
msgid "Content$Game Show/Quiz/Contest"
msgstr ""
msgid "Content$Variety Show"
msgstr ""
msgid "Content$Talk Show"
msgstr ""
msgid "Content$Sports"
msgstr ""
msgid "Content$Special Event"
msgstr ""
msgid "Content$Sport Magazine"
msgstr ""
msgid "Content$Football/Soccer"
msgstr ""
msgid "Content$Tennis/Squash"
msgstr ""
msgid "Content$Team Sports"
msgstr ""
msgid "Content$Athletics"
msgstr ""
msgid "Content$Motor Sport"
msgstr ""
msgid "Content$Water Sport"
msgstr ""
msgid "Content$Winter Sports"
msgstr ""
msgid "Content$Equestrian"
msgstr ""
msgid "Content$Martial Sports"
msgstr ""
msgid "Content$Children's/Youth Programme"
msgstr ""
msgid "Content$Pre-school Children's Programme"
msgstr ""
msgid "Content$Entertainment Programme for 6 to 14"
msgstr ""
msgid "Content$Entertainment Programme for 10 to 16"
msgstr ""
msgid "Content$Informational/Educational/School Programme"
msgstr ""
msgid "Content$Cartoons/Puppets"
msgstr ""
msgid "Content$Music/Ballet/Dance"
msgstr ""
msgid "Content$Rock/Pop"
msgstr ""
msgid "Content$Serious/Classical Music"
msgstr ""
msgid "Content$Folk/Tradional Music"
msgstr ""
msgid "Content$Jazz"
msgstr ""
msgid "Content$Musical/Opera"
msgstr ""
msgid "Content$Ballet"
msgstr ""
msgid "Content$Arts/Culture"
msgstr ""
msgid "Content$Performing Arts"
msgstr ""
msgid "Content$Fine Arts"
msgstr ""
msgid "Content$Religion"
msgstr ""
msgid "Content$Popular Culture/Traditional Arts"
msgstr ""
msgid "Content$Literature"
msgstr ""
msgid "Content$Film/Cinema"
msgstr ""
msgid "Content$Experimental Film/Video"
msgstr ""
msgid "Content$Broadcasting/Press"
msgstr ""
msgid "Content$New Media"
msgstr ""
msgid "Content$Arts/Culture Magazine"
msgstr ""
msgid "Content$Fashion"
msgstr ""
msgid "Content$Social/Political/Economics"
msgstr ""
msgid "Content$Magazine/Report/Documentary"
msgstr ""
msgid "Content$Economics/Social Advisory"
msgstr ""
msgid "Content$Remarkable People"
msgstr ""
msgid "Content$Education/Science/Factual"
msgstr ""
msgid "Content$Nature/Animals/Environment"
msgstr ""
msgid "Content$Technology/Natural Sciences"
msgstr ""
msgid "Content$Medicine/Physiology/Psychology"
msgstr ""
msgid "Content$Foreign Countries/Expeditions"
msgstr ""
msgid "Content$Social/Spiritual Sciences"
msgstr ""
msgid "Content$Further Education"
msgstr ""
msgid "Content$Languages"
msgstr ""
msgid "Content$Leisure/Hobbies"
msgstr ""
msgid "Content$Tourism/Travel"
msgstr ""
msgid "Content$Handicraft"
msgstr ""
msgid "Content$Motoring"
msgstr ""
msgid "Content$Fitness & Health"
msgstr ""
msgid "Content$Cooking"
msgstr ""
msgid "Content$Advertisement/Shopping"
msgstr ""
msgid "Content$Gardening"
msgstr ""
msgid "Content$Original Language"
msgstr ""
msgid "Content$Black & White"
msgstr ""
msgid "Content$Unpublished"
msgstr ""
msgid "Content$Live Broadcast"
msgstr ""
msgid "No title"
msgstr "Fãrã titlu"

View File

@ -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: 2009-11-22 12:28+0100\n"
"POT-Creation-Date: 2010-01-03 12:41+0100\n"
"PO-Revision-Date: 2008-12-15 14:37+0100\n"
"Last-Translator: Oleg Roitburd <oleg@roitburd.de>\n"
"Language-Team: Russian\n"
@ -40,6 +40,243 @@ msgstr "
msgid "Starting EPG scan"
msgstr "½ÐçØÝÐî EPG-áÚÐÝØàÞÒÐÝØÕ"
msgid "Content$Movie/Drama"
msgstr ""
msgid "Content$Detective/Thriller"
msgstr ""
msgid "Content$Adventure/Western/War"
msgstr ""
msgid "Content$Science Fiction/Fantasy/Horror"
msgstr ""
msgid "Content$Comedy"
msgstr ""
msgid "Content$Soap/Melodrama/Folkloric"
msgstr ""
msgid "Content$Romance"
msgstr ""
msgid "Content$Serious/Classical/Religious/Historical Movie/Drama"
msgstr ""
msgid "Content$Adult Movie/Drama"
msgstr ""
msgid "Content$News/Current Affairs"
msgstr ""
msgid "Content$News/Weather Report"
msgstr ""
msgid "Content$News Magazine"
msgstr ""
msgid "Content$Documentary"
msgstr ""
msgid "Content$Discussion/Inverview/Debate"
msgstr ""
msgid "Content$Show/Game Show"
msgstr ""
msgid "Content$Game Show/Quiz/Contest"
msgstr ""
msgid "Content$Variety Show"
msgstr ""
msgid "Content$Talk Show"
msgstr ""
msgid "Content$Sports"
msgstr ""
msgid "Content$Special Event"
msgstr ""
msgid "Content$Sport Magazine"
msgstr ""
msgid "Content$Football/Soccer"
msgstr ""
msgid "Content$Tennis/Squash"
msgstr ""
msgid "Content$Team Sports"
msgstr ""
msgid "Content$Athletics"
msgstr ""
msgid "Content$Motor Sport"
msgstr ""
msgid "Content$Water Sport"
msgstr ""
msgid "Content$Winter Sports"
msgstr ""
msgid "Content$Equestrian"
msgstr ""
msgid "Content$Martial Sports"
msgstr ""
msgid "Content$Children's/Youth Programme"
msgstr ""
msgid "Content$Pre-school Children's Programme"
msgstr ""
msgid "Content$Entertainment Programme for 6 to 14"
msgstr ""
msgid "Content$Entertainment Programme for 10 to 16"
msgstr ""
msgid "Content$Informational/Educational/School Programme"
msgstr ""
msgid "Content$Cartoons/Puppets"
msgstr ""
msgid "Content$Music/Ballet/Dance"
msgstr ""
msgid "Content$Rock/Pop"
msgstr ""
msgid "Content$Serious/Classical Music"
msgstr ""
msgid "Content$Folk/Tradional Music"
msgstr ""
msgid "Content$Jazz"
msgstr ""
msgid "Content$Musical/Opera"
msgstr ""
msgid "Content$Ballet"
msgstr ""
msgid "Content$Arts/Culture"
msgstr ""
msgid "Content$Performing Arts"
msgstr ""
msgid "Content$Fine Arts"
msgstr ""
msgid "Content$Religion"
msgstr ""
msgid "Content$Popular Culture/Traditional Arts"
msgstr ""
msgid "Content$Literature"
msgstr ""
msgid "Content$Film/Cinema"
msgstr ""
msgid "Content$Experimental Film/Video"
msgstr ""
msgid "Content$Broadcasting/Press"
msgstr ""
msgid "Content$New Media"
msgstr ""
msgid "Content$Arts/Culture Magazine"
msgstr ""
msgid "Content$Fashion"
msgstr ""
msgid "Content$Social/Political/Economics"
msgstr ""
msgid "Content$Magazine/Report/Documentary"
msgstr ""
msgid "Content$Economics/Social Advisory"
msgstr ""
msgid "Content$Remarkable People"
msgstr ""
msgid "Content$Education/Science/Factual"
msgstr ""
msgid "Content$Nature/Animals/Environment"
msgstr ""
msgid "Content$Technology/Natural Sciences"
msgstr ""
msgid "Content$Medicine/Physiology/Psychology"
msgstr ""
msgid "Content$Foreign Countries/Expeditions"
msgstr ""
msgid "Content$Social/Spiritual Sciences"
msgstr ""
msgid "Content$Further Education"
msgstr ""
msgid "Content$Languages"
msgstr ""
msgid "Content$Leisure/Hobbies"
msgstr ""
msgid "Content$Tourism/Travel"
msgstr ""
msgid "Content$Handicraft"
msgstr ""
msgid "Content$Motoring"
msgstr ""
msgid "Content$Fitness & Health"
msgstr ""
msgid "Content$Cooking"
msgstr ""
msgid "Content$Advertisement/Shopping"
msgstr ""
msgid "Content$Gardening"
msgstr ""
msgid "Content$Original Language"
msgstr ""
msgid "Content$Black & White"
msgstr ""
msgid "Content$Unpublished"
msgstr ""
msgid "Content$Live Broadcast"
msgstr ""
msgid "No title"
msgstr "±Õ× ÝÐ×ÒÐÝØï"

View File

@ -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: 2009-11-22 12:28+0100\n"
"POT-Creation-Date: 2010-01-03 12:41+0100\n"
"PO-Revision-Date: 2009-09-30 12:50+0100\n"
"Last-Translator: Milan Hrala <hrala.milan@gmail.com>\n"
"Language-Team: Slovak\n"
@ -40,6 +40,243 @@ msgstr "Nem
msgid "Starting EPG scan"
msgstr "Zaèína prehµadáva» EPG"
msgid "Content$Movie/Drama"
msgstr ""
msgid "Content$Detective/Thriller"
msgstr ""
msgid "Content$Adventure/Western/War"
msgstr ""
msgid "Content$Science Fiction/Fantasy/Horror"
msgstr ""
msgid "Content$Comedy"
msgstr ""
msgid "Content$Soap/Melodrama/Folkloric"
msgstr ""
msgid "Content$Romance"
msgstr ""
msgid "Content$Serious/Classical/Religious/Historical Movie/Drama"
msgstr ""
msgid "Content$Adult Movie/Drama"
msgstr ""
msgid "Content$News/Current Affairs"
msgstr ""
msgid "Content$News/Weather Report"
msgstr ""
msgid "Content$News Magazine"
msgstr ""
msgid "Content$Documentary"
msgstr ""
msgid "Content$Discussion/Inverview/Debate"
msgstr ""
msgid "Content$Show/Game Show"
msgstr ""
msgid "Content$Game Show/Quiz/Contest"
msgstr ""
msgid "Content$Variety Show"
msgstr ""
msgid "Content$Talk Show"
msgstr ""
msgid "Content$Sports"
msgstr ""
msgid "Content$Special Event"
msgstr ""
msgid "Content$Sport Magazine"
msgstr ""
msgid "Content$Football/Soccer"
msgstr ""
msgid "Content$Tennis/Squash"
msgstr ""
msgid "Content$Team Sports"
msgstr ""
msgid "Content$Athletics"
msgstr ""
msgid "Content$Motor Sport"
msgstr ""
msgid "Content$Water Sport"
msgstr ""
msgid "Content$Winter Sports"
msgstr ""
msgid "Content$Equestrian"
msgstr ""
msgid "Content$Martial Sports"
msgstr ""
msgid "Content$Children's/Youth Programme"
msgstr ""
msgid "Content$Pre-school Children's Programme"
msgstr ""
msgid "Content$Entertainment Programme for 6 to 14"
msgstr ""
msgid "Content$Entertainment Programme for 10 to 16"
msgstr ""
msgid "Content$Informational/Educational/School Programme"
msgstr ""
msgid "Content$Cartoons/Puppets"
msgstr ""
msgid "Content$Music/Ballet/Dance"
msgstr ""
msgid "Content$Rock/Pop"
msgstr ""
msgid "Content$Serious/Classical Music"
msgstr ""
msgid "Content$Folk/Tradional Music"
msgstr ""
msgid "Content$Jazz"
msgstr ""
msgid "Content$Musical/Opera"
msgstr ""
msgid "Content$Ballet"
msgstr ""
msgid "Content$Arts/Culture"
msgstr ""
msgid "Content$Performing Arts"
msgstr ""
msgid "Content$Fine Arts"
msgstr ""
msgid "Content$Religion"
msgstr ""
msgid "Content$Popular Culture/Traditional Arts"
msgstr ""
msgid "Content$Literature"
msgstr ""
msgid "Content$Film/Cinema"
msgstr ""
msgid "Content$Experimental Film/Video"
msgstr ""
msgid "Content$Broadcasting/Press"
msgstr ""
msgid "Content$New Media"
msgstr ""
msgid "Content$Arts/Culture Magazine"
msgstr ""
msgid "Content$Fashion"
msgstr ""
msgid "Content$Social/Political/Economics"
msgstr ""
msgid "Content$Magazine/Report/Documentary"
msgstr ""
msgid "Content$Economics/Social Advisory"
msgstr ""
msgid "Content$Remarkable People"
msgstr ""
msgid "Content$Education/Science/Factual"
msgstr ""
msgid "Content$Nature/Animals/Environment"
msgstr ""
msgid "Content$Technology/Natural Sciences"
msgstr ""
msgid "Content$Medicine/Physiology/Psychology"
msgstr ""
msgid "Content$Foreign Countries/Expeditions"
msgstr ""
msgid "Content$Social/Spiritual Sciences"
msgstr ""
msgid "Content$Further Education"
msgstr ""
msgid "Content$Languages"
msgstr ""
msgid "Content$Leisure/Hobbies"
msgstr ""
msgid "Content$Tourism/Travel"
msgstr ""
msgid "Content$Handicraft"
msgstr ""
msgid "Content$Motoring"
msgstr ""
msgid "Content$Fitness & Health"
msgstr ""
msgid "Content$Cooking"
msgstr ""
msgid "Content$Advertisement/Shopping"
msgstr ""
msgid "Content$Gardening"
msgstr ""
msgid "Content$Original Language"
msgstr ""
msgid "Content$Black & White"
msgstr ""
msgid "Content$Unpublished"
msgstr ""
msgid "Content$Live Broadcast"
msgstr ""
msgid "No title"
msgstr "Bez názvu"

View File

@ -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: 2009-11-22 12:28+0100\n"
"POT-Creation-Date: 2010-01-03 12:41+0100\n"
"PO-Revision-Date: 2008-02-28 19:44+0100\n"
"Last-Translator: Matjaz Thaler <matjaz.thaler@guest.arnes.si>\n"
"Language-Team: Slovenian\n"
@ -40,6 +40,243 @@ msgstr "Ne morem za
msgid "Starting EPG scan"
msgstr "Prièenjam EPG-scan"
msgid "Content$Movie/Drama"
msgstr ""
msgid "Content$Detective/Thriller"
msgstr ""
msgid "Content$Adventure/Western/War"
msgstr ""
msgid "Content$Science Fiction/Fantasy/Horror"
msgstr ""
msgid "Content$Comedy"
msgstr ""
msgid "Content$Soap/Melodrama/Folkloric"
msgstr ""
msgid "Content$Romance"
msgstr ""
msgid "Content$Serious/Classical/Religious/Historical Movie/Drama"
msgstr ""
msgid "Content$Adult Movie/Drama"
msgstr ""
msgid "Content$News/Current Affairs"
msgstr ""
msgid "Content$News/Weather Report"
msgstr ""
msgid "Content$News Magazine"
msgstr ""
msgid "Content$Documentary"
msgstr ""
msgid "Content$Discussion/Inverview/Debate"
msgstr ""
msgid "Content$Show/Game Show"
msgstr ""
msgid "Content$Game Show/Quiz/Contest"
msgstr ""
msgid "Content$Variety Show"
msgstr ""
msgid "Content$Talk Show"
msgstr ""
msgid "Content$Sports"
msgstr ""
msgid "Content$Special Event"
msgstr ""
msgid "Content$Sport Magazine"
msgstr ""
msgid "Content$Football/Soccer"
msgstr ""
msgid "Content$Tennis/Squash"
msgstr ""
msgid "Content$Team Sports"
msgstr ""
msgid "Content$Athletics"
msgstr ""
msgid "Content$Motor Sport"
msgstr ""
msgid "Content$Water Sport"
msgstr ""
msgid "Content$Winter Sports"
msgstr ""
msgid "Content$Equestrian"
msgstr ""
msgid "Content$Martial Sports"
msgstr ""
msgid "Content$Children's/Youth Programme"
msgstr ""
msgid "Content$Pre-school Children's Programme"
msgstr ""
msgid "Content$Entertainment Programme for 6 to 14"
msgstr ""
msgid "Content$Entertainment Programme for 10 to 16"
msgstr ""
msgid "Content$Informational/Educational/School Programme"
msgstr ""
msgid "Content$Cartoons/Puppets"
msgstr ""
msgid "Content$Music/Ballet/Dance"
msgstr ""
msgid "Content$Rock/Pop"
msgstr ""
msgid "Content$Serious/Classical Music"
msgstr ""
msgid "Content$Folk/Tradional Music"
msgstr ""
msgid "Content$Jazz"
msgstr ""
msgid "Content$Musical/Opera"
msgstr ""
msgid "Content$Ballet"
msgstr ""
msgid "Content$Arts/Culture"
msgstr ""
msgid "Content$Performing Arts"
msgstr ""
msgid "Content$Fine Arts"
msgstr ""
msgid "Content$Religion"
msgstr ""
msgid "Content$Popular Culture/Traditional Arts"
msgstr ""
msgid "Content$Literature"
msgstr ""
msgid "Content$Film/Cinema"
msgstr ""
msgid "Content$Experimental Film/Video"
msgstr ""
msgid "Content$Broadcasting/Press"
msgstr ""
msgid "Content$New Media"
msgstr ""
msgid "Content$Arts/Culture Magazine"
msgstr ""
msgid "Content$Fashion"
msgstr ""
msgid "Content$Social/Political/Economics"
msgstr ""
msgid "Content$Magazine/Report/Documentary"
msgstr ""
msgid "Content$Economics/Social Advisory"
msgstr ""
msgid "Content$Remarkable People"
msgstr ""
msgid "Content$Education/Science/Factual"
msgstr ""
msgid "Content$Nature/Animals/Environment"
msgstr ""
msgid "Content$Technology/Natural Sciences"
msgstr ""
msgid "Content$Medicine/Physiology/Psychology"
msgstr ""
msgid "Content$Foreign Countries/Expeditions"
msgstr ""
msgid "Content$Social/Spiritual Sciences"
msgstr ""
msgid "Content$Further Education"
msgstr ""
msgid "Content$Languages"
msgstr ""
msgid "Content$Leisure/Hobbies"
msgstr ""
msgid "Content$Tourism/Travel"
msgstr ""
msgid "Content$Handicraft"
msgstr ""
msgid "Content$Motoring"
msgstr ""
msgid "Content$Fitness & Health"
msgstr ""
msgid "Content$Cooking"
msgstr ""
msgid "Content$Advertisement/Shopping"
msgstr ""
msgid "Content$Gardening"
msgstr ""
msgid "Content$Original Language"
msgstr ""
msgid "Content$Black & White"
msgstr ""
msgid "Content$Unpublished"
msgstr ""
msgid "Content$Live Broadcast"
msgstr ""
msgid "No title"
msgstr "Brez naziva"

View File

@ -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: 2009-11-22 12:28+0100\n"
"POT-Creation-Date: 2010-01-03 12:41+0100\n"
"PO-Revision-Date: 2008-03-12 18:25+0100\n"
"Last-Translator: Magnus Andersson <svankan@bahnhof.se>\n"
"Language-Team: Swedish\n"
@ -42,6 +42,243 @@ msgstr "Kan inte starta Transfer Mode!"
msgid "Starting EPG scan"
msgstr "Påbörjar EPG skanning"
msgid "Content$Movie/Drama"
msgstr ""
msgid "Content$Detective/Thriller"
msgstr ""
msgid "Content$Adventure/Western/War"
msgstr ""
msgid "Content$Science Fiction/Fantasy/Horror"
msgstr ""
msgid "Content$Comedy"
msgstr ""
msgid "Content$Soap/Melodrama/Folkloric"
msgstr ""
msgid "Content$Romance"
msgstr ""
msgid "Content$Serious/Classical/Religious/Historical Movie/Drama"
msgstr ""
msgid "Content$Adult Movie/Drama"
msgstr ""
msgid "Content$News/Current Affairs"
msgstr ""
msgid "Content$News/Weather Report"
msgstr ""
msgid "Content$News Magazine"
msgstr ""
msgid "Content$Documentary"
msgstr ""
msgid "Content$Discussion/Inverview/Debate"
msgstr ""
msgid "Content$Show/Game Show"
msgstr ""
msgid "Content$Game Show/Quiz/Contest"
msgstr ""
msgid "Content$Variety Show"
msgstr ""
msgid "Content$Talk Show"
msgstr ""
msgid "Content$Sports"
msgstr ""
msgid "Content$Special Event"
msgstr ""
msgid "Content$Sport Magazine"
msgstr ""
msgid "Content$Football/Soccer"
msgstr ""
msgid "Content$Tennis/Squash"
msgstr ""
msgid "Content$Team Sports"
msgstr ""
msgid "Content$Athletics"
msgstr ""
msgid "Content$Motor Sport"
msgstr ""
msgid "Content$Water Sport"
msgstr ""
msgid "Content$Winter Sports"
msgstr ""
msgid "Content$Equestrian"
msgstr ""
msgid "Content$Martial Sports"
msgstr ""
msgid "Content$Children's/Youth Programme"
msgstr ""
msgid "Content$Pre-school Children's Programme"
msgstr ""
msgid "Content$Entertainment Programme for 6 to 14"
msgstr ""
msgid "Content$Entertainment Programme for 10 to 16"
msgstr ""
msgid "Content$Informational/Educational/School Programme"
msgstr ""
msgid "Content$Cartoons/Puppets"
msgstr ""
msgid "Content$Music/Ballet/Dance"
msgstr ""
msgid "Content$Rock/Pop"
msgstr ""
msgid "Content$Serious/Classical Music"
msgstr ""
msgid "Content$Folk/Tradional Music"
msgstr ""
msgid "Content$Jazz"
msgstr ""
msgid "Content$Musical/Opera"
msgstr ""
msgid "Content$Ballet"
msgstr ""
msgid "Content$Arts/Culture"
msgstr ""
msgid "Content$Performing Arts"
msgstr ""
msgid "Content$Fine Arts"
msgstr ""
msgid "Content$Religion"
msgstr ""
msgid "Content$Popular Culture/Traditional Arts"
msgstr ""
msgid "Content$Literature"
msgstr ""
msgid "Content$Film/Cinema"
msgstr ""
msgid "Content$Experimental Film/Video"
msgstr ""
msgid "Content$Broadcasting/Press"
msgstr ""
msgid "Content$New Media"
msgstr ""
msgid "Content$Arts/Culture Magazine"
msgstr ""
msgid "Content$Fashion"
msgstr ""
msgid "Content$Social/Political/Economics"
msgstr ""
msgid "Content$Magazine/Report/Documentary"
msgstr ""
msgid "Content$Economics/Social Advisory"
msgstr ""
msgid "Content$Remarkable People"
msgstr ""
msgid "Content$Education/Science/Factual"
msgstr ""
msgid "Content$Nature/Animals/Environment"
msgstr ""
msgid "Content$Technology/Natural Sciences"
msgstr ""
msgid "Content$Medicine/Physiology/Psychology"
msgstr ""
msgid "Content$Foreign Countries/Expeditions"
msgstr ""
msgid "Content$Social/Spiritual Sciences"
msgstr ""
msgid "Content$Further Education"
msgstr ""
msgid "Content$Languages"
msgstr ""
msgid "Content$Leisure/Hobbies"
msgstr ""
msgid "Content$Tourism/Travel"
msgstr ""
msgid "Content$Handicraft"
msgstr ""
msgid "Content$Motoring"
msgstr ""
msgid "Content$Fitness & Health"
msgstr ""
msgid "Content$Cooking"
msgstr ""
msgid "Content$Advertisement/Shopping"
msgstr ""
msgid "Content$Gardening"
msgstr ""
msgid "Content$Original Language"
msgstr ""
msgid "Content$Black & White"
msgstr ""
msgid "Content$Unpublished"
msgstr ""
msgid "Content$Live Broadcast"
msgstr ""
msgid "No title"
msgstr "ingen titel"

View File

@ -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: 2009-11-22 12:28+0100\n"
"POT-Creation-Date: 2010-01-03 12:41+0100\n"
"PO-Revision-Date: 2008-02-28 00:33+0100\n"
"Last-Translator: Oktay Yolgeçen <oktay_73@yahoo.de>\n"
"Language-Team: Turkish\n"
@ -39,6 +39,243 @@ msgstr "Transfer modu ba
msgid "Starting EPG scan"
msgstr "EPG tarama baþlýyor"
msgid "Content$Movie/Drama"
msgstr ""
msgid "Content$Detective/Thriller"
msgstr ""
msgid "Content$Adventure/Western/War"
msgstr ""
msgid "Content$Science Fiction/Fantasy/Horror"
msgstr ""
msgid "Content$Comedy"
msgstr ""
msgid "Content$Soap/Melodrama/Folkloric"
msgstr ""
msgid "Content$Romance"
msgstr ""
msgid "Content$Serious/Classical/Religious/Historical Movie/Drama"
msgstr ""
msgid "Content$Adult Movie/Drama"
msgstr ""
msgid "Content$News/Current Affairs"
msgstr ""
msgid "Content$News/Weather Report"
msgstr ""
msgid "Content$News Magazine"
msgstr ""
msgid "Content$Documentary"
msgstr ""
msgid "Content$Discussion/Inverview/Debate"
msgstr ""
msgid "Content$Show/Game Show"
msgstr ""
msgid "Content$Game Show/Quiz/Contest"
msgstr ""
msgid "Content$Variety Show"
msgstr ""
msgid "Content$Talk Show"
msgstr ""
msgid "Content$Sports"
msgstr ""
msgid "Content$Special Event"
msgstr ""
msgid "Content$Sport Magazine"
msgstr ""
msgid "Content$Football/Soccer"
msgstr ""
msgid "Content$Tennis/Squash"
msgstr ""
msgid "Content$Team Sports"
msgstr ""
msgid "Content$Athletics"
msgstr ""
msgid "Content$Motor Sport"
msgstr ""
msgid "Content$Water Sport"
msgstr ""
msgid "Content$Winter Sports"
msgstr ""
msgid "Content$Equestrian"
msgstr ""
msgid "Content$Martial Sports"
msgstr ""
msgid "Content$Children's/Youth Programme"
msgstr ""
msgid "Content$Pre-school Children's Programme"
msgstr ""
msgid "Content$Entertainment Programme for 6 to 14"
msgstr ""
msgid "Content$Entertainment Programme for 10 to 16"
msgstr ""
msgid "Content$Informational/Educational/School Programme"
msgstr ""
msgid "Content$Cartoons/Puppets"
msgstr ""
msgid "Content$Music/Ballet/Dance"
msgstr ""
msgid "Content$Rock/Pop"
msgstr ""
msgid "Content$Serious/Classical Music"
msgstr ""
msgid "Content$Folk/Tradional Music"
msgstr ""
msgid "Content$Jazz"
msgstr ""
msgid "Content$Musical/Opera"
msgstr ""
msgid "Content$Ballet"
msgstr ""
msgid "Content$Arts/Culture"
msgstr ""
msgid "Content$Performing Arts"
msgstr ""
msgid "Content$Fine Arts"
msgstr ""
msgid "Content$Religion"
msgstr ""
msgid "Content$Popular Culture/Traditional Arts"
msgstr ""
msgid "Content$Literature"
msgstr ""
msgid "Content$Film/Cinema"
msgstr ""
msgid "Content$Experimental Film/Video"
msgstr ""
msgid "Content$Broadcasting/Press"
msgstr ""
msgid "Content$New Media"
msgstr ""
msgid "Content$Arts/Culture Magazine"
msgstr ""
msgid "Content$Fashion"
msgstr ""
msgid "Content$Social/Political/Economics"
msgstr ""
msgid "Content$Magazine/Report/Documentary"
msgstr ""
msgid "Content$Economics/Social Advisory"
msgstr ""
msgid "Content$Remarkable People"
msgstr ""
msgid "Content$Education/Science/Factual"
msgstr ""
msgid "Content$Nature/Animals/Environment"
msgstr ""
msgid "Content$Technology/Natural Sciences"
msgstr ""
msgid "Content$Medicine/Physiology/Psychology"
msgstr ""
msgid "Content$Foreign Countries/Expeditions"
msgstr ""
msgid "Content$Social/Spiritual Sciences"
msgstr ""
msgid "Content$Further Education"
msgstr ""
msgid "Content$Languages"
msgstr ""
msgid "Content$Leisure/Hobbies"
msgstr ""
msgid "Content$Tourism/Travel"
msgstr ""
msgid "Content$Handicraft"
msgstr ""
msgid "Content$Motoring"
msgstr ""
msgid "Content$Fitness & Health"
msgstr ""
msgid "Content$Cooking"
msgstr ""
msgid "Content$Advertisement/Shopping"
msgstr ""
msgid "Content$Gardening"
msgstr ""
msgid "Content$Original Language"
msgstr ""
msgid "Content$Black & White"
msgstr ""
msgid "Content$Unpublished"
msgstr ""
msgid "Content$Live Broadcast"
msgstr ""
msgid "No title"
msgstr "Ýsim yok"

View File

@ -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: 2009-11-22 12:28+0100\n"
"POT-Creation-Date: 2010-01-03 12:41+0100\n"
"PO-Revision-Date: 2009-05-31 13:17+0200\n"
"Last-Translator: Yarema aka Knedlyk <yupadmin@gmail.com>\n"
"Language-Team: Ukrainian\n"
@ -39,6 +39,243 @@ msgstr "Неможливо включити режим пропуску!"
msgid "Starting EPG scan"
msgstr "Починаю EPG-сканування"
msgid "Content$Movie/Drama"
msgstr ""
msgid "Content$Detective/Thriller"
msgstr ""
msgid "Content$Adventure/Western/War"
msgstr ""
msgid "Content$Science Fiction/Fantasy/Horror"
msgstr ""
msgid "Content$Comedy"
msgstr ""
msgid "Content$Soap/Melodrama/Folkloric"
msgstr ""
msgid "Content$Romance"
msgstr ""
msgid "Content$Serious/Classical/Religious/Historical Movie/Drama"
msgstr ""
msgid "Content$Adult Movie/Drama"
msgstr ""
msgid "Content$News/Current Affairs"
msgstr ""
msgid "Content$News/Weather Report"
msgstr ""
msgid "Content$News Magazine"
msgstr ""
msgid "Content$Documentary"
msgstr ""
msgid "Content$Discussion/Inverview/Debate"
msgstr ""
msgid "Content$Show/Game Show"
msgstr ""
msgid "Content$Game Show/Quiz/Contest"
msgstr ""
msgid "Content$Variety Show"
msgstr ""
msgid "Content$Talk Show"
msgstr ""
msgid "Content$Sports"
msgstr ""
msgid "Content$Special Event"
msgstr ""
msgid "Content$Sport Magazine"
msgstr ""
msgid "Content$Football/Soccer"
msgstr ""
msgid "Content$Tennis/Squash"
msgstr ""
msgid "Content$Team Sports"
msgstr ""
msgid "Content$Athletics"
msgstr ""
msgid "Content$Motor Sport"
msgstr ""
msgid "Content$Water Sport"
msgstr ""
msgid "Content$Winter Sports"
msgstr ""
msgid "Content$Equestrian"
msgstr ""
msgid "Content$Martial Sports"
msgstr ""
msgid "Content$Children's/Youth Programme"
msgstr ""
msgid "Content$Pre-school Children's Programme"
msgstr ""
msgid "Content$Entertainment Programme for 6 to 14"
msgstr ""
msgid "Content$Entertainment Programme for 10 to 16"
msgstr ""
msgid "Content$Informational/Educational/School Programme"
msgstr ""
msgid "Content$Cartoons/Puppets"
msgstr ""
msgid "Content$Music/Ballet/Dance"
msgstr ""
msgid "Content$Rock/Pop"
msgstr ""
msgid "Content$Serious/Classical Music"
msgstr ""
msgid "Content$Folk/Tradional Music"
msgstr ""
msgid "Content$Jazz"
msgstr ""
msgid "Content$Musical/Opera"
msgstr ""
msgid "Content$Ballet"
msgstr ""
msgid "Content$Arts/Culture"
msgstr ""
msgid "Content$Performing Arts"
msgstr ""
msgid "Content$Fine Arts"
msgstr ""
msgid "Content$Religion"
msgstr ""
msgid "Content$Popular Culture/Traditional Arts"
msgstr ""
msgid "Content$Literature"
msgstr ""
msgid "Content$Film/Cinema"
msgstr ""
msgid "Content$Experimental Film/Video"
msgstr ""
msgid "Content$Broadcasting/Press"
msgstr ""
msgid "Content$New Media"
msgstr ""
msgid "Content$Arts/Culture Magazine"
msgstr ""
msgid "Content$Fashion"
msgstr ""
msgid "Content$Social/Political/Economics"
msgstr ""
msgid "Content$Magazine/Report/Documentary"
msgstr ""
msgid "Content$Economics/Social Advisory"
msgstr ""
msgid "Content$Remarkable People"
msgstr ""
msgid "Content$Education/Science/Factual"
msgstr ""
msgid "Content$Nature/Animals/Environment"
msgstr ""
msgid "Content$Technology/Natural Sciences"
msgstr ""
msgid "Content$Medicine/Physiology/Psychology"
msgstr ""
msgid "Content$Foreign Countries/Expeditions"
msgstr ""
msgid "Content$Social/Spiritual Sciences"
msgstr ""
msgid "Content$Further Education"
msgstr ""
msgid "Content$Languages"
msgstr ""
msgid "Content$Leisure/Hobbies"
msgstr ""
msgid "Content$Tourism/Travel"
msgstr ""
msgid "Content$Handicraft"
msgstr ""
msgid "Content$Motoring"
msgstr ""
msgid "Content$Fitness & Health"
msgstr ""
msgid "Content$Cooking"
msgstr ""
msgid "Content$Advertisement/Shopping"
msgstr ""
msgid "Content$Gardening"
msgstr ""
msgid "Content$Original Language"
msgstr ""
msgid "Content$Black & White"
msgstr ""
msgid "Content$Unpublished"
msgstr ""
msgid "Content$Live Broadcast"
msgstr ""
msgid "No title"
msgstr "Без назви"

View File

@ -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: 2009-11-22 12:28+0100\n"
"POT-Creation-Date: 2010-01-03 12:41+0100\n"
"PO-Revision-Date: 2009-09-23 23:50+0800\n"
"Last-Translator: Nan Feng <nfgx@21cn.com>\n"
"Language-Team: Chinese\n"
@ -42,6 +42,243 @@ msgstr "不能启动传送模式"
msgid "Starting EPG scan"
msgstr "开始节目单扫描"
msgid "Content$Movie/Drama"
msgstr ""
msgid "Content$Detective/Thriller"
msgstr ""
msgid "Content$Adventure/Western/War"
msgstr ""
msgid "Content$Science Fiction/Fantasy/Horror"
msgstr ""
msgid "Content$Comedy"
msgstr ""
msgid "Content$Soap/Melodrama/Folkloric"
msgstr ""
msgid "Content$Romance"
msgstr ""
msgid "Content$Serious/Classical/Religious/Historical Movie/Drama"
msgstr ""
msgid "Content$Adult Movie/Drama"
msgstr ""
msgid "Content$News/Current Affairs"
msgstr ""
msgid "Content$News/Weather Report"
msgstr ""
msgid "Content$News Magazine"
msgstr ""
msgid "Content$Documentary"
msgstr ""
msgid "Content$Discussion/Inverview/Debate"
msgstr ""
msgid "Content$Show/Game Show"
msgstr ""
msgid "Content$Game Show/Quiz/Contest"
msgstr ""
msgid "Content$Variety Show"
msgstr ""
msgid "Content$Talk Show"
msgstr ""
msgid "Content$Sports"
msgstr ""
msgid "Content$Special Event"
msgstr ""
msgid "Content$Sport Magazine"
msgstr ""
msgid "Content$Football/Soccer"
msgstr ""
msgid "Content$Tennis/Squash"
msgstr ""
msgid "Content$Team Sports"
msgstr ""
msgid "Content$Athletics"
msgstr ""
msgid "Content$Motor Sport"
msgstr ""
msgid "Content$Water Sport"
msgstr ""
msgid "Content$Winter Sports"
msgstr ""
msgid "Content$Equestrian"
msgstr ""
msgid "Content$Martial Sports"
msgstr ""
msgid "Content$Children's/Youth Programme"
msgstr ""
msgid "Content$Pre-school Children's Programme"
msgstr ""
msgid "Content$Entertainment Programme for 6 to 14"
msgstr ""
msgid "Content$Entertainment Programme for 10 to 16"
msgstr ""
msgid "Content$Informational/Educational/School Programme"
msgstr ""
msgid "Content$Cartoons/Puppets"
msgstr ""
msgid "Content$Music/Ballet/Dance"
msgstr ""
msgid "Content$Rock/Pop"
msgstr ""
msgid "Content$Serious/Classical Music"
msgstr ""
msgid "Content$Folk/Tradional Music"
msgstr ""
msgid "Content$Jazz"
msgstr ""
msgid "Content$Musical/Opera"
msgstr ""
msgid "Content$Ballet"
msgstr ""
msgid "Content$Arts/Culture"
msgstr ""
msgid "Content$Performing Arts"
msgstr ""
msgid "Content$Fine Arts"
msgstr ""
msgid "Content$Religion"
msgstr ""
msgid "Content$Popular Culture/Traditional Arts"
msgstr ""
msgid "Content$Literature"
msgstr ""
msgid "Content$Film/Cinema"
msgstr ""
msgid "Content$Experimental Film/Video"
msgstr ""
msgid "Content$Broadcasting/Press"
msgstr ""
msgid "Content$New Media"
msgstr ""
msgid "Content$Arts/Culture Magazine"
msgstr ""
msgid "Content$Fashion"
msgstr ""
msgid "Content$Social/Political/Economics"
msgstr ""
msgid "Content$Magazine/Report/Documentary"
msgstr ""
msgid "Content$Economics/Social Advisory"
msgstr ""
msgid "Content$Remarkable People"
msgstr ""
msgid "Content$Education/Science/Factual"
msgstr ""
msgid "Content$Nature/Animals/Environment"
msgstr ""
msgid "Content$Technology/Natural Sciences"
msgstr ""
msgid "Content$Medicine/Physiology/Psychology"
msgstr ""
msgid "Content$Foreign Countries/Expeditions"
msgstr ""
msgid "Content$Social/Spiritual Sciences"
msgstr ""
msgid "Content$Further Education"
msgstr ""
msgid "Content$Languages"
msgstr ""
msgid "Content$Leisure/Hobbies"
msgstr ""
msgid "Content$Tourism/Travel"
msgstr ""
msgid "Content$Handicraft"
msgstr ""
msgid "Content$Motoring"
msgstr ""
msgid "Content$Fitness & Health"
msgstr ""
msgid "Content$Cooking"
msgstr ""
msgid "Content$Advertisement/Shopping"
msgstr ""
msgid "Content$Gardening"
msgstr ""
msgid "Content$Original Language"
msgstr ""
msgid "Content$Black & White"
msgstr ""
msgid "Content$Unpublished"
msgstr ""
msgid "Content$Live Broadcast"
msgstr ""
msgid "No title"
msgstr "没有标题"

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: skinclassic.c 1.27 2008/02/23 10:31:58 kls Exp $
* $Id: skinclassic.c 2.1 2010/01/03 11:28:24 kls Exp $
*/
#include "skinclassic.h"
@ -353,6 +353,14 @@ void cSkinClassicDisplayMenu::SetEvent(const cEvent *Event)
ts.Set(osd, x1, y, x2 - x1, y3 - y, Event->ShortText(), font, Theme.Color(clrMenuEventShortText), Theme.Color(clrBackground));
y += ts.Height();
}
for (int i = 0; Event->Contents(i); i++) {
const char *s = Event->ContentToString(Event->Contents(i));
if (!isempty(s)) {
const cFont *font = cFont::GetFont(fontSml);
ts.Set(osd, x1, y, x2 - x1, y3 - y, s, font, Theme.Color(clrMenuEventShortText), Theme.Color(clrBackground));
y += ts.Height();
}
}
y += font->Height();
if (!isempty(Event->Description())) {
textScroller.Set(osd, x1, y, x2 - x1, y3 - y, Event->Description(), font, Theme.Color(clrMenuEventDescription), Theme.Color(clrBackground));

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: skinsttng.c 2.1 2009/12/06 12:12:03 kls Exp $
* $Id: skinsttng.c 2.2 2010/01/03 10:46:09 kls Exp $
*/
// Star Trek: The Next Generation® is a registered trademark of Paramount Pictures
@ -601,6 +601,14 @@ void cSkinSTTNGDisplayMenu::SetEvent(const cEvent *Event)
ts.Set(osd, xl, y, x4 - xl, y4 - y, Event->ShortText(), font, Theme.Color(clrMenuEventShortText), Theme.Color(clrBackground));
y += ts.Height();
}
for (int i = 0; Event->Contents(i); i++) {
const char *s = Event->ContentToString(Event->Contents(i));
if (!isempty(s)) {
const cFont *font = cFont::GetFont(fontSml);
ts.Set(osd, xl, y, x4 - xl, y4 - y, s, font, Theme.Color(clrMenuEventShortText), Theme.Color(clrBackground));
y += ts.Height();
}
}
y += font->Height();
if (!isempty(Event->Description())) {
int yt = y;

5
vdr.5
View File

@ -8,7 +8,7 @@
.\" License as specified in the file COPYING that comes with the
.\" vdr distribution.
.\"
.\" $Id: vdr.5 2.9 2010/01/02 14:50:29 kls Exp $
.\" $Id: vdr.5 2.10 2010/01/03 11:23:16 kls Exp $
.\"
.TH vdr 5 "10 Feb 2008" "1.6" "Video Disk Recorder Files"
.SH NAME
@ -695,6 +695,7 @@ l l.
\fBT\fR@<title>
\fBS\fR@<short text>
\fBD\fR@<description>
\fBG\fR@<genre> <genre>...
\fBX\fR@<stream> <type> <language> <descr>
\fBV\fR@<vps time>
\fBe\fR@
@ -707,6 +708,7 @@ of one or more \fBC\fR...\fBc\fR (Channel) entries. Inside these any number of
\fBE\fR...\fBe\fR (Event) entries are allowed.
All other tags are optional (although every event
should at least have a \fBT\fR entry).
There may be several \fBX\fR tags, depending on the number of tracks (video, audio etc.)
the event provides.
@ -723,6 +725,7 @@ l l.
<title> @is the title of the event
<short text> @is the short text of the event (typically the name of the episode etc.)
<description> @is the description of the event (any '|' characters will be interpreted as newlines)
<genre> @is a two digit hex code, as defined in ETSI EN 300 468, table 28 (up to 4 genre codes are supported)
<stream> @is the stream content (1 = video, 2 = audio, 3 = subtitles, 4 = AC3)
<type> @is the stream type according to ETSI EN 300 468
<language> @is the three letter language code (optionally two codes, separated by '+')