feat: nederlands

This commit is contained in:
Henrique Dias 2026-02-14 07:35:42 +01:00
parent 1f7904dad2
commit 88b97def9e
No known key found for this signature in database
2 changed files with 6 additions and 2 deletions

View file

@ -32,7 +32,8 @@ export default {
ja: "日本語",
ko: "한국어",
no: "Norsk",
"nl-be": "Dutch (Belgium)",
nl: "Nederlands (Nederland)",
"nl-be": "Nederlands (België)",
pl: "Polski",
"pt-br": "Português (Brasil)",
pt: "Português (Portugal)",

View file

@ -17,6 +17,7 @@ import("dayjs/locale/it");
import("dayjs/locale/ja");
import("dayjs/locale/ko");
import("dayjs/locale/nb");
import("dayjs/locale/nl");
import("dayjs/locale/nl-be");
import("dayjs/locale/pl");
import("dayjs/locale/pt-br");
@ -110,7 +111,6 @@ export function detectLocale() {
case /^uk\b/.test(locale):
locale = "uk";
break;
case /^vi\b/.test(locale):
locale = "vi";
break;
@ -118,6 +118,9 @@ export function detectLocale() {
case /^sv\b/.test(locale):
locale = "sv";
break;
case /^nl\b/.test(locale):
locale = "nl";
break;
case /^nl-be\b/.test(locale):
locale = "nl-be";
break;