The HTML input of type file consists of a text filed and a button that says "Browse". Because our users are not English speakers, we would like to change the wording on the button to be in Hebrew.
But of course, the wording on that button can't be changed - it's built into the control. The only option I know of is to use a workaround, which essentially hides the input of type file, and shows an input of type text with a button next to it, and with css & javascript makes it look and work exactly like the file input. You can read more details about it here.
My question is - is it worth it to add HTML, CSS and Javascript, just for the usability of the file input button?