cancel
Showing results for 
Search instead for 
Did you mean: 

Delete default English Language ?

tamax
Champ in-the-making
Champ in-the-making
I've installed other languages on Alfresco and now I'd like to delete the default english language because I know that nobody is gonna use it in the company (we're poor english speakers unfortunatly…).
How can I do that ? Or, at least, how can I delete the english choice in the login window combo box as it does not appear in the web-client-custom.xml file ?
thanks in advance
regards,
Maxime.
1 REPLY 1

dnind
Champ in-the-making
Champ in-the-making
In your web-client-config-custom.xml file include replace="true" in the attributes.  This example displays only English (GB) in the drop down list:

<!– Example of adding languages to the list in the login page –>
   <config evaluator="string-compare" condition="Languages" replace="true">
       <languages>
       <language locale="en_GB">English (GB)</language>
      </languages>
   </config>

You would of course need to change this to list the languages you want to use.

Hope this helps.