1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-12-01 16:28:29 +09:00
whippy-edition/app/helpers/settings_helper.rb

14 lines
206 B
Ruby
Raw Normal View History

# 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