Skip to content

Commit

Permalink
GUI: add a translation prefix
Browse files Browse the repository at this point in the history
Depending on the context there are different possible word
to translate 'to' with.

[ci skip]

(cherry-picked from commit fd8473e)
  • Loading branch information
sevu committed Oct 7, 2018
1 parent 13e16b4 commit 66f46b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/dialogs/multiplayer/mp_create_game.cpp
Expand Up @@ -732,7 +732,7 @@ void mp_create_game::update_details(window& win)
const int p_max = current_campaign->max_players();

if(p_max > p_min) {
players.set_label(VGETTEXT("$min to $max", {{"min", std::to_string(p_min)}, {"max", std::to_string(p_max)}}));
players.set_label(VGETTEXT("number of players^$min to $max", {{"min", std::to_string(p_min)}, {"max", std::to_string(p_max)}}));
} else {
players.set_label(std::to_string(p_min));
}
Expand Down

0 comments on commit 66f46b6

Please sign in to comment.