From 55354e3cd7fa7ec83419bfdbb973f9d4d10ead0e Mon Sep 17 00:00:00 2001 From: Chesterkxng Date: Fri, 5 Dec 2025 18:01:30 +0100 Subject: [PATCH] locales: enhanced tool description --- public/locales/en/time.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/locales/en/time.json b/public/locales/en/time.json index 9398b45..1b12044 100644 --- a/public/locales/en/time.json +++ b/public/locales/en/time.json @@ -116,8 +116,8 @@ }, "convertTimeToDecimal": { "title": "Convert time to decimal", - "description": "Convert formatted length of time (HH:MM:SS) to decimal format, e.g. 3.43 hours.", + "description": "Convert a formatted time duration (HH:MM:SS) into a decimal hour value.", "shortDescription": "Convert human time to decimal time", - "longDescription": "Convert formatted length of time (HH:MM:SS) to decimal format, e.g. 3.43 hours." + "longDescription": "Convert a formatted time string (HH:MM:SS or HH:MM) into its decimal-hour equivalent. Hours can be any positive number, while minutes and seconds accept values from 0-59 and can be single or double digits (e.g., '12:5' or '12:05'). This function interprets hours, minutes, and seconds, then calculates the total duration as a single decimal value. It is useful for productivity tracking, payroll calculations, time-based billing, data analysis, or any workflow that requires converting human-readable time into a numerical format that can be easily summed, compared, or processed. For example, '03:26:00' becomes 3.43 hours, and '12:5' becomes 12.08 hours." } }