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 93875 - I18N - RFE - provide ways of not needing to do jsf coding for some i18n related activities
Summary: I18N - RFE - provide ways of not needing to do jsf coding for some i18n relat...
Status: NEW
Alias: None
Product: obsolete
Classification: Unclassified
Component: visualweb (show other bugs)
Version: 5.x
Hardware: Sun Solaris
: P2 blocker (vote)
Assignee: Winston Prakash
URL:
Keywords: I18N
Depends on:
Blocks:
 
Reported: 2007-02-01 21:56 UTC by bugbridge
Modified: 2007-12-07 16:41 UTC (History)
2 users (show)

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description bugbridge 2007-02-01 21:56:37 UTC
Description:
from customer feedback and  based on discussions with Alexander
(or from other analysis and discussions of issues and features where we thought
an rfe for i18n could be helpful)

if this is duplicate of existing rfe related to i18n, please close
as duplicate; we have looked at existing rfes with words i18n in synopsis and
tried not to file any duplicates. 

-- don't know if this one is logical, but for some things related to user
doing i18n for their own applications, they need to code using specific
jsf api for example
/ Set the locale for rendering JSF components.
FacesContext.getCurrentInstance().getViewRoot().setLocale(locale);
UIViewRoot viewRoot = context.getViewRoot();
Locale locale = new Locale(aLanguageCode);
viewRoot.setLocale(locale);


-- wondering if creator can provide some higher level calls
or ways to do it without needing to get deal with specific jsf context
and instances or with additional UI ?

I don't know how common it is in other parts of coding to use these jsf
related api.