cancel
Showing results for 
Search instead for 
Did you mean: 

Remove or deactivite language pack

sune_storebjer1
Champ in-the-making
Champ in-the-making
Hey everyone,
First of all, thank you very much for all the good work that you have put in to Alfresco, it is really an amazing application.

With the latest language packs included in Alfresco, i would like to know if there is a way to force all users to use English or another language in the share interface ?

Best Regards

Sune
6 REPLIES 6

sune_storebjer1
Champ in-the-making
Champ in-the-making
i found a solution, might not be pretty, but it works :

Alfresco:/opt/alfresco-3.4.d/tomcat/webapps/share/WEB-INF/classes# find . -name \*_fr.properties | xargs rm

If anybody else have something else, i'm all ear

brgs

Sune

rleones
Champ in-the-making
Champ in-the-making
I guess that the best way to do this is to override the Alfresco default configuration in alfresco/extension/web-client-config-custom.xml with the code below. The attribute replace means that the default configuration will be replaced by this one!

    <config evaluator="string-compare" condition="Languages" replace="true">
      <!– the list of available language files –>
      <languages>
         <language locale="pt_BR">Portuguese (Brazil)</language>
      </languages>
   </config>

mikeh
Star Contributor
Star Contributor
I guess that the best way to do this is to override the Alfresco default configuration in alfresco/extension/web-client-config-custom.xml with the code below. The attribute replace means that the default configuration will be replaced by this one!

    <config evaluator="string-compare" condition="Languages" replace="true">
      <!– the list of available language files –>
      <languages>
         <language locale="pt_BR">Portuguese (Brazil)</language>
      </languages>
   </config>

It might be, but that's for the wrong client!

rleones
Champ in-the-making
Champ in-the-making
I guess that the best way to do this is to override the Alfresco default configuration in alfresco/extension/web-client-config-custom.xml with the code below. The attribute replace means that the default configuration will be replaced by this one!

    <config evaluator="string-compare" condition="Languages" replace="true">
      <!– the list of available language files –>
      <languages>
         <language locale="pt_BR">Portuguese (Brazil)</language>
      </languages>
   </config>

It might be, but that's for the wrong client!

Yes, You're sure! I've forgotten that this one is only for explorer!!! I'm sorry!  Smiley Surprisedops:

i_
Champ in-the-making
Champ in-the-making
so, anybody found any solution to strict usage of only one hard-setted language, despite of browser locale-settings for Share component?

nerio
Champ in-the-making
Champ in-the-making
UP!!!