protected void MakeTranslatable_Click(object sender, EventArgs e)
 {
     var t = new TabController();
     var defaultLocale = LocaleController.Instance.GetDefaultLocale(PortalId);
     t.LocalizeTab(_tab, defaultLocale);
     t.AddMissingLanguages(PortalId, _tab.TabID);
     t.ClearCache(PortalId);
     Response.Redirect(Request.RawUrl, false);
 }