aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/util.cpp1
-rw-r--r--common/util.h3
2 files changed, 3 insertions, 1 deletions
diff --git a/common/util.cpp b/common/util.cpp
index 05deda925b..4f16fe5a1d 100644
--- a/common/util.cpp
+++ b/common/util.cpp
@@ -146,6 +146,7 @@ static const struct LanguageDescription languages[] = {
{"gb", "English", EN_GRB},
{"se", "Swedish", SE_SWE},
{"hb", "Hebrew", HB_HEB},
+ {"ru", "Russian", RU_RUS},
{0, 0, UNK_LANG}
};
diff --git a/common/util.h b/common/util.h
index d647b88f7b..c4e4eeef81 100644
--- a/common/util.h
+++ b/common/util.h
@@ -107,7 +107,8 @@ enum Language {
KO_KOR = 8,
SE_SWE = 9,
EN_GRB = 10,
- HB_HEB = 20
+ HB_HEB = 20,
+ RU_RUS = 21
};
/** Convert a string containing a language name into a Language enum value. */