Author: kwright
Date: Mon Oct 9 17:22:39 2023
New Revision: 1912841
URL: http://svn.apache.org/viewvc?rev=1912841&view=rev
Log:
Pull up fix for missing translations
Modified:
manifoldcf/branches/release-2.26-branch/ (props changed)
manifoldcf/branches/release-2.26-branch/framework/build.xml
Propchange: manifoldcf/branches/release-2.26-branch/
------------------------------------------------------------------------------
Merged /manifoldcf/trunk:r1912840
Modified: manifoldcf/branches/release-2.26-branch/framework/build.xml
URL:
http://svn.apache.org/viewvc/manifoldcf/branches/release-2.26-branch/framework/build.xml?rev=1912841&r1=1912840&r2=1912841&view=diff
==============================================================================
--- manifoldcf/branches/release-2.26-branch/framework/build.xml (original)
+++ manifoldcf/branches/release-2.26-branch/framework/build.xml Mon Oct 9
17:22:39 2023
@@ -266,7 +266,7 @@
</target>
<target name="compile-core">
- <mkdir dir="build/core/classes"/>
+ <mkdir dir="build/core/classes"/><native2ascii encoding="UTF-8"
src="ui-core/src/main/native2ascii" dest="build/ui-core/classes"
includes="**/*.properties" />
<javac srcdir="core/src/main/java" destdir="build/core/classes"
deprecation="true" target="11" source="11" debug="true" encoding="utf-8"
debuglevel="lines,vars,source">
<classpath>
<path refid="framework-classpath"/>
@@ -282,6 +282,7 @@
<pathelement location="build/core/classes"/>
</classpath>
</javac>
+ <native2ascii encoding="UTF-8" src="ui-core/src/main/native2ascii"
dest="build/ui-core/classes" includes="**/*.properties" />
</target>
<target name="compile-agents" depends="compile-core">