Issue Details (XML | Word | Printable)

Key: MNG-3626
Type: Improvement Improvement
Status: Open Open
Priority: Major Major
Assignee: Unassigned
Reporter: Vincent Siveton
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
Maven 2

Improve pom to handle i18n fields

Created: 19/Jun/08 04:37 PM   Updated: 11/Nov/08 11:46 AM
Component/s: POM
Affects Version/s: 2.0.x
Fix Version/s: 3.0-alpha-3

Time Tracking:
Not Specified

Complexity: Intermediate


 Description  « Hide
Some fields like name or description could be internationalized. I see the following:
<project>
...
  <description xml:lang="en">English description.</description>
  <description xml:lang="de">Deutsch  description.</description>
  <description xml:lang="fr">French description.</description>
...
</project>


 All   Comments   Work Log   Change History      Sort Order: Ascending order - Click to sort in descending order
Benjamin Bentmann added a comment - 20/Jun/08 02:40 AM
Spontaneously I believe the project URL is also a target for internalization:
<project>
  ...
  <url>http://maven.apache.org/</url>
  <url xml:lang="de">http://maven.apache.org/de/</url>
  <url xml:lang="fr">http://maven.apache.org/fr/</url>
  ...
</project>

Benjamin Bentmann added a comment - 20/Jun/08 02:44 AM
However, the site directory layout is known/dictated by the Site Plugin, so no need for user customization.