fix(i18n): Make rest of the tools translatable and translate them to German

This commit is contained in:
steffenrapp 2024-06-21 20:25:47 +00:00
parent b430baef40
commit e926a79180
4 changed files with 20 additions and 4 deletions

View file

@ -1,10 +1,11 @@
import { Artboard } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: 'ASCII Art Text Generator',
name: translate('tools.ascii-text-drawer.title'),
path: '/ascii-text-drawer',
description: 'Create ASCII art text with many fonts and styles.',
description: translate('tools.ascii-text-drawer.description'),
keywords: ['ascii', 'asciiart', 'text', 'drawer'],
component: () => import('./ascii-text-drawer.vue'),
icon: Artboard,

View file

@ -1,10 +1,11 @@
import { Mailbox } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: 'Outlook Safelink decoder',
name: translate('tools.safelink-decoder.title'),
path: '/safelink-decoder',
description: 'Decode Outlook SafeLink links',
description: translate('tools.safelink-decoder.description'),
keywords: ['outlook', 'safelink', 'decoder'],
component: () => import('./safelink-decoder.vue'),
icon: Mailbox,