chore: translate merge videos

This commit is contained in:
Ibrahima G. Coulibaly
2025-07-18 02:42:11 +01:00
parent fd943ff000
commit ecf62b0059
3 changed files with 18 additions and 9 deletions

View File

@@ -2,13 +2,14 @@ import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('video', {
name: 'Merge Videos',
path: 'merge-video',
icon: 'fluent:merge-20-regular',
description: 'Combine multiple video files into one continuous video.',
shortDescription: 'Append and merge videos easily.',
keywords: ['merge', 'video', 'append', 'combine'],
longDescription:
'This tool allows you to merge or append multiple video files into a single continuous video. Simply upload your video files, arrange them in the desired order, and merge them into one file for easy sharing or editing.',
component: lazy(() => import('./index'))
component: lazy(() => import('./index')),
i18n: {
name: 'video:mergeVideo.title',
description: 'video:mergeVideo.description',
shortDescription: 'video:mergeVideo.shortDescription',
longDescription: 'video:mergeVideo.longDescription'
}
});