[Question] Translated fields
Is possible to set translation for field in file upload ? Es. File Name , Size , Type or "Drop files to attach, or browse"
Yes it should be possible since all of our strings (at least I think) are passed through the translate function.
And where i cha find the label for translations ? In issue comments i found only an object (see attach). I also open a problem (#496) for translation..there is documentation abount manage translation in formio ?
If this is still an issue for someone, I found a solution that works with "@formio/angular": "5.3.0" You have to translate all three parts separately in your translation JSON, for e.g.:
export const FORM_RENDERER_LANGUAGE = {
lt: {
'browse': 'pasirinkite',
'Drop files to attach,': 'Įkelkite failus, kuriuos norite pridėti,',
'or': 'arba'
}
};
then provide that translation for your renderer or builder:
[renderOptions]="{
language: 'lt',
i18n: {
lt: FORM_RENDERER_LANGUAGE.lt
}
}"
and it translates nicely:

We're currently addressing a backlog of GitHub issues, and as part of this effort, some inactive issues may be marked as closed. This isn't a dismissal, but a step toward more efficient tracking.
If you feel the issue is still relevant, please re-open and we'll ensure it gets the attention it deserves. Your understanding is appreciated as we work to enhance our open-source responsiveness.