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

module SettingsHelper
  HUMAN_LOCALES = {
    en: 'English',
    de: 'Deutsch',
    es: 'Español',
  }.freeze

  def human_locale(locale)
    HUMAN_LOCALES[locale]
  end
end