mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-07 14:57:12 -04:00
13 lines
518 B
TypeScript
13 lines
518 B
TypeScript
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,
|
|
category: 'Converter',
|
|
});
|