diff options
author | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-01-03 15:54:31 +0000 |
---|---|---|
committer | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-01-03 15:54:31 +0000 |
commit | 6b296b95881b97185c721a1acb15d35b6220be99 (patch) | |
tree | 794b3d6cd2d69cf53f85fb3f5564a198050e75c1 /live.cpp | |
parent | f80ac81e7a467d86ab238b0d61539a2e5ced862b (diff) | |
download | vdr-plugin-live-6b296b95881b97185c721a1acb15d35b6220be99.tar.gz vdr-plugin-live-6b296b95881b97185c721a1acb15d35b6220be99.tar.bz2 |
- added internationalization
Diffstat (limited to 'live.cpp')
-rw-r--r-- | live.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -3,11 +3,12 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: live.cpp,v 1.3 2007/01/02 21:56:37 lordjaxom Exp $ + * $Id: live.cpp,v 1.4 2007/01/03 15:54:31 lordjaxom Exp $ */ #include <memory> #include <vdr/plugin.h> +#include "i18n.h" #include "setup.h" #include "thread.h" @@ -52,6 +53,7 @@ bool Plugin::ProcessArgs(int argc, char *argv[]) bool Plugin::Start(void) { + RegisterI18n( vdrlive::Phrases ); // XXX error handling m_thread.reset( new ServerThread ); m_thread->Start(); |