Skip to content

Commit

Permalink
Introduce helper method for translating public locale names
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielKuhn committed Oct 21, 2024
1 parent 97ca969 commit 59fca74
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
7 changes: 3 additions & 4 deletions app/helpers/pageflow/admin/entry_translations_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ module Pageflow
module Admin
# @api private
module EntryTranslationsHelper
include LocalesHelper

def entry_translation_display_locale(entry)
display_locale = t(
'pageflow.public._language',
locale: (entry.published_revision || entry.draft).locale
)
display_locale = locale_name_for((entry.published_revision || entry.draft).locale)

if entry.default_translation?
t('pageflow.admin.entry_translations.default_translation', display_locale:)
Expand Down
10 changes: 7 additions & 3 deletions app/helpers/pageflow/admin/locales_helper.rb
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
module Pageflow
module Admin
module LocalesHelper
def locale_name_for(locale, i18n_key = 'pageflow.public._language')
I18n.t(i18n_key, locale: locale)
end

def available_locales_collection
locales_collection(Pageflow.config.available_locales, 'language')
end

def available_public_locales_collection
locales_collection(Pageflow.config.available_public_locales, 'pageflow.public._language')
locales_collection(Pageflow.config.available_public_locales)
end

private

def locales_collection(locales, i18n_key)
def locales_collection(locales, i18n_key = 'pageflow.public._language')
locales.map do |locale|
[I18n.t(i18n_key, locale: locale), locale.to_s]
[locale_name_for(locale, i18n_key), locale.to_s]
end
end
end
Expand Down

0 comments on commit 59fca74

Please sign in to comment.