--- Makefile 2012-10-27 23:58:29.748838305 +0200 +++ Makefile 2012-10-28 00:53:03.673945532 +0200 @@ -48,9 +48,7 @@ ### The object files (add further files here): -COMMONOBJS = i18n.o \ - \ - tools/source.o tools/select.o tools/socket.o tools/tools.o +COMMONOBJS = tools/source.o tools/select.o tools/socket.o tools/tools.o SERVEROBJS = $(PLUGIN).o \ --- ffnetdev.c 2012-10-27 23:58:30.106838685 +0200 +++ ffnetdev.c 2012-10-28 00:53:44.707969645 +0200 @@ -10,7 +10,6 @@ #include -#include "i18n.h" #include "tsworker.h" #include "netosd.h" #include "ffnetdev.h" @@ -138,7 +137,6 @@ bool cPluginFFNetDev::Start(void) { // Start any background activities the plugin shall perform. - RegisterI18n(Phrases); cOSDWorker::Init(OSDPort, this); --- i18n.h 2006-01-24 14:20:25.000000000 +0100 +++ i18n.h 1970-01-01 01:00:00.000000000 +0100 @@ -1,15 +0,0 @@ -/* - * i18n.h: Internationalization - * - * See the README file for copyright information and how to reach the author. - * - */ - -#ifndef _I18N__H -#define _I18N__H - -#include - -extern const tI18nPhrase Phrases[]; - -#endif //_I18N__H --- i18n.c 2006-01-24 14:20:23.000000000 +0100 +++ i18n.c 1970-01-01 01:00:00.000000000 +0100 @@ -1,44 +0,0 @@ -/* - * i18n.c: Internationalization - * - * See the README file for copyright information and how to reach the author. - * - */ - -#include "i18n.h" - -const tI18nPhrase Phrases[] = { - { "Full Featured Network Device for Streaming", - "Full Featured Network Device for Streaming", - "",// TODO - "",// TODO - "",// TODO - "",// TODO - "",// TODO - "",// TODO - "",// TODO - "",// TODO - "",// TODO - "",// TODO - "",// TODO - "",// TODO - "",// TODO - }, - { "auto set as primary device", - "auto set as primary device", - "",// TODO - "",// TODO - "",// TODO - "",// TODO - "",// TODO - "",// TODO - "",// TODO - "",// TODO - "",// TODO - "",// TODO - "",// TODO - "",// TODO - "",// TODO - }, - { NULL } - };