Fall back to translate ‘someItem’ with root locale?
In i18n.ts: import { createI18n } from ‘vue-i18n’; import uk from ‘../locales/eng’; import ru from ‘../locales/ru’; const i18n = createI18n({ fallbackLocale: ‘en’, legacy: false, missingWarn: false, warnHtmlMessage: false, locale: ‘ru’, messages: { uk, ru } }); export default i18n; ` I have all the keys and it translates perfectly fine, but I am getting warning … Read more