# File lib/integration/rails_date_helper_override.rb, line 38
    def select_month(date, options = {}, html_options = {})
      locale = options[:locale] unless RuTils::overrides_enabled?
      
      val = date ? (date.kind_of?(Fixnum) ? date : date.month) : ''
      if options[:use_hidden]
        if self.class.private_instance_methods.include? "_date_hidden_html"
          _date_hidden_html(options[:field_name] || 'month', val, options)
        else
          hidden_html(options[:field_name] || 'month', val, options)
        end
      else
        month_options = [] 
        if RuTils::overrides_enabled?
          month_names = case true
            when options[:use_short_month]
              Date::RU_ABBR_MONTHNAMES
            # использование в контексте date_select с днями требует родительный падеж
            when options[:order] && options[:order].include?(:day)
              Date::RU_INFLECTED_MONTHNAMES
            else
              Date::RU_MONTHNAMES
          end
        else
          if defined? I18n
            month_names = options[:use_month_names] || begin
              key = options[:use_short_month] ? 'date.abbr_month_names''date.abbr_month_names' : 'date.month_names''date.month_names'
              I18n.translate key, :locale => locale
            end
          else
            month_names = options[:use_short_month] ? Date::ABBR_MONTHNAMES : Date::MONTHNAMES
          end
        end
        month_names.unshift(nil) if month_names.size < 13

        1.upto(12) do |month_number|
          month_name = if options[:use_month_numbers]
            month_number
          elsif options[:add_month_numbers]
            month_number.to_s + ' - ' + month_names[month_number]
          else
            month_names[month_number]
          end
    
          month_options << ((val == month_number) ?
            content_tag(:option, month_name, :value => month_number, :selected => "selected") :
            content_tag(:option, month_name, :value => month_number)
          )
          month_options << "\n"
        end
        
        if DATE_HELPERS_RECEIVE_HTML_OPTIONS
          if self.class.private_instance_methods.include? "_date_select_html"
            _date_select_html(options[:field_name] || 'month', month_options.join, options, html_options)
          else
            select_html(options[:field_name] || 'month', month_options.join, options, html_options)
          end
        else
          select_html(options[:field_name] || 'month', month_options.join, options)
        end
      end
    end