Mattias
Mattias

Reputation: 3169

How to change file input language

I've got this form with the code:

<form id="file-form" method="POST">
<input type="file" 
  onchange="openFile(event)" id="file-select">
 <img id="output">
 </form>

using html5 and when i use this function it automatically calls the english version of text in mobile iOS phone:

enter image description here

Now what i'm wondering is, does anyone know how to change the language of when calling for file input?

Any help or input highly appreciated, thanks!

Upvotes: 0

Views: 625

Answers (1)

almo
almo

Reputation: 6387

This comes from the users browser/OS and you can't change it.

Upvotes: 1

Related Questions