Setting ionic browser shell language to translate input type="file" text pop-up

Is it possible to change the browser language of the ionic shell browser to change the language on the input type=“file” pop-up text

are you using Cordova or Capacitor?

You have to add supported languages to your project, by default only English is supported.
If you add more languages then the input file should show a different language if the device is using one of the supported languages.

How do I add multiple supporting languages?
I’m using capacitor

2 Likes

Great, thanks. It works.
Is it possible to change this language from within the app?
I currently use the i18N library to update the whole app.

no, native messages are handled by the OS, can’t be changed or localized programmatically

Alright, CFBundleLocalizations will work for us. Thanks