CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/next/locales/misc.ts
Views: 791
1
import type { Locale } from "@cocalc/util/i18n/const";
2
export type { Locale };
3
4
import { isLocale, LOCALE } from "@cocalc/util/i18n/const";
5
export { isLocale, LOCALE };
6
7
export function query2locale(query: { locale?: string | string[] }): Locale {
8
const localeQuery = query.locale;
9
return isLocale(localeQuery) ? localeQuery : "en";
10
}
11
12