From 7e168c8ad2cc79d5362808a0291c6b69913a2c63 Mon Sep 17 00:00:00 2001 From: Pete Bacon Darwin Date: Wed, 17 Apr 2013 22:13:49 +0100 Subject: 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 --- src/ngLocale/angular-locale_et.js | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'src/ngLocale/angular-locale_et.js') diff --git a/src/ngLocale/angular-locale_et.js b/src/ngLocale/angular-locale_et.js index bbc4375c..4bffdb66 100644 --- a/src/ngLocale/angular-locale_et.js +++ b/src/ngLocale/angular-locale_et.js @@ -3,22 +3,22 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: " $provide.value("$locale", { "DATETIME_FORMATS": { "AMPMS": { - "0": "enne keskpäeva", - "1": "pärast keskpäeva" + "0": "enne keskp\u00e4eva", + "1": "p\u00e4rast keskp\u00e4eva" }, "DAY": { - "0": "pühapäev", - "1": "esmaspäev", - "2": "teisipäev", - "3": "kolmapäev", - "4": "neljapäev", + "0": "p\u00fchap\u00e4ev", + "1": "esmasp\u00e4ev", + "2": "teisip\u00e4ev", + "3": "kolmap\u00e4ev", + "4": "neljap\u00e4ev", "5": "reede", - "6": "laupäev" + "6": "laup\u00e4ev" }, "MONTH": { "0": "jaanuar", "1": "veebruar", - "2": "märts", + "2": "m\u00e4rts", "3": "aprill", "4": "mai", "5": "juuni", @@ -41,7 +41,7 @@ $provide.value("$locale", { "SHORTMONTH": { "0": "jaan", "1": "veebr", - "2": "märts", + "2": "m\u00e4rts", "3": "apr", "4": "mai", "5": "juuni", @@ -62,9 +62,9 @@ $provide.value("$locale", { "shortTime": "H: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": "\u00a4)", "posPre": "", - "posSuf": "\u00A4" + "posSuf": "\u00a4" } } }, -- cgit v1.2.3