Skip to content

Commit

Permalink
Add missing fallback values
Browse files Browse the repository at this point in the history
  • Loading branch information
BatJan authored and nathanwoulfe committed Oct 26, 2021
1 parent cf40b90 commit 80c9c09
Showing 1 changed file with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<div class="sub-view-columns" ng-hide="model.isElement">

<div class="sub-view-column-left">
<h5><localize key="contentTypeEditor_allowAsRootHeading"></localize></h5>
<small><localize key="contentTypeEditor_allowAsRootDescription"></localize></small>
<h5><localize key="contentTypeEditor_allowAsRootHeading">Allow as root</localize></h5>
<small><localize key="contentTypeEditor_allowAsRootDescription">Allow editors to create content of this type in the root of the content tree.</localize></small>
</div>
<div class="sub-view-column-right">
<umb-toggle data-element="permissions-allow-as-root"
Expand All @@ -22,8 +22,8 @@ <h5><localize key="contentTypeEditor_allowAsRootHeading"></localize></h5>
<div class="sub-view-columns" ng-hide="model.isElement">

<div class="sub-view-column-left">
<h5><localize key="contentTypeEditor_childNodesHeading"></localize></h5>
<small><localize key="contentTypeEditor_childNodesDescription"></localize></small>
<h5><localize key="contentTypeEditor_childNodesHeading">Allowed child node types</localize></h5>
<small><localize key="contentTypeEditor_childNodesDescription">Allow content of the specified types to be created underneath content of this type.</localize></small>
</div>

<div class="sub-view-column-right">
Expand All @@ -43,8 +43,8 @@ <h5><localize key="contentTypeEditor_childNodesHeading"></localize></h5>
<div class="sub-view-columns">

<div class="sub-view-column-left">
<h5><localize key="contentTypeEditor_cultureVariantHeading"></localize></h5>
<small><localize key="contentTypeEditor_cultureVariantDescription"></localize></small>
<h5><localize key="contentTypeEditor_cultureVariantHeading">Allow vary by culture</localize></h5>
<small><localize key="contentTypeEditor_cultureVariantDescription">Allow editors to create content of different languages.</localize></small>
</div>

<div class="sub-view-column-right">
Expand All @@ -61,8 +61,8 @@ <h5><localize key="contentTypeEditor_cultureVariantHeading"></localize></h5>
<div class="sub-view-columns" ng-if="vm.showAllowSegmentationOption">

<div class="sub-view-column-left">
<h5><localize key="contentTypeEditor_segmentVariantHeading"></localize></h5>
<small><localize key="contentTypeEditor_segmentVariantDescription"></localize></small>
<h5><localize key="contentTypeEditor_segmentVariantHeading">Allow segmentation</localize></h5>
<small><localize key="contentTypeEditor_segmentVariantDescription">Allow editors to create segments of this content.</localize></small>
</div>

<div class="sub-view-column-right">
Expand All @@ -77,9 +77,9 @@ <h5><localize key="contentTypeEditor_segmentVariantHeading"></localize></h5>
<div class="sub-view-columns">

<div class="sub-view-column-left">
<h5><localize key="contentTypeEditor_elementHeading"></localize></h5>
<small><localize key="contentTypeEditor_elementDescription"></localize></small>
<small ng-if="!vm.canToggleIsElement"><br/><localize key="contentTypeEditor_elementCannotToggle"></localize></small>
<h5><localize key="contentTypeEditor_elementHeading">Is an Element Type</localize></h5>
<small><localize key="contentTypeEditor_elementDescription">An Element Type is meant to be used for instance in Nested Content, and not in the tree.</localize></small>
<small ng-if="!vm.canToggleIsElement"><br/><localize key="contentTypeEditor_elementCannotToggle">A Document Type cannot be changed to an Element Type once it has been used to create one or more content items.</localize></small>
</div>

<div class="sub-view-column-right">
Expand Down

0 comments on commit 80c9c09

Please sign in to comment.