Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 999953
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T07:26:01+00:00 2026-05-16T07:26:01+00:00

# Transform the model name into a more humane format, using I18n. By default,

  • 0
# Transform the model name into a more humane format, using I18n. By default,
# it will underscore then humanize the class name
#
#   BlogPost.model_name.human # => "Blog post"
#
# Specify +options+ with additional translating options.

I found the above while digging through Rails trying to discover what exactly are the options for translating. I can find lots of references that say, use +options+ but can find no definitive method where these options are defined. What am I missing?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T07:26:02+00:00Added an answer on May 16, 2026 at 7:26 am

    The method you are talking about is ActiveRecord::Base#human

    # Transform the model name into a more humane format, using I18n. By default,
    # it will underscore then humanize the class name
    #
    #   BlogPost.model_name.human # => "Blog post"
    #
    # Specify +options+ with additional translating options.
    def human(options={})
      return @human unless @klass.respond_to?(:lookup_ancestors) &&
                           @klass.respond_to?(:i18n_scope)
    
      defaults = @klass.lookup_ancestors.map do |klass|
        klass.model_name.underscore.to_sym
      end
    
      defaults << options.delete(:default) if options[:default]
      defaults << @human
    
      options.reverse_merge! :scope => [@klass.i18n_scope, :models], :count => 1, :default => defaults
      I18n.translate(defaults.shift, options)
    end
    

    that internally relies on I18n.translate. Thus options can be any option supported by the I18n method, including :scope, :default and more.

    See http://guides.rubyonrails.org/i18n.html#looking-up-translations

    The options argument also depends on the I18n backend you are currently using.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to transform my <input type=file id=image name=image> with something like @Html.UploadFor(model
Taking a classic foo bar example: In models.py : Class Foo(models.Model): name = models.CharField(max_length=
I try to transform a hierarchical XML file to a flat file schema using
I have a model in App Engine that I am exporting in CSV format
I've seen examples of transforming adjacency model XML but none that will do it
I need to transform my XML into another datastructure. I recieve the XML like
I need to extract data from a .dbf file and transform it into xml.
I am putting an XSL together than will create a NAnt build script using
I'm using XSLT 1.0 to transform some XML. I'm not quite sure the best
I am trying to model a transfer function block for say 1/(s+1). What is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.