Giter Site home page Giter Site logo

Comments (8)

cristianoccazinsp avatar cristianoccazinsp commented on June 19, 2024 2

It's a shame, but the library doesn't seem maintained anymore.

from react-localize-redux.

johnwen84 avatar johnwen84 commented on June 19, 2024

@cristianoccazinsp yea it sucks. I guess I'll have to find an alternative.

from react-localize-redux.

cristianoccazinsp avatar cristianoccazinsp commented on June 19, 2024

Let me know if you find any!

from react-localize-redux.

jimmailcamp avatar jimmailcamp commented on June 19, 2024

@ryandrewjohnson Any change you can update the package to fix these? Using this heavily in production

from react-localize-redux.

cristianoccazinsp avatar cristianoccazinsp commented on June 19, 2024

Bump!

from react-localize-redux.

jimmailcamp avatar jimmailcamp commented on June 19, 2024

Just switched to i18nreact. Def recommend it. You can opt out for the route prefixes easily.
Basicly just wrap the t function in i18n with your own component. And change every import statement where you used to use this package.
Worth the hassle, as it's very maintained unlike this shitshow.

from react-localize-redux.

gerhardcit avatar gerhardcit commented on June 19, 2024

@jimmailcamp , any change you have some kind of sample that would help a non-react guy that have to fix a react system (get it running with vite)?

from react-localize-redux.

jimmailcamp avatar jimmailcamp commented on June 19, 2024

I've set it up for next.js and Cra.
Not much experience with vite. Tho I definitly recommend the switch to Next. The community is big, documentation is clear and out of the box compiling just works without any config whatsoever.

Even in CRA I used 'i18next'. Just follow the documentation and u should be good to go. Heres a start:
Works in CRA* & Next.js

App.js

Initialize initI18n() in a useEffect with empty deps array;

InitI18n.js

import i18n from 'i18next';
import {initReactI18next} from 'react-i18next';
import LanguageDetector from 'i18next-browser-languagedetector';

return i18n
// learn more: https://github.com/i18next/i18next-browser-languageDetector
.use(LanguageDetector)
// pass the i18n instance to react-i18next.
.use(initReactI18next)
// init i18next
// for all options read: https://www.i18next.com/overview/configuration-options
.init({
react:{
transSupportBasicHtmlNodes: true,
transKeepBasicHtmlNodesFor: ['br', 'strong', 'i', 'p', 'b', 'span']
},
debug:false,
fallbackLng: 'en',
interpolation: {
escapeValue: false, // not needed for react as it escapes by default
},

        resources: {
            en: {
                ...
             
            },
            nl: {
             ...
            }
        }
    });

My own translation component that wraps i18n t method:

import React from 'react';
import {useTranslation} from 'react-i18next';

export const Translation = ({id, ...props}) => {
const {t} = useTranslation();
if (props.ns) return <>{t(id, {...props})}</>
return <>{t( id.replace(${id.split('.')[0]}., ''), {...props, ns : id.split('.')[0]})}</>
}

Hope this helps

from react-localize-redux.

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.