diff -Naur vcd-0.9.old/i18n.c vcd-0.9/i18n.c --- vcd-0.9.old/i18n.c 2008-01-20 18:00:50.000000000 +0100 +++ vcd-0.9/i18n.c 1970-01-01 01:00:00.000000000 +0100 @@ -1,269 +0,0 @@ -/* - * i18n.c: Internationalization - * - * VCD Player plugin for VDR (the Video Disk Recorder) - * Copyright (C) 2002 Thomas Heiligenmann - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA - * - * Italian translations provided by Gringo - * - */ - - -#include "i18n.h" - -const tI18nPhrase Phrases[] = { - { "VideoCD", - "VideoCD", - "", - "VideoCD", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - }, - { "Tracks", - "Tracks", - "", - "Tracce", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - }, - { "VideoCD SPI", - "VideoCD SPI", - "", - "VideoCD SPI", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - }, - { "SPI", - "SPI", - "", - "SPI", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - }, - { "No disc inserted", - "Keine CD eingelegt", - "", - "Nessun disco inserito", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - }, - { "No VideoCD detected", - "Keine VideoCD erkannt", - "", - "Nessun VideoCD trovato", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - }, - { "VCD", - "VCD", - "", - "VCD", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - }, - { "Setup.VCD$Drive speed", - "Laufwerkgeschwindigkeit", - "", - "Velocità lettore", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - }, - { "Setup.VCD$Broken mode", - "Nicht standardkonform", - "", - "Mod. non standard", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - }, - { "Setup.VCD$Hide main menu entry", - "Hauptmenüeintrag ausblenden", - "", - "Nascondi voce nel menu principale", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - }, - { "Setup.VCD$Play tracks continuously", - "Tracks nacheinander abspielen", - "", - "Riproduci tracce in modo continuo", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - }, - { "Setup.VCD$Autostart replay", - "Wiedergabe automatisch starten", - "", - "Riproduzione automatica all'avvio", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - }, - { "Setup.VCD$Play sequence replay", - "Wiedergabe nach Sequenz", - "", - "Riproduci in sequenza", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - }, - { "Eject", - "Auswerfen", - "Izvrzi", - "Eject", - "Eject", - "Ejectar", - "Ejection", - "Eject", - "Avaa", - "Wyrzucenie", - "Expulsar", - "Exsagogi", - "Mata ut", - "Ejecteaza", - "Kidobni", - "Expulsar", - }, - { NULL } -}; - diff -Naur vcd-0.9.old/i18n.h vcd-0.9/i18n.h --- vcd-0.9.old/i18n.h 2008-01-16 13:40:30.000000000 +0100 +++ vcd-0.9/i18n.h 1970-01-01 01:00:00.000000000 +0100 @@ -1,30 +0,0 @@ -/* - * i18n.h: Internationalization - * - * VCD Player plugin for VDR (the Video Disk Recorder) - * Copyright (C) 2002 Thomas Heiligenmann - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA - * - */ - -#ifndef __VCD_I18N_H -#define __VCD_I18N_H - -#include - -extern const tI18nPhrase Phrases[]; - -#endif //__VCD_I18N_H diff -Naur vcd-0.9.old/Makefile vcd-0.9/Makefile --- vcd-0.9.old/Makefile 2008-01-16 16:29:39.000000000 +0100 +++ vcd-0.9/Makefile 2012-10-30 14:06:02.163762996 +0100 @@ -53,7 +53,7 @@ ### The object files (add further files here): -OBJS = $(PLUGIN).o functions.o i18n.o menu.o player.o viewer.o setup.o menucontrol.o psd.o psdcontrol.o +OBJS = $(PLUGIN).o functions.o menu.o player.o viewer.o setup.o menucontrol.o psd.o psdcontrol.o ### Implicit rules: @@ -69,9 +69,34 @@ -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)))))) +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='' -o $@ $^ + +%.po: $(I18Npot) + msgmerge -U --no-wrap --no-location --backup=none -q $@ $< + @touch $@ + +$(I18Nmsgs): $(LOCALEDIR)/%/LC_MESSAGES/vdr-$(PLUGIN).mo: $(PODIR)/%.mo + @mkdir -p $(dir $@) + cp $< $@ + +.PHONY: i18n +i18n: $(I18Nmsgs) + ### Targets: -all: libvdr-$(PLUGIN).so +all: libvdr-$(PLUGIN).so i18n libvdr-$(PLUGIN).so: $(OBJS) $(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@ @@ -86,4 +111,5 @@ @echo Distribution package created as $(PACKAGE).tgz clean: + @-rm -f $(PODIR)/*.mo $(PODIR)/*.pot @-rm -f $(OBJS) $(DEPFILE) *.so *.tgz core* *~ diff -Naur vcd-0.9.old/menu.c vcd-0.9/menu.c --- vcd-0.9.old/menu.c 2008-01-20 17:59:46.000000000 +0100 +++ vcd-0.9/menu.c 2012-10-30 14:04:10.837681821 +0100 @@ -26,7 +26,7 @@ #include #include -#include "i18n.h" +#include #include "menu.h" #include "functions.h" #include "setup.h" diff -Naur vcd-0.9.old/menucontrol.c vcd-0.9/menucontrol.c --- vcd-0.9.old/menucontrol.c 2008-01-16 13:43:39.000000000 +0100 +++ vcd-0.9/menucontrol.c 2012-10-30 14:03:43.051660837 +0100 @@ -26,7 +26,7 @@ #include #include -#include "i18n.h" +#include #include "menu.h" #include "functions.h" #include "setup.h" diff -Naur vcd-0.9.old/po/ca_ES.po vcd-0.9/po/ca_ES.po --- vcd-0.9.old/po/ca_ES.po 1970-01-01 01:00:00.000000000 +0100 +++ vcd-0.9/po/ca_ES.po 2012-10-30 14:08:28.406871747 +0100 @@ -0,0 +1,64 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Marc Rovira Vall , 2003 +# Ramon Roca , 2003 +# Jordi Vilà , 2003 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.7.27\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-10-30 14:10+0200\n" +"PO-Revision-Date: 2012-10-30 14:10+0200\n" +"Last-Translator: Jordi Vilà \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "VideoCD" +msgstr "" + +msgid "No VideoCD detected" +msgstr "" + +msgid "Eject" +msgstr "Expulsar" + +msgid "Key$Play" +msgstr "" + +msgid "Tracks" +msgstr "" + +msgid "SPI" +msgstr "" + +msgid "Jump: " +msgstr "" + +msgid "VCD" +msgstr "" + +msgid "Setup.VCD$Drive speed" +msgstr "" + +msgid "Setup.VCD$Broken mode" +msgstr "" + +msgid "Setup.VCD$Hide main menu entry" +msgstr "" + +msgid "Setup.VCD$Play tracks continuously" +msgstr "" + +msgid "Setup.VCD$Autostart replay" +msgstr "" + +msgid "Setup.VCD$Play sequence replay" +msgstr "" + +msgid "No disc inserted" +msgstr "" diff -Naur vcd-0.9.old/po/cs_CZ.po vcd-0.9/po/cs_CZ.po --- vcd-0.9.old/po/cs_CZ.po 1970-01-01 01:00:00.000000000 +0100 +++ vcd-0.9/po/cs_CZ.po 2012-10-30 14:08:28.407871746 +0100 @@ -0,0 +1,62 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Vladimír Bárta , 2006 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.7.27\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-10-30 14:10+0200\n" +"PO-Revision-Date: 2012-10-30 14:10+0200\n" +"Last-Translator: Vladimír Bárta \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-2\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "VideoCD" +msgstr "" + +msgid "No VideoCD detected" +msgstr "" + +msgid "Eject" +msgstr "" + +msgid "Key$Play" +msgstr "" + +msgid "Tracks" +msgstr "" + +msgid "SPI" +msgstr "" + +msgid "Jump: " +msgstr "" + +msgid "VCD" +msgstr "" + +msgid "Setup.VCD$Drive speed" +msgstr "" + +msgid "Setup.VCD$Broken mode" +msgstr "" + +msgid "Setup.VCD$Hide main menu entry" +msgstr "" + +msgid "Setup.VCD$Play tracks continuously" +msgstr "" + +msgid "Setup.VCD$Autostart replay" +msgstr "" + +msgid "Setup.VCD$Play sequence replay" +msgstr "" + +msgid "No disc inserted" +msgstr "" diff -Naur vcd-0.9.old/po/da_DK.po vcd-0.9/po/da_DK.po --- vcd-0.9.old/po/da_DK.po 1970-01-01 01:00:00.000000000 +0100 +++ vcd-0.9/po/da_DK.po 2012-10-30 14:08:28.408871745 +0100 @@ -0,0 +1,62 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Mogens Elneff , 2004 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.7.27\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-10-30 14:10+0200\n" +"PO-Revision-Date: 2012-10-30 14:10+0200\n" +"Last-Translator: Mogens Elneff \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "VideoCD" +msgstr "" + +msgid "No VideoCD detected" +msgstr "" + +msgid "Eject" +msgstr "" + +msgid "Key$Play" +msgstr "" + +msgid "Tracks" +msgstr "" + +msgid "SPI" +msgstr "" + +msgid "Jump: " +msgstr "" + +msgid "VCD" +msgstr "" + +msgid "Setup.VCD$Drive speed" +msgstr "" + +msgid "Setup.VCD$Broken mode" +msgstr "" + +msgid "Setup.VCD$Hide main menu entry" +msgstr "" + +msgid "Setup.VCD$Play tracks continuously" +msgstr "" + +msgid "Setup.VCD$Autostart replay" +msgstr "" + +msgid "Setup.VCD$Play sequence replay" +msgstr "" + +msgid "No disc inserted" +msgstr "" diff -Naur vcd-0.9.old/po/de_DE.po vcd-0.9/po/de_DE.po --- vcd-0.9.old/po/de_DE.po 1970-01-01 01:00:00.000000000 +0100 +++ vcd-0.9/po/de_DE.po 2012-10-30 14:08:28.409871746 +0100 @@ -0,0 +1,62 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Klaus Schmidinger , 2000 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.7.27\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-10-30 14:10+0200\n" +"PO-Revision-Date: 2012-10-30 14:10+0200\n" +"Last-Translator: Klaus Schmidinger \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "VideoCD" +msgstr "VideoCD" + +msgid "No VideoCD detected" +msgstr "Keine VideoCD erkannt" + +msgid "Eject" +msgstr "Auswerfen" + +msgid "Key$Play" +msgstr "" + +msgid "Tracks" +msgstr "Tracks" + +msgid "SPI" +msgstr "SPI" + +msgid "Jump: " +msgstr "" + +msgid "VCD" +msgstr "VCD" + +msgid "Setup.VCD$Drive speed" +msgstr "Laufwerkgeschwindigkeit" + +msgid "Setup.VCD$Broken mode" +msgstr "Nicht standardkonform" + +msgid "Setup.VCD$Hide main menu entry" +msgstr "Hauptmenüeintrag ausblenden" + +msgid "Setup.VCD$Play tracks continuously" +msgstr "Tracks nacheinander abspielen" + +msgid "Setup.VCD$Autostart replay" +msgstr "Wiedergabe automatisch starten" + +msgid "Setup.VCD$Play sequence replay" +msgstr "Wiedergabe nach Sequenz" + +msgid "No disc inserted" +msgstr "Keine CD eingelegt" diff -Naur vcd-0.9.old/po/el_GR.po vcd-0.9/po/el_GR.po --- vcd-0.9.old/po/el_GR.po 1970-01-01 01:00:00.000000000 +0100 +++ vcd-0.9/po/el_GR.po 2012-10-30 14:08:28.410871749 +0100 @@ -0,0 +1,62 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Dimitrios Dimitrakos , 2002 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.7.27\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-10-30 14:10+0200\n" +"PO-Revision-Date: 2012-10-30 14:10+0200\n" +"Last-Translator: Dimitrios Dimitrakos \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-7\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "VideoCD" +msgstr "" + +msgid "No VideoCD detected" +msgstr "" + +msgid "Eject" +msgstr "Exsagogi" + +msgid "Key$Play" +msgstr "" + +msgid "Tracks" +msgstr "" + +msgid "SPI" +msgstr "" + +msgid "Jump: " +msgstr "" + +msgid "VCD" +msgstr "" + +msgid "Setup.VCD$Drive speed" +msgstr "" + +msgid "Setup.VCD$Broken mode" +msgstr "" + +msgid "Setup.VCD$Hide main menu entry" +msgstr "" + +msgid "Setup.VCD$Play tracks continuously" +msgstr "" + +msgid "Setup.VCD$Autostart replay" +msgstr "" + +msgid "Setup.VCD$Play sequence replay" +msgstr "" + +msgid "No disc inserted" +msgstr "" diff -Naur vcd-0.9.old/po/es_ES.po vcd-0.9/po/es_ES.po --- vcd-0.9.old/po/es_ES.po 1970-01-01 01:00:00.000000000 +0100 +++ vcd-0.9/po/es_ES.po 2012-10-30 14:08:28.410871749 +0100 @@ -0,0 +1,62 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Ruben Nunez Francisco , 2002 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.7.27\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-10-30 14:10+0200\n" +"PO-Revision-Date: 2012-10-30 14:10+0200\n" +"Last-Translator: Ruben Nunez Francisco \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "VideoCD" +msgstr "" + +msgid "No VideoCD detected" +msgstr "" + +msgid "Eject" +msgstr "Expulsar" + +msgid "Key$Play" +msgstr "" + +msgid "Tracks" +msgstr "" + +msgid "SPI" +msgstr "" + +msgid "Jump: " +msgstr "" + +msgid "VCD" +msgstr "" + +msgid "Setup.VCD$Drive speed" +msgstr "" + +msgid "Setup.VCD$Broken mode" +msgstr "" + +msgid "Setup.VCD$Hide main menu entry" +msgstr "" + +msgid "Setup.VCD$Play tracks continuously" +msgstr "" + +msgid "Setup.VCD$Autostart replay" +msgstr "" + +msgid "Setup.VCD$Play sequence replay" +msgstr "" + +msgid "No disc inserted" +msgstr "" diff -Naur vcd-0.9.old/po/et_EE.po vcd-0.9/po/et_EE.po --- vcd-0.9.old/po/et_EE.po 1970-01-01 01:00:00.000000000 +0100 +++ vcd-0.9/po/et_EE.po 2012-10-30 14:08:28.411871753 +0100 @@ -0,0 +1,62 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Arthur Konovalov , 2004 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.7.27\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-10-30 14:10+0200\n" +"PO-Revision-Date: 2012-10-30 14:10+0200\n" +"Last-Translator: Arthur Konovalov \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-13\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "VideoCD" +msgstr "" + +msgid "No VideoCD detected" +msgstr "" + +msgid "Eject" +msgstr "" + +msgid "Key$Play" +msgstr "" + +msgid "Tracks" +msgstr "" + +msgid "SPI" +msgstr "" + +msgid "Jump: " +msgstr "" + +msgid "VCD" +msgstr "" + +msgid "Setup.VCD$Drive speed" +msgstr "" + +msgid "Setup.VCD$Broken mode" +msgstr "" + +msgid "Setup.VCD$Hide main menu entry" +msgstr "" + +msgid "Setup.VCD$Play tracks continuously" +msgstr "" + +msgid "Setup.VCD$Autostart replay" +msgstr "" + +msgid "Setup.VCD$Play sequence replay" +msgstr "" + +msgid "No disc inserted" +msgstr "" diff -Naur vcd-0.9.old/po/fi_FI.po vcd-0.9/po/fi_FI.po --- vcd-0.9.old/po/fi_FI.po 1970-01-01 01:00:00.000000000 +0100 +++ vcd-0.9/po/fi_FI.po 2012-10-30 14:08:28.411871753 +0100 @@ -0,0 +1,65 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Hannu Savolainen , 2002 +# Jaakko Hyvätti , 2002 +# Niko Tarnanen , 2003 +# Rolf Ahrenberg , 2003 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.7.27\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-10-30 14:10+0200\n" +"PO-Revision-Date: 2012-10-30 14:10+0200\n" +"Last-Translator: Rolf Ahrenberg \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "VideoCD" +msgstr "" + +msgid "No VideoCD detected" +msgstr "" + +msgid "Eject" +msgstr "Avaa" + +msgid "Key$Play" +msgstr "" + +msgid "Tracks" +msgstr "" + +msgid "SPI" +msgstr "" + +msgid "Jump: " +msgstr "" + +msgid "VCD" +msgstr "" + +msgid "Setup.VCD$Drive speed" +msgstr "" + +msgid "Setup.VCD$Broken mode" +msgstr "" + +msgid "Setup.VCD$Hide main menu entry" +msgstr "" + +msgid "Setup.VCD$Play tracks continuously" +msgstr "" + +msgid "Setup.VCD$Autostart replay" +msgstr "" + +msgid "Setup.VCD$Play sequence replay" +msgstr "" + +msgid "No disc inserted" +msgstr "" diff -Naur vcd-0.9.old/po/fr_FR.po vcd-0.9/po/fr_FR.po --- vcd-0.9.old/po/fr_FR.po 1970-01-01 01:00:00.000000000 +0100 +++ vcd-0.9/po/fr_FR.po 2012-10-30 14:08:28.412871755 +0100 @@ -0,0 +1,65 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Jean-Claude Repetto , 2001 +# Olivier Jacques , 2003 +# Gregoire Favre , 2003 +# Nicolas Huillard , 2005 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.7.27\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-10-30 14:10+0200\n" +"PO-Revision-Date: 2012-10-30 14:10+0200\n" +"Last-Translator: Nicolas Huillard \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "VideoCD" +msgstr "" + +msgid "No VideoCD detected" +msgstr "" + +msgid "Eject" +msgstr "Ejection" + +msgid "Key$Play" +msgstr "" + +msgid "Tracks" +msgstr "" + +msgid "SPI" +msgstr "" + +msgid "Jump: " +msgstr "" + +msgid "VCD" +msgstr "" + +msgid "Setup.VCD$Drive speed" +msgstr "" + +msgid "Setup.VCD$Broken mode" +msgstr "" + +msgid "Setup.VCD$Hide main menu entry" +msgstr "" + +msgid "Setup.VCD$Play tracks continuously" +msgstr "" + +msgid "Setup.VCD$Autostart replay" +msgstr "" + +msgid "Setup.VCD$Play sequence replay" +msgstr "" + +msgid "No disc inserted" +msgstr "" diff -Naur vcd-0.9.old/po/hr_HR.po vcd-0.9/po/hr_HR.po --- vcd-0.9.old/po/hr_HR.po 1970-01-01 01:00:00.000000000 +0100 +++ vcd-0.9/po/hr_HR.po 2012-10-30 14:08:28.413871756 +0100 @@ -0,0 +1,63 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Drazen Dupor , 2004 +# Dino Ravnic , 2004 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.7.27\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-10-30 14:10+0200\n" +"PO-Revision-Date: 2012-10-30 14:10+0200\n" +"Last-Translator: Drazen Dupor \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-2\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "VideoCD" +msgstr "" + +msgid "No VideoCD detected" +msgstr "" + +msgid "Eject" +msgstr "" + +msgid "Key$Play" +msgstr "" + +msgid "Tracks" +msgstr "" + +msgid "SPI" +msgstr "" + +msgid "Jump: " +msgstr "" + +msgid "VCD" +msgstr "" + +msgid "Setup.VCD$Drive speed" +msgstr "" + +msgid "Setup.VCD$Broken mode" +msgstr "" + +msgid "Setup.VCD$Hide main menu entry" +msgstr "" + +msgid "Setup.VCD$Play tracks continuously" +msgstr "" + +msgid "Setup.VCD$Autostart replay" +msgstr "" + +msgid "Setup.VCD$Play sequence replay" +msgstr "" + +msgid "No disc inserted" +msgstr "" diff -Naur vcd-0.9.old/po/hu_HU.po vcd-0.9/po/hu_HU.po --- vcd-0.9.old/po/hu_HU.po 1970-01-01 01:00:00.000000000 +0100 +++ vcd-0.9/po/hu_HU.po 2012-10-30 14:08:28.414871756 +0100 @@ -0,0 +1,63 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Istvan Koenigsberger , 2002 +# Guido Josten , 2002 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.7.27\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-10-30 14:10+0200\n" +"PO-Revision-Date: 2012-10-30 14:10+0200\n" +"Last-Translator: Istvan Koenigsberger , Guido Josten \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-2\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "VideoCD" +msgstr "" + +msgid "No VideoCD detected" +msgstr "" + +msgid "Eject" +msgstr "Kidobni" + +msgid "Key$Play" +msgstr "" + +msgid "Tracks" +msgstr "" + +msgid "SPI" +msgstr "" + +msgid "Jump: " +msgstr "" + +msgid "VCD" +msgstr "" + +msgid "Setup.VCD$Drive speed" +msgstr "" + +msgid "Setup.VCD$Broken mode" +msgstr "" + +msgid "Setup.VCD$Hide main menu entry" +msgstr "" + +msgid "Setup.VCD$Play tracks continuously" +msgstr "" + +msgid "Setup.VCD$Autostart replay" +msgstr "" + +msgid "Setup.VCD$Play sequence replay" +msgstr "" + +msgid "No disc inserted" +msgstr "" diff -Naur vcd-0.9.old/po/it_IT.po vcd-0.9/po/it_IT.po --- vcd-0.9.old/po/it_IT.po 1970-01-01 01:00:00.000000000 +0100 +++ vcd-0.9/po/it_IT.po 2012-10-30 14:08:28.414871756 +0100 @@ -0,0 +1,64 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Alberto Carraro , 2001 +# Antonio Ospite , 2003 +# Sean Carlos , 2005 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.7.27\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-10-30 14:10+0200\n" +"PO-Revision-Date: 2012-10-30 14:10+0200\n" +"Last-Translator: Sean Carlos \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "VideoCD" +msgstr "VideoCD" + +msgid "No VideoCD detected" +msgstr "Nessun VideoCD trovato" + +msgid "Eject" +msgstr "Eject" + +msgid "Key$Play" +msgstr "" + +msgid "Tracks" +msgstr "Tracce" + +msgid "SPI" +msgstr "SPI" + +msgid "Jump: " +msgstr "" + +msgid "VCD" +msgstr "VCD" + +msgid "Setup.VCD$Drive speed" +msgstr "Velocità lettore" + +msgid "Setup.VCD$Broken mode" +msgstr "Mod. non standard" + +msgid "Setup.VCD$Hide main menu entry" +msgstr "Nascondi voce nel menu principale" + +msgid "Setup.VCD$Play tracks continuously" +msgstr "Riproduci tracce in modo continuo" + +msgid "Setup.VCD$Autostart replay" +msgstr "Riproduzione automatica all'avvio" + +msgid "Setup.VCD$Play sequence replay" +msgstr "Riproduci in sequenza" + +msgid "No disc inserted" +msgstr "Nessun disco inserito" diff -Naur vcd-0.9.old/po/nl_NL.po vcd-0.9/po/nl_NL.po --- vcd-0.9.old/po/nl_NL.po 1970-01-01 01:00:00.000000000 +0100 +++ vcd-0.9/po/nl_NL.po 2012-10-30 14:08:28.414871756 +0100 @@ -0,0 +1,64 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Arnold Niessen , 2001 +# Hans Dingemans , 2003 +# Maarten Wisse , 2005 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.7.27\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-10-30 14:10+0200\n" +"PO-Revision-Date: 2012-10-30 14:10+0200\n" +"Last-Translator: Maarten Wisse \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "VideoCD" +msgstr "" + +msgid "No VideoCD detected" +msgstr "" + +msgid "Eject" +msgstr "Eject" + +msgid "Key$Play" +msgstr "" + +msgid "Tracks" +msgstr "" + +msgid "SPI" +msgstr "" + +msgid "Jump: " +msgstr "" + +msgid "VCD" +msgstr "" + +msgid "Setup.VCD$Drive speed" +msgstr "" + +msgid "Setup.VCD$Broken mode" +msgstr "" + +msgid "Setup.VCD$Hide main menu entry" +msgstr "" + +msgid "Setup.VCD$Play tracks continuously" +msgstr "" + +msgid "Setup.VCD$Autostart replay" +msgstr "" + +msgid "Setup.VCD$Play sequence replay" +msgstr "" + +msgid "No disc inserted" +msgstr "" diff -Naur vcd-0.9.old/po/nn_NO.po vcd-0.9/po/nn_NO.po --- vcd-0.9.old/po/nn_NO.po 1970-01-01 01:00:00.000000000 +0100 +++ vcd-0.9/po/nn_NO.po 2012-10-30 14:08:28.414871756 +0100 @@ -0,0 +1,63 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Jørgen Tvedt , 2001 +# Truls Slevigen , 2002 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.7.27\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-10-30 14:10+0200\n" +"PO-Revision-Date: 2012-10-30 14:10+0200\n" +"Last-Translator: Truls Slevigen \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "VideoCD" +msgstr "" + +msgid "No VideoCD detected" +msgstr "" + +msgid "Eject" +msgstr "Eject" + +msgid "Key$Play" +msgstr "" + +msgid "Tracks" +msgstr "" + +msgid "SPI" +msgstr "" + +msgid "Jump: " +msgstr "" + +msgid "VCD" +msgstr "" + +msgid "Setup.VCD$Drive speed" +msgstr "" + +msgid "Setup.VCD$Broken mode" +msgstr "" + +msgid "Setup.VCD$Hide main menu entry" +msgstr "" + +msgid "Setup.VCD$Play tracks continuously" +msgstr "" + +msgid "Setup.VCD$Autostart replay" +msgstr "" + +msgid "Setup.VCD$Play sequence replay" +msgstr "" + +msgid "No disc inserted" +msgstr "" diff -Naur vcd-0.9.old/po/pl_PL.po vcd-0.9/po/pl_PL.po --- vcd-0.9.old/po/pl_PL.po 1970-01-01 01:00:00.000000000 +0100 +++ vcd-0.9/po/pl_PL.po 2012-10-30 14:08:28.414871756 +0100 @@ -0,0 +1,62 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Michael Rakowski , 2002 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.7.27\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-10-30 14:10+0200\n" +"PO-Revision-Date: 2012-10-30 14:10+0200\n" +"Last-Translator: Michael Rakowski \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-2\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "VideoCD" +msgstr "" + +msgid "No VideoCD detected" +msgstr "" + +msgid "Eject" +msgstr "Wyrzucenie" + +msgid "Key$Play" +msgstr "" + +msgid "Tracks" +msgstr "" + +msgid "SPI" +msgstr "" + +msgid "Jump: " +msgstr "" + +msgid "VCD" +msgstr "" + +msgid "Setup.VCD$Drive speed" +msgstr "" + +msgid "Setup.VCD$Broken mode" +msgstr "" + +msgid "Setup.VCD$Hide main menu entry" +msgstr "" + +msgid "Setup.VCD$Play tracks continuously" +msgstr "" + +msgid "Setup.VCD$Autostart replay" +msgstr "" + +msgid "Setup.VCD$Play sequence replay" +msgstr "" + +msgid "No disc inserted" +msgstr "" diff -Naur vcd-0.9.old/po/pt_PT.po vcd-0.9/po/pt_PT.po --- vcd-0.9.old/po/pt_PT.po 1970-01-01 01:00:00.000000000 +0100 +++ vcd-0.9/po/pt_PT.po 2012-10-30 14:08:28.415871755 +0100 @@ -0,0 +1,62 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Paulo Lopes , 2001 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.7.27\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-10-30 14:10+0200\n" +"PO-Revision-Date: 2012-10-30 14:10+0200\n" +"Last-Translator: Paulo Lopes \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "VideoCD" +msgstr "" + +msgid "No VideoCD detected" +msgstr "" + +msgid "Eject" +msgstr "Ejectar" + +msgid "Key$Play" +msgstr "" + +msgid "Tracks" +msgstr "" + +msgid "SPI" +msgstr "" + +msgid "Jump: " +msgstr "" + +msgid "VCD" +msgstr "" + +msgid "Setup.VCD$Drive speed" +msgstr "" + +msgid "Setup.VCD$Broken mode" +msgstr "" + +msgid "Setup.VCD$Hide main menu entry" +msgstr "" + +msgid "Setup.VCD$Play tracks continuously" +msgstr "" + +msgid "Setup.VCD$Autostart replay" +msgstr "" + +msgid "Setup.VCD$Play sequence replay" +msgstr "" + +msgid "No disc inserted" +msgstr "" diff -Naur vcd-0.9.old/po/ro_RO.po vcd-0.9/po/ro_RO.po --- vcd-0.9.old/po/ro_RO.po 1970-01-01 01:00:00.000000000 +0100 +++ vcd-0.9/po/ro_RO.po 2012-10-30 14:08:28.415871755 +0100 @@ -0,0 +1,63 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Paul Lacatus , 2002 +# Lucian Muresan , 2004 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.7.27\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-10-30 14:10+0200\n" +"PO-Revision-Date: 2012-10-30 14:10+0200\n" +"Last-Translator: Lucian Muresan \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-2\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "VideoCD" +msgstr "" + +msgid "No VideoCD detected" +msgstr "" + +msgid "Eject" +msgstr "Ejecteaza" + +msgid "Key$Play" +msgstr "" + +msgid "Tracks" +msgstr "" + +msgid "SPI" +msgstr "" + +msgid "Jump: " +msgstr "" + +msgid "VCD" +msgstr "" + +msgid "Setup.VCD$Drive speed" +msgstr "" + +msgid "Setup.VCD$Broken mode" +msgstr "" + +msgid "Setup.VCD$Hide main menu entry" +msgstr "" + +msgid "Setup.VCD$Play tracks continuously" +msgstr "" + +msgid "Setup.VCD$Autostart replay" +msgstr "" + +msgid "Setup.VCD$Play sequence replay" +msgstr "" + +msgid "No disc inserted" +msgstr "" diff -Naur vcd-0.9.old/po/ru_RU.po vcd-0.9/po/ru_RU.po --- vcd-0.9.old/po/ru_RU.po 1970-01-01 01:00:00.000000000 +0100 +++ vcd-0.9/po/ru_RU.po 2012-10-30 14:08:28.415871755 +0100 @@ -0,0 +1,62 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Vyacheslav Dikonov , 2004 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.7.27\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-10-30 14:10+0200\n" +"PO-Revision-Date: 2012-10-30 14:10+0200\n" +"Last-Translator: Vyacheslav Dikonov \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-5\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "VideoCD" +msgstr "" + +msgid "No VideoCD detected" +msgstr "" + +msgid "Eject" +msgstr "" + +msgid "Key$Play" +msgstr "" + +msgid "Tracks" +msgstr "" + +msgid "SPI" +msgstr "" + +msgid "Jump: " +msgstr "" + +msgid "VCD" +msgstr "" + +msgid "Setup.VCD$Drive speed" +msgstr "" + +msgid "Setup.VCD$Broken mode" +msgstr "" + +msgid "Setup.VCD$Hide main menu entry" +msgstr "" + +msgid "Setup.VCD$Play tracks continuously" +msgstr "" + +msgid "Setup.VCD$Autostart replay" +msgstr "" + +msgid "Setup.VCD$Play sequence replay" +msgstr "" + +msgid "No disc inserted" +msgstr "" diff -Naur vcd-0.9.old/po/sl_SI.po vcd-0.9/po/sl_SI.po --- vcd-0.9.old/po/sl_SI.po 1970-01-01 01:00:00.000000000 +0100 +++ vcd-0.9/po/sl_SI.po 2012-10-30 14:08:28.415871755 +0100 @@ -0,0 +1,63 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Miha Setina , 2000 +# Matjaz Thaler , 2003 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.7.27\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-10-30 14:10+0200\n" +"PO-Revision-Date: 2012-10-30 14:10+0200\n" +"Last-Translator: Matjaz Thaler \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-2\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "VideoCD" +msgstr "" + +msgid "No VideoCD detected" +msgstr "" + +msgid "Eject" +msgstr "Izvrzi" + +msgid "Key$Play" +msgstr "" + +msgid "Tracks" +msgstr "" + +msgid "SPI" +msgstr "" + +msgid "Jump: " +msgstr "" + +msgid "VCD" +msgstr "" + +msgid "Setup.VCD$Drive speed" +msgstr "" + +msgid "Setup.VCD$Broken mode" +msgstr "" + +msgid "Setup.VCD$Hide main menu entry" +msgstr "" + +msgid "Setup.VCD$Play tracks continuously" +msgstr "" + +msgid "Setup.VCD$Autostart replay" +msgstr "" + +msgid "Setup.VCD$Play sequence replay" +msgstr "" + +msgid "No disc inserted" +msgstr "" diff -Naur vcd-0.9.old/po/sv_SE.po vcd-0.9/po/sv_SE.po --- vcd-0.9.old/po/sv_SE.po 1970-01-01 01:00:00.000000000 +0100 +++ vcd-0.9/po/sv_SE.po 2012-10-30 14:08:28.415871755 +0100 @@ -0,0 +1,63 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Tomas Prybil , 2002 +# Jan Ekholm , 2003 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.7.27\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-10-30 14:10+0200\n" +"PO-Revision-Date: 2012-10-30 14:10+0200\n" +"Last-Translator: Tomas Prybil \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "VideoCD" +msgstr "" + +msgid "No VideoCD detected" +msgstr "" + +msgid "Eject" +msgstr "Mata ut" + +msgid "Key$Play" +msgstr "" + +msgid "Tracks" +msgstr "" + +msgid "SPI" +msgstr "" + +msgid "Jump: " +msgstr "" + +msgid "VCD" +msgstr "" + +msgid "Setup.VCD$Drive speed" +msgstr "" + +msgid "Setup.VCD$Broken mode" +msgstr "" + +msgid "Setup.VCD$Hide main menu entry" +msgstr "" + +msgid "Setup.VCD$Play tracks continuously" +msgstr "" + +msgid "Setup.VCD$Autostart replay" +msgstr "" + +msgid "Setup.VCD$Play sequence replay" +msgstr "" + +msgid "No disc inserted" +msgstr "" diff -Naur vcd-0.9.old/po/tr_TR.po vcd-0.9/po/tr_TR.po --- vcd-0.9.old/po/tr_TR.po 1970-01-01 01:00:00.000000000 +0100 +++ vcd-0.9/po/tr_TR.po 2012-10-30 14:08:28.416871754 +0100 @@ -0,0 +1,62 @@ +# VDR plugin language source file. +# Copyright (C) 2007 Klaus Schmidinger +# This file is distributed under the same license as the VDR package. +# Oktay Yolgeçen , 2007 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.7.27\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-10-30 14:10+0200\n" +"PO-Revision-Date: 2012-10-30 14:10+0200\n" +"Last-Translator: Oktay Yolgeçen \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-9\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "VideoCD" +msgstr "" + +msgid "No VideoCD detected" +msgstr "" + +msgid "Eject" +msgstr "" + +msgid "Key$Play" +msgstr "" + +msgid "Tracks" +msgstr "" + +msgid "SPI" +msgstr "" + +msgid "Jump: " +msgstr "" + +msgid "VCD" +msgstr "" + +msgid "Setup.VCD$Drive speed" +msgstr "" + +msgid "Setup.VCD$Broken mode" +msgstr "" + +msgid "Setup.VCD$Hide main menu entry" +msgstr "" + +msgid "Setup.VCD$Play tracks continuously" +msgstr "" + +msgid "Setup.VCD$Autostart replay" +msgstr "" + +msgid "Setup.VCD$Play sequence replay" +msgstr "" + +msgid "No disc inserted" +msgstr "" diff -Naur vcd-0.9.old/psd.c vcd-0.9/psd.c --- vcd-0.9.old/psd.c 2008-01-20 17:59:59.000000000 +0100 +++ vcd-0.9/psd.c 2012-10-30 14:02:55.840626223 +0100 @@ -21,7 +21,7 @@ */ -#include "i18n.h" +#include #include "psd.h" #include "psdcontrol.h" diff -Naur vcd-0.9.old/psdcontrol.c vcd-0.9/psdcontrol.c --- vcd-0.9.old/psdcontrol.c 2008-01-16 13:30:53.000000000 +0100 +++ vcd-0.9/psdcontrol.c 2012-10-30 14:02:42.015616358 +0100 @@ -27,7 +27,7 @@ #include #include -#include "i18n.h" +#include #include "functions.h" #include "setup.h" #include "psdcontrol.h" diff -Naur vcd-0.9.old/setup.c vcd-0.9/setup.c --- vcd-0.9.old/setup.c 2008-01-15 16:27:44.000000000 +0100 +++ vcd-0.9/setup.c 2012-10-30 14:02:26.782605650 +0100 @@ -22,7 +22,7 @@ #include #include "setup.h" -#include "i18n.h" +#include cVcdSetupData VcdSetupData; diff -Naur vcd-0.9.old/vcd.c vcd-0.9/vcd.c --- vcd-0.9.old/vcd.c 2008-01-16 13:33:17.000000000 +0100 +++ vcd-0.9/vcd.c 2012-10-30 14:01:52.628580657 +0100 @@ -25,7 +25,7 @@ #include #include #include "functions.h" -#include "i18n.h" +#include #include "menu.h" #include "menucontrol.h" #include "psdcontrol.h" @@ -100,7 +100,6 @@ bool cPluginVcd::Start(void) { - RegisterI18n(Phrases); if (option_vcd) vcd = new cVcd(option_vcd); else