summaryrefslogtreecommitdiff
path: root/libtemplate
diff options
context:
space:
mode:
Diffstat (limited to 'libtemplate')
-rw-r--r--libtemplate/globals.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/libtemplate/globals.c b/libtemplate/globals.c
index 9e9ce5f..af83da2 100644
--- a/libtemplate/globals.c
+++ b/libtemplate/globals.c
@@ -6,18 +6,7 @@ cGlobals::cGlobals(void) {
fonts.insert(pair<string, string>("vdrOsd", Setup.FontOsd));
fonts.insert(pair<string, string>("vdrFix", Setup.FontFix));
fonts.insert(pair<string, string>("vdrSml", Setup.FontSml));
-
- string loc = setlocale(LC_NAME, NULL);
- size_t index = loc.find_first_of(".");
- string langISO = "";
- if (index > 0) {
- langISO = loc.substr(0, index);
- }
- if (langISO.size() == 5) {
- language = langISO.c_str();
- } else {
- language = "en_EN";
- }
+ language = Setup.OSDLanguage;
dsyslog("skindesigner: using language %s", language.c_str());
}