Skip to content
This repository has been archived by the owner on Mar 23, 2024. It is now read-only.

Latest commit

 

History

History
15 lines (11 loc) · 413 Bytes

README.rdoc

File metadata and controls

15 lines (11 loc) · 413 Bytes

i18n_namespace

I18n.namespace = :administrator

# with a namespace set, these are the lookup keys
# administrator.home.index.content
# home.index.content
t('home.index.content')

# your namespace can be an array too
I18n.namespace = [:administrator, :special_club]

# administrator.special_club.home.index.content
# administrator.home.index.content
# home.index.content