diff options
| author | Chirayu Krishnappa | 2013-03-18 15:54:18 -0700 | 
|---|---|---|
| committer | Chirayu Krishnappa | 2013-03-20 15:50:07 -0700 | 
| commit | 0c72708a2bb123d2772f5c6b8cb6adc61f197a72 (patch) | |
| tree | c0aea4bbeeff58cf5a55226dce26c7e7e1c58635 /src/ngLocale/angular-locale_ja.js | |
| parent | fec2909f3a5e97bfabbb65d957e0d20d1a588e40 (diff) | |
| download | angular.js-0c72708a2bb123d2772f5c6b8cb6adc61f197a72.tar.bz2 | |
chore($ngLocale): generate ngLocale files from the Closure code (includes datetimesymbolsext.js)
Diffstat (limited to 'src/ngLocale/angular-locale_ja.js')
| -rw-r--r-- | src/ngLocale/angular-locale_ja.js | 96 | 
1 files changed, 95 insertions, 1 deletions
| diff --git a/src/ngLocale/angular-locale_ja.js b/src/ngLocale/angular-locale_ja.js index 54fd4784..d61cdb95 100644 --- a/src/ngLocale/angular-locale_ja.js +++ b/src/ngLocale/angular-locale_ja.js @@ -1,4 +1,98 @@  angular.module("ngLocale", [], ["$provide", function($provide) {  var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; -$provide.value("$locale", {"DATETIME_FORMATS":{"MONTH":["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],"SHORTMONTH":["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],"DAY":["日曜日","月曜日","火曜日","水曜日","木曜日","金曜日","土曜日"],"SHORTDAY":["日","月","火","水","木","金","土"],"AMPMS":["午前","午後"],"medium":"yyyy/MM/dd H:mm:ss","short":"yyyy/MM/dd H:mm","fullDate":"y年M月d日EEEE","longDate":"y年M月d日","mediumDate":"yyyy/MM/dd","shortDate":"yyyy/MM/dd","mediumTime":"H:mm:ss","shortTime":"H:mm"},"NUMBER_FORMATS":{"DECIMAL_SEP":".","GROUP_SEP":",","PATTERNS":[{"minInt":1,"minFrac":0,"macFrac":0,"posPre":"","posSuf":"","negPre":"-","negSuf":"","gSize":3,"lgSize":3,"maxFrac":3},{"minInt":1,"minFrac":2,"macFrac":0,"posPre":"\u00A4","posSuf":"","negPre":"\u00A4-","negSuf":"","gSize":3,"lgSize":3,"maxFrac":2}],"CURRENCY_SYM":"¥"},"pluralCat":function (n) {  return PLURAL_CATEGORY.OTHER;},"id":"ja"}); +$provide.value("$locale", { +  "DATETIME_FORMATS": { +    "AMPMS": { +      "0": "午前", +      "1": "午後" +    }, +    "DAY": { +      "0": "日曜日", +      "1": "月曜日", +      "2": "火曜日", +      "3": "水曜日", +      "4": "木曜日", +      "5": "金曜日", +      "6": "土曜日" +    }, +    "MONTH": { +      "0": "1月", +      "1": "2月", +      "2": "3月", +      "3": "4月", +      "4": "5月", +      "5": "6月", +      "6": "7月", +      "7": "8月", +      "8": "9月", +      "9": "10月", +      "10": "11月", +      "11": "12月" +    }, +    "SHORTDAY": { +      "0": "日", +      "1": "月", +      "2": "火", +      "3": "水", +      "4": "木", +      "5": "金", +      "6": "土" +    }, +    "SHORTMONTH": { +      "0": "1月", +      "1": "2月", +      "2": "3月", +      "3": "4月", +      "4": "5月", +      "5": "6月", +      "6": "7月", +      "7": "8月", +      "8": "9月", +      "9": "10月", +      "10": "11月", +      "11": "12月" +    }, +    "fullDate": "y年M月d日EEEE", +    "longDate": "y年M月d日", +    "medium": "yyyy/MM/dd H:mm:ss", +    "mediumDate": "yyyy/MM/dd", +    "mediumTime": "H:mm:ss", +    "short": "yyyy/MM/dd H:mm", +    "shortDate": "yyyy/MM/dd", +    "shortTime": "H:mm" +  }, +  "NUMBER_FORMATS": { +    "CURRENCY_SYM": "¥", +    "DECIMAL_SEP": ".", +    "GROUP_SEP": ",", +    "PATTERNS": { +      "0": { +        "gSize": 3, +        "lgSize": 3, +        "macFrac": 0, +        "maxFrac": 3, +        "minFrac": 0, +        "minInt": 1, +        "negPre": "-", +        "negSuf": "", +        "posPre": "", +        "posSuf": "" +      }, +      "1": { +        "gSize": 3, +        "lgSize": 3, +        "macFrac": 0, +        "maxFrac": 2, +        "minFrac": 2, +        "minInt": 1, +        "negPre": "\u00A4-", +        "negSuf": "", +        "posPre": "\u00A4", +        "posSuf": "" +      } +    } +  }, +  "id": "ja", +  "pluralCat": function (n) {  return PLURAL_CATEGORY.OTHER;} +});  }]);
\ No newline at end of file | 
