2025-07-18 17:23:52 +02:00
|
|
|
import { defineTool } from '@tools/defineTool';
|
|
|
|
|
import { lazy } from 'react';
|
|
|
|
|
|
|
|
|
|
export const tool = defineTool('string', {
|
|
|
|
|
path: 'url-encode-string',
|
|
|
|
|
icon: 'ic:baseline-percentage',
|
|
|
|
|
|
2025-07-19 02:47:41 +02:00
|
|
|
keywords: ['url', 'encode', 'string', 'url encode', 'encoding', 'percent'],
|
2025-07-18 17:23:52 +02:00
|
|
|
component: lazy(() => import('./index')),
|
|
|
|
|
i18n: {
|
|
|
|
|
name: 'string:urlEncode.toolInfo.title',
|
|
|
|
|
description: 'string:urlEncode.toolInfo.description',
|
|
|
|
|
shortDescription: 'string:urlEncode.toolInfo.shortDescription',
|
|
|
|
|
longDescription: 'string:urlEncode.toolInfo.longDescription'
|
|
|
|
|
}
|
|
|
|
|
});
|