mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-19 05:59:34 +02:00
feat: text-statistic (readability improvements)
This commit is contained in:
@@ -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>
|
||||||
)
|
)
|
||||||
|
Reference in New Issue
Block a user