protected function getTranslationModels($lng, $id)
 {
     Translate::setTableName($lng);
     if (($model = Translate::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException("cant find {$lng} #{$id}");
     }
 }