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_zh-hans-cn.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_zh-hans-cn.js')
| -rw-r--r-- | src/ngLocale/angular-locale_zh-hans-cn.js | 90 | 
1 files changed, 45 insertions, 45 deletions
| diff --git a/src/ngLocale/angular-locale_zh-hans-cn.js b/src/ngLocale/angular-locale_zh-hans-cn.js index ac9ac7d3..a5692a96 100644 --- a/src/ngLocale/angular-locale_zh-hans-cn.js +++ b/src/ngLocale/angular-locale_zh-hans-cn.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": "\u4e0a\u5348", +      "1": "\u4e0b\u5348"      },      "DAY": { -      "0": "星期日", -      "1": "星期一", -      "2": "星期二", -      "3": "星期三", -      "4": "星期四", -      "5": "星期五", -      "6": "星期六" +      "0": "\u661f\u671f\u65e5", +      "1": "\u661f\u671f\u4e00", +      "2": "\u661f\u671f\u4e8c", +      "3": "\u661f\u671f\u4e09", +      "4": "\u661f\u671f\u56db", +      "5": "\u661f\u671f\u4e94", +      "6": "\u661f\u671f\u516d"      },      "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": "\u5468\u65e5", +      "1": "\u5468\u4e00", +      "2": "\u5468\u4e8c", +      "3": "\u5468\u4e09", +      "4": "\u5468\u56db", +      "5": "\u5468\u4e94", +      "6": "\u5468\u516d"      },      "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-M-d ah:mm:ss",      "mediumDate": "yyyy-M-d",      "mediumTime": "ah:mm:ss", @@ -62,7 +62,7 @@ $provide.value("$locale", {      "shortTime": "ah: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": ""        }      } | 
