↑そういうことで備忘録。 rails proj ; cd proj # railsでプロジェクト作成。mysql ; create database proj # MySQLサーバにデータベースを登録。 ./script/plugin install svn:/rubyforge.org/var/svn/gettextscaffold/gettext_scaffold # プラグインインストールrake gettext:setup # GetTextの準備./config/enviroment.rbの最後に次の2行をいれる。require 'gettext/rails' GetText.locale ='ja' さらに、./app/controller/application.rbに次の1行をいれる。init_gettext 'プロジェクト名' ./script/generate mode