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_fr-cm.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_fr-cm.js')
| -rw-r--r-- | src/ngLocale/angular-locale_fr-cm.js | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/ngLocale/angular-locale_fr-cm.js b/src/ngLocale/angular-locale_fr-cm.js index f8c85c7f..b5d68b02 100644 --- a/src/ngLocale/angular-locale_fr-cm.js +++ b/src/ngLocale/angular-locale_fr-cm.js @@ -17,17 +17,17 @@ $provide.value("$locale", { }, "MONTH": { "0": "janvier", - "1": "février", + "1": "f\u00e9vrier", "2": "mars", "3": "avril", "4": "mai", "5": "juin", "6": "juillet", - "7": "août", + "7": "ao\u00fbt", "8": "septembre", "9": "octobre", "10": "novembre", - "11": "décembre" + "11": "d\u00e9cembre" }, "SHORTDAY": { "0": "dim.", @@ -40,17 +40,17 @@ $provide.value("$locale", { }, "SHORTMONTH": { "0": "janv.", - "1": "févr.", + "1": "f\u00e9vr.", "2": "mars", "3": "avr.", "4": "mai", "5": "juin", "6": "juil.", - "7": "août", + "7": "ao\u00fbt", "8": "sept.", "9": "oct.", "10": "nov.", - "11": "déc." + "11": "d\u00e9c." }, "fullDate": "EEEE d MMMM y", "longDate": "d MMMM y", @@ -62,9 +62,9 @@ $provide.value("$locale", { "shortTime": "HH:mm" }, "NUMBER_FORMATS": { - "CURRENCY_SYM": "€", + "CURRENCY_SYM": "\u20ac", "DECIMAL_SEP": ",", - "GROUP_SEP": " ", + "GROUP_SEP": "\u00a0", "PATTERNS": { "0": { "gSize": 3, @@ -86,9 +86,9 @@ $provide.value("$locale", { "minFrac": 2, "minInt": 1, "negPre": "(", - "negSuf": " \u00A4)", + "negSuf": "\u00a0\u00a4)", "posPre": "", - "posSuf": " \u00A4" + "posSuf": "\u00a0\u00a4" } } }, |
