-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconfig_zh_CN.xsl
37 lines (37 loc) · 1.53 KB
/
config_zh_CN.xsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template name="config">
<options>
</options>
<properties> <!-- accessible at run time -->
<html>4</html>
<language>zh_CN</language>
<calendar.label>...</calendar.label>
<calendar.day0>周一</calendar.day0>
<calendar.day1>周二</calendar.day1>
<calendar.day2>周三</calendar.day2>
<calendar.day3>周四</calendar.day3>
<calendar.day4>周五</calendar.day4>
<calendar.day5>周六</calendar.day5>
<calendar.day6>周日</calendar.day6>
<calendar.initDay>6</calendar.initDay>
<calendar.month0>一月</calendar.month0>
<calendar.month1>二月</calendar.month1>
<calendar.month2>三月</calendar.month2>
<calendar.month3>四月</calendar.month3>
<calendar.month4>五月</calendar.month4>
<calendar.month5>六月</calendar.month5>
<calendar.month6>七月</calendar.month6>
<calendar.month7>八月</calendar.month7>
<calendar.month8>九月</calendar.month8>
<calendar.month9>十月</calendar.month9>
<calendar.month10>十一月</calendar.month10>
<calendar.month11>十二月</calendar.month11>
<calendar.close>关闭</calendar.close>
<format.date>yyyy/MM/dd</format.date>
<format.datetime>yyyy/MM/dd hh:mm:ss</format.datetime>
<format.decimal>.</format.decimal>
<status>... 正在加载 ...</status>
</properties>
<extensions/> <!-- HTML elements to be added just after xsltforms.js and xsltforms.css loading -->
</xsl:template>
</xsl:stylesheet>