You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
metu.life/app/helpers/settings_helper.rb

28 lines
473 B

# frozen_string_literal: true
module SettingsHelper
HUMAN_LOCALES = {
en: 'English',
de: 'Deutsch',
es: 'Español',
eo: 'Esperanto',
pt: 'Português',
fr: 'Français',
hu: 'Magyar',
uk: 'Українська',
7 years ago
'zh-CN': '简体中文',
fi: 'Suomi',
ru: 'Русский',
ja: '日本語',
}.freeze
def human_locale(locale)
HUMAN_LOCALES[locale]
end
def hash_to_object(hash)
HashObject.new(hash)
end
end