Reputation: 677
I'm using Primefaces library with Java Server Faces.
The problem is that the web app that we're developing is in spanish. And Primefaces library send me the alerts and errors in English, like this:
Is there any way to configure Primefaces.jar to change the text of alerts outputs? or is there a primerfaces.jar library in spanish?
Thanks.
Upvotes: 1
Views: 151
Reputation: 1846
You can custom empty message with :
<p:dataTable ... emptyMessage="Your empty message" ... />
Upvotes: 3