From 214c1cd15c43ab4c7efec0ad275d4d0b49c5b84e Mon Sep 17 00:00:00 2001 From: DeinFreund Date: Thu, 18 Oct 2018 15:30:48 +0200 Subject: [PATCH 1/3] Use a specialized message for Quickplay MM pop-ups --- LuaMenu/widgets/gui_queue_status_panel.lua | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/LuaMenu/widgets/gui_queue_status_panel.lua b/LuaMenu/widgets/gui_queue_status_panel.lua index 053212178..e0a9a2cc6 100644 --- a/LuaMenu/widgets/gui_queue_status_panel.lua +++ b/LuaMenu/widgets/gui_queue_status_panel.lua @@ -330,13 +330,18 @@ local function CreateReadyCheckWindow(DestroyFunc, secondsRemaining, minWinChanc draggable = false, classname = "main_window", } + + local invitationText = i18n("match_found") + if isQuickPlay then + invitationText = i18n("match_found_quickplay") + end local title = Label:New { x = 40, right = 0, y = 15, height = 35, - caption = i18n("match_found"), + caption = invitationText, font = Configuration:GetFont(4), parent = readyCheckWindow, } From ecf93b08fdaccccb11a04c3b145bed090cd95541 Mon Sep 17 00:00:00 2001 From: DeinFreund Date: Thu, 18 Oct 2018 15:35:30 +0200 Subject: [PATCH 2/3] Add message for small teams available --- LuaMenu/widgets/chobby/i18n/chililobby.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/LuaMenu/widgets/chobby/i18n/chililobby.lua b/LuaMenu/widgets/chobby/i18n/chililobby.lua index ed09f5ae9..38efd04b5 100644 --- a/LuaMenu/widgets/chobby/i18n/chililobby.lua +++ b/LuaMenu/widgets/chobby/i18n/chililobby.lua @@ -58,6 +58,7 @@ return { steam_friends = "Steam Friends", host = "Host", match_found = "Match Found", + match_found_quickplay = "Small Teams available" party_invite = "Party Invite", party = "Party", accept = "Accept", From b2f7e3f645f1f2319626a878575dd84f27eee4de Mon Sep 17 00:00:00 2001 From: DeinFreund Date: Thu, 18 Oct 2018 15:36:13 +0200 Subject: [PATCH 3/3] Update chililobby.lua --- LuaMenu/widgets/chobby/i18n/chililobby.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LuaMenu/widgets/chobby/i18n/chililobby.lua b/LuaMenu/widgets/chobby/i18n/chililobby.lua index 38efd04b5..1fa335c74 100644 --- a/LuaMenu/widgets/chobby/i18n/chililobby.lua +++ b/LuaMenu/widgets/chobby/i18n/chililobby.lua @@ -58,7 +58,7 @@ return { steam_friends = "Steam Friends", host = "Host", match_found = "Match Found", - match_found_quickplay = "Small Teams available" + match_found_quickplay = "Small Teams available", party_invite = "Party Invite", party = "Party", accept = "Accept",