Author: jleroux
Date: Sat Apr 11 14:53:02 2009
New Revision: 764207
URL:
http://svn.apache.org/viewvc?rev=764207&view=revLog:
Guo's solution was not working, did not search more + correct French translation
Modified:
ofbiz/trunk/framework/example/config/ExampleUiLabels.xml
ofbiz/trunk/framework/example/widget/example/FormWidgetExampleForms.xml
Modified: ofbiz/trunk/framework/example/config/ExampleUiLabels.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/example/config/ExampleUiLabels.xml?rev=764207&r1=764206&r2=764207&view=diff==============================================================================
--- ofbiz/trunk/framework/example/config/ExampleUiLabels.xml (original)
+++ ofbiz/trunk/framework/example/config/ExampleUiLabels.xml Sat Apr 11 14:53:02 2009
@@ -129,7 +129,7 @@
</property>
<property key="ExampleDateField7Tooltip">
<value xml:lang="en">This is an example of MM/dd/yyyy format</value>
- <value xml:lang="fr">Example au format MM/dd/yyyy</value>
+ <value xml:lang="fr">Exemple auformat MM/dd/yyyy</value>
<value xml:lang="it">Questo è un'esempio di formato data MM/gg/aaaa</value>
</property>
<property key="ExampleDateField8Title">
@@ -139,7 +139,7 @@
</property>
<property key="ExampleDateField8Tooltip">
<value xml:lang="en">This is an example of MMMM, dd, yyyy format</value>
- <value xml:lang="fr">Exmaple au format MMMM, dd, yyyy</value>
+ <value xml:lang="fr">Exemple au format MMMM, dd, yyyy</value>
<value xml:lang="it">Questo è un'esempio di formato data MMMM, gg, aaaa</value>
</property>
<property key="ExampleDateField9Title">
Modified: ofbiz/trunk/framework/example/widget/example/FormWidgetExampleForms.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/example/widget/example/FormWidgetExampleForms.xml?rev=764207&r1=764206&r2=764207&view=diff==============================================================================
--- ofbiz/trunk/framework/example/widget/example/FormWidgetExampleForms.xml (original)
+++ ofbiz/trunk/framework/example/widget/example/FormWidgetExampleForms.xml Sat Apr 11 14:53:02 2009
@@ -97,7 +97,7 @@
entry-name="exampleDateField"
title="${uiLabelMap.ExampleDateField7Title}"
tooltip="${uiLabelMap.ExampleDateField7Tooltip}">
- <display description="${date:toDateString(exampleDateField, "MM/dd/yyyy");}"/>
+ <display description="${groovy:org.ofbiz.base.util.UtilDateTime.toDateString(exampleDateField, "MM/dd/yyyy");}"/>
</field>
<!-- ***************** -->
<!-- *** field8 *** -->
@@ -106,7 +106,7 @@
entry-name="exampleDateField"
title="${uiLabelMap.ExampleDateField8Title}"
tooltip="${uiLabelMap.ExampleDateField8Tooltip}">
- <display description="${date:toDateString(exampleDateField, "MMMM, dd, yyyy");}"/>
+ <display description="${groovy:org.ofbiz.base.util.UtilDateTime.toDateString(exampleDateField, "MMMM,dd,yyyy");}"/>
</field>
</form>