Skip to content

Commit

Permalink
mp: Use Title Case for replay mode combo box items, rename an item
Browse files Browse the repository at this point in the history
"Normal" was meant to be "Normal Replays" (and it is so in master), but
at the time the combo box was introduced, the author couldn't use
strings that weren't already present in the translation catalogues due
to the 1.11.10 - 1.12.0 string freeze.
  • Loading branch information
irydacea committed Jan 16, 2015
1 parent d0b6397 commit 88ef83f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/multiplayer_lobby.cpp
Expand Up @@ -873,9 +873,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"));
replay_options_strings_.push_back(_("Quick replays"));
replay_options_strings_.push_back(_("Enter 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_);

Expand Down

0 comments on commit 88ef83f

Please sign in to comment.