blob: 43b72fb4951b5991932c104dd28329a9e10aadee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { Speakerphone } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: translate('tools.text-to-nato-alphabet.title'),
path: '/text-to-nato-alphabet',
description: translate('tools.text-to-nato-alphabet.description'),
keywords: ['string', 'nato', 'alphabet', 'phonetic', 'oral', 'transmission'],
component: () => import('./text-to-nato-alphabet.vue'),
icon: Speakerphone,
});
|