LocalizedTemplates
License: MIT
Version: 0.4
Description
==================
This plugin uses Rails I18n (http://rails-i18n.org/) to allow templates localization.
You can localize your views using the following naming convention:
<tt>pt-BR/projects/index.html.erb</tt>
<tt>en-US/projects/edit.rss.builder</tt>
And you can also localize rescue files:
<tt>public/pt-BR/404.html</tt>
<tt>public/en-US/404.html</tt>
If you don't want to localize a file (like a xml file), simply don't move it and it will be
rendered as default to all languages.
This is an alternative to Rails 2.3 templates localization schema. If you are
localizing almost all of your views, it definitely suits you better because
your views will be better organized.
Installation
=================
Install LocalizedTemplates is very easy. If you are running run on Rails 2.3
just do the following:
gem sources -a http://gems.github.com
sudo gem install josevalim-localized_templates
In RAILS_ROOT/config/environment.rb:
config.gem "josevalim-localized_templates", :lib => "localized_templates", :source => "http://gems.github.com"
If you want it as plugin, just do:
script/plugin install git://github.com/josevalim/localized_templates.git
If you are running on Rails 2.2, you should use version 0.3.1:
cd myapp
git clone git://github.com/josevalim/localized_tempaltes.git
cd vendor/plugins/localized_templates
git checkout v0.3.1
rm -rf ./.git
Bugs and Feedback
=================
If you discover any bugs, please send an e-mail to jose.valim@gmail.com
If you just want to give some positive feedback or drop a line, that's fine too! =)
Copyright (c) 2009 José Valim
http://www.pagestacker.com/
http://josevalim.blogspot.com/