diff --git a/CONTRIBUTORS b/CONTRIBUTORS index dd4e6af5..ed2dea47 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -2115,6 +2115,8 @@ Martin Wache device, which avoids a busy loop on very fast machines for fixing a possible crash when loading an invalid XPM file for suggesting to speed up anti-aliased font rendering by caching the blend indexes + for extending the option "Setup/Miscellaneous/Show channel names with source" to + "type" or "full" Matthias Lenk for reporting an out-of-bounds memory access with audio language ids diff --git a/HISTORY b/HISTORY index 1711490f..df089ecb 100644 --- a/HISTORY +++ b/HISTORY @@ -9116,3 +9116,6 @@ Video Disk Recorder Revision History - The new configuration file 'camresponses.conf' can be used to define automatic responses to CAM menus, for instance to avoid annyoing popup messages or entering the parental rating PIN. See vdr.5 for details. +- The option "Setup/Miscellaneous/Show channel names with source" can now be set to + "type" or "full" to show either the type or the full name of the source (thanks to + Martin Wache). diff --git a/MANUAL b/MANUAL index 4db491b5..0234f77b 100644 --- a/MANUAL +++ b/MANUAL @@ -1143,10 +1143,11 @@ Version 2.2 wrap around the beginning or end of the channel list if this parameter is set to 'yes'. - Show channel names with source = no + Show channel names with source = off If this option is turned on, channel names will be displayed - with the source appended to them, as in "ZDF (S)", where - 'S' stands for "Satellite". + with the source appended to them, as in "ZDF (S)" (if the + option is set to "type), or "ZDF (S19.2E)" (if it is set to + "full"), where 'S' stands for "Satellite". Emergency exit = yes If, for some reason, a recording fails because the video data stream is broken, or the CAM doesn't decrypt etc., diff --git a/channels.c b/channels.c index 1b9aa86f..2716b595 100644 --- a/channels.c +++ b/channels.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: channels.c 4.4 2017/05/26 15:43:54 kls Exp $ + * $Id: channels.c 4.5 2017/06/10 15:08:56 kls Exp $ */ #include "channels.h" @@ -98,6 +98,7 @@ cChannel& cChannel::operator= (const cChannel &Channel) portalName = strcpyrealloc(portalName, Channel.portalName); memcpy(&__BeginData__, &Channel.__BeginData__, (char *)&Channel.__EndData__ - (char *)&Channel.__BeginData__); nameSource = NULL; // these will be recalculated automatically + nameSourceMode = 0; shortNameSource = NULL; parameters = Channel.parameters; return *this; @@ -106,8 +107,12 @@ cChannel& cChannel::operator= (const cChannel &Channel) const char *cChannel::Name(void) const { if (Setup.ShowChannelNamesWithSource && !groupSep) { - if (isempty(nameSource)) - nameSource = cString::sprintf("%s (%c)", name, cSource::ToChar(source)); + if (isempty(nameSource) || nameSourceMode != Setup.ShowChannelNamesWithSource) { + if (Setup.ShowChannelNamesWithSource == 1) + nameSource = cString::sprintf("%s (%c)", name, cSource::ToChar(source)); + else + nameSource = cString::sprintf("%s (%s)", name, *cSource::ToString(source)); + } return nameSource; } return name; @@ -194,6 +199,7 @@ bool cChannel::SetTransponderData(int Source, int Frequency, int Srate, const ch parameters = Parameters; schedule = NULL; nameSource = NULL; + nameSourceMode = 0; shortNameSource = NULL; if (Number() && !Quiet) { dsyslog("changing transponder data of channel %d (%s) from %s to %s", Number(), name, *OldTransponderData, *TransponderDataToString()); @@ -262,6 +268,7 @@ bool cChannel::SetName(const char *Name, const char *ShortName, const char *Prov if (nn) { name = strcpyrealloc(name, Name); nameSource = NULL; + nameSourceMode = 0; } if (ns) { shortName = strcpyrealloc(shortName, ShortName); @@ -792,6 +799,7 @@ bool cChannel::Parse(const char *s) free(caidbuf); free(namebuf); nameSource = NULL; + nameSourceMode = 0; shortNameSource = NULL; if (!GetChannelID().Valid()) { esyslog("ERROR: channel data results in invalid ID!"); @@ -1093,8 +1101,8 @@ bool cChannels::MarkObsoleteChannels(int Source, int Nid, int Tid) bool ChannelsModified = false; for (cChannel *Channel = First(); Channel; Channel = Next(Channel)) { if (time(NULL) - Channel->Seen() > CHANNELTIMEOBSOLETE && Channel->Source() == Source && Channel->Nid() == Nid && Channel->Tid() == Tid && Channel->Rid() == 0) { - bool OldShowChannelNamesWithSource = Setup.ShowChannelNamesWithSource; - Setup.ShowChannelNamesWithSource = false; + int OldShowChannelNamesWithSource = Setup.ShowChannelNamesWithSource; + Setup.ShowChannelNamesWithSource = 0; if (!endswith(Channel->Name(), CHANNELMARKOBSOLETE)) ChannelsModified |= Channel->SetName(cString::sprintf("%s %s", Channel->Name(), CHANNELMARKOBSOLETE), Channel->ShortName(), cString::sprintf("%s %s", CHANNELMARKOBSOLETE, Channel->Provider())); Setup.ShowChannelNamesWithSource = OldShowChannelNamesWithSource; diff --git a/channels.h b/channels.h index 478b3d64..1543f95b 100644 --- a/channels.h +++ b/channels.h @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: channels.h 4.2 2015/08/17 09:39:48 kls Exp $ + * $Id: channels.h 4.3 2017/06/10 15:06:40 kls Exp $ */ #ifndef __CHANNELS_H @@ -123,6 +123,7 @@ private: bool groupSep; int __EndData__; mutable cString nameSource; + mutable int nameSourceMode; mutable cString shortNameSource; cString parameters; mutable int modification; diff --git a/menu.c b/menu.c index 7511a9ec..1cb389e0 100644 --- a/menu.c +++ b/menu.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.c 4.34 2017/06/10 09:52:14 kls Exp $ + * $Id: menu.c 4.35 2017/06/10 15:13:00 kls Exp $ */ #include "menu.h" @@ -4010,6 +4010,7 @@ void cMenuSetupReplay::Store(void) class cMenuSetupMisc : public cMenuSetupBase { private: + const char *showChannelNamesWithSourceTexts[3]; cStringList svdrpServerNames; void Set(void); public: @@ -4020,6 +4021,9 @@ public: cMenuSetupMisc::cMenuSetupMisc(void) { SetMenuCategory(mcSetupMisc); + showChannelNamesWithSourceTexts[0] = tr("off"); + showChannelNamesWithSourceTexts[1] = tr("type"); + showChannelNamesWithSourceTexts[2] = tr("full"); SetSection(tr("Miscellaneous")); Set(); } @@ -4049,7 +4053,7 @@ void cMenuSetupMisc::Set(void) Add(new cMenuEditIntItem( tr("Setup.Miscellaneous$Volume steps"), &data.VolumeSteps, 5, 255)); Add(new cMenuEditIntItem( tr("Setup.Miscellaneous$Volume linearize"), &data.VolumeLinearize, -20, 20)); Add(new cMenuEditBoolItem(tr("Setup.Miscellaneous$Channels wrap"), &data.ChannelsWrap)); - Add(new cMenuEditBoolItem(tr("Setup.Miscellaneous$Show channel names with source"), &data.ShowChannelNamesWithSource)); + Add(new cMenuEditStraItem(tr("Setup.Miscellaneous$Show channel names with source"), &data.ShowChannelNamesWithSource, 3, showChannelNamesWithSourceTexts)); Add(new cMenuEditBoolItem(tr("Setup.Miscellaneous$Emergency exit"), &data.EmergencyExit)); SetCurrent(Get(current)); Display(); diff --git a/po/ar.po b/po/ar.po index b8221b4f..267d5184 100644 --- a/po/ar.po +++ b/po/ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-11 10:38+0200\n" +"POT-Creation-Date: 2017-06-10 17:19+0200\n" "PO-Revision-Date: 2008-10-16 11:16-0400\n" "Last-Translator: Osama Alrawab \n" "Language-Team: Arabic \n" @@ -1302,6 +1302,12 @@ msgstr "" msgid "Setup.Replay$Resume ID" msgstr "رقم المواصلة" +msgid "type" +msgstr "" + +msgid "full" +msgstr "" + msgid "Miscellaneous" msgstr "متفرقات" diff --git a/po/ca_ES.po b/po/ca_ES.po index e251db25..42b2bc56 100644 --- a/po/ca_ES.po +++ b/po/ca_ES.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-11 10:38+0200\n" +"POT-Creation-Date: 2017-06-10 17:19+0200\n" "PO-Revision-Date: 2008-03-02 19:02+0100\n" "Last-Translator: Luca Olivetti \n" "Language-Team: Catalan \n" @@ -1301,6 +1301,12 @@ msgstr "" msgid "Setup.Replay$Resume ID" msgstr "ID de Continuar" +msgid "type" +msgstr "" + +msgid "full" +msgstr "" + msgid "Miscellaneous" msgstr "Miscellnia" diff --git a/po/cs_CZ.po b/po/cs_CZ.po index 541ee353..8036f12c 100644 --- a/po/cs_CZ.po +++ b/po/cs_CZ.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-11 10:38+0200\n" +"POT-Creation-Date: 2017-06-10 17:19+0200\n" "PO-Revision-Date: 2010-05-06 11:00+0200\n" "Last-Translator: Aleš Juřík \n" "Language-Team: Czech \n" @@ -1301,6 +1301,12 @@ msgstr "Velikost skoku za použití tlačítek Zelená/Žlutá při opakování msgid "Setup.Replay$Resume ID" msgstr "ID obnovení" +msgid "type" +msgstr "" + +msgid "full" +msgstr "" + msgid "Miscellaneous" msgstr "Různé" diff --git a/po/da_DK.po b/po/da_DK.po index 0861ad76..5c3f870f 100644 --- a/po/da_DK.po +++ b/po/da_DK.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-11 10:38+0200\n" +"POT-Creation-Date: 2017-06-10 17:19+0200\n" "PO-Revision-Date: 2007-08-12 14:17+0200\n" "Last-Translator: Mogens Elneff \n" "Language-Team: Danish \n" @@ -1298,6 +1298,12 @@ msgstr "" msgid "Setup.Replay$Resume ID" msgstr "Genoptagelses ID" +msgid "type" +msgstr "" + +msgid "full" +msgstr "" + msgid "Miscellaneous" msgstr "Diverse" diff --git a/po/de_DE.po b/po/de_DE.po index 773be425..7b1ac5ea 100644 --- a/po/de_DE.po +++ b/po/de_DE.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-11 10:38+0200\n" +"POT-Creation-Date: 2017-06-10 17:19+0200\n" "PO-Revision-Date: 2015-02-10 13:45+0100\n" "Last-Translator: Klaus Schmidinger \n" "Language-Team: German \n" @@ -1299,6 +1299,12 @@ msgstr "Sprungweite mit Taste Gr msgid "Setup.Replay$Resume ID" msgstr "Wiedergabe-ID" +msgid "type" +msgstr "Typ" + +msgid "full" +msgstr "Alles" + msgid "Miscellaneous" msgstr "Sonstiges" diff --git a/po/el_GR.po b/po/el_GR.po index 1660877c..b64518aa 100644 --- a/po/el_GR.po +++ b/po/el_GR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-11 10:38+0200\n" +"POT-Creation-Date: 2017-06-10 17:19+0200\n" "PO-Revision-Date: 2007-08-12 14:17+0200\n" "Last-Translator: Dimitrios Dimitrakos \n" "Language-Team: Greek \n" @@ -1298,6 +1298,12 @@ msgstr "" msgid "Setup.Replay$Resume ID" msgstr "ID " +msgid "type" +msgstr "" + +msgid "full" +msgstr "" + msgid "Miscellaneous" msgstr "" diff --git a/po/es_ES.po b/po/es_ES.po index 3a763f1b..a010c3fe 100644 --- a/po/es_ES.po +++ b/po/es_ES.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-11 10:38+0200\n" +"POT-Creation-Date: 2017-06-10 17:19+0200\n" "PO-Revision-Date: 2015-02-19 23:00+0100\n" "Last-Translator: Gabriel Bonich \n" "Language-Team: Spanish \n" @@ -1299,6 +1299,12 @@ msgstr "Saltar distancia con teclas verde/amarillo en la repetici msgid "Setup.Replay$Resume ID" msgstr "ID de continuacin" +msgid "type" +msgstr "" + +msgid "full" +msgstr "" + msgid "Miscellaneous" msgstr "Varios" diff --git a/po/et_EE.po b/po/et_EE.po index 467119e6..40260987 100644 --- a/po/et_EE.po +++ b/po/et_EE.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-11 10:38+0200\n" +"POT-Creation-Date: 2017-06-10 17:19+0200\n" "PO-Revision-Date: 2007-08-12 14:17+0200\n" "Last-Translator: Arthur Konovalov \n" "Language-Team: Estonian \n" @@ -1298,6 +1298,12 @@ msgstr "Klahvide Roheline/Kollane korduv hüpe (s)" msgid "Setup.Replay$Resume ID" msgstr "Taasesituse tunnus" +msgid "type" +msgstr "" + +msgid "full" +msgstr "" + msgid "Miscellaneous" msgstr "Muud seaded" diff --git a/po/fi_FI.po b/po/fi_FI.po index cbb0c8a3..6ed0af2a 100644 --- a/po/fi_FI.po +++ b/po/fi_FI.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-11 10:38+0200\n" +"POT-Creation-Date: 2017-06-10 17:19+0200\n" "PO-Revision-Date: 2007-08-15 15:52+0200\n" "Last-Translator: Matti Lehtimäki \n" "Language-Team: Finnish \n" @@ -1302,6 +1302,12 @@ msgstr "Toistohypyn kesto värinäppäimillä (s)" msgid "Setup.Replay$Resume ID" msgstr "Tallenteen paluutunniste" +msgid "type" +msgstr "" + +msgid "full" +msgstr "" + msgid "Miscellaneous" msgstr "Sekalaiset" diff --git a/po/fr_FR.po b/po/fr_FR.po index 5e4348d2..3a04653b 100644 --- a/po/fr_FR.po +++ b/po/fr_FR.po @@ -18,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-11 10:38+0200\n" +"POT-Creation-Date: 2017-06-10 17:19+0200\n" "PO-Revision-Date: 2015-02-18 20:16+0100\n" "Last-Translator: Bernard Jaulin \n" "Language-Team: French \n" @@ -1309,6 +1309,12 @@ msgstr "Durée du saut pour les touches Verte/Jaune en répétition (s)" msgid "Setup.Replay$Resume ID" msgstr "ID résumé" +msgid "type" +msgstr "" + +msgid "full" +msgstr "" + msgid "Miscellaneous" msgstr "Divers" diff --git a/po/hr_HR.po b/po/hr_HR.po index 38d6fff8..f7b3dd39 100644 --- a/po/hr_HR.po +++ b/po/hr_HR.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-11 10:38+0200\n" +"POT-Creation-Date: 2017-06-10 17:19+0200\n" "PO-Revision-Date: 2008-03-17 19:00+0100\n" "Last-Translator: Adrian Caval \n" "Language-Team: Croatian \n" @@ -1300,6 +1300,12 @@ msgstr "" msgid "Setup.Replay$Resume ID" msgstr "ID nastavka" +msgid "type" +msgstr "" + +msgid "full" +msgstr "" + msgid "Miscellaneous" msgstr "Raznovrsno" diff --git a/po/hu_HU.po b/po/hu_HU.po index 5af4a8c7..91749940 100644 --- a/po/hu_HU.po +++ b/po/hu_HU.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-11 10:38+0200\n" +"POT-Creation-Date: 2017-06-10 17:19+0200\n" "PO-Revision-Date: 2015-02-13 09:36+0200\n" "Last-Translator: István Füley \n" "Language-Team: Hungarian \n" @@ -1303,6 +1303,12 @@ msgstr "Ismételt ugrástáv a Zöld/Sárga gombokkal (mp)" msgid "Setup.Replay$Resume ID" msgstr "Lejátszás azonosító" +msgid "type" +msgstr "" + +msgid "full" +msgstr "" + msgid "Miscellaneous" msgstr "Egyéb" diff --git a/po/it_IT.po b/po/it_IT.po index 9552f989..d27f1fb8 100644 --- a/po/it_IT.po +++ b/po/it_IT.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-11 10:38+0200\n" +"POT-Creation-Date: 2017-06-10 17:19+0200\n" "PO-Revision-Date: 2015-09-14 19:28+0100\n" "Last-Translator: Diego Pierotto \n" "Language-Team: Italian \n" @@ -1304,6 +1304,12 @@ msgstr "Durata spostamento con tasti Verde/Giallo in sequenza (s)" msgid "Setup.Replay$Resume ID" msgstr "ID di ripristino" +msgid "type" +msgstr "" + +msgid "full" +msgstr "" + msgid "Miscellaneous" msgstr "Generici" diff --git a/po/lt_LT.po b/po/lt_LT.po index b19538b0..46e4618a 100644 --- a/po/lt_LT.po +++ b/po/lt_LT.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-11 10:38+0200\n" +"POT-Creation-Date: 2017-06-10 17:19+0200\n" "PO-Revision-Date: 2015-02-11 14:02+0200\n" "Last-Translator: Valdemaras Pipiras \n" "Language-Team: Lithuanian \n" @@ -1298,6 +1298,12 @@ msgstr "Praleisti atkarpą pakartojime (s) su Žaliu/Geltonu mygtukais" msgid "Setup.Replay$Resume ID" msgstr "Kūrinio ID" +msgid "type" +msgstr "" + +msgid "full" +msgstr "" + msgid "Miscellaneous" msgstr "Kiti" diff --git a/po/mk_MK.po b/po/mk_MK.po index 6e81944b..69cf47f0 100644 --- a/po/mk_MK.po +++ b/po/mk_MK.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-11 10:38+0200\n" +"POT-Creation-Date: 2017-06-10 17:19+0200\n" "PO-Revision-Date: 2015-02-08 15:18+0100\n" "Last-Translator: Dimitar Petrovski \n" "Language-Team: Macedonian \n" @@ -1299,6 +1299,12 @@ msgstr "Дистанца на скокање со Зелено/Жолто коп msgid "Setup.Replay$Resume ID" msgstr "ID на продолжеток" +msgid "type" +msgstr "" + +msgid "full" +msgstr "" + msgid "Miscellaneous" msgstr "Разно" diff --git a/po/nl_NL.po b/po/nl_NL.po index 6621e393..6a984e26 100644 --- a/po/nl_NL.po +++ b/po/nl_NL.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-11 10:38+0200\n" +"POT-Creation-Date: 2017-06-10 17:19+0200\n" "PO-Revision-Date: 2015-02-10 19:43+0100\n" "Last-Translator: Erik Oomen \n" "Language-Team: Dutch \n" @@ -1304,6 +1304,12 @@ msgstr "Spoel sprong met groene en gele toesten in repeteerstand (s)" msgid "Setup.Replay$Resume ID" msgstr "Hervattings ID" +msgid "type" +msgstr "" + +msgid "full" +msgstr "" + msgid "Miscellaneous" msgstr "Overig" diff --git a/po/nn_NO.po b/po/nn_NO.po index d90bedb8..15c25ec6 100644 --- a/po/nn_NO.po +++ b/po/nn_NO.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-11 10:38+0200\n" +"POT-Creation-Date: 2017-06-10 17:19+0200\n" "PO-Revision-Date: 2007-08-12 14:17+0200\n" "Last-Translator: Truls Slevigen \n" "Language-Team: Norwegian Nynorsk \n" @@ -1299,6 +1299,12 @@ msgstr "" msgid "Setup.Replay$Resume ID" msgstr "Resume ID" +msgid "type" +msgstr "" + +msgid "full" +msgstr "" + msgid "Miscellaneous" msgstr "Forskjellig" diff --git a/po/pl_PL.po b/po/pl_PL.po index 7b4ab888..b9077a2c 100644 --- a/po/pl_PL.po +++ b/po/pl_PL.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-11 10:38+0200\n" +"POT-Creation-Date: 2017-06-10 17:19+0200\n" "PO-Revision-Date: 2015-02-12 00:59+0100\n" "Last-Translator: Tomasz Maciej Nowak \n" "Language-Team: Polish \n" @@ -1301,6 +1301,12 @@ msgstr "Pomi msgid "Setup.Replay$Resume ID" msgstr "ID wznowienia" +msgid "type" +msgstr "" + +msgid "full" +msgstr "" + msgid "Miscellaneous" msgstr "Rne" diff --git a/po/pt_PT.po b/po/pt_PT.po index ecf72602..972419b9 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-11 10:38+0200\n" +"POT-Creation-Date: 2017-06-10 17:19+0200\n" "PO-Revision-Date: 2010-03-28 22:49+0100\n" "Last-Translator: Cris Silva \n" "Language-Team: Portuguese \n" @@ -1299,6 +1299,12 @@ msgstr "" msgid "Setup.Replay$Resume ID" msgstr "ID de resumo" +msgid "type" +msgstr "" + +msgid "full" +msgstr "" + msgid "Miscellaneous" msgstr "Outros" diff --git a/po/ro_RO.po b/po/ro_RO.po index 157acf3c..78c4f32c 100644 --- a/po/ro_RO.po +++ b/po/ro_RO.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-11 10:38+0200\n" +"POT-Creation-Date: 2017-06-10 17:19+0200\n" "PO-Revision-Date: 2015-02-11 22:26+0100\n" "Last-Translator: Lucian Muresan \n" "Language-Team: Romanian \n" @@ -1300,6 +1300,12 @@ msgstr "Durata sărită cu tastele Verde/Galben la repetiție (s)" msgid "Setup.Replay$Resume ID" msgstr "Identificator continuare" +msgid "type" +msgstr "" + +msgid "full" +msgstr "" + msgid "Miscellaneous" msgstr "Diverse" diff --git a/po/ru_RU.po b/po/ru_RU.po index f4b3096c..0223d0ad 100644 --- a/po/ru_RU.po +++ b/po/ru_RU.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-01-05 19:50+1000\n" +"POT-Creation-Date: 2017-06-10 17:19+0200\n" "PO-Revision-Date: 2016-12-27 17:13+0100\n" "Last-Translator: Pridvorov Andrey \n" "Language-Team: Russian \n" @@ -1299,6 +1299,12 @@ msgstr "Пропуск интервала Зелёный/Жёлтый в пов msgid "Setup.Replay$Resume ID" msgstr "ID воспроизведения" +msgid "type" +msgstr "" + +msgid "full" +msgstr "" + msgid "Miscellaneous" msgstr "Прочее" diff --git a/po/sk_SK.po b/po/sk_SK.po index fcee4824..8ddbeb46 100644 --- a/po/sk_SK.po +++ b/po/sk_SK.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-11 10:38+0200\n" +"POT-Creation-Date: 2017-06-10 17:19+0200\n" "PO-Revision-Date: 2015-02-17 18:59+0100\n" "Last-Translator: Milan Hrala \n" "Language-Team: Slovak \n" @@ -1299,6 +1299,12 @@ msgstr "Opakovan msgid "Setup.Replay$Resume ID" msgstr "ident. slo obnovenia prehrvania" +msgid "type" +msgstr "" + +msgid "full" +msgstr "" + msgid "Miscellaneous" msgstr "Rzne" diff --git a/po/sl_SI.po b/po/sl_SI.po index 048ce54e..0a6a289e 100644 --- a/po/sl_SI.po +++ b/po/sl_SI.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-11 10:38+0200\n" +"POT-Creation-Date: 2017-06-10 17:19+0200\n" "PO-Revision-Date: 2013-03-04 12:46+0100\n" "Last-Translator: Matjaz Thaler \n" "Language-Team: Slovenian \n" @@ -1299,6 +1299,12 @@ msgstr "" msgid "Setup.Replay$Resume ID" msgstr "ID za predvajanje" +msgid "type" +msgstr "" + +msgid "full" +msgstr "" + msgid "Miscellaneous" msgstr "Ostalo" diff --git a/po/sr_RS.po b/po/sr_RS.po index c12e296a..ba1fd189 100644 --- a/po/sr_RS.po +++ b/po/sr_RS.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-11 10:38+0200\n" +"POT-Creation-Date: 2017-06-10 17:19+0200\n" "PO-Revision-Date: 2013-03-16 15:05+0100\n" "Last-Translator: Zoran Turalija \n" "Language-Team: Serbian \n" @@ -1299,6 +1299,12 @@ msgstr "" msgid "Setup.Replay$Resume ID" msgstr "ID reprodukcije" +msgid "type" +msgstr "" + +msgid "full" +msgstr "" + msgid "Miscellaneous" msgstr "Razno" diff --git a/po/sv_SE.po b/po/sv_SE.po index 79723c87..78f689d8 100644 --- a/po/sv_SE.po +++ b/po/sv_SE.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-11 10:38+0200\n" +"POT-Creation-Date: 2017-06-10 17:19+0200\n" "PO-Revision-Date: 2015-02-12 21:58+0100\n" "Last-Translator: Magnus Sirvi \n" "Language-Team: Swedish \n" @@ -1303,6 +1303,12 @@ msgstr "Tid f msgid "Setup.Replay$Resume ID" msgstr "terupptagnings-ID" +msgid "type" +msgstr "" + +msgid "full" +msgstr "" + msgid "Miscellaneous" msgstr "Diverse" diff --git a/po/tr_TR.po b/po/tr_TR.po index 1d399332..5cfac45c 100644 --- a/po/tr_TR.po +++ b/po/tr_TR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-11 10:38+0200\n" +"POT-Creation-Date: 2017-06-10 17:19+0200\n" "PO-Revision-Date: 2008-02-28 00:33+0100\n" "Last-Translator: Oktay Yolgeen \n" "Language-Team: Turkish \n" @@ -1298,6 +1298,12 @@ msgstr "" msgid "Setup.Replay$Resume ID" msgstr "Gsteri ID'si" +msgid "type" +msgstr "" + +msgid "full" +msgstr "" + msgid "Miscellaneous" msgstr "Dierler" diff --git a/po/uk_UA.po b/po/uk_UA.po index 8bff8e25..f9b18b35 100644 --- a/po/uk_UA.po +++ b/po/uk_UA.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-11 10:38+0200\n" +"POT-Creation-Date: 2017-06-10 17:19+0200\n" "PO-Revision-Date: 2015-02-13 18:14+0100\n" "Last-Translator: Yarema aka Knedlyk \n" "Language-Team: Ukrainian \n" @@ -1299,6 +1299,12 @@ msgstr "Інтервал пропуску з Зеленою/Жовтою кно msgid "Setup.Replay$Resume ID" msgstr "ID продовження" +msgid "type" +msgstr "" + +msgid "full" +msgstr "" + msgid "Miscellaneous" msgstr "Різне" diff --git a/po/zh_CN.po b/po/zh_CN.po index 09aea4b6..5ae75557 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDR 2.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-11 10:38+0200\n" +"POT-Creation-Date: 2017-06-10 17:19+0200\n" "PO-Revision-Date: 2013-03-04 14:52+0800\n" "Last-Translator: NFVDR \n" "Language-Team: Chinese (simplified) \n" @@ -1300,6 +1300,12 @@ msgstr "" msgid "Setup.Replay$Resume ID" msgstr "恢复 ID" +msgid "type" +msgstr "" + +msgid "full" +msgstr "" + msgid "Miscellaneous" msgstr "其它设置"