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_vi.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_vi.js')
| -rw-r--r-- | src/ngLocale/angular-locale_vi.js | 48 | 
1 files changed, 24 insertions, 24 deletions
| diff --git a/src/ngLocale/angular-locale_vi.js b/src/ngLocale/angular-locale_vi.js index 73e54649..9da823dc 100644 --- a/src/ngLocale/angular-locale_vi.js +++ b/src/ngLocale/angular-locale_vi.js @@ -7,27 +7,27 @@ $provide.value("$locale", {        "1": "CH"      },      "DAY": { -      "0": "Chủ nhật", -      "1": "Thứ hai", -      "2": "Thứ ba", -      "3": "Thứ tư", -      "4": "Thứ năm", -      "5": "Thứ sáu", -      "6": "Thứ bảy" +      "0": "Ch\u1ee7 nh\u1eadt", +      "1": "Th\u1ee9 hai", +      "2": "Th\u1ee9 ba", +      "3": "Th\u1ee9 t\u01b0", +      "4": "Th\u1ee9 n\u0103m", +      "5": "Th\u1ee9 s\u00e1u", +      "6": "Th\u1ee9 b\u1ea3y"      },      "MONTH": { -      "0": "tháng một", -      "1": "tháng hai", -      "2": "tháng ba", -      "3": "tháng tư", -      "4": "tháng năm", -      "5": "tháng sáu", -      "6": "tháng bảy", -      "7": "tháng tám", -      "8": "tháng chín", -      "9": "tháng mười", -      "10": "tháng mười một", -      "11": "tháng mười hai" +      "0": "th\u00e1ng m\u1ed9t", +      "1": "th\u00e1ng hai", +      "2": "th\u00e1ng ba", +      "3": "th\u00e1ng t\u01b0", +      "4": "th\u00e1ng n\u0103m", +      "5": "th\u00e1ng s\u00e1u", +      "6": "th\u00e1ng b\u1ea3y", +      "7": "th\u00e1ng t\u00e1m", +      "8": "th\u00e1ng ch\u00edn", +      "9": "th\u00e1ng m\u01b0\u1eddi", +      "10": "th\u00e1ng m\u01b0\u1eddi m\u1ed9t", +      "11": "th\u00e1ng m\u01b0\u1eddi hai"      },      "SHORTDAY": {        "0": "CN", @@ -52,8 +52,8 @@ $provide.value("$locale", {        "10": "thg 11",        "11": "thg 12"      }, -    "fullDate": "EEEE, 'ngày' dd MMMM 'năm' y", -    "longDate": "'Ngày' dd 'tháng' M 'năm' y", +    "fullDate": "EEEE, 'ng\u00e0y' dd MMMM 'n\u0103m' y", +    "longDate": "'Ng\u00e0y' dd 'th\u00e1ng' M 'n\u0103m' y",      "medium": "dd-MM-yyyy HH:mm:ss",      "mediumDate": "dd-MM-yyyy",      "mediumTime": "HH:mm:ss", @@ -62,7 +62,7 @@ $provide.value("$locale", {      "shortTime": "HH:mm"    },    "NUMBER_FORMATS": { -    "CURRENCY_SYM": "₫", +    "CURRENCY_SYM": "\u20ab",      "DECIMAL_SEP": ",",      "GROUP_SEP": ".",      "PATTERNS": { @@ -86,9 +86,9 @@ $provide.value("$locale", {          "minFrac": 2,          "minInt": 1,          "negPre": "-", -        "negSuf": " \u00A4", +        "negSuf": "\u00a0\u00a4",          "posPre": "", -        "posSuf": " \u00A4" +        "posSuf": "\u00a0\u00a4"        }      }    }, | 
