diff options
author | lordjaxom <lordjaxom> | 2004-06-07 19:09:34 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2004-06-07 19:09:34 +0000 |
commit | e0de96fc7168daeaf414fb6196e08969468427d2 (patch) | |
tree | de7f2dfb83796a7c77e5600a23b8b6b26f284796 /text2skin.c | |
parent | 6094765d94e4caaf0813039dff826b731f277753 (diff) | |
download | vdr-plugin-text2skin-e0de96fc7168daeaf414fb6196e08969468427d2.tar.gz vdr-plugin-text2skin-e0de96fc7168daeaf414fb6196e08969468427d2.tar.bz2 |
- fixed Timebar which sometimes displayed something beyond 100%v0.0.2
- fixed scrolling in EPG detail display
- added "MenuEventEndTime", "MenuEventVPSTime" and "MenuEventDate"
- added "DateTimeF" and "MenuEventDateTimeF" for free formattable dates
- added parameter format that holds the format string for the above items
- implemented setup menu to flush image cache
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) |