diff --git a/client/i18n/locales/english/translations.json b/client/i18n/locales/english/translations.json index cc0649b13ac..15e80e1f481 100644 --- a/client/i18n/locales/english/translations.json +++ b/client/i18n/locales/english/translations.json @@ -916,8 +916,8 @@ "search": { "label": "Search", "placeholder": { - "default": "Search our news articles, tutorials, and books", - "numbered": "Search {{ roundedTotalRecords }}+ news articles, tutorials, and books" + "default": "Search our books and courses", + "numbered": "Search {{ roundedTotalRecords }}+ of our books and courses" }, "see-results": "See all results for {{searchQuery}}", "try": "Looking for something? Try the search bar on this page.", diff --git a/client/tools/generate-search-placeholder.test.ts b/client/tools/generate-search-placeholder.test.ts index bd4e3298009..f1f3b9e61c3 100644 --- a/client/tools/generate-search-placeholder.test.ts +++ b/client/tools/generate-search-placeholder.test.ts @@ -144,7 +144,7 @@ describe('Search bar placeholder tests:', () => { if (clientLocale === 'english') { describe('Placeholder strings', () => { test('When the total number of hits is less than 100 the expected placeholder is generated', async () => { - const expected = 'Search our news articles, tutorials, and books'; + const expected = 'Search our books and courses'; const placeholderText = await generateSearchPlaceholder({ mockRecordsNum: 99, locale: 'english' @@ -158,7 +158,7 @@ describe('Search bar placeholder tests:', () => { mockRecordsNum: 100, locale: 'english' }); - const expected = 'Search 100+ news articles, tutorials, and books'; + const expected = 'Search 100+ of our books and courses'; expect(placeholderText).toEqual(expected); }); @@ -168,7 +168,7 @@ describe('Search bar placeholder tests:', () => { mockRecordsNum: 11000, locale: 'english' }); - const expected = 'Search 11,000+ news articles, tutorials, and books'; + const expected = 'Search 11,000+ of our books and courses'; expect(placeholderText).toEqual(expected); });