Utilizing bootstrap and referencing this document:
<div class="custom-file">
<input type="file" class="custom-file-input" id="customFileLang" lang="es">
<label class="custom-file-label" for="customFileLang">Select File</label>
</div>
$custom-file-text: (
en: "Browse",
es: "Choose"
);
Even after including the lang="es"
attribute, the input text is not being translated.
Here is a codepen link, what could be the issue?