Author: markt
Date: Wed Nov 21 08:58:38 2018
New Revision: 1847082

URL: http://svn.apache.org/viewvc?rev=1847082&view=rev
Log:
Add simplified Chinese (currently 32% translated) and Korean (currently 10% 
translated) to the standard Tomcat distribution.

Added:
    tomcat/trunk/res/maven/tomcat-i18n-ko.pom   (with props)
    tomcat/trunk/res/maven/tomcat-i18n-zh-CN.pom   (with props)
Modified:
    tomcat/trunk/build.xml
    tomcat/trunk/conf/catalina.properties
    tomcat/trunk/res/maven/mvn-pub.xml
    tomcat/trunk/webapps/docs/changelog.xml

Modified: tomcat/trunk/build.xml
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/build.xml?rev=1847082&r1=1847081&r2=1847082&view=diff
==============================================================================
--- tomcat/trunk/build.xml (original)
+++ tomcat/trunk/build.xml Wed Nov 21 08:58:38 2018
@@ -942,6 +942,16 @@
       <zipfileset file="${tomcat.manifests}/default.license"
         fullpath="META-INF/LICENSE" />
     </jar>
+    <jar jarfile="${tomcat.build}/lib/tomcat-i18n-ko.jar"
+      manifest="${tomcat.manifests}/default.manifest">
+      <fileset dir="${tomcat.classes}">
+        <include name="**/LocalStrings_ko.properties" />
+      </fileset>
+      <zipfileset file="${tomcat.manifests}/default.notice"
+        fullpath="META-INF/NOTICE" />
+      <zipfileset file="${tomcat.manifests}/default.license"
+        fullpath="META-INF/LICENSE" />
+    </jar>
     <jar jarfile="${tomcat.build}/lib/tomcat-i18n-pt-BR.jar"
       manifest="${tomcat.manifests}/default.manifest">
       <fileset dir="${tomcat.classes}">
@@ -959,6 +969,16 @@
       </fileset>
       <zipfileset file="${tomcat.manifests}/default.notice"
         fullpath="META-INF/NOTICE" />
+      <zipfileset file="${tomcat.manifests}/default.license"
+        fullpath="META-INF/LICENSE" />
+    </jar>
+    <jar jarfile="${tomcat.build}/lib/tomcat-i18n-zh-CN.jar"
+      manifest="${tomcat.manifests}/default.manifest">
+      <fileset dir="${tomcat.classes}">
+        <include name="**/LocalStrings_zh_CN.properties" />
+      </fileset>
+      <zipfileset file="${tomcat.manifests}/default.notice"
+        fullpath="META-INF/NOTICE" />
       <zipfileset file="${tomcat.manifests}/default.license"
         fullpath="META-INF/LICENSE" />
     </jar>

Modified: tomcat/trunk/conf/catalina.properties
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/conf/catalina.properties?rev=1847082&r1=1847081&r2=1847082&view=diff
==============================================================================
--- tomcat/trunk/conf/catalina.properties (original)
+++ tomcat/trunk/conf/catalina.properties Wed Nov 21 08:58:38 2018
@@ -177,8 +177,10 @@ tomcat-i18n-en.jar,\
 tomcat-i18n-es.jar,\
 tomcat-i18n-fr.jar,\
 tomcat-i18n-ja.jar,\
+tomcat-i18n-ko.jar,\
 tomcat-i18n-pt-BR.jar,\
 tomcat-i18n-ru.jar,\
+tomcat-i18n-zh-CN.jar,\
 tomcat-jdbc.jar,\
 tomcat-jni.jar,\
 tomcat-juli-adapters.jar,\

Modified: tomcat/trunk/res/maven/mvn-pub.xml
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/res/maven/mvn-pub.xml?rev=1847082&r1=1847081&r2=1847082&view=diff
==============================================================================
--- tomcat/trunk/res/maven/mvn-pub.xml (original)
+++ tomcat/trunk/res/maven/mvn-pub.xml Wed Nov 21 08:58:38 2018
@@ -442,8 +442,10 @@
     <doMavenDeployNoSrc artifactId="tomcat-i18n-es"/>
     <doMavenDeployNoSrc artifactId="tomcat-i18n-fr"/>
     <doMavenDeployNoSrc artifactId="tomcat-i18n-ja"/>
+    <doMavenDeployNoSrc artifactId="tomcat-i18n-ko"/>
     <doMavenDeployNoSrc artifactId="tomcat-i18n-pt-BR"/>
     <doMavenDeployNoSrc artifactId="tomcat-i18n-ru"/>
+    <doMavenDeployNoSrc artifactId="tomcat-i18n-zh-CN"/>
 
     <!-- Extras jars -->
     <doMavenDeploy artifactId="tomcat-catalina-jmx-remote"

Added: tomcat/trunk/res/maven/tomcat-i18n-ko.pom
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/res/maven/tomcat-i18n-ko.pom?rev=1847082&view=auto
==============================================================================
--- tomcat/trunk/res/maven/tomcat-i18n-ko.pom (added)
+++ tomcat/trunk/res/maven/tomcat-i18n-ko.pom Wed Nov 21 08:58:38 2018
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.tomcat</groupId>
+  <artifactId>tomcat-i18n-ko</artifactId>
+  <version>@MAVEN.DEPLOY.VERSION@</version>
+  <description>Korean translations</description>
+  <url>https://tomcat.apache.org/</url>
+  <licenses>
+    <license>
+      <name>Apache License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+</project>

Propchange: tomcat/trunk/res/maven/tomcat-i18n-ko.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: tomcat/trunk/res/maven/tomcat-i18n-zh-CN.pom
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/res/maven/tomcat-i18n-zh-CN.pom?rev=1847082&view=auto
==============================================================================
--- tomcat/trunk/res/maven/tomcat-i18n-zh-CN.pom (added)
+++ tomcat/trunk/res/maven/tomcat-i18n-zh-CN.pom Wed Nov 21 08:58:38 2018
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.tomcat</groupId>
+  <artifactId>tomcat-i18n-zh-CN</artifactId>
+  <version>@MAVEN.DEPLOY.VERSION@</version>
+  <description>Simplified Chinese translations</description>
+  <url>https://tomcat.apache.org/</url>
+  <licenses>
+    <license>
+      <name>Apache License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+</project>

Propchange: tomcat/trunk/res/maven/tomcat-i18n-zh-CN.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: tomcat/trunk/webapps/docs/changelog.xml
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1847082&r1=1847081&r2=1847082&view=diff
==============================================================================
--- tomcat/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/trunk/webapps/docs/changelog.xml Wed Nov 21 08:58:38 2018
@@ -208,7 +208,11 @@
         distribution. (markt)
       </fix>
       <fix>
-        Include German translations in the standard Tomcat distribution. 
(markt)
+        Include Simplified Chinese translations in the standard Tomcat
+        distribution. (markt)
+      </fix>
+      <fix>
+        Include Korean translations in the standard Tomcat distribution. 
(markt)
       </fix>
     </changelog>
   </subsection>



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to