Using Enum Translations in Views

When displaying enums in views, always use I18n.t to translate values.

Example: Localizing Enums in ERB Templates

<%= t("activerecord.attributes.user.statuses.#{user.status}") %>

Now, based on the user’s locale (I18n.locale), the status will be shown in English, French, or any other language supported by the app.