mirror of https://github.com/halo-dev/halo
Add Spanish (ES) locale (#4460)
parent
178c0704c8
commit
799a897622
File diff suppressed because it is too large
Load Diff
|
@ -3,6 +3,8 @@ import { createI18n } from "vue-i18n";
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
import en from "./en.yaml";
|
import en from "./en.yaml";
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
|
import es from "./es.yaml";
|
||||||
|
// @ts-ignore
|
||||||
import zhCN from "./zh-CN.yaml";
|
import zhCN from "./zh-CN.yaml";
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
import zhTW from "./zh-TW.yaml";
|
import zhTW from "./zh-TW.yaml";
|
||||||
|
@ -18,6 +20,11 @@ export const locales = [
|
||||||
code: "en-US",
|
code: "en-US",
|
||||||
package: en,
|
package: en,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "Español",
|
||||||
|
code: "es",
|
||||||
|
package: es,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: "简体中文",
|
name: "简体中文",
|
||||||
code: "zh-CN",
|
code: "zh-CN",
|
||||||
|
|
Loading…
Reference in New Issue