mirror of
https://github.com/TriliumNext/Trilium.git
synced 2025-12-10 03:53:37 -06:00
feat(i18n): enable Italian language
This commit is contained in:
parent
eee3aa2bb4
commit
c4e2c003de
@ -66,6 +66,7 @@ export const LOCALE_MAPPINGS: Record<DISPLAYABLE_LOCALE_IDS, (() => Promise<{ de
|
|||||||
de: () => import("@fullcalendar/core/locales/de"),
|
de: () => import("@fullcalendar/core/locales/de"),
|
||||||
es: () => import("@fullcalendar/core/locales/es"),
|
es: () => import("@fullcalendar/core/locales/es"),
|
||||||
fr: () => import("@fullcalendar/core/locales/fr"),
|
fr: () => import("@fullcalendar/core/locales/fr"),
|
||||||
|
it: () => import("@fullcalendar/core/locales/it"),
|
||||||
cn: () => import("@fullcalendar/core/locales/zh-cn"),
|
cn: () => import("@fullcalendar/core/locales/zh-cn"),
|
||||||
tw: () => import("@fullcalendar/core/locales/zh-tw"),
|
tw: () => import("@fullcalendar/core/locales/zh-tw"),
|
||||||
ro: () => import("@fullcalendar/core/locales/ro"),
|
ro: () => import("@fullcalendar/core/locales/ro"),
|
||||||
|
|||||||
@ -16,6 +16,7 @@ export const DAYJS_LOADER: Record<LOCALE_IDS, () => Promise<typeof import("dayjs
|
|||||||
"es": () => import("dayjs/locale/es.js"),
|
"es": () => import("dayjs/locale/es.js"),
|
||||||
"fa": () => import("dayjs/locale/fa.js"),
|
"fa": () => import("dayjs/locale/fa.js"),
|
||||||
"fr": () => import("dayjs/locale/fr.js"),
|
"fr": () => import("dayjs/locale/fr.js"),
|
||||||
|
"it": () => import("dayjs/locale/it.js"),
|
||||||
"he": () => import("dayjs/locale/he.js"),
|
"he": () => import("dayjs/locale/he.js"),
|
||||||
"ja": () => import("dayjs/locale/ja.js"),
|
"ja": () => import("dayjs/locale/ja.js"),
|
||||||
"ku": () => import("dayjs/locale/ku.js"),
|
"ku": () => import("dayjs/locale/ku.js"),
|
||||||
|
|||||||
@ -17,6 +17,7 @@ const UNSORTED_LOCALES = [
|
|||||||
{ id: "en", name: "English", electronLocale: "en" },
|
{ id: "en", name: "English", electronLocale: "en" },
|
||||||
{ id: "es", name: "Español", electronLocale: "es" },
|
{ id: "es", name: "Español", electronLocale: "es" },
|
||||||
{ id: "fr", name: "Français", electronLocale: "fr" },
|
{ id: "fr", name: "Français", electronLocale: "fr" },
|
||||||
|
{ id: "it", name: "Italiano", electronLocale: "it" },
|
||||||
{ id: "ja", name: "日本語", electronLocale: "ja" },
|
{ id: "ja", name: "日本語", electronLocale: "ja" },
|
||||||
{ id: "pt_br", name: "Português (Brasil)", electronLocale: "pt_BR" },
|
{ id: "pt_br", name: "Português (Brasil)", electronLocale: "pt_BR" },
|
||||||
{ id: "pt", name: "Português (Portugal)", electronLocale: "pt_PT" },
|
{ id: "pt", name: "Português (Portugal)", electronLocale: "pt_PT" },
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user