Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 317770

Summary: Improve future i18n support
Product: z_Archived Reporter: Archimedes Trajano <developer>
Component: IAMAssignee: 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:

Description Archimedes Trajano CLA 2010-06-23 23:59:27 EDT
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
Comment 1 Carlos Sanchez CLA 2010-07-14 04:43:59 EDT
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.