diff --git a/contribs/gmf/src/search/component.js b/contribs/gmf/src/search/component.js index f9222f435134..21497ef246ef 100644 --- a/contribs/gmf/src/search/component.js +++ b/contribs/gmf/src/search/component.js @@ -1053,7 +1053,9 @@ class SearchController { const menu = this.element_.find('.twitter-typeahead .tt-menu'); const message = menu.children('.gmf-search-no-results'); if (message.length == 0) { - const div = $('
No result found
'); + const gettextCatalog = this.gettextCatalog_; + const innerHTML = gettextCatalog.getString('No result found'); + const div = $(`
${innerHTML}
`); menu.append(div); } if (empty) {