mirror of https://github.com/VERT-sh/VERT.git
feat: add norwegian, czech, polish languages
Co-authored-by: Kamiliusz <kamiljedrkowiak@gmail.com> Co-authored-by: TheFrostBunny <David.aa.leren@gmail.com> Co-authored-by: Ömer Faruk Abidinoğlu <66040567+ofadev@users.noreply.github.com> Co-authored-by: wx <dominik.sladecek07@gmail.com>
This commit is contained in:
parent
6f9106c1ba
commit
2cc232588f
|
|
@ -2,7 +2,6 @@
|
|||
"$schema": "https://inlang.com/schema/project-settings",
|
||||
"baseLocale": "en",
|
||||
"locales": [
|
||||
"cs",
|
||||
"en",
|
||||
"es",
|
||||
"fr",
|
||||
|
|
@ -13,13 +12,14 @@
|
|||
"tr",
|
||||
"ja",
|
||||
"ko",
|
||||
"pl",
|
||||
"cs",
|
||||
"no",
|
||||
"el",
|
||||
"id",
|
||||
"zh-Hans",
|
||||
"zh-Hant",
|
||||
"pt-BR",
|
||||
"pl"
|
||||
"pt-BR"
|
||||
],
|
||||
"modules": [
|
||||
"https://cdn.jsdelivr.net/npm/@inlang/plugin-message-format@4/dist/index.js",
|
||||
|
|
|
|||
|
|
@ -514,7 +514,6 @@ export const effects = writable(true);
|
|||
export const theme = writable<"light" | "dark">("light");
|
||||
export const locale = writable(getLocale());
|
||||
export const availableLocales = {
|
||||
cs: "Čeština",
|
||||
en: "English",
|
||||
es: "Español",
|
||||
fr: "Français",
|
||||
|
|
@ -526,12 +525,13 @@ export const availableLocales = {
|
|||
tr: "Türkçe",
|
||||
ja: "日本語",
|
||||
ko: "한국어",
|
||||
pl: "Polski",
|
||||
cs: "Čeština",
|
||||
no: "Norsk",
|
||||
el: "Ελληνικά",
|
||||
"zh-Hans": "简体中文",
|
||||
"zh-Hant": "繁體中文",
|
||||
"pt-BR": "Português (Brasil)",
|
||||
pl: "Polski",
|
||||
};
|
||||
|
||||
export function updateLocale(newLocale: string) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue