# File lib/money/money/formatting.rb, line 28
      def decimal_mark
        if self.class.use_i18n
          I18n.t(
            "number.currency.format.separator""number.currency.format.separator",
            :default => I18n.t(
              "number.format.separator""number.format.separator",
              :default => (currency.decimal_mark || ".")
            )
          )
        else
          currency.decimal_mark || "."
        end
      end