diff options
Diffstat (limited to 'text2skin.c')
-rw-r--r-- | text2skin.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/text2skin.c b/text2skin.c index bd52294..efd236a 100644 --- a/text2skin.c +++ b/text2skin.c @@ -3,13 +3,15 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: text2skin.c,v 1.10 2004/06/05 16:52:44 lordjaxom Exp $ + * $Id: text2skin.c,v 1.13 2004/06/07 19:08:42 lordjaxom Exp $ */ #include "text2skin.h" +#include "setup.h" +#include "i18n.h" #include "loader.h" -const char *cText2SkinPlugin::VERSION = "0.0.1"; +const char *cText2SkinPlugin::VERSION = "0.0.2"; const char *cText2SkinPlugin::THEMEVERSION = "0.0.1"; const char *cText2SkinPlugin::DESCRIPTION = "Loader for text-based skins"; @@ -23,13 +25,14 @@ cText2SkinPlugin::~cText2SkinPlugin() bool cText2SkinPlugin::Start(void) { + RegisterI18n(Phrases); cText2SkinLoader::Start(); return true; } cMenuSetupPage *cText2SkinPlugin::SetupMenu(void) { - return NULL; + return new cText2SkinSetupPage; } bool cText2SkinPlugin::SetupParse(const char *Name, const char *Value) |