summaryrefslogtreecommitdiff
path: root/i18n.c
blob: a03ecb705bf509616e64af52627de946673afc13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * $Id: i18n.c,v 1.4 2005/05/30 09:23:41 lordjaxom Exp $
 */

#include "i18n.h"
#include <vdr/config.h>

cText2SkinI18n::cText2SkinI18n(const char *Skin)
{
	mIdentity   = std::string("vdr-"PLUGIN_NAME_I18N"-") + Skin;
	I18nRegister(mIdentity.substr(mIdentity.find('-') + 1).c_str());
}