You are viewing a plain text version of this content. The canonical link for it is here.
Posted to doxia-commits@maven.apache.org by br...@apache.org on 2006/03/14 15:47:25 UTC

svn commit: r385811 - in /maven/doxia/trunk: doxia-decoration-model/src/main/mdo/ doxia-site-renderer/src/main/resources/ doxia-site-renderer/src/main/resources/org/apache/maven/doxia/siterenderer/resources/

Author: brett
Date: Tue Mar 14 06:47:03 2006
New Revision: 385811

URL: http://svn.apache.org/viewcvs?rev=385811&view=rev
Log:
[MSITE-58, MSITE-103] bring category summary back into site mojo for the moment. Not put into site renderer as concept of categories is reporting specific. Also allowed referencing reports from items to permit renaming them and placing them in other menus.

Added:
    maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer.properties   (with props)
    maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_de.properties   (with props)
    maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_es.properties   (with props)
    maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_fr.properties   (with props)
    maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_it.properties   (with props)
    maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_ja.properties   (with props)
    maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_nl.properties   (with props)
    maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_pl.properties   (with props)
    maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_pt_BR.properties   (with props)
    maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_zh_CN.properties   (with props)
Modified:
    maven/doxia/trunk/doxia-decoration-model/src/main/mdo/decoration.mdo
    maven/doxia/trunk/doxia-site-renderer/src/main/resources/org/apache/maven/doxia/siterenderer/resources/default-site.vm

Modified: maven/doxia/trunk/doxia-decoration-model/src/main/mdo/decoration.mdo
URL: http://svn.apache.org/viewcvs/maven/doxia/trunk/doxia-decoration-model/src/main/mdo/decoration.mdo?rev=385811&r1=385810&r2=385811&view=diff
==============================================================================
--- maven/doxia/trunk/doxia-decoration-model/src/main/mdo/decoration.mdo (original)
+++ maven/doxia/trunk/doxia-decoration-model/src/main/mdo/decoration.mdo Tue Mar 14 06:47:03 2006
@@ -131,6 +131,20 @@
             }
         }
     }
+
+    public java.util.List getMenus()
+    {
+        java.util.List menus;
+        if ( body != null && body.getMenus() != null )
+        {
+            menus = body.getMenus();
+        }
+        else
+        {
+            menus = java.util.Collections.EMPTY_LIST;
+        }
+        return menus;
+    }
             ]]>
           </code>
         </codeSegment>
@@ -310,8 +324,8 @@
         </field>
         <field xml.attribute="true">
           <name>ref</name>
-          <description><![CDATA[A reference to a pre-defined menu, such as <code>project-info</code> or
-            <code>project-reports</code>.]]></description>
+          <description><![CDATA[A reference to a pre-defined menu, such as a <code>reports</code>, <code>modules</code>
+          or <code>parentProject</code>.]]></description>
           <version>1.0.0</version>
           <type>String</type>
           <identifier>true</identifier>
@@ -334,11 +348,26 @@
       <version>1.0.0</version>
       <superClass>LinkItem</superClass>
       <fields>
+        <field>
+          <name>description</name>
+          <description>A description of the menu item. This is used on any summary pages for a menu.</description>
+          <version>1.0.0</version>
+          <type>String</type>
+          <identifier>true</identifier>
+        </field>
         <field xml.attribute="true">
           <name>collapse</name>
           <description>Whether the item is collapsed by default when it has children elements.</description>
           <version>1.0.0</version>
           <type>boolean</type>
+          <identifier>true</identifier>
+        </field>
+        <field xml.attribute="true">
+          <name>ref</name>
+          <description><![CDATA[A reference to a pre-defined menu item, such as a report (specified by the report goal
+          name). Any elements explicitly given override those from the pre-defined reference.]]></description>
+          <version>1.0.0</version>
+          <type>String</type>
           <identifier>true</identifier>
         </field>
         <field xml.listStyle="flat">

Modified: maven/doxia/trunk/doxia-site-renderer/src/main/resources/org/apache/maven/doxia/siterenderer/resources/default-site.vm
URL: http://svn.apache.org/viewcvs/maven/doxia/trunk/doxia-site-renderer/src/main/resources/org/apache/maven/doxia/siterenderer/resources/default-site.vm?rev=385811&r1=385810&r2=385811&view=diff
==============================================================================
--- maven/doxia/trunk/doxia-site-renderer/src/main/resources/org/apache/maven/doxia/siterenderer/resources/default-site.vm (original)
+++ maven/doxia/trunk/doxia-site-renderer/src/main/resources/org/apache/maven/doxia/siterenderer/resources/default-site.vm Tue Mar 14 06:47:03 2006
@@ -170,22 +170,22 @@
 
   #if ( $datePosition.equalsIgnoreCase( $position ) )
     #if ( ( $datePosition.equalsIgnoreCase( "right" ) ) || ( $datePosition.equalsIgnoreCase( "bottom" ) ) )
-      &nbsp;| $i18n.getString( "site-plugin", $locale, "template.lastpublished" ): $dateToday
+      &nbsp;| $i18n.getString( "site-renderer", $locale, "template.lastpublished" ): $dateToday
       #if ( $versionPosition.equalsIgnoreCase( $position ) )
-        &nbsp;| $i18n.getString( "site-plugin", $locale, "template.version" ): ${project.version}
+        &nbsp;| $i18n.getString( "site-renderer", $locale, "template.version" ): ${project.version}
       #end
     #elseif ( ( $datePosition.equalsIgnoreCase( "navigation-bottom" ) ) || ( $datePosition.equalsIgnoreCase( "navigation-top" ) ) )
       <div id="lastPublished">
-        $i18n.getString( "site-plugin", $locale, "template.lastpublished" ): $dateToday
+        $i18n.getString( "site-renderer", $locale, "template.lastpublished" ): $dateToday
         #if ( $versionPosition.equalsIgnoreCase( $position ) )
-          &nbsp;| $i18n.getString( "site-plugin", $locale, "template.version" ): ${project.version}
+          &nbsp;| $i18n.getString( "site-renderer", $locale, "template.version" ): ${project.version}
         #end
       </div>
     #elseif ( $datePosition.equalsIgnoreCase("left") )
       <div class="xleft">
-        $i18n.getString( "site-plugin", $locale, "template.lastpublished" ): $dateToday
+        $i18n.getString( "site-renderer", $locale, "template.lastpublished" ): $dateToday
         #if ( $versionPosition.equalsIgnoreCase( $position ) )
-          &nbsp;| $i18n.getString( "site-plugin", $locale, "template.version" ): ${project.version}
+          &nbsp;| $i18n.getString( "site-renderer", $locale, "template.version" ): ${project.version}
         #end
         #if ( $breadcrumbs && $breadcrumbs.size() > 0 )
           | #breadcrumbs( $breadcrumbs )
@@ -194,14 +194,14 @@
     #end
   #elseif ( $versionPosition.equalsIgnoreCase( $position ) )
     #if ( ( $versionPosition.equalsIgnoreCase( "right" ) ) || ( $versionPosition.equalsIgnoreCase( "bottom" ) ) )
-      &nbsp;| $i18n.getString( "site-plugin", $locale, "template.version" ): ${project.version}
+      &nbsp;| $i18n.getString( "site-renderer", $locale, "template.version" ): ${project.version}
     #elseif ( ( $versionPosition.equalsIgnoreCase( "navigation-bottom" ) ) || ( $versionPosition.equalsIgnoreCase( "navigation-top" ) ) )
       <div id="lastPublished">
-        $i18n.getString( "site-plugin", $locale, "template.version" ): ${project.version}
+        $i18n.getString( "site-renderer", $locale, "template.version" ): ${project.version}
       </div>
     #elseif ( $versionPosition.equalsIgnoreCase("left") )
       <div class="xleft">
-        $i18n.getString( "site-plugin", $locale, "template.version" ): ${project.version}
+        $i18n.getString( "site-renderer", $locale, "template.version" ): ${project.version}
         #if ( $breadcrumbs && $breadcrumbs.size() > 0 )
           | #breadcrumbs( $breadcrumbs )
         #end
@@ -228,7 +228,7 @@
             #if( $item.name )
                 #set ( $name = $item.name )
             #else
-                #set ( $name = $i18n.getString( "site-plugin", $locale, "template.builtby" )  )
+                #set ( $name = $i18n.getString( "site-renderer", $locale, "template.builtby" )  )
                 #set ( $name = "${name} Maven"  )
             #end
 
@@ -245,13 +245,13 @@
             </a>
         #end
         #if( $poweredBy.isEmpty() )
-          <a href="http://maven.apache.org/" title="$i18n.getString( "site-plugin", $locale, "template.builtby" ) Maven" id="poweredBy">
-            <img alt="$i18n.getString( "site-plugin", $locale, "template.builtby" ) Maven" src="$relativePath/images/logos/maven-feather.png"></img>
+          <a href="http://maven.apache.org/" title="$i18n.getString( "site-renderer", $locale, "template.builtby" ) Maven" id="poweredBy">
+            <img alt="$i18n.getString( "site-renderer", $locale, "template.builtby" ) Maven" src="$relativePath/images/logos/maven-feather.png"></img>
           </a>
         #end
     #else
-        <a href="http://maven.apache.org/" title="$i18n.getString( "site-plugin", $locale, "template.builtby" ) Maven" id="poweredBy">
-          <img alt="$i18n.getString( "site-plugin", $locale, "template.builtby" ) Maven" src="$relativePath/images/logos/maven-feather.png"></img>
+        <a href="http://maven.apache.org/" title="$i18n.getString( "site-renderer", $locale, "template.builtby" ) Maven" id="poweredBy">
+          <img alt="$i18n.getString( "site-renderer", $locale, "template.builtby" ) Maven" src="$relativePath/images/logos/maven-feather.png"></img>
         </a>
     #end
 #end

Added: maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer.properties
URL: http://svn.apache.org/viewcvs/maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer.properties?rev=385811&view=auto
==============================================================================
--- maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer.properties (added)
+++ maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer.properties Tue Mar 14 06:47:03 2006
@@ -0,0 +1,19 @@
+# -------------------------------------------------------------------
+# Copyright 2001-2005 The Apache Software Foundation.
+#
+# Licensed 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.
+# -------------------------------------------------------------------
+
+template.lastpublished=Last Published
+template.version=Version
+template.builtby=Built by

Propchange: maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer.properties
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_de.properties
URL: http://svn.apache.org/viewcvs/maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_de.properties?rev=385811&view=auto
==============================================================================
--- maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_de.properties (added)
+++ maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_de.properties Tue Mar 14 06:47:03 2006
@@ -0,0 +1,18 @@
+# -------------------------------------------------------------------
+# Copyright 2001-2005 The Apache Software Foundation.
+# 
+# Licensed 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.
+# -------------------------------------------------------------------
+
+template.lastpublished=Zuletzt Publiziert
+template.builtby=Erstellt von

Propchange: maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_de.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_de.properties
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_es.properties
URL: http://svn.apache.org/viewcvs/maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_es.properties?rev=385811&view=auto
==============================================================================
--- maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_es.properties (added)
+++ maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_es.properties Tue Mar 14 06:47:03 2006
@@ -0,0 +1,19 @@
+# -------------------------------------------------------------------
+# Copyright 2001-2006 The Apache Software Foundation.
+#
+# Licensed 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.
+# -------------------------------------------------------------------
+
+template.lastpublished=Publicado el
+template.version=Versión
+template.builtby=Generado por

Propchange: maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_es.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_es.properties
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_fr.properties
URL: http://svn.apache.org/viewcvs/maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_fr.properties?rev=385811&view=auto
==============================================================================
--- maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_fr.properties (added)
+++ maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_fr.properties Tue Mar 14 06:47:03 2006
@@ -0,0 +1,18 @@
+# -------------------------------------------------------------------
+# Copyright 2001-2005 The Apache Software Foundation.
+# 
+# Licensed 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.
+# -------------------------------------------------------------------
+
+template.lastpublished=Dernière publication
+template.builtby=Produit par

Propchange: maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_fr.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_fr.properties
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_it.properties
URL: http://svn.apache.org/viewcvs/maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_it.properties?rev=385811&view=auto
==============================================================================
--- maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_it.properties (added)
+++ maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_it.properties Tue Mar 14 06:47:03 2006
@@ -0,0 +1,19 @@
+# -------------------------------------------------------------------
+# Copyright 2001-2005 The Apache Software Foundation.
+#
+# Licensed 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.
+# -------------------------------------------------------------------
+
+template.lastpublished=Ultima Pubblicazione
+template.version=Versione
+template.builtby=Costruito da

Propchange: maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_it.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_it.properties
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_ja.properties
URL: http://svn.apache.org/viewcvs/maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_ja.properties?rev=385811&view=auto
==============================================================================
--- maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_ja.properties (added)
+++ maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_ja.properties Tue Mar 14 06:47:03 2006
@@ -0,0 +1,19 @@
+# -------------------------------------------------------------------
+# Copyright 2001-2005 The Apache Software Foundation.
+# 
+# Licensed 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.
+# -------------------------------------------------------------------
+
+template.lastpublished=\u00e6\u0153\u20ac\u00e7\u00b5\u201a\u00e6\u203a\u00b4\u00e6\u2013\u00b0\u00e6\u2014\u00a5
+template.version=\u00e3\u0192\ufffd\u00e3\u0192\u00bc\u00e3\u201a\u00b8\u00e3\u0192\u00a7\u00e3\u0192\u00b3
+template.builtby=\u00e4\u00bd\u0153\u00e6\u02c6\ufffd\u00e8\u20ac\u2026:

Propchange: maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_ja.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_ja.properties
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_nl.properties
URL: http://svn.apache.org/viewcvs/maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_nl.properties?rev=385811&view=auto
==============================================================================
--- maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_nl.properties (added)
+++ maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_nl.properties Tue Mar 14 06:47:03 2006
@@ -0,0 +1,22 @@
+# -------------------------------------------------------------------
+# Copyright 2001-2005 The Apache Software Foundation.
+# 
+# Licensed 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.
+# -------------------------------------------------------------------
+#
+# translated by: Mark Donszelmann (Mark.Donszelmann@slac.stanford.edu)
+# version: $Id$
+#
+
+template.lastpublished=Meest recente publicatie
+template.builtby=Gemaakt door

Propchange: maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_nl.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_nl.properties
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_pl.properties
URL: http://svn.apache.org/viewcvs/maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_pl.properties?rev=385811&view=auto
==============================================================================
--- maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_pl.properties (added)
+++ maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_pl.properties Tue Mar 14 06:47:03 2006
@@ -0,0 +1,18 @@
+# -------------------------------------------------------------------
+# Copyright 2001-2005 The Apache Software Foundation.
+#
+# Licensed 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.
+# -------------------------------------------------------------------
+
+template.lastpublished=Ostatnio opublikowano
+template.builtby=Skompilowane przez

Propchange: maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_pl.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_pl.properties
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_pt_BR.properties
URL: http://svn.apache.org/viewcvs/maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_pt_BR.properties?rev=385811&view=auto
==============================================================================
--- maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_pt_BR.properties (added)
+++ maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_pt_BR.properties Tue Mar 14 06:47:03 2006
@@ -0,0 +1,19 @@
+# -------------------------------------------------------------------
+# Copyright 2001-2005 The Apache Software Foundation.
+#
+# Licensed 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.
+# -------------------------------------------------------------------
+
+template.lastpublished=Última atualização
+template.version=Versão
+template.builtby=Construído por

Propchange: maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_pt_BR.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_pt_BR.properties
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_zh_CN.properties
URL: http://svn.apache.org/viewcvs/maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_zh_CN.properties?rev=385811&view=auto
==============================================================================
--- maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_zh_CN.properties (added)
+++ maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_zh_CN.properties Tue Mar 14 06:47:03 2006
@@ -0,0 +1,20 @@
+#Generated by ResourceBundle Editor (http://eclipse-rbe.sourceforge.net)
+# -------------------------------------------------------------------
+# Copyright 2001-2005 The Apache Software Foundation.
+#
+# Licensed 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.
+# -------------------------------------------------------------------
+
+template.builtby       = \u6784\u5EFA\u4F9D\u9760
+template.lastpublished = \u6700\u8FD1\u66F4\u65B0
+template.version       = \u7248\u672C

Propchange: maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_zh_CN.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/doxia/trunk/doxia-site-renderer/src/main/resources/site-renderer_zh_CN.properties
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision