accounting.settings = { currency: { symbol : "€", // default currency symbol is '$' format: { pos : "%v %s", // for positive values, eg. "$ 1.00" (required) neg : "-%v %s", // for negative values, eg. "$ (1.00)" [optional] zero: "-- %s" // for zero values, eg. "$ --" [optional] },// "%v %s", // controls output: %s = symbol, %v = value/number (can be object: see below) decimal : ",", // decimal point separator thousand: " ", // thousands separator precision : 2 // decimal places }, number: { precision : 2, // default precision on numbers is 0 thousand: " ", decimal : "." } }