Yes,
I checked on a windows 7 french edition with a french chrome installed, it show in french. I assumed that the error message is inside the chrome code:
“Veuillez renseigner ce champ.” for “Please fill out this field.” in chrome 47.0.2526.111 m version.
The same code will get “value missing” in a compile EXE with 1.7 EXEOUTPUT. (both windows, english and french shows the same “value missing”, notice that there is no dot at the end of the text, or a even the uppercase for the V letter)
The code used to test this is:
< form id=“form-demo”>
< input type=text required name=foo placeholder=“I’m Required”>
< input type=text required name=bar placeholder=“Me too!”>
< input type=“email” name=“email” required placeholder=“Enter a valid email address”>
< input type=submit>
< /form>
I manage to add some description to the error message by adding:
< input type=“text” required title=“Lütfen işaretli yerleri doldurunuz” />
or to change it by adding:
< input type=“text” pattern="[a-zA-Z]+" oninvalid=“setCustomValidity('Plz enter on Alphabets ')” onchange=“try{setCustomValidity(’’)}catch(e){}” /> (only work on chrome, but no in compile EXE)
But they are many error that chrome can handle when making a form (email check, alphanumeric check, numeric limits…)
Finally I also notice the exclamation icon also change from different chrome versions, maybe we can modify that also.
Best regards,
Steph