/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import {translate} from '@docusaurus/Translate'; import {usePluralForm} from '../utils/usePluralForm'; export function useDocCardDescriptionCategoryItemsPlural(): ( count: number, ) => string { const {selectMessage} = usePluralForm(); return (count: number) => selectMessage( count, translate( { message: '1 item|{count} items', id: 'theme.docs.DocCard.categoryDescription.plurals', description: 'The default description for a category card in the generated index about how many items this category includes', }, {count}, ), ); }