18 lines
431 B
TypeScript
18 lines
431 B
TypeScript
const PAGE_LABELS: Record<string, string> = {
|
|
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;
|
|
}
|