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 06781d4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
5 changes: 1 addition & 4 deletions app/helpers/pageflow/admin/entry_translations_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@ module Admin
# @api private
module EntryTranslationsHelper
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
2 changes: 1 addition & 1 deletion app/views/admin/accounts/_entry_template_details.html.arb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ extensible_attributes_table_for(entry_template,
entry_template.theme_name
end
row :default_locale, class: 'default_locale' do
t('pageflow.public._language', locale: entry_template.default_locale)
locale_name_for(entry_template.default_locale)
end
row :default_author, class: 'default_author'
row :default_publisher, class: 'default_publisher'
Expand Down

0 comments on commit 06781d4

Please sign in to comment.