blob: f99d324a37b67832e163862bced1a608c507dd10 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import Language from "./Language";
const lang = new Language();
lang.LocalizedStrings = new Map<string, string>([
["index", "index"],
["classes", "classes"],
["contents", "contents"],
]);
export default lang;
|