1

I am dealing with JSF calendar and I want to do my work in Turkish. But when I add TimePicker to my calendar the "now" and "done" buttons are shown and they are in English (like DateTime example on http://www.primefaces.org/showcase-labs/ui/calendarTime.jsf). I want to change the language of the buttons or remove them. Any idea how to do so?

Thanks in advance.

4

1 に答える 1

2

ロケールとローカライズ JavaScript を提供することで、ラベルをカスタマイズできます。

Primefaces wikiからローカライズ JavaScript の 1 つを取得できます。その後、次のことを試してください。

<h:outputScript name=”path_to_your_translations.js” />
<p:calendar value="#{calendarBean.date1}" pattern="MM/dd/yyyy HH:mm" locale="tr" />
于 2012-04-25T13:32:46.843 に答える