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

Groups builder view: Add missing fallback texts #11501

Merged
merged 1 commit into from
Oct 26, 2021
Merged
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 @@ -55,7 +55,7 @@
ng-if="sortingMode"
class="umb-group-builder__convert-dropzone"
umb-droppable="droppableOptionsConvert">
<localize key="contentTypeEditor_convertToTab" />
<localize key="contentTypeEditor_convertToTab">Convert to tab</localize>
</div>

<umb-button
Expand Down Expand Up @@ -91,7 +91,7 @@
<a ng-if="!sortingMode" hotkey="alt+shift+g" ng-click="addGroupToActiveTab()"></a>

<div ng-if="sortingMode && model.groups.length === 0" class="umb-group-builder__no-data-text">
<localize key="contentTypeEditor_noGroups"></localize>
<localize key="contentTypeEditor_noGroups">You have not added any groups</localize>
</div>

<!-- Properties added directly to a tab -->
Expand All @@ -118,7 +118,7 @@
data-element="property-add"
class="umb-group-builder__group-add-property"
ng-click="addNewProperty(tab)">
<localize key="contentTypeEditor_addProperty"></localize>
<localize key="contentTypeEditor_addProperty">Add property</localize>
</button>

<umb-empty-state
Expand Down Expand Up @@ -172,7 +172,7 @@
data-element="property-add"
class="umb-group-builder__group-add-property"
ng-click="addNewProperty(group)">
<localize key="contentTypeEditor_addProperty"></localize>
<localize key="contentTypeEditor_addProperty">Add property</localize>
</button>
</umb-content-type-group>
</div>
Expand All @@ -183,6 +183,6 @@
class="umb-group-builder__group -placeholder"
ng-click="addGroupToActiveTab()"
data-element="group-add">
<localize key="contentTypeEditor_addGroup"></localize>
<localize key="contentTypeEditor_addGroup">Add group</localize>
</button>
</div>