blob: 3d8472aef42d24db3c820fd4ed0e337bf5c33647 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import { defineTool } from '../tool';
import n7mIcon from './n7m-icon.svg?component';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: translate('tools.numeronym-generator.title'),
path: '/numeronym-generator',
description: translate('tools.numeronym-generator.description'),
keywords: ['numeronym', 'generator', 'abbreviation', 'i18n', 'a11y', 'l10n'],
component: () => import('./numeronym-generator.vue'),
icon: n7mIcon,
createdAt: new Date('2023-11-05'),
});
|