Class: Er18Ern::RailsApp

Inherits:
Object
  • Object
show all
Defined in:
lib/er18ern.rb

Class Method Summary collapse

Class Method Details

.setup!Object



30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# File 'lib/er18ern.rb', line 30

def self.setup!
  if ["test", "development"].include?(Rails.env)
    I18n.exception_handler = JustRaise.new
  end
  Array.class_eval do
    def to_br_sentence
      case length
        when 0
          ""
        when 1
          self[0].to_s.dup
        when 2
          two_words_connector = I18n.translate(:'support.array.br_two_words_connector')
          "#{self[0]}#{two_words_connector}#{self[1]}".html_safe
        else
          words_connector = I18n.translate(:'support.array.br_words_connector')
          last_word_connector = I18n.translate(:'support.array.br_last_word_connector')
          "#{self[0...-1].join(words_connector)}#{last_word_connector}#{self[-1]}".html_safe
      end
    end
  end
  ActiveModel::Errors.class_eval do
    def full_message(attribute, message)
      return message if attribute == :base
      attr_name = attribute.to_s.tr('.', '_').humanize
      attr_name = @base.class.human_attribute_name(attribute, :default => attr_name)
      I18n.t(:"errors.formats.attributes.#{attribute}", {
        :default   => [:"errors.format","%{attribute} %{message}"],
        :attribute => attr_name,
        :message   => message
      })
    end
  end
end