Re: [Rails-core] Re: I18n support for plugins/gems?

2009-12-02 Thread Antonio Tapiador del Dujo
El Domingo, 30 de Agosto de 2009 20:24:16 Sven Fuchs escribió: On 30.08.2009, at 20:00, Michael Koziarski wrote: I'll have a look at a patch. I assume this can go into 2.3.x? Let's start with master and look at backporting if it's simple and 'purely additive'. I guess it is :) Here

[Rails-core] Re: I18n support for plugins/gems?

2009-08-30 Thread Sven Fuchs
Alright, that's a clear vote of 4:0 :) I'll have a look at a patch. I assume this can go into 2.3.x? On 26.08.2009, at 22:23, Ryan Bigg (Radar) wrote: 2009/8/26 Sven Fuchs svenfu...@artweb-design.de Sure :) The question remains ... should an Engine dev be expected add something like

[Rails-core] Re: I18n support for plugins/gems?

2009-08-30 Thread Michael Koziarski
I'll have a look at a patch. I assume this can go into 2.3.x? Let's start with master and look at backporting if it's simple and 'purely additive'. -- Cheers Koz --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[Rails-core] Re: I18n support for plugins/gems?

2009-08-30 Thread Sven Fuchs
On 30.08.2009, at 20:00, Michael Koziarski wrote: I'll have a look at a patch. I assume this can go into 2.3.x? Let's start with master and look at backporting if it's simple and 'purely additive'. I guess it is :) Here are two patches for master and 2-3-stable:

[Rails-core] Re: I18n support for plugins/gems?

2009-08-26 Thread Ryan Bigg (Radar)
With engines being able to add functionality, I believe that this functionality will also need to be translated and it should be the responsibility of those providing the functionality, not the developer of the application. 2009/8/26 Sven Fuchs svenfu...@artweb-design.de What does everybody

[Rails-core] Re: I18n support for plugins/gems?

2009-08-26 Thread Sven Fuchs
Sure :) The question remains ... should an Engine dev be expected add something like this to their code? # init.rb I18n.load_path += Dir['/path/to/translations/**/*.{yml,rb}'] Or should Rails do that automagically for everybody's plugins/gems? On 26.08.2009, at 13:28, Ryan Bigg (Radar)

[Rails-core] Re: I18n support for plugins/gems?

2009-08-26 Thread Francesc Esplugas
On Aug 26, 1:38 pm, Sven Fuchs svenfu...@artweb-design.de wrote: The question remains ... should an Engine dev be expected add   something like this to their code? # init.rb I18n.load_path += Dir['/path/to/translations/**/*.{yml,rb}'] In my opinion yes. Why not load automagically the

[Rails-core] Re: I18n support for plugins/gems?

2009-08-26 Thread Luca Guidi
Agree with Francesc -- lucaguidi.com twitter.com/jodosha --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Core group. To post to this group, send email to rubyonrails-core@googlegroups.com To

[Rails-core] Re: I18n support for plugins/gems?

2009-08-26 Thread Mateo Murphy
On 26-Aug-09, at 7:23 AM, Sven Fuchs wrote: What does everybody think about this ticket? https://rails.lighthouseapp.com/projects/8994/tickets/2325-i18n-support-for-engines Basically the question is: Should Rails as a framework automatically try to load any translations supplied by

[Rails-core] Re: I18n support for plugins/gems?

2009-08-26 Thread Ryan Bigg (Radar)
2009/8/26 Sven Fuchs svenfu...@artweb-design.de Sure :) The question remains ... should an Engine dev be expected add something like this to their code? # init.rb I18n.load_path += Dir['/path/to/translations/**/*.{yml,rb}'] Or should Rails do that automagically for everybody's