Update lang name

This commit is contained in:
EmeraldLockdown 2026-02-21 22:45:12 -06:00
parent 3f69f13be1
commit e6e92aea29
2 changed files with 8 additions and 8 deletions

View file

@ -432,10 +432,10 @@ ENTER_PASSWORD = "Enter the private lobby's password:"
SEARCH = "Search"
NO_LOBBIES_FOUND = "No lobbies were found."
SORT_BY = "Sort By"
SORTING_NONE = "None"
SORTING_NAME = "Name"
SORTING_GAMEMODE = "Gamemode"
SORTING_PLAYERS = "Players"
NONE = "None"
NAME = "Name"
GAMEMODE = "Gamemode"
PLAYERS = "Players"
[CHANGELOG]
CHANGELOG_TITLE = "CHANGELOG"

View file

@ -23,19 +23,19 @@ extern ALIGNED8 u8 texture_selectionbox_down_icon[];
static struct LobbySortType sLobbySorting[] = {
{
"SORTING_NONE",
"NONE",
LOBBY_SORTING_NONE,
},
{
"SORTING_NAME",
"NAME",
LOBBY_SORTING_NAME,
},
{
"SORTING_GAMEMODE",
"GAMEMODE",
LOBBY_SORTING_GAMEMODE,
},
{
"SORTING_PLAYERS",
"PLAYERS",
LOBBY_SORTING_PLAYERS,
},
};