GithubHelp home page GithubHelp logo

Namespace question about vue-i18next HOT 5 CLOSED

rcosta-gcare avatar rcosta-gcare commented on June 3, 2024
Namespace question

from vue-i18next.

Comments (5)

rcosta-gcare avatar rcosta-gcare commented on June 3, 2024 1

Oh very nice, didn't know about loadComponentNamespace that might works for me.

That is what I was trying to do

Vue.component("app", {
  props: {
    validation
  },
  i18nOptions: { namespaces: validation },
  template: ....

What I end up doing, is on my parent component, I load the name space, so on the children, I can use $t('validation:somekey')

from vue-i18next.

claudiocro avatar claudiocro commented on June 3, 2024

Hi,

your example should work out of the box. What are you getting when you use it like this?

from vue-i18next.

claudiocro avatar claudiocro commented on June 3, 2024

I will close this issue, feel free to reopen it if you have more questions.

from vue-i18next.

rcosta-gcare avatar rcosta-gcare commented on June 3, 2024

I figure out the trick... my problem was that this $t('my-name-space:key') doesn't load the name space, and actually that is what I meant, I was trying to find a way to load a name space with a variable, which I didn't find a way of doing yet.

from vue-i18next.

claudiocro avatar claudiocro commented on June 3, 2024

To load namespaces you can:

Vue.component("app", {
  i18nOptions: { namespaces: "common" },
  template: ....

This will load the namespace into the component, so you don't need to use $t('common:somekey') but $t('common:somekey').

Then you need to instruct vue-i18next to load the namespace:

vueI18Next = new VueI18Next(i18next, { 
  loadComponentNamespace: true
 });

I noticed that the loadComponentNamespace option is not documented, I will change that.

from vue-i18next.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.