class SimpleForm::Inputs::CollectionInput

def translate_collection

def translate_collection
  if translated_collection = translate(:options)
    @collection = collection.map do |key|
      [translated_collection[key] || key, key]
    end
    true
  end
end