Compare commits

..

No commits in common. "97ea32a08bfe626b7b1ec544de014f8585e45739" and "3603caed217e163a59441fe98782524f225795d3" have entirely different histories.

6 changed files with 4 additions and 10 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "twitch-vod-manager", "name": "twitch-vod-manager",
"version": "4.6.117", "version": "4.6.116",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "twitch-vod-manager", "name": "twitch-vod-manager",
"version": "4.6.117", "version": "4.6.116",
"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.6.117", "version": "4.6.116",
"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

@ -802,7 +802,7 @@
<div class="status-bar"> <div class="status-bar">
<div class="status-indicator"> <div class="status-indicator">
<div class="status-dot" id="statusDot" aria-hidden="true"></div> <div class="status-dot" id="statusDot"></div>
<span id="statusText">Nicht verbunden</span> <span id="statusText">Nicht verbunden</span>
</div> </div>
<span id="statusBarQueueSummary" class="status-bar-queue-summary"></span> <span id="statusBarQueueSummary" class="status-bar-queue-summary"></span>

View File

@ -297,8 +297,6 @@ const UI_TEXT_DE = {
viewChat: 'Chat ansehen', viewChat: 'Chat ansehen',
viewChatLoading: 'Lade Chat...', viewChatLoading: 'Lade Chat...',
viewChatFailed: 'Chat-Datei konnte nicht gelesen werden', viewChatFailed: 'Chat-Datei konnte nicht gelesen werden',
chatViewerFilterPlaceholder: 'Chat filtern...',
chatViewerFilterAria: 'Chatnachrichten filtern',
viewChatCount: '{count} Nachrichten', viewChatCount: '{count} Nachrichten',
viewChatTruncatedSuffix: ' (gekuerzt)', viewChatTruncatedSuffix: ' (gekuerzt)',
viewEvents: 'Events ansehen', viewEvents: 'Events ansehen',

View File

@ -297,8 +297,6 @@ const UI_TEXT_EN = {
viewChat: 'View chat', viewChat: 'View chat',
viewChatLoading: 'Loading chat...', viewChatLoading: 'Loading chat...',
viewChatFailed: 'Could not read chat file', viewChatFailed: 'Could not read chat file',
chatViewerFilterPlaceholder: 'Filter chat...',
chatViewerFilterAria: 'Filter chat messages',
viewChatCount: '{count} messages', viewChatCount: '{count} messages',
viewChatTruncatedSuffix: ' (truncated)', viewChatTruncatedSuffix: ' (truncated)',
viewEvents: 'View events', viewEvents: 'View events',

View File

@ -291,8 +291,6 @@ function applyLanguageToStaticUI(): void {
setPlaceholder('vodFilterInput', UI_TEXT.vods.filterPlaceholder); setPlaceholder('vodFilterInput', UI_TEXT.vods.filterPlaceholder);
setTitle('vodFilterClearBtn', UI_TEXT.vods.filterClearTitle); setTitle('vodFilterClearBtn', UI_TEXT.vods.filterClearTitle);
setAriaLabel('vodFilterClearBtn', UI_TEXT.vods.filterClearTitle); setAriaLabel('vodFilterClearBtn', UI_TEXT.vods.filterClearTitle);
setPlaceholder('chatViewerFilter', UI_TEXT.queue.chatViewerFilterPlaceholder);
setAriaLabel('chatViewerFilter', UI_TEXT.queue.chatViewerFilterAria);
setText('vodSortLabel', UI_TEXT.vods.sortLabel); setText('vodSortLabel', UI_TEXT.vods.sortLabel);
if (typeof refreshVodSortSelectLabels === 'function') { if (typeof refreshVodSortSelectLabels === 'function') {
refreshVodSortSelectLabels(); refreshVodSortSelectLabels();