1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Perform some quality assurance for translation strings (#11375)

This commit is contained in:
Wuzzy 2021-06-23 16:35:50 +00:00 committed by GitHub
parent c60a146e22
commit 51bf4a6e26
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 9 deletions

View file

@ -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;
}