diff --git a/src/Umbraco.Web.UI/umbraco/config/lang/he.xml b/src/Umbraco.Web.UI/umbraco/config/lang/he.xml
index 066804d191..59774d1a33 100644
--- a/src/Umbraco.Web.UI/umbraco/config/lang/he.xml
+++ b/src/Umbraco.Web.UI/umbraco/config/lang/he.xml
@@ -35,6 +35,12 @@
שלח לפירסום
תרגם
עדכן
+ Delete
+ Execute
+ Schedule
+ Import Data
+ Create child definition
+ Scheduled task log
הוסף דומיין חדש
diff --git a/src/Umbraco.Web/umbraco.presentation/umbraco/controls/ContentTypeControlNew.ascx.cs b/src/Umbraco.Web/umbraco.presentation/umbraco/controls/ContentTypeControlNew.ascx.cs
index a75bc7848f..8b9bc185d8 100644
--- a/src/Umbraco.Web/umbraco.presentation/umbraco/controls/ContentTypeControlNew.ascx.cs
+++ b/src/Umbraco.Web/umbraco.presentation/umbraco/controls/ContentTypeControlNew.ascx.cs
@@ -120,6 +120,11 @@ namespace umbraco.controls
PanePropertiesInherited.Visible = true;
}
+ if (string.IsNullOrEmpty(_contentType.IconUrl))
+ lt_icon.Text = "icon-document";
+ else
+ lt_icon.Text = _contentType.IconUrl.TrimStart('.');
+
checkTxtAliasJs.Text = string.Format("checkAlias('{0}');", txtAlias.ClientID);
}
@@ -264,6 +269,9 @@ namespace umbraco.controls
protected void save_click(object sender, EventArgs e)
{
+ //sync state betweet lt and hidden value
+ lt_icon.Text = tb_icon.Value;
+
var state = new SaveAsyncState(
UmbracoContext,
new SaveClickEventArgs("Saved")