Ruby on Rails I18n - Internationalization Use I18n in views

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Extensions
> Step 2: And Like the video. BONUS: You can also share it!

Example

Assuming you have this YAML locale file:

# config/locales/en.yml
en:
  header:
    title: "My header title"

and you want to display your title string, you can do this

# in ERB files
<%= t('header.title') %>

# in SLIM files
= t('header.title')


Got any Ruby on Rails Question?