# File app/controllers/translation_controller.rb, line 91
  def get_translation
    begin
      @trans = Translation.find(params[:id])
    rescue ActiveRecord::RecordNotFound
      flash[:error] << _('Invalid translation specified')
      redirect_to :action => :stat_by_lang
      return false
    end
  end