2022-11-23 21:57:38 +01:00
|
|
|
import { FileInvoice } from '@vicons/tabler';
|
|
|
|
import { defineTool } from '../tool';
|
2024-02-01 14:05:54 +01:00
|
|
|
import { translate } from '@/plugins/i18n.plugin';
|
2022-11-23 21:57:38 +01:00
|
|
|
|
|
|
|
export const tool = defineTool({
|
2024-02-01 14:05:54 +01:00
|
|
|
name: translate('tools.chmod-calculator.title'),
|
2022-11-23 21:57:38 +01:00
|
|
|
path: '/chmod-calculator',
|
2024-02-01 14:05:54 +01:00
|
|
|
description: translate('tools.chmod-calculator.description'),
|
2022-11-23 21:57:38 +01:00
|
|
|
keywords: [
|
|
|
|
'chmod',
|
|
|
|
'calculator',
|
|
|
|
'file',
|
|
|
|
'permission',
|
|
|
|
'files',
|
|
|
|
'directory',
|
|
|
|
'folder',
|
|
|
|
'recursive',
|
|
|
|
'generator',
|
|
|
|
'octal',
|
|
|
|
],
|
|
|
|
component: () => import('./chmod-calculator.vue'),
|
|
|
|
icon: FileInvoice,
|
|
|
|
});
|