From afe998c0200ae87873fb015e151ecd925f544665 Mon Sep 17 00:00:00 2001 From: Yaohan Chen Date: Sun, 22 Jun 2008 21:07:32 -0400 Subject: make gettext tasks output files being regenerated and sources --- Rakefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Rakefile') diff --git a/Rakefile b/Rakefile index dd32743d..5011b66e 100644 --- a/Rakefile +++ b/Rakefile @@ -40,6 +40,7 @@ NON_PLUGIN_FILES = FileList["{lib,bin,data}/**/*.{rb,rhtml}"] - PLUGIN_FILES rgettext_proc = proc do |t| require 'gettext/utils' plugin_files, pot_file = t.prerequisites, t.name + puts "#{plugin_files.join(', ')} => #{pot_file}" GetText.rgettext(plugin_files, pot_file) end @@ -60,6 +61,7 @@ ENV['MSGMERGE_PATH'] = ENV['MSGMERGE_WRAPPER_PATH'] || 'ruby msgmerge-wrapper.rb rule(%r'^po/.+/.+\.po$' => proc {|fn| fn.pathmap '%{^po/.+/,po/}X.pot'}) do |t| require 'gettext/utils' po_file, pot_file = t.name, t.source + puts "#{pot_file} => #{po_file}" GetText.msgmerge po_file, pot_file, 'rbot' end @@ -70,6 +72,7 @@ rule(%r'^data/locale/.+/LC_MESSAGES/.+\.mo$' => proc {|fn| fn.pathmap('%d') ] }) do |t| po_file, mo_file = t.source, t.name + puts "#{po_file} => #{mo_file}" require 'gettext/utils' GetText.rmsgfmt po_file, mo_file end -- cgit v1.2.3