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.

23 lines
404 B

7 years ago
  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. 'zh-CN': '简体中文',
  12. fi: 'Suomi',
  13. }.freeze
  14. def human_locale(locale)
  15. HUMAN_LOCALES[locale]
  16. end
  17. def hash_to_object(hash)
  18. HashObject.new(hash)
  19. end
  20. end