2025-03-06 10:34:44 +03:00
|
|
|
import { defineTool } from '@tools/defineTool';
|
|
|
|
|
import { lazy } from 'react';
|
|
|
|
|
|
|
|
|
|
export const tool = defineTool('string', {
|
2025-07-14 13:55:01 +01:00
|
|
|
i18n: {
|
|
|
|
|
name: 'string:textReplacer.title',
|
|
|
|
|
description: 'string:textReplacer.description',
|
|
|
|
|
shortDescription: 'string:textReplacer.shortDescription'
|
|
|
|
|
},
|
2025-07-14 18:04:30 +01:00
|
|
|
|
2025-03-06 10:34:44 +03:00
|
|
|
path: 'replacer',
|
2025-07-14 18:04:30 +01:00
|
|
|
|
2025-03-06 10:34:44 +03:00
|
|
|
icon: 'material-symbols-light:find-replace',
|
2025-07-14 18:04:30 +01:00
|
|
|
|
2025-03-06 10:34:44 +03:00
|
|
|
keywords: ['text', 'replace'],
|
2025-07-12 11:02:15 -07:00
|
|
|
userTypes: ['General Users', 'Students', 'Developers'],
|
2025-03-06 10:34:44 +03:00
|
|
|
component: lazy(() => import('./index'))
|
|
|
|
|
});
|