Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 317770 - Improve future i18n support
Summary: Improve future i18n support
Status: NEW
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: IAM (show other bugs)
Version: unspecified   Edit
Hardware: PC Mac OS X - Carbon (unsup.)
: P3 trivial (vote)
Target Milestone: ---   Edit
Assignee: Project Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-06-23 23:59 EDT by Archimedes Trajano CLA
Modified: 2012-01-05 13:10 EST (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.