diff options
| author | Pete Bacon Darwin | 2013-04-17 22:13:49 +0100 | 
|---|---|---|
| committer | Pete Bacon Darwin | 2013-04-17 22:13:49 +0100 | 
| commit | 695c54c17b3299cd6170c45878b41cb46a577cd2 (patch) | |
| tree | 00231bfa167c7a188ed59d37b8eb9ae6d6b09d2e /src/ngLocale/angular-locale_ja.js | |
| parent | 363e4cbf649de4c5206f1904ee76f89301ceaab0 (diff) | |
| download | angular.js-695c54c17b3299cd6170c45878b41cb46a577cd2.tar.bz2 | |
fix(i18n): escape all chars above \u007f in locale files
Modify the script that writes the locales so all characters above \u007f are escaped
Includes the updated locale files after running the closureI18nExtractor.
Closes #2417
Diffstat (limited to 'src/ngLocale/angular-locale_ja.js')
| -rw-r--r-- | src/ngLocale/angular-locale_ja.js | 90 | 
1 files changed, 45 insertions, 45 deletions
| diff --git a/src/ngLocale/angular-locale_ja.js b/src/ngLocale/angular-locale_ja.js index d61cdb95..bc92d625 100644 --- a/src/ngLocale/angular-locale_ja.js +++ b/src/ngLocale/angular-locale_ja.js @@ -3,57 +3,57 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "  $provide.value("$locale", {    "DATETIME_FORMATS": {      "AMPMS": { -      "0": "午前", -      "1": "午後" +      "0": "\u5348\u524d", +      "1": "\u5348\u5f8c"      },      "DAY": { -      "0": "日曜日", -      "1": "月曜日", -      "2": "火曜日", -      "3": "水曜日", -      "4": "木曜日", -      "5": "金曜日", -      "6": "土曜日" +      "0": "\u65e5\u66dc\u65e5", +      "1": "\u6708\u66dc\u65e5", +      "2": "\u706b\u66dc\u65e5", +      "3": "\u6c34\u66dc\u65e5", +      "4": "\u6728\u66dc\u65e5", +      "5": "\u91d1\u66dc\u65e5", +      "6": "\u571f\u66dc\u65e5"      },      "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月" +      "0": "1\u6708", +      "1": "2\u6708", +      "2": "3\u6708", +      "3": "4\u6708", +      "4": "5\u6708", +      "5": "6\u6708", +      "6": "7\u6708", +      "7": "8\u6708", +      "8": "9\u6708", +      "9": "10\u6708", +      "10": "11\u6708", +      "11": "12\u6708"      },      "SHORTDAY": { -      "0": "日", -      "1": "月", -      "2": "火", -      "3": "水", -      "4": "木", -      "5": "金", -      "6": "土" +      "0": "\u65e5", +      "1": "\u6708", +      "2": "\u706b", +      "3": "\u6c34", +      "4": "\u6728", +      "5": "\u91d1", +      "6": "\u571f"      },      "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月" +      "0": "1\u6708", +      "1": "2\u6708", +      "2": "3\u6708", +      "3": "4\u6708", +      "4": "5\u6708", +      "5": "6\u6708", +      "6": "7\u6708", +      "7": "8\u6708", +      "8": "9\u6708", +      "9": "10\u6708", +      "10": "11\u6708", +      "11": "12\u6708"      }, -    "fullDate": "y年M月d日EEEE", -    "longDate": "y年M月d日", +    "fullDate": "y\u5e74M\u6708d\u65e5EEEE", +    "longDate": "y\u5e74M\u6708d\u65e5",      "medium": "yyyy/MM/dd H:mm:ss",      "mediumDate": "yyyy/MM/dd",      "mediumTime": "H:mm:ss", @@ -62,7 +62,7 @@ $provide.value("$locale", {      "shortTime": "H:mm"    },    "NUMBER_FORMATS": { -    "CURRENCY_SYM": "¥", +    "CURRENCY_SYM": "\u00a5",      "DECIMAL_SEP": ".",      "GROUP_SEP": ",",      "PATTERNS": { @@ -85,9 +85,9 @@ $provide.value("$locale", {          "maxFrac": 2,          "minFrac": 2,          "minInt": 1, -        "negPre": "\u00A4-", +        "negPre": "\u00a4-",          "negSuf": "", -        "posPre": "\u00A4", +        "posPre": "\u00a4",          "posSuf": ""        }      } | 
