aboutsummaryrefslogtreecommitdiff
path: root/src/tools/xml-formatter/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/xml-formatter/index.ts')
-rw-r--r--src/tools/xml-formatter/index.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/tools/xml-formatter/index.ts b/src/tools/xml-formatter/index.ts
index fe28d3a..7aa096d 100644
--- a/src/tools/xml-formatter/index.ts
+++ b/src/tools/xml-formatter/index.ts
@@ -1,10 +1,11 @@
import { Code } from '@vicons/tabler';
import { defineTool } from '../tool';
+import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
- name: 'XML formatter',
+ name: translate('tools.xml-formatter.title'),
path: '/xml-formatter',
- description: 'Prettify your XML string to a human friendly readable format.',
+ description: translate('tools.xml-formatter.description'),
keywords: ['xml', 'prettify', 'format'],
component: () => import('./xml-formatter.vue'),
icon: Code,