Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Changing components language PrimeFaces

Is it possible to change the language of some components from primefaces, like FILEUPLOAD component, it has buttons label as CHOOSE, CANCEL,UPLOAD, can i change this labels to my language?

like image 959
MitoCode Avatar asked Dec 11 '22 12:12

MitoCode


1 Answers

Choose = label="anyString" CANCEL = cancelLabel="anyString" and UPLOAD = uploadLabel="anyString" then <p:fileUpload cancelLabel="anyString" label="anyString" uploadLabel="anyString" />

like image 73
Mathew Rock Avatar answered Feb 16 '23 12:02

Mathew Rock