Skip to content

Commit

Permalink
refactor: 🔥 Remove brainrot locale
Browse files Browse the repository at this point in the history
Could come back as a community project, I can't maintain it right now
  • Loading branch information
CPlusPatch committed Dec 25, 2024
1 parent 6384f9a commit 1cbe94f
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 356 deletions.
2 changes: 1 addition & 1 deletion composables/Language.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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-rot" | "en-pt");
return computed(() => lang.value.value as "en" | "fr" | "en-pt");
};
349 changes: 0 additions & 349 deletions messages/en-rot.json

This file was deleted.

2 changes: 1 addition & 1 deletion project.inlang/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://inlang.com/schema/project-settings",
"sourceLanguageTag": "en",
"languageTags": ["en", "fr", "en-rot", "en-pt"],
"languageTags": ["en", "fr", "en-pt"],
"modules": [
"https://cdn.jsdelivr.net/npm/@inlang/message-lint-rule-empty-pattern@latest/dist/index.js",
"https://cdn.jsdelivr.net/npm/@inlang/message-lint-rule-missing-translation@latest/dist/index.js",
Expand Down
4 changes: 0 additions & 4 deletions settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,10 +151,6 @@ export const settings = (): Record<SettingIds, Setting> => {
},
),
},
{
value: "en-rot",
label: () => "Brainrot",
},
{
value: "en-pt",
label: () => m.these_awful_ape_reside(),
Expand Down
Loading

0 comments on commit 1cbe94f

Please sign in to comment.