class Object

Provides a simple pass-through localizer for RecordSelect. If you want to localize RS, you need to override this method and route it to your own system.

Constants

RECORD_SELECT_GEM

Public Instance Methods

rs_(key, options = {}) click to toggle source
# File lib/record_select/extensions/localization.rb, line 5
def rs_(key, options = {})
  unless key.blank?
    text = I18n.translate "#{key}", {:scope => [:record_select], :default => key.is_a?(String) ? key : key.to_s.titleize}.merge(options)
    # text = nil if text.include?('translation missing:')
  end
  text ||= key 
  text
end