feat: text-statistic (readability improvements)

This commit is contained in:
Chesterkxng
2025-05-27 17:12:05 +02:00
parent d7d5f81d57
commit b5a67499d5

View File

@@ -257,20 +257,20 @@ export default function Truncate({
<CheckboxWithDesc <CheckboxWithDesc
checked={values.wordCount} checked={values.wordCount}
onChange={(value) => updateField('wordCount', value)} onChange={(value) => updateField('wordCount', value)}
title="Words Frequency" title="Word Frequency Analysis"
description="Add the word frequency statistics" description="Count how often each word appears in the text"
/> />
<CheckboxWithDesc <CheckboxWithDesc
checked={values.characterCount} checked={values.characterCount}
onChange={(value) => updateField('characterCount', value)} onChange={(value) => updateField('characterCount', value)}
title="Characters Frequency" title="Character Frequency Analysis"
description="Add the character frequency statistics" description="Count how often each character appears in the text"
/> />
<CheckboxWithDesc <CheckboxWithDesc
checked={values.emptyLines} checked={values.emptyLines}
onChange={(value) => updateField('emptyLines', value)} onChange={(value) => updateField('emptyLines', value)}
title="Empty Lines" title="Include Empty Lines"
description="Include empty lines in the count" description="Include blank lines when counting lines"
/> />
</Box> </Box>
) )