Requires

Provides

Number.English.US.js

Number messages for US English.

License:
MIT-style license
Authors:
Arian Stolwijk
  1. 24
  2. 25
  3. 26
  4. 27
Locale.define('en-US', 'Number', { decimal: '.', group: ',',

decimals: 0, precision: 0, scientific: null,

prefix: null, suffic: null,

Negative/Currency/percentage will mixin Number

  1. 37
  2. 38
  3. 39
  4. 40
  5. 41
  6. 42
  7. 43
  8. 44
  9. 45
  10. 46
  11. 47
  12. 48
  13. 49
  14. 50
  15. 51
  16. 52
negative: { prefix: '-' }, currency: { decimals: 2, prefix: '$ ', 'scientific': false }, percentage: { decimals: 2, suffix: '%' } });