diff --git a/locales/de.yml b/locales/de.yml index 5a47c85d..d902a88d 100644 --- a/locales/de.yml +++ b/locales/de.yml @@ -453,3 +453,9 @@ tools: text-to-binary: title: Text zu ASCII-Binär description: Konvertiere Text in seine ASCII-Binärrepräsentation und umgekehrt. + safelink-decoder: + title: Outlook Safelink-Decoder + description: Outlook Safelinks decodieren + ascii-text-drawer: + title: ASCII-Art-Text-Generator + description: ASCII-Art-Text mit vielen Schriftarten und Stilen erstellen. diff --git a/locales/en.yml b/locales/en.yml index d09d435a..1ebc8201 100644 --- a/locales/en.yml +++ b/locales/en.yml @@ -391,3 +391,11 @@ tools: text-to-binary: title: Text to ASCII binary description: Convert text to its ASCII binary representation and vice-versa. + + safelink-decoder: + title: Outlook Safelink decoder + description: Decode Outlook SafeLink links + + ascii-text-drawer: + title: ASCII Art Text Generator + description: Create ASCII art text with many fonts and styles. diff --git a/src/tools/ascii-text-drawer/index.ts b/src/tools/ascii-text-drawer/index.ts index cc1ba86c..6ca7fdeb 100644 --- a/src/tools/ascii-text-drawer/index.ts +++ b/src/tools/ascii-text-drawer/index.ts @@ -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, diff --git a/src/tools/safelink-decoder/index.ts b/src/tools/safelink-decoder/index.ts index ef865108..c6bae49e 100644 --- a/src/tools/safelink-decoder/index.ts +++ b/src/tools/safelink-decoder/index.ts @@ -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,