mirror of
https://github.com/busyogg/OneStepWikiLink.git
synced 2026-07-22 05:41:52 +00:00
19 lines
No EOL
338 B
TypeScript
19 lines
No EOL
338 B
TypeScript
import { getLanguage } from "obsidian";
|
|
|
|
|
|
export class Localization {
|
|
static language: string = 'zh';
|
|
|
|
static pool: string[] = [
|
|
'en',
|
|
'zh'
|
|
]
|
|
|
|
public static getLang() {
|
|
let lang = getLanguage();
|
|
if (this.pool.contains(lang)) {
|
|
return lang;
|
|
}
|
|
return 'en';
|
|
}
|
|
} |