From 7c5f6e7797ec91d42a1a6bef6a241f2be1c38a91 Mon Sep 17 00:00:00 2001 From: steffenrapp <88974099+steffenrapp@users.noreply.github.com> Date: Thu, 15 Aug 2024 14:44:39 +0000 Subject: [PATCH] email normalizer --- locales/de.yml | 5 +++++ locales/en.yml | 7 ++++++- src/tools/email-normalizer/index.ts | 5 +++-- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/locales/de.yml b/locales/de.yml index e69d1434..a00cf567 100644 --- a/locales/de.yml +++ b/locales/de.yml @@ -465,3 +465,8 @@ tools: xml-to-json: title: XML zu JSON description: XML in JSON konvertieren + email-normalizer: + title: E-Mail-Normalisierung + description: >- + Vereinheitlichen von E-Mail-Adressen auf ein Standardformat für einen einfacheren + Vergleich. Nützlich für Deduplizierung und Datenbereinigung. diff --git a/locales/en.yml b/locales/en.yml index d714b59a..fa896e7d 100644 --- a/locales/en.yml +++ b/locales/en.yml @@ -406,4 +406,9 @@ tools: xml-to-json: title: XML to JSON - description: Convert XML to JSON \ No newline at end of file + description: Convert XML to JSON + + email-normalizer: + title: Email normalizer + description: Normalize email addresses to a standard format for easier comparison. Useful for deduplication and data cleaning. + \ No newline at end of file diff --git a/src/tools/email-normalizer/index.ts b/src/tools/email-normalizer/index.ts index 299a30f7..b5110a12 100644 --- a/src/tools/email-normalizer/index.ts +++ b/src/tools/email-normalizer/index.ts @@ -1,10 +1,11 @@ import { Mail } from '@vicons/tabler'; import { defineTool } from '../tool'; +import { translate } from '@/plugins/i18n.plugin'; export const tool = defineTool({ - name: 'Email normalizer', + name: translate('tools.email-normalizer.title'), path: '/email-normalizer', - description: 'Normalize email addresses to a standard format for easier comparison. Useful for deduplication and data cleaning.', + description: translate('tools.email-normalizer.description'), keywords: ['email', 'normalizer'], component: () => import('./email-normalizer.vue'), icon: Mail,