aboutsummaryrefslogtreecommitdiffstats
path: root/lib/gettext_setup.rb
Commit message (Collapse)AuthorAgeLines
* Only set up FastGettext on initialization, even in development modeimprove-development-performanceMark Longair2013-09-16-13/+0
| | | | | | | | | | | | | | | | | Even on a very fast computer, there is a significant delay (a couple of seconds) in processing every request in development mode. This is because the configuration of FastGettext's paths for finding translations is done in a block passed to Rails.configuration.to_prepare, which causes the block to be run before every request by the Rails Reloader in developmetn mode. It seems to be work fine just running the FastGettext calls on initialization in development mode, however - customizations in the theme's locale-theme directory still have effect in development mode even after the reloader has reloaded classes before handling subsequent requests. So, I think this change should be safe. This commit introduces that change, having the effect that development mode is much more responsive.
* Replace Dispatcher.to_prepare with Rails.configuration.to_prepareMark Longair2013-04-09-2/+1
|
* Add examples of how a user might customise:Seb Bacon2012-01-27-0/+14
* routes * gettext translations * categories