mirror of
https://github.com/ansible/awx.git
synced 2024-11-02 09:51:09 +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
|
<div
|
||||||
class="row"
|
class="row"
|
||||||
ng-show="${itm}.length === 0 && !(searchTags | isEmpty)">
|
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 += i18n._('No records matched your search.');
|
||||||
html += `</div>
|
html += `</div>
|
||||||
</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.
|
// Message for when a search returns no results. This should only get shown after a search is executed with no results.
|
||||||
html +=`
|
html +=`
|
||||||
<div class="row" ng-show="${list.name}.length === 0 && !(searchTags | isEmpty)">
|
<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>
|
</div>
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user