mastodon/app/helpers/settings_helper.rb

28 lines
473 B
Ruby
Raw Normal View History

# 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',
2016-12-08 17:54:35 +01:00
uk: 'Українська',
2017-03-26 13:13:41 +02:00
'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