chore: update and add new languages

This commit is contained in:
Paul Makles
2022-05-25 16:43:59 +01:00
parent a54ae79cc9
commit b6c3ab6fd0
15 changed files with 1029 additions and 57 deletions

View File

@@ -31,6 +31,7 @@ export function findLanguage(lang?: string): Language {
const value = Language[key as keyof typeof Language];
// Skip alternative/joke languages
if (Languages[value].cat === "const") continue;
if (Languages[value].cat === "alt") continue;
values.push(value);