summaryrefslogtreecommitdiff
path: root/text2skin.c
diff options
context:
space:
mode:
authorlordjaxom <lordjaxom>2005-01-15 21:02:40 +0000
committerlordjaxom <lordjaxom>2005-01-15 21:02:40 +0000
commitd94cae36d3e53814684864b3f4a8017180d643f5 (patch)
treeb4ae958d52d5207b04d0de38d0e91d5fa02883d6 /text2skin.c
parent42d54c80ef8591d5ad3ec406e37a138bd8c962e1 (diff)
downloadvdr-plugin-text2skin-d94cae36d3e53814684864b3f4a8017180d643f5.tar.gz
vdr-plugin-text2skin-d94cae36d3e53814684864b3f4a8017180d643f5.tar.bz2
- fixed last language initialization
Diffstat (limited to 'text2skin.c')
-rw-r--r--text2skin.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/text2skin.c b/text2skin.c
index 91133fb..5e314cd 100644
--- a/text2skin.c
+++ b/text2skin.c
@@ -3,7 +3,7 @@
*
* See the README file for copyright information and how to reach the author.
*
- * $Id: text2skin.c,v 1.3 2005/01/05 19:31:39 lordjaxom Exp $
+ * $Id: text2skin.c,v 1.4 2005/01/15 21:02:40 lordjaxom Exp $
*/
#include "text2skin.h"
@@ -11,6 +11,7 @@
#include "menu.h"
#include "i18n.h"
#include "loader.h"
+#include "status.h"
const char *cText2SkinPlugin::VERSION = "1.0-rc1";
const char *cText2SkinPlugin::SKINVERSION = "1.0";
@@ -24,6 +25,7 @@ cText2SkinPlugin::~cText2SkinPlugin() {
bool cText2SkinPlugin::Start(void) {
RegisterI18n(Phrases);
+ Text2SkinStatus.SetLanguage(Setup.OSDLanguage);
cText2SkinLoader::Start();
return true;
}