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 107479 - I18N - web.xml editor has Add ref dialog with a text not from pseudo localized bundle file
Summary: I18N - web.xml editor has Add ref dialog with a text not from pseudo localize...
Status: RESOLVED INVALID
Alias: None
Product: javaee
Classification: Unclassified
Component: Code (show other bugs)
Version: 6.x
Hardware: All All
: P2 blocker (vote)
Assignee: Erno Mononen
URL:
Keywords: I18N
Depends on:
Blocks:
 
Reported: 2007-06-20 18:07 UTC by kaa
Modified: 2007-07-16 15:28 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
image (95.30 KB, image/jpeg)
2007-06-20 18:07 UTC, kaa
Details

Note You need to log in before you can comment on or make changes to this bug.
Description kaa 2007-06-20 18:07:06 UTC
build 0612

1. Create Web App
2. Open web.xml file
3. Choose References view
4. Expand Resource References node on the view
5. Press Add button

Sharing Scope and Authentification dropdowns have their items not from pseudo localized bundle file.
I'm running in the Japan locale, using a pseudo localized Netbeans. Check also the following dropdowns:
EJB Ref->Add
Message Dest Ref->Add
Comment 1 kaa 2007-06-20 18:07:54 UTC
Created attachment 44082 [details]
image
Comment 2 Erno Mononen 2007-07-16 15:28:09 UTC
I'm not sure that these items should be localized, the values from these combo boxes is used as it is in the 
corresponding elements in web.xml. For example:

    <resource-ref>
        <description>sa</description>
        <res-ref-name>sss</res-ref-name>
        <res-type>javax.sql.DataSource</res-type>
        <res-auth>Container</res-auth>
        <res-sharing-scope>Shareable</res-sharing-scope>
    </resource-ref>

AFAICT, they shouldn't be localized, so I'm closing this as INVALID. Please feel free to reopen if you disagree.