xxshutong answered you, you might also consult the docmentation
https://cwiki.apache.org/confluence/display/OFBENDUSER/Apache+OFBiz+Business+Setup+Guide?focusedCommentId=8192400#comment-8192400
Jacques
Antony Adopo wrote:
> ok. this the code for dropdown box for language in ecommerce app:
>
> <form method="post" name="chooseLanguage"
> action="<@ofbizUrl>setSessionLocale</@ofbizUrl>">
> <select name="newLocale" class="selectBox" style="width:95%"
> onchange="submit()">
> <#assign availableLocales =
> Static["org.ofbiz.base.util.UtilMisc"].availableLocales()/>
> <#list availableLocales as availableLocale>
> <#assign langAttr = availableLocale.toString()?replace("_", "-")>
> <#assign langDir = "ltr">
> <#if "ar.iw"?contains(langAttr?substring(0, 2))>
> <#assign langDir = "rtl">
> </#if>
> <option lang="${langAttr}" dir="${langDir}"
> value="${availableLocale.toString()}"<#if locale.toString() =
> availableLocale.toString()>
> selected="selected"</#if>>${availableLocale.getDisplayName(availableLocale)}</option>
> </#list>
> </select>
>
> But I want only english and french language. not all
>
> How do this?
>
>
> 2013/11/3 xxshutong <[email protected]>
>
>> Just update the framework/common/config/general.properties
>> change
>> #locales.available=ar,de,en,es,fr,hi,it,nl,pt,ro,ru,th,zh
>> to
>> locales.available=your language
>>
>> On Nov 3, 2013, at 10:46 AM, Antony Adopo <[email protected]> wrote:
>>
>>> Helle Ofbizers.
>>> Please how to select only two language to stay in my "select balise"
>>> instead of putting all languages?
>>>
>>> thanks