From 0b1637e9867f7c378056df843621aa03b062396d Mon Sep 17 00:00:00 2001 From: wukko Date: Sun, 20 Apr 2025 19:05:30 +0600 Subject: [PATCH] web/i18n/queue: mux -> remux all muxing that cobalt does is remuxing, this is simply more accurate --- web/i18n/en/queue.json | 6 +++--- web/src/components/queue/ProcessingQueueStub.svelte | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/web/i18n/en/queue.json b/web/i18n/en/queue.json index 271b553b..c8a4f647 100644 --- a/web/i18n/en/queue.json +++ b/web/i18n/en/queue.json @@ -1,7 +1,7 @@ { "title": "processing queue", "stub": "nothing here yet, just the two of us.\ntry {{ value }} something!", - "stub.download": "downloading", + "stub.fetch": "downloading", "stub.remux": "remuxing", "state.waiting": "queued", @@ -9,9 +9,9 @@ "state.starting": "starting", "state.starting.fetch": "starting downloading", - "state.starting.remux": "starting muxing", + "state.starting.remux": "starting remuxing", - "state.running.remux": "muxing", + "state.running.remux": "remuxing", "state.running.fetch": "downloading", "estimated_storage_usage": "estimated storage usage:" } diff --git a/web/src/components/queue/ProcessingQueueStub.svelte b/web/src/components/queue/ProcessingQueueStub.svelte index 5a4afef7..eb39dffa 100644 --- a/web/src/components/queue/ProcessingQueueStub.svelte +++ b/web/src/components/queue/ProcessingQueueStub.svelte @@ -2,7 +2,7 @@ import { t } from "$lib/i18n/translations"; import Meowbalt from "$components/misc/Meowbalt.svelte"; - const stubActions = ["download", "remux"]; + const stubActions = ["fetch", "remux"]; const randomAction = () => { return stubActions[Math.floor(Math.random() * stubActions.length)];