mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 21:37:11 -04:00
fix(i18n): Make rest of the tools translatable and translate them to German
This commit is contained in:
parent
b430baef40
commit
e926a79180
4 changed files with 20 additions and 4 deletions
|
@ -453,3 +453,9 @@ tools:
|
||||||
text-to-binary:
|
text-to-binary:
|
||||||
title: Text zu ASCII-Binär
|
title: Text zu ASCII-Binär
|
||||||
description: Konvertiere Text in seine ASCII-Binärrepräsentation und umgekehrt.
|
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.
|
||||||
|
|
|
@ -391,3 +391,11 @@ tools:
|
||||||
text-to-binary:
|
text-to-binary:
|
||||||
title: Text to ASCII binary
|
title: Text to ASCII binary
|
||||||
description: Convert text to its ASCII binary representation and vice-versa.
|
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.
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
import { Artboard } from '@vicons/tabler';
|
import { Artboard } 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: 'ASCII Art Text Generator',
|
name: translate('tools.ascii-text-drawer.title'),
|
||||||
path: '/ascii-text-drawer',
|
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'],
|
keywords: ['ascii', 'asciiart', 'text', 'drawer'],
|
||||||
component: () => import('./ascii-text-drawer.vue'),
|
component: () => import('./ascii-text-drawer.vue'),
|
||||||
icon: Artboard,
|
icon: Artboard,
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
import { Mailbox } from '@vicons/tabler';
|
import { Mailbox } 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: 'Outlook Safelink decoder',
|
name: translate('tools.safelink-decoder.title'),
|
||||||
path: '/safelink-decoder',
|
path: '/safelink-decoder',
|
||||||
description: 'Decode Outlook SafeLink links',
|
description: translate('tools.safelink-decoder.description'),
|
||||||
keywords: ['outlook', 'safelink', 'decoder'],
|
keywords: ['outlook', 'safelink', 'decoder'],
|
||||||
component: () => import('./safelink-decoder.vue'),
|
component: () => import('./safelink-decoder.vue'),
|
||||||
icon: Mailbox,
|
icon: Mailbox,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue