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 2094101 commit 57634d5
Showing 1 changed file with 4 additions and 4 deletions.
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_confirmListViewPublish"></localize></p>
<p><localize key="prompt_confirmListViewPublish">Publishing will make the selected items visible on 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_languagesToPublish"></localize></p>
<p><localize key="content_languagesToPublish">What languages would you like to publish?</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 @@ -34,7 +34,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

0 comments on commit 57634d5

Please sign in to comment.