public async Task <ActionResult> Edit(string name) { if (string.IsNullOrEmpty(name)) { return(HttpNotFound()); } ViewBag.Languages = await _languageRepository.GetAll(); return(View(await _translationRepository.GetByName(name))); }