diff options
author | Joonghun Park <jh718.park@samsung.com> | 2013-05-27 23:21:41 +0900 |
---|---|---|
committer | Joonghun Park <jh718.park@samsung.com> | 2013-05-28 00:57:13 +0900 |
commit | 15d9427bdcaec07877eb5e140dd932d589e216bf (patch) | |
tree | 7b50042755bd79d8cac050e38b4548ae4a615e32 /tizen-web-ui-fw/latest/js/cultures/globalize.culture.ja.js | |
parent | 0eb35eca22cf3b52648da8def8fee0feb1b6c9b0 (diff) | |
download | TemporaryStorage-15d9427bdcaec07877eb5e140dd932d589e216bf.tar.gz TemporaryStorage-15d9427bdcaec07877eb5e140dd932d589e216bf.tar.bz2 TemporaryStorage-15d9427bdcaec07877eb5e140dd932d589e216bf.zip |
[TemporaryStorage] add files required for SDK build
Change-Id: I84356eda63a1789a67dd3b36688664925f90f5c8
Diffstat (limited to 'tizen-web-ui-fw/latest/js/cultures/globalize.culture.ja.js')
-rwxr-xr-x | tizen-web-ui-fw/latest/js/cultures/globalize.culture.ja.js | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/tizen-web-ui-fw/latest/js/cultures/globalize.culture.ja.js b/tizen-web-ui-fw/latest/js/cultures/globalize.culture.ja.js new file mode 100755 index 0000000..1539f99 --- /dev/null +++ b/tizen-web-ui-fw/latest/js/cultures/globalize.culture.ja.js @@ -0,0 +1,100 @@ +/* + * Globalize Culture ja + * + * http://github.com/jquery/globalize + * + * Copyright Software Freedom Conservancy, Inc. + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * This file was generated by the Globalize Culture Generator + * Translation: bugs found in this file need to be fixed in the generator + */ + +(function( window, undefined ) { + +var Globalize; + +if ( typeof require !== "undefined" + && typeof exports !== "undefined" + && typeof module !== "undefined" ) { + // Assume CommonJS + Globalize = require( "globalize" ); +} else { + // Global variable + Globalize = window.Globalize; +} + +Globalize.addCultureInfo( "ja", "default", { + name: "ja", + englishName: "Japanese", + nativeName: "日本語", + language: "ja", + numberFormat: { + NaN: "NaN (非数値)", + negativeInfinity: "-∞", + positiveInfinity: "+∞", + percent: { + pattern: ["-n%","n%"] + }, + currency: { + pattern: ["-$n","$n"], + decimals: 0, + symbol: "¥" + } + }, + calendars: { + standard: { + days: { + names: ["日曜日","月曜日","火曜日","水曜日","木曜日","金曜日","土曜日"], + namesAbbr: ["日","月","火","水","木","金","土"], + namesShort: ["日","月","火","水","木","金","土"] + }, + months: { + names: ["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月",""], + namesAbbr: ["1","2","3","4","5","6","7","8","9","10","11","12",""] + }, + AM: ["午前","午前","午前"], + PM: ["午後","午後","午後"], + eras: [{"name":"西暦","start":null,"offset":0}], + patterns: { + d: "yyyy/MM/dd", + D: "yyyy'年'M'月'd'日'", + t: "H:mm", + T: "H:mm:ss", + f: "yyyy'年'M'月'd'日' H:mm", + F: "yyyy'年'M'月'd'日' H:mm:ss", + M: "M'月'd'日'", + Y: "yyyy'年'M'月'" + } + }, + Japanese: { + name: "Japanese", + days: { + names: ["日曜日","月曜日","火曜日","水曜日","木曜日","金曜日","土曜日"], + namesAbbr: ["日","月","火","水","木","金","土"], + namesShort: ["日","月","火","水","木","金","土"] + }, + months: { + names: ["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月",""], + namesAbbr: ["1","2","3","4","5","6","7","8","9","10","11","12",""] + }, + AM: ["午前","午前","午前"], + PM: ["午後","午後","午後"], + eras: [{"name":"平成","start":null,"offset":1867},{"name":"昭和","start":-1812153600000,"offset":1911},{"name":"大正","start":-1357603200000,"offset":1925},{"name":"明治","start":60022080000,"offset":1988}], + twoDigitYearMax: 99, + patterns: { + d: "gg y/M/d", + D: "gg y'年'M'月'd'日'", + t: "H:mm", + T: "H:mm:ss", + f: "gg y'年'M'月'd'日' H:mm", + F: "gg y'年'M'月'd'日' H:mm:ss", + M: "M'月'd'日'", + Y: "gg y'年'M'月'" + } + } + } +}); + +}( this )); |