# File lib/money/money/formatting.rb, line 252
  def localize_formatting_rules(rules)
    if currency.iso_code == "JPY" && I18n.locale == :ja
      rules[:symbol] = "円"
      rules[:symbol_position] = :after
      rules[:symbol_after_without_space] = true
    end
    rules
  end