mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 21:37:11 -04:00
email normalizer
This commit is contained in:
parent
174046079e
commit
7c5f6e7797
3 changed files with 14 additions and 3 deletions
|
@ -465,3 +465,8 @@ tools:
|
||||||
xml-to-json:
|
xml-to-json:
|
||||||
title: XML zu JSON
|
title: XML zu JSON
|
||||||
description: XML in JSON konvertieren
|
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.
|
||||||
|
|
|
@ -407,3 +407,8 @@ tools:
|
||||||
xml-to-json:
|
xml-to-json:
|
||||||
title: XML to JSON
|
title: XML to JSON
|
||||||
description: Convert XML to JSON
|
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.
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
import { Mail } from '@vicons/tabler';
|
import { Mail } 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: 'Email normalizer',
|
name: translate('tools.email-normalizer.title'),
|
||||||
path: '/email-normalizer',
|
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'],
|
keywords: ['email', 'normalizer'],
|
||||||
component: () => import('./email-normalizer.vue'),
|
component: () => import('./email-normalizer.vue'),
|
||||||
icon: Mail,
|
icon: Mail,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue