diff --git a/changelog.md b/changelog.md index a3a1edcb6bb..66d20e98a37 100644 --- a/changelog.md +++ b/changelog.md @@ -58,6 +58,8 @@ Esperanto, French, Italian, Korean, Portuguese (Brazil), Russian, Spanish, Turkish * Fix Rename Unit dialog having untranslated text (issue #4569). + * Use /translations instead of /translations to find core + translation catalogues on Windows. ### Terrains * Add Stone Walls variation Catacombs (Xot) including some overlays * New dwarf castle variations: Non-cave (Cf), ruined (Cfr) and snow (Cfa) diff --git a/src/filesystem_common.cpp b/src/filesystem_common.cpp index c6815de6055..afb52feceec 100644 --- a/src/filesystem_common.cpp +++ b/src/filesystem_common.cpp @@ -78,7 +78,7 @@ std::string get_addons_dir() std::string get_intl_dir() { #ifdef _WIN32 - return get_cwd() + "/translations"; + return game_config::path + "/" LOCALEDIR; #else #ifdef USE_INTERNAL_DATA