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:
@@ -4,10 +4,15 @@ import { lazy } from 'react';
|
||||
export const tool = defineTool('xml', {
|
||||
name: 'XML Beautifier',
|
||||
path: 'xml-beautifier',
|
||||
icon: 'mdi:format-align-left',
|
||||
icon: 'material-symbols:code',
|
||||
description:
|
||||
'Beautify and reformat XML for improved readability and structure.',
|
||||
shortDescription: 'Beautify XML for readability.',
|
||||
keywords: ['xml', 'beautify', 'format', 'pretty', 'indent'],
|
||||
component: lazy(() => import('./index'))
|
||||
'Format and beautify XML code with proper indentation and spacing. Make XML files more readable and organized.',
|
||||
shortDescription: 'Format and beautify XML code',
|
||||
keywords: ['xml', 'beautify', 'format', 'code', 'indent'],
|
||||
component: lazy(() => import('./index')),
|
||||
i18n: {
|
||||
name: 'xml.xmlBeautifier.name',
|
||||
description: 'xml.xmlBeautifier.description',
|
||||
shortDescription: 'xml.xmlBeautifier.shortDescription'
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user