mirror of https://github.com/apache/poi.git
bug 19528, new greek unicode mappings by eric pugh, simple enuf
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353079 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
61ea7361da
commit
5419ef95e7
|
@ -279,12 +279,22 @@ public class HSSFCellUtil
|
|||
}
|
||||
|
||||
|
||||
static
|
||||
{
|
||||
static {
|
||||
unicodeMappings.put( "α", "\u03B1" );
|
||||
unicodeMappings.put( "β", "\u03B2" );
|
||||
unicodeMappings.put( "γ", "\u03B3" );
|
||||
unicodeMappings.put( "δ", "\u03B4" );
|
||||
unicodeMappings.put( "ε", "\u03B5" );
|
||||
unicodeMappings.put( "ζ", "\u03B6" );
|
||||
unicodeMappings.put( "η", "\u03B7" );
|
||||
unicodeMappings.put( "θ", "\u03B8" );
|
||||
unicodeMappings.put( "ι", "\u03B9" );
|
||||
unicodeMappings.put( "κ", "\u03BA" );
|
||||
unicodeMappings.put( "λ", "\u03BB" );
|
||||
unicodeMappings.put( "μ", "\u03BC" );
|
||||
unicodeMappings.put( "ν", "\u03BD" );
|
||||
unicodeMappings.put( "ξ", "\u03BE" );
|
||||
unicodeMappings.put( "ο", "\u03BF" );
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue