我正在尝试翻译https://github.com/lifo/docrails/blob/master/activerecord/lib/active_record/associations.rb
在我的控制器文件中,我有:
@book = Book.find(params[:id])
begin
@book.destroy
rescue ActiveRecord::DeleteRestrictionError => e
flash[:error]= e.message # <<< Translate this message ?
end
Run Code Online (Sandbox Code Playgroud)
这是我使用的翻译文件:https : //github.com/svenfuchs/rails-i18n/blob/master/rails/locale/th.rb
我该如何编写代码translate "#{e.message}"?