feat: add internationalization support

This commit is contained in:
AshAnand34 2025-07-12 23:02:35 -07:00
commit f22bb8bd57
149 changed files with 2807 additions and 1045 deletions

View file

@ -4,10 +4,15 @@ import { lazy } from 'react';
export const tool = defineTool('video', {
name: 'Loop Video',
path: 'loop',
icon: 'ic:baseline-loop',
icon: 'material-symbols:loop',
description:
'This online utility lets you loop videos by specifying the number of repetitions. You can preview the looped video before processing. Supports common video formats like MP4, WebM, and OGG.',
shortDescription: 'Loop videos multiple times',
keywords: ['loop', 'video', 'repeat', 'duplicate', 'sequence', 'playback'],
component: lazy(() => import('./index'))
'Create looping video files that repeat continuously. Perfect for background videos, presentations, or creating seamless loops.',
shortDescription: 'Create looping video files',
keywords: ['video', 'loop', 'repeat', 'continuous'],
component: lazy(() => import('./index')),
i18n: {
name: 'video.loop.name',
description: 'video.loop.description',
shortDescription: 'video.loop.shortDescription'
}
});