jrl08d / releasetrackerapp

inhouse rails app to track deployments of DS customers
0 stars 0 forks source link

Translation #14

Closed hathawad closed 9 years ago

hathawad commented 9 years ago

Add basic translation to key terms on the page, could be semantic (i.e two english translations, but using different words)

mohaballi commented 9 years ago

Rails Internationalization/Translation - http://guides.rubyonrails.org/i18n.html

Example translation

# config/locales/en.yml
en:
  hello_world: Hello world!

Usage in views

= t :hello_world  # outputs "Hello World!"