Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
NebulaServices
GitHub Repository: NebulaServices/Nebula
Path: blob/main/src/i18n/ui.ts
976 views
1
import en_US from "./en_US.json";
2
import jp from "./jp.json";
3
4
export const defaultLang = "en_US";
5
6
export const ui = {
7
en_US,
8
jp
9
};
10
11