summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/gui/setup_theme.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/setup_theme.cpp b/src/gui/setup_theme.cpp
index dbad66081..04d4c5412 100644
--- a/src/gui/setup_theme.cpp
+++ b/src/gui/setup_theme.cpp
@@ -85,7 +85,7 @@ class ThemesModel : public NamesModel
public:
ThemesModel()
{
- mNames.push_back("(default)");
+ mNames.push_back(gettext("(default)"));
Theme::fillSkinsList(mNames);
}
@@ -172,7 +172,7 @@ public:
if (i >= getNumberOfElements() || i < 0)
return _("???");
- return LANG_NAME[i].name;
+ return gettext(LANG_NAME[i].name.c_str());
}
};