Some checks failed
test / Run tests (push) Failing after 6s
build / Build (push) Failing after 9s
10 lines
163 B
TypeScript
10 lines
163 B
TypeScript
export default class I18n {
|
|
getUILanguage() {
|
|
return "zh-CN";
|
|
}
|
|
|
|
getAcceptLanguages(callback: (lngs: string[]) => void) {
|
|
callback(["zh-CN"]);
|
|
}
|
|
}
|