2016-11-18 23:19:57 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module SettingsHelper
|
|
|
|
HUMAN_LOCALES = {
|
|
|
|
en: 'English',
|
2017-04-28 00:59:19 +01:00
|
|
|
ar: 'العربية',
|
2017-04-23 18:09:52 +01:00
|
|
|
bg: 'Български',
|
2017-05-16 23:25:10 +01:00
|
|
|
ca: 'Català',
|
2016-11-18 23:19:57 +00:00
|
|
|
de: 'Deutsch',
|
2017-04-10 11:52:06 +01:00
|
|
|
eo: 'Esperanto',
|
2017-04-23 18:09:52 +01:00
|
|
|
es: 'Español',
|
2017-04-24 21:39:15 +01:00
|
|
|
fa: 'فارسی',
|
2017-04-23 18:09:52 +01:00
|
|
|
fi: 'Suomi',
|
2016-11-22 09:20:28 +00:00
|
|
|
fr: 'Français',
|
2017-05-02 13:54:35 +01:00
|
|
|
he: 'עברית',
|
2017-04-17 09:38:13 +01:00
|
|
|
hr: 'Hrvatski',
|
2016-11-28 12:55:03 +00:00
|
|
|
hu: 'Magyar',
|
2017-04-23 18:09:52 +01:00
|
|
|
id: 'Bahasa Indonesia',
|
2017-04-21 18:15:25 +01:00
|
|
|
io: 'Ido',
|
2017-04-17 09:38:13 +01:00
|
|
|
it: 'Italiano',
|
2017-04-23 18:09:52 +01:00
|
|
|
ja: '日本語',
|
2017-07-04 15:11:23 +01:00
|
|
|
ko: '한국어',
|
2017-04-13 15:02:23 +01:00
|
|
|
nl: 'Nederlands',
|
2017-04-12 16:07:51 +01:00
|
|
|
no: 'Norsk',
|
2017-04-18 14:21:16 +01:00
|
|
|
oc: 'Occitan',
|
2017-04-21 02:29:11 +01:00
|
|
|
pl: 'Polszczyzna',
|
2017-04-12 07:50:50 +01:00
|
|
|
pt: 'Português',
|
2017-04-17 09:38:27 +01:00
|
|
|
'pt-BR': 'Português do Brasil',
|
2017-04-10 11:52:06 +01:00
|
|
|
ru: 'Русский',
|
2017-05-08 14:56:00 +01:00
|
|
|
th: 'ภาษาไทย',
|
2017-05-07 15:20:53 +01:00
|
|
|
tr: 'Türkçe',
|
2017-04-12 07:50:50 +01:00
|
|
|
uk: 'Українська',
|
2017-09-08 11:32:22 +01:00
|
|
|
zh: '中文',
|
2017-04-12 07:50:50 +01:00
|
|
|
'zh-CN': '简体中文',
|
|
|
|
'zh-HK': '繁體中文(香港)',
|
2017-04-17 09:35:06 +01:00
|
|
|
'zh-TW': '繁體中文(臺灣)',
|
2016-11-18 23:19:57 +00:00
|
|
|
}.freeze
|
|
|
|
|
|
|
|
def human_locale(locale)
|
|
|
|
HUMAN_LOCALES[locale]
|
|
|
|
end
|
2017-01-12 19:46:24 +00:00
|
|
|
|
2017-09-08 11:32:22 +01:00
|
|
|
def filterable_languages
|
|
|
|
I18n.available_locales.map { |locale| locale.to_s.split('-').first.to_sym }.uniq
|
|
|
|
end
|
|
|
|
|
2017-01-12 19:46:24 +00:00
|
|
|
def hash_to_object(hash)
|
|
|
|
HashObject.new(hash)
|
|
|
|
end
|
2017-06-25 15:54:30 +01:00
|
|
|
|
|
|
|
def session_device_icon(session)
|
|
|
|
device = session.detection.device
|
|
|
|
|
|
|
|
if device.mobile?
|
|
|
|
'mobile'
|
|
|
|
elsif device.tablet?
|
|
|
|
'tablet'
|
|
|
|
else
|
|
|
|
'desktop'
|
|
|
|
end
|
|
|
|
end
|
2016-11-18 23:19:57 +00:00
|
|
|
end
|