Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
6c88362a
D
dragonwell8_jdk
项目概览
openanolis
/
dragonwell8_jdk
通知
4
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_jdk
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
6c88362a
编写于
12月 08, 2009
作者:
Y
yhuang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
6610748: Dateformat - AM-PM indicator in Finnish appears to be from English
Reviewed-by: yhuang, peytoia
上级
ff47c01b
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
39 addition
and
1 deletion
+39
-1
src/share/classes/sun/text/resources/FormatData_fi.java
src/share/classes/sun/text/resources/FormatData_fi.java
+6
-0
test/sun/text/resources/LocaleData
test/sun/text/resources/LocaleData
+23
-0
test/sun/text/resources/LocaleDataTest.java
test/sun/text/resources/LocaleDataTest.java
+10
-1
未找到文件。
src/share/classes/sun/text/resources/FormatData_fi.java
浏览文件 @
6c88362a
...
...
@@ -133,6 +133,12 @@ public class FormatData_fi extends ListResourceBundle {
}
},
{
"DateTimePatternChars"
,
"GanjkHmsSEDFwWxhKzZ"
},
{
"AmPmMarkers"
,
new
String
[]
{
"ap."
,
// am marker
"ip."
// pm marker
}
},
};
}
}
test/sun/text/resources/LocaleData
浏览文件 @
6c88362a
...
...
@@ -5526,3 +5526,26 @@ LocaleNames//IM=Isle Of Man
# BL, MF (6627549)
LocaleNames//BL=Saint Barth\u00e9lemy
LocaleNames//MF=Saint Martin
# bug 6609737
FormatData/de/DateTimePatterns/0=HH:mm' Uhr 'z
TimeZoneNames/de/CET/1=Mitteleurop\u00e4ische Zeit
TimeZoneNames/de/CET/2=MEZ
TimeZoneNames/de/CET/3=Mitteleurop\u00e4ische Sommerzeit
TimeZoneNames/de/CET/4=MESZ
TimeZoneNames/de/EET/2=OEZ
TimeZoneNames/de/EET/4=OESZ
TimeZoneNames/de/WET/2=WEZ
TimeZoneNames/de/WET/4=WESZ
# bug 6610748
FormatData/fi/AmPmMarkers/0=ap.
FormatData/fi/AmPmMarkers/1=ip.
# bug 6507067
TimeZoneNames/zh_TW/Asia\/Taipei/1=\u53f0\u7063\u6a19\u6e96\u6642\u9593
TimeZoneNames/zh_TW/Asia\/Taipei/2=TST
# bug 6645271
FormatData/hr_HR/DateTimePatterns/6=dd.MM.yyyy.
FormatData/hr_HR/DateTimePatterns/7=dd.MM.yy.
test/sun/text/resources/LocaleDataTest.java
浏览文件 @
6c88362a
...
...
@@ -31,7 +31,7 @@
* 5102005 5074431 6182685 6208712 6277020 6245766 6351682 6386647 6379382
* 6414459 6455680 6498742 6558863 6488119 6547501 6497154 6558856 6481177
* 6379214 6485516 6486607 4225362 4494727 6533691 6531591 6531593 6570259
* 6509039
* 6509039
6609737 6610748 6645271 6507067
* @summary Verify locale data
*
*/
...
...
@@ -255,6 +255,15 @@ public class LocaleDataTest
index
=
key
.
length
();
resTag
=
key
.
substring
(
oldIndex
,
index
);
// TimeZone name may have "/" in it, for example "Asia/Taipei", so use "Asia\/Taipei in LocaleData.
if
(
resTag
.
endsWith
(
"\\"
))
{
resTag
=
resTag
.
substring
(
0
,
resTag
.
length
()
-
1
);
oldIndex
=
index
;
index
=
key
.
indexOf
(
"/"
,
oldIndex
+
1
);
if
(
index
==
-
1
)
index
=
key
.
length
();
resTag
+=
key
.
substring
(
oldIndex
,
index
);
}
if
(
index
<
key
.
length
()
-
1
)
qualifier
=
key
.
substring
(
index
+
1
);
else
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录