const PAGE_LABELS: Record = { overview: "Overview", players: "Players", matches: "Matches", analysis: "Analysis", matchmaker: "Matchmaker", ledger: "Ledger", logs: "System logs", settings: "Settings", "ledger-book": "Ledger book", "match-log": "Match log", "matchmaker-logs": "Matchmaker logs", }; export function pageAccessLabel(page: string): string { return PAGE_LABELS[page] ?? page; }