Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

Commit

Permalink
fix(ng/$locale): by default put negative sign before currency symbol
Browse files Browse the repository at this point in the history
It seems that the case where the negative sign goes between the currency
symbol and the numeric value is actually the special case and that locales
that require this have it built in. So we should default to having the
negative sign before the symbol.

See http://cldr.unicode.org/translation/number-patterns and
http://unicode.org/cldr/trac/ticket/5674

Closes #10158
  • Loading branch information
petebacondarwin committed Jul 27, 2015
1 parent 058d462 commit 5298672
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ng/locale.js
Expand Up @@ -35,8 +35,8 @@ function $LocaleProvider() {
maxFrac: 2,
posPre: '\u00A4',
posSuf: '',
negPre: '(\u00A4',
negSuf: ')',
negPre: '-\u00A4',
negSuf: '',
gSize: 3,
lgSize: 3
}
Expand Down

0 comments on commit 5298672

Please sign in to comment.