Skip to content

Gem to provide simple drop-down select for (ISO-639-1) languages.

License

Notifications You must be signed in to change notification settings

Apide/language_select

Repository files navigation

Rails – Language Select

Build Status

Provides a simple helper to get an HTML select list of languages using the ISO 639-1 standard.

Uses the two letter alpha codes to identify the language.

Installation

Install as a gem using

gem install language_select

Or put the following in your Gemfile

gem 'language_select'

Example

Simple use supplying model and attribute as parameters:

language_select("user", "language")

Supplying priority languages to be placed at the top of the list:

language_select("user", "language", [ "English", "French", "German" ])

The language is stored using the ISO-639-1 two letter codes.

Getting the Language from ISO codes

class User < ActiveRecord::Base

  def language_name
    ::LanguageSelect::LANGUAGES[language]
  end

end

Tests

bundle
bundle exec rspec

Running with multiple versions of actionpack

bundle exec appraisal

Copyright (c) 2013 Apide ApS, released under the MIT license

About

Gem to provide simple drop-down select for (ISO-639-1) languages.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages