From e9556afe227f3b3ecd95ae049547d502d91d89d5 Mon Sep 17 00:00:00 2001
From: Dean Herbert <pe@ppy.sh>
Date: Wed, 26 Dec 2018 14:26:35 +0900
Subject: [PATCH] Don't use all uppercase (is applied automatically)

---
 .../Multi/Match/Components/RoomSettingsOverlay.cs    | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/osu.Game/Screens/Multi/Match/Components/RoomSettingsOverlay.cs b/osu.Game/Screens/Multi/Match/Components/RoomSettingsOverlay.cs
index 797894e93c..00ebb78c18 100644
--- a/osu.Game/Screens/Multi/Match/Components/RoomSettingsOverlay.cs
+++ b/osu.Game/Screens/Multi/Match/Components/RoomSettingsOverlay.cs
@@ -72,7 +72,7 @@ namespace osu.Game.Screens.Multi.Match.Components
                                 Padding = new MarginPadding { Right = field_padding / 2 },
                                 Children = new[]
                                 {
-                                    new Section("ROOM NAME")
+                                    new Section("Room name")
                                     {
                                         Child = NameField = new SettingsTextBox
                                         {
@@ -81,12 +81,12 @@ namespace osu.Game.Screens.Multi.Match.Components
                                             OnCommit = (sender, text) => apply(),
                                         },
                                     },
-                                    new Section("ROOM VISIBILITY")
+                                    new Section("Room visibility")
                                     {
                                         Alpha = disabled_alpha,
                                         Child = AvailabilityPicker = new RoomAvailabilityPicker(),
                                     },
-                                    new Section("GAME TYPE")
+                                    new Section("Game type")
                                     {
                                         Alpha = disabled_alpha,
                                         Child = new FillFlowContainer
@@ -117,7 +117,7 @@ namespace osu.Game.Screens.Multi.Match.Components
                                 Padding = new MarginPadding { Left = field_padding / 2 },
                                 Children = new[]
                                 {
-                                    new Section("MAX PARTICIPANTS")
+                                    new Section("Max participants")
                                     {
                                         Alpha = disabled_alpha,
                                         Child = MaxParticipantsField = new SettingsNumberTextBox
@@ -127,7 +127,7 @@ namespace osu.Game.Screens.Multi.Match.Components
                                             OnCommit = (sender, text) => apply(),
                                         },
                                     },
-                                    new Section("DURATION")
+                                    new Section("Duration")
                                     {
                                         Child = DurationField = new DurationDropdown
                                         {
@@ -148,7 +148,7 @@ namespace osu.Game.Screens.Multi.Match.Components
                                             }
                                         }
                                     },
-                                    new Section("PASSWORD (OPTIONAL)")
+                                    new Section("Password (optional)")
                                     {
                                         Alpha = disabled_alpha,
                                         Child = PasswordField = new SettingsPasswordTextBox