Skip to content

Commit 1cbe94f

Browse files
committed
refactor: 🔥 Remove brainrot locale
Could come back as a community project, I can't maintain it right now
1 parent 6384f9a commit 1cbe94f

File tree

5 files changed

+3
-356
lines changed

5 files changed

+3
-356
lines changed

composables/Language.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ import { SettingIds } from "~/settings";
33
export const useLanguage = () => {
44
const lang = useSetting(SettingIds.Language);
55

6-
return computed(() => lang.value.value as "en" | "fr" | "en-rot" | "en-pt");
6+
return computed(() => lang.value.value as "en" | "fr" | "en-pt");
77
};

messages/en-rot.json

-349
This file was deleted.

project.inlang/settings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://inlang.com/schema/project-settings",
33
"sourceLanguageTag": "en",
4-
"languageTags": ["en", "fr", "en-rot", "en-pt"],
4+
"languageTags": ["en", "fr", "en-pt"],
55
"modules": [
66
"https://cdn.jsdelivr.net/npm/@inlang/message-lint-rule-empty-pattern@latest/dist/index.js",
77
"https://cdn.jsdelivr.net/npm/@inlang/message-lint-rule-missing-translation@latest/dist/index.js",

settings.ts

-4
Original file line numberDiff line numberDiff line change
@@ -151,10 +151,6 @@ export const settings = (): Record<SettingIds, Setting> => {
151151
},
152152
),
153153
},
154-
{
155-
value: "en-rot",
156-
label: () => "Brainrot",
157-
},
158154
{
159155
value: "en-pt",
160156
label: () => m.these_awful_ape_reside(),

0 commit comments

Comments
 (0)