39533190c ^
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