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

Listview Unpublish view: Add missing fallback texts #11475

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 @@ -2,7 +2,7 @@

<!-- Single language -->
<div ng-if="!vm.languages">
<p><localize key="prompt_confirmListViewUnpublish"></localize></p>
<p><localize key="prompt_confirmListViewUnpublish">Unpublishing will remove the selected items and all their descendants from the site.</localize></p>
</div>

<div ng-if="vm.loading" style="min-height: 50px; position: relative;">
Expand All @@ -13,13 +13,13 @@
<div ng-if="vm.languages.length > 1 && !vm.loading">

<div class="mb3">
<p><localize key="content_languagesToUnpublish"></localize></p>
<p><localize key="content_languagesToUnpublish">Select the languages to unpublish. Unpublishing a mandatory language will unpublish all languages.</localize></p>
</div>

<div class="umb-list umb-list--condensed">

<div class="bold mb1">
<localize key="treeHeaders_languages"></localize>
<localize key="treeHeaders_languages">Languages</localize>
</div>

<div class="umb-list-item" ng-repeat="language in vm.languages track by language.id">
Expand All @@ -35,7 +35,7 @@

<div>
<span class="db umb-list-item__description umb-list-item__description--checkbox">
<span ng-if="language.isMandatory"><localize key="languages_mandatoryLanguage"></localize></span>
<span ng-if="language.isMandatory"><localize key="languages_mandatoryLanguage">Mandatory language</localize></span>
</span>
</div>

Expand Down