You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import i18n from "i18next"; |
|
import { initReactI18next } from "react-i18next"; |
|
import resources from './locales' |
|
|
|
i18n.use(initReactI18next).init({ |
|
resources: resources, |
|
lng: "fa", |
|
fallbackLng: "fa", |
|
interpolation: { |
|
escapeValue: false |
|
} |
|
}); |
|
|
|
export default i18n; |