Compare commits
2 Commits
3748e25d1d
...
63b04b6469
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
63b04b6469 | ||
|
|
03b575cd1d |
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "twitch-vod-manager",
|
"name": "twitch-vod-manager",
|
||||||
"version": "4.6.106",
|
"version": "4.6.107",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "twitch-vod-manager",
|
"name": "twitch-vod-manager",
|
||||||
"version": "4.6.106",
|
"version": "4.6.107",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"axios": "^1.6.0",
|
"axios": "^1.6.0",
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "twitch-vod-manager",
|
"name": "twitch-vod-manager",
|
||||||
"version": "4.6.106",
|
"version": "4.6.107",
|
||||||
"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",
|
||||||
|
|||||||
@ -65,6 +65,7 @@ const UI_TEXT_DE = {
|
|||||||
storageColumnTotal: 'Gesamt',
|
storageColumnTotal: 'Gesamt',
|
||||||
storageColumnLive: 'Live',
|
storageColumnLive: 'Live',
|
||||||
storageColumnChat: 'Chat',
|
storageColumnChat: 'Chat',
|
||||||
|
storageColumnActionsAria: 'Aktionen',
|
||||||
storageOpen: 'Oeffnen',
|
storageOpen: 'Oeffnen',
|
||||||
storageOtherFolders: 'Andere Ordner im Download-Pfad',
|
storageOtherFolders: 'Andere Ordner im Download-Pfad',
|
||||||
cleanupTitle: 'Auto-Cleanup',
|
cleanupTitle: 'Auto-Cleanup',
|
||||||
|
|||||||
@ -65,6 +65,7 @@ const UI_TEXT_EN = {
|
|||||||
storageColumnTotal: 'Total',
|
storageColumnTotal: 'Total',
|
||||||
storageColumnLive: 'Live',
|
storageColumnLive: 'Live',
|
||||||
storageColumnChat: 'Chat',
|
storageColumnChat: 'Chat',
|
||||||
|
storageColumnActionsAria: 'Actions',
|
||||||
storageOpen: 'Open',
|
storageOpen: 'Open',
|
||||||
storageOtherFolders: 'Other folders in download path',
|
storageOtherFolders: 'Other folders in download path',
|
||||||
cleanupTitle: 'Auto-cleanup',
|
cleanupTitle: 'Auto-cleanup',
|
||||||
|
|||||||
@ -366,7 +366,12 @@ function renderStorageStats(stats: StorageStatsResult): void {
|
|||||||
];
|
];
|
||||||
for (const h of headers) {
|
for (const h of headers) {
|
||||||
const th = document.createElement('th');
|
const th = document.createElement('th');
|
||||||
|
th.scope = 'col';
|
||||||
|
if (h) {
|
||||||
th.textContent = h;
|
th.textContent = h;
|
||||||
|
} else {
|
||||||
|
th.setAttribute('aria-label', UI_TEXT.static.storageColumnActionsAria);
|
||||||
|
}
|
||||||
headRow.appendChild(th);
|
headRow.appendChild(th);
|
||||||
}
|
}
|
||||||
thead.appendChild(headRow);
|
thead.appendChild(headRow);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user