mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
d77ce49c75
PREFIX/share/locale should be searched for translations not only on Linux.
20 lines
650 B
Diff
20 lines
650 B
Diff
diff --git a/src/translations.cpp b/src/translations.cpp
|
|
index 3a86291..e6c5f84 100644
|
|
--- a/src/translations.cpp
|
|
+++ b/src/translations.cpp
|
|
@@ -176,15 +176,11 @@ void set_language()
|
|
|
|
// Step 2. Bind to gettext domain.
|
|
std::string locale_dir;
|
|
-#if (defined __linux__ || (defined MACOSX && !defined TILES))
|
|
if( !FILENAMES["base_path"].empty() ) {
|
|
locale_dir = FILENAMES["base_path"] + "share/locale";
|
|
} else {
|
|
locale_dir = "lang/mo";
|
|
}
|
|
-#else
|
|
- locale_dir = "lang/mo";
|
|
-#endif // __linux__
|
|
|
|
const char *locale_dir_char = locale_dir.c_str();
|
|
bindtextdomain( "cataclysm-dda", locale_dir_char );
|