mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-07 17:34:56 +05:30
feat: add internationalization support
This commit is contained in:
parent
3b702b260c
commit
f22bb8bd57
149 changed files with 2807 additions and 1045 deletions
|
|
@ -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'
|
||||
}
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue