Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(odyssey-react-mui): Add haitian creole to suported languages #2382

Merged
merged 1 commit into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export const defaultSupportedLanguages = [
"es", // Spanish
"fi", // Finnish
"fr", // French
"ht", // Haitian Creole
"hu", // Hungarian
"id", // Indonesian
"it", // Italian
Expand Down
2 changes: 2 additions & 0 deletions packages/odyssey-react-mui/src/i18n.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import { translation as en } from "./properties/ts/odyssey-react-mui";
import { translation as es } from "./properties/ts/odyssey-react-mui_es";
import { translation as fi } from "./properties/ts/odyssey-react-mui_fi";
import { translation as fr } from "./properties/ts/odyssey-react-mui_fr";
import { translation as ht } from "./properties/ts/odyssey-react-mui_ht";
import { translation as hu } from "./properties/ts/odyssey-react-mui_hu";
import { translation as id } from "./properties/ts/odyssey-react-mui_id";
import { translation as it } from "./properties/ts/odyssey-react-mui_it";
Expand Down Expand Up @@ -57,6 +58,7 @@ export const resources: I18nResources = {
es,
fi,
fr,
ht,
hu,
id,
it,
Expand Down
1 change: 1 addition & 0 deletions packages/odyssey-storybook/.storybook/preview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export const globalTypes = {
{ value: "es", title: "Spanish" },
{ value: "fi", title: "Finnish" },
{ value: "fr", title: "French" },
{ value: "ht", title: "Haitian Creole" },
{ value: "hu", title: "Hungarian" },
{ value: "id", title: "Indonesian" },
{ value: "it", title: "Italian" },
Expand Down