web/i18n/queue: mux -> remux

all muxing that cobalt does is remuxing, this is simply more accurate
This commit is contained in:
wukko 2025-04-20 19:05:30 +06:00
parent 128db610e7
commit 0b1637e986
No known key found for this signature in database
GPG Key ID: 3E30B3F26C7B4AA2
2 changed files with 4 additions and 4 deletions

View File

@ -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:"
}

View File

@ -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)];