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 120194 - typo in cnd/gotodeclaration
Summary: typo in cnd/gotodeclaration
Status: CLOSED FIXED
Alias: None
Product: cnd
Classification: Unclassified
Component: -- Other -- (show other bugs)
Version: 6.x
Hardware: Sun All
: P2 blocker (vote)
Assignee: Vladimir Kvashin
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-10-26 15:14 UTC by Will Zhang
Modified: 2007-10-29 07:07 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 Will Zhang 2007-10-26 15:15:03 UTC
File:
cnd/gotodeclaration/src/org/netbeans/modules/cnd/gotodeclaration/element/ui/Bundle.properties
Msg:
AN_GoToElement=Go To c Dialog

Not sure if here "c" is necessary.
Comment 1 Thomas Preisler 2007-10-26 20:53:09 UTC
I checked the usage of the message and it only used for accessibility in the Go To dialog:
  panel.getAccessibleContext().setAccessibleName( NbBundle.getMessage( GoToElementAction.class, "AN_GoToElement")  );

I assume only a screen reader would read it. The message is *not* visible in any UI element.

Downgrading to p3 for above reason.
Comment 2 Vladimir Kvashin 2007-10-26 22:38:32 UTC
It is used as an accessible name.
So from a11y point of view it's serious.
Comment 3 Vladimir Kvashin 2007-10-26 22:41:49 UTC
I've changed "Go To c Dialog" to "Go to Function or Variable":

Checking in Bundle.properties;
/shared/data/ccvs/repository/cnd/gotodeclaration/src/org/netbeans/modules/cnd/gotodeclaration/element/ui/Bundle.properties,v
 <--  Bundle.properties
new revision: 1.4; previous revision: 1.3
done
Comment 4 Will Zhang 2007-10-29 07:06:48 UTC
verified and fixed