1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-25 14:59:20 +00:00
mastodon/app/helpers/settings_helper.rb
2016-11-22 10:20:28 +01:00

14 lines
227 B
Ruby

# frozen_string_literal: true
module SettingsHelper
HUMAN_LOCALES = {
en: 'English',
de: 'Deutsch',
es: 'Español',
fr: 'Français',
}.freeze
def human_locale(locale)
HUMAN_LOCALES[locale]
end
end