public ActionResult EmailTranslationDetail(long id)
        {
            ViewBag.Languages      = BaseService.GetBaseDictionaries(ValueTypeEnum.Language);
            ViewBag.CurrentManager = CurrentManager;
            ViewBag.Intentions     = BaseService.GetIntentions(CurrentManager.ParentId != 0 ? CurrentManager.ParentId : CurrentManager.Id);
            EmailTranslation      emailTranslation  = TranslationService.GeEmailTranslationById(id);
            PageTranslationFollow translationFollow =
                new PageTranslationFollow(emailTranslation,
                                          TranslationService.GetEmailFollows(id));

            TranslationService.ChangeEmailTranslationStatus(emailTranslation, CurrentManager);
            return(View(translationFollow));
        }