Lambdas in locales in Rails 3
A minor change to lambdas in locales: the key is now being passed as the first argument. What used to be `lambda {|c, path| "Do it: " + c.link_to("Thing", path) } ` is now `lambda {|key, c, path| "Do it: " + c.link_to("Thing", path) } ` .