feat: add internationalization support

This commit is contained in:
AshAnand34
2025-07-12 23:02:35 -07:00
parent 3b702b260c
commit f22bb8bd57
149 changed files with 2807 additions and 1045 deletions

View File

@@ -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'
}
});