You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2018/11/13 14:35:04 UTC

svn commit: r1846515 - in /tomcat/trunk: build.xml conf/catalina.properties res/maven/mvn-pub.xml res/maven/tomcat-i18n-pt-BR.pom webapps/docs/changelog.xml

Author: markt
Date: Tue Nov 13 14:35:03 2018
New Revision: 1846515

URL: http://svn.apache.org/viewvc?rev=1846515&view=rev
Log:
Include Brazilian Portuguese translations in the standard Tomcat distribution.

Added:
    tomcat/trunk/res/maven/tomcat-i18n-pt-BR.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=1846515&r1=1846514&r2=1846515&view=diff
==============================================================================
--- tomcat/trunk/build.xml (original)
+++ tomcat/trunk/build.xml Tue Nov 13 14:35:03 2018
@@ -942,6 +942,16 @@
       <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}">
+        <include name="**/LocalStrings_pt_BR.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-ru.jar"
       manifest="${tomcat.manifests}/default.manifest">
       <fileset dir="${tomcat.classes}">

Modified: tomcat/trunk/conf/catalina.properties
URL: http://svn.apache.org/viewvc/tomcat/trunk/conf/catalina.properties?rev=1846515&r1=1846514&r2=1846515&view=diff
==============================================================================
--- tomcat/trunk/conf/catalina.properties (original)
+++ tomcat/trunk/conf/catalina.properties Tue Nov 13 14:35:03 2018
@@ -177,6 +177,7 @@ tomcat-i18n-en.jar,\
 tomcat-i18n-es.jar,\
 tomcat-i18n-fr.jar,\
 tomcat-i18n-ja.jar,\
+tomcat-i18n-pt-BR.jar,\
 tomcat-i18n-ru.jar,\
 tomcat-jdbc.jar,\
 tomcat-jni.jar,\

Modified: tomcat/trunk/res/maven/mvn-pub.xml
URL: http://svn.apache.org/viewvc/tomcat/trunk/res/maven/mvn-pub.xml?rev=1846515&r1=1846514&r2=1846515&view=diff
==============================================================================
--- tomcat/trunk/res/maven/mvn-pub.xml (original)
+++ tomcat/trunk/res/maven/mvn-pub.xml Tue Nov 13 14:35:03 2018
@@ -442,6 +442,7 @@
     <doMavenDeployNoSrc artifactId="tomcat-i18n-es"/>
     <doMavenDeployNoSrc artifactId="tomcat-i18n-fr"/>
     <doMavenDeployNoSrc artifactId="tomcat-i18n-ja"/>
+    <doMavenDeployNoSrc artifactId="tomcat-i18n-pt-BR"/>
     <doMavenDeployNoSrc artifactId="tomcat-i18n-ru"/>
 
     <!-- Extras jars -->

Added: tomcat/trunk/res/maven/tomcat-i18n-pt-BR.pom
URL: http://svn.apache.org/viewvc/tomcat/trunk/res/maven/tomcat-i18n-pt-BR.pom?rev=1846515&view=auto
==============================================================================
--- tomcat/trunk/res/maven/tomcat-i18n-pt-BR.pom (added)
+++ tomcat/trunk/res/maven/tomcat-i18n-pt-BR.pom Tue Nov 13 14:35:03 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-pt-BR</artifactId>
+  <version>@MAVEN.DEPLOY.VERSION@</version>
+  <description>Brazilian Portuguese 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-pt-BR.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=1846515&r1=1846514&r2=1846515&view=diff
==============================================================================
--- tomcat/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/trunk/webapps/docs/changelog.xml Tue Nov 13 14:35:03 2018
@@ -144,6 +144,10 @@
         remm, David, NicolasG, Israel, Ulises Gonzalez Horta, burghard and
         Geraldo Netto. (markt)
       </add>
+      <fix>
+        Include Brazilian Portuguese translations in the standard Tomcat
+        distribution. (markt)
+      </fix>
     </changelog>
   </subsection>
 </section>



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