mirror of
https://github.com/ansible/awx.git
synced 2024-11-02 01:21:21 +03:00
adding translation tag for "No records matched your search"
This commit is contained in:
parent
d0cb11acb3
commit
557780bf08
@ -1875,7 +1875,7 @@ angular.module('FormGenerator', [GeneratorHelpers.name, 'Utilities', listGenerat
|
||||
<div
|
||||
class="row"
|
||||
ng-show="${itm}.length === 0 && !(searchTags | isEmpty)">
|
||||
<div class="col-lg-12 List-searchNoResults">`;
|
||||
<div class="col-lg-12 List-searchNoResults" translate>`;
|
||||
html += i18n._('No records matched your search.');
|
||||
html += `</div>
|
||||
</div>
|
||||
|
@ -237,7 +237,7 @@ export default ['$compile', 'Attr', 'Icon',
|
||||
// Message for when a search returns no results. This should only get shown after a search is executed with no results.
|
||||
html +=`
|
||||
<div class="row" ng-show="${list.name}.length === 0 && !(searchTags | isEmpty)">
|
||||
<div class="col-lg-12 List-searchNoResults">No records matched your search.</div>
|
||||
<div class="col-lg-12 List-searchNoResults" translate>No records matched your search.</div>
|
||||
</div>
|
||||
`;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user