summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-03-24 14:54:40 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-03-24 14:54:40 +0200
commitd462e946b75d23a038945bebc725432cce3ee561 (patch)
treeeaec3c042dbb5329563adca169516ea5e84526fb /src
parent9cbbe9d2835826c2822054e75a2a53c3227d47f1 (diff)
Preferences: Added Russian and German UI languages
Diffstat (limited to 'src')
-rw-r--r--src/ui/util.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ui/util.c b/src/ui/util.c
index d61601f5..70795686 100644
--- a/src/ui/util.c
+++ b/src/ui/util.c
@@ -1830,7 +1830,8 @@ iWidget *makePreferences_Widget(void) {
1830 const iMenuItem langItems[] = { 1830 const iMenuItem langItems[] = {
1831 { "${lang.en}", 0, 0, "uilang id:en" }, 1831 { "${lang.en}", 0, 0, "uilang id:en" },
1832 { "${lang.fi}", 0, 0, "uilang id:fi" }, 1832 { "${lang.fi}", 0, 0, "uilang id:fi" },
1833 //{ "${lang.ru}", 0, 0, "uilang id:ru" }, 1833 { "${lang.ru}", 0, 0, "uilang id:ru" },
1834 { "${lang.de}", 0, 0, "uilang id:de" },
1834 }; 1835 };
1835 pushBackN_Array(uiLangs, langItems, iElemCount(langItems)); 1836 pushBackN_Array(uiLangs, langItems, iElemCount(langItems));
1836 sort_Array(uiLangs, cmp_MenuItem_); 1837 sort_Array(uiLangs, cmp_MenuItem_);