You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ofbiz.apache.org by "Carsten Schinzer (JIRA)" <ji...@apache.org> on 2009/08/25 12:39:59 UTC

[jira] Commented: (OFBIZ-2856) ordermgr webapp - catalog - productsummary contains hard coded labels

    [ https://issues.apache.org/jira/browse/OFBIZ-2856?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12747346#action_12747346 ] 

Carsten Schinzer commented on OFBIZ-2856:
-----------------------------------------

Morning Adrian,

Thanks for pointing me there. I had not read the patch-section.
I will prepare all JIRA issues accordingly, that I have reported so far.

Who will now change the status of the JIRA issue? Am I supposed to close it
myself?
Or will that be done by the comitter who finally reviews the patches?

Kind regards

Carsten

2009/8/25 Adrian Crum (JIRA) <ji...@apache.org>



-- 

Best

Carsten Schinzer

Waisenhausstr. 53a
80637 München
Germany


> ordermgr webapp - catalog - productsummary contains hard coded labels
> ---------------------------------------------------------------------
>
>                 Key: OFBIZ-2856
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-2856
>             Project: OFBiz
>          Issue Type: Bug
>          Components: order
>    Affects Versions: SVN trunk
>         Environment: irrelevant; bug in ftl screendef
>            Reporter: Carsten Schinzer
>            Priority: Minor
>         Attachments: OFBIZ-2856_ordermgr webapp - catalog - productsummary contains hard coded labels.patch
>
>   Original Estimate: 0.25h
>  Remaining Estimate: 0.25h
>
> line 104 ff. are curremtly defined as:
>             <div>
>               <#if (sizeProductFeatureAndAppls?size == 1)>
> 				Size:
>               <#else>
> 				Available Sizes:
>               </#if>
> However, in order to enable proper i18n, these lines should rather read
>             <div>
>               <#if (sizeProductFeatureAndAppls?size == 1)>
> 				${uiLabelMap.SingleSizeAvailable}:
>               <#else>
> 				${uiLabelMap.MultipleSizesAvailable}:
>               </#if>
> ... and corresponding UI Labels added to order/config/OrderUiLables.xml.
> I've added the following locales to OrderUiLabels.xml:
>     <property key="SingleSizeAvailable">
>         <value xml:lang="de">Größe</value>
>         <value xml:lang="en">Size</value>
>         <value xml:lang="fr">Taille</value>
>     </property>
>     <property key="MultipleSizesAvailable">
>         <value xml:lang="de">Verfügbare Größen</value>
>         <value xml:lang="en">Sizes Available</value>
>         <value xml:lang="fr">Tailles Disponibles</value>
>     </property>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.