我在uibinder上有这个日期字段。
<form:DateField ui:field="Importation" editable="false" allowBlank="true"/>
private static final String DATE_FIELD_FORMAT = "yyyy-MMMM-dd";
@Path("Importation")
@UiField(provided = true)
DateField dImportation = new DateField(new DateTimePropertyEditor(DateTimeFormat.getFormat(DATE_FIELD_FORMAT)));
有了这个日期字段,我有正确的日期格式,它显示2013-Septembre-04(法语),这就是我想要的。
问题在于,当我点击小日历时,它几乎完全显示出来。 一切都是英文的,但按钮“今天”就像它应该的“Aujourd'hui”。
我的问题是如何用法语制作整个日历:月份名称和星期几?