mirror of
https://github.com/dragonish/obsidian-heading-decorator.git
synced 2026-07-22 05:42:05 +00:00
10 lines
242 B
TypeScript
10 lines
242 B
TypeScript
import * as en from "./en.json";
|
|
import * as zh from "./zh.json";
|
|
import * as zhTW from "./zh-TW.json";
|
|
import { ObsidianPluginI18n } from "obsidian-plugin-i18n";
|
|
|
|
export const i18n = new ObsidianPluginI18n({
|
|
en,
|
|
zh,
|
|
"zh-TW": zhTW,
|
|
});
|