如何在 Vue 项目中存储用于翻译的字符串

How to store strings for translation in Vue project

我想在我的应用程序中使用两种语言 - 所以我想要一个像字符串文件的字典(有点像 android 开发中的),我只是用 id 存储我的字符串并且可以通过 id 轻松访问字符串也许带有我的语言的参数。什么样的文件在我的 vue 组件中容易解析并且适合我的用例?

您可以使用普通的 js 文件并导出包含字符串的普通对象。

不过,我强烈建议您改用 vue-i18n

安装:npm install vue-i18n

或者如果您使用的是 Vue Cli,运行:vue add i18n

快速使用:

// If using a module system (e.g. via vue-cli), import Vue and VueI18n and then call Vue.use(VueI18n).
// import Vue from 'vue'
// import VueI18n from 'vue-i18n'
//
// Vue.use(VueI18n)

// Ready translated locale messages
const messages = {
  en: {
    message: {
      hello: 'hello world'
    }
  },
  ja: {
    message: {
      hello: 'こんにちは、世界'
    }
  }
}

// Create VueI18n instance with options
const i18n = new VueI18n({
  locale: 'ja', // set locale
  messages, // set locale messages
})

然后在你的模板上

<p> {{ $t("message.hello") }} </p>

您可以安装:npm install vue-i18n

比在 src 中创建新文件:

i18n.js

import Vue from 'vue';
import VueI18n from 'vue-i18n';

Vue.use(VueI18n);

/*
 * Load @/locales file with languages sets
 */
function loadLocaleMessages() {
  // Read context
  const locales = require.context('@/locales', true, /[A-Za-z0-9-_,\s]+\.json$/i);
  const messages = {};
  // Find matches language set and use that one
  locales.keys().forEach((key) => {
    const matched = key.match(/([A-Za-z0-9-_]+)\./i);
    if (matched && matched.length > 1) {
      const locale = matched[1];
      messages[locale] = locales(key);
    }
  });
  return messages;
}

// Language of the browser UI.
let language = window.navigator.userLanguage || window.navigator.language;
// Use that
let currentLanguage = language.slice(0, 2);

// Exports VueI18n settings global
export default new VueI18n({
  locale: currentLanguage,
  fallbackLocale: 'de',
  formatFallbackMessages: true,
  silentFallbackWarn: true,
  messages: loadLocaleMessages(),
});

main.js

import Vue from 'vue';
import App from './App.vue';
import router from './router';
import store from './store';

/*
 * START Import Internationalization - Translation
 */
import i18n from '@/utils/i18n.js';

// Use beforeEach route guard to set the language
router.beforeEach((to, from, next) => {
  // Use the language from the routing param or default language
  let language = to.params.lang;

  // Default language
  if (!language) {
    language = 'en';
  }

  // Set the current language for i18n.
  i18n.locale = language;
  next();
});
//* END Import Internationalization - Translation

// Vue App
new Vue({
  i18n,
  router,
  store,
  render: (h) => h(App),
}).$mount('#app');

router.js

import Vue from 'vue';
import Router from 'vue-router';
import Login from './views/Login.vue';
import i18n from '@/i18n';

Vue.use(Router);

const router = new Router({
  mode: 'history',
  base: process.env.BASE_URL,

  routes: [
    {
      path: '/',
      redirect: `/${i18n.locale}/`,
    },
    // Language prefix for everyone
    {
      path: '/:lang',
      component: {
        render(c) {
          return c('router-view');
        },
      },

      children: [
        {
          path: '/',
          name: 'Login',
          component: Login,
        },
        {
          path: 'home',
          name: 'Home',
          component: () => import(/* webpackChunkName: "Home" */ './views/Home.vue'),
        },
        
      
        {
          path: '*', // Fullback path
          redirect: '/',
        },
      ],
    },
  ],

  // Scroll always on top the Page
  scrollBehavior() {
    document.getElementById('app').scrollIntoView();
  },
});

// Set the Routers
export default router;

然后用您的区域设置 JSON 文件创建文件夹 locales

例如:

en.json

{
  "general": {
    "search": "Search",
    "loading": "Loading..."
  }
}

de.json

{
  "general": {
    "search": "Suchen",
    "loading": "Laden..."
  }
}

用法:

在模板中:{{ $t('general.search') }}

在 JS 中:this.$t('general.loading')