mp: Use Title Case for replay mode combo box items, shorten an item

"Enter Blindfolded" is shorter than "Enter Game Blindfolded" and is
truncated in a less awkward fashion in English ("Enter Blindfold..."
instead of "Enter Game...").
This commit is contained in:
Ignacio R. Morelle 2015-01-15 22:16:00 -03:00
parent 04cdc8e447
commit 65da0a9862

View file

@ -881,9 +881,9 @@ lobby::lobby(game_display& disp, const config& cfg, chat& c, config& gamelist) :
search_string_(preferences::fi_text())
{
std::vector<std::string> replay_options_strings_;
replay_options_strings_.push_back(_("Normal replays"));
replay_options_strings_.push_back(_("Quick replays"));
replay_options_strings_.push_back(_("Enter game blindfolded"));
replay_options_strings_.push_back(_("Normal Replays"));
replay_options_strings_.push_back(_("Quick Replays"));
replay_options_strings_.push_back(_("Enter Blindfolded"));
replay_options_.set_items(replay_options_strings_);