mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8177552: Compact Number Formatting support
Reviewed-by: naoto, rriggs
This commit is contained in:
parent
f3646ad79b
commit
4a28e27fd2
28 changed files with 5157 additions and 196 deletions
|
@ -796,6 +796,44 @@ public class FormatData extends ParallelListResourceBundle {
|
|||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "short.CompactNumberPatterns",
|
||||
new String[] {
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"0K",
|
||||
"00K",
|
||||
"000K",
|
||||
"0M",
|
||||
"00M",
|
||||
"000M",
|
||||
"0B",
|
||||
"00B",
|
||||
"000B",
|
||||
"0T",
|
||||
"00T",
|
||||
"000T",
|
||||
}
|
||||
},
|
||||
{ "long.CompactNumberPatterns",
|
||||
new String[] {
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"0 thousand",
|
||||
"00 thousand",
|
||||
"000 thousand",
|
||||
"0 million",
|
||||
"00 million",
|
||||
"000 million",
|
||||
"0 billion",
|
||||
"00 billion",
|
||||
"000 billion",
|
||||
"0 trillion",
|
||||
"00 trillion",
|
||||
"000 trillion",
|
||||
}
|
||||
},
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"h:mm:ss a z", // full time pattern
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue