mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
. Fix for I18N issue identified on the forums
- not having language pack files with "_en_US" causes problems on machines using non-english locale by default - basically you cannot select English locale (not that you probably would if you had a french machine etc. but I digress…) - added an ANT task that duplicates our messages properties files to _en_US during the build process. . Increased default buffer size for browse.jsp page. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2051 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -67,6 +67,12 @@
|
|||||||
<fileset dir="${dir.config.repository}"/>
|
<fileset dir="${dir.config.repository}"/>
|
||||||
<fileset dir="${dir.config.webclient}"/>
|
<fileset dir="${dir.config.webclient}"/>
|
||||||
</copy>
|
</copy>
|
||||||
|
|
||||||
|
<copy todir="${dir.assemble}/WEB-INF/classes/alfresco/messages">
|
||||||
|
<fileset dir="${dir.assemble}/WEB-INF/classes/alfresco/messages"/>
|
||||||
|
<mapper type="glob" from="*.properties" to="*_en_US.properties"/>
|
||||||
|
</copy>
|
||||||
|
|
||||||
<copy todir="${dir.assemble}/WEB-INF/classes" file="${dir.project.core}/source/java/log4j.properties" />
|
<copy todir="${dir.assemble}/WEB-INF/classes" file="${dir.project.core}/source/java/log4j.properties" />
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
@@ -84,6 +90,11 @@
|
|||||||
<fileset dir="${dir.config.repository}"/>
|
<fileset dir="${dir.config.repository}"/>
|
||||||
<fileset dir="${dir.config.webclient}"/>
|
<fileset dir="${dir.config.webclient}"/>
|
||||||
</copy>
|
</copy>
|
||||||
|
|
||||||
|
<copy todir="${dir.deploy.jboss}/../conf/alfresco/messages">
|
||||||
|
<fileset dir="${dir.deploy.jboss}/../conf/alfresco/messages"/>
|
||||||
|
<mapper type="glob" from="*.properties" to="*_en_US.properties"/>
|
||||||
|
</copy>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="clean" depends="common.clean" description="Cleans all the normal files plus web.xml">
|
<target name="clean" depends="common.clean" description="Cleans all the normal files plus web.xml">
|
||||||
|
@@ -24,9 +24,9 @@
|
|||||||
<%@ taglib uri="/WEB-INF/alfresco.tld" prefix="a" %>
|
<%@ taglib uri="/WEB-INF/alfresco.tld" prefix="a" %>
|
||||||
<%@ taglib uri="/WEB-INF/repo.tld" prefix="r" %>
|
<%@ taglib uri="/WEB-INF/repo.tld" prefix="r" %>
|
||||||
|
|
||||||
<%@ page buffer="64kb" contentType="text/html;charset=UTF-8" %>
|
<%@ page buffer="100kb" contentType="text/html;charset=UTF-8" %>
|
||||||
<%@ page isELIgnored="false" %>
|
<%@ page isELIgnored="false" %>
|
||||||
|
|
||||||
<r:page titleId="title_browse">
|
<r:page titleId="title_browse">
|
||||||
|
|
||||||
<f:view>
|
<f:view>
|
||||||
|
Reference in New Issue
Block a user