diff options
author | ShadowNinja <shadowninja@minetest.net> | 2016-02-19 19:55:31 -0500 |
---|---|---|
committer | ShadowNinja <shadowninja@minetest.net> | 2016-02-19 19:56:34 -0500 |
commit | a44393e43a39d2b78ff6673fc646be44698c9d37 (patch) | |
tree | 8705a38af2c83deaf0e8bf38a826b564604f4493 /src | |
parent | 1b9aef43c94a79ca58f488bbfee8c40ab5b5b5b0 (diff) | |
download | minetest-a44393e43a39d2b78ff6673fc646be44698c9d37.tar.gz minetest-a44393e43a39d2b78ff6673fc646be44698c9d37.tar.bz2 minetest-a44393e43a39d2b78ff6673fc646be44698c9d37.zip |
Don't print locale directory error message when GetText is disabled
Also, downgrade the error to a warning.
Diffstat (limited to 'src')
-rw-r--r-- | src/porting.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/porting.cpp b/src/porting.cpp index fd1915b0d..98b85b7d0 100644 --- a/src/porting.cpp +++ b/src/porting.cpp @@ -558,8 +558,9 @@ void initializePaths() infostream << "Detected user path: " << path_user << std::endl; infostream << "Detected cache path: " << path_cache << std::endl; +#ifdef USE_GETTEXT bool found_localedir = false; -#ifdef STATIC_LOCALEDIR +# ifdef STATIC_LOCALEDIR if (STATIC_LOCALEDIR[0] && fs::PathExists(STATIC_LOCALEDIR)) { found_localedir = true; path_locale = STATIC_LOCALEDIR; @@ -573,15 +574,16 @@ void initializePaths() << "(RUN_IN_PLACE or CUSTOM_LOCALEDIR)." << std::endl; } } -#else +# else path_locale = getDataPath("locale"); if (fs::PathExists(path_locale)) { found_localedir = true; } -#endif +# endif if (!found_localedir) { - errorstream << "Couldn't find a locale directory!" << std::endl; + warningstream << "Couldn't find a locale directory!" << std::endl; } +#endif // USE_GETTEXT } |