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 159771 - I18N: "Java Errors" on tasklist filter dialog is not from bundle
Summary: I18N: "Java Errors" on tasklist filter dialog is not from bundle
Status: VERIFIED FIXED
Alias: None
Product: java
Classification: Unclassified
Component: Source (show other bugs)
Version: 6.x
Hardware: All All
: P2 blocker (vote)
Assignee: Stanislav Aubrecht
URL:
Keywords: I18N
Depends on:
Blocks:
 
Reported: 2009-03-06 11:34 UTC by Masaki Katakai
Modified: 2009-03-11 03:19 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-06 11:34:57 UTC
On TaskList Filter dialog, "Java Errors" can not be localized now. It seems that
the string is hardcoded. Please extract it to Bundle.properties for localization.

java.source/src/org/netbeans/modules/java/source/tasklist/JavaTaskProvider.java:

    public JavaTaskProvider() {
        super( "Java Errors", "Java compiler errors and warnings", null);
        INSTANCE = this;
    }
Comment 1 Stanislav Aubrecht 2009-03-09 14:23:55 UTC
fixed

f6b60a685f6c
Comment 2 Quality Engineering 2009-03-10 21:12:54 UTC
Integrated into 'main-golden', will be available in build *200903101401* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)
Changeset: http://hg.netbeans.org/main/rev/f6b60a685f6c
User: S. Aubrecht <saubrecht@netbeans.org>
Log: #159771 - I18N
Comment 3 Masaki Katakai 2009-03-11 03:19:52 UTC
Verified the fix on 200903101401. Thank you!