# File app/controllers/translation_controller.rb, line 81
  def get_language
    begin
      @language = Language.find(params[:language_id])
    rescue ActiveRecord::RecordNotFound
      flash[:error] << _('Invalid language specified')
      redirect_to :action => :stat_by_lang
      return false
    end
  end