闭社主体 forked from https://github.com/tootsuite/mastodon
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.

21 lines
358 B

  1. # frozen_string_literal: true
  2. module SettingsHelper
  3. HUMAN_LOCALES = {
  4. en: 'English',
  5. de: 'Deutsch',
  6. es: 'Español',
  7. pt: 'Português',
  8. fr: 'Français',
  9. hu: 'Magyar',
  10. uk: 'Українська',
  11. }.freeze
  12. def human_locale(locale)
  13. HUMAN_LOCALES[locale]
  14. end
  15. def hash_to_object(hash)
  16. HashObject.new(hash)
  17. end
  18. end