2022-04-14 01:06:06 +02:00
|
|
|
import { FileText } 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-14 01:06:06 +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.text-statistics.title'),
|
2022-04-14 01:06:06 +02:00
|
|
|
path: '/text-statistics',
|
2024-02-01 14:05:54 +01:00
|
|
|
description: translate('tools.text-statistics.description'),
|
2022-04-14 01:06:06 +02:00
|
|
|
keywords: ['text', 'statistics', 'length', 'characters', 'count', 'size', 'bytes'],
|
|
|
|
component: () => import('./text-statistics.vue'),
|
|
|
|
icon: FileText,
|
2022-04-16 10:10:21 +02:00
|
|
|
redirectFrom: ['/text-stats'],
|
2022-06-01 23:52:21 +02:00
|
|
|
});
|