Commit f71c0ac4ea45b2cab958fdd47367e977700a8f62

Authored by Antonio Terceiro
1 parent cbb70069

Fixing bug in translation extraction task

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
lib/tasks/gettext.rake
... ... @@ -33,7 +33,7 @@ task :updatepo do
33 33  
34 34 sources =
35 35 Dir.glob("{app,lib}/**/*.{rb,rhtml,erb}") +
36   - Dir.glob('config/initializers/*.rb')
  36 + Dir.glob('config/initializers/*.rb') +
37 37 Dir.glob('public/*.html.erb') +
38 38 Dir.glob('public/designs/themes/{base,noosfero}/*.{rhtml,html.erb}')
39 39 GetText.update_pofiles(Noosfero::PROJECT, sources, "#{Noosfero::PROJECT} #{Noosfero::VERSION}")
... ...