Skip to content

Commit c6adf16

Browse files
committed
fix: translate
1 parent 2bba236 commit c6adf16

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

locales/en.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ tools:
298298

299299
phone-parser-and-formatter:
300300
title: Phone parser and formatter
301-
description: Parse, validate and format phone numbers. Get information about the phone number, like the country code, type, etc.
301+
description: Parse, validate and format phone numbers. Get information about the phone number, like the country code, type, etc. Forge link to send message in WhatsApp and SMS.
302302

303303
ipv4-subnet-calculator:
304304
title: IPv4 subnet calculator

src/tools/phone-parser-and-formatter/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import { Phone } from '@vicons/tabler';
22
import { defineTool } from '../tool';
3+
import { translate } from '@/plugins/i18n.plugin';
34

45
export const tool = defineTool({
5-
name: 'Phone parser and formatter',
6+
name: translate('tools.phone-parser-and-formatter.title'),
67
path: '/phone-parser-and-formatter',
7-
description:
8-
'Parse, validate and format phone numbers. Get information about the phone number, like the country code, type, etc. Forge link to send message in WhatsApp and SMS',
8+
description: translate('tools.phone-parser-and-formatter.description'),
99
keywords: [
1010
'phone',
1111
'parser',

0 commit comments

Comments
 (0)