fix: misc

This commit is contained in:
Ibrahima G. Coulibaly
2025-07-13 11:25:05 +01:00
parent 035eb2edd1
commit 21c4f44d4e
121 changed files with 987 additions and 837 deletions

View File

@@ -44,19 +44,19 @@ export default function Rot13({ title }: ToolComponentProps) {
title={title}
inputComponent={
<ToolTextInput
title={t('string.rot13.inputTitle')}
title={t('string:rot13.inputTitle')}
value={input}
onChange={setInput}
/>
}
resultComponent={
<ToolTextResult title={t('string.rot13.resultTitle')} value={result} />
<ToolTextResult title={t('string:rot13.resultTitle')} value={result} />
}
initialValues={initialValues}
getGroups={null}
toolInfo={{
title: t('string.rot13.toolInfo.title'),
description: t('string.rot13.toolInfo.description')
title: t('string:rot13.toolInfo.title'),
description: t('string:rot13.toolInfo.description')
}}
exampleCards={exampleCards}
input={input}