summaryrefslogtreecommitdiff
path: root/patches/patch-set/0002-Added-setup-option-to-enable-teletext-subtitle-recor.patch
diff options
context:
space:
mode:
authorTobias Grimm <git@e-tobi.net>2010-02-14 18:51:25 +0100
committerTobias Grimm <git@e-tobi.net>2010-02-14 18:51:25 +0100
commit35e75af67d6f13893c0301b5b88eb7b27f147bba (patch)
tree2b58847b6f18df154fe221ec6cf2be900c2d538d /patches/patch-set/0002-Added-setup-option-to-enable-teletext-subtitle-recor.patch
parent5bff1274f6578f82c7cbe60e3b6de9c67727f26d (diff)
downloadvdr-plugin-ttxtsubs-35e75af67d6f13893c0301b5b88eb7b27f147bba.tar.gz
vdr-plugin-ttxtsubs-35e75af67d6f13893c0301b5b88eb7b27f147bba.tar.bz2
Updated patch:
- fixed teletext decryption (Closes #241) - Renamed setup option
Diffstat (limited to 'patches/patch-set/0002-Added-setup-option-to-enable-teletext-subtitle-recor.patch')
-rw-r--r--patches/patch-set/0002-Added-setup-option-to-enable-teletext-subtitle-recor.patch186
1 files changed, 94 insertions, 92 deletions
diff --git a/patches/patch-set/0002-Added-setup-option-to-enable-teletext-subtitle-recor.patch b/patches/patch-set/0002-Added-setup-option-to-enable-teletext-subtitle-recor.patch
index 2c49115..cbd957c 100644
--- a/patches/patch-set/0002-Added-setup-option-to-enable-teletext-subtitle-recor.patch
+++ b/patches/patch-set/0002-Added-setup-option-to-enable-teletext-subtitle-recor.patch
@@ -1,4 +1,4 @@
-From 53a2a588490c058bb2a907d00dad88927bec4618 Mon Sep 17 00:00:00 2001
+From 16a350dcad8b81dda4b0326d327af8a01628a48b Mon Sep 17 00:00:00 2001
From: etobi <git@e-tobi.net>
Date: Sat, 13 Feb 2010 14:42:30 +0100
Subject: [PATCH 2/6] Added setup option to enable teletext subtitle recording
@@ -11,7 +11,7 @@ Subject: [PATCH 2/6] Added setup option to enable teletext subtitle recording
po/ca_ES.po | 5 ++++-
po/cs_CZ.po | 5 ++++-
po/da_DK.po | 5 ++++-
- po/de_DE.po | 5 ++++-
+ po/de_DE.po | 7 +++++--
po/el_GR.po | 5 ++++-
po/es_ES.po | 5 ++++-
po/et_EE.po | 5 ++++-
@@ -34,7 +34,7 @@ Subject: [PATCH 2/6] Added setup option to enable teletext subtitle recording
po/uk_UA.po | 5 ++++-
po/zh_CN.po | 5 ++++-
receiver.c | 3 ++-
- 30 files changed, 110 insertions(+), 26 deletions(-)
+ 30 files changed, 111 insertions(+), 27 deletions(-)
diff --git a/MANUAL b/MANUAL
index 405f6a8..d1ce1f9 100644
@@ -51,14 +51,14 @@ index 405f6a8..d1ce1f9 100644
SLOF = 11700 The switching frequency (in MHz) between low and
diff --git a/config.c b/config.c
-index acdf4c4..4aaf720 100644
+index acdf4c4..29377d9 100644
--- a/config.c
+++ b/config.c
@@ -333,6 +333,7 @@ cSetup::cSetup(void)
MarginStop = 10;
AudioLanguages[0] = -1;
DisplaySubtitles = 0;
-+ RecordTtxtSubtitles = 0;
++ SupportTeletext = 0;
SubtitleLanguages[0] = -1;
SubtitleOffset = 0;
SubtitleFgTransparency = 0;
@@ -66,7 +66,7 @@ index acdf4c4..4aaf720 100644
else if (!strcasecmp(Name, "MarginStop")) MarginStop = atoi(Value);
else if (!strcasecmp(Name, "AudioLanguages")) return ParseLanguages(Value, AudioLanguages);
else if (!strcasecmp(Name, "DisplaySubtitles")) DisplaySubtitles = atoi(Value);
-+ else if (!strcasecmp(Name, "RecordTtxtSubtitles")) RecordTtxtSubtitles = atoi(Value);
++ else if (!strcasecmp(Name, "SupportTeletext")) SupportTeletext = atoi(Value);
else if (!strcasecmp(Name, "SubtitleLanguages")) return ParseLanguages(Value, SubtitleLanguages);
else if (!strcasecmp(Name, "SubtitleOffset")) SubtitleOffset = atoi(Value);
else if (!strcasecmp(Name, "SubtitleFgTransparency")) SubtitleFgTransparency = atoi(Value);
@@ -74,36 +74,36 @@ index acdf4c4..4aaf720 100644
Store("MarginStop", MarginStop);
StoreLanguages("AudioLanguages", AudioLanguages);
Store("DisplaySubtitles", DisplaySubtitles);
-+ Store("RecordTtxtSubtitles", RecordTtxtSubtitles);
++ Store("SupportTeletext", SupportTeletext);
StoreLanguages("SubtitleLanguages", SubtitleLanguages);
Store("SubtitleOffset", SubtitleOffset);
Store("SubtitleFgTransparency", SubtitleFgTransparency);
diff --git a/config.h b/config.h
-index be1d7bd..5dcbe20 100644
+index be1d7bd..e7b094d 100644
--- a/config.h
+++ b/config.h
@@ -235,6 +235,7 @@ public:
int MarginStart, MarginStop;
int AudioLanguages[I18N_MAX_LANGUAGES + 1];
int DisplaySubtitles;
-+ int RecordTtxtSubtitles;
++ int SupportTeletext;
int SubtitleLanguages[I18N_MAX_LANGUAGES + 1];
int SubtitleOffset;
int SubtitleFgTransparency, SubtitleBgTransparency;
diff --git a/menu.c b/menu.c
-index 7ddf0cf..1f49f3d 100644
+index 7ddf0cf..35fa9c3 100644
--- a/menu.c
+++ b/menu.c
@@ -2790,6 +2790,7 @@ void cMenuSetupDVB::Setup(void)
Add(new cMenuEditIntItem( tr("Setup.DVB$Subtitle foreground transparency"), &data.SubtitleFgTransparency, 0, 9));
Add(new cMenuEditIntItem( tr("Setup.DVB$Subtitle background transparency"), &data.SubtitleBgTransparency, 0, 10));
}
-+ Add(new cMenuEditBoolItem(tr("Setup.DVB$Record Teletext Subtitles"), &data.RecordTtxtSubtitles));
++ Add(new cMenuEditBoolItem(tr("Setup.DVB$Enable teletext support"), &data.SupportTeletext));
SetCurrent(Get(current));
Display();
diff --git a/po/ca_ES.po b/po/ca_ES.po
-index fcdf672..1197fe1 100644
+index fcdf672..cc137c0 100644
--- a/po/ca_ES.po
+++ b/po/ca_ES.po
@@ -10,7 +10,7 @@ msgid ""
@@ -111,7 +111,7 @@ index fcdf672..1197fe1 100644
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-01-17 16:18+0100\n"
-+"POT-Creation-Date: 2010-02-13 14:31+0100\n"
++"POT-Creation-Date: 2010-02-14 17:47+0100\n"
"PO-Revision-Date: 2008-03-02 19:02+0100\n"
"Last-Translator: Luca Olivetti <luca@ventoso.org>\n"
"Language-Team: Catalanian\n"
@@ -119,14 +119,14 @@ index fcdf672..1197fe1 100644
msgid "Setup.DVB$Subtitle background transparency"
msgstr "Transparncia fons subttols"
-+msgid "Setup.DVB$Record Teletext Subtitles"
++msgid "Setup.DVB$Enable teletext support"
+msgstr ""
+
msgid "LNB"
msgstr "Configuraci de l'LNB"
diff --git a/po/cs_CZ.po b/po/cs_CZ.po
-index 3bbd6eb..c15fc13 100644
+index 3bbd6eb..9802516 100644
--- a/po/cs_CZ.po
+++ b/po/cs_CZ.po
@@ -8,7 +8,7 @@ msgid ""
@@ -134,7 +134,7 @@ index 3bbd6eb..c15fc13 100644
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-01-17 16:18+0100\n"
-+"POT-Creation-Date: 2010-02-13 14:31+0100\n"
++"POT-Creation-Date: 2010-02-14 17:47+0100\n"
"PO-Revision-Date: 2008-02-28 15:00+0200\n"
"Last-Translator: Vladimr Brta <vladimir.barta@k2atmitec.cz>, Ji Dobr <jdobry@centrum.cz>\n"
"Language-Team: Czech\n"
@@ -142,14 +142,14 @@ index 3bbd6eb..c15fc13 100644
msgid "Setup.DVB$Subtitle background transparency"
msgstr "Prhlednost pozad titulk"
-+msgid "Setup.DVB$Record Teletext Subtitles"
++msgid "Setup.DVB$Enable teletext support"
+msgstr ""
+
msgid "LNB"
msgstr "LNB"
diff --git a/po/da_DK.po b/po/da_DK.po
-index fbad909..3416080 100644
+index fbad909..740486d 100644
--- a/po/da_DK.po
+++ b/po/da_DK.po
@@ -7,7 +7,7 @@ msgid ""
@@ -157,7 +157,7 @@ index fbad909..3416080 100644
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-01-17 16:18+0100\n"
-+"POT-Creation-Date: 2010-02-13 14:31+0100\n"
++"POT-Creation-Date: 2010-02-14 17:47+0100\n"
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
"Last-Translator: Mogens Elneff <mogens@elneff.dk>\n"
"Language-Team: Danish\n"
@@ -165,37 +165,39 @@ index fbad909..3416080 100644
msgid "Setup.DVB$Subtitle background transparency"
msgstr "Undertekst baggrundsgennemsigtighed"
-+msgid "Setup.DVB$Record Teletext Subtitles"
++msgid "Setup.DVB$Enable teletext support"
+msgstr ""
+
msgid "LNB"
msgstr "LNB"
diff --git a/po/de_DE.po b/po/de_DE.po
-index ad6401b..775fd30 100644
+index ad6401b..8e93111 100644
--- a/po/de_DE.po
+++ b/po/de_DE.po
-@@ -7,7 +7,7 @@ msgid ""
+@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-01-17 16:18+0100\n"
-+"POT-Creation-Date: 2010-02-13 14:31+0100\n"
- "PO-Revision-Date: 2010-01-16 16:46+0100\n"
+-"PO-Revision-Date: 2010-01-16 16:46+0100\n"
++"POT-Creation-Date: 2010-02-14 17:47+0100\n"
++"PO-Revision-Date: 2010-02-14 17:50+0100\n"
"Last-Translator: Klaus Schmidinger <kls@tvdr.de>\n"
"Language-Team: German\n"
+ "MIME-Version: 1.0\n"
@@ -931,6 +931,9 @@ msgstr "Untertitel-Transparenz Vordergrund"
msgid "Setup.DVB$Subtitle background transparency"
msgstr "Untertitel-Transparenz Hintergrund"
-+msgid "Setup.DVB$Record Teletext Subtitles"
-+msgstr "Teletext-Untertitel aufnehmen"
++msgid "Setup.DVB$Enable teletext support"
++msgstr "Videotext-Untersttzung aktivieren"
+
msgid "LNB"
msgstr "LNB"
diff --git a/po/el_GR.po b/po/el_GR.po
-index e8382b8..741cb4a 100644
+index e8382b8..72d966a 100644
--- a/po/el_GR.po
+++ b/po/el_GR.po
@@ -7,7 +7,7 @@ msgid ""
@@ -203,7 +205,7 @@ index e8382b8..741cb4a 100644
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-01-17 16:18+0100\n"
-+"POT-Creation-Date: 2010-02-13 14:31+0100\n"
++"POT-Creation-Date: 2010-02-14 17:47+0100\n"
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
"Last-Translator: Dimitrios Dimitrakos <mail@dimitrios.de>\n"
"Language-Team: Greek\n"
@@ -211,14 +213,14 @@ index e8382b8..741cb4a 100644
msgid "Setup.DVB$Subtitle background transparency"
msgstr ""
-+msgid "Setup.DVB$Record Teletext Subtitles"
++msgid "Setup.DVB$Enable teletext support"
+msgstr ""
+
msgid "LNB"
msgstr "LNB"
diff --git a/po/es_ES.po b/po/es_ES.po
-index d2bf5b0..0515348 100644
+index d2bf5b0..0eb591e 100644
--- a/po/es_ES.po
+++ b/po/es_ES.po
@@ -8,7 +8,7 @@ msgid ""
@@ -226,7 +228,7 @@ index d2bf5b0..0515348 100644
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-01-17 16:18+0100\n"
-+"POT-Creation-Date: 2010-02-13 14:31+0100\n"
++"POT-Creation-Date: 2010-02-14 17:47+0100\n"
"PO-Revision-Date: 2008-03-02 19:02+0100\n"
"Last-Translator: Luca Olivetti <luca@ventoso.org>\n"
"Language-Team: Spanish\n"
@@ -234,14 +236,14 @@ index d2bf5b0..0515348 100644
msgid "Setup.DVB$Subtitle background transparency"
msgstr "Transparencia fondo subttulos"
-+msgid "Setup.DVB$Record Teletext Subtitles"
++msgid "Setup.DVB$Enable teletext support"
+msgstr ""
+
msgid "LNB"
msgstr "LNB"
diff --git a/po/et_EE.po b/po/et_EE.po
-index 97e2aee..72a95ae 100644
+index 97e2aee..4d8e612 100644
--- a/po/et_EE.po
+++ b/po/et_EE.po
@@ -7,7 +7,7 @@ msgid ""
@@ -249,7 +251,7 @@ index 97e2aee..72a95ae 100644
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-01-17 16:18+0100\n"
-+"POT-Creation-Date: 2010-02-13 14:31+0100\n"
++"POT-Creation-Date: 2010-02-14 17:47+0100\n"
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
"Last-Translator: Arthur Konovalov <artlov@gmail.com>\n"
"Language-Team: Estonian\n"
@@ -257,14 +259,14 @@ index 97e2aee..72a95ae 100644
msgid "Setup.DVB$Subtitle background transparency"
msgstr "Subtiitri tausta lbipaistvus"
-+msgid "Setup.DVB$Record Teletext Subtitles"
++msgid "Setup.DVB$Enable teletext support"
+msgstr ""
+
msgid "LNB"
msgstr "LNB"
diff --git a/po/fi_FI.po b/po/fi_FI.po
-index 916b51e..372a1a2 100644
+index 916b51e..034de64 100644
--- a/po/fi_FI.po
+++ b/po/fi_FI.po
@@ -10,7 +10,7 @@ msgid ""
@@ -272,7 +274,7 @@ index 916b51e..372a1a2 100644
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-01-17 16:18+0100\n"
-+"POT-Creation-Date: 2010-02-13 14:31+0100\n"
++"POT-Creation-Date: 2010-02-14 17:47+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"
@@ -280,14 +282,14 @@ index 916b51e..372a1a2 100644
msgid "Setup.DVB$Subtitle background transparency"
msgstr "Tekstityksen taustan lpinkyvyys"
-+msgid "Setup.DVB$Record Teletext Subtitles"
-+msgstr ""
++msgid "Setup.DVB$Enable teletext support"
++msgstr "Salli teksti-TV-tuki"
+
msgid "LNB"
msgstr "LNB"
diff --git a/po/fr_FR.po b/po/fr_FR.po
-index 4c4dcce..8ebfd3e 100644
+index 4c4dcce..dc35127 100644
--- a/po/fr_FR.po
+++ b/po/fr_FR.po
@@ -13,7 +13,7 @@ msgid ""
@@ -295,7 +297,7 @@ index 4c4dcce..8ebfd3e 100644
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-01-17 16:18+0100\n"
-+"POT-Creation-Date: 2010-02-13 14:31+0100\n"
++"POT-Creation-Date: 2010-02-14 17:47+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"
@@ -303,14 +305,14 @@ index 4c4dcce..8ebfd3e 100644
msgid "Setup.DVB$Subtitle background transparency"
msgstr "Transparence du fond"
-+msgid "Setup.DVB$Record Teletext Subtitles"
++msgid "Setup.DVB$Enable teletext support"
+msgstr ""
+
msgid "LNB"
msgstr "LNB"
diff --git a/po/hr_HR.po b/po/hr_HR.po
-index b7cf5a0..d769dc1 100644
+index b7cf5a0..b04cbb5 100644
--- a/po/hr_HR.po
+++ b/po/hr_HR.po
@@ -9,7 +9,7 @@ msgid ""
@@ -318,7 +320,7 @@ index b7cf5a0..d769dc1 100644
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-01-17 16:18+0100\n"
-+"POT-Creation-Date: 2010-02-13 14:31+0100\n"
++"POT-Creation-Date: 2010-02-14 17:47+0100\n"
"PO-Revision-Date: 2008-03-17 19:00+0100\n"
"Last-Translator: Adrian Caval <anrxc@sysphere.org>\n"
"Language-Team: Croatian\n"
@@ -326,14 +328,14 @@ index b7cf5a0..d769dc1 100644
msgid "Setup.DVB$Subtitle background transparency"
msgstr "Transparentnost pozadine titla"
-+msgid "Setup.DVB$Record Teletext Subtitles"
++msgid "Setup.DVB$Enable teletext support"
+msgstr ""
+
msgid "LNB"
msgstr "LNB"
diff --git a/po/hu_HU.po b/po/hu_HU.po
-index d09c8dd..e2b9364 100644
+index d09c8dd..570efbb 100644
--- a/po/hu_HU.po
+++ b/po/hu_HU.po
@@ -10,7 +10,7 @@ msgid ""
@@ -341,7 +343,7 @@ index d09c8dd..e2b9364 100644
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-01-17 16:18+0100\n"
-+"POT-Creation-Date: 2010-02-13 14:31+0100\n"
++"POT-Creation-Date: 2010-02-14 17:47+0100\n"
"PO-Revision-Date: 2007-12-01 21:42+0200\n"
"Last-Translator: Istvn Fley <ifuley@tigercomp.ro>\n"
"Language-Team: Hungarian\n"
@@ -349,14 +351,14 @@ index d09c8dd..e2b9364 100644
msgid "Setup.DVB$Subtitle background transparency"
msgstr "Felirat htternek transzparencija"
-+msgid "Setup.DVB$Record Teletext Subtitles"
++msgid "Setup.DVB$Enable teletext support"
+msgstr ""
+
msgid "LNB"
msgstr "LNB"
diff --git a/po/it_IT.po b/po/it_IT.po
-index 3a8f2e2..41335d8 100644
+index 3a8f2e2..48d9f14 100644
--- a/po/it_IT.po
+++ b/po/it_IT.po
@@ -11,7 +11,7 @@ msgid ""
@@ -364,7 +366,7 @@ index 3a8f2e2..41335d8 100644
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-01-17 16:18+0100\n"
-+"POT-Creation-Date: 2010-02-13 14:31+0100\n"
++"POT-Creation-Date: 2010-02-14 17:47+0100\n"
"PO-Revision-Date: 2010-01-12 23:53+0100\n"
"Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n"
"Language-Team: Italian\n"
@@ -372,14 +374,14 @@ index 3a8f2e2..41335d8 100644
msgid "Setup.DVB$Subtitle background transparency"
msgstr "Trasparenza sfondo sottotitoli"
-+msgid "Setup.DVB$Record Teletext Subtitles"
++msgid "Setup.DVB$Enable teletext support"
+msgstr ""
+
msgid "LNB"
msgstr "LNB"
diff --git a/po/lt_LT.po b/po/lt_LT.po
-index 93583c5..2b55e82 100644
+index 93583c5..a9370f5 100644
--- a/po/lt_LT.po
+++ b/po/lt_LT.po
@@ -7,7 +7,7 @@ msgid ""
@@ -387,7 +389,7 @@ index 93583c5..2b55e82 100644
"Project-Id-Version: VDR 1.7.9\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-01-17 16:18+0100\n"
-+"POT-Creation-Date: 2010-02-13 14:31+0100\n"
++"POT-Creation-Date: 2010-02-14 17:47+0100\n"
"PO-Revision-Date: 2009-10-17 14:19+0200\n"
"Last-Translator: Valdemaras Pipiras <varas@ambernet.lt>\n"
"Language-Team: Lithuanian\n"
@@ -395,14 +397,14 @@ index 93583c5..2b55e82 100644
msgid "Setup.DVB$Subtitle background transparency"
msgstr "Subtitrų fono permatomumas"
-+msgid "Setup.DVB$Record Teletext Subtitles"
++msgid "Setup.DVB$Enable teletext support"
+msgstr ""
+
msgid "LNB"
msgstr "Konverteris (LNB)"
diff --git a/po/nl_NL.po b/po/nl_NL.po
-index fdfaf8d..56523f4 100644
+index fdfaf8d..68de220 100644
--- a/po/nl_NL.po
+++ b/po/nl_NL.po
@@ -11,7 +11,7 @@ msgid ""
@@ -410,7 +412,7 @@ index fdfaf8d..56523f4 100644
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-01-17 16:18+0100\n"
-+"POT-Creation-Date: 2010-02-13 14:31+0100\n"
++"POT-Creation-Date: 2010-02-14 17:47+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"
@@ -418,14 +420,14 @@ index fdfaf8d..56523f4 100644
msgid "Setup.DVB$Subtitle background transparency"
msgstr "Transparantie achtergrond ondertiteling"
-+msgid "Setup.DVB$Record Teletext Subtitles"
++msgid "Setup.DVB$Enable teletext support"
+msgstr ""
+
msgid "LNB"
msgstr "LNB"
diff --git a/po/nn_NO.po b/po/nn_NO.po
-index 1f50117..3e492ad 100644
+index 1f50117..2e08b7e 100644
--- a/po/nn_NO.po
+++ b/po/nn_NO.po
@@ -8,7 +8,7 @@ msgid ""
@@ -433,7 +435,7 @@ index 1f50117..3e492ad 100644
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-01-17 16:18+0100\n"
-+"POT-Creation-Date: 2010-02-13 14:31+0100\n"
++"POT-Creation-Date: 2010-02-14 17:47+0100\n"
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
"Last-Translator: Truls Slevigen <truls@slevigen.no>\n"
"Language-Team: Norwegian\n"
@@ -441,14 +443,14 @@ index 1f50117..3e492ad 100644
msgid "Setup.DVB$Subtitle background transparency"
msgstr ""
-+msgid "Setup.DVB$Record Teletext Subtitles"
++msgid "Setup.DVB$Enable teletext support"
+msgstr ""
+
msgid "LNB"
msgstr "LNB"
diff --git a/po/pl_PL.po b/po/pl_PL.po
-index 038d058..e99d90e 100644
+index 038d058..70335d2 100644
--- a/po/pl_PL.po
+++ b/po/pl_PL.po
@@ -8,7 +8,7 @@ msgid ""
@@ -456,7 +458,7 @@ index 038d058..e99d90e 100644
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-01-17 16:18+0100\n"
-+"POT-Creation-Date: 2010-02-13 14:31+0100\n"
++"POT-Creation-Date: 2010-02-14 17:47+0100\n"
"PO-Revision-Date: 2008-03-09 12:59+0100\n"
"Last-Translator: Michael Rakowski <mrak@gmx.de>\n"
"Language-Team: Polish\n"
@@ -464,14 +466,14 @@ index 038d058..e99d90e 100644
msgid "Setup.DVB$Subtitle background transparency"
msgstr "Przerocze podtytuw: To"
-+msgid "Setup.DVB$Record Teletext Subtitles"
++msgid "Setup.DVB$Enable teletext support"
+msgstr ""
+
msgid "LNB"
msgstr "LNB"
diff --git a/po/pt_PT.po b/po/pt_PT.po
-index e409581..f795bae 100644
+index e409581..c9ea089 100644
--- a/po/pt_PT.po
+++ b/po/pt_PT.po
@@ -7,7 +7,7 @@ msgid ""
@@ -479,7 +481,7 @@ index e409581..f795bae 100644
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-01-17 16:18+0100\n"
-+"POT-Creation-Date: 2010-02-13 14:31+0100\n"
++"POT-Creation-Date: 2010-02-14 17:47+0100\n"
"PO-Revision-Date: 2008-03-18 17:04+0100\n"
"Last-Translator: anonymous\n"
"Language-Team: Portuguese\n"
@@ -487,14 +489,14 @@ index e409581..f795bae 100644
msgid "Setup.DVB$Subtitle background transparency"
msgstr "Transparncia de background das legendas"
-+msgid "Setup.DVB$Record Teletext Subtitles"
++msgid "Setup.DVB$Enable teletext support"
+msgstr ""
+
msgid "LNB"
msgstr "LNB"
diff --git a/po/ro_RO.po b/po/ro_RO.po
-index f52a7d8..c857472 100644
+index f52a7d8..a4714f6 100644
--- a/po/ro_RO.po
+++ b/po/ro_RO.po
@@ -8,7 +8,7 @@ msgid ""
@@ -502,7 +504,7 @@ index f52a7d8..c857472 100644
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-01-17 16:18+0100\n"
-+"POT-Creation-Date: 2010-02-13 14:31+0100\n"
++"POT-Creation-Date: 2010-02-14 17:47+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"
@@ -510,14 +512,14 @@ index f52a7d8..c857472 100644
msgid "Setup.DVB$Subtitle background transparency"
msgstr "Transparena fundalului subtitrrii"
-+msgid "Setup.DVB$Record Teletext Subtitles"
++msgid "Setup.DVB$Enable teletext support"
+msgstr ""
+
msgid "LNB"
msgstr "LNB"
diff --git a/po/ru_RU.po b/po/ru_RU.po
-index c6d6aca..e55f00d 100644
+index c6d6aca..8c7907e 100644
--- a/po/ru_RU.po
+++ b/po/ru_RU.po
@@ -8,7 +8,7 @@ msgid ""
@@ -525,7 +527,7 @@ index c6d6aca..e55f00d 100644
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-01-17 16:18+0100\n"
-+"POT-Creation-Date: 2010-02-13 14:31+0100\n"
++"POT-Creation-Date: 2010-02-14 17:47+0100\n"
"PO-Revision-Date: 2008-12-15 14:37+0100\n"
"Last-Translator: Oleg Roitburd <oleg@roitburd.de>\n"
"Language-Team: Russian\n"
@@ -533,14 +535,14 @@ index c6d6aca..e55f00d 100644
msgid "Setup.DVB$Subtitle background transparency"
msgstr " "
-+msgid "Setup.DVB$Record Teletext Subtitles"
++msgid "Setup.DVB$Enable teletext support"
+msgstr ""
+
msgid "LNB"
msgstr ""
diff --git a/po/sk_SK.po b/po/sk_SK.po
-index c66132a..44b0833 100644
+index c66132a..8414523 100644
--- a/po/sk_SK.po
+++ b/po/sk_SK.po
@@ -8,7 +8,7 @@ msgid ""
@@ -548,7 +550,7 @@ index c66132a..44b0833 100644
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-01-17 16:18+0100\n"
-+"POT-Creation-Date: 2010-02-13 14:31+0100\n"
++"POT-Creation-Date: 2010-02-14 17:47+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"
@@ -556,14 +558,14 @@ index c66132a..44b0833 100644
msgid "Setup.DVB$Subtitle background transparency"
msgstr "Priehadnos pozadia titulkov"
-+msgid "Setup.DVB$Record Teletext Subtitles"
++msgid "Setup.DVB$Enable teletext support"
+msgstr ""
+
msgid "LNB"
msgstr "LNB"
diff --git a/po/sl_SI.po b/po/sl_SI.po
-index 2c20440..2bd42ea 100644
+index 2c20440..1682a16 100644
--- a/po/sl_SI.po
+++ b/po/sl_SI.po
@@ -8,7 +8,7 @@ msgid ""
@@ -571,7 +573,7 @@ index 2c20440..2bd42ea 100644
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-01-17 16:18+0100\n"
-+"POT-Creation-Date: 2010-02-13 14:31+0100\n"
++"POT-Creation-Date: 2010-02-14 17:47+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"
@@ -579,14 +581,14 @@ index 2c20440..2bd42ea 100644
msgid "Setup.DVB$Subtitle background transparency"
msgstr "Transparentnost ozadja podnapisov"
-+msgid "Setup.DVB$Record Teletext Subtitles"
++msgid "Setup.DVB$Enable teletext support"
+msgstr ""
+
msgid "LNB"
msgstr "LNB"
diff --git a/po/sv_SE.po b/po/sv_SE.po
-index 4ac9a0f..1cceb44 100644
+index 4ac9a0f..1f55853 100644
--- a/po/sv_SE.po
+++ b/po/sv_SE.po
@@ -10,7 +10,7 @@ msgid ""
@@ -594,7 +596,7 @@ index 4ac9a0f..1cceb44 100644
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-01-17 16:18+0100\n"
-+"POT-Creation-Date: 2010-02-13 14:31+0100\n"
++"POT-Creation-Date: 2010-02-14 17:47+0100\n"
"PO-Revision-Date: 2008-03-12 18:25+0100\n"
"Last-Translator: Magnus Andersson <svankan@bahnhof.se>\n"
"Language-Team: Swedish\n"
@@ -602,14 +604,14 @@ index 4ac9a0f..1cceb44 100644
msgid "Setup.DVB$Subtitle background transparency"
msgstr "Transparent bakgrund textremsa"
-+msgid "Setup.DVB$Record Teletext Subtitles"
++msgid "Setup.DVB$Enable teletext support"
+msgstr ""
+
msgid "LNB"
msgstr "LNB"
diff --git a/po/tr_TR.po b/po/tr_TR.po
-index 02a9642..73fec22 100644
+index 02a9642..abce6da 100644
--- a/po/tr_TR.po
+++ b/po/tr_TR.po
@@ -7,7 +7,7 @@ msgid ""
@@ -617,7 +619,7 @@ index 02a9642..73fec22 100644
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-01-17 16:18+0100\n"
-+"POT-Creation-Date: 2010-02-13 14:31+0100\n"
++"POT-Creation-Date: 2010-02-14 17:47+0100\n"
"PO-Revision-Date: 2008-02-28 00:33+0100\n"
"Last-Translator: Oktay Yolgeen <oktay_73@yahoo.de>\n"
"Language-Team: Turkish\n"
@@ -625,14 +627,14 @@ index 02a9642..73fec22 100644
msgid "Setup.DVB$Subtitle background transparency"
msgstr "Altyaz arka effaflk"
-+msgid "Setup.DVB$Record Teletext Subtitles"
++msgid "Setup.DVB$Enable teletext support"
+msgstr ""
+
msgid "LNB"
msgstr "LNB"
diff --git a/po/uk_UA.po b/po/uk_UA.po
-index 7e3010c..37e1f64 100644
+index 7e3010c..d52f3ea 100644
--- a/po/uk_UA.po
+++ b/po/uk_UA.po
@@ -7,7 +7,7 @@ msgid ""
@@ -640,7 +642,7 @@ index 7e3010c..37e1f64 100644
"Project-Id-Version: VDR 1.7.7\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-01-17 16:18+0100\n"
-+"POT-Creation-Date: 2010-02-13 14:31+0100\n"
++"POT-Creation-Date: 2010-02-14 17:47+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"
@@ -648,14 +650,14 @@ index 7e3010c..37e1f64 100644
msgid "Setup.DVB$Subtitle background transparency"
msgstr "Прозорість заднього плану субтитрів"
-+msgid "Setup.DVB$Record Teletext Subtitles"
++msgid "Setup.DVB$Enable teletext support"
+msgstr ""
+
msgid "LNB"
msgstr "Конвертер"
diff --git a/po/zh_CN.po b/po/zh_CN.po
-index 1d12f71..2969540 100644
+index 1d12f71..482b487 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -7,7 +7,7 @@ msgid ""
@@ -663,7 +665,7 @@ index 1d12f71..2969540 100644
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-01-17 16:18+0100\n"
-+"POT-Creation-Date: 2010-02-13 14:31+0100\n"
++"POT-Creation-Date: 2010-02-14 17:47+0100\n"
"PO-Revision-Date: 2009-09-23 23:50+0800\n"
"Last-Translator: Nan Feng <nfgx@21cn.com>\n"
"Language-Team: Chinese\n"
@@ -671,14 +673,14 @@ index 1d12f71..2969540 100644
msgid "Setup.DVB$Subtitle background transparency"
msgstr "字幕背景透明度"
-+msgid "Setup.DVB$Record Teletext Subtitles"
++msgid "Setup.DVB$Enable teletext support"
+msgstr ""
+
msgid "LNB"
msgstr "切换器设置"
diff --git a/receiver.c b/receiver.c
-index dab95b3..4403410 100644
+index dab95b3..8bfb36e 100644
--- a/receiver.c
+++ b/receiver.c
@@ -82,7 +82,8 @@ bool cReceiver::SetPids(const cChannel *Channel)
@@ -687,7 +689,7 @@ index dab95b3..4403410 100644
(!Setup.UseDolbyDigital || AddPids(Channel->Dpids())) &&
- AddPids(Channel->Spids()) && AddPid(Channel->Tpid());
+ AddPids(Channel->Spids()) &&
-+ (!Setup.RecordTtxtSubtitles || AddPid(Channel->Tpid()));
++ (!Setup.SupportTeletext || AddPid(Channel->Tpid()));
}
return true;
}