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

Summary: I18N - RFE - provide ways of not needing to do jsf coding for some i18n related activities
Product: obsolete Reporter: bugbridge <bugbridge>
Component: visualwebAssignee: Winston Prakash <wjprakash>
Status: NEW ---    
Severity: blocker CC: kfrank, sunlit
Priority: P2 Keywords: I18N
Version: 5.x   
Hardware: Sun   
OS: Solaris   
Issue Type: ENHANCEMENT Exception Reporter:

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.