This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 160064 - I18N : "Ignore", "compile", "runtime" and "test" are not from bundle
Summary: I18N : "Ignore", "compile", "runtime" and "test" are not from bundle
Status: VERIFIED FIXED
Alias: None
Product: projects
Classification: Unclassified
Component: Maven (show other bugs)
Version: 6.x
Hardware: All All
: P2 blocker (vote)
Assignee: David Simonek
URL:
Keywords: I18N
Depends on:
Blocks:
 
Reported: 2009-03-11 02:36 UTC by Masaki Katakai
Modified: 2009-03-19 04:32 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Masaki Katakai 2009-03-11 02:36:59 UTC
On Maven dependency graph, it seems that list of combobox for Scope are
not from bundle, "Ignore", "runtime", "test" and "compile".

org/netbeans/modules/maven/graph/DependencyGraphTopComponent.java:

                if (scopes.size() == 0) {
                    text = "Ignore";
                } else {
                    text = scopes.get(scopes.size() -1);
                }

At least "Ignore" needs to be localized. I don't know "runtime", "test" and "compile"
can be localized, but it's nice if we could provide useful/localized string for users.
Comment 1 David Simonek 2009-03-12 10:40:01 UTC
fixed, there are regular bundle items for scopes now:
1ba1794f9f32
Comment 2 Quality Engineering 2009-03-18 22:45:52 UTC
Integrated into 'main-golden', will be available in build *200903181604* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)
Changeset: http://hg.netbeans.org/main/rev/1ba1794f9f32
User: Dafe Simonek <dsimonek@netbeans.org>
Log: #160064: scope strings now localizable
Comment 3 Masaki Katakai 2009-03-19 04:32:11 UTC
Nice! Verified the fix on build 200903181604. Thank you!