Skip to content

Commit

Permalink
Remove template from warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
ronaldbarendse authored and Zeegaan committed Jul 20, 2022
1 parent 234552b commit fabb49f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/Umbraco.Core/EmbeddedResources/Lang/en.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1630,7 +1630,7 @@ To manage your website, simply open the Umbraco backoffice and start adding cont
<key alias="tabRules">Editor</key>
</area>
<area alias="template">
<key alias="runtimeModeProduction"><![CDATA[Template content is not editable when using runtime mode <code>Production</code>.]]></key>
<key alias="runtimeModeProduction"><![CDATA[Content is not editable when using runtime mode <code>Production</code>.]]></key>
<key alias="deleteByIdFailed">Failed to delete template with ID %0%</key>
<key alias="edittemplate">Edit template</key>
<key alias="insertSections">Sections</key>
Expand Down
2 changes: 1 addition & 1 deletion src/Umbraco.Core/EmbeddedResources/Lang/en_us.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1683,7 +1683,7 @@ To manage your website, simply open the Umbraco backoffice and start adding cont
<key alias="tabRules">Rich Text Editor</key>
</area>
<area alias="template">
<key alias="runtimeModeProduction"><![CDATA[Template content is not editable when using runtime mode <code>Production</code>.]]></key>
<key alias="runtimeModeProduction"><![CDATA[Content is not editable when using runtime mode <code>Production</code>.]]></key>
<key alias="deleteByIdFailed">Failed to delete template with ID %0%</key>
<key alias="edittemplate">Edit template</key>
<key alias="insertSections">Sections</key>
Expand Down
2 changes: 1 addition & 1 deletion src/Umbraco.Core/EmbeddedResources/Lang/nl.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1444,7 +1444,7 @@ Echter, Runway biedt een gemakkelijke basis om je snel op weg te helpen. Als je
<key alias="tabRules">Rich Text Editor</key>
</area>
<area alias="template">
<key alias="runtimeModeProduction"><![CDATA[Sjablooninhoud kan niet worden bewerkt in de runtime-modus <code>Production</code>.]]></key>
<key alias="runtimeModeProduction"><![CDATA[Inhoud kan niet worden bewerkt in de runtime-modus <code>Production</code>.]]></key>
<key alias="deleteByIdFailed">Kan sjabloon met ID %0% niet verwijderen</key>
<key alias="edittemplate">Sjabloon aanpassen</key>
<key alias="insertSections">Secties</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<umb-box>
<umb-box-content>
<div class="umb-alert umb-alert--info mb3" ng-if="vm.runtimeModeProduction">
<localize key="template_runtimeModeProduction">Template content is not editable when using runtime mode <code>Production</code>.</localize>
<localize key="template_runtimeModeProduction">Content is not editable when using runtime mode <code>Production</code>.</localize>
</div>

<div class="flex mb3" ng-if="!vm.runtimeModeProduction">
Expand Down
2 changes: 1 addition & 1 deletion src/Umbraco.Web.UI.Client/src/views/partialViews/edit.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<umb-box>
<umb-box-content>
<div class="umb-alert umb-alert--info mb3" ng-if="vm.runtimeModeProduction">
<localize key="template_runtimeModeProduction">Template content is not editable when using runtime mode <code>Production</code>.</localize>
<localize key="template_runtimeModeProduction">Content is not editable when using runtime mode <code>Production</code>.</localize>
</div>

<div class="flex mb3" ng-if="!vm.runtimeModeProduction">
Expand Down
2 changes: 1 addition & 1 deletion src/Umbraco.Web.UI.Client/src/views/templates/edit.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

<umb-box-content>
<div class="umb-alert umb-alert--info mb3" ng-if="vm.runtimeModeProduction">
<localize key="template_runtimeModeProduction">Template content is not editable when using runtime mode <code>Production</code>.</localize>
<localize key="template_runtimeModeProduction">Content is not editable when using runtime mode <code>Production</code>.</localize>
</div>

<div class="flex mb3" ng-if="!vm.runtimeModeProduction">
Expand Down

0 comments on commit fabb49f

Please sign in to comment.