2023-11-05 22:59:31 +01:00
|
|
|
import { defineTool } from '../tool';
|
|
|
|
import n7mIcon from './n7m-icon.svg?component';
|
2024-02-01 14:05:54 +01:00
|
|
|
import { translate } from '@/plugins/i18n.plugin';
|
2023-11-05 22:59:31 +01:00
|
|
|
|
|
|
|
export const tool = defineTool({
|
2024-02-01 14:05:54 +01:00
|
|
|
name: translate('tools.numeronym-generator.title'),
|
2023-11-05 22:59:31 +01:00
|
|
|
path: '/numeronym-generator',
|
2024-02-01 14:05:54 +01:00
|
|
|
description: translate('tools.numeronym-generator.description'),
|
2023-11-05 22:59:31 +01:00
|
|
|
keywords: ['numeronym', 'generator', 'abbreviation', 'i18n', 'a11y', 'l10n'],
|
|
|
|
component: () => import('./numeronym-generator.vue'),
|
|
|
|
icon: n7mIcon,
|
|
|
|
createdAt: new Date('2023-11-05'),
|
|
|
|
});
|