Compare commits

..

2 Commits

Author SHA1 Message Date
xRangerDE
3c0af2765e release: 4.5.13 rename trim dialog to "Trim VOD" / "VOD zuschneiden"
User-visible: the modal opened by the per-VOD "Clip" button now reads
"Trim VOD" (EN) / "VOD zuschneiden" (DE) instead of "Trim clip" /
"Clip zuschneiden" — disambiguates from the separate Twitch Clips
feature.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-10 11:49:19 +02:00
xRangerDE
ddb3845263 ui: rename "Trim clip" dialog to "Trim VOD" / "VOD zuschneiden"
The dialog cuts a custom time-range out of a VOD; calling its result a
"clip" was overloaded with the separate Twitch Clips feature (which
this project handles in the dedicated Clips tab). Renaming the modal
title disambiguates without touching the per-VOD-card "Clip" button
(still the right verb for the action that opens it).

- EN: "Trim VOD"
- DE: "VOD zuschneiden"
- index.html static fallback updated to match the DE locale

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-10 11:49:18 +02:00
5 changed files with 6 additions and 6 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "twitch-vod-manager", "name": "twitch-vod-manager",
"version": "4.5.12", "version": "4.5.13",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "twitch-vod-manager", "name": "twitch-vod-manager",
"version": "4.5.12", "version": "4.5.13",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"axios": "^1.6.0", "axios": "^1.6.0",

View File

@ -1,6 +1,6 @@
{ {
"name": "twitch-vod-manager", "name": "twitch-vod-manager",
"version": "4.5.12", "version": "4.5.13",
"description": "Twitch VOD Manager - Download Twitch VODs easily", "description": "Twitch VOD Manager - Download Twitch VODs easily",
"main": "dist/main.js", "main": "dist/main.js",
"author": "xRangerDE", "author": "xRangerDE",

View File

@ -48,7 +48,7 @@
<div class="modal-overlay" id="clipModal"> <div class="modal-overlay" id="clipModal">
<div class="modal" style="background: #2b2b2b; max-width: 500px;"> <div class="modal" style="background: #2b2b2b; max-width: 500px;">
<button class="modal-close" onclick="closeClipDialog()">x</button> <button class="modal-close" onclick="closeClipDialog()">x</button>
<h2 style="color: #E5A00D; text-align: center; margin-bottom: 20px;" id="clipDialogTitle">Clip zuschneiden</h2> <h2 style="color: #E5A00D; text-align: center; margin-bottom: 20px;" id="clipDialogTitle">VOD zuschneiden</h2>
<!-- Start Zeit mit Slider --> <!-- Start Zeit mit Slider -->
<div style="margin-bottom: 15px;"> <div style="margin-bottom: 15px;">

View File

@ -176,7 +176,7 @@ const UI_TEXT_DE = {
sortDurationAsc: 'Kuerzeste zuerst' sortDurationAsc: 'Kuerzeste zuerst'
}, },
clips: { clips: {
dialogTitle: 'Clip zuschneiden', dialogTitle: 'VOD zuschneiden',
invalidDuration: 'Ungultig!', invalidDuration: 'Ungultig!',
endBeforeStart: 'Endzeit muss grosser als Startzeit sein!', endBeforeStart: 'Endzeit muss grosser als Startzeit sein!',
outOfRange: 'Zeit ausserhalb des VOD-Bereichs!', outOfRange: 'Zeit ausserhalb des VOD-Bereichs!',

View File

@ -176,7 +176,7 @@ const UI_TEXT_EN = {
sortDurationAsc: 'Shortest first' sortDurationAsc: 'Shortest first'
}, },
clips: { clips: {
dialogTitle: 'Trim clip', dialogTitle: 'Trim VOD',
invalidDuration: 'Invalid!', invalidDuration: 'Invalid!',
endBeforeStart: 'End time must be greater than start time!', endBeforeStart: 'End time must be greater than start time!',
outOfRange: 'Time is outside VOD range!', outOfRange: 'Time is outside VOD range!',