mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-05 16:34:57 +05:30
feat: text-statistic (readability improvements)
This commit is contained in:
parent
d7d5f81d57
commit
b5a67499d5
1 changed files with 6 additions and 6 deletions
|
|
@ -257,20 +257,20 @@ export default function Truncate({
|
|||
<CheckboxWithDesc
|
||||
checked={values.wordCount}
|
||||
onChange={(value) => updateField('wordCount', value)}
|
||||
title="Words Frequency"
|
||||
description="Add the word frequency statistics"
|
||||
title="Word Frequency Analysis"
|
||||
description="Count how often each word appears in the text"
|
||||
/>
|
||||
<CheckboxWithDesc
|
||||
checked={values.characterCount}
|
||||
onChange={(value) => updateField('characterCount', value)}
|
||||
title="Characters Frequency"
|
||||
description="Add the character frequency statistics"
|
||||
title="Character Frequency Analysis"
|
||||
description="Count how often each character appears in the text"
|
||||
/>
|
||||
<CheckboxWithDesc
|
||||
checked={values.emptyLines}
|
||||
onChange={(value) => updateField('emptyLines', value)}
|
||||
title="Empty Lines"
|
||||
description="Include empty lines in the count"
|
||||
title="Include Empty Lines"
|
||||
description="Include blank lines when counting lines"
|
||||
/>
|
||||
</Box>
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue