Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Datatypesettings infinite overlay view: Add fallback texts and map label to input id #11516

Merged
merged 2 commits into from
Oct 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,22 @@

<div class="control-group umb-control-group" ng-if="vm.dataType.id !== 0">
<umb-icon icon="icon-alert" class="red"></umb-icon>
<strong class="red"><localize key="contentTypeEditor_allDocumentTypes"></localize></strong> using this editor will get updated with the new settings.
<strong class="red"><localize key="contentTypeEditor_allDocumentTypes">All Document Types</localize></strong> <localize key="usingEditor">using this editor will get updated with the new settings.</localize>
</div>

<div class="control-group umb-control-group">
<div class="umb-el-wrap">
<label class="control-label" for="dataTypeName">
<localize key="name"></localize>
<localize key="general_name">Name</localize>
</label>
<div class="controls">
<input type="text" ng-model="vm.dataType.name" class="umb-property-editor" umb-auto-focus focus-on-filled="true" required />
<input type="text" id="dataTypeName" ng-model="vm.dataType.name" class="umb-property-editor" umb-auto-focus focus-on-filled="true" required />
</div>
</div>
</div>

<div ng-if="vm.dataType.preValues.length > 0">
<h5><localize key="contentTypeEditor_configuration"></localize></h5>
<h5><localize key="contentTypeEditor_configuration">Configuration</localize></h5>

<umb-property property="preValue" ng-repeat="preValue in vm.dataType.preValues">
<umb-property-editor model="preValue" is-pre-value="true"></umb-property-editor>
Expand Down
1 change: 1 addition & 0 deletions src/Umbraco.Web.UI/Umbraco/config/lang/en.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1719,6 +1719,7 @@ To manage your website, simply open the Umbraco backoffice and start adding cont
<key alias="displaySettingsLabelOnTop">Label above (full-width)</key>
<key alias="removeChildNode">You are removing the child node</key>
<key alias="removeChildNodeWarning">Removing a child node will limit the editors options to create different content types beneath a node.</key>
<key alias="usingEditor">using this editor will get updated with the new settings.</key>
</area>
<area alias="languages">
<key alias="addLanguage">Add language</key>
Expand Down
1 change: 1 addition & 0 deletions src/Umbraco.Web.UI/Umbraco/config/lang/en_us.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1750,6 +1750,7 @@ To manage your website, simply open the Umbraco backoffice and start adding cont
<key alias="tabDirectPropertiesDropZone">Drag properties here to place directly on the tab</key>
<key alias="removeChildNode">You are removing the child node</key>
<key alias="removeChildNodeWarning">Removing a child node will limit the editors options to create different content types beneath a node.</key>
<key alias="usingEditor">using this editor will get updated with the new settings.</key>
</area>
<area alias="languages">
<key alias="addLanguage">Add language</key>
Expand Down