Module: ContactsHelper

Defined in:
app/helpers/contacts_helper.rb

Instance Method Summary collapse

Instance Method Details

#salutationsObject



2
3
4
5
6
7
8
9
# File 'app/helpers/contacts_helper.rb', line 2

def salutations
  return [
    [I18n.translate('mr'), 'mr'],
    [I18n.translate('mrs'), 'mrs'],
    [I18n.translate('miss'), 'miss'],
    [I18n.translate('dr'), 'dr']
  ]
end