We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9168228 commit faf0330Copy full SHA for faf0330
1 file changed
src/modules/segmentation/utils/hyphen-loader.ts
@@ -15,6 +15,7 @@ export const SUPPORTED_LANGUAGES = [
15
{ label: "Deutsch (German)", value: "de" },
16
{ label: "Français (French)", value: "fr" },
17
{ label: "Español (Spanish)", value: "es" },
18
+ { label: "Bahasa Indonesia (Indonesian)", value: "id" },
19
{ label: "Italiano (Italian)", value: "it" },
20
{ label: "Português (Portuguese)", value: "pt" },
21
{ label: "Pусский (Russian)", value: "ru" },
@@ -55,6 +56,9 @@ export async function loadHyphenator(
55
56
case "es":
57
module = await import("hyphen/es");
58
break;
59
+ case "id":
60
+ module = await import("hyphen/id");
61
+ break;
62
case "it":
63
module = await import("hyphen/it");
64
0 commit comments