Currency Format

Hello, I need to change the currency format but I don’t know where it is possible.

Thanks.

Hello Matiascano,

Each locale has its own format of numbers and currency.
In the /config/locales/xx/rails.yml file for each locale you have a section:

number:
  currency:
    format:
      delimiter: ","
      format: "%u%n"
      precision: 2
      separator: "."
      unit: "$"

where you can customise them.

Remember to follow the guidelines recommended in the docs for customising texts:
https://docs.consulproject.org/docs/english-documentation/customization/translations

Greetings

Thanks for your answer!