i18next-xhr-backend icon indicating copy to clipboard operation
i18next-xhr-backend copied to clipboard

[deprecated] can be replaced with i18next-http-backend

Results 13 i18next-xhr-backend issues
Sort by recently updated
recently updated
newest added

My registered API via `loadPath` returns all translation keys in a nested "data" object. i.e ``` { "data": { "key1": "foo", "key2: "bar" } } ``` This forces me to...

I know I can set the load path of namespaces like this: ```js { loadPath: "/locales/{{lng}}/{{ns}}.json" } ``` In the case of React, it is located in `public/locales`. However, can...

Hi, Is it possible lo load translations form backend even if they are already in resources? My use case is like this: I have default translations in app code but...

When some namespaces are loaded directly inside the app, the backend still try to make an HTTP request. This creates unnecessary requests to the server for translations that are already...

Hey, Would it be possible to add the possibility of having control over the payload sent on POST to `addPath`? It would be useful to be able to choose the...

Hi, I am a bit struggling with seems unnecessary changing fields in json files. I faced the field `_t` Is it used for cache invalidation or something? Thanks!

I am able to load a single locale file by setting the path in loadPath but was wondering if there's a way to load multiple files by returning an array...

Is it possible to configure the request header and add authorization token before it is sent?

The README says that the `ajax` parameter takes a `callback` that should be called as follows: ``` // 'callback' is a function that takes two parameters, 'data' and 'xhr'. //...