2024-10-27 10:54:45 -07:00
|
|
|
import { IconPhone } from '@tabler/icons-vue';
|
2023-05-01 16:43:45 +02:00
|
|
|
import { defineTool } from '../tool';
|
2024-02-01 14:05:54 +01:00
|
|
|
import { translate } from '@/plugins/i18n.plugin';
|
2023-05-01 16:43:45 +02:00
|
|
|
|
|
|
|
export const tool = defineTool({
|
2024-02-01 14:05:54 +01:00
|
|
|
name: translate('tools.phone-parser-and-formatter.title'),
|
2023-05-01 16:43:45 +02:00
|
|
|
path: '/phone-parser-and-formatter',
|
2024-02-01 14:05:54 +01:00
|
|
|
description: translate('tools.phone-parser-and-formatter.description'),
|
2023-05-01 16:43:45 +02:00
|
|
|
keywords: [
|
|
|
|
'phone',
|
|
|
|
'parser',
|
|
|
|
'formatter',
|
|
|
|
'validate',
|
|
|
|
'format',
|
|
|
|
'number',
|
|
|
|
'telephone',
|
|
|
|
'mobile',
|
|
|
|
'cell',
|
|
|
|
'international',
|
|
|
|
'national',
|
|
|
|
],
|
|
|
|
component: () => import('./phone-parser-and-formatter.vue'),
|
2024-10-27 10:54:45 -07:00
|
|
|
icon: IconPhone,
|
2023-05-01 16:43:45 +02:00
|
|
|
createdAt: new Date('2023-05-01'),
|
|
|
|
});
|