xxxxst/monaco-editor-locales-plugin

Please update the package version,Thanks!

peachtang opened this issue · 1 comments

image
help me thanks! @xxxxst

You seem to be using Chinese, so I will reply you in Chinese。

monaco-editor内置的多国语言支持最迟的版本是0.14.6,之后的版本只有英语。

本插件的翻译文本来自于0.14.6,如果后续的版本文本有变更,
需要自行翻译,通过mapLanguages参数将翻译文本传进去。

可以设置logUnmatched参数,在控制台中打印所有未被翻译的文本。

new MonacoLocalesPlugin({
    languages: ["zh-cn"],
    logUnmatched: true,
    mapLanguages: {
        "zh-cn": {
            "chinese": "中文"
         }
    },
}),

插件仅提供语言转换的方法,不处理翻译缺失问题。
Thanks