Skip to content

Commit ecf62b0

Browse files
committed
chore: translate merge videos
1 parent fd943ff commit ecf62b0

File tree

3 files changed

+18
-9
lines changed

3 files changed

+18
-9
lines changed

.idea/workspace.xml

Lines changed: 5 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/locales/en/video.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,5 +109,11 @@
109109
"description": "Convert video files to animated GIF format. Extract specific time ranges and create shareable animated images.",
110110
"shortDescription": "Convert video to animated GIF",
111111
"title": "Video to GIF"
112+
},
113+
"mergeVideo": {
114+
"description": "Combine multiple video files into one continuous video.",
115+
"shortDescription": "Append and merge videos easily.",
116+
"title": "Merge videos",
117+
"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."
112118
}
113119
}

src/pages/tools/video/merge-video/meta.ts

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@ import { defineTool } from '@tools/defineTool';
22
import { lazy } from 'react';
33

44
export const tool = defineTool('video', {
5-
name: 'Merge Videos',
65
path: 'merge-video',
76
icon: 'fluent:merge-20-regular',
8-
description: 'Combine multiple video files into one continuous video.',
9-
shortDescription: 'Append and merge videos easily.',
107
keywords: ['merge', 'video', 'append', 'combine'],
11-
longDescription:
12-
'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.',
13-
component: lazy(() => import('./index'))
8+
component: lazy(() => import('./index')),
9+
i18n: {
10+
name: 'video:mergeVideo.title',
11+
description: 'video:mergeVideo.description',
12+
shortDescription: 'video:mergeVideo.shortDescription',
13+
longDescription: 'video:mergeVideo.longDescription'
14+
}
1415
});

0 commit comments

Comments
 (0)