mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-20 14:39:34 +02:00
feat: add internationalization support
This commit is contained in:
@@ -2,14 +2,17 @@ import { defineTool } from '@tools/defineTool';
|
||||
import { lazy } from 'react';
|
||||
|
||||
export const tool = defineTool('time', {
|
||||
path: 'truncate-clock-time',
|
||||
name: 'Truncate Clock Time',
|
||||
icon: 'mdi:clock-remove-outline',
|
||||
path: 'truncate-clock-time',
|
||||
icon: 'material-symbols:schedule',
|
||||
description:
|
||||
'With this browser-based application, you can truncate a clock time and drop the minutes and/or seconds components from it. If you drop the seconds, you will be left with hours and minutes. For example, "13:23:45" will be truncated to "13:23". If you drop both minutes and seconds, you will be left with just hours. For example, "13:23:45" will be truncated to just "13". Additionally, in the options, you can add or remove the hours and minutes padding and also print the dropped time component as a zero if needed.',
|
||||
shortDescription: 'Quickly convert clock time in H:M:S format to seconds.',
|
||||
keywords: ['truncate', 'time', 'clock'],
|
||||
longDescription:
|
||||
'This is a quick online utility for truncating the given clock times or timer values. It allows you to get rid of the least significant time components such as seconds and minutes. For example, if you have an exact time of "09:45:37" and you are ok working with a less precise time that has just hours and minutes, then you can discard the seconds and get "09:45". Similarly, if you only need the hours in the output, then you can truncate the minutes as well and get "09". In general, if you have a clock time "hh:mm:ss", then removing the seconds will leave "hh:mm" and removing both minutes and seconds will leave just "hh". The program can truncate as many clock times as you need – just enter them one per line in the input and the truncation result will be printed in the output where you can easily copy it from. By default, the truncated parts of the time are not displayed, but if necessary, you can print them as zeros. For example, if you drop minutes and seconds from "09:45:37" and you enable zero component printing, then the output will be "09:00:00". Finally, you can control the digit width of the clock display. For example, the time "09:00:00" has full zero-padding (the width is two digits for each time component) but if the padding is removed, then it will be shown as "9:0:0" (the width now is one digit). Timeabulous!',
|
||||
component: lazy(() => import('./index'))
|
||||
'Truncate clock time to remove seconds or minutes. Round time to the nearest hour, minute, or custom interval.',
|
||||
shortDescription: 'Truncate clock time to specified precision',
|
||||
keywords: ['time', 'truncate', 'clock', 'round', 'precision'],
|
||||
component: lazy(() => import('./index')),
|
||||
i18n: {
|
||||
name: 'time.truncateClockTime.name',
|
||||
description: 'time.truncateClockTime.description',
|
||||
shortDescription: 'time.truncateClockTime.shortDescription'
|
||||
}
|
||||
});
|
||||
|
Reference in New Issue
Block a user