2022-04-04 23:33:39 +02:00
|
|
|
import { LetterX } from '@vicons/tabler';
|
2022-06-01 23:52:21 +02:00
|
|
|
import { defineTool } from '../tool';
|
2024-02-01 14:05:54 +01:00
|
|
|
import { translate } from '@/plugins/i18n.plugin';
|
2022-04-04 23:33:39 +02:00
|
|
|
|
2022-06-01 23:52:21 +02:00
|
|
|
export const tool = defineTool({
|
2024-02-01 14:05:54 +01:00
|
|
|
name: translate('tools.roman-numeral-converter.title'),
|
2022-04-04 23:33:39 +02:00
|
|
|
path: '/roman-numeral-converter',
|
2024-02-01 14:05:54 +01:00
|
|
|
description: translate('tools.roman-numeral-converter.description'),
|
2022-04-04 23:33:39 +02:00
|
|
|
keywords: ['roman', 'arabic', 'converter', 'X', 'I', 'V', 'L', 'C', 'D', 'M'],
|
|
|
|
component: () => import('./roman-numeral-converter.vue'),
|
|
|
|
icon: LetterX,
|
2022-06-01 23:52:21 +02:00
|
|
|
});
|