public
Description: Another templates localization schema for Rails 2.3 which allows you to create a folder for each locale on your views root
Homepage: http://blog.plataformatec.com.br/
Clone URL: git://github.com/josevalim/localized_templates.git
Click here to lend your support to: localized_templates and make a donation at www.pledgie.com !
name age message
file MIT-LICENSE Sat Nov 29 14:29:18 -0800 2008 Added gemspec [Jose' Valim]
file README Thu Feb 05 10:12:46 -0800 2009 Rails 2.3 compatible version! [José Valim]
file Rakefile Fri Jan 30 09:40:12 -0800 2009 Update README and Rakefile. [José Valim]
file init.rb Sun Jan 04 02:47:17 -0800 2009 Bug fix in gem [Jose' Valim]
directory lib/ Tue Mar 31 06:07:59 -0700 2009 Ensure everything works on Rails 2.3.2 [José Valim]
file localized_templates.gemspec Thu Feb 05 10:12:46 -0800 2009 Rails 2.3 compatible version! [José Valim]
directory test/ Thu Feb 05 10:12:46 -0800 2009 Rails 2.3 compatible version! [José Valim]
README
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/