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 178651

Summary: UnknownHostException.html file has invalid format
Product: nblocalization Reporter: Jindrich Sedek <jsedek>
Component: CodeAssignee: Masaki Katakai <masaki>
Status: VERIFIED FIXED    
Severity: normal    
Priority: P2    
Version: 6.x   
Hardware: PC   
OS: Linux   
Issue Type: TASK Exception Reporter:

Description Jindrich Sedek 2009-12-15 05:18:39 UTC
There was a Bug 176074 reporter to 6.7. I found that UnknownHostException.html localized to Spanish had incorrect format. It would be good to check it for next releases.

The localized file has following header. 
-------------
<HTML>
    <head>
	<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
        <title>Coletor de Gestos da UI</title>
</HEAD>
....
-----------
The problem is unbalanced <head></HEAD> - both of them should be in the same case. In english translation we have all HTML tags in lower case that is probably the best solution.

Also make sure that meta tag is correctly closed in all localizations:
<meta ... />
Comment 2 Jindrich Sedek 2009-12-16 00:59:57 UTC
Looks good, thanks.