# File app/controllers/translation_controller.rb, line 63
  def update
    redirect_to :action => 'list'
    return true unless request.post?
    @trans.update_attributes(params[:translation])
    flash[:notice] << _('Translation successfully registered')
  end