diff options
author | Joerg Bornkessel <hd_brummy@gentoo.org> | 2014-04-26 23:00:06 +0200 |
---|---|---|
committer | Joerg Bornkessel <hd_brummy@gentoo.org> | 2014-04-26 23:00:06 +0200 |
commit | a237b9e8bb92f75d71964c7f45084319a9f63f36 (patch) | |
tree | 0418797d3139329b0bc97ff4113355890b927b9b | |
parent | 060bf702246a0d169d2cda512468ac1ba91f376b (diff) | |
download | vdr-plugin-audiorecorder-a237b9e8bb92f75d71964c7f45084319a9f63f36.tar.gz vdr-plugin-audiorecorder-a237b9e8bb92f75d71964c7f45084319a9f63f36.tar.bz2 |
removed i18n language handling
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | audiorecorder.c | 2 | ||||
-rw-r--r-- | audiorecorder.h | 2 | ||||
-rw-r--r-- | mainmenu.h | 2 |
4 files changed, 1 insertions, 7 deletions
@@ -74,7 +74,7 @@ endif ### The object files (add further files here): -OBJS = $(PLUGIN).o mainmenu.o browse.o browse-item.o column.o dispatcher.o audioreceiver.o postdata.o trackinfo.o postproc.o rds.o convert.o cache.o xml-cache.o xml-base.o setup.o mpa-frame.o audiorecorder_i18n.o +OBJS = $(PLUGIN).o mainmenu.o browse.o browse-item.o column.o dispatcher.o audioreceiver.o postdata.o trackinfo.o postproc.o rds.o convert.o cache.o xml-cache.o xml-base.o setup.o mpa-frame.o ### The main target: diff --git a/audiorecorder.c b/audiorecorder.c index 6dd0fb4..d9a1609 100644 --- a/audiorecorder.c +++ b/audiorecorder.c @@ -145,8 +145,6 @@ bool cPluginAudiorecorder::Initialize(void) cfg.append(strdup(ConfigDirectory(PLUGIN_NAME_I18N))); cfg.append("/audiorecorder.conf"); - RegisterI18n(Phrases); - audio_codecs[0] = "mp2"; audio_codecs[1] = "libmp3lame"; audio_codecs[2] = "mp3"; diff --git a/audiorecorder.h b/audiorecorder.h index ce49c76..3ec9c3c 100644 --- a/audiorecorder.h +++ b/audiorecorder.h @@ -13,8 +13,6 @@ #include <sstream> #include <string> -#include "audiorecorder_i18n.h" - class cPluginAudiorecorder : public cPlugin { private: cDispatcher *dispatcher; @@ -13,8 +13,6 @@ #include <string> -#include "audiorecorder_i18n.h" - class cMainmenu : public cOsdMenu { private: |