adding remaining languages and pos

This commit is contained in:
lila 2026-04-20 08:01:57 +02:00
parent 1f42239779
commit 091a901485

View file

@ -1,7 +1,7 @@
export const SUPPORTED_LANGUAGE_CODES = ["en", "it"] as const;
export const SUPPORTED_LANGUAGE_CODES = ["en", "it", "de", "fr", "es"] as const;
export type SupportedLanguageCode = (typeof SUPPORTED_LANGUAGE_CODES)[number];
export const SUPPORTED_POS = ["noun", "verb"] as const;
export const SUPPORTED_POS = ["noun", "verb", "adjective", "adverb"] as const;
export type SupportedPos = (typeof SUPPORTED_POS)[number];
export const GAME_ROUNDS = ["3", "10"] as const;