summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Meyerholt <dxm523@googlemail.com>2014-06-21 22:09:48 +0200
committerDaniel Meyerholt <dxm523@googlemail.com>2014-06-21 22:09:48 +0200
commitcb5f328e5ba3398b048c282700fbabaab2e7a9ea (patch)
tree84a1748677d7de56b27c8678daa8551d8af7ee30
parent2aadf76f83316738a3026fc0d1ade63ccbce7c2a (diff)
downloadvdr-plugin-vdrrip-cb5f328e5ba3398b048c282700fbabaab2e7a9ea.tar.gz
vdr-plugin-vdrrip-cb5f328e5ba3398b048c282700fbabaab2e7a9ea.tar.bz2
* Use Makefile from vdr examples
* fix up some translations
-rw-r--r--Makefile94
-rw-r--r--po/ca_ES.po4
-rw-r--r--po/cs_CZ.po4
-rw-r--r--po/da_DK.po4
-rw-r--r--po/de_DE.po4
-rw-r--r--po/el_GR.po4
-rw-r--r--po/es_ES.po4
-rw-r--r--po/et_EE.po4
-rw-r--r--po/fi_FI.po4
-rw-r--r--po/fr_FR.po4
-rw-r--r--po/hr_HR.po4
-rw-r--r--po/hu_HU.po4
-rw-r--r--po/it_IT.po4
-rw-r--r--po/nl_NL.po4
-rw-r--r--po/nn_NO.po4
-rw-r--r--po/pl_PL.po4
-rw-r--r--po/pt_PT.mobin403 -> 0 bytes
-rw-r--r--po/pt_PT.po16
-rw-r--r--po/ro_RO.po4
-rw-r--r--po/ru_RU.po4
-rw-r--r--po/sl_SI.po4
-rw-r--r--po/sv_SE.po4
-rw-r--r--po/tr_TR.po4
-rw-r--r--po/vdrrip.pot243
24 files changed, 95 insertions, 338 deletions
diff --git a/Makefile b/Makefile
index 89b0750..480f408 100644
--- a/Makefile
+++ b/Makefile
@@ -1,115 +1,115 @@
#
# Makefile for a Video Disk Recorder plugin
#
-# $Id$
+# $Id: Makefile 3.1 2014/01/01 13:29:54 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 = vdrrip
-### uncomment this line, if you want to encode DVD's
-#VDRRIP_DVD=1
+PLUGIN = vdrrip
### 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 C++ compiler and options:
+### The directory environment:
-CXX ?= g++
-CXXFLAGS ?= -fPIC -O2 -Wall -Woverloaded-virtual
+# 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_PATH="$$PKG_CONFIG_PATH:../../.." pkg-config --variable=$(1) vdr))
+LIBDIR = $(call PKGCFG,libdir)
+LOCDIR = $(call PKGCFG,locdir)
+PLGCFG = $(call PKGCFG,plgcfg)
+#
+TMPDIR ?= /tmp
-### The directory environment:
+### The compiler options:
-DVBDIR = ../../../../DVB
-VDRDIR = ../../..
-LIBDIR = ../../lib
-TMPDIR = /tmp
+export CFLAGS = $(call PKGCFG,cflags)
+export CXXFLAGS = $(call PKGCFG,cxxflags) -fPIC
-### Allow user defined options to overwrite defaults:
+### The version number of VDR's plugin API:
--include $(VDRDIR)/Make.config
+APIVERSION = $(call PKGCFG,apiversion)
-### The version number of VDR (taken from VDR's "config.h"):
+### Allow user defined options to overwrite defaults:
-APIVERSION = $(shell grep 'define APIVERSION ' $(VDRDIR)/config.h | awk '{ print $$3 }' | sed -e 's/"//g')
+-include $(PLGCFG)
### The name of the distribution archive:
ARCHIVE = $(PLUGIN)-$(VERSION)
PACKAGE = vdr-$(ARCHIVE)
-### Includes and Defines (add further entries here):
+### The name of the shared object file:
-INCLUDES += -I$(VDRDIR)/include -I$(DVBDIR)/include
+SOFILE = libvdr-$(PLUGIN).so
+
+### Includes and Defines (add further entries here):
-DEFINES += -D_GNU_SOURCE -DPLUGIN_NAME_I18N='"$(PLUGIN)"' -D__STDC_LIMIT_MACROS
+INCLUDES +=
-NEW_IFO_READ := $(wildcard /usr/include/dvdread/ifo_read.h)
-ifneq ($(strip $(NEW_IFO_READ)),)
- DEFINES += -DNEW_IFO_READ
-endif
+DEFINES += -DPLUGIN_NAME_I18N='"$(PLUGIN)"'
### The object files (add further files here):
-OBJS = $(PLUGIN).o \
- menu-vdrrip.o movie.o templates.o codecs.o queue.o vdrriprecordings.o a-tools.o
+OBJS = $(PLUGIN).o
-ifdef VDRRIP_DVD
- DEFINES += -DVDRRIP_DVD
- LIBS += -ldvdnav
-endif
+### The main target:
+
+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='<tobias.grimm@e-tobi.net>' -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) $(LIBS) -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)
diff --git a/po/ca_ES.po b/po/ca_ES.po
index 2f58db6..64695a9 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: <tobias.grimm@e-tobi.net>\n"
-"POT-Creation-Date: 2012-06-03 11:14+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2014-06-21 21:53+0200\n"
"PO-Revision-Date: 2012-06-03 10:59+0200\n"
"Last-Translator: Jordi Vilà <jvila@tinet.org>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/cs_CZ.po b/po/cs_CZ.po
index 39d1899..4b7887c 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: <tobias.grimm@e-tobi.net>\n"
-"POT-Creation-Date: 2012-06-03 11:14+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2014-06-21 21:53+0200\n"
"PO-Revision-Date: 2012-06-03 10:59+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.po b/po/da_DK.po
index bd14bc2..a70021a 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: <tobias.grimm@e-tobi.net>\n"
-"POT-Creation-Date: 2012-06-03 11:14+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2014-06-21 21:53+0200\n"
"PO-Revision-Date: 2012-06-03 10:59+0200\n"
"Last-Translator: Mogens Elneff <mogens@elneff.dk>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/de_DE.po b/po/de_DE.po
index 77b1895..391f54c 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: <tobias.grimm@e-tobi.net>\n"
-"POT-Creation-Date: 2012-06-03 11:14+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2014-06-21 21:53+0200\n"
"PO-Revision-Date: 2012-06-03 10:59+0200\n"
"Last-Translator: Klaus Schmidinger <kls@tvdr.de>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/el_GR.po b/po/el_GR.po
index 2ee4013..9321304 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: <tobias.grimm@e-tobi.net>\n"
-"POT-Creation-Date: 2012-06-03 11:14+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2014-06-21 21:53+0200\n"
"PO-Revision-Date: 2012-06-03 10:59+0200\n"
"Last-Translator: Dimitrios Dimitrakos <mail@dimitrios.de>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/es_ES.po b/po/es_ES.po
index 9c5475f..15f02c5 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: <tobias.grimm@e-tobi.net>\n"
-"POT-Creation-Date: 2012-06-03 11:14+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2014-06-21 21:53+0200\n"
"PO-Revision-Date: 2012-06-03 10:59+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.po b/po/et_EE.po
index a308243..0faae78 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: <tobias.grimm@e-tobi.net>\n"
-"POT-Creation-Date: 2012-06-03 11:14+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2014-06-21 21:53+0200\n"
"PO-Revision-Date: 2012-06-03 10:59+0200\n"
"Last-Translator: Arthur Konovalov <kasjas@hot.ee>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/fi_FI.po b/po/fi_FI.po
index 91edcb8..2bee733 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: <tobias.grimm@e-tobi.net>\n"
-"POT-Creation-Date: 2012-06-03 11:14+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2014-06-21 21:53+0200\n"
"PO-Revision-Date: 2012-06-03 10:59+0200\n"
"Last-Translator: Rolf Ahrenberg <rahrenbe@cc.hut.fi>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/fr_FR.po b/po/fr_FR.po
index ff38c4c..482a358 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: <tobias.grimm@e-tobi.net>\n"
-"POT-Creation-Date: 2012-06-03 11:14+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2014-06-21 21:53+0200\n"
"PO-Revision-Date: 2012-06-03 10:59+0200\n"
"Last-Translator: Nicolas Huillard <nhuillard@e-dition.fr>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/hr_HR.po b/po/hr_HR.po
index 202332e..f17f637 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: <tobias.grimm@e-tobi.net>\n"
-"POT-Creation-Date: 2012-06-03 11:14+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2014-06-21 21:53+0200\n"
"PO-Revision-Date: 2012-06-03 10:59+0200\n"
"Last-Translator: Drazen Dupor <drazen.dupor@dupor.com>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/hu_HU.po b/po/hu_HU.po
index d1782bf..ca4066e 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: <tobias.grimm@e-tobi.net>\n"
-"POT-Creation-Date: 2012-06-03 11:14+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2014-06-21 21:53+0200\n"
"PO-Revision-Date: 2012-06-03 10:59+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.po b/po/it_IT.po
index ce6110f..161e30c 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: <tobias.grimm@e-tobi.net>\n"
-"POT-Creation-Date: 2012-06-03 11:14+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2014-06-21 21:53+0200\n"
"PO-Revision-Date: 2012-06-03 10:59+0200\n"
"Last-Translator: Sean Carlos <seanc@libero.it>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/nl_NL.po b/po/nl_NL.po
index a4b547c..a070a05 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: <tobias.grimm@e-tobi.net>\n"
-"POT-Creation-Date: 2012-06-03 11:14+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2014-06-21 21:53+0200\n"
"PO-Revision-Date: 2012-06-03 10:59+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.po b/po/nn_NO.po
index 5fe74ac..8284dd5 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: <tobias.grimm@e-tobi.net>\n"
-"POT-Creation-Date: 2012-06-03 11:14+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2014-06-21 21:53+0200\n"
"PO-Revision-Date: 2012-06-03 10:59+0200\n"
"Last-Translator: Truls Slevigen <truls@slevigen.no>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/pl_PL.po b/po/pl_PL.po
index ed15f3e..61a1bb5 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: <tobias.grimm@e-tobi.net>\n"
-"POT-Creation-Date: 2012-06-03 11:14+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2014-06-21 21:53+0200\n"
"PO-Revision-Date: 2012-06-03 10:59+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
deleted file mode 100644
index 0c13f80..0000000
--- a/po/pt_PT.mo
+++ /dev/null
Binary files differ
diff --git a/po/pt_PT.po b/po/pt_PT.po
index a9335df..47005d5 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: <tobias.grimm@e-tobi.net>\n"
-"POT-Creation-Date: 2014-06-21 16:38+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2014-06-21 21:53+0200\n"
"PO-Revision-Date: 2012-06-03 10:59+0200\n"
"Last-Translator: Paulo Lopes <pmml@netvita.pt>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -16,12 +16,6 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-msgid "unknown"
-msgstr ""
-
-msgid "not found"
-msgstr ""
-
msgid "encode vdr-recording"
msgstr ""
@@ -144,6 +138,9 @@ msgstr ""
msgid "Title*"
msgstr ""
+msgid "unknown"
+msgstr ""
+
msgid "MovieData"
msgstr ""
@@ -240,3 +237,6 @@ msgstr ""
msgid "Matroska support"
msgstr ""
+
+msgid "not found"
+msgstr ""
diff --git a/po/ro_RO.po b/po/ro_RO.po
index 590ba57..3e40f41 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: <tobias.grimm@e-tobi.net>\n"
-"POT-Creation-Date: 2012-06-03 11:14+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2014-06-21 21:53+0200\n"
"PO-Revision-Date: 2012-06-03 10:59+0200\n"
"Last-Translator: Lucian Muresan <lucianm@users.sourceforge.net>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/ru_RU.po b/po/ru_RU.po
index 8795ef9..86f999e 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: <tobias.grimm@e-tobi.net>\n"
-"POT-Creation-Date: 2012-06-03 11:14+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2014-06-21 21:53+0200\n"
"PO-Revision-Date: 2012-06-03 10:59+0200\n"
"Last-Translator: Vyacheslav Dikonov <sdiconov@mail.ru>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/sl_SI.po b/po/sl_SI.po
index 2a3dd22..f5badfd 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: <tobias.grimm@e-tobi.net>\n"
-"POT-Creation-Date: 2012-06-03 11:14+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2014-06-21 21:53+0200\n"
"PO-Revision-Date: 2012-06-03 10:59+0200\n"
"Last-Translator: Matjaz Thaler <matjaz.thaler@guest.arnes.si>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/sv_SE.po b/po/sv_SE.po
index 1b5c835..57546b0 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: <tobias.grimm@e-tobi.net>\n"
-"POT-Creation-Date: 2012-06-03 11:14+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2014-06-21 21:53+0200\n"
"PO-Revision-Date: 2012-06-03 10:59+0200\n"
"Last-Translator: Tomas Prybil <tomas@prybil.se>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/tr_TR.po b/po/tr_TR.po
index e99e8ac..9dafcd5 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: <tobias.grimm@e-tobi.net>\n"
-"POT-Creation-Date: 2012-06-03 11:14+0200\n"
+"Report-Msgid-Bugs-To: <see README>\n"
+"POT-Creation-Date: 2014-06-21 21:53+0200\n"
"PO-Revision-Date: 2012-06-03 10:59+0200\n"
"Last-Translator: Oktay Yolgeçen <oktay_73@yahoo.de>\n"
"Language-Team: <vdr@linuxtv.org>\n"
diff --git a/po/vdrrip.pot b/po/vdrrip.pot
deleted file mode 100644
index 792e328..0000000
--- a/po/vdrrip.pot
+++ /dev/null
@@ -1,243 +0,0 @@
-# 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: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: <tobias.grimm@e-tobi.net>\n"
-"POT-Creation-Date: 2014-06-21 16:38+0200\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 "unknown"
-msgstr ""
-
-msgid "not found"
-msgstr ""
-
-msgid "encode vdr-recording"
-msgstr ""
-
-msgid "encode dvd"
-msgstr ""
-
-msgid "edit encoding queue"
-msgstr ""
-
-msgid "edit templates"
-msgstr ""
-
-msgid "back"
-msgstr ""
-
-msgid "accept"
-msgstr ""
-
-msgid "checking dvd..."
-msgstr ""
-
-msgid "scanning recordings..."
-msgstr ""
-
-msgid "the queuefile is locked by the queuehandler !"
-msgstr ""
-
-#, c-format
-msgid "delete movie %s from queue ?"
-msgstr ""
-
-msgid "delete"
-msgstr ""
-
-msgid "up"
-msgstr ""
-
-msgid "down"
-msgstr ""
-
-msgid "switch mode"
-msgstr ""
-
-msgid "edit"
-msgstr ""
-
-msgid "new"
-msgstr ""
-
-#, c-format
-msgid "delete template %s ?"
-msgstr ""
-
-msgid "edit template"
-msgstr ""
-
-msgid "ABC/abc"
-msgstr ""
-
-msgid "Overwrite"
-msgstr ""
-
-msgid "Delete"
-msgstr ""
-
-msgid "Name"
-msgstr ""
-
-msgid "FileSize"
-msgstr ""
-
-msgid "FileNumbers"
-msgstr ""
-
-msgid "BitrateVideo"
-msgstr ""
-
-msgid "BitrateAudio"
-msgstr ""
-
-msgid "Container"
-msgstr ""
-
-msgid "Video-Codec"
-msgstr ""
-
-msgid "Audio-Codec"
-msgstr ""
-
-msgid "Bpp-Value (*100)"
-msgstr ""
-
-msgid "ScaleType"
-msgstr ""
-
-msgid "encode movie"
-msgstr ""
-
-msgid "reading movie-data..."
-msgstr ""
-
-msgid "add to queue"
-msgstr ""
-
-msgid "reset boarders"
-msgstr ""
-
-msgid "crop boarders"
-msgstr ""
-
-msgid "expert modus(off)"
-msgstr ""
-
-msgid "expert modus(on)"
-msgstr ""
-
-msgid "Template"
-msgstr ""
-
-msgid "Title*"
-msgstr ""
-
-msgid "MovieData"
-msgstr ""
-
-msgid "not used"
-msgstr ""
-
-msgid "CropData"
-msgstr ""
-
-msgid "Audio-Str."
-msgstr ""
-
-msgid "ScaleData"
-msgstr ""
-
-msgid "ScaleWidth"
-msgstr ""
-
-msgid "ScaleHeight"
-msgstr ""
-
-msgid "------ expert settings: ------"
-msgstr ""
-
-msgid "- adjust crop values:"
-msgstr ""
-
-msgid "CropWidth"
-msgstr ""
-
-msgid "CropHeight"
-msgstr ""
-
-#, c-format
-msgid "- postprocessing Filters(%s):"
-msgstr ""
-
-msgid "reading audio-data from dvd..."
-msgstr ""
-
-msgid "<ok> for preview-mode"
-msgstr ""
-
-msgid "add movie to encoding queue ?"
-msgstr ""
-
-msgid "reset black movie boarders ?"
-msgstr ""
-
-msgid "crop black movie boarders ?"
-msgstr ""
-
-msgid "search for black movie boarders"
-msgstr ""
-
-msgid "couldn't detect black movie boarders !"
-msgstr ""
-
-msgid "select dvd title"
-msgstr ""
-
-msgid "select audio stream(s)"
-msgstr ""
-
-msgid "MaxScaleWidth"
-msgstr ""
-
-msgid "MinScaleWidth"
-msgstr ""
-
-msgid "Crop Mode"
-msgstr ""
-
-msgid "Crop DetectLength (s)"
-msgstr ""
-
-msgid "Rename movie after encoding"
-msgstr ""
-
-msgid "no"
-msgstr ""
-
-msgid "yes"
-msgstr ""
-
-msgid "Ogg-Vorbis support"
-msgstr ""
-
-msgid "AC3 support (MPlayer-patch inst.)"
-msgstr ""
-
-msgid "Ogm support"
-msgstr ""
-
-msgid "Matroska support"
-msgstr ""