mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
feat: add internationalization support
This commit is contained in:
@@ -2,11 +2,17 @@ import { defineTool } from '@tools/defineTool';
|
||||
import { lazy } from 'react';
|
||||
|
||||
export const tool = defineTool('json', {
|
||||
name: 'Convert JSON to XML',
|
||||
name: 'JSON to XML',
|
||||
path: 'json-to-xml',
|
||||
icon: 'mdi-light:xml',
|
||||
description: 'Convert JSON files to XML format with customizable options.',
|
||||
shortDescription: 'Convert JSON data to XML format',
|
||||
keywords: ['json', 'xml', 'convert', 'transform', 'parse'],
|
||||
component: lazy(() => import('./index'))
|
||||
icon: 'material-symbols:code',
|
||||
description:
|
||||
'Convert JSON data to XML format. Transform structured JSON objects into well-formed XML documents.',
|
||||
shortDescription: 'Convert JSON to XML format',
|
||||
keywords: ['json', 'xml', 'convert', 'transform'],
|
||||
component: lazy(() => import('./index')),
|
||||
i18n: {
|
||||
name: 'json.jsonToXml.name',
|
||||
description: 'json.jsonToXml.description',
|
||||
shortDescription: 'json.jsonToXml.shortDescription'
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user