isaacscript-common
Version:
Helper functions and features for IsaacScript mods.
12 lines (10 loc) • 546 B
text/typescript
import { LanguageAbbreviation } from "isaac-typescript-definitions";
export const LANGUAGE_NAMES = {
[]: "English", // "en"
[]: "Japanese", // "jp"
[]: "Korean", // "kr"
[]: "Chinese (Simple)", // "zh"
[]: "Russian", // "ru"
[]: "German", // "de"
[]: "Spanish", // "es"
} as const satisfies Record<LanguageAbbreviation, string>;