I am trying to use
number_to_currency
number_to_currency(100, locale: :us)
number_to_currency(100, locale: @locale)
@locale = "us"
"us" is a string, you need to pass in a symbol
"us"
use @locale.to_sym
@locale.to_sym