diff options
Diffstat (limited to 'src/tools/eta-calculator/index.ts')
-rw-r--r-- | src/tools/eta-calculator/index.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/eta-calculator/index.ts b/src/tools/eta-calculator/index.ts index abda287..5016ab6 100644 --- a/src/tools/eta-calculator/index.ts +++ b/src/tools/eta-calculator/index.ts @@ -1,11 +1,11 @@ import { Hourglass } from '@vicons/tabler'; import { defineTool } from '../tool'; +import { translate } from '@/plugins/i18n.plugin'; export const tool = defineTool({ - name: 'ETA calculator', + name: translate('tools.eta-calculator.title'), path: '/eta-calculator', - description: - 'An ETA (Estimated Time of Arrival) calculator to know the approximate end time of a task, for example the moment of ending of a download.', + description: translate('tools.eta-calculator.description'), keywords: ['eta', 'calculator', 'estimated', 'time', 'arrival', 'average'], component: () => import('./eta-calculator.vue'), icon: Hourglass, |