Official release of version 2.6.0

This commit is contained in:
Klaus Schmidinger 2021-12-27 13:31:29 +01:00
parent 5b28aa7e02
commit 955b1c914f
86 changed files with 192 additions and 166 deletions

View File

@ -9759,8 +9759,9 @@ Video Disk Recorder Revision History
(reported by Timo Weingärtner). (reported by Timo Weingärtner).
- Official release. - Official release.
2021-12-24: 2021-12-27: Version 2.6.0
- Fixed a possible memory leak in creating fonts (reported by Helmut Binder). - Fixed a possible memory leak in creating fonts (reported by Helmut Binder).
- Fixed calculating the disk use percentage if there's more than 20TB of recordings - Fixed calculating the disk use percentage if there's more than 20TB of recordings
(reported by Timo Weingärtner). (reported by Timo Weingärtner).
- Official release.

View File

@ -1,7 +1,7 @@
Installation of the Video Disk Recorder Installation of the Video Disk Recorder
--------------------------------------- ---------------------------------------
Version 2.4 Version 2.6
----------- -----------
Compiling and running the program: Compiling and running the program:

2
MANUAL
View File

@ -1,7 +1,7 @@
Video Disk Recorder User's Manual Video Disk Recorder User's Manual
--------------------------------- ---------------------------------
Version 2.4 Version 2.6
----------- -----------
* Remote Control Keys * Remote Control Keys

View File

@ -31,15 +31,12 @@ modified {
<div class="center"> <div class="center">
<h1>The VDR Plugin System</h1> <h1>The VDR Plugin System</h1>
<b>Version 2.4</b> <b>Version 2.6</b>
<p> <p>
Copyright &copy; 2018 Klaus Schmidinger<br> Copyright &copy; 2021 Klaus Schmidinger<br>
<a href="mailto:vdr@tvdr.de">vdr@tvdr.de</a><br> <a href="mailto:vdr@tvdr.de">vdr@tvdr.de</a><br>
<a href="http://www.tvdr.de">www.tvdr.de</a> <a href="http://www.tvdr.de">www.tvdr.de</a>
</div> </div>
<div class="center">
<modified>Important modifications introduced since version 2.2 are marked like this.</modified>
</div>
<p> <p>
VDR provides an easy to use plugin interface that allows additional functionality VDR provides an easy to use plugin interface that allows additional functionality
to be added to the program by implementing a dynamically loadable library file. to be added to the program by implementing a dynamically loadable library file.
@ -584,7 +581,6 @@ esyslog("pluginname: error #%d has occurred", ErrorNumber);
Note that the log messages will be given as provided, the plugin's name will not Note that the log messages will be given as provided, the plugin's name will not
automatically be added, so make sure your log messages are obvious enough. automatically be added, so make sure your log messages are obvious enough.
<p> <p>
<modified>
Only use the above logging functions for occasional log messages. Do not use Only use the above logging functions for occasional log messages. Do not use
them unconditionally for frequent messages that produce long sequences of lines them unconditionally for frequent messages that produce long sequences of lines
in the log file every few seconds. That might make it hard to work on other plugins in the log file every few seconds. That might make it hard to work on other plugins
@ -609,7 +605,6 @@ purpose of the plugin to display something on stdout, like for instance the
<br> <br>
Please make any log messages in <b>ENGLISH</b>! Logs are usually sent to the developers Please make any log messages in <b>ENGLISH</b>! Logs are usually sent to the developers
of a program, and they may not be able to read them if they are in an exotic language. of a program, and they may not be able to read them if they are in an exotic language.
</modified>
<hr><h2><a name="Main menu entry">Main menu entry</a></h2> <hr><h2><a name="Main menu entry">Main menu entry</a></h2>
@ -1189,11 +1184,9 @@ The returned string may consist of several lines, separated by the newline chara
when presenting them to the caller, and the continuation character ('<tt>-</tt>') when presenting them to the caller, and the continuation character ('<tt>-</tt>')
will be set for all but the last one. will be set for all but the last one.
<p> <p>
<modified>
<b>The SVDRP functions are called from the separate "SVDRP server handler" thread. <b>The SVDRP functions are called from the separate "SVDRP server handler" thread.
Therefore the plugin needs to take care of proper locking if it accesses any Therefore the plugin needs to take care of proper locking if it accesses any
global data.</b> global data.</b>
</modified>
<hr><h2><a name="Loading plugins into VDR">Loading plugins into VDR</a></h2> <hr><h2><a name="Loading plugins into VDR">Loading plugins into VDR</a></h2>

View File

@ -28,3 +28,7 @@ VDR Plugin 'epgtableid0' Revision History
2018-04-15: Version 2.4.0 2018-04-15: Version 2.4.0
- Official release. - Official release.
2021-12-27: Version 2.6.0
- Official release.

View File

@ -99,3 +99,7 @@ VDR Plugin 'hello' Revision History
- Updated the French OSD texts (thanks to Bernard Jaulin). - Updated the French OSD texts (thanks to Bernard Jaulin).
- Official release. - Official release.
2021-12-27: Version 2.6.0
- Official release.

View File

@ -1,5 +1,5 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Marc Rovira Vall <tm05462@salleURL.edu>, 2003 # Marc Rovira Vall <tm05462@salleURL.edu>, 2003
# Ramon Roca <ramon.roca@xcombo.com>, 2003 # Ramon Roca <ramon.roca@xcombo.com>, 2003
@ -7,7 +7,7 @@
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-hello 2.4.0\n" "Project-Id-Version: vdr-hello 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2012-12-18 14:04+0100\n" "POT-Creation-Date: 2012-12-18 14:04+0100\n"
"PO-Revision-Date: 2007-08-11 12:34+0200\n" "PO-Revision-Date: 2007-08-11 12:34+0200\n"

View File

@ -1,11 +1,11 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Vladimír Bárta <vladimir.barta@k2atmitec.cz>, 2006 # Vladimír Bárta <vladimir.barta@k2atmitec.cz>, 2006
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-hello 2.4.0\n" "Project-Id-Version: vdr-hello 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2012-12-18 14:04+0100\n" "POT-Creation-Date: 2012-12-18 14:04+0100\n"
"PO-Revision-Date: 2007-08-11 12:34+0200\n" "PO-Revision-Date: 2007-08-11 12:34+0200\n"

View File

@ -1,11 +1,11 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Mogens Elneff <mogens@elneff.dk>, 2004 # Mogens Elneff <mogens@elneff.dk>, 2004
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-hello 2.4.0\n" "Project-Id-Version: vdr-hello 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2012-12-18 14:04+0100\n" "POT-Creation-Date: 2012-12-18 14:04+0100\n"
"PO-Revision-Date: 2007-08-11 12:34+0200\n" "PO-Revision-Date: 2007-08-11 12:34+0200\n"

View File

@ -1,11 +1,11 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Klaus Schmidinger <vdr@tvdr.de>, 2000 # Klaus Schmidinger <vdr@tvdr.de>, 2000
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-hello 2.4.0\n" "Project-Id-Version: vdr-hello 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2012-12-18 14:04+0100\n" "POT-Creation-Date: 2012-12-18 14:04+0100\n"
"PO-Revision-Date: 2007-08-11 12:34+0200\n" "PO-Revision-Date: 2007-08-11 12:34+0200\n"

View File

@ -1,11 +1,11 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Dimitrios Dimitrakos <mail@dimitrios.de>, 2002 # Dimitrios Dimitrakos <mail@dimitrios.de>, 2002
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-hello 2.4.0\n" "Project-Id-Version: vdr-hello 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2012-12-18 14:04+0100\n" "POT-Creation-Date: 2012-12-18 14:04+0100\n"
"PO-Revision-Date: 2007-08-11 12:34+0200\n" "PO-Revision-Date: 2007-08-11 12:34+0200\n"

View File

@ -1,11 +1,11 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Ruben Nunez Francisco <ruben.nunez@tang-it.com>, 2002 # Ruben Nunez Francisco <ruben.nunez@tang-it.com>, 2002
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-hello 2.4.0\n" "Project-Id-Version: vdr-hello 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2012-12-18 14:04+0100\n" "POT-Creation-Date: 2012-12-18 14:04+0100\n"
"PO-Revision-Date: 2007-08-11 12:34+0200\n" "PO-Revision-Date: 2007-08-11 12:34+0200\n"

View File

@ -1,11 +1,11 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Arthur Konovalov <artlov@gmail.com>, 2004, 2015 # Arthur Konovalov <artlov@gmail.com>, 2004, 2015
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-hello 2.4.0\n" "Project-Id-Version: vdr-hello 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2012-12-18 14:04+0100\n" "POT-Creation-Date: 2012-12-18 14:04+0100\n"
"PO-Revision-Date: 2007-08-11 12:34+0200\n" "PO-Revision-Date: 2007-08-11 12:34+0200\n"

View File

@ -1,5 +1,5 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Hannu Savolainen <hannu@opensound.com>, 2002 # Hannu Savolainen <hannu@opensound.com>, 2002
# Jaakko Hyvätti <jaakko@hyvatti.iki.fi>, 2002 # Jaakko Hyvätti <jaakko@hyvatti.iki.fi>, 2002
@ -8,7 +8,7 @@
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-hello 2.4.0\n" "Project-Id-Version: vdr-hello 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2012-12-18 14:04+0100\n" "POT-Creation-Date: 2012-12-18 14:04+0100\n"
"PO-Revision-Date: 2007-08-11 12:34+0200\n" "PO-Revision-Date: 2007-08-11 12:34+0200\n"

View File

@ -1,5 +1,5 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Jean-Claude Repetto <jc@repetto.org>, 2001 # Jean-Claude Repetto <jc@repetto.org>, 2001
# Olivier Jacques <jacquesolivier@hotmail.com>, 2003 # Olivier Jacques <jacquesolivier@hotmail.com>, 2003
@ -9,7 +9,7 @@
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-hello 2.4.0\n" "Project-Id-Version: vdr-hello 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2012-12-18 14:04+0100\n" "POT-Creation-Date: 2012-12-18 14:04+0100\n"
"PO-Revision-Date: 2018-04-14 8:34+0200\n" "PO-Revision-Date: 2018-04-14 8:34+0200\n"

View File

@ -1,11 +1,11 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Adrian Caval <anrxc@sysphere.org>, 2008 # Adrian Caval <anrxc@sysphere.org>, 2008
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-hello 2.4.0\n" "Project-Id-Version: vdr-hello 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2012-12-18 14:04+0100\n" "POT-Creation-Date: 2012-12-18 14:04+0100\n"
"PO-Revision-Date: 2008-03-17 19:52+0100\n" "PO-Revision-Date: 2008-03-17 19:52+0100\n"

View File

@ -1,12 +1,12 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Istvan Koenigsberger <istvnko@hotmail.com>, 2002 # Istvan Koenigsberger <istvnko@hotmail.com>, 2002
# Guido Josten <guido.josten@t-online.de>, 2002 # Guido Josten <guido.josten@t-online.de>, 2002
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-hello 2.4.0\n" "Project-Id-Version: vdr-hello 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2012-12-18 14:04+0100\n" "POT-Creation-Date: 2012-12-18 14:04+0100\n"
"PO-Revision-Date: 2007-08-11 12:34+0200\n" "PO-Revision-Date: 2007-08-11 12:34+0200\n"

View File

@ -1,11 +1,11 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Diego Pierotto <vdr-italian@tiscali.it>, 2008 # Diego Pierotto <vdr-italian@tiscali.it>, 2008
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-hello 2.4.0\n" "Project-Id-Version: vdr-hello 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2012-12-18 14:04+0100\n" "POT-Creation-Date: 2012-12-18 14:04+0100\n"
"PO-Revision-Date: 2008-01-27 20:11+0100\n" "PO-Revision-Date: 2008-01-27 20:11+0100\n"

View File

@ -1,11 +1,11 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Valdemaras Pipiras <varas@ambernet.lt>, 2009 # Valdemaras Pipiras <varas@ambernet.lt>, 2009
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-hello 2.4.0\n" "Project-Id-Version: vdr-hello 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2012-12-18 14:04+0100\n" "POT-Creation-Date: 2012-12-18 14:04+0100\n"
"PO-Revision-Date: 2009-12-08 12:18+0200\n" "PO-Revision-Date: 2009-12-08 12:18+0200\n"

View File

@ -1,5 +1,5 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Arnold Niessen <niessen@iae.nl> <arnold.niessen@philips.com>, 2001 # Arnold Niessen <niessen@iae.nl> <arnold.niessen@philips.com>, 2001
# Hans Dingemans <hans.dingemans@tacticalops.nl>, 2003 # Hans Dingemans <hans.dingemans@tacticalops.nl>, 2003
@ -7,7 +7,7 @@
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-hello 2.4.0\n" "Project-Id-Version: vdr-hello 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2012-12-18 14:04+0100\n" "POT-Creation-Date: 2012-12-18 14:04+0100\n"
"PO-Revision-Date: 2007-08-11 12:34+0200\n" "PO-Revision-Date: 2007-08-11 12:34+0200\n"

View File

@ -1,12 +1,12 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Jørgen Tvedt <pjtvedt@online.no>, 2001 # Jørgen Tvedt <pjtvedt@online.no>, 2001
# Truls Slevigen <truls@slevigen.no>, 2002 # Truls Slevigen <truls@slevigen.no>, 2002
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-hello 2.4.0\n" "Project-Id-Version: vdr-hello 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2012-12-18 14:04+0100\n" "POT-Creation-Date: 2012-12-18 14:04+0100\n"
"PO-Revision-Date: 2007-08-11 12:34+0200\n" "PO-Revision-Date: 2007-08-11 12:34+0200\n"

View File

@ -1,12 +1,12 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Michael Rakowski <mrak@gmx.de>, 2002 # Michael Rakowski <mrak@gmx.de>, 2002
# Tomasz Maciej Nowak <tmn505@gmail.com>, 2018 # Tomasz Maciej Nowak <tmn505@gmail.com>, 2018
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-hello 2.4.0\n" "Project-Id-Version: vdr-hello 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2012-12-18 14:04+0100\n" "POT-Creation-Date: 2012-12-18 14:04+0100\n"
"PO-Revision-Date: 2018-02-19 00:41+0100\n" "PO-Revision-Date: 2018-02-19 00:41+0100\n"

View File

@ -1,11 +1,11 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Paulo Lopes <pmml@netvita.pt>, 2001 # Paulo Lopes <pmml@netvita.pt>, 2001
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-hello 2.4.0\n" "Project-Id-Version: vdr-hello 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2012-12-18 14:04+0100\n" "POT-Creation-Date: 2012-12-18 14:04+0100\n"
"PO-Revision-Date: 2007-08-11 12:34+0200\n" "PO-Revision-Date: 2007-08-11 12:34+0200\n"

View File

@ -1,12 +1,12 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Paul Lacatus <paul@campina.iiruc.ro>, 2002 # Paul Lacatus <paul@campina.iiruc.ro>, 2002
# Lucian Muresan <lucianm@users.sourceforge.net>, 2004 # Lucian Muresan <lucianm@users.sourceforge.net>, 2004
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-hello 2.4.0\n" "Project-Id-Version: vdr-hello 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2012-12-18 14:04+0100\n" "POT-Creation-Date: 2012-12-18 14:04+0100\n"
"PO-Revision-Date: 2007-08-11 12:34+0200\n" "PO-Revision-Date: 2007-08-11 12:34+0200\n"

View File

@ -1,11 +1,11 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Vyacheslav Dikonov <sdiconov@mail.ru>, 2004 # Vyacheslav Dikonov <sdiconov@mail.ru>, 2004
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-hello 2.4.0\n" "Project-Id-Version: vdr-hello 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2012-12-18 14:04+0100\n" "POT-Creation-Date: 2012-12-18 14:04+0100\n"
"PO-Revision-Date: 2007-08-11 12:34+0200\n" "PO-Revision-Date: 2007-08-11 12:34+0200\n"

View File

@ -1,11 +1,11 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Vladimír Bárta <vladimir.barta@k2atmitec.cz>, 2006 # Vladimír Bárta <vladimir.barta@k2atmitec.cz>, 2006
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-hello 2.4.0\n" "Project-Id-Version: vdr-hello 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2012-12-18 14:04+0100\n" "POT-Creation-Date: 2012-12-18 14:04+0100\n"
"PO-Revision-Date: 2009-09-30 09:48+0100\n" "PO-Revision-Date: 2009-09-30 09:48+0100\n"

View File

@ -1,12 +1,12 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Miha Setina <mihasetina@softhome.net>, 2000 # Miha Setina <mihasetina@softhome.net>, 2000
# Matjaz Thaler <matjaz.thaler@guest.arnes.si>, 2003 # Matjaz Thaler <matjaz.thaler@guest.arnes.si>, 2003
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-hello 2.4.0\n" "Project-Id-Version: vdr-hello 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2012-12-18 14:04+0100\n" "POT-Creation-Date: 2012-12-18 14:04+0100\n"
"PO-Revision-Date: 2007-08-11 12:34+0200\n" "PO-Revision-Date: 2007-08-11 12:34+0200\n"

View File

@ -1,12 +1,12 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Tomas Prybil <tomas@prybil.se>, 2002 # Tomas Prybil <tomas@prybil.se>, 2002
# Jan Ekholm <chakie@infa.abo.fi>, 2003 # Jan Ekholm <chakie@infa.abo.fi>, 2003
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-hello 2.4.0\n" "Project-Id-Version: vdr-hello 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2012-12-18 14:04+0100\n" "POT-Creation-Date: 2012-12-18 14:04+0100\n"
"PO-Revision-Date: 2007-08-11 12:34+0200\n" "PO-Revision-Date: 2007-08-11 12:34+0200\n"

View File

@ -1,11 +1,11 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Oktay Yolgeçen <oktay_73@yahoo.de>, 2007 # Oktay Yolgeçen <oktay_73@yahoo.de>, 2007
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-hello 2.4.0\n" "Project-Id-Version: vdr-hello 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2012-12-18 14:04+0100\n" "POT-Creation-Date: 2012-12-18 14:04+0100\n"
"PO-Revision-Date: 2008-05-12 22:34:4800\n" "PO-Revision-Date: 2008-05-12 22:34:4800\n"

View File

@ -1,5 +1,5 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Marc Rovira Vall <tm05462@salleURL.edu>, 2003 # Marc Rovira Vall <tm05462@salleURL.edu>, 2003
# Ramon Roca <ramon.roca@xcombo.com>, 2003 # Ramon Roca <ramon.roca@xcombo.com>, 2003
@ -8,7 +8,7 @@
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-hello 2.4.0\n" "Project-Id-Version: vdr-hello 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2012-12-18 14:04+0100\n" "POT-Creation-Date: 2012-12-18 14:04+0100\n"
"PO-Revision-Date: 2009-01-23 09:48+0800\n" "PO-Revision-Date: 2009-01-23 09:48+0800\n"

View File

@ -87,3 +87,7 @@ VDR Plugin 'osddemo' Revision History
2020-10-12: Version 2.4.1 2020-10-12: Version 2.4.1
- Added test cases for alignment of semi-circles (press key '4'). - Added test cases for alignment of semi-circles (press key '4').
2021-12-27: Version 2.6.0
- Official release.

View File

@ -112,3 +112,7 @@ VDR Plugin 'pictures' Revision History
2018-04-15: Version 2.4.0 2018-04-15: Version 2.4.0
- Official release. - Official release.
2021-12-27: Version 2.6.0
- Official release.

View File

@ -1,11 +1,11 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Klaus Schmidinger <vdr@tvdr.de>, 2008 # Klaus Schmidinger <vdr@tvdr.de>, 2008
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-pictures 2.4.0\n" "Project-Id-Version: vdr-pictures 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2012-12-18 12:57+0100\n" "POT-Creation-Date: 2012-12-18 12:57+0100\n"
"PO-Revision-Date: 2008-01-12 17:41+0100\n" "PO-Revision-Date: 2008-01-12 17:41+0100\n"

View File

@ -1,11 +1,11 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Arthur Konovalov <artlov@gmail.com>, 2015 # Arthur Konovalov <artlov@gmail.com>, 2015
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-pictures 2.4.0\n" "Project-Id-Version: vdr-pictures 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2012-12-18 12:57+0100\n" "POT-Creation-Date: 2012-12-18 12:57+0100\n"
"PO-Revision-Date: 2008-01-12 17:41+0100\n" "PO-Revision-Date: 2008-01-12 17:41+0100\n"

View File

@ -1,11 +1,11 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Rolf Ahrenberg <Rolf.Ahrenberg@sci.fi>, 2008 # Rolf Ahrenberg <Rolf.Ahrenberg@sci.fi>, 2008
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-pictures 2.4.0\n" "Project-Id-Version: vdr-pictures 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2012-12-18 12:57+0100\n" "POT-Creation-Date: 2012-12-18 12:57+0100\n"
"PO-Revision-Date: 2008-01-12 17:41+0100\n" "PO-Revision-Date: 2008-01-12 17:41+0100\n"

View File

@ -1,11 +1,11 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Patrice Staudt <patrice.staudt@laposte.net>, 2008 # Patrice Staudt <patrice.staudt@laposte.net>, 2008
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-pictures 2.4.0\n" "Project-Id-Version: vdr-pictures 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2012-12-18 12:57+0100\n" "POT-Creation-Date: 2012-12-18 12:57+0100\n"
"PO-Revision-Date: 2008-01-12 17:41+0100\n" "PO-Revision-Date: 2008-01-12 17:41+0100\n"

View File

@ -1,11 +1,11 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Diego Pierotto <vdr-italian@tiscali.it>, 2008 # Diego Pierotto <vdr-italian@tiscali.it>, 2008
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-pictures 2.4.0\n" "Project-Id-Version: vdr-pictures 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2012-12-18 12:57+0100\n" "POT-Creation-Date: 2012-12-18 12:57+0100\n"
"PO-Revision-Date: 2008-01-27 20:22+0100\n" "PO-Revision-Date: 2008-01-27 20:22+0100\n"

View File

@ -1,11 +1,11 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Valdemaras Pipiras <varas@ambernet.lt>, 2009 # Valdemaras Pipiras <varas@ambernet.lt>, 2009
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-pictures 2.4.0\n" "Project-Id-Version: vdr-pictures 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2012-12-18 12:57+0100\n" "POT-Creation-Date: 2012-12-18 12:57+0100\n"
"PO-Revision-Date: 2009-12-08 12:41+0100\n" "PO-Revision-Date: 2009-12-08 12:41+0100\n"

View File

@ -1,11 +1,11 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Tomasz Maciej Nowak <tmn505@gmail.com>, 2018 # Tomasz Maciej Nowak <tmn505@gmail.com>, 2018
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-pictures 2.4.0\n" "Project-Id-Version: vdr-pictures 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2018-02-19 00:48+0100\n" "POT-Creation-Date: 2018-02-19 00:48+0100\n"
"PO-Revision-Date: 2018-02-19 00:53+0100\n" "PO-Revision-Date: 2018-02-19 00:53+0100\n"

View File

@ -1,11 +1,11 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Alexander Gross <Bikalexander@gmail.com>, 2008 # Alexander Gross <Bikalexander@gmail.com>, 2008
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-pictures 2.4.0\n" "Project-Id-Version: vdr-pictures 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2012-12-18 12:57+0100\n" "POT-Creation-Date: 2012-12-18 12:57+0100\n"
"PO-Revision-Date: 2008-03-14 00:45+0100\n" "PO-Revision-Date: 2008-03-14 00:45+0100\n"

View File

@ -1,11 +1,11 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Klaus Schmidinger <vdr@tvdr.de>, 2008 # Klaus Schmidinger <vdr@tvdr.de>, 2008
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-pictures 2.4.0\n" "Project-Id-Version: vdr-pictures 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2012-12-18 12:57+0100\n" "POT-Creation-Date: 2012-12-18 12:57+0100\n"
"PO-Revision-Date: 2009-09-30 12:54+0100\n" "PO-Revision-Date: 2009-09-30 12:54+0100\n"

View File

@ -33,3 +33,7 @@ VDR Plugin 'servicedemo' Revision History
2018-04-15: Version 2.4.0 2018-04-15: Version 2.4.0
- Official release. - Official release.
2021-12-27: Version 2.6.0
- Official release.

View File

@ -157,3 +157,7 @@ VDR Plugin 'skincurses' Revision History
- The number of errors (if any) of a recording is now displayed in the recording's - The number of errors (if any) of a recording is now displayed in the recording's
Info menu. Info menu.
2021-12-27: Version 2.6.0
- Official release.

View File

@ -1,11 +1,11 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Klaus Schmidinger <vdr@tvdr.de>, 2007 # Klaus Schmidinger <vdr@tvdr.de>, 2007
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-skincurses 2.4.0\n" "Project-Id-Version: vdr-skincurses 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2021-07-01 17:28+0200\n" "POT-Creation-Date: 2021-07-01 17:28+0200\n"
"PO-Revision-Date: 2007-08-15 16:07+0200\n" "PO-Revision-Date: 2007-08-15 16:07+0200\n"

View File

@ -1,11 +1,11 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Arthur Konovalov <artlov@gmail.com>, 2015 # Arthur Konovalov <artlov@gmail.com>, 2015
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-skincurses 2.4.0\n" "Project-Id-Version: vdr-skincurses 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2021-07-01 17:28+0200\n" "POT-Creation-Date: 2021-07-01 17:28+0200\n"
"PO-Revision-Date: 2007-08-14 20:48+0300\n" "PO-Revision-Date: 2007-08-14 20:48+0300\n"

View File

@ -1,11 +1,11 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Rolf Ahrenberg <Rolf.Ahrenberg@sci.fi>, 2007 # Rolf Ahrenberg <Rolf.Ahrenberg@sci.fi>, 2007
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-skincurses 2.4.0\n" "Project-Id-Version: vdr-skincurses 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2021-07-01 17:28+0200\n" "POT-Creation-Date: 2021-07-01 17:28+0200\n"
"PO-Revision-Date: 2007-08-14 20:48+0300\n" "PO-Revision-Date: 2007-08-14 20:48+0300\n"

View File

@ -1,11 +1,11 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Diego Pierotto <vdr-italian@tiscali.it>, 2008 # Diego Pierotto <vdr-italian@tiscali.it>, 2008
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-skincurses 2.4.0\n" "Project-Id-Version: vdr-skincurses 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2021-07-01 17:28+0200\n" "POT-Creation-Date: 2021-07-01 17:28+0200\n"
"PO-Revision-Date: 2008-01-27 20:35+0100\n" "PO-Revision-Date: 2008-01-27 20:35+0100\n"

View File

@ -1,11 +1,11 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Valdemaras Pipiras <varas@ambernet.lt>, 2010 # Valdemaras Pipiras <varas@ambernet.lt>, 2010
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-skincurses 2.4.0\n" "Project-Id-Version: vdr-skincurses 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2021-07-01 17:28+0200\n" "POT-Creation-Date: 2021-07-01 17:28+0200\n"
"PO-Revision-Date: 2010-02-22 18:18+0200\n" "PO-Revision-Date: 2010-02-22 18:18+0200\n"

View File

@ -1,11 +1,11 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Tomasz Maciej Nowak <tmn505@gmail.com>, 2018 # Tomasz Maciej Nowak <tmn505@gmail.com>, 2018
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-skincurses 2.4.0\n" "Project-Id-Version: vdr-skincurses 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2021-07-01 17:28+0200\n" "POT-Creation-Date: 2021-07-01 17:28+0200\n"
"PO-Revision-Date: 2018-02-19 01:02+0100\n" "PO-Revision-Date: 2018-02-19 01:02+0100\n"

View File

@ -1,11 +1,11 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Alexander Gross <Bikalexander@gmail.com>, 2008 # Alexander Gross <Bikalexander@gmail.com>, 2008
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-skincurses 2.4.0\n" "Project-Id-Version: vdr-skincurses 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2021-07-01 17:28+0200\n" "POT-Creation-Date: 2021-07-01 17:28+0200\n"
"PO-Revision-Date: 2008-03-14 00:21+0100\n" "PO-Revision-Date: 2008-03-14 00:21+0100\n"

View File

@ -1,11 +1,11 @@
# VDR plugin language source file. # VDR plugin language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Klaus Schmidinger <vdr@tvdr.de>, 2007 # Klaus Schmidinger <vdr@tvdr.de>, 2007
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vdr-skincurses 2.4.0\n" "Project-Id-Version: vdr-skincurses 2.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n" "Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2021-07-01 17:28+0200\n" "POT-Creation-Date: 2021-07-01 17:28+0200\n"
"PO-Revision-Date: 2009-09-30 12:52+0100\n" "PO-Revision-Date: 2009-09-30 12:52+0100\n"

View File

@ -72,3 +72,7 @@ VDR Plugin 'status' Revision History
2018-04-15: Version 2.4.0 2018-04-15: Version 2.4.0
- Official release. - Official release.
2021-12-27: Version 2.6.0
- Official release.

View File

@ -37,3 +37,7 @@ VDR Plugin 'svdrpdemo' Revision History
2018-04-15: Version 2.4.0 2018-04-15: Version 2.4.0
- Official release. - Official release.
2021-12-27: Version 2.6.0
- Official release.

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: config.h 5.7 2021/12/20 10:06:37 kls Exp $ * $Id: config.h 5.8 2021/12/27 13:31:29 kls Exp $
*/ */
#ifndef __CONFIG_H #ifndef __CONFIG_H
@ -22,13 +22,13 @@
// VDR's own version number: // VDR's own version number:
#define VDRVERSION "2.5.7" #define VDRVERSION "2.6.0"
#define VDRVERSNUM 20507 // Version * 10000 + Major * 100 + Minor #define VDRVERSNUM 20600 // Version * 10000 + Major * 100 + Minor
// The plugin API's version number: // The plugin API's version number:
#define APIVERSION "2.5.6" #define APIVERSION "2.6.0"
#define APIVERSNUM 20506 // Version * 10000 + Major * 100 + Minor #define APIVERSNUM 20600 // Version * 10000 + Major * 100 + Minor
// When loading plugins, VDR searches them by their APIVERSION, which // When loading plugins, VDR searches them by their APIVERSION, which
// may be smaller than VDRVERSION in case there have been no changes to // may be smaller than VDRVERSION in case there have been no changes to

View File

@ -1,11 +1,11 @@
# VDR language source file. # VDR language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Osama Alrawab <alrawab@hotmail.com>, 2010, 2013 # Osama Alrawab <alrawab@hotmail.com>, 2010, 2013
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.4.0\n" "Project-Id-Version: VDR 2.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2021-07-01 17:10+0200\n" "POT-Creation-Date: 2021-07-01 17:10+0200\n"
"PO-Revision-Date: 2008-10-16 11:16-0400\n" "PO-Revision-Date: 2008-10-16 11:16-0400\n"

View File

@ -1,5 +1,5 @@
# VDR language source file. # VDR language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Marc Rovira Vall <tm05462@salleURL.edu>, 2003 # Marc Rovira Vall <tm05462@salleURL.edu>, 2003
# Ramon Roca <ramon.roca@xcombo.com>, 2003 # Ramon Roca <ramon.roca@xcombo.com>, 2003
@ -8,7 +8,7 @@
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.4.0\n" "Project-Id-Version: VDR 2.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2021-07-01 17:10+0200\n" "POT-Creation-Date: 2021-07-01 17:10+0200\n"
"PO-Revision-Date: 2008-03-02 19:02+0100\n" "PO-Revision-Date: 2008-03-02 19:02+0100\n"

View File

@ -1,5 +1,5 @@
# VDR language source file. # VDR language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Vladimír Bárta <vladimir.barta@k2atmitec.cz>, 2006, 2008 # Vladimír Bárta <vladimir.barta@k2atmitec.cz>, 2006, 2008
# Jiří Dobrý <jdobry@centrum.cz>, 2008 # Jiří Dobrý <jdobry@centrum.cz>, 2008
@ -8,7 +8,7 @@
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.4.0\n" "Project-Id-Version: VDR 2.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2021-07-01 17:10+0200\n" "POT-Creation-Date: 2021-07-01 17:10+0200\n"
"PO-Revision-Date: 2010-05-06 11:00+0200\n" "PO-Revision-Date: 2010-05-06 11:00+0200\n"

View File

@ -1,11 +1,11 @@
# VDR language source file. # VDR language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Mogens Elneff <mogens@elneff.dk>, 2004, 2008 # Mogens Elneff <mogens@elneff.dk>, 2004, 2008
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.4.0\n" "Project-Id-Version: VDR 2.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2021-07-01 17:10+0200\n" "POT-Creation-Date: 2021-07-01 17:10+0200\n"
"PO-Revision-Date: 2007-08-12 14:17+0200\n" "PO-Revision-Date: 2007-08-12 14:17+0200\n"

View File

@ -1,12 +1,12 @@
# VDR language source file. # VDR language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Klaus Schmidinger <vdr@tvdr.de>, 2000-2015 # Klaus Schmidinger <vdr@tvdr.de>, 2000-2015
# Albert Danis <a.danis@gmx.de>, 2015 # Albert Danis <a.danis@gmx.de>, 2015
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.4.0\n" "Project-Id-Version: VDR 2.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2021-07-01 17:10+0200\n" "POT-Creation-Date: 2021-07-01 17:10+0200\n"
"PO-Revision-Date: 2015-02-10 13:45+0100\n" "PO-Revision-Date: 2015-02-10 13:45+0100\n"

View File

@ -1,11 +1,11 @@
# VDR language source file. # VDR language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Dimitrios Dimitrakos <mail@dimitrios.de>, 2002, 2006 # Dimitrios Dimitrakos <mail@dimitrios.de>, 2002, 2006
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.4.0\n" "Project-Id-Version: VDR 2.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2021-07-01 17:10+0200\n" "POT-Creation-Date: 2021-07-01 17:10+0200\n"
"PO-Revision-Date: 2007-08-12 14:17+0200\n" "PO-Revision-Date: 2007-08-12 14:17+0200\n"

View File

@ -1,12 +1,12 @@
# VDR language source file. # VDR language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Ruben Nunez Francisco <ruben.nunez@tang-it.com>, 2002, 2006 # Ruben Nunez Francisco <ruben.nunez@tang-it.com>, 2002, 2006
# Luca Olivetti <luca@ventoso.org>, 2008, 2013 # Luca Olivetti <luca@ventoso.org>, 2008, 2013
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.4.0\n" "Project-Id-Version: VDR 2.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2021-07-01 17:10+0200\n" "POT-Creation-Date: 2021-07-01 17:10+0200\n"
"PO-Revision-Date: 2015-02-19 23:00+0100\n" "PO-Revision-Date: 2015-02-19 23:00+0100\n"

View File

@ -1,11 +1,11 @@
# VDR language source file. # VDR language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Arthur Konovalov <artlov@gmail.com>, 2004-2013, 2015 # Arthur Konovalov <artlov@gmail.com>, 2004-2013, 2015
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.4.0\n" "Project-Id-Version: VDR 2.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2021-07-01 17:10+0200\n" "POT-Creation-Date: 2021-07-01 17:10+0200\n"
"PO-Revision-Date: 2007-08-12 14:17+0200\n" "PO-Revision-Date: 2007-08-12 14:17+0200\n"

View File

@ -1,5 +1,5 @@
# VDR language source file. # VDR language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Hannu Savolainen <hannu@opensound.com>, 2002 # Hannu Savolainen <hannu@opensound.com>, 2002
# Jaakko Hyvätti <jaakko@hyvatti.iki.fi>, 2002, 2003 # Jaakko Hyvätti <jaakko@hyvatti.iki.fi>, 2002, 2003
@ -9,7 +9,7 @@
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.4.0\n" "Project-Id-Version: VDR 2.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2021-07-01 17:10+0200\n" "POT-Creation-Date: 2021-07-01 17:10+0200\n"
"PO-Revision-Date: 2007-08-15 15:52+0200\n" "PO-Revision-Date: 2007-08-15 15:52+0200\n"

View File

@ -1,5 +1,5 @@
# VDR language source file. # VDR language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Jean-Claude Repetto <jc@repetto.org>, 2001, 2002, 2008 # Jean-Claude Repetto <jc@repetto.org>, 2001, 2002, 2008
# Olivier Jacques <jacquesolivier@hotmail.com>, 2003, 2005 # Olivier Jacques <jacquesolivier@hotmail.com>, 2003, 2005
@ -16,7 +16,7 @@
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.4.0\n" "Project-Id-Version: VDR 2.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2021-07-01 17:10+0200\n" "POT-Creation-Date: 2021-07-01 17:10+0200\n"
"PO-Revision-Date: 2018-04-14 10:16+0100\n" "PO-Revision-Date: 2018-04-14 10:16+0100\n"

View File

@ -1,5 +1,5 @@
# VDR language source file. # VDR language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Drazen Dupor <drazen.dupor@dupor.com>, 2004, 2005 # Drazen Dupor <drazen.dupor@dupor.com>, 2004, 2005
# Dino Ravnic <dino.ravnic@fer.hr>, 2004 # Dino Ravnic <dino.ravnic@fer.hr>, 2004
@ -7,7 +7,7 @@
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.4.0\n" "Project-Id-Version: VDR 2.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2021-07-01 17:10+0200\n" "POT-Creation-Date: 2021-07-01 17:10+0200\n"
"PO-Revision-Date: 2008-03-17 19:00+0100\n" "PO-Revision-Date: 2008-03-17 19:00+0100\n"

View File

@ -1,5 +1,5 @@
# VDR language source file. # VDR language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Istvan Koenigsberger <istvnko@hotmail.com>, 2002, 2003, 2006 # Istvan Koenigsberger <istvnko@hotmail.com>, 2002, 2003, 2006
# Guido Josten <guido.josten@t-online.de>, 2002, 2003, 2006 # Guido Josten <guido.josten@t-online.de>, 2002, 2003, 2006
@ -9,7 +9,7 @@
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.4.0\n" "Project-Id-Version: VDR 2.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2021-07-01 17:10+0200\n" "POT-Creation-Date: 2021-07-01 17:10+0200\n"
"PO-Revision-Date: 2018-04-09 21:42+0300\n" "PO-Revision-Date: 2018-04-09 21:42+0300\n"

View File

@ -1,5 +1,5 @@
# VDR language source file. # VDR language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Alberto Carraro <bertocar@tin.it>, 2001 # Alberto Carraro <bertocar@tin.it>, 2001
# Antonio Ospite <ospite@studenti.unina.it>, 2003, 2006 # Antonio Ospite <ospite@studenti.unina.it>, 2003, 2006
@ -9,7 +9,7 @@
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.4.0\n" "Project-Id-Version: VDR 2.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2021-07-01 17:10+0200\n" "POT-Creation-Date: 2021-07-01 17:10+0200\n"
"PO-Revision-Date: 2018-04-06 19:13+0100\n" "PO-Revision-Date: 2018-04-06 19:13+0100\n"

View File

@ -1,11 +1,11 @@
# VDR language source file. # VDR language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Valdemaras Pipiras <varas@ambernet.lt>, 2009, 2010, 2013, 2015 # Valdemaras Pipiras <varas@ambernet.lt>, 2009, 2010, 2013, 2015
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.4.0\n" "Project-Id-Version: VDR 2.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2021-07-01 17:10+0200\n" "POT-Creation-Date: 2021-07-01 17:10+0200\n"
"PO-Revision-Date: 2015-02-11 14:02+0200\n" "PO-Revision-Date: 2015-02-11 14:02+0200\n"

View File

@ -1,11 +1,11 @@
# VDR language source file. # VDR language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Dimitar Petrovski <dimeptr@gmail.com>, 2009, 2012, 2013, 2015, 2018. # Dimitar Petrovski <dimeptr@gmail.com>, 2009, 2012, 2013, 2015, 2018.
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.4.0\n" "Project-Id-Version: VDR 2.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2021-07-01 17:10+0200\n" "POT-Creation-Date: 2021-07-01 17:10+0200\n"
"PO-Revision-Date: 2018-03-31 21:47+0100\n" "PO-Revision-Date: 2018-03-31 21:47+0100\n"

View File

@ -1,5 +1,5 @@
# VDR language source file. # VDR language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Arnold Niessen <niessen@iae.nl> <arnold.niessen@philips.com>, 2001 # Arnold Niessen <niessen@iae.nl> <arnold.niessen@philips.com>, 2001
# Hans Dingemans <hans.dingemans@tacticalops.nl>, 2003, 2005 # Hans Dingemans <hans.dingemans@tacticalops.nl>, 2003, 2005
@ -11,7 +11,7 @@
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.4.0\n" "Project-Id-Version: VDR 2.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2021-07-01 17:10+0200\n" "POT-Creation-Date: 2021-07-01 17:10+0200\n"
"PO-Revision-Date: 2015-02-10 19:43+0100\n" "PO-Revision-Date: 2015-02-10 19:43+0100\n"

View File

@ -1,12 +1,12 @@
# VDR language source file. # VDR language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Jørgen Tvedt <pjtvedt@online.no>, 2001 # Jørgen Tvedt <pjtvedt@online.no>, 2001
# Truls Slevigen <truls@slevigen.no>, 2002 # Truls Slevigen <truls@slevigen.no>, 2002
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.4.0\n" "Project-Id-Version: VDR 2.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2021-07-01 17:10+0200\n" "POT-Creation-Date: 2021-07-01 17:10+0200\n"
"PO-Revision-Date: 2007-08-12 14:17+0200\n" "PO-Revision-Date: 2007-08-12 14:17+0200\n"

View File

@ -1,5 +1,5 @@
# VDR language source file. # VDR language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Michael Rakowski <mrak@gmx.de>, 2002, 2003, 2008 # Michael Rakowski <mrak@gmx.de>, 2002, 2003, 2008
# Jaroslaw Swierczynski <swiergot@gmail.com>, 2006 # Jaroslaw Swierczynski <swiergot@gmail.com>, 2006
@ -8,7 +8,7 @@
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.4.0\n" "Project-Id-Version: VDR 2.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2021-07-01 17:10+0200\n" "POT-Creation-Date: 2021-07-01 17:10+0200\n"
"PO-Revision-Date: 2018-02-19 00:42+0100\n" "PO-Revision-Date: 2018-02-19 00:42+0100\n"

View File

@ -1,12 +1,12 @@
# VDR language source file. # VDR language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Paulo Lopes <pmml@netvita.pt>, 2001 # Paulo Lopes <pmml@netvita.pt>, 2001
# Cris Silva <hudokkow@gmail.com>, 2010 # Cris Silva <hudokkow@gmail.com>, 2010
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.4.0\n" "Project-Id-Version: VDR 2.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2021-07-01 17:10+0200\n" "POT-Creation-Date: 2021-07-01 17:10+0200\n"
"PO-Revision-Date: 2010-03-28 22:49+0100\n" "PO-Revision-Date: 2010-03-28 22:49+0100\n"

View File

@ -1,12 +1,12 @@
# VDR language source file. # VDR language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Paul Lacatus <paul@campina.iiruc.ro>, 2002 # Paul Lacatus <paul@campina.iiruc.ro>, 2002
# Lucian Muresan <lucianm@users.sourceforge.net>, 2004-2006, 2008, 2010-2015 # Lucian Muresan <lucianm@users.sourceforge.net>, 2004-2006, 2008, 2010-2015
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.4.0\n" "Project-Id-Version: VDR 2.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2021-07-01 17:10+0200\n" "POT-Creation-Date: 2021-07-01 17:10+0200\n"
"PO-Revision-Date: 2015-02-11 22:26+0100\n" "PO-Revision-Date: 2015-02-11 22:26+0100\n"

View File

@ -1,12 +1,12 @@
# VDR language source file. # VDR language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Vyacheslav Dikonov <sdiconov@mail.ru>, 2004, 2005 # Vyacheslav Dikonov <sdiconov@mail.ru>, 2004, 2005
# Oleg Roitburd <oroitburd@gmail.com>, 2005-2008, 2013 # Oleg Roitburd <oroitburd@gmail.com>, 2005-2008, 2013
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.4.0\n" "Project-Id-Version: VDR 2.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2021-07-01 17:10+0200\n" "POT-Creation-Date: 2021-07-01 17:10+0200\n"
"PO-Revision-Date: 2016-12-27 17:13+0100\n" "PO-Revision-Date: 2016-12-27 17:13+0100\n"

View File

@ -1,11 +1,11 @@
# VDR language source file. # VDR language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Milan Hrala <hrala.milan@gmail.com>, 2011, 2013, 2015 # Milan Hrala <hrala.milan@gmail.com>, 2011, 2013, 2015
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.4.0\n" "Project-Id-Version: VDR 2.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2021-07-01 17:10+0200\n" "POT-Creation-Date: 2021-07-01 17:10+0200\n"
"PO-Revision-Date: 2015-02-17 18:59+0100\n" "PO-Revision-Date: 2015-02-17 18:59+0100\n"

View File

@ -1,12 +1,12 @@
# VDR language source file. # VDR language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Miha Setina <mihasetina@softhome.net>, 2000 # Miha Setina <mihasetina@softhome.net>, 2000
# Matjaz Thaler <matjaz.thaler@guest.arnes.si>, 2003, 2005, 2006, 2008, 2013 # Matjaz Thaler <matjaz.thaler@guest.arnes.si>, 2003, 2005, 2006, 2008, 2013
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.4.0\n" "Project-Id-Version: VDR 2.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2021-07-01 17:10+0200\n" "POT-Creation-Date: 2021-07-01 17:10+0200\n"
"PO-Revision-Date: 2013-03-04 12:46+0100\n" "PO-Revision-Date: 2013-03-04 12:46+0100\n"

View File

@ -1,12 +1,12 @@
# VDR language source file. # VDR language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Milan Cvijanoviæ <elcom_cvijo@hotmail.com>, 2010 # Milan Cvijanoviæ <elcom_cvijo@hotmail.com>, 2010
# Zoran Turalija <zoran.turalija@gmail.com>, 2013 # Zoran Turalija <zoran.turalija@gmail.com>, 2013
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.4.0\n" "Project-Id-Version: VDR 2.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2021-07-01 17:10+0200\n" "POT-Creation-Date: 2021-07-01 17:10+0200\n"
"PO-Revision-Date: 2013-03-16 15:05+0100\n" "PO-Revision-Date: 2013-03-16 15:05+0100\n"

View File

@ -1,5 +1,5 @@
# VDR language source file. # VDR language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Tomas Prybil <tomas@prybil.se>, 2002, 2003, 2005, 2006 # Tomas Prybil <tomas@prybil.se>, 2002, 2003, 2005, 2006
# Jan Ekholm <chakie@infa.abo.fi>, 2003 # Jan Ekholm <chakie@infa.abo.fi>, 2003
@ -10,7 +10,7 @@
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.4.0\n" "Project-Id-Version: VDR 2.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2021-07-01 17:10+0200\n" "POT-Creation-Date: 2021-07-01 17:10+0200\n"
"PO-Revision-Date: 2015-02-12 21:58+0100\n" "PO-Revision-Date: 2015-02-12 21:58+0100\n"

View File

@ -1,11 +1,11 @@
# VDR language source file. # VDR language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Oktay Yolgeçen <oktay_73@yahoo.de>, 2007, 2008 # Oktay Yolgeçen <oktay_73@yahoo.de>, 2007, 2008
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.4.0\n" "Project-Id-Version: VDR 2.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2021-07-01 17:10+0200\n" "POT-Creation-Date: 2021-07-01 17:10+0200\n"
"PO-Revision-Date: 2008-02-28 00:33+0100\n" "PO-Revision-Date: 2008-02-28 00:33+0100\n"

View File

@ -1,11 +1,11 @@
# VDR language source file. # VDR language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Yarema Aka Knedlyk <yupadmin@gmail.com>, 2007-2010, 2013, 2015, 2018 # Yarema Aka Knedlyk <yupadmin@gmail.com>, 2007-2010, 2013, 2015, 2018
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.4.0\n" "Project-Id-Version: VDR 2.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2021-07-01 17:10+0200\n" "POT-Creation-Date: 2021-07-01 17:10+0200\n"
"PO-Revision-Date: 2018-03-18 20:00+0100\n" "PO-Revision-Date: 2018-03-18 20:00+0100\n"

View File

@ -1,11 +1,11 @@
# VDR language source file. # VDR language source file.
# Copyright (C) 2018 Klaus Schmidinger <vdr@tvdr.de> # Copyright (C) 2021 Klaus Schmidinger <vdr@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Nan Feng <nfvdr@live.com>, 2008, 2013 # Nan Feng <nfvdr@live.com>, 2008, 2013
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.4.0\n" "Project-Id-Version: VDR 2.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2021-07-01 17:10+0200\n" "POT-Creation-Date: 2021-07-01 17:10+0200\n"
"PO-Revision-Date: 2013-03-04 14:52+0800\n" "PO-Revision-Date: 2013-03-04 14:52+0800\n"

View File

@ -1,4 +1,4 @@
.TH "svdrpsend" "1" "15 Apr 2018" "2.4" "Video Disk Recorder" .TH "svdrpsend" "1" "27 Dec 2021" "2.6" "Video Disk Recorder"
.SH NAME .SH NAME
.LP .LP
svdrpsend \- sends commands to VDR svdrpsend \- sends commands to VDR

8
vdr.1
View File

@ -2,15 +2,15 @@
.\" ** The above line should force tbl to be a preprocessor ** .\" ** The above line should force tbl to be a preprocessor **
.\" Man page for vdr .\" Man page for vdr
.\" .\"
.\" Copyright (C) 2018 Klaus Schmidinger .\" Copyright (C) 2021 Klaus Schmidinger
.\" .\"
.\" You may distribute under the terms of the GNU General Public .\" You may distribute under the terms of the GNU General Public
.\" License as specified in the file COPYING that comes with the .\" License as specified in the file COPYING that comes with the
.\" vdr distribution. .\" vdr distribution.
.\" .\"
.\" $Id: vdr.1 5.1 2020/12/26 15:49:01 kls Exp $ .\" $Id: vdr.1 5.2 2021/12/27 13:31:04 kls Exp $
.\" .\"
.TH vdr 1 "15 Apr 2018" "2.4" "Video Disk Recorder" .TH vdr 1 "27 Dec 2021" "2.6" "Video Disk Recorder"
.SH NAME .SH NAME
vdr \- the Video Disk Recorder vdr \- the Video Disk Recorder
.SH SYNOPSIS .SH SYNOPSIS
@ -321,7 +321,7 @@ See the file \fICONTRIBUTORS\fR in the \fBvdr\fR source distribution.
.SH REPORTING BUGS .SH REPORTING BUGS
Report bugs to <vdr\-bugs@tvdr.de>. Report bugs to <vdr\-bugs@tvdr.de>.
.SH COPYRIGHT .SH COPYRIGHT
Copyright \(co 2018 Klaus Schmidinger. Copyright \(co 2021 Klaus Schmidinger.
This is free software; see the source for copying conditions. There is NO This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

8
vdr.5
View File

@ -2,15 +2,15 @@
.\" ** The above line should force tbl to be a preprocessor ** .\" ** The above line should force tbl to be a preprocessor **
.\" Man page for vdr file formats .\" Man page for vdr file formats
.\" .\"
.\" Copyright (C) 2018 Klaus Schmidinger .\" Copyright (C) 2021 Klaus Schmidinger
.\" .\"
.\" You may distribute under the terms of the GNU General Public .\" You may distribute under the terms of the GNU General Public
.\" License as specified in the file COPYING that comes with the .\" License as specified in the file COPYING that comes with the
.\" vdr distribution. .\" vdr distribution.
.\" .\"
.\" $Id: vdr.5 5.4 2021/10/16 09:27:11 kls Exp $ .\" $Id: vdr.5 5.5 2021/12/27 13:31:04 kls Exp $
.\" .\"
.TH vdr 5 "15 Apr 2018" "2.4" "Video Disk Recorder Files" .TH vdr 5 "27 Dec 2021" "2.6" "Video Disk Recorder Files"
.SH NAME .SH NAME
vdr_files \- the Video Disk Recorder Files vdr_files \- the Video Disk Recorder Files
.SH DESCRIPTION .SH DESCRIPTION
@ -1030,7 +1030,7 @@ Written by Klaus Schmidinger.
.SH REPORTING BUGS .SH REPORTING BUGS
Report bugs to <vdr\-bugs@tvdr.de>. Report bugs to <vdr\-bugs@tvdr.de>.
.SH COPYRIGHT .SH COPYRIGHT
Copyright \(co 2018 Klaus Schmidinger. Copyright \(co 2021 Klaus Schmidinger.
This is free software; see the source for copying conditions. There is NO This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

4
vdr.c
View File

@ -1,7 +1,7 @@
/* /*
* vdr.c: Video Disk Recorder main program * vdr.c: Video Disk Recorder main program
* *
* Copyright (C) 2000-2018 Klaus Schmidinger * Copyright (C) 2000-2021 Klaus Schmidinger
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License * modify it under the terms of the GNU General Public License
@ -22,7 +22,7 @@
* *
* The project's page is at http://www.tvdr.de * The project's page is at http://www.tvdr.de
* *
* $Id: vdr.c 5.6 2021/05/21 12:43:18 kls Exp $ * $Id: vdr.c 5.7 2021/12/27 13:31:04 kls Exp $
*/ */
#include <getopt.h> #include <getopt.h>