Other than copying Facebook’s SELECT and OPTION elements, is there a Rails-native way of generating a Facebook-esque, localized-language select list?

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
If by “Rails-native” you mean “provided by Rails core,” then no. However, you can access a list of locales your app provides translations for via
I18n.available_locales. If one of the values of your locale is a localized version of the name of the language, you can use it to build a select:If you want something that will build the list for you, you might check out a Gem or plugin, such as localized_language_select.