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

v3 — add document translations to shared #552

Merged
merged 12 commits into from
Sep 11, 2024
12 changes: 12 additions & 0 deletions languages.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
const languages = [
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

to be deleted with updates in /studio

{ id: "en", title: "English", isDefault: true },
mathiazom marked this conversation as resolved.
Show resolved Hide resolved
{ id: "se", title: "Swedish" },
{ id: "no", title: "Norwegian" },
];

const i18n = {
languages,
base: "en",
};

export { i18n };
Loading