Jacques Le Roux created OFBIZ-9261:
--------------------------------------
Summary: Handle only labels with the "_" separator between languages and countries
Key: OFBIZ-9261
URL:
https://issues.apache.org/jira/browse/OFBIZ-9261 Project: OFBiz
Issue Type: Improvement
Components: framework
Affects Versions: Trunk
Reporter: Jacques Le Roux
Assignee: Jacques Le Roux
Priority: Minor
Fix For: Upcoming Release
I explained that in the second message in this dev ML thread
https://s.apache.org/S3AoThis is handled in LabelManagerFactory.java
{code}
Element valueElem = (Element) valueNode;
// Support old way of specifying xml:lang value.
// Old way: en_AU, new way: en-AU
String localeName = valueElem.getAttribute("xml:lang");
if( localeName.contains("_")) {
localeName = localeName.replace('_', '-');
}
{code}
I'll replace this snippet by throwing an exception in order to now to automatically detect issues
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)