This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-11-18 15:19:57 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module SettingsHelper
|
|
|
|
HUMAN_LOCALES = {
|
|
|
|
en: 'English',
|
|
|
|
de: 'Deutsch',
|
|
|
|
es: 'Español',
|
2016-11-28 04:55:03 -08:00
|
|
|
pt: 'Português',
|
2016-11-22 01:20:28 -08:00
|
|
|
fr: 'Français',
|
2016-11-28 04:55:03 -08:00
|
|
|
hu: 'Magyar',
|
2016-12-08 08:54:35 -08:00
|
|
|
uk: 'Українська',
|
2016-11-18 15:19:57 -08:00
|
|
|
}.freeze
|
|
|
|
|
|
|
|
def human_locale(locale)
|
|
|
|
HUMAN_LOCALES[locale]
|
|
|
|
end
|
2017-01-12 11:46:24 -08:00
|
|
|
|
|
|
|
def hash_to_object(hash)
|
|
|
|
HashObject.new(hash)
|
|
|
|
end
|
2016-11-18 15:19:57 -08:00
|
|
|
end
|