diff options
author | Perttu Ahola <celeron55@gmail.com> | 2011-07-23 15:50:05 +0300 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2011-07-23 15:50:05 +0300 |
commit | f17cfb35d1bd54e098c0e9df7a77d32b6126ccdf (patch) | |
tree | baec1331ec077ce4b5c6acb46f7717e09deecdae /src/main.cpp | |
parent | 3882536d40656564b31c20008b55dfd77e848304 (diff) | |
parent | 7da02e05a6b97eb70fd17abdfdb38d8f99fabad9 (diff) | |
download | minetest-f17cfb35d1bd54e098c0e9df7a77d32b6126ccdf.tar.gz minetest-f17cfb35d1bd54e098c0e9df7a77d32b6126ccdf.tar.bz2 minetest-f17cfb35d1bd54e098c0e9df7a77d32b6126ccdf.zip |
uh, i guess this now merges the new delta stuff?
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp index 505f82fc7..9a1e1960f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1139,9 +1139,9 @@ int main(int argc, char *argv[]) // Create user data directory
fs::CreateDir(porting::path_userdata);
- setlocale(LC_ALL, "");
- bindtextdomain("minetest-c55", (porting::path_userdata+"/locale").c_str());
- textdomain("minetest-c55");
+ setlocale(LC_MESSAGES, ""); + bindtextdomain("minetest", (porting::path_userdata+"/locale").c_str());
+ textdomain("minetest");
// Initialize debug streams
#ifdef RUN_IN_PLACE
|