Files
omni-tools/src/pages/tools/string/text-replacer/meta.ts
Ibrahima G. Coulibaly 56e0f1696c chore: translate userTypes
2025-07-22 19:47:09 +01:00

19 lines
486 B
TypeScript

import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('string', {
i18n: {
name: 'string:textReplacer.title',
description: 'string:textReplacer.description',
shortDescription: 'string:textReplacer.shortDescription',
userTypes: ['generalUsers', 'developers']
},
path: 'replacer',
icon: 'material-symbols-light:find-replace',
keywords: ['text', 'replace'],
component: lazy(() => import('./index'))
});