Language: nls/mendix_en-za.js not found

3
We set the default language to English, South African and I get this error. 404 - file not found for file: mxclientsystem/mendix/nls/mendix_en-za.js I have checked manuals and do not see any extra instructions after changing this. Any ideas? Regards Hardy
asked
3 answers
1

You're not seeing this error onscreen right? Only in your console? This means it will just pick the mendix_en.js which is fine.

answered
7

Locale data is fetched by the client from generic to specific. So if the locale is set to en-ZA, both mendix_en.js and mendix_en-za.js are fetched.

However, if there is no CLDR data available for the specific locale (en-ZA), this will result in a HTTP 404, and the client will fall back to the less specific locale data (en).

So the error in the console log you mentioned, does not mean that there is something going wrong in your application, but only tells the client there is no specific CLDR data available for the particular locale, so the less specific locale (en) will be used.

answered
2

I've checked the file location of the language files in mxclientsystem/mendix/nls/ and the language file for English, South African is indeed missing. I recommend filing a bug report.

Edit: the language is missing in mx 2.5.3 and also in 2.5.1.1 so I think it's missing in al versions.

answered