Files
omni-tools/src/pages/tools/time/convert-seconds-to-time/meta.ts
Ibrahima G. Coulibaly 56e0f1696c chore: translate userTypes
2025-07-22 19:47:09 +01:00

17 lines
512 B
TypeScript

import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('time', {
path: 'convert-seconds-to-time',
icon: 'material-symbols:schedule',
keywords: ['seconds', 'time', 'convert', 'format'],
component: lazy(() => import('./index')),
i18n: {
name: 'time:convertSecondsToTime.title',
description: 'time:convertSecondsToTime.description',
shortDescription: 'time:convertSecondsToTime.shortDescription',
userTypes: ['generalUsers']
}
});