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_da.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_da.js')
| -rw-r--r-- | src/ngLocale/angular-locale_da.js | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/src/ngLocale/angular-locale_da.js b/src/ngLocale/angular-locale_da.js index 2d7af4c3..7127e47e 100644 --- a/src/ngLocale/angular-locale_da.js +++ b/src/ngLocale/angular-locale_da.js @@ -7,13 +7,13 @@ $provide.value("$locale", {        "1": "e.m."      },      "DAY": { -      "0": "søndag", +      "0": "s\u00f8ndag",        "1": "mandag",        "2": "tirsdag",        "3": "onsdag",        "4": "torsdag",        "5": "fredag", -      "6": "lørdag" +      "6": "l\u00f8rdag"      },      "MONTH": {        "0": "januar", @@ -30,13 +30,13 @@ $provide.value("$locale", {        "11": "december"      },      "SHORTDAY": { -      "0": "søn", +      "0": "s\u00f8n",        "1": "man",        "2": "tir",        "3": "ons",        "4": "tor",        "5": "fre", -      "6": "lør" +      "6": "l\u00f8r"      },      "SHORTMONTH": {        "0": "jan.", @@ -86,9 +86,9 @@ $provide.value("$locale", {          "minFrac": 2,          "minInt": 1,          "negPre": "-", -        "negSuf": " \u00A4", +        "negSuf": "\u00a0\u00a4",          "posPre": "", -        "posSuf": " \u00A4" +        "posSuf": "\u00a0\u00a4"        }      }    }, | 
