# File lib/cgikit/project/template.rb, line 188
    def write_script
      if @project.japanese? then
        str = script_template_ja
      else
        str = script_template_en
      end
      File.open(script_path, 'w') do |f| f.write(str) end
    end