| Summary: | Improve future i18n support | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | Archimedes Trajano <developer> |
| Component: | IAM | Assignee: | Project Inbox <iam.Core-inbox> |
| Status: | NEW --- | QA Contact: | |
| Severity: | trivial | ||
| Priority: | P3 | CC: | carlos.sanchez |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Mac OS X - Carbon (unsup.) | ||
| Whiteboard: | |||
We haven't seen any interest yet on i18n, that's why we didn't spent much effort. If anyone interested in translating to another language shows up then we can revisit the codebase. |
Build Identifier: plugins/maven/core/src/main/java/org/eclipse/iam/core/projectimport/ImportProjectJob.java you may want to refactor super( "Importing " + pomDescriptors.size() + " Maven 2 projects" ); to super( MessageFormat.format("Importing {0} Maven 2 project(s)", pomDescriptors.size() ); then further refactor later it so that the following will work super( "bundle.id", pomDescriptors.size() ); // $NON-NLS-1$ to allow for i18n. Reproducible: Always