fix: translation related behaviors

This commit is contained in:
Ibrahima G. Coulibaly
2025-07-14 18:04:30 +01:00
parent a6a2c1f3a1
commit 3b5f852287
112 changed files with 401 additions and 648 deletions

View File

@@ -2,12 +2,9 @@ import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('xml', {
name: 'XML Beautifier',
path: 'xml-beautifier',
icon: 'material-symbols:code',
description:
'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: {

View File

@@ -2,12 +2,8 @@ import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('xml', {
name: 'XML Validator',
path: 'xml-validator',
icon: 'material-symbols:check-circle',
description:
'Validate XML code for syntax errors and well-formed structure. Check if XML documents follow proper formatting rules.',
shortDescription: 'Validate XML code for errors',
keywords: ['xml', 'validate', 'check', 'syntax', 'errors'],
component: lazy(() => import('./index')),
i18n: {