mirror of
				https://github.com/rofafor/vdr-plugin-iptv.git
				synced 2023-10-10 11:37:03 +00:00 
			
		
		
		
	Updated for vdr-2.4.0.
This commit is contained in:
		
							
								
								
									
										9
									
								
								HISTORY
									
									
									
									
									
								
							
							
						
						
									
										9
									
								
								HISTORY
									
									
									
									
									
								
							@@ -283,3 +283,12 @@ VDR Plugin 'iptv' Revision History
 | 
				
			|||||||
- Updated for vdr-2.3.7.
 | 
					- Updated for vdr-2.3.7.
 | 
				
			||||||
- Added Polish translation (Thanks to Tomasz Nowak).
 | 
					- Added Polish translation (Thanks to Tomasz Nowak).
 | 
				
			||||||
- Added Catalan and Spanish translations (Thanks to Gabriel Bonich).
 | 
					- Added Catalan and Spanish translations (Thanks to Gabriel Bonich).
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					==================================
 | 
				
			||||||
 | 
					VDR Plugin 'iptv' Revision History
 | 
				
			||||||
 | 
					==================================
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					2018-04-15: Version 2.4.0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					- Updated for vdr-2.4.0.
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										6
									
								
								iptv.c
									
									
									
									
									
								
							
							
						
						
									
										6
									
								
								iptv.c
									
									
									
									
									
								
							@@ -13,15 +13,15 @@
 | 
				
			|||||||
#include "device.h"
 | 
					#include "device.h"
 | 
				
			||||||
#include "iptvservice.h"
 | 
					#include "iptvservice.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#if defined(APIVERSNUM) && APIVERSNUM < 20307
 | 
					#if defined(APIVERSNUM) && APIVERSNUM < 20400
 | 
				
			||||||
#error "VDR-2.3.7 API version or greater is required!"
 | 
					#error "VDR-2.4.0 API version or greater is required!"
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifndef GITVERSION
 | 
					#ifndef GITVERSION
 | 
				
			||||||
#define GITVERSION ""
 | 
					#define GITVERSION ""
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
       const char VERSION[]     = "2.3.0" GITVERSION;
 | 
					       const char VERSION[]     = "2.4.0" GITVERSION;
 | 
				
			||||||
static const char DESCRIPTION[] = trNOOP("Experience the IPTV");
 | 
					static const char DESCRIPTION[] = trNOOP("Experience the IPTV");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class cPluginIptv : public cPlugin {
 | 
					class cPluginIptv : public cPlugin {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -5,10 +5,10 @@
 | 
				
			|||||||
#
 | 
					#
 | 
				
			||||||
msgid ""
 | 
					msgid ""
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
"Project-Id-Version: vdr-iptv 2.3.0\n"
 | 
					"Project-Id-Version: vdr-iptv 2.4.0\n"
 | 
				
			||||||
"Report-Msgid-Bugs-To: <see README>\n"
 | 
					"Report-Msgid-Bugs-To: <see README>\n"
 | 
				
			||||||
"POT-Creation-Date: 2017-06-24 06:24+0300\n"
 | 
					"POT-Creation-Date: 2018-04-15 04:15+0300\n"
 | 
				
			||||||
"PO-Revision-Date: 2017-06-24 06:24+0300\n"
 | 
					"PO-Revision-Date: 2018-04-15 04:15+0300\n"
 | 
				
			||||||
"Last-Translator: Gabriel Bonich <gbonich@gmail.com>\n"
 | 
					"Last-Translator: Gabriel Bonich <gbonich@gmail.com>\n"
 | 
				
			||||||
"Language-Team: Catalan <vdr@linuxtv.org>\n"
 | 
					"Language-Team: Catalan <vdr@linuxtv.org>\n"
 | 
				
			||||||
"Language: ca\n"
 | 
					"Language: ca\n"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,15 +1,15 @@
 | 
				
			|||||||
# VDR plugin language source file.
 | 
					# VDR plugin language source file.
 | 
				
			||||||
# Copyright (C) 2007-2015 Rolf Ahrenberg & Antti Seppala
 | 
					# Copyright (C) 2007-2018 Rolf Ahrenberg & Antti Seppala
 | 
				
			||||||
# This file is distributed under the same license as the iptv package.
 | 
					# This file is distributed under the same license as the iptv package.
 | 
				
			||||||
# Tobias <vdr@e-tobi.net>, 2007.
 | 
					# Tobias <vdr@e-tobi.net>, 2007.
 | 
				
			||||||
# Frank Neumann, 2015.
 | 
					# Frank Neumann, 2015.
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
msgid ""
 | 
					msgid ""
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
"Project-Id-Version: vdr-iptv 2.3.0\n"
 | 
					"Project-Id-Version: vdr-iptv 2.4.0\n"
 | 
				
			||||||
"Report-Msgid-Bugs-To: <see README>\n"
 | 
					"Report-Msgid-Bugs-To: <see README>\n"
 | 
				
			||||||
"POT-Creation-Date: 2017-06-24 06:24+0300\n"
 | 
					"POT-Creation-Date: 2018-04-15 04:15+0300\n"
 | 
				
			||||||
"PO-Revision-Date: 2017-06-24 06:24+0300\n"
 | 
					"PO-Revision-Date: 2018-04-15 04:15+0300\n"
 | 
				
			||||||
"Last-Translator: Frank Neumann <fnu@yavdr.org>\n"
 | 
					"Last-Translator: Frank Neumann <fnu@yavdr.org>\n"
 | 
				
			||||||
"Language-Team: German <vdr@linuxtv.org>\n"
 | 
					"Language-Team: German <vdr@linuxtv.org>\n"
 | 
				
			||||||
"Language: de\n"
 | 
					"Language: de\n"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -5,10 +5,10 @@
 | 
				
			|||||||
#
 | 
					#
 | 
				
			||||||
msgid ""
 | 
					msgid ""
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
"Project-Id-Version: vdr-iptv 2.3.0\n"
 | 
					"Project-Id-Version: vdr-iptv 2.4.0\n"
 | 
				
			||||||
"Report-Msgid-Bugs-To: <see README>\n"
 | 
					"Report-Msgid-Bugs-To: <see README>\n"
 | 
				
			||||||
"POT-Creation-Date: 2017-06-24 06:24+0300\n"
 | 
					"POT-Creation-Date: 2018-04-15 04:15+0300\n"
 | 
				
			||||||
"PO-Revision-Date: 2017-06-24 06:24+0300\n"
 | 
					"PO-Revision-Date: 2018-04-15 04:15+0300\n"
 | 
				
			||||||
"Last-Translator: Gabriel Bonich <gbonich@gmail.com>\n"
 | 
					"Last-Translator: Gabriel Bonich <gbonich@gmail.com>\n"
 | 
				
			||||||
"Language-Team: Spanish <vdr@linuxtv.org>\n"
 | 
					"Language-Team: Spanish <vdr@linuxtv.org>\n"
 | 
				
			||||||
"Language: es\n"
 | 
					"Language: es\n"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,14 +1,14 @@
 | 
				
			|||||||
# VDR plugin language source file.
 | 
					# VDR plugin language source file.
 | 
				
			||||||
# Copyright (C) 2007-2015 Rolf Ahrenberg & Antti Seppala
 | 
					# Copyright (C) 2007-2018 Rolf Ahrenberg & Antti Seppala
 | 
				
			||||||
# This file is distributed under the same license as the iptv package.
 | 
					# This file is distributed under the same license as the iptv package.
 | 
				
			||||||
# Rolf Ahrenberg
 | 
					# Rolf Ahrenberg
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
msgid ""
 | 
					msgid ""
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
"Project-Id-Version: vdr-iptv 2.3.0\n"
 | 
					"Project-Id-Version: vdr-iptv 2.4.0\n"
 | 
				
			||||||
"Report-Msgid-Bugs-To: <see README>\n"
 | 
					"Report-Msgid-Bugs-To: <see README>\n"
 | 
				
			||||||
"POT-Creation-Date: 2017-06-24 06:24+0300\n"
 | 
					"POT-Creation-Date: 2018-04-15 04:15+0300\n"
 | 
				
			||||||
"PO-Revision-Date: 2017-06-24 06:24+0300\n"
 | 
					"PO-Revision-Date: 2018-04-15 04:15+0300\n"
 | 
				
			||||||
"Last-Translator: Rolf Ahrenberg\n"
 | 
					"Last-Translator: Rolf Ahrenberg\n"
 | 
				
			||||||
"Language-Team: Finnish <vdr@linuxtv.org>\n"
 | 
					"Language-Team: Finnish <vdr@linuxtv.org>\n"
 | 
				
			||||||
"Language: fi\n"
 | 
					"Language: fi\n"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,15 +1,15 @@
 | 
				
			|||||||
# French translations for iptv package.
 | 
					# French translations for iptv package.
 | 
				
			||||||
# Copyright (C) 2007-2015 Rolf Ahrenberg & Antti Seppala
 | 
					# Copyright (C) 2007-2018 Rolf Ahrenberg & Antti Seppala
 | 
				
			||||||
# This file is distributed under the same license as the iptv package.
 | 
					# This file is distributed under the same license as the iptv package.
 | 
				
			||||||
# Bruno ROUSSEL <bruno.roussel@free.fr>, 2007.
 | 
					# Bruno ROUSSEL <bruno.roussel@free.fr>, 2007.
 | 
				
			||||||
# NIVAL Michaël <mnival@club-internet.fr>, 2008.
 | 
					# NIVAL Michaël <mnival@club-internet.fr>, 2008.
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
msgid ""
 | 
					msgid ""
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
"Project-Id-Version: vdr-iptv 2.3.0\n"
 | 
					"Project-Id-Version: vdr-iptv 2.4.0\n"
 | 
				
			||||||
"Report-Msgid-Bugs-To: <see README>\n"
 | 
					"Report-Msgid-Bugs-To: <see README>\n"
 | 
				
			||||||
"POT-Creation-Date: 2017-06-24 06:24+0300\n"
 | 
					"POT-Creation-Date: 2018-04-15 04:15+0300\n"
 | 
				
			||||||
"PO-Revision-Date: 2017-06-24 06:24+0300\n"
 | 
					"PO-Revision-Date: 2018-04-15 04:15+0300\n"
 | 
				
			||||||
"Last-Translator: NIVAL Michaël <mnival@club-internet.fr>\n"
 | 
					"Last-Translator: NIVAL Michaël <mnival@club-internet.fr>\n"
 | 
				
			||||||
"Language-Team: French <vdr@linuxtv.org>\n"
 | 
					"Language-Team: French <vdr@linuxtv.org>\n"
 | 
				
			||||||
"Language: fr\n"
 | 
					"Language: fr\n"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,14 +1,14 @@
 | 
				
			|||||||
# VDR plugin language source file.
 | 
					# VDR plugin language source file.
 | 
				
			||||||
# Copyright (C) 2007-2015 Rolf Ahrenberg & Antti Seppala
 | 
					# Copyright (C) 2007-2018 Rolf Ahrenberg & Antti Seppala
 | 
				
			||||||
# This file is distributed under the same license as the iptv package.
 | 
					# This file is distributed under the same license as the iptv package.
 | 
				
			||||||
# Diego Pierotto <vdr-italian@tiscali.it>, 2008.
 | 
					# Diego Pierotto <vdr-italian@tiscali.it>, 2008.
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
msgid ""
 | 
					msgid ""
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
"Project-Id-Version: vdr-iptv 2.3.0\n"
 | 
					"Project-Id-Version: vdr-iptv 2.4.0\n"
 | 
				
			||||||
"Report-Msgid-Bugs-To: <see README>\n"
 | 
					"Report-Msgid-Bugs-To: <see README>\n"
 | 
				
			||||||
"POT-Creation-Date: 2017-06-24 06:24+0300\n"
 | 
					"POT-Creation-Date: 2018-04-15 04:15+0300\n"
 | 
				
			||||||
"PO-Revision-Date: 2017-06-24 06:24+0300\n"
 | 
					"PO-Revision-Date: 2018-04-15 04:15+0300\n"
 | 
				
			||||||
"Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n"
 | 
					"Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n"
 | 
				
			||||||
"Language-Team: Italian <vdr@linuxtv.org>\n"
 | 
					"Language-Team: Italian <vdr@linuxtv.org>\n"
 | 
				
			||||||
"Language: it\n"
 | 
					"Language: it\n"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,14 +1,14 @@
 | 
				
			|||||||
# VDR plugin language source file.
 | 
					# VDR plugin language source file.
 | 
				
			||||||
# Copyright (C) 2007-2015 Rolf Ahrenberg & Antti Seppala
 | 
					# Copyright (C) 2007-2018 Rolf Ahrenberg & Antti Seppala
 | 
				
			||||||
# This file is distributed under the same license as the iptv package.
 | 
					# This file is distributed under the same license as the iptv package.
 | 
				
			||||||
# Valdemaras Pipiras
 | 
					# Valdemaras Pipiras
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
msgid ""
 | 
					msgid ""
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
"Project-Id-Version: vdr-iptv 2.3.0\n"
 | 
					"Project-Id-Version: vdr-iptv 2.4.0\n"
 | 
				
			||||||
"Report-Msgid-Bugs-To: <see README>\n"
 | 
					"Report-Msgid-Bugs-To: <see README>\n"
 | 
				
			||||||
"POT-Creation-Date: 2017-06-24 06:24+0300\n"
 | 
					"POT-Creation-Date: 2018-04-15 04:15+0300\n"
 | 
				
			||||||
"PO-Revision-Date: 2017-06-24 06:24+0300\n"
 | 
					"PO-Revision-Date: 2018-04-15 04:15+0300\n"
 | 
				
			||||||
"Last-Translator: Valdemaras Pipiras\n"
 | 
					"Last-Translator: Valdemaras Pipiras\n"
 | 
				
			||||||
"Language-Team: Lithuanian <vdr@linuxtv.org>\n"
 | 
					"Language-Team: Lithuanian <vdr@linuxtv.org>\n"
 | 
				
			||||||
"Language: fi\n"
 | 
					"Language: fi\n"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,14 +1,14 @@
 | 
				
			|||||||
# VDR plugin language source file.
 | 
					# VDR plugin language source file.
 | 
				
			||||||
# Copyright (C) 2007-2015 Rolf Ahrenberg & Antti Seppala
 | 
					# Copyright (C) 2007-2018 Rolf Ahrenberg & Antti Seppala
 | 
				
			||||||
# This file is distributed under the same license as the iptv package.
 | 
					# This file is distributed under the same license as the iptv package.
 | 
				
			||||||
# Carel, 2010.
 | 
					# Carel, 2010.
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
msgid ""
 | 
					msgid ""
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
"Project-Id-Version: vdr-iptv 2.3.0\n"
 | 
					"Project-Id-Version: vdr-iptv 2.4.0\n"
 | 
				
			||||||
"Report-Msgid-Bugs-To: <see README>\n"
 | 
					"Report-Msgid-Bugs-To: <see README>\n"
 | 
				
			||||||
"POT-Creation-Date: 2017-06-24 06:24+0300\n"
 | 
					"POT-Creation-Date: 2018-04-15 04:15+0300\n"
 | 
				
			||||||
"PO-Revision-Date: 2017-06-24 06:24+0300\n"
 | 
					"PO-Revision-Date: 2018-04-15 04:15+0300\n"
 | 
				
			||||||
"Last-Translator: Carel\n"
 | 
					"Last-Translator: Carel\n"
 | 
				
			||||||
"Language-Team: Dutch <vdr@linuxtv.org>\n"
 | 
					"Language-Team: Dutch <vdr@linuxtv.org>\n"
 | 
				
			||||||
"Language: nl\n"
 | 
					"Language: nl\n"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -5,10 +5,10 @@
 | 
				
			|||||||
#
 | 
					#
 | 
				
			||||||
msgid ""
 | 
					msgid ""
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
"Project-Id-Version: vdr-iptv 2.3.0\n"
 | 
					"Project-Id-Version: vdr-iptv 2.4.0\n"
 | 
				
			||||||
"Report-Msgid-Bugs-To: <see README>\n"
 | 
					"Report-Msgid-Bugs-To: <see README>\n"
 | 
				
			||||||
"POT-Creation-Date: 2017-06-24 06:24+0300\n"
 | 
					"POT-Creation-Date: 2018-04-15 04:15+0300\n"
 | 
				
			||||||
"PO-Revision-Date: 2017-06-24 06:24+0300\n"
 | 
					"PO-Revision-Date: 2018-04-15 04:15+0300\n"
 | 
				
			||||||
"Last-Translator: Tomasz Maciej Nowak <tomek_n@o2.pl>\n"
 | 
					"Last-Translator: Tomasz Maciej Nowak <tomek_n@o2.pl>\n"
 | 
				
			||||||
"Language-Team: Polish <vdr@linuxtv.org>\n"
 | 
					"Language-Team: Polish <vdr@linuxtv.org>\n"
 | 
				
			||||||
"Language: pl_PL\n"
 | 
					"Language: pl_PL\n"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,14 +1,14 @@
 | 
				
			|||||||
# VDR plugin language source file.
 | 
					# VDR plugin language source file.
 | 
				
			||||||
# Copyright (C) 2007-2015 Rolf Ahrenberg & Antti Seppala
 | 
					# Copyright (C) 2007-2018 Rolf Ahrenberg & Antti Seppala
 | 
				
			||||||
# This file is distributed under the same license as the iptv package.
 | 
					# This file is distributed under the same license as the iptv package.
 | 
				
			||||||
# Alexander Gross <Bikalexander@gmail.com>, 2008.
 | 
					# Alexander Gross <Bikalexander@gmail.com>, 2008.
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
msgid ""
 | 
					msgid ""
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
"Project-Id-Version: vdr-iptv 2.3.0\n"
 | 
					"Project-Id-Version: vdr-iptv 2.4.0\n"
 | 
				
			||||||
"Report-Msgid-Bugs-To: <see README>\n"
 | 
					"Report-Msgid-Bugs-To: <see README>\n"
 | 
				
			||||||
"POT-Creation-Date: 2017-06-24 06:24+0300\n"
 | 
					"POT-Creation-Date: 2018-04-15 04:15+0300\n"
 | 
				
			||||||
"PO-Revision-Date: 2017-06-24 06:24+0300\n"
 | 
					"PO-Revision-Date: 2018-04-15 04:15+0300\n"
 | 
				
			||||||
"Last-Translator: Alexander Gross <Bikalexander@gmail.com>\n"
 | 
					"Last-Translator: Alexander Gross <Bikalexander@gmail.com>\n"
 | 
				
			||||||
"Language-Team: Russian <vdr@linuxtv.org>\n"
 | 
					"Language-Team: Russian <vdr@linuxtv.org>\n"
 | 
				
			||||||
"Language: ru\n"
 | 
					"Language: ru\n"
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user