number.go 306 B

12345678
  1. package hy
  2. import "github.com/go-playground/universal-translator"
  3. var (
  4. symbols = ut.Symbols{Decimal: ",", Group: ".", Negative: "-", Percent: "%", PerMille: "‰"}
  5. formats = ut.NumberFormats{Decimal: "#0.###", Currency: "¤\u00a0#,##0.00", CurrencyAccounting: "¤\u00a0#,##0.00", Percent: "#,##0%"}
  6. )