File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 362362 "disabled_units" : " Disabled Units"
363363 },
364364 "public_lobby" : {
365+ "starts_in" : " Starts in {s}" ,
365366 "join" : " Join next Game" ,
366367 "waiting" : " players waiting" ,
367- "teams_Duos" : " {team_count} teams of 2 (Duos)" ,
368- "teams_Trios" : " {team_count} teams of 3 (Trios)" ,
369- "teams_Quads" : " {team_count} teams of 4 (Quads)" ,
368+ "teams_Duos" : " {team_count} teams (Duos)" ,
369+ "teams_Trios" : " {team_count} teams (Trios)" ,
370+ "teams_Quads" : " {team_count} teams (Quads)" ,
370371 "waiting_for_players" : " Waiting for players" ,
371372 "starting_game" : " Starting game…" ,
372373 "teams_hvn" : " Humans vs Nations" ,
373374 "teams_hvn_detailed" : " {num} Humans vs {num} Nations" ,
374375 "teams" : " {num} teams" ,
375- "players_per_team" : " of {num}" ,
376+ "players_per_team" : " ( {num} each) " ,
376377 "started" : " Started"
377378 },
378379 "matchmaking_modal" : {
Original file line number Diff line number Diff line change @@ -82,7 +82,9 @@ export class PublicLobby extends LitElement {
8282 const start = this . lobbyIDToStart . get ( lobby . gameID ) ?? 0 ;
8383 const timeRemaining = Math . max ( 0 , Math . floor ( ( start - Date . now ( ) ) / 1000 ) ) ;
8484 const isStarting = timeRemaining <= 2 ;
85- const timeDisplay = renderDuration ( timeRemaining ) ;
85+ const timeDisplay = translateText ( "public_lobby.starts_in" , {
86+ s : renderDuration ( timeRemaining ) ,
87+ } ) ;
8688
8789 const teamCount =
8890 lobby . gameConfig . gameMode === GameMode . Team
You can’t perform that action at this time.
0 commit comments