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 81566 - I18N: need to localize status messages for module dev
Summary: I18N: need to localize status messages for module dev
Status: VERIFIED FIXED
Alias: None
Product: platform
Classification: Unclassified
Component: -- Other -- (show other bugs)
Version: 5.x
Hardware: All All
: P4 blocker (vote)
Assignee: Denis Anisimov
URL:
Keywords: I18N
Depends on:
Blocks:
 
Reported: 2006-08-01 05:57 UTC by Masaki Katakai
Modified: 2008-12-22 13:37 UTC (History)
3 users (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 2006-08-01 05:57:04 UTC
It is OK to enable localized strings in these status text.
Module developers also want to see such status text in their languages.

./core/startup/src/org/netbeans/core/startup/NbEvents.java

            // Again no need for I18N as this is only for module developers.

            setStatusText(
                "Deploying test module in " + (File)args[0] + "..."); // NOI18N

            setStatusText(
                "Finished deploying test module."); // NOI18N

Please extract these messages to resource bundle file.
Comment 1 Jaroslav Tulach 2006-08-07 13:13:07 UTC
I guess this is your code, Jesse.
Comment 2 Jesse Glick 2006-08-07 21:42:56 UTC
Generally these messages will be visible only from the Ant process output window
when reinstalling a module. As a rule, Ant log messages are not localized, so it
would be inconsistent for these to be.
Comment 3 Masaki Katakai 2006-08-08 07:28:05 UTC
Thank you very much for evaluation.

The messages will be displayed on "status" area in another IDE,
not on "Output" window of current IDE. It's not easy for module
developers to understand these messages are English because 
these are kind of ant/build messages. I think such important
messages are worth to be localized, even for module developers.

Could you think again?
Comment 4 Jesse Glick 2006-08-08 23:07:03 UTC
If it appears in the status line it should be localized. I was under the
impression that the message in question was printed to console only (i.e. Ant
output of development IDE).
Comment 5 Denis Anisimov 2008-03-11 14:51:17 UTC
changeset:   72590:2da5e411841e
Comment 6 Ken Frank 2008-04-09 18:15:16 UTC
verfied.