From 88ef83f24014cb9dcd2a0ec44cd0679f7b6139fd Mon Sep 17 00:00:00 2001 From: "Ignacio R. Morelle" Date: Thu, 15 Jan 2015 22:18:55 -0300 Subject: [PATCH] mp: Use Title Case for replay mode combo box items, rename an item "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. --- src/multiplayer_lobby.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/multiplayer_lobby.cpp b/src/multiplayer_lobby.cpp index a2b4ce5f253c..9388e0e52e9b 100644 --- a/src/multiplayer_lobby.cpp +++ b/src/multiplayer_lobby.cpp @@ -873,9 +873,9 @@ lobby::lobby(game_display& disp, const config& cfg, chat& c, config& gamelist) : search_string_(preferences::fi_text()) { std::vector 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_);