diff options
| author | Pete Bacon Darwin | 2013-04-17 22:13:49 +0100 |
|---|---|---|
| committer | Pete Bacon Darwin | 2013-04-17 22:16:57 +0100 |
| commit | 7e168c8ad2cc79d5362808a0291c6b69913a2c63 (patch) | |
| tree | 93cd42722d50acfbdbb569455b5c250e9b6e76d1 /src/ngLocale/angular-locale_en-tc.js | |
| parent | 3ebc2c2442755aa93a908b0ee9e372c8e6e4a924 (diff) | |
| download | angular.js-7e168c8ad2cc79d5362808a0291c6b69913a2c63.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_en-tc.js')
| -rw-r--r-- | src/ngLocale/angular-locale_en-tc.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ngLocale/angular-locale_en-tc.js b/src/ngLocale/angular-locale_en-tc.js index 86b69923..2ccad1e1 100644 --- a/src/ngLocale/angular-locale_en-tc.js +++ b/src/ngLocale/angular-locale_en-tc.js @@ -85,9 +85,9 @@ $provide.value("$locale", { "maxFrac": 2, "minFrac": 2, "minInt": 1, - "negPre": "(\u00A4", + "negPre": "(\u00a4", "negSuf": ")", - "posPre": "\u00A4", + "posPre": "\u00a4", "posSuf": "" } } |
