Revert "refactor: 🔥 Remove brainrot locale"

This reverts commit 1cbe94fea6.
This commit is contained in:
aprilthepink 2025-02-06 23:20:06 +01:00
parent 7673619915
commit 7b916397db
5 changed files with 356 additions and 3 deletions

View file

@ -3,5 +3,5 @@ import { SettingIds } from "~/settings";
export const useLanguage = () => {
const lang = useSetting(SettingIds.Language);
return computed(() => lang.value.value as "en" | "fr" | "en-pt");
return computed(() => lang.value.value as "en" | "fr" | "en-rot" | "en-pt");
};