Compare commits
4 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ae07ce6fa2 | ||
| 191bce9b1c | |||
|
|
faf6c0ba86 | ||
|
|
d26fedf2e4 |
9 changed files with 1 additions and 1421 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1 +0,0 @@
|
|||
vdr-tvonscreen-1.0.141.tar.gz
|
||||
|
|
@ -1,151 +0,0 @@
|
|||
#! /bin/sh /usr/share/dpatch/dpatch-run
|
||||
## 02_tvonscreen-1.0-fixes.dpatch by apex at vdrportal.de
|
||||
## http://vdrportal.de/board/thread.php?postid=517272#post517272
|
||||
##
|
||||
## Contains following patches:
|
||||
## - http://toms-cafe.de/vdr/download/tvonscreen-0.7.0-fix-noepg.diff
|
||||
## (fixes segmentation fault without any epg data)
|
||||
## - http://vdrportal.de/board/thread.php?postid=401733#post401733
|
||||
## (fixes segmentation fault with empty columns)
|
||||
## - http://www.vdr-portal.de/board/thread.php?postid=681720#post681720
|
||||
## (fixes segfault when switching to edit mode)
|
||||
##
|
||||
## All lines beginning with `## DP:' are a description of the patch.
|
||||
## DP: Fixes segmentation faults.
|
||||
|
||||
@DPATCH@
|
||||
diff -urNad vdr-plugin-tvonscreen-1.0.141~/magazine.c vdr-plugin-tvonscreen-1.0.141/magazine.c
|
||||
--- vdr-plugin-tvonscreen-1.0.141~/magazine.c 2006-06-18 15:59:36.000000000 +0200
|
||||
+++ vdr-plugin-tvonscreen-1.0.141/magazine.c 2008-04-13 18:11:49.000000000 +0200
|
||||
@@ -458,6 +458,9 @@
|
||||
}
|
||||
const cEvent *magazine::getNext(const cSchedule *s,const cEvent *e)
|
||||
{
|
||||
+ if (e == NULL)
|
||||
+ return NULL;
|
||||
+
|
||||
const cEvent *pe = NULL;
|
||||
time_t ref = e->StartTime();
|
||||
|
||||
@@ -480,6 +483,9 @@
|
||||
}
|
||||
const cEvent *magazine::getPrev(const cSchedule *s,const cEvent *e)
|
||||
{
|
||||
+ if (e == NULL)
|
||||
+ return NULL;
|
||||
+
|
||||
const cEvent *pe = NULL;
|
||||
time_t ref = e->StartTime();
|
||||
time_t delta = INT_MAX;
|
||||
@@ -1077,9 +1083,9 @@
|
||||
{
|
||||
state = cOsdObject::ProcessKey(Key);
|
||||
|
||||
- if (state == osUnknown)
|
||||
+ if (state == osUnknown && schedArrayNum>currentFirst)
|
||||
{
|
||||
- if (curmode==SHOW && schedArrayNum>currentFirst)
|
||||
+ if (curmode==SHOW)
|
||||
{
|
||||
switch (Key & ~k_Repeat)
|
||||
{
|
||||
@@ -1111,6 +1117,8 @@
|
||||
currentFirst++;
|
||||
if (currentFirst>schedArrayNum-3)
|
||||
currentFirst=schedArrayNum-3;
|
||||
+ if (currentFirst<0)
|
||||
+ currentFirst=0;
|
||||
output();
|
||||
break;
|
||||
case kUp:
|
||||
@@ -1145,6 +1153,8 @@
|
||||
currentFirst+=3;
|
||||
if (currentFirst>schedArrayNum-3)
|
||||
currentFirst=schedArrayNum-3;
|
||||
+ if (currentFirst<0)
|
||||
+ currentFirst=0;
|
||||
output();
|
||||
break;
|
||||
case k8: // zum aktuellen Sender
|
||||
@@ -1206,14 +1216,17 @@
|
||||
{
|
||||
case kOk:
|
||||
{
|
||||
- delete osd;
|
||||
- osd=NULL;
|
||||
cEvent **ev=ev4ch(EDIT_curChannel);
|
||||
- me=new tvOcMenuEvent(ev[EDIT_curEVI]);
|
||||
- me->Display();
|
||||
- curmode=SHOW;
|
||||
- EDIT_curEvent=0;
|
||||
- return osContinue;
|
||||
+ if (ev[EDIT_curEVI] != NULL)
|
||||
+ {
|
||||
+ delete osd;
|
||||
+ osd=NULL;
|
||||
+ me=new tvOcMenuEvent(ev[EDIT_curEVI]);
|
||||
+ me->Display();
|
||||
+ curmode=SHOW;
|
||||
+ EDIT_curEvent=0;
|
||||
+ return osContinue;
|
||||
+ }
|
||||
}
|
||||
break;
|
||||
case kBack:
|
||||
@@ -1238,11 +1251,15 @@
|
||||
EDIT_curChannel++;
|
||||
if (EDIT_curChannel>schedArrayNum-1)
|
||||
EDIT_curChannel=schedArrayNum-1;
|
||||
+ if (EDIT_curChannel<0)
|
||||
+ EDIT_curChannel=0;
|
||||
if (EDIT_curChannel>currentFirst+2)
|
||||
{
|
||||
currentFirst++;
|
||||
if (currentFirst>schedArrayNum-3)
|
||||
currentFirst=schedArrayNum-3;
|
||||
+ if (currentFirst<0)
|
||||
+ currentFirst=0;
|
||||
EDIT_curChannel=currentFirst+2;
|
||||
}
|
||||
outputLR();
|
||||
@@ -1343,17 +1360,20 @@
|
||||
break; */
|
||||
case kRecord:
|
||||
{
|
||||
- delete osd;
|
||||
- osd=NULL;
|
||||
cEvent **ev=ev4ch(EDIT_curChannel);
|
||||
- cTimer *timer = new cTimer(ev[EDIT_curEVI]);
|
||||
- cTimer *t = Timers.GetTimer(timer);
|
||||
- if (t)
|
||||
+ if (ev[EDIT_curEVI] != NULL)
|
||||
{
|
||||
- delete timer;
|
||||
- timer = t;
|
||||
+ delete osd;
|
||||
+ osd=NULL;
|
||||
+ cTimer *timer = new cTimer(ev[EDIT_curEVI]);
|
||||
+ cTimer *t = Timers.GetTimer(timer);
|
||||
+ if (t)
|
||||
+ {
|
||||
+ delete timer;
|
||||
+ timer = t;
|
||||
+ }
|
||||
+ met=new cMenuEditTimer(timer, !t);
|
||||
}
|
||||
- met=new cMenuEditTimer(timer, !t);
|
||||
}
|
||||
break;
|
||||
default:
|
||||
diff -urNad vdr-plugin-tvonscreen-1.0.141~/magazine.h vdr-plugin-tvonscreen-1.0.141/magazine.h
|
||||
--- vdr-plugin-tvonscreen-1.0.141~/magazine.h 2006-06-18 15:59:36.000000000 +0200
|
||||
+++ vdr-plugin-tvonscreen-1.0.141/magazine.h 2008-04-13 18:12:15.000000000 +0200
|
||||
@@ -70,7 +70,7 @@
|
||||
enum modes {SHOW,EDIT};
|
||||
enum modes curmode;
|
||||
|
||||
- unsigned short EDIT_curEvent;
|
||||
+ int EDIT_curEvent;
|
||||
int EDIT_curChannel;
|
||||
int EDIT_curEVI;
|
||||
|
||||
1
dead.package
Normal file
1
dead.package
Normal file
|
|
@ -0,0 +1 @@
|
|||
Orphaned for 6+ weeks
|
||||
1
sources
1
sources
|
|
@ -1 +0,0 @@
|
|||
db60bb028dec610c06e24adbe736481c vdr-tvonscreen-1.0.141.tar.gz
|
||||
|
|
@ -1,173 +0,0 @@
|
|||
#! /bin/sh /usr/share/dpatch/dpatch-run
|
||||
## 90_tvonscreen-1.0.141-1.5.3.dpatch by Thomas Günther <tom@toms-cafe.de>
|
||||
## http://toms-cafe.de/vdr/download/tvonscreen-1.0.141-1.5.3.diff
|
||||
##
|
||||
## All lines beginning with `## DP:' are a description of the patch.
|
||||
## DP: Changes for VDR >= 1.5.3.
|
||||
|
||||
@DPATCH@
|
||||
diff -Naurp tvonscreen-1.0.141/anyfont.c tvonscreen-1.0.141-vdr153/anyfont.c
|
||||
--- tvonscreen-1.0.141/anyfont.c 2004-07-08 13:54:56.000000000 +0000
|
||||
+++ tvonscreen-1.0.141-vdr153/anyfont.c 2007-09-14 12:46:58.000000000 +0000
|
||||
@@ -10,20 +10,36 @@
|
||||
#include "anyfont.h"
|
||||
#include "magazine.h"
|
||||
|
||||
-#if VDRVERSNUM >= 10307
|
||||
+#if VDRVERSNUM >= 10503
|
||||
+anyFont::anyFont(cOsd *_osd,int fheight,int transparent)
|
||||
+#elif VDRVERSNUM >= 10307
|
||||
anyFont::anyFont(cOsd *_osd,const cFont::tPixelData *fd,int fheight,int transparent)
|
||||
#else
|
||||
anyFont::anyFont(cOsdBase *_osd,const cFont::tPixelData *fd,int fheight,int transparent)
|
||||
#endif
|
||||
{
|
||||
osd=_osd;
|
||||
+#if VDRVERSNUM >= 10503
|
||||
+#if VDRVERSNUM >= 10504
|
||||
+ Font = cFont::CreateFont(Setup.FontOsd, fheight);
|
||||
+#else
|
||||
+ Font = new cFreetypeFont(*AddDirectory(FONTDIR, Setup.FontOsd, fheight);
|
||||
+#endif
|
||||
+ if (!Font || !Font->Height())
|
||||
+ Font = cFont::GetFont(fontSml);
|
||||
+#else
|
||||
FontData=fd;
|
||||
FontHeight=fheight;
|
||||
+#endif
|
||||
trans=transparent;
|
||||
}
|
||||
int anyFont::Height(void)
|
||||
{
|
||||
+#if VDRVERSNUM >= 10503
|
||||
+ return Font->Height();
|
||||
+#else
|
||||
return FontHeight-2-2;
|
||||
+#endif
|
||||
}
|
||||
int anyFont::Width(const char *txt)
|
||||
{
|
||||
@@ -39,21 +55,29 @@ int anyFont::LargeWidth(const char *txt)
|
||||
}
|
||||
int anyFont::Width(char c)
|
||||
{
|
||||
+#if VDRVERSNUM >= 10503
|
||||
+ return Font->Width(c);
|
||||
+#else
|
||||
if ((int)FontData[(((unsigned char)c)-32)*(FontHeight)]>100)
|
||||
{
|
||||
mzlog(1," big letter error %c: %d",c,(int)FontData[(((unsigned char)c)-32)*(FontHeight)]);
|
||||
return 100;
|
||||
}
|
||||
return (int)FontData[(((unsigned char)c)-32)*(FontHeight)];
|
||||
+#endif
|
||||
}
|
||||
int anyFont::LargeWidth(char c)
|
||||
{
|
||||
+#if VDRVERSNUM >= 10503
|
||||
+ return Font->Width(c);
|
||||
+#else
|
||||
if ((int)FontData[(((unsigned char)c)-32)*(FontHeight)]>100)
|
||||
{
|
||||
mzlog(1," big letter error %c: %d",c,(int)FontData[(((unsigned char)c)-32)*(FontHeight)]);
|
||||
return 100;
|
||||
}
|
||||
return (int)FontData[(((unsigned char)c)-32)*(FontHeight)]*2;
|
||||
+#endif
|
||||
}
|
||||
#if VDRVERSNUM >= 10307
|
||||
int anyFont::Text(int x, int y, const char *txt, tColor fg, tColor bg)
|
||||
@@ -61,6 +85,10 @@ int anyFont::Text(int x, int y, const ch
|
||||
int anyFont::Text(int x, int y, const char *txt, eDvbColor fg, eDvbColor bg, tWindowHandle wh)
|
||||
#endif
|
||||
{
|
||||
+#if VDRVERSNUM >= 10503
|
||||
+ osd->DrawText(x, y, txt, fg, trans ? clrTransparent : bg, Font);
|
||||
+ return x += Font->Width(txt);
|
||||
+#else
|
||||
unsigned int pxl;
|
||||
int row,col;
|
||||
|
||||
@@ -85,6 +113,7 @@ int anyFont::Text(int x, int y, const ch
|
||||
x += Width(*txt++);
|
||||
}
|
||||
return x;
|
||||
+#endif
|
||||
}
|
||||
#if VDRVERSNUM >= 10307
|
||||
int anyFont::LargeText(int x, int y, const char *txt, tColor fg, tColor bg)
|
||||
@@ -92,6 +121,10 @@ int anyFont::LargeText(int x, int y, con
|
||||
int anyFont::LargeText(int x, int y, const char *txt, eDvbColor fg, eDvbColor bg, tWindowHandle wh)
|
||||
#endif
|
||||
{
|
||||
+#if VDRVERSNUM >= 10503
|
||||
+ osd->DrawText(x, y, txt, fg, trans ? clrTransparent : bg, Font);
|
||||
+ return x + Font->Width(txt);
|
||||
+#else
|
||||
unsigned int pxl;
|
||||
int row,col;
|
||||
|
||||
@@ -116,6 +149,7 @@ int anyFont::LargeText(int x, int y, con
|
||||
x += LargeWidth(*txt++);
|
||||
}
|
||||
return x;
|
||||
+#endif
|
||||
}
|
||||
#if VDRVERSNUM >= 10307
|
||||
int anyFont::Text(int x, int y, int w, int h, const char *txt, tColor fg, tColor bg)
|
||||
diff -Naurp tvonscreen-1.0.141/anyfont.h tvonscreen-1.0.141-vdr153/anyfont.h
|
||||
--- tvonscreen-1.0.141/anyfont.h 2004-07-08 13:54:56.000000000 +0000
|
||||
+++ tvonscreen-1.0.141-vdr153/anyfont.h 2007-09-14 12:47:38.000000000 +0000
|
||||
@@ -19,11 +19,17 @@ class anyFont
|
||||
#else
|
||||
cOsdBase *osd;
|
||||
#endif
|
||||
+#if VDRVERSNUM >= 10503
|
||||
+ const cFont *Font;
|
||||
+#else
|
||||
const cFont::tPixelData *FontData;
|
||||
int FontHeight;
|
||||
+#endif
|
||||
int trans;
|
||||
public:
|
||||
-#if VDRVERSNUM >= 10307
|
||||
+#if VDRVERSNUM >= 10503
|
||||
+ anyFont(cOsd *o,int fheight,int transparent=0);
|
||||
+#elif VDRVERSNUM >= 10307
|
||||
anyFont(cOsd *o,const cFont::tPixelData *fd,int fheight,int transparent=0);
|
||||
#else
|
||||
anyFont(cOsdBase *o,const cFont::tPixelData *fd,int fheight,int transparent=0);
|
||||
diff -Naurp tvonscreen-1.0.141/magazine.c tvonscreen-1.0.141-vdr153/magazine.c
|
||||
--- tvonscreen-1.0.141/magazine.c 2006-06-18 13:59:36.000000000 +0000
|
||||
+++ tvonscreen-1.0.141-vdr153/magazine.c 2007-09-13 20:04:34.000000000 +0000
|
||||
@@ -812,10 +812,12 @@ void magazine::autoTimer(const class cEv
|
||||
}
|
||||
}
|
||||
|
||||
+#if VDRVERSNUM < 10503
|
||||
#include "fontosd/fontosd-arial18.c"
|
||||
#include "fontosd/fontosd-verdana16.c"
|
||||
#include "fontosd/fontosd-tahoma16.c"
|
||||
#include "fontosd/fontosd-timesNewRoman16.c"
|
||||
+#endif
|
||||
|
||||
void magazine::Show(void)
|
||||
{
|
||||
@@ -850,10 +852,17 @@ void magazine::Show(void)
|
||||
delete f3;
|
||||
delete f4;
|
||||
|
||||
+#if VDRVERSNUM >= 10503
|
||||
+ f1=new anyFont(osd,18,1); // Sendung
|
||||
+ f2=new anyFont(osd,16,1); // Extra-Info
|
||||
+ f3=new anyFont(osd,20,1); // Sender
|
||||
+ f4=new anyFont(osd,16); // Tasten
|
||||
+#else
|
||||
f1=new anyFont(osd,(cFont::tPixelData *)fontosd_arial18,FONTOSD_ARIAL18,1); // Sendung
|
||||
f2=new anyFont(osd,(cFont::tPixelData *)fontosd_verdana16,FONTOSD_VERDANA16,1); // Extra-Info
|
||||
f3=new anyFont(osd,(cFont::tPixelData *)fontosd_tahoma16,FONTOSD_TAHOMA16,1); // Sender
|
||||
f4=new anyFont(osd,(cFont::tPixelData *)fontosd_newroman16,FONTOSD_NEWROMAN16); // Tasten
|
||||
+#endif
|
||||
for (int i=0; i < (int)(sizeof(Areas)/sizeof(tArea)); i++)
|
||||
{
|
||||
// cBitmap *b=osd->GetBitmap(i);
|
||||
|
|
@ -1,794 +0,0 @@
|
|||
|
||||
This is a semi-automatically created i18n adaptation patch and may contain
|
||||
errors (such as missing translations). This should only be used as a
|
||||
temporary measure until the upstream plugin maintainer fixes the plugin
|
||||
properly according to the instructions in i18n-to-gettext.pl.
|
||||
|
||||
Created for Mandriva Linux packaging by Anssi Hannula <anssi@mandriva.org>.
|
||||
|
||||
|
||||
Index: tvonscreen-1.0.141/Makefile
|
||||
===================================================================
|
||||
--- tvonscreen-1.0.141/Makefile
|
||||
+++ tvonscreen-1.0.141/Makefile 2008-04-25 12:12:16.000000000 +0300
|
||||
@@ -50,7 +50,7 @@
|
||||
|
||||
### The object files (add further files here):
|
||||
|
||||
-OBJS = $(PLUGIN).o i18n.o magazine.o anyfont.o config.o gfxtools.o timer.o search.o
|
||||
+OBJS = $(PLUGIN).o magazine.o anyfont.o config.o gfxtools.o timer.o search.o
|
||||
|
||||
### Implicit rules:
|
||||
|
||||
@@ -66,9 +66,34 @@
|
||||
|
||||
-include $(DEPFILE)
|
||||
|
||||
+### Internationalization (I18N):
|
||||
+
|
||||
+PODIR = po
|
||||
+LOCALEDIR = $(VDRDIR)/locale
|
||||
+I18Npo = $(wildcard $(PODIR)/*.po)
|
||||
+I18Nmsgs = $(addprefix $(LOCALEDIR)/, $(addsuffix /LC_MESSAGES/vdr-$(PLUGIN).mo, $(notdir $(foreach file, $(I18Npo), $(basename $(file))))))
|
||||
+I18Npot = $(PODIR)/$(PLUGIN).pot
|
||||
+
|
||||
+%.mo: %.po
|
||||
+ msgfmt -c -o $@ $<
|
||||
+
|
||||
+$(I18Npot): $(wildcard *.[ch] *.[ch]xx *.cc *.[ch]pp *.hh)
|
||||
+ xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP --msgid-bugs-address='<http://qa.mandriva.com/>' -o $@ $^
|
||||
+
|
||||
+%.po: $(I18Npot)
|
||||
+ msgmerge -U --no-wrap --no-location --backup=none -q $@ $<
|
||||
+ @touch $@
|
||||
+
|
||||
+$(I18Nmsgs): $(LOCALEDIR)/%/LC_MESSAGES/vdr-$(PLUGIN).mo: $(PODIR)/%.mo
|
||||
+ @mkdir -p $(dir $@)
|
||||
+ cp $< $@
|
||||
+
|
||||
+.PHONY: i18n
|
||||
+i18n: $(I18Nmsgs)
|
||||
+
|
||||
### Targets:
|
||||
|
||||
-all: libvdr-$(PLUGIN).so
|
||||
+all: libvdr-$(PLUGIN).so i18n
|
||||
|
||||
libvdr-$(PLUGIN).so: $(OBJS)
|
||||
$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@
|
||||
@@ -84,4 +109,5 @@
|
||||
@echo Distribution package created as $(PACKAGE).tgz
|
||||
|
||||
clean:
|
||||
+ @-rm -f $(PODIR)/*.mo $(PODIR)/*.pot
|
||||
@-rm -f $(OBJS) $(DEPFILE) *.so *.tar.gz core* *~
|
||||
Index: tvonscreen-1.0.141/magazine.c
|
||||
===================================================================
|
||||
--- tvonscreen-1.0.141/magazine.c
|
||||
+++ tvonscreen-1.0.141/magazine.c 2008-04-25 12:12:16.000000000 +0300
|
||||
@@ -733,21 +733,21 @@
|
||||
int width=184;
|
||||
|
||||
char *helptext[]={
|
||||
- "NORMAL MODE:",
|
||||
- "arrows\n\tmove view",
|
||||
- "back\n\tclose TV OnScreen",
|
||||
- "red/blue\n\t-/+ one day",
|
||||
- "green/yellow\n\tone page left/right",
|
||||
- "7/9\n\tone page left/right",
|
||||
- "8\n\tgoto current channel",
|
||||
- "0\n\tgoto now",
|
||||
- "4/5/6\n\tgoto configured time",
|
||||
- "ok\n\tswitch to edit mode\n",
|
||||
- "EDIT MODE:",
|
||||
- "back\n\tback to normal mode",
|
||||
- "arrows\n\tmove selected schedule",
|
||||
- "record\n\tcreate timer",
|
||||
- "ok\n\tshow details",
|
||||
+ trNOOP("NORMAL MODE:"),
|
||||
+ trNOOP("arrows\n\tmove view"),
|
||||
+ trNOOP("back\n\tclose TV OnScreen"),
|
||||
+ trNOOP("red/blue\n\t-/+ one day"),
|
||||
+ trNOOP("green/yellow\n\tone page left/right"),
|
||||
+ trNOOP("7/9\n\tone page left/right"),
|
||||
+ trNOOP("8\n\tgoto current channel"),
|
||||
+ trNOOP("0\n\tgoto now"),
|
||||
+ trNOOP("4/5/6\n\tgoto configured time"),
|
||||
+ trNOOP("ok\n\tswitch to edit mode\n"),
|
||||
+ trNOOP("EDIT MODE:"),
|
||||
+ trNOOP("back\n\tback to normal mode"),
|
||||
+ trNOOP("arrows\n\tmove selected schedule"),
|
||||
+ trNOOP("record\n\tcreate timer"),
|
||||
+ trNOOP("ok\n\tshow details"),
|
||||
"|\n(c) 2004 Jürgen Schmitz\n\thttp://www.js-home.org/vdr",
|
||||
NULL
|
||||
};
|
||||
Index: tvonscreen-1.0.141/tvonscreen.c
|
||||
===================================================================
|
||||
--- tvonscreen-1.0.141/tvonscreen.c
|
||||
+++ tvonscreen-1.0.141/tvonscreen.c 2008-04-25 12:12:16.000000000 +0300
|
||||
@@ -10,11 +10,11 @@
|
||||
#include <vdr/plugin.h>
|
||||
#include "magazine.h"
|
||||
#include "config.h"
|
||||
-#include "i18n.h"
|
||||
+
|
||||
|
||||
static const char *VERSION = "1.0.141";
|
||||
-static const char *DESCRIPTION = "Shows the EPG info in form of a typical TV magazine";
|
||||
-static const char *MAINMENUENTRY = "TV-OnScreen";
|
||||
+static const char *DESCRIPTION = trNOOP("Shows the EPG info in form of a typical TV magazine");
|
||||
+static const char *MAINMENUENTRY = trNOOP("TV-OnScreen");
|
||||
|
||||
class cPluginTvOnscreen : public cPlugin {
|
||||
private:
|
||||
@@ -61,7 +61,7 @@
|
||||
bool cPluginTvOnscreen::Initialize(void)
|
||||
{
|
||||
// Initialize any background activities the plugin shall perform.
|
||||
- RegisterI18n(tvoPhrases);
|
||||
+
|
||||
return true;
|
||||
}
|
||||
|
||||
Index: tvonscreen-1.0.141/po/de_DE.po
|
||||
===================================================================
|
||||
--- tvonscreen-1.0.141/po/de_DE.po
|
||||
+++ tvonscreen-1.0.141/po/de_DE.po 2008-04-25 12:12:16.000000000 +0300
|
||||
@@ -0,0 +1,215 @@
|
||||
+# VDR tvonscreen plugin language source file.
|
||||
+# Copyright (C) YEAR THE VDR-tvonscreen'S COPYRIGHT HOLDER
|
||||
+# This file is distributed under the same license as the VDR-tvonscreen package.
|
||||
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
+#
|
||||
+msgid ""
|
||||
+msgstr ""
|
||||
+"Project-Id-Version: VDR-tvonscreen\n"
|
||||
+"Report-Msgid-Bugs-To: http://qa.mandriva.com/\n"
|
||||
+"POT-Creation-Date: 2008-04-25 12:12+0300\n"
|
||||
+"PO-Revision-Date: 2008-04-25 12:12+0300\n"
|
||||
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
+"Language-Team: <vdr@linuxtv.org>\n"
|
||||
+"MIME-Version: 1.0\n"
|
||||
+"Content-Type: text/plain; charset=ISO-8859-15\n"
|
||||
+"Content-Transfer-Encoding: 8bit\n"
|
||||
+
|
||||
+#: config.c:135
|
||||
+msgid "show channel logos"
|
||||
+msgstr "zeige Kanal-Logos"
|
||||
+
|
||||
+#: config.c:137
|
||||
+msgid "show channel names"
|
||||
+msgstr "zeige Kanal-Namen"
|
||||
+
|
||||
+#: config.c:139
|
||||
+msgid "show logos in black&white"
|
||||
+msgstr "zeige Kanal-Logos in Schwarz/Weiß"
|
||||
+
|
||||
+#: config.c:141
|
||||
+msgid "enable color problem work around"
|
||||
+msgstr "Farbproblem Umgehung aktivieren"
|
||||
+
|
||||
+#: config.c:144
|
||||
+msgid "use XL fonts"
|
||||
+msgstr "benutze XL Schrift"
|
||||
+
|
||||
+#: config.c:146
|
||||
+msgid "hide info line"
|
||||
+msgstr "verstecke Info Zeile"
|
||||
+
|
||||
+#: config.c:149
|
||||
+msgid "user point in time 1 (Key 4)"
|
||||
+msgstr "Anwenderzeitpunkt 1 (Taste 4)"
|
||||
+
|
||||
+#: config.c:151
|
||||
+msgid "user point in time 2 (Key 5)"
|
||||
+msgstr "Anwenderzeitpunkt 2 (Taste 5)"
|
||||
+
|
||||
+#: config.c:153
|
||||
+msgid "user point in time 3 (Key 6)"
|
||||
+msgstr "Anwenderzeitpunkt 3 (Taste 6)"
|
||||
+
|
||||
+#: config.c:156
|
||||
+msgid "jump to next day point if ago"
|
||||
+msgstr "Gehe zum nächsten Tag wenn vorbei"
|
||||
+
|
||||
+#: config.c:159
|
||||
+msgid "Show search item itself"
|
||||
+msgstr "Zeige auch Suchbegriff"
|
||||
+
|
||||
+#: magazine.c:296
|
||||
+msgid "Press 1 for help"
|
||||
+msgstr "Für Hilfe die 1 drücken"
|
||||
+
|
||||
+#: magazine.c:325 magazine.c:332
|
||||
+#, c-format
|
||||
+msgid "%d-%m"
|
||||
+msgstr "%d.%m."
|
||||
+
|
||||
+#: magazine.c:346
|
||||
+msgid "o'clock"
|
||||
+msgstr "Uhr"
|
||||
+
|
||||
+#: magazine.c:432
|
||||
+msgid "Timer conflict!"
|
||||
+msgstr "Timer Konflikt!"
|
||||
+
|
||||
+#: magazine.c:736
|
||||
+msgid "NORMAL MODE:"
|
||||
+msgstr "NORMALER MODUS:"
|
||||
+
|
||||
+#: magazine.c:737
|
||||
+msgid ""
|
||||
+"arrows\n"
|
||||
+"\tmove view"
|
||||
+msgstr "Pfeile\n\tAnsicht bewegen"
|
||||
+
|
||||
+#: magazine.c:738
|
||||
+msgid ""
|
||||
+"back\n"
|
||||
+"\tclose TV OnScreen"
|
||||
+msgstr "back\n\tschließe TV OnScreen"
|
||||
+
|
||||
+#: magazine.c:739
|
||||
+msgid ""
|
||||
+"red/blue\n"
|
||||
+"\t-/+ one day"
|
||||
+msgstr "rot/blau\n\t-/+ ein Tag"
|
||||
+
|
||||
+#: magazine.c:740
|
||||
+msgid ""
|
||||
+"green/yellow\n"
|
||||
+"\tone page left/right"
|
||||
+msgstr "grün/gelb\n\teine Seite links/rechts"
|
||||
+
|
||||
+#: magazine.c:741
|
||||
+msgid ""
|
||||
+"7/9\n"
|
||||
+"\tone page left/right"
|
||||
+msgstr "7/9\n\teine Seite links/rechts"
|
||||
+
|
||||
+#: magazine.c:742
|
||||
+msgid ""
|
||||
+"8\n"
|
||||
+"\tgoto current channel"
|
||||
+msgstr "8\n\tgehe zum aktuellen Kanal"
|
||||
+
|
||||
+#: magazine.c:743
|
||||
+msgid ""
|
||||
+"0\n"
|
||||
+"\tgoto now"
|
||||
+msgstr "0\n\tgehe zur aktuellen Zeit"
|
||||
+
|
||||
+#: magazine.c:744
|
||||
+msgid ""
|
||||
+"4/5/6\n"
|
||||
+"\tgoto configured time"
|
||||
+msgstr "4/5/6\n\tgehe zu eingestellten Zeitpunkten"
|
||||
+
|
||||
+#: magazine.c:745
|
||||
+msgid ""
|
||||
+"ok\n"
|
||||
+"\tswitch to edit mode\n"
|
||||
+msgstr "ok\n\taktiviere Editier-Modus\n"
|
||||
+
|
||||
+#: magazine.c:746
|
||||
+msgid "EDIT MODE:"
|
||||
+msgstr "EDITIER MODUS:"
|
||||
+
|
||||
+#: magazine.c:747
|
||||
+msgid ""
|
||||
+"back\n"
|
||||
+"\tback to normal mode"
|
||||
+msgstr "back\n\tzurück zum normalen Modus"
|
||||
+
|
||||
+#: magazine.c:748
|
||||
+msgid ""
|
||||
+"arrows\n"
|
||||
+"\tmove selected schedule"
|
||||
+msgstr "Pfeile\n\tSendung auswählen"
|
||||
+
|
||||
+#: magazine.c:749
|
||||
+msgid ""
|
||||
+"record\n"
|
||||
+"\tcreate timer"
|
||||
+msgstr "record\n\terzeuge Timer"
|
||||
+
|
||||
+#: magazine.c:750
|
||||
+msgid ""
|
||||
+"ok\n"
|
||||
+"\tshow details"
|
||||
+msgstr "ok\n\tzeige Sendungsdetails"
|
||||
+
|
||||
+#: magazine.c:959
|
||||
+msgid "Added AutoTimer to vdradmin."
|
||||
+msgstr "AutoTimer in vdradmin aufgenommen."
|
||||
+
|
||||
+#: magazine.c:963
|
||||
+msgid "Startoption 'vdradminfile' not set!"
|
||||
+msgstr "Startoption 'vdradminfile' nicht gesetzt!"
|
||||
+
|
||||
+#: search.c:34 timer.c:23
|
||||
+msgid "Search"
|
||||
+msgstr "Suchen"
|
||||
+
|
||||
+#: search.c:42 search.c:55 search.c:101 search.c:118
|
||||
+msgid "Search for"
|
||||
+msgstr "Suche nach"
|
||||
+
|
||||
+#: search.c:45 search.c:47 search.c:105 search.c:107 search.c:113
|
||||
+msgid "Searching..."
|
||||
+msgstr "Suchen..."
|
||||
+
|
||||
+#: search.c:60 search.c:65 search.c:123 search.c:128
|
||||
+msgid "Back"
|
||||
+msgstr "Zurück"
|
||||
+
|
||||
+#: search.c:60 search.c:123
|
||||
+msgid "Details"
|
||||
+msgstr "Details"
|
||||
+
|
||||
+#: search.c:60 search.c:123 timer.c:23
|
||||
+msgid "Record"
|
||||
+msgstr "Aufnehmen"
|
||||
+
|
||||
+#: search.c:60 search.c:65
|
||||
+msgid "in all"
|
||||
+msgstr "in allen"
|
||||
+
|
||||
+#: search.c:64 search.c:127
|
||||
+msgid "Nothing found!"
|
||||
+msgstr "Nichts gefunden!"
|
||||
+
|
||||
+#: timer.c:23
|
||||
+msgid "AutoTimer"
|
||||
+msgstr "AutoTimer"
|
||||
+
|
||||
+#: tvonscreen.c:16
|
||||
+msgid "Shows the EPG info in form of a typical TV magazine"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: tvonscreen.c:17
|
||||
+msgid "TV-OnScreen"
|
||||
+msgstr "TV-OnScreen"
|
||||
Index: tvonscreen-1.0.141/po/fi_FI.po
|
||||
===================================================================
|
||||
--- tvonscreen-1.0.141/po/fi_FI.po
|
||||
+++ tvonscreen-1.0.141/po/fi_FI.po 2008-04-25 12:12:53.000000000 +0300
|
||||
@@ -0,0 +1,215 @@
|
||||
+# VDR tvonscreen plugin language source file.
|
||||
+# Copyright (C) YEAR THE VDR-tvonscreen'S COPYRIGHT HOLDER
|
||||
+# This file is distributed under the same license as the VDR-tvonscreen package.
|
||||
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
+#
|
||||
+msgid ""
|
||||
+msgstr ""
|
||||
+"Project-Id-Version: VDR-tvonscreen\n"
|
||||
+"Report-Msgid-Bugs-To: http://qa.mandriva.com/\n"
|
||||
+"POT-Creation-Date: 2008-04-25 12:12+0300\n"
|
||||
+"PO-Revision-Date: 2008-04-25 12:12+0300\n"
|
||||
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
+"Language-Team: <vdr@linuxtv.org>\n"
|
||||
+"MIME-Version: 1.0\n"
|
||||
+"Content-Type: text/plain; charset=ISO-8859-15\n"
|
||||
+"Content-Transfer-Encoding: 8bit\n"
|
||||
+
|
||||
+#: config.c:135
|
||||
+msgid "show channel logos"
|
||||
+msgstr "Näytä kanavien logot"
|
||||
+
|
||||
+#: config.c:137
|
||||
+msgid "show channel names"
|
||||
+msgstr "Näytä kanavien nimet"
|
||||
+
|
||||
+#: config.c:139
|
||||
+msgid "show logos in black&white"
|
||||
+msgstr "Näytä logot mustavalkoisina"
|
||||
+
|
||||
+#: config.c:141
|
||||
+msgid "enable color problem work around"
|
||||
+msgstr "Saksalainen värikorjaus"
|
||||
+
|
||||
+#: config.c:144
|
||||
+msgid "use XL fonts"
|
||||
+msgstr "Käytä XL-kirjasinta"
|
||||
+
|
||||
+#: config.c:146
|
||||
+msgid "hide info line"
|
||||
+msgstr "Piilota inforivi"
|
||||
+
|
||||
+#: config.c:149
|
||||
+msgid "user point in time 1 (Key 4)"
|
||||
+msgstr "Ajankohta #1 (näppäin '4')"
|
||||
+
|
||||
+#: config.c:151
|
||||
+msgid "user point in time 2 (Key 5)"
|
||||
+msgstr "Ajankohta #2 (näppäin '5')"
|
||||
+
|
||||
+#: config.c:153
|
||||
+msgid "user point in time 3 (Key 6)"
|
||||
+msgstr "Ajankohta #3 (näppäin '6')"
|
||||
+
|
||||
+#: config.c:156
|
||||
+msgid "jump to next day point if ago"
|
||||
+msgstr "Siirry tarvittaessa seur. päivään"
|
||||
+
|
||||
+#: config.c:159
|
||||
+msgid "Show search item itself"
|
||||
+msgstr "Näytä hakuehto"
|
||||
+
|
||||
+#: magazine.c:296
|
||||
+msgid "Press 1 for help"
|
||||
+msgstr "Paina '1' nähdäksesi opasteen"
|
||||
+
|
||||
+#: magazine.c:325 magazine.c:332
|
||||
+#, c-format
|
||||
+msgid "%d-%m"
|
||||
+msgstr "%d.%m."
|
||||
+
|
||||
+#: magazine.c:346
|
||||
+msgid "o'clock"
|
||||
+msgstr " "
|
||||
+
|
||||
+#: magazine.c:432
|
||||
+msgid "Timer conflict!"
|
||||
+msgstr " "
|
||||
+
|
||||
+#: magazine.c:736
|
||||
+msgid "NORMAL MODE:"
|
||||
+msgstr "NORMAALITILA:"
|
||||
+
|
||||
+#: magazine.c:737
|
||||
+msgid ""
|
||||
+"arrows\n"
|
||||
+"\tmove view"
|
||||
+msgstr "'Nuolinäppäimet'\n\tohjaa näkymää"
|
||||
+
|
||||
+#: magazine.c:738
|
||||
+msgid ""
|
||||
+"back\n"
|
||||
+"\tclose TV OnScreen"
|
||||
+msgstr "'Takaisin'\n\tsulje laajennos"
|
||||
+
|
||||
+#: magazine.c:739
|
||||
+msgid ""
|
||||
+"red/blue\n"
|
||||
+"\t-/+ one day"
|
||||
+msgstr "'Punainen'/'Sininen'\n\tyksi päivä eteen/taaksepäin"
|
||||
+
|
||||
+#: magazine.c:740
|
||||
+msgid ""
|
||||
+"green/yellow\n"
|
||||
+"\tone page left/right"
|
||||
+msgstr "'Vihreä'/'Keltainen'\n\tseuraava/edellinen sivu"
|
||||
+
|
||||
+#: magazine.c:741
|
||||
+msgid ""
|
||||
+"7/9\n"
|
||||
+"\tone page left/right"
|
||||
+msgstr "'7'/'9'\n\tseuraava/edellinen sivu"
|
||||
+
|
||||
+#: magazine.c:742
|
||||
+msgid ""
|
||||
+"8\n"
|
||||
+"\tgoto current channel"
|
||||
+msgstr "'8'\n\tsiirry nykyiselle kanavalle"
|
||||
+
|
||||
+#: magazine.c:743
|
||||
+msgid ""
|
||||
+"0\n"
|
||||
+"\tgoto now"
|
||||
+msgstr "'0'\n\tsiirry nykyhetkeen"
|
||||
+
|
||||
+#: magazine.c:744
|
||||
+msgid ""
|
||||
+"4/5/6\n"
|
||||
+"\tgoto configured time"
|
||||
+msgstr "'4'/'5'/'6'\n\tsiirry määriteltyyn ajankohtaan"
|
||||
+
|
||||
+#: magazine.c:745
|
||||
+msgid ""
|
||||
+"ok\n"
|
||||
+"\tswitch to edit mode\n"
|
||||
+msgstr "'OK'\n\tvaihda muokkaustilaan\n"
|
||||
+
|
||||
+#: magazine.c:746
|
||||
+msgid "EDIT MODE:"
|
||||
+msgstr "MUOKKAUSTILA:"
|
||||
+
|
||||
+#: magazine.c:747
|
||||
+msgid ""
|
||||
+"back\n"
|
||||
+"\tback to normal mode"
|
||||
+msgstr "'Takaisin'\n\tvaihda normaalitilaan"
|
||||
+
|
||||
+#: magazine.c:748
|
||||
+msgid ""
|
||||
+"arrows\n"
|
||||
+"\tmove selected schedule"
|
||||
+msgstr "'Nuolinäppäimet'\n\tvalitse ohjelma"
|
||||
+
|
||||
+#: magazine.c:749
|
||||
+msgid ""
|
||||
+"record\n"
|
||||
+"\tcreate timer"
|
||||
+msgstr "'Tallenna'\n\tluo ajastin"
|
||||
+
|
||||
+#: magazine.c:750
|
||||
+msgid ""
|
||||
+"ok\n"
|
||||
+"\tshow details"
|
||||
+msgstr "'OK'\n\tnäytä lisätiedot"
|
||||
+
|
||||
+#: magazine.c:959
|
||||
+msgid "Added AutoTimer to vdradmin."
|
||||
+msgstr "AutoTimer lisätty VDRAdminiin."
|
||||
+
|
||||
+#: magazine.c:963
|
||||
+msgid "Startoption 'vdradminfile' not set!"
|
||||
+msgstr "Käynnistysoptio 'vdradminfile' puuttuu!"
|
||||
+
|
||||
+#: search.c:34 timer.c:23
|
||||
+msgid "Search"
|
||||
+msgstr "Etsi"
|
||||
+
|
||||
+#: search.c:42 search.c:55 search.c:101 search.c:118
|
||||
+msgid "Search for"
|
||||
+msgstr "Etsitään termiä"
|
||||
+
|
||||
+#: search.c:45 search.c:47 search.c:105 search.c:107 search.c:113
|
||||
+msgid "Searching..."
|
||||
+msgstr "Etsitään..."
|
||||
+
|
||||
+#: search.c:60 search.c:65 search.c:123 search.c:128
|
||||
+msgid "Back"
|
||||
+msgstr "Takaisin"
|
||||
+
|
||||
+#: search.c:60 search.c:123
|
||||
+msgid "Details"
|
||||
+msgstr "Lisätiedot"
|
||||
+
|
||||
+#: search.c:60 search.c:123 timer.c:23
|
||||
+msgid "Record"
|
||||
+msgstr "Tallenna"
|
||||
+
|
||||
+#: search.c:60 search.c:65
|
||||
+msgid "in all"
|
||||
+msgstr "Etsi kaikki"
|
||||
+
|
||||
+#: search.c:64 search.c:127
|
||||
+msgid "Nothing found!"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: timer.c:23
|
||||
+msgid "AutoTimer"
|
||||
+msgstr "AutoTimer"
|
||||
+
|
||||
+#: tvonscreen.c:16
|
||||
+msgid "Shows the EPG info in form of a typical TV magazine"
|
||||
+msgstr "TV-ohjelmatiedot (OSD)"
|
||||
+
|
||||
+#: tvonscreen.c:17
|
||||
+msgid "TV-OnScreen"
|
||||
+msgstr "TV-ohjelmat"
|
||||
Index: tvonscreen-1.0.141/po/tvonscreen.pot
|
||||
===================================================================
|
||||
--- tvonscreen-1.0.141/po/tvonscreen.pot
|
||||
+++ tvonscreen-1.0.141/po/tvonscreen.pot 2008-04-25 12:12:16.000000000 +0300
|
||||
@@ -0,0 +1,216 @@
|
||||
+# SOME DESCRIPTIVE TITLE.
|
||||
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
+# This file is distributed under the same license as the PACKAGE package.
|
||||
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
+#
|
||||
+#, fuzzy
|
||||
+msgid ""
|
||||
+msgstr ""
|
||||
+"Project-Id-Version: PACKAGE VERSION\n"
|
||||
+"Report-Msgid-Bugs-To: http://qa.mandriva.com/\n"
|
||||
+"POT-Creation-Date: 2008-04-25 12:12+0300\n"
|
||||
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
+"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
+"MIME-Version: 1.0\n"
|
||||
+"Content-Type: text/plain; charset=CHARSET\n"
|
||||
+"Content-Transfer-Encoding: 8bit\n"
|
||||
+
|
||||
+#: config.c:135
|
||||
+msgid "show channel logos"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: config.c:137
|
||||
+msgid "show channel names"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: config.c:139
|
||||
+msgid "show logos in black&white"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: config.c:141
|
||||
+msgid "enable color problem work around"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: config.c:144
|
||||
+msgid "use XL fonts"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: config.c:146
|
||||
+msgid "hide info line"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: config.c:149
|
||||
+msgid "user point in time 1 (Key 4)"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: config.c:151
|
||||
+msgid "user point in time 2 (Key 5)"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: config.c:153
|
||||
+msgid "user point in time 3 (Key 6)"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: config.c:156
|
||||
+msgid "jump to next day point if ago"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: config.c:159
|
||||
+msgid "Show search item itself"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: magazine.c:296
|
||||
+msgid "Press 1 for help"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: magazine.c:325 magazine.c:332
|
||||
+#, c-format
|
||||
+msgid "%d-%m"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: magazine.c:346
|
||||
+msgid "o'clock"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: magazine.c:432
|
||||
+msgid "Timer conflict!"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: magazine.c:736
|
||||
+msgid "NORMAL MODE:"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: magazine.c:737
|
||||
+msgid ""
|
||||
+"arrows\n"
|
||||
+"\tmove view"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: magazine.c:738
|
||||
+msgid ""
|
||||
+"back\n"
|
||||
+"\tclose TV OnScreen"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: magazine.c:739
|
||||
+msgid ""
|
||||
+"red/blue\n"
|
||||
+"\t-/+ one day"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: magazine.c:740
|
||||
+msgid ""
|
||||
+"green/yellow\n"
|
||||
+"\tone page left/right"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: magazine.c:741
|
||||
+msgid ""
|
||||
+"7/9\n"
|
||||
+"\tone page left/right"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: magazine.c:742
|
||||
+msgid ""
|
||||
+"8\n"
|
||||
+"\tgoto current channel"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: magazine.c:743
|
||||
+msgid ""
|
||||
+"0\n"
|
||||
+"\tgoto now"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: magazine.c:744
|
||||
+msgid ""
|
||||
+"4/5/6\n"
|
||||
+"\tgoto configured time"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: magazine.c:745
|
||||
+msgid ""
|
||||
+"ok\n"
|
||||
+"\tswitch to edit mode\n"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: magazine.c:746
|
||||
+msgid "EDIT MODE:"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: magazine.c:747
|
||||
+msgid ""
|
||||
+"back\n"
|
||||
+"\tback to normal mode"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: magazine.c:748
|
||||
+msgid ""
|
||||
+"arrows\n"
|
||||
+"\tmove selected schedule"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: magazine.c:749
|
||||
+msgid ""
|
||||
+"record\n"
|
||||
+"\tcreate timer"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: magazine.c:750
|
||||
+msgid ""
|
||||
+"ok\n"
|
||||
+"\tshow details"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: magazine.c:959
|
||||
+msgid "Added AutoTimer to vdradmin."
|
||||
+msgstr ""
|
||||
+
|
||||
+#: magazine.c:963
|
||||
+msgid "Startoption 'vdradminfile' not set!"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: search.c:34 timer.c:23
|
||||
+msgid "Search"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: search.c:42 search.c:55 search.c:101 search.c:118
|
||||
+msgid "Search for"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: search.c:45 search.c:47 search.c:105 search.c:107 search.c:113
|
||||
+msgid "Searching..."
|
||||
+msgstr ""
|
||||
+
|
||||
+#: search.c:60 search.c:65 search.c:123 search.c:128
|
||||
+msgid "Back"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: search.c:60 search.c:123
|
||||
+msgid "Details"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: search.c:60 search.c:123 timer.c:23
|
||||
+msgid "Record"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: search.c:60 search.c:65
|
||||
+msgid "in all"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: search.c:64 search.c:127
|
||||
+msgid "Nothing found!"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: timer.c:23
|
||||
+msgid "AutoTimer"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: tvonscreen.c:16
|
||||
+msgid "Shows the EPG info in form of a typical TV magazine"
|
||||
+msgstr ""
|
||||
+
|
||||
+#: tvonscreen.c:17
|
||||
+msgid "TV-OnScreen"
|
||||
+msgstr ""
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
diff -Naur tvonscreen-1.0.141.orig/magazine.c tvonscreen-1.0.141/magazine.c
|
||||
--- tvonscreen-1.0.141.orig/magazine.c 2006-06-18 16:59:36.000000000 +0300
|
||||
+++ tvonscreen-1.0.141/magazine.c 2016-07-16 12:21:23.266420968 +0300
|
||||
@@ -1370,8 +1370,8 @@
|
||||
|
||||
void mzlog(int level, const char *fmt, ...)
|
||||
{
|
||||
- auto char t[BUFSIZ];
|
||||
- auto va_list ap;
|
||||
+ char t[BUFSIZ];
|
||||
+ va_list ap;
|
||||
int minlevel=0;
|
||||
|
||||
va_start(ap, fmt);
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
# Configuration snippet for vdr-tvonscreen -*- sh -*-
|
||||
#
|
||||
# Add command line options to pass to the tvonscreen plugin to
|
||||
# PLUGIN_OPTIONS.
|
||||
|
||||
PLUGIN_OPTIONS=""
|
||||
|
|
@ -1,281 +0,0 @@
|
|||
%global pname tvonscreen
|
||||
%global __provides_exclude_from ^%{vdr_plugindir}/.*\\.so.*$
|
||||
|
||||
Name: vdr-%{pname}
|
||||
Version: 1.0.141
|
||||
Release: 41%{?dist}
|
||||
Summary: Enhanced EPG data viewer for VDR
|
||||
|
||||
Group: Applications/Multimedia
|
||||
License: GPL+
|
||||
URL: http://www.js-home.org/vdr/tvonscreen/
|
||||
Source0: http://www.js-home.org/vdr/tvonscreen/%{name}-%{version}.tar.gz
|
||||
Source1: %{name}.conf
|
||||
# Fixes several bugs, from e-tobi
|
||||
Patch0: 02_tvonscreen-1.0-fixes.dpatch
|
||||
# VDR 1.6 compatibility patch
|
||||
Patch1: http://toms-cafe.de/vdr/download/%{pname}-%{version}-1.5.3.diff
|
||||
# I18n patch from Mandriva
|
||||
Patch2: tvonscreen-1.0.141-i18n-1.6.patch
|
||||
# Fix build with GCC 6
|
||||
Patch3: tvonscreen-magazine-remove-auto-keywords.patch
|
||||
|
||||
BuildRequires: vdr-devel >= 1.7.30 gettext
|
||||
Requires: vdr(abi)%{?_isa} = %{vdr_apiversion}
|
||||
|
||||
%description
|
||||
This VDR plugin shows EPG data on VDR's OSD in a similar way as a TV
|
||||
magazine does. The channels are shown from left to right, 3 on one
|
||||
screen.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q -n %{pname}-%{version}
|
||||
%patch0 -p1
|
||||
%patch1 -p1
|
||||
%patch2 -p1
|
||||
%patch3 -p1
|
||||
|
||||
sed -i -e 's|^\(.*ConfigDirectory=\).*"logos".*|\1"%{vdr_resdir}/logos";|' \
|
||||
magazine.c
|
||||
sed -i -e 's|<configDir>/plugins/logos|%{vdr_resdir}/logos|' README
|
||||
iconv -f iso-8859-1 -t utf-8 README > README.utf8 ; mv README.utf8 README
|
||||
|
||||
|
||||
%build
|
||||
make libvdr-%{pname}.so %{?_smp_mflags} LIBDIR=. VDRDIR=%{_libdir}/vdr
|
||||
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
make i18n LOCALEDIR=$RPM_BUILD_ROOT%{_datadir}/locale
|
||||
install -dm 755 $RPM_BUILD_ROOT%{vdr_plugindir}
|
||||
install -pm 755 libvdr-%{pname}.so.%{vdr_apiversion} \
|
||||
$RPM_BUILD_ROOT%{vdr_plugindir}
|
||||
install -Dpm 644 %{SOURCE1} \
|
||||
$RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/vdr-plugins.d/%{pname}.conf
|
||||
%find_lang %{name}
|
||||
|
||||
|
||||
|
||||
%files -f %{name}.lang
|
||||
%defattr(-,root,root,-)
|
||||
%doc COPYING HISTORY README
|
||||
%config(noreplace) %{_sysconfdir}/sysconfig/vdr-plugins.d/%{pname}.conf
|
||||
%{vdr_plugindir}/libvdr-%{pname}.so.%{vdr_apiversion}
|
||||
|
||||
|
||||
%changelog
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.141-41
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.141-40
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.141-39
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.141-38
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Sat Jul 16 2016 Ville-Pekka Vainio <vpvainio@iki.fi> - 1.0.141-37
|
||||
- Fix build with GCC 6
|
||||
|
||||
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.141-36
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.141-35
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 1.0.141-34
|
||||
- Rebuilt for GCC 5 C++11 ABI change
|
||||
|
||||
* Thu Feb 19 2015 Ville Skyttä <ville.skytta@iki.fi> - 1.0.141-33
|
||||
- Rebuild
|
||||
|
||||
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.141-32
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.141-31
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Thu Apr 24 2014 Ville Skyttä <ville.skytta@iki.fi> - 1.0.141-30
|
||||
- Rebuild
|
||||
|
||||
* Sun Mar 23 2014 Ville Skyttä <ville.skytta@iki.fi> - 1.0.141-29
|
||||
- Rebuild
|
||||
|
||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.141-28
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Sun Mar 31 2013 Ville Skyttä <ville.skytta@iki.fi> - 1.0.141-27
|
||||
- Rebuild.
|
||||
|
||||
* Sat Mar 16 2013 Ville Skyttä <ville.skytta@iki.fi> - 1.0.141-26
|
||||
- Rebuild.
|
||||
|
||||
* Wed Mar 13 2013 Ville Skyttä <ville.skytta@iki.fi> - 1.0.141-25
|
||||
- Rebuild.
|
||||
|
||||
* Sun Mar 03 2013 Ville Skyttä <ville.skytta@iki.fi> - 1.0.141-24
|
||||
- Rebuild.
|
||||
|
||||
* Mon Feb 18 2013 Ville Skyttä <ville.skytta@iki.fi> - 1.0.141-23
|
||||
- Fix bogus date in %%changelog.
|
||||
|
||||
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.141-22
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Tue Oct 02 2012 Ville Skyttä <ville.skytta@iki.fi> - 1.0.141-21
|
||||
- Rebuild.
|
||||
|
||||
* Thu Sep 13 2012 Ville Skyttä <ville.skytta@iki.fi> - 1.0.141-20
|
||||
- Adapt to VDR 1.7.30.
|
||||
|
||||
* Wed Jul 18 2012 Ville Skyttä <ville.skytta@iki.fi> - 1.0.141-19
|
||||
- Rebuild.
|
||||
|
||||
* Wed Jun 27 2012 Ville Skyttä <ville.skytta@iki.fi> - 1.0.141-18
|
||||
- Rebuild.
|
||||
|
||||
* Tue Mar 27 2012 Ville Skyttä <ville.skytta@iki.fi> - 1.0.141-17
|
||||
- Rebuild.
|
||||
|
||||
* Sun Mar 11 2012 Ville Skyttä <ville.skytta@iki.fi> - 1.0.141-16
|
||||
- Rebuild.
|
||||
|
||||
* Tue Mar 06 2012 Ville Skyttä <ville.skytta@iki.fi> - 1.0.141-15
|
||||
- Rebuild.
|
||||
|
||||
* Mon Feb 20 2012 Ville Skyttä <ville.skytta@iki.fi> - 1.0.141-14
|
||||
- Rebuild.
|
||||
|
||||
* Mon Jan 16 2012 Ville Skyttä <ville.skytta@iki.fi> - 1.0.141-13
|
||||
- Rebuild.
|
||||
|
||||
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.141-12
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Sun Dec 4 2011 Ville Skyttä <ville.skytta@iki.fi> - 1.0.141-11
|
||||
- Rebuild.
|
||||
|
||||
* Sun Nov 6 2011 Ville Skyttä <ville.skytta@iki.fi> - 1.0.141-10
|
||||
- Rebuild.
|
||||
|
||||
* Tue Feb 15 2011 Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> - 1.0.141-9
|
||||
- Fix tvonscreen-1.0.141-i18n-1.6.patch to not cause rejects
|
||||
|
||||
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.141-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Sun Sep 06 2009 Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> - 1.0.141-7
|
||||
- Filter out autoprovided libvdr-*.so.* (if %%filter_setup is available).
|
||||
- Use ISA qualified dependency to vdr(abi).
|
||||
- Use %%global instead of %%define.
|
||||
|
||||
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.141-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.141-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Sun May 04 2008 - Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> 1.0.141-4
|
||||
- Add a combined patch from e-tobi, fixes segfaults
|
||||
- Add I18n patch from Mandriva, adds fi and de translations, thanks to Anssi
|
||||
Hannula
|
||||
|
||||
* Tue Apr 08 2008 - Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> 1.0.141-3
|
||||
- Add VDR 1.6.0 compatibility patch and rebuild against new VDR
|
||||
|
||||
* Sat Feb 16 2008 - Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> 1.0.141-2
|
||||
- Rebuild for GCC 4.3
|
||||
|
||||
* Fri Dec 21 2007 Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> - 1.0.141-1
|
||||
- Improve description
|
||||
- Bump release for the first Fedora build
|
||||
|
||||
* Wed Dec 19 2007 Ville-Pekka Vainio <vpivaini AT cs.helsinki.fi> - 1.0.141-0.2
|
||||
- Remove execute permission on i18n.h
|
||||
- License: GPL+
|
||||
|
||||
* Sun Jun 18 2006 Ville Skyttä <ville.skytta at iki.fi> - 1.0.141-0.1
|
||||
- 1.0.141.
|
||||
|
||||
* Sat Dec 31 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.7.0-0.20
|
||||
- Use Thomas Günther's combined patch set.
|
||||
|
||||
* Tue Nov 1 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.7.0-0.19
|
||||
- Rebuild for VDR 1.3.35.
|
||||
|
||||
* Mon Oct 3 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.7.0-0.18
|
||||
- Rebuild for VDR 1.3.34.
|
||||
|
||||
* Sun Sep 25 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.7.0-0.17
|
||||
- Rebuild for VDR 1.3.33.
|
||||
|
||||
* Sun Sep 11 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.7.0-0.16
|
||||
- Rebuild for VDR 1.3.32.
|
||||
|
||||
* Sun Aug 28 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.7.0-0.15
|
||||
- Rebuild for VDR 1.3.31.
|
||||
|
||||
* Sun Aug 21 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.7.0-0.14
|
||||
- Rebuild for VDR 1.3.30.
|
||||
|
||||
* Wed Aug 17 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.7.0-0.13
|
||||
- Rebuild for VDR 1.3.29.
|
||||
|
||||
* Sun Aug 7 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.7.0-0.12
|
||||
- Rebuild for VDR 1.3.28, add plugins.d config snippet.
|
||||
|
||||
* Sun Jun 19 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.7.0-0.11
|
||||
- Rebuild for VDR 1.3.27.
|
||||
|
||||
* Sat Jun 18 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.7.0-0.10
|
||||
- Rebuild for FC4.
|
||||
|
||||
* Sun Jun 12 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.7.0-0.9
|
||||
- Rebuild for VDR 1.3.26.
|
||||
|
||||
* Mon May 30 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.7.0-0.8
|
||||
- Rebuild for VDR 1.3.25.
|
||||
|
||||
* Mon May 23 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.7.0-0.7
|
||||
- Apply patch from "pjmauno" to fix missing show times in channel display.
|
||||
|
||||
* Tue May 10 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.7.0-0.6
|
||||
- Rebuild for VDR 1.3.24.
|
||||
|
||||
* Thu Apr 21 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.7.0-0.5
|
||||
- Drop dependency on channel logos.
|
||||
|
||||
* Thu Mar 31 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.7.0-0.4
|
||||
- Apply Thomas Günther's fix for crash when no EPG data is available.
|
||||
|
||||
* Sat Jan 15 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.7.0-0.3
|
||||
- Patch to build with VDR 1.3.18.
|
||||
|
||||
* Wed Jan 5 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.7.0-0.2
|
||||
- Apply Graziano Pavone's Italian translation patch.
|
||||
- Convert docs to UTF-8.
|
||||
|
||||
* Tue Jan 4 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.7.0-0.1
|
||||
- Update to 0.7.0, gcc34 patch applied upstream.
|
||||
|
||||
* Mon Jan 3 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.6.0-0.6
|
||||
- vdr-logos -> vdr-xpmlogos.
|
||||
|
||||
* Sun Dec 26 2004 Ville Skyttä <ville.skytta at iki.fi> - 0.6.0-0.5
|
||||
- Remove unnecessary Epochs.
|
||||
|
||||
* Sat Dec 11 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.6.0-0.scop.4
|
||||
- Use vdr-config.
|
||||
|
||||
* Sat Nov 20 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.6.0-0.scop.3
|
||||
- Patch to build with gcc 3.4.
|
||||
|
||||
* Tue Oct 26 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.6.0-0.scop.2
|
||||
- Rebuild.
|
||||
|
||||
* Mon Oct 25 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.6.0-0.scop.1
|
||||
- First build.
|
||||
Loading…
Add table
Add a link
Reference in a new issue