diff options
author | Wuzzy <wuzzy2@mail.ru> | 2021-06-23 16:35:50 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-23 17:35:50 +0100 |
commit | 51bf4a6e26f9eca461ae88181b06b517afc4d656 (patch) | |
tree | e5a7f440789ffc2acac48d475fe3d2d1148d297e /src/client | |
parent | c60a146e2291f7a55a3e5fd0447bd393b063ab1c (diff) | |
download | minetest-51bf4a6e26f9eca461ae88181b06b517afc4d656.tar.gz minetest-51bf4a6e26f9eca461ae88181b06b517afc4d656.tar.bz2 minetest-51bf4a6e26f9eca461ae88181b06b517afc4d656.zip |
Perform some quality assurance for translation strings (#11375)
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/clientlauncher.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/clientlauncher.cpp b/src/client/clientlauncher.cpp index 13e7aefcf..6ab610670 100644 --- a/src/client/clientlauncher.cpp +++ b/src/client/clientlauncher.cpp @@ -512,8 +512,8 @@ bool ClientLauncher::launch_game(std::string &error_message, // Load gamespec for required game start_data.game_spec = findWorldSubgame(worldspec.path); if (!start_data.game_spec.isValid()) { - error_message = gettext("Could not find or load game \"") - + worldspec.gameid + "\""; + error_message = gettext("Could not find or load game: ") + + worldspec.gameid; errorstream << error_message << std::endl; return false; } |