gitlab-org--gitlab-foss/lib/gitlab/i18n.rb
2017-05-02 23:36:36 -05:00

15 lines
225 B
Ruby

module Gitlab
module I18n
extend self
AVAILABLE_LANGUAGES = {
en: 'English',
es: 'Español',
de: 'Deutsch'
}.freeze
def available_locales
AVAILABLE_LANGUAGES.keys
end
end
end