Giter Club home page Giter Club logo

Comments (12)

docu-bill avatar docu-bill commented on June 2, 2024 1

I need to run it inside useEffect as I dont know what language to set it to in the initial load ... I get the fixed language from the server and then set it.

from react-i18next.

jamuhl avatar jamuhl commented on June 2, 2024

your fr language is not loaded therefore it shows fallback...(you have to assert it's loaded...)

add preload: ["fr"], to your init to preload it...https://www.i18next.com/overview/configuration-options#languages-namespaces-resources

from react-i18next.

docu-bill avatar docu-bill commented on June 2, 2024

Thanks @jamuhl Preloading in the init is not really convenient as I would have to preload all possible languages. My app is a client side app and will use two possible languages... one that comes from outside the users browser and the browser language. I cannot know before the app loads either of the two languages.

Is there a way to manually load a language? Or is my current work around (changing the language and back) the best way to getFixedT of an un-preloaded language. Cheers

from react-i18next.

jamuhl avatar jamuhl commented on June 2, 2024

https://www.i18next.com/overview/api#loadlanguages

and I guess you can use https://www.i18next.com/overview/api#hasresourcebundle to check for loaded (eg. building your own useTranslation for the different language)

or better use: #1637 which (@adrai) is currently not documented

from react-i18next.

adrai avatar adrai commented on June 2, 2024

fyi: the lng prop via useTranslation hook will not load the additional language, it will only return the "appropriate" t function bound to that language

from react-i18next.

docu-bill avatar docu-bill commented on June 2, 2024

@adrai @jamuhl
This seems to work. Is this what you meant?

if (!i18n.hasResourceBundle(lng, "translation")){
    i18n.loadLanguages(lng, (err: unknown) => {
        if (err instanceof Error) {
            console.error("Error loading language: " + err.message)
        } else {
            const newDocT = i18n.getFixedT(lng)
            //.... use newDocT
        }
    })
} else {
    const newDocT = i18n.getFixedT(lng)
    //.... use newDocT
}

The way I use it is by setting it to a state variable:
const [ myFixtT, setMyFixedT] = React.useState<TFunction | undefined>()
setMyFixedT(() => newDocT)

from react-i18next.

adrai avatar adrai commented on June 2, 2024

Did the useTranslation hook not work?

const { t } = useTranslation('trandlation', { lng })

from react-i18next.

docu-bill avatar docu-bill commented on June 2, 2024

Not sure I understand

fyi: the lng prop via useTranslation hook will not load the additional language, it will only return the "appropriate" t function >bound to that language

You said it would not load the language. I dont want to preload in the init. I just want a TFunction I can cache. This language is fixed and specified by external data, not by the user or the browser.

from react-i18next.

adrai avatar adrai commented on June 2, 2024

Seems I was wrong... it loads the language... can you try that?

from react-i18next.

docu-bill avatar docu-bill commented on June 2, 2024

I need to do this inside a React.useEffect... useTranslate is throwing an error because it is a Hook inside a Hook... Well that is what I think is happening.

from react-i18next.

jamuhl avatar jamuhl commented on June 2, 2024

useTranslation is a hook...no need to run it inside useEffect

from react-i18next.

docu-bill avatar docu-bill commented on June 2, 2024

I moved it into its own empty div rendering component so it could use the language as a property. useTranslation works there.
Thanks.

from react-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.