about summary refs log tree commit diff
path: root/app/helpers/settings_helper.rb
blob: 26c4cd58fa4f050f229558fd536864b44d31651c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

module SettingsHelper
  HUMAN_LOCALES = {
    en: 'English',
    de: 'Deutsch',
    es: 'Español',
    pt: 'Português',
    fr: 'Français',
    hu: 'Magyar',
  }.freeze

  def human_locale(locale)
    HUMAN_LOCALES[locale]
  end
end