summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Rakefile b/Rakefile
index 5011b66e..6b321fdc 100644
--- a/Rakefile
+++ b/Rakefile
@@ -39,9 +39,9 @@ PLUGIN_FILES = FileList['data/rbot/plugins/**/*.rb']
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)
+ source_files, pot_file = t.prerequisites, t.name
+ puts "#{source_files.join(', ')} => #{pot_file}"
+ GetText.rgettext(source_files, pot_file)
end
# generate pot file for non-plugin files