Files
omni-tools/src/pages/tools/time/convert-time-to-seconds/meta.ts

19 lines
706 B
TypeScript
Raw Normal View History

2025-03-26 17:40:24 +00:00
import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('time', {
name: 'Convert Time to Seconds',
2025-07-12 23:02:35 -07:00
path: 'convert-time-to-seconds',
icon: 'material-symbols:schedule',
2025-03-26 17:40:24 +00:00
description:
2025-07-12 23:02:35 -07:00
'Convert time format (hours:minutes:seconds) to total seconds. Enter time in HH:MM:SS format to get the total seconds.',
shortDescription: 'Convert time format to seconds',
keywords: ['time', 'seconds', 'convert', 'format'],
component: lazy(() => import('./index')),
i18n: {
name: 'time.convertTimeToSeconds.name',
description: 'time.convertTimeToSeconds.description',
shortDescription: 'time.convertTimeToSeconds.shortDescription'
}
2025-03-26 17:40:24 +00:00
});