vue-i18n-extract是一个帮助提取和检查vue项目中翻译的工具。你可以使用该工具来检查是否有任何翻译遗漏,并生成翻译文件的报告。具体使用方法可以参考其官方文档:vue-i18n-extract 总结:在vue-18n中查找丢失的翻译可以通过启用严格模式、处理missing回调函数、使用开发者工具进行调试、检查翻译文件完整性以及使用vue-...
[vue-i18n] Value of key'msg.hellp'isnotastring! [vue-i18n] Fall back to translate the keypath'msg.hellp'withroot locale. 为避免以上警告 (同时保留那些完全没有翻译给定关键字的警告) 需初始化 VueI18n 实例时设置silentFallbackWarn: true。 如果你希望在组件语言环境中进行本地化,可以在 i18n 选项...
Reporting a bug? When I try to use availableLocales in the new instance of the VueI18n get the following error: // Creating new instance i18n = new VueI18n({ locale, availableLocales, fallbackLocale, messages, silentTranslationWarn: true...
// 如果是VueI18n的实例,那么挂载在Vue实例的$i18n属性上 this.$i18n = options.i18n // 如果是个object } else if (isPlainObject(options.i18n)) { // 如果是一个pobj // component local i18n // 访问root vue实例。 if (this.$root && this.$root.$i18n && this.$root.$i18n instanceof VueI18n...
775 * @VueI18nSee [missing](composition#posttranslation) 776 */ 777 getPostTranslationHandler(): PostTranslationHandler<Message> | null; 778 /** 779 * Set post translation handler 780 * 781 * @param handler - A {@link PostTranslationHandler} 782 * 783 * @VueI18nSee [missing...
Locale messages missing & unused reporting (experimental) Env Variables 🚀Getting Started If yon don't have a project created with Vue CLI: vue create my-vue-app Install the plugin into your project: cdmy-vue-app vue add i18n 🔨Injected Commands ...
vari18n=newVueI18n({locale:"zh",silentTranslationWarn:true,//没有的key值不发出警告missing(){//没有key值时应如何处理return"";}})varapp=newVue({i18n,el:"#app"})vartest=newVue({i18n,el:"#test"})$.get("zh.json").done((result)=>{//json格式错误无法触发回调//动态设置i18n.setLocaleMes...
I try to translate a key through the MissingHandler with vuei18n, but I get the following error: vm.$t is not a function. My goal is to ensure that a key is replaced, with a parent key, if it is not found. Expected behavior ...
Langfrom"./lang/globalLang"constlang=newURLSearchParams(location.search.substr(1)).get("lang")||"zh"constapp=createApp(App)consti18n=createI18n({legacy:false,locale:lang,fallbakLocale:"en",silentTranslationWarn:true,messages:globalLang,fallbackWarn:false,missingWarn:false})app.use(i18n).mount...
import VueI18n from 'vue-i18n'//引入对应的组件 Vue.use(VueI18n);//挂载使用i18n的插件 1. 2. 3. 设置本地语言来挂载不同的信息(变量) 通常语言环境信息 (例如:locale、messages等) 会被设置为 VueI18n 实例的构造函数选项,并且该实例会被作为 i18n 选项设置在 Vue 的根实例上。