Skip to content

Commit

Permalink
fix for untranslated userRecord and userRecords labels in user admin …
Browse files Browse the repository at this point in the history
…page
  • Loading branch information
archaeogeek committed Sep 21, 2023
1 parent 0a95eb4 commit 5afe6c7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -493,9 +493,9 @@ <h3 data-translate="">UserAdmin</h3>
<i class="fa fa-search" />&nbsp;
<ng-pluralize
count="searchResults.count"
when="{'0': ('noRecordFound' | translate),
'one': '1 ' + ('userRecord' | translate) + ' {{userSelected.name}} {{userSelected.surname}}',
'other': '{} ' + ('userRecords' | translate) + ' {{userSelected.name}} {{userSelected.surname}}'}"
when="{'0': {{'noRecordFound' | translate}},
'one': '1 ' + {{'userRecord' | translate}} + ' {{userSelected.name}} {{userSelected.surname}}',
'other': '{} ' + {{'userRecords' | translate}} + ' {{userSelected.name}} {{userSelected.surname}}'}"
></ng-pluralize>
</div>
<div class="panel-body">
Expand Down

0 comments on commit 5afe6c7

Please sign in to comment.