foodsoft/lib/tasks/gettext.rake
2009-01-06 11:49:19 +01:00

50 lines
No EOL
1.2 KiB
Ruby

# these are the tasks to updates localization-data
require 'gettext/utils'
# Reopen to make RubyGettext's ERB parser parse .html.erb files
module GetText
module ErbParser
@config = {
:extnames => ['.rhtml', '.erb']
}
end
end
begin
require "#{RAILS_ROOT}/vendor/plugins/haml/lib/haml"
rescue LoadError
require 'haml' # From gem
end
module HamlParser
module_function
def target?(file)
File.extname(file) == '.haml'
end
def parse(file, ary = [])
haml = Haml::Engine.new(IO.readlines(file).join)
code = haml.precompiled.split(/$/)
RubyParser.parse_lines(file, code, ary)
end
end
GetText::RGetText.add_parser(HamlParser)
namespace :gettext do
desc 'Create mo-files for L10n'
task :makemo do
GetText.create_mofiles(true, 'po', 'locale')
end
desc 'Update pot/po files to match new version'
task :updatepo do
TEXT_DOMAIN = 'foodsoft'
APP_VERSION = '2.0'
files = Dir.glob('{app,vendor/plugins/mod_**}/**/*.rb')
files.concat(Dir.glob('{app,vendor/plugins/mod_**}/**/*.rhtml'))
files.concat(Dir.glob('{app,vendor/plugins/mod_**}/**/*.erb'))
files.concat(Dir.glob('{app,vendor/plugins/mod_**}/**/*.haml'))
GetText.update_pofiles(TEXT_DOMAIN, files, APP_VERSION)
end
end