# File lib/russian/active_record_ext/custom_error_message.rb, line 142
      def full_messages
        full_messages = []

        @errors.each_key do |attr|
          @errors[attr].each do |msg|
            next if msg.nil?

            if attr == "base"
              full_messages << msg
            elsif msg =~ /^\^/
              full_messages << msg[1..-1]
            else
              full_messages << @base.class.human_attribute_name(attr) + " " + msg
            end
          end
        end

        return full_messages
      end