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.
metu.life/app/helpers/settings_helper.rb

18 lines
299 B

# frozen_string_literal: true
module SettingsHelper
HUMAN_LOCALES = {
en: 'English',
de: 'Deutsch',
es: 'Español',
pt: 'Português',
fr: 'Français',
hu: 'Magyar',
uk: 'Українська',
}.freeze
def human_locale(locale)
HUMAN_LOCALES[locale]
end
end