<?xml version="1.0" encoding="UTF-8"?>

<?xul-overlay href="../../../XULControls/DateControls.xml"?>



<customactions>

	<actionspanel>

		<folder name="ActionScript 2.0 类" id="ActionScript 2.0 Classes" sort="false" tiptext="ActionScript 提供的预定义类" helpid="x20980" version="4">

			<folder name="核心" id="Core" tiptext="ActionScript 语言的核心类" helpid="x20AAC" version="5">

				<folder name="Date" id="Date" sort="false" index="true" tiptext="帮助您使用日期和时间的类" helpid="x208E9" version="5">

					<string name="new Date" tiptext="创建新的 Date 对象" helpid="x21A4C" text="new Date(%%)" text2="new Date(% 时间值 %)" text3="new Date(% 年, 月, 日, 小时, 分钟, 秒, 毫秒 %)" version="5"/>

					<folder name="方法" id="Methods" tiptext="Date 对象的方法" helpid="x20AA2" version="5">

						<string name="getDate" tiptext="获取今天是本月的几号 [当地时间]" helpid="x21A4D" object="Date" text=".getDate()" version="5"/>

						<string name="getMonth" tiptext="获取本月是今年的几月份（0 表示一月、1 表示二月，依此类推）[当地时间]" helpid="x21A56" object="Date" text=".getMonth()" version="5"/>

						<string name="getFullYear" tiptext="获取用四位数表示的年份（例如，2000）[当地时间]" helpid="x21A4F" object="Date" text=".getFullYear()" version="5"/>

						<string name="getDay" tiptext="获取今天是周几（0 表示周日、1 表示周一，依此类推）[当地时间]" helpid="x21A4E" object="Date" text=".getDay()" version="5"/>

						<string name="getHours" tiptext="获取此时是几点（0 表示深夜 12 点，23 表示深夜 11 点）[当地时间]" helpid="x21A50" object="Date" text=".getHours()" version="5"/>		

						<string name="getMinutes" tiptext="获取这一分钟是当前小时的第几分钟 [当地时间]" helpid="x21A55" object="Date" text=".getMinutes()" version="5"/>

						<string name="getSeconds" tiptext="获取经过的秒数，从上一分钟算起 [当地时间]" helpid="x21A57" object="Date" text=".getSeconds()" version="5"/>

						<string name="getMilliseconds" tiptext="获取经过的毫秒数，从上一秒钟算起 [当地时间]" helpid="x21A54" object="Date" text=".getMilliseconds()" version="5"/>

						<string name="getYear" tiptext="获取年份数减去 1900 所得的结果 [当地时间]" helpid="x21A63" object="Date" text=".getYear()" version="5"/>

						<string name="UTC" tiptext="返回对于特定 UTC 日期和时间的时间值" helpid="x21A4B" object="Date" text="Date.UTC(% 年, [月], [日], [小时], [分钟], [秒], [毫秒] %)" version="5">

							<parametersdialog>

								<block id="YEAR_FLEX"/>

								<block id="MONTH_OPT_FLEX"/>

								<block id="DAY_OPT_FLEX"/>

								<block id="HOURS_OPT_FLEX"/>

								<block id="MINUTES_OPT_FLEX"/>

								<block id="SECONDS_OPT_FLEX"/>

								<block id="MILLISECONDS_OPT_FLEX"/>

							</parametersdialog>

						</string>

						<string name="getTimezoneOffset" tiptext="获取当地时间与 UTC 时间的偏移量，以分钟为单位" helpid="x21A59" object="Date" text=".getTimezoneOffset()" version="5"/>

						<string name="getTime" tiptext="获取自从 UTC 时间 1970 年 1 月 1 日午夜以来经过的毫秒数" helpid="x21A58" object="Date" text=".getTime()" version="5"/>

						<string name="getUTCDate" tiptext="获取今天是本月的几号 [UTC 时间]" helpid="x21A5A" object="Date" text=".getUTCDate()" version="5"/>

						<string name="getUTCMonth" tiptext="获取本月是今年的几月份（0 表示一月、1 表示二月，依此类推）[UTC 时间]" helpid="x21A60" object="Date" text=".getUTCMonth()" version="5"/>

						<string name="getUTCFullYear" tiptext="获取用四位数表示的年份（例如，2000）[UTC 时间]" helpid="x21A5C" object="Date" text=".getUTCFullYear()" version="5"/>

						<string name="getUTCDay" tiptext="获取今天是周几（0 表示周日、1 表示周一，依此类推）[UTC 时间]" helpid="x21A5B" object="Date" text=".getUTCDay()" version="5"/>

						<string name="getUTCHours" tiptext="获取此时是几点（0 表示深夜 12 点，23 表示深夜 11 点）[UTC 时间]" helpid="x21A5D" object="Date" text=".getUTCHours()" version="5"/>

						<string name="getUTCMinutes" tiptext="获取这一分钟是当前小时的第几分钟 [UTC 时间]" helpid="x21A5F" object="Date" text=".getUTCMinutes()" version="5"/>

						<string name="getUTCSeconds" tiptext="获取经过的秒数，从上一分钟算起 [UTC 时间]" helpid="x21A61" object="Date" text=".getUTCSeconds()" version="5"/>

						<string name="getUTCMilliseconds" tiptext="获取经过的毫秒数，从上一秒钟算起 [UTC 时间]" helpid="x21A5E" object="Date" text=".getUTCMilliseconds()" version="5"/>

						<string name="setTime" tiptext="设置自从 UTC 时间 1970 年 1 月 1 日午夜以来经过的毫秒数" helpid="x21A6B" object="Date" text=".setTime(% 值 %)" version="5">

							<parametersdialog>

								<label id="MILLISECONDS_LABEL"/>

								<textbox id="MILLISECONDS_TEXTBOX" size="15" prompt="从 1/1/1970 起"/>

							</parametersdialog>

						</string>

						<string name="setHours" tiptext="设置此时是几点（0 表示深夜 12 点，23 表示深夜 11 点）[当地时间]" helpid="x21A66" object="Date" text=".setHours(% 小时 %)" version="5">

							<parametersdialog>

								<block id="HOURS"/>

							</parametersdialog>

						</string>

						<string name="setDate" tiptext="设置今天是本月的几号 [当地时间]" helpid="x21A64" object="Date" text=".setDate(% 日 %)" version="5">

							<parametersdialog>

								<block id="DAY"/>

							</parametersdialog>

						</string>

						<string name="setMonth" tiptext="设置本月是今年的几月份（0 表示一月、1 表示二月，依此类推）[当地时间]" helpid="x21A69" object="Date" text=".setMonth(% 月 %)" version="5">

							<parametersdialog>

								<block id="MONTH"/>

							</parametersdialog>

						</string>

						<string name="setFullYear" tiptext="设置用四位数表示的年份（例如，2000）[当地时间]" helpid="x21A65" object="Date" text=".setFullYear( %年, 月, 日 %)" version="5">

							<parametersdialog>

								<block id="YEAR"/>

								<block id="MONTH_OPT"/>

								<block id="DAY_OPT"/>

							</parametersdialog>

						</string>

						<string name="setSeconds" tiptext="设置经过的秒数，从上一分钟算起 [当地时间]" helpid="x21A6A" object="Date" text=".setSeconds(% 秒 %)" version="5">

							<parametersdialog>

								<block id="SECONDS"/>

							</parametersdialog>

						</string>

						<string name="setMinutes" tiptext="设置这一分钟是当前小时的第几分钟 [当地时间]" helpid="x21A68" object="Date" text=".setMinutes(% 分钟 %)" version="5">

							<parametersdialog>

								<block id="MINUTES"/>

							</parametersdialog>

						</string>

						<string name="setMilliseconds" tiptext="设置经过的毫秒数，从上一秒钟算起 [当地时间]" helpid="x21A67" object="Date" text=".setMilliseconds(% 毫秒 %)" version="5">

							<parametersdialog>

								<label id="MILLISECONDS_LABEL"/>

								<textbox id="MILLISECONDS_TEXTBOX" prompt="0-999"/>

							</parametersdialog>

						</string>

						<string name="setYear" tiptext="设置年份数减去 1900 所得的值 [当地时间]" helpid="x21A73" object="Date" text=".setYear(% 年 %)" version="5">

							<parametersdialog>

								<block id="YEAR"/>

							</parametersdialog>

						</string>

						<string name="setUTCDate" tiptext="设置今天是本月的几号 [UTC 时间]" helpid="x21A6C" object="Date" text=".setUTCDate(% 日 %)" version="5">

							<parametersdialog>

								<block id="DAY"/>

							</parametersdialog>

						</string>

						<string name="setUTCMonth" tiptext="设置本月是今年的几月份（0 表示一月、1 表示二月，依此类推）[UTC 时间]" helpid="x21A71" object="Date" text=".setUTCMonth(% 月, 日 %)" text2=".setUTCMonth(% 月 %)" version="5">

							<parametersdialog>

								<block id="MONTH"/>

							</parametersdialog>

						</string>

						<string name="setUTCFullYear" tiptext="设置用四位数表示的年份（例如，2000）[UTC 时间]" helpid="x21A6D" object="Date" text=".setUTCFullYear(% 年, 月, 日 %)" version="5">

							<parametersdialog>

								<block id="YEAR"/>

								<block id="MONTH_OPT"/>

								<block id="DAY_OPT"/>

							</parametersdialog>

						</string>

						<string name="setUTCHours" tiptext="设置此时是几点（0 表示深夜 12 点，23 表示深夜 11 点）[UTC 时间]" helpid="x21A6E" object="Date" text=".setUTCHours(% 小时 %)" version="5">

							<parametersdialog>

								<block id="HOURS"/>

							</parametersdialog>

						</string>

						<string name="setUTCMinutes" tiptext="设置这一分钟是当前小时的第几分钟 [UTC 时间]" helpid="x21A70" object="Date" text=".setUTCMinutes(% 分钟 %)" version="5">

							<parametersdialog>

								<block id="MINUTES"/>

							</parametersdialog>

						</string>

						<string name="setUTCSeconds" tiptext="设置经过的秒数，从上一分钟算起 [UTC 时间]" helpid="x21A72" object="Date" text=".setUTCSeconds(% 秒 %)" version="5">

							<parametersdialog>

								<block id="SECONDS"/>

							</parametersdialog>

						</string>

						<string name="setUTCMilliseconds" tiptext="设置经过的毫秒数，从上一秒钟算起 [UTC 时间]" helpid="x21A6F" object="Date" text=".setUTCMilliseconds(% 毫秒 %)" version="5">

							<parametersdialog>

								<label id="MILLISECONDS_LABEL"/>

								<textbox id="MILLISECONDS_TEXTBOX" prompt="0-999"/>

							</parametersdialog>

						</string>

						<string name="toString" tiptext="返回日期/时间的字符串表示形式" helpid="x21A74" object="Date" text=".toString()" version="5"/>

					</folder>

				</folder>

			</folder>

		</folder>

	</actionspanel>

</customactions>

