Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions LuaMenu/widgets/chobby/i18n/chililobby.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
7 changes: 6 additions & 1 deletion LuaMenu/widgets/gui_queue_status_panel.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
Expand Down