2023-02-15 00:43:08 +01:00
|
|
|
import { Speakerphone } from '@vicons/tabler';
|
|
|
|
import { defineTool } from '../tool';
|
2024-02-01 14:05:54 +01:00
|
|
|
import { translate } from '@/plugins/i18n.plugin';
|
2023-02-15 00:43:08 +01:00
|
|
|
|
|
|
|
export const tool = defineTool({
|
2024-02-01 14:05:54 +01:00
|
|
|
name: translate('tools.text-to-nato-alphabet.title'),
|
2023-02-15 00:43:08 +01:00
|
|
|
path: '/text-to-nato-alphabet',
|
2024-02-01 14:05:54 +01:00
|
|
|
description: translate('tools.text-to-nato-alphabet.description'),
|
2023-02-15 00:43:08 +01:00
|
|
|
keywords: ['string', 'nato', 'alphabet', 'phonetic', 'oral', 'transmission'],
|
|
|
|
component: () => import('./text-to-nato-alphabet.vue'),
|
|
|
|
icon: Speakerphone,
|
2025-01-04 21:07:08 +08:00
|
|
|
category: 'Converter',
|
2023-02-15 00:43:08 +01:00
|
|
|
});
|