summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMidas <vdrportal_midas@gmx.de>2013-01-26 11:59:14 +0100
committerMidas <vdrportal_midas@gmx.de>2013-01-26 11:59:14 +0100
commitb7775013af60b079290305441142659f26db9883 (patch)
tree67f925ff14c5d0e7340b7633d5df72608b323002
parent9b1417e1fc23446f590505e0bbf7e3a0bf314b12 (diff)
downloadvdr-plugin-sleeptimer-b7775013af60b079290305441142659f26db9883.tar.gz
vdr-plugin-sleeptimer-b7775013af60b079290305441142659f26db9883.tar.bz2
Makefile adapted to vdr-1.7.36HEADmaster
-rw-r--r--Makefile91
-rw-r--r--i18n.h20
-rw-r--r--po/ca_ES.mobin0 -> 389 bytes
-rw-r--r--po/ca_ES.po4
-rw-r--r--po/cs_CZ.mobin0 -> 405 bytes
-rw-r--r--po/cs_CZ.po4
-rw-r--r--po/da_DK.mobin0 -> 394 bytes
-rw-r--r--po/da_DK.po4
-rw-r--r--po/de_DE.mobin0 -> 1905 bytes
-rw-r--r--po/de_DE.po4
-rw-r--r--po/el_GR.mobin0 -> 401 bytes
-rw-r--r--po/el_GR.po4
-rw-r--r--po/es_ES.mobin0 -> 409 bytes
-rw-r--r--po/es_ES.po4
-rw-r--r--po/et_EE.mobin0 -> 394 bytes
-rw-r--r--po/et_EE.po4
-rw-r--r--po/fi_FI.mobin0 -> 966 bytes
-rw-r--r--po/fi_FI.po4
-rw-r--r--po/fr_FR.mobin0 -> 401 bytes
-rw-r--r--po/fr_FR.po4
-rw-r--r--po/hr_HR.mobin0 -> 398 bytes
-rw-r--r--po/hr_HR.po4
-rw-r--r--po/hu_HU.mobin0 -> 444 bytes
-rw-r--r--po/hu_HU.po4
-rw-r--r--po/it_IT.mobin0 -> 391 bytes
-rw-r--r--po/it_IT.po4
-rw-r--r--po/nl_NL.mobin0 -> 405 bytes
-rw-r--r--po/nl_NL.po4
-rw-r--r--po/nn_NO.mobin0 -> 395 bytes
-rw-r--r--po/nn_NO.po4
-rw-r--r--po/pl_PL.mobin0 -> 391 bytes
-rw-r--r--po/pl_PL.po4
-rw-r--r--po/pt_PT.mobin0 -> 390 bytes
-rw-r--r--po/pt_PT.po4
-rw-r--r--po/ro_RO.mobin0 -> 407 bytes
-rw-r--r--po/ro_RO.po4
-rw-r--r--po/ru_RU.mobin0 -> 398 bytes
-rw-r--r--po/ru_RU.po4
-rw-r--r--po/sl_SI.mobin0 -> 405 bytes
-rw-r--r--po/sl_SI.po4
-rw-r--r--po/sleeptimer.pot102
-rw-r--r--po/sv_SE.mobin0 -> 391 bytes
-rw-r--r--po/sv_SE.po4
-rw-r--r--po/tr_TR.mobin0 -> 395 bytes
-rw-r--r--po/tr_TR.po4
-rw-r--r--sleeptimer.c2
46 files changed, 203 insertions, 96 deletions
diff --git a/Makefile b/Makefile
index 87a54a1..b102391 100644
--- a/Makefile
+++ b/Makefile
@@ -1,116 +1,115 @@
#
# Makefile for a Video Disk Recorder plugin
#
-# $Id$
+# $Id: Makefile 1.22 2013/01/12 13:45:01 kls Exp $
# The official name of this plugin.
# This name will be used in the '-P...' option of VDR to load the plugin.
# By default the main source file also carries this name.
-#
+
PLUGIN = sleeptimer
### The version number of this plugin (taken from the main source file):
VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).c | awk '{ print $$6 }' | sed -e 's/[";]//g')
-### The version number of VDR's plugin API (taken from VDR's "config.h"):
+### The directory environment:
-APIVERSION = $(shell sed -ne '/define APIVERSION/s/^.*"\(.*\)".*$$/\1/p' $(VDRDIR)/config.h)
+# Use package data if installed...otherwise assume we're under the VDR source directory:
+PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell pkg-config --variable=$(1) vdr || pkg-config --variable=$(1) ../../../vdr.pc))
+LIBDIR = $(call PKGCFG,libdir)
+LOCDIR = $(call PKGCFG,locdir)
+PLGCFG = $(call PKGCFG,plgcfg)
+#
+TMPDIR ?= /tmp
-### The C++ compiler and options:
+### The compiler options:
-CXX ?= g++
-CXXFLAGS ?= -fPIC -O2 -Wall
+export CFLAGS = $(call PKGCFG,cflags)
+export CXXFLAGS = $(call PKGCFG,cxxflags)
-### The directory environment:
+### The version number of VDR's plugin API:
-DVBDIR = ../../../../DVB
-VDRDIR = ../../..
-LIBDIR = ../../lib
-TMPDIR = /tmp
+APIVERSION = $(call PKGCFG,apiversion)
### Allow user defined options to overwrite defaults:
--include $(VDRDIR)/Make.config
-
-### The version number of VDR (taken from VDR's "config.h"):
-
-VDRVERSION = $(shell grep 'define VDRVERSION ' $(VDRDIR)/config.h | awk '{ print $$3 }' | sed -e 's/"//g')
+-include $(PLGCFG)
### The name of the distribution archive:
ARCHIVE = $(PLUGIN)-$(VERSION)
PACKAGE = vdr-$(ARCHIVE)
+### The name of the shared object file:
+
+SOFILE = libvdr-$(PLUGIN).so
+
### Includes and Defines (add further entries here):
-INCLUDES += -I$(VDRDIR)/include -I$(DVBDIR)/include
+INCLUDES +=
DEFINES += -D_GNU_SOURCE -DPLUGIN_NAME_I18N='"$(PLUGIN)"'
### The object files (add further files here):
-OBJS = $(PLUGIN).o
+OBJS = $(PLUGIN).o i18n.o
-VDRVERSNUM = $(shell grep 'define VDRVERSNUM ' $(VDRDIR)/config.h | awk '{ print $$3 }' | sed -e 's/"//g')
+### The main target:
-VDRI18NCOMPAT = $(shell [ ${VDRVERSNUM} -lt 10727 ] && echo 1)
-
-ifeq ($(VDRI18NCOMPAT),1)
-OBJS += i18n.o
-CXXFLAGS += -Woverloaded-virtual
-else
-CXXFLAGS += -Werror=overloaded-virtual
-endif
+all: $(SOFILE) i18n
### Implicit rules:
%.o: %.c
- $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $<
+ $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) -o $@ $<
-# Dependencies:
+### Dependencies:
-MAKEDEP = g++ -MM -MG
+MAKEDEP = $(CXX) -MM -MG
DEPFILE = .dependencies
$(DEPFILE): Makefile
- @$(MAKEDEP) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@
+ @$(MAKEDEP) $(CXXFLAGS) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@
-include $(DEPFILE)
### Internationalization (I18N):
PODIR = po
-LOCALEDIR = $(VDRDIR)/locale
I18Npo = $(wildcard $(PODIR)/*.po)
-I18Nmsgs = $(addprefix $(LOCALEDIR)/, $(addsuffix /LC_MESSAGES/vdr-$(PLUGIN).mo, $(notdir $(foreach file, $(I18Npo), $(basename $(file))))))
+I18Nmo = $(addsuffix .mo, $(foreach file, $(I18Npo), $(basename $(file))))
+I18Nmsgs = $(addprefix $(DESTDIR)$(LOCDIR)/, $(addsuffix /LC_MESSAGES/vdr-$(PLUGIN).mo, $(notdir $(foreach file, $(I18Npo), $(basename $(file))))))
I18Npot = $(PODIR)/$(PLUGIN).pot
%.mo: %.po
msgfmt -c -o $@ $<
$(I18Npot): $(wildcard *.c)
- xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP --msgid-bugs-address='<vdrportal_midas <at> gmx <dot> de>' -o $@ $^
+ xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP --package-name=vdr-$(PLUGIN) --package-version=$(VERSION) --msgid-bugs-address='<see README>' -o $@ `ls $^`
%.po: $(I18Npot)
- msgmerge -U --no-wrap --no-location --backup=none -q $@ $<
+ msgmerge -U --no-wrap --no-location --backup=none -q -N $@ $<
@touch $@
-$(I18Nmsgs): $(LOCALEDIR)/%/LC_MESSAGES/vdr-$(PLUGIN).mo: $(PODIR)/%.mo
- @mkdir -p $(dir $@)
- cp $< $@
+$(I18Nmsgs): $(DESTDIR)$(LOCDIR)/%/LC_MESSAGES/vdr-$(PLUGIN).mo: $(PODIR)/%.mo
+ install -D -m644 $< $@
.PHONY: i18n
-i18n: $(I18Nmsgs)
+i18n: $(I18Nmo) $(I18Npot)
+
+install-i18n: $(I18Nmsgs)
### Targets:
-all: libvdr-$(PLUGIN).so i18n
+$(SOFILE): $(OBJS)
+ $(CXX) $(CXXFLAGS) $(LDFLAGS) -shared $(OBJS) -o $@
+
+install-lib: $(SOFILE)
+ install -D $^ $(DESTDIR)$(LIBDIR)/$^.$(APIVERSION)
-libvdr-$(PLUGIN).so: $(OBJS)
- $(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@
- @cp $@ $(LIBDIR)/$@.$(APIVERSION)
+install: install-lib install-i18n
-dist: clean
+dist: $(I18Npo) clean
@-rm -rf $(TMPDIR)/$(ARCHIVE)
@mkdir $(TMPDIR)/$(ARCHIVE)
@cp -a * $(TMPDIR)/$(ARCHIVE)
@@ -119,5 +118,5 @@ dist: clean
@echo Distribution package created as $(PACKAGE).tgz
clean:
- @-rm -f $(PODIR)/*.mo $(PODIR)/*.pot
@-rm -f $(OBJS) $(DEPFILE) *.so *.tgz core* *~
+ \ No newline at end of file
diff --git a/i18n.h b/i18n.h
index a878dd9..d80fe75 100644
--- a/i18n.h
+++ b/i18n.h
@@ -1,17 +1,23 @@
-/*
- * i18n.h: Internationalization
+/**
+ * based on i18n.h,v 1.1.1.1 2006/02/26 14:11:02 lordjaxom
*
- * See the README file for copyright information and how to reach the author.
+ * version by Midas
*
- * $Id$
*/
-#ifndef _I18N__H
-#define _I18N__H
+#ifndef __SLEEPTIMER_I18N_H
+#define __SLEEPTIMER_I18N_H
#include <vdr/i18n.h>
#include <vdr/config.h>
+#if VDRVERSNUM < 10507
+
+#define trNOOP(s) (s)
+#define trVDR(s) tr(s)
+
extern const tI18nPhrase Phrases[];
-#endif //_I18N__H
+#endif
+
+#endif \ No newline at end of file
diff --git a/po/ca_ES.mo b/po/ca_ES.mo
new file mode 100644
index 0000000..5d69b70
--- /dev/null
+++ b/po/ca_ES.mo
Binary files differ
diff --git a/po/ca_ES.po b/po/ca_ES.po
index 0923127..f247f09 100644
--- a/po/ca_ES.po
+++ b/po/ca_ES.po
@@ -8,8 +8,8 @@
msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
-"Report-Msgid-Bugs-To: <vdrportal_midas <at> gmx <dot> de>\n"
-"POT-Creation-Date: 2011-08-01 23:17+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2013-01-26 11:52+0100\n"
"PO-Revision-Date: 2011-07-31 11:48+0200\n"
"Last-Translator: Jordi Vilà <jvila@tinet.org>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/cs_CZ.mo b/po/cs_CZ.mo
new file mode 100644
index 0000000..a4f73cb
--- /dev/null
+++ b/po/cs_CZ.mo
Binary files differ
diff --git a/po/cs_CZ.po b/po/cs_CZ.po
index 1693049..b5ea89a 100644
--- a/po/cs_CZ.po
+++ b/po/cs_CZ.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
-"Report-Msgid-Bugs-To: <vdrportal_midas <at> gmx <dot> de>\n"
-"POT-Creation-Date: 2011-08-01 23:17+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2013-01-26 11:52+0100\n"
"PO-Revision-Date: 2011-07-31 11:48+0200\n"
"Last-Translator: Vladimír Bárta <vladimir.barta@k2atmitec.cz>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/da_DK.mo b/po/da_DK.mo
new file mode 100644
index 0000000..d8af93c
--- /dev/null
+++ b/po/da_DK.mo
Binary files differ
diff --git a/po/da_DK.po b/po/da_DK.po
index dae5447..0d52aea 100644
--- a/po/da_DK.po
+++ b/po/da_DK.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
-"Report-Msgid-Bugs-To: <vdrportal_midas <at> gmx <dot> de>\n"
-"POT-Creation-Date: 2011-08-01 23:17+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2013-01-26 11:52+0100\n"
"PO-Revision-Date: 2011-07-31 11:48+0200\n"
"Last-Translator: Mogens Elneff <mogens@elneff.dk>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/de_DE.mo b/po/de_DE.mo
new file mode 100644
index 0000000..df4a765
--- /dev/null
+++ b/po/de_DE.mo
Binary files differ
diff --git a/po/de_DE.po b/po/de_DE.po
index 468553f..239abf4 100644
--- a/po/de_DE.po
+++ b/po/de_DE.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
-"Report-Msgid-Bugs-To: <vdrportal_midas <at> gmx <dot> de>\n"
-"POT-Creation-Date: 2011-08-01 23:17+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2013-01-26 11:52+0100\n"
"PO-Revision-Date: 2011-07-31 11:48+0200\n"
"Last-Translator: Klaus Schmidinger <kls@tvdr.de>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/el_GR.mo b/po/el_GR.mo
new file mode 100644
index 0000000..2f3ca24
--- /dev/null
+++ b/po/el_GR.mo
Binary files differ
diff --git a/po/el_GR.po b/po/el_GR.po
index 2a83452..d1a0620 100644
--- a/po/el_GR.po
+++ b/po/el_GR.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
-"Report-Msgid-Bugs-To: <vdrportal_midas <at> gmx <dot> de>\n"
-"POT-Creation-Date: 2011-08-01 23:17+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2013-01-26 11:52+0100\n"
"PO-Revision-Date: 2011-07-31 11:48+0200\n"
"Last-Translator: Dimitrios Dimitrakos <mail@dimitrios.de>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/es_ES.mo b/po/es_ES.mo
new file mode 100644
index 0000000..62dd2c2
--- /dev/null
+++ b/po/es_ES.mo
Binary files differ
diff --git a/po/es_ES.po b/po/es_ES.po
index c7db23c..7379a36 100644
--- a/po/es_ES.po
+++ b/po/es_ES.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
-"Report-Msgid-Bugs-To: <vdrportal_midas <at> gmx <dot> de>\n"
-"POT-Creation-Date: 2011-08-01 23:17+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2013-01-26 11:52+0100\n"
"PO-Revision-Date: 2011-07-31 11:48+0200\n"
"Last-Translator: Ruben Nunez Francisco <ruben.nunez@tang-it.com>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/et_EE.mo b/po/et_EE.mo
new file mode 100644
index 0000000..133ccea
--- /dev/null
+++ b/po/et_EE.mo
Binary files differ
diff --git a/po/et_EE.po b/po/et_EE.po
index a8383fc..b0ed88b 100644
--- a/po/et_EE.po
+++ b/po/et_EE.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
-"Report-Msgid-Bugs-To: <vdrportal_midas <at> gmx <dot> de>\n"
-"POT-Creation-Date: 2011-08-01 23:17+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2013-01-26 11:52+0100\n"
"PO-Revision-Date: 2011-07-31 11:48+0200\n"
"Last-Translator: Arthur Konovalov <kasjas@hot.ee>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/fi_FI.mo b/po/fi_FI.mo
new file mode 100644
index 0000000..88feebb
--- /dev/null
+++ b/po/fi_FI.mo
Binary files differ
diff --git a/po/fi_FI.po b/po/fi_FI.po
index d331ae1..a662a5f 100644
--- a/po/fi_FI.po
+++ b/po/fi_FI.po
@@ -9,8 +9,8 @@
msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
-"Report-Msgid-Bugs-To: <vdrportal_midas <at> gmx <dot> de>\n"
-"POT-Creation-Date: 2011-08-01 23:17+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2013-01-26 11:52+0100\n"
"PO-Revision-Date: 2011-07-31 11:48+0200\n"
"Last-Translator: Rolf Ahrenberg <rahrenbe@cc.hut.fi>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/fr_FR.mo b/po/fr_FR.mo
new file mode 100644
index 0000000..ea2fe10
--- /dev/null
+++ b/po/fr_FR.mo
Binary files differ
diff --git a/po/fr_FR.po b/po/fr_FR.po
index 2a8a2fc..33ead13 100644
--- a/po/fr_FR.po
+++ b/po/fr_FR.po
@@ -9,8 +9,8 @@
msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
-"Report-Msgid-Bugs-To: <vdrportal_midas <at> gmx <dot> de>\n"
-"POT-Creation-Date: 2011-08-01 23:17+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2013-01-26 11:52+0100\n"
"PO-Revision-Date: 2011-07-31 11:48+0200\n"
"Last-Translator: Nicolas Huillard <nhuillard@e-dition.fr>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/hr_HR.mo b/po/hr_HR.mo
new file mode 100644
index 0000000..863a745
--- /dev/null
+++ b/po/hr_HR.mo
Binary files differ
diff --git a/po/hr_HR.po b/po/hr_HR.po
index 8ee2529..dffaf77 100644
--- a/po/hr_HR.po
+++ b/po/hr_HR.po
@@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
-"Report-Msgid-Bugs-To: <vdrportal_midas <at> gmx <dot> de>\n"
-"POT-Creation-Date: 2011-08-01 23:17+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2013-01-26 11:52+0100\n"
"PO-Revision-Date: 2011-07-31 11:48+0200\n"
"Last-Translator: Drazen Dupor <drazen.dupor@dupor.com>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/hu_HU.mo b/po/hu_HU.mo
new file mode 100644
index 0000000..2696e82
--- /dev/null
+++ b/po/hu_HU.mo
Binary files differ
diff --git a/po/hu_HU.po b/po/hu_HU.po
index 302a60e..7c202ce 100644
--- a/po/hu_HU.po
+++ b/po/hu_HU.po
@@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
-"Report-Msgid-Bugs-To: <vdrportal_midas <at> gmx <dot> de>\n"
-"POT-Creation-Date: 2011-08-01 23:17+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2013-01-26 11:52+0100\n"
"PO-Revision-Date: 2011-07-31 11:48+0200\n"
"Last-Translator: Istvan Koenigsberger <istvnko@hotmail.com>, Guido Josten <guido.josten@t-online.de>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/it_IT.mo b/po/it_IT.mo
new file mode 100644
index 0000000..82f6de8
--- /dev/null
+++ b/po/it_IT.mo
Binary files differ
diff --git a/po/it_IT.po b/po/it_IT.po
index 1870823..85dad98 100644
--- a/po/it_IT.po
+++ b/po/it_IT.po
@@ -8,8 +8,8 @@
msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
-"Report-Msgid-Bugs-To: <vdrportal_midas <at> gmx <dot> de>\n"
-"POT-Creation-Date: 2011-08-01 23:17+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2013-01-26 11:52+0100\n"
"PO-Revision-Date: 2011-07-31 11:48+0200\n"
"Last-Translator: Sean Carlos <seanc@libero.it>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/nl_NL.mo b/po/nl_NL.mo
new file mode 100644
index 0000000..3065dfb
--- /dev/null
+++ b/po/nl_NL.mo
Binary files differ
diff --git a/po/nl_NL.po b/po/nl_NL.po
index 2fa471e..17fc673 100644
--- a/po/nl_NL.po
+++ b/po/nl_NL.po
@@ -8,8 +8,8 @@
msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
-"Report-Msgid-Bugs-To: <vdrportal_midas <at> gmx <dot> de>\n"
-"POT-Creation-Date: 2011-08-01 23:17+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2013-01-26 11:52+0100\n"
"PO-Revision-Date: 2011-07-31 11:48+0200\n"
"Last-Translator: Maarten Wisse <Maarten.Wisse@urz.uni-hd.de>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/nn_NO.mo b/po/nn_NO.mo
new file mode 100644
index 0000000..3ee9483
--- /dev/null
+++ b/po/nn_NO.mo
Binary files differ
diff --git a/po/nn_NO.po b/po/nn_NO.po
index c072b03..c188a8e 100644
--- a/po/nn_NO.po
+++ b/po/nn_NO.po
@@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
-"Report-Msgid-Bugs-To: <vdrportal_midas <at> gmx <dot> de>\n"
-"POT-Creation-Date: 2011-08-01 23:17+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2013-01-26 11:52+0100\n"
"PO-Revision-Date: 2011-07-31 11:48+0200\n"
"Last-Translator: Truls Slevigen <truls@slevigen.no>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/pl_PL.mo b/po/pl_PL.mo
new file mode 100644
index 0000000..889dde6
--- /dev/null
+++ b/po/pl_PL.mo
Binary files differ
diff --git a/po/pl_PL.po b/po/pl_PL.po
index ca163a3..4d182bb 100644
--- a/po/pl_PL.po
+++ b/po/pl_PL.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
-"Report-Msgid-Bugs-To: <vdrportal_midas <at> gmx <dot> de>\n"
-"POT-Creation-Date: 2011-08-01 23:17+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2013-01-26 11:52+0100\n"
"PO-Revision-Date: 2011-07-31 11:48+0200\n"
"Last-Translator: Michael Rakowski <mrak@gmx.de>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/pt_PT.mo b/po/pt_PT.mo
new file mode 100644
index 0000000..e89066c
--- /dev/null
+++ b/po/pt_PT.mo
Binary files differ
diff --git a/po/pt_PT.po b/po/pt_PT.po
index 9f78ab7..1604d19 100644
--- a/po/pt_PT.po
+++ b/po/pt_PT.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
-"Report-Msgid-Bugs-To: <vdrportal_midas <at> gmx <dot> de>\n"
-"POT-Creation-Date: 2011-08-01 23:17+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2013-01-26 11:52+0100\n"
"PO-Revision-Date: 2011-07-31 11:48+0200\n"
"Last-Translator: Paulo Lopes <pmml@netvita.pt>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/ro_RO.mo b/po/ro_RO.mo
new file mode 100644
index 0000000..3714e09
--- /dev/null
+++ b/po/ro_RO.mo
Binary files differ
diff --git a/po/ro_RO.po b/po/ro_RO.po
index b8d2fd8..55fce24 100644
--- a/po/ro_RO.po
+++ b/po/ro_RO.po
@@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
-"Report-Msgid-Bugs-To: <vdrportal_midas <at> gmx <dot> de>\n"
-"POT-Creation-Date: 2011-08-01 23:17+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2013-01-26 11:52+0100\n"
"PO-Revision-Date: 2011-07-31 11:48+0200\n"
"Last-Translator: Lucian Muresan <lucianm@users.sourceforge.net>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/ru_RU.mo b/po/ru_RU.mo
new file mode 100644
index 0000000..9c0f01f
--- /dev/null
+++ b/po/ru_RU.mo
Binary files differ
diff --git a/po/ru_RU.po b/po/ru_RU.po
index 4ef5ba0..71be96c 100644
--- a/po/ru_RU.po
+++ b/po/ru_RU.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
-"Report-Msgid-Bugs-To: <vdrportal_midas <at> gmx <dot> de>\n"
-"POT-Creation-Date: 2011-08-01 23:17+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2013-01-26 11:52+0100\n"
"PO-Revision-Date: 2011-07-31 11:48+0200\n"
"Last-Translator: Vyacheslav Dikonov <sdiconov@mail.ru>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/sl_SI.mo b/po/sl_SI.mo
new file mode 100644
index 0000000..9b50902
--- /dev/null
+++ b/po/sl_SI.mo
Binary files differ
diff --git a/po/sl_SI.po b/po/sl_SI.po
index d8186ba..4290f65 100644
--- a/po/sl_SI.po
+++ b/po/sl_SI.po
@@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
-"Report-Msgid-Bugs-To: <vdrportal_midas <at> gmx <dot> de>\n"
-"POT-Creation-Date: 2011-08-01 23:17+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2013-01-26 11:52+0100\n"
"PO-Revision-Date: 2011-07-31 11:48+0200\n"
"Last-Translator: Matjaz Thaler <matjaz.thaler@guest.arnes.si>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/sleeptimer.pot b/po/sleeptimer.pot
new file mode 100644
index 0000000..d69ed52
--- /dev/null
+++ b/po/sleeptimer.pot
@@ -0,0 +1,102 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: vdr-sleeptimer 0.8.3-201205011650dev\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2013-01-26 11:52+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+msgid "Sleeptimer"
+msgstr ""
+
+msgid "Autoswitch"
+msgstr ""
+
+msgid "Disable"
+msgstr ""
+
+msgid "Not active"
+msgstr ""
+
+msgid "Shutdown [min]"
+msgstr ""
+
+msgid "Shutdown (time)"
+msgstr ""
+
+#, c-format
+msgid "Disable sleeptimer in %d minutes"
+msgstr ""
+
+msgid "Shutdown"
+msgstr ""
+
+msgid "Mute"
+msgstr ""
+
+msgid "Execute command"
+msgstr ""
+
+msgid "Default Timespan [min]"
+msgstr ""
+
+msgid "Action"
+msgstr ""
+
+msgid "Command"
+msgstr ""
+
+msgid "Use default for autoswitch"
+msgstr ""
+
+msgid "No"
+msgstr ""
+
+msgid "Yes"
+msgstr ""
+
+msgid "Confirm"
+msgstr ""
+
+msgid "Going to sleep in about one minute"
+msgstr ""
+
+msgid "Disable sleeptimer?"
+msgstr ""
+
+#, c-format
+msgid "Activate sleeptimer at %i:%.2i?"
+msgstr ""
+
+msgid "Timespan shorter than 2 minutes"
+msgstr ""
+
+#, c-format
+msgid "Activate sleeptimer in %i minutes?"
+msgstr ""
+
+#, c-format
+msgid "Sleeptimer in %i minute"
+msgstr ""
+
+#, c-format
+msgid "Sleeptimer in %i minutes"
+msgstr ""
+
+msgid "Sleeptimer disabled"
+msgstr ""
+
+#, c-format
+msgid "Enable sleeptimer in %i minutes?"
+msgstr ""
diff --git a/po/sv_SE.mo b/po/sv_SE.mo
new file mode 100644
index 0000000..8fdfaf3
--- /dev/null
+++ b/po/sv_SE.mo
Binary files differ
diff --git a/po/sv_SE.po b/po/sv_SE.po
index 6e38cc7..0bb233e 100644
--- a/po/sv_SE.po
+++ b/po/sv_SE.po
@@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
-"Report-Msgid-Bugs-To: <vdrportal_midas <at> gmx <dot> de>\n"
-"POT-Creation-Date: 2011-08-01 23:17+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2013-01-26 11:52+0100\n"
"PO-Revision-Date: 2011-07-31 11:48+0200\n"
"Last-Translator: Tomas Prybil <tomas@prybil.se>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/tr_TR.mo b/po/tr_TR.mo
new file mode 100644
index 0000000..e80fd6a
--- /dev/null
+++ b/po/tr_TR.mo
Binary files differ
diff --git a/po/tr_TR.po b/po/tr_TR.po
index 3a84ea5..700c4cf 100644
--- a/po/tr_TR.po
+++ b/po/tr_TR.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
-"Report-Msgid-Bugs-To: <vdrportal_midas <at> gmx <dot> de>\n"
-"POT-Creation-Date: 2011-08-01 23:17+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2013-01-26 11:52+0100\n"
"PO-Revision-Date: 2011-07-31 11:48+0200\n"
"Last-Translator: Oktay Yolgeçen <oktay_73@yahoo.de>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/sleeptimer.c b/sleeptimer.c
index 9feb4dd..0dae825 100644
--- a/sleeptimer.c
+++ b/sleeptimer.c
@@ -19,7 +19,7 @@
#define COMMANDLENGTH 512
#endif
-static const char *VERSION = "0.8.3-201205011650dev";
+static const char *VERSION = "0.8.3-201301261156dev";
static const char *DESCRIPTION = "Sleeptimer for VDR";
static const char *MAINMENUENTRY = tr("Sleeptimer");