chinwagsocial/app/helpers/settings_helper.rb

24 lines
404 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module SettingsHelper
HUMAN_LOCALES = {
en: 'English',
de: 'Deutsch',
es: 'Español',
pt: 'Português',
fr: 'Français',
hu: 'Magyar',
2016-12-09 03:54:35 +11:00
uk: 'Українська',
2017-03-26 22:13:41 +11:00
'zh-CN': '简体中文',
fi: 'Suomi',
}.freeze
def human_locale(locale)
HUMAN_LOCALES[locale]
end
def hash_to_object(hash)
HashObject.new(hash)
end
end