summaryrefslogtreecommitdiff
path: root/front/src/Locales/en_US.ts
blob: b67eb655e671a05f348135e2cf47f877c2f887fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import Language from "./Language";

const lang = new Language();
lang.LocalizedStrings = new Map<string, string>([
    ["index", "index"],
    ["classes", "Classes"],
    ["contents", "contents"],
    ["home", "Home"],
    ["weapons", "Weapons"],
]);

export default lang;