python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
i18next dealing with multiple translation files nested namespaces
I'm having issues figuring out how to lazy load my translations with i18next.
Here's my setup:
i18n
.use(Backend)
.use(LanguageDetector)
.use(initReactI18next)
.init({
debug: NODE_ENV === ...
Barry Michael Doyle
Votes: 0
Answers: 1
Adding links to text in React I18next
I have a problem with I18next. I can't figure out how to make links to websites work, here is my code:
import React, { Suspense } from "react";
import i18n from "i18next";
import {...
aksoco
Votes: 0
Answers: 5
Redux action not triggering particular reducer
I have the following redux set-up:
Actions --> actions.js
import { SET_ADMIN, SET_USER, SET_LNG } from "./actionTypes";
export const setAdmin = (isAdmin) => {
return {
type: SET...

hyprstack
Votes: 0
Answers: 1
React Multilenguaje
Does React and the i18next package support languages like Catalan, Basque, Galician, Valencian, etc?
I use:
import { useTranslation } from "react-i18next";
import i18next from "i18nex...
user2911197
Votes: 0
Answers: 1