refactor: 🔥 Remove pirate locale

Could come back as a community project, I can't maintain it right now
This commit is contained in:
Jesse Wierzbinski 2024-12-25 18:26:29 +01:00
parent 1cbe94fea6
commit 9b0b471cd5
No known key found for this signature in database
4 changed files with 2 additions and 355 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");
};