0.0
No commit activity in last 3 years
No release in over 3 years
Support namespaces in I18n Simple backend
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

>= 2.0.0
>= 2.0.0

Runtime

>= 3
 Project Readme

i18n_multisite¶ ↑

Support namespaces in I18n Simple backend

With a namespace set, these are the lookup keys

I18n.namespace = :site1

will be search these keys:

  • site1.home.index.content

  • home.index.content

    t('home.index.content')
    

Your namespace can be an array too

I18n.namespace = [:main_site, :child_site]

will be search these keys:

  • main_site.child_site.home.index.content

  • main_site.home.index.content

  • home.index.content