diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-01-06 23:15:48 +0100 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-01-06 15:21:23 -0700 |
commit | 8cb177d47fb23408d9b964b4c5fd24782c242401 (patch) | |
tree | f22b7c80410c4c165eced59ef312f42bc605c58b /src/main.cpp | |
parent | bd28cda98c51df0ef09ebaa638db43788e1855c5 (diff) | |
download | mana-8cb177d47fb23408d9b964b4c5fd24782c242401.tar.gz mana-8cb177d47fb23408d9b964b4c5fd24782c242401.tar.bz2 mana-8cb177d47fb23408d9b964b4c5fd24782c242401.tar.xz mana-8cb177d47fb23408d9b964b4c5fd24782c242401.zip |
Correct the codeset for translations to be UTF-8
As on the mainline client
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index c85b5aa3..ea1f6422 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -708,6 +708,7 @@ int main(int argc, char *argv[]) #endif setlocale(LC_MESSAGES, ""); bindtextdomain("aethyra", LOCALEDIR); + bind_textdomain_codeset("aethyra", "UTF-8"); textdomain("aethyra"); #endif |