more tools

This commit is contained in:
steffenrapp 2024-08-12 17:39:18 +00:00
parent 5ceb46855d
commit a81514d383
4 changed files with 20 additions and 4 deletions

View file

@ -459,3 +459,9 @@ tools:
ascii-text-drawer: ascii-text-drawer:
title: ASCII-Art-Text-Generator title: ASCII-Art-Text-Generator
description: ASCII-Art-Text mit vielen Schriftarten und Stilen erstellen. description: ASCII-Art-Text mit vielen Schriftarten und Stilen erstellen.
json-to-xml:
title: JSON zu XML
description: JSON in XML konvertieren
xml-to-json:
title: XML zu JSON
description: XML in JSON konvertieren

View file

@ -399,3 +399,11 @@ tools:
ascii-text-drawer: ascii-text-drawer:
title: ASCII Art Text Generator title: ASCII Art Text Generator
description: Create ASCII art text with many fonts and styles. description: Create ASCII art text with many fonts and styles.
json-to-xml:
title: JSON to XML
description: Convert JSON to XML
xml-to-json:
title: XML to JSON
description: Convert XML to JSON

View file

@ -1,10 +1,11 @@
import { Braces } from '@vicons/tabler'; import { Braces } from '@vicons/tabler';
import { defineTool } from '../tool'; import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({ export const tool = defineTool({
name: 'JSON to XML', name: translate('tools.json-to-xml.title'),
path: '/json-to-xml', path: '/json-to-xml',
description: 'Convert JSON to XML', description: translate('tools.json-to-xml.description'),
keywords: ['json', 'xml'], keywords: ['json', 'xml'],
component: () => import('./json-to-xml.vue'), component: () => import('./json-to-xml.vue'),
icon: Braces, icon: Braces,

View file

@ -1,10 +1,11 @@
import { Braces } from '@vicons/tabler'; import { Braces } from '@vicons/tabler';
import { defineTool } from '../tool'; import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({ export const tool = defineTool({
name: 'XML to JSON', name: translate('tools.xml-to-json.title'),
path: '/xml-to-json', path: '/xml-to-json',
description: 'Convert XML to JSON', description: translate('tools.xml-to-json.description'),
keywords: ['xml', 'json'], keywords: ['xml', 'json'],
component: () => import('./xml-to-json.vue'), component: () => import('./xml-to-json.vue'),
icon: Braces, icon: Braces,