Skip to content

Instantly share code, notes, and snippets.

@naush
Created October 17, 2012 04:45
Show Gist options
  • Save naush/3903735 to your computer and use it in GitHub Desktop.
Save naush/3903735 to your computer and use it in GitHub Desktop.
I18n.backend.store_translations :en, :thanks => 'Thanks %{name}!'
I18n.translate :thanks, :name => 'Jeremy'
# => 'Thanks Jeremy!'
I18n.t :missing, :default => 'Not here'
# => 'Not here'
# config/locales/en.yml
en:
welcome: <b>welcome!</b>
hello_html: <b>hello!</b>
title:
html: <b>title!</b>
# app/views/home/index.html.erb
<div><%= t('welcome') %></div>
<div><%= raw t('welcome') %></div>
<div><%= t('hello_html') %></div>
<div><%= t('title.html') %></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment