mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-19 19:44:05 +01:00
Merge branch 'main' into tools-filtering
This commit is contained in:
@@ -2,13 +2,15 @@ import { defineTool } from '@tools/defineTool';
|
||||
import { lazy } from 'react';
|
||||
|
||||
export const tool = defineTool('time', {
|
||||
name: 'Convert seconds to time',
|
||||
path: 'convert-seconds-to-time',
|
||||
icon: 'material-symbols:schedule',
|
||||
description:
|
||||
'Convert seconds to readable time format (HH:MM:SS). Useful for time calculations and formatting.',
|
||||
shortDescription: 'Convert seconds to time format (HH:MM:SS)',
|
||||
keywords: ['seconds', 'time', 'convert', 'format', 'HH:MM:SS'],
|
||||
userTypes: ['General Users', 'Students'],
|
||||
component: lazy(() => import('./index'))
|
||||
|
||||
keywords: ['seconds', 'time', 'convert', 'format'],
|
||||
component: lazy(() => import('./index')),
|
||||
i18n: {
|
||||
name: 'time:convertSecondsToTime.title',
|
||||
description: 'time:convertSecondsToTime.description',
|
||||
shortDescription: 'time:convertSecondsToTime.shortDescription',
|
||||
userTypes: ['General Users', 'Students']
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user