cirandas.net

ref: master

plugins/stock/public/javascripts/locale.js


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
if (typeof locale === 'undefined') {

locale = 'pt'; //FIXME: don't hardcode
standard_locale = 'en';
code_locale = 'code';
locale_data = {
  'code': {
    'currency': {
      'delimiter': '',
      'separator': '.',
      'decimals': null,
    }
  },
  'en': {
    'currency': {
      'delimiter': ',',
      'separator': '.',
      'decimals': 2,
    }
  },
  'pt': {
    'currency': {
      'delimiter': '.',
      'separator': ',',
      'decimals': 2,
    }
  },
}

function localize_currency(value, to, from) {
  if (!to)
    to = locale;
  if (!from)
    from = standard_locale;
  var lvalue = unlocalize_currency(value, from);
  from = standard_locale;
  lvalue = lvalue.toFixed(locale_data[to].currency.decimals);
  lvalue = lvalue.replace(locale_data[from].currency.delimiter, locale_data[to].currency.delimiter);
  lvalue = lvalue.replace(locale_data[from].currency.separator, locale_data[to].currency.separator);
  return lvalue;
}

function unlocalize_currency(value, from) {
  if (!value)
    return 0;
  if (!from)
    from = locale;
  var lvalue = value.toString();
  var to = code_locale;
  lvalue = lvalue.replace(locale_data[from].currency.delimiter, locale_data[to].currency.delimiter);
  lvalue = lvalue.replace(locale_data[from].currency.separator, locale_data[to].currency.separator);
  return parseFloat(lvalue);
}

}