The Artima Developer Community
Sponsored Link

Ruby Buzz Forum
7-Point Program for Global Domination

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Jeremy Voorhis

Posts: 212
Nickname: jvoorhis
Registered: Oct, 2005

Jeremy Voorhis is a Rubyist in northeast Ohio.
7-Point Program for Global Domination Posted: Dec 1, 2005 10:18 PM
Reply to this message Reply

This post originated from an RSS feed registered with Ruby Buzz by Jeremy Voorhis.
Original Post: 7-Point Program for Global Domination
Feed Title: JVoorhis
Feed URL: http://feeds.feedburner.com/jvoorhis
Feed Description: JVoorhis is a Rubyist in northeast Ohio. He rambles about Ruby on Rails, development practices, other frameworks such as Django, and on other days he is just full of snark.
Latest Ruby Buzz Posts
Latest Ruby Buzz Posts by Jeremy Voorhis
Latest Posts From JVoorhis

Advertisement
  1. script/plugin install svn://www.diluvia.net/rails-plugins/globalize/trunk
  2. script/generate globalize
  3. rake migrate
  4. in config/environment.rb:
    $DEFAULT_LOCALE = 'en-US'
  5. in config/routes.rb:
    map.connect ':locale/:controller/:action/:id', :locale => $DEFAULT_LOCALE
  6. in app/controllers/application.rb:
      before_filter :set_locale
    
      def set_locale
        begin
          Globalize::Locale.set( params[:locale] )
        rescue
          Globalize::Locale.set( $DEFAULT_LOCALE )
        end
      end
    
  7. enable Globalize in your models like so:
    translates :sekrit_plans, :target

Read: 7-Point Program for Global Domination

Topic: rubyholic v1.0 is live Previous Topic   Next Topic Topic: 205,000 Lines of Ruby Code Donated in the Try Ruby Drive

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use