Commit 44c5e53b050e463c148f81da1512560048636cb0
1 parent
1aef97f1
Exists in
master
and in
22 other branches
gettext.rake: describe plugin updatepo tasks
This way they will show up in `rake -T` output
Showing
1 changed file
with
2 additions
and
0 deletions
Show diff stats
lib/tasks/gettext.rake
... | ... | @@ -79,6 +79,8 @@ end |
79 | 79 | Dir.glob('plugins/*').each do |plugindir| |
80 | 80 | plugin = File.basename(plugindir) |
81 | 81 | task :updatepo => "updatepo:plugin:#{plugin}" |
82 | + | |
83 | + desc "Extract strings from #{plugin} plugin" | |
82 | 84 | task "updatepo:plugin:#{plugin}" do |
83 | 85 | files = Dir.glob("#{plugindir}/**/*.{rb,html.erb}") |
84 | 86 | po_root = File.join(plugindir, 'po') | ... | ... |