Remove duplicated i18n strings

This commit is contained in:
schroda
2024-07-01 19:51:27 +02:00
parent ea102eceb6
commit 149bc8ad0d
12 changed files with 16 additions and 19 deletions

View File

@@ -113,7 +113,7 @@ export const ChapterCard: React.FC<IProps> = (props: IProps) => {
{chapter.isBookmarked && <BookmarkIcon color="primary" />}
<TypographyMaxLines variant="h5" component="h2">
{showChapterNumber
? `${t('chapter.title')} ${chapter.chapterNumber}`
? `${t('chapter.title_one')} ${chapter.chapterNumber}`
: chapter.name}
</TypographyMaxLines>
</Stack>