From bcad963c10098940fb2c647ce64fdc1ea1cc319e Mon Sep 17 00:00:00 2001 From: wukko Date: Wed, 14 May 2025 15:33:00 +0600 Subject: [PATCH] web/i18n/error/queue: add processing queue error strings --- web/i18n/en/error/queue.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 web/i18n/en/error/queue.json diff --git a/web/i18n/en/error/queue.json b/web/i18n/en/error/queue.json new file mode 100644 index 00000000..ea7eb244 --- /dev/null +++ b/web/i18n/en/error/queue.json @@ -0,0 +1,18 @@ +{ + "no_final_file": "no final file output", + "worker_didnt_start": "couldn't start a processing worker", + "generic_error": "processing pipeline crashed, see console for details", + + "fetch.bad_response": "couldn't access the file tunnel", + "fetch.no_file_reader": "couldn't write a file to cache", + "fetch.empty_tunnel": "file tunnel is empty, try again", + "fetch.corrupted_file": "file wasn't downloaded fully, try again", + + "ffmpeg.probe_failed": "couldn't probe this file, it may be unsupported or corrupted", + "ffmpeg.out_of_memory": "not enough available memory, can't continue", + "ffmpeg.no_input_format": "the file's format isn't supported", + "ffmpeg.no_input_type": "the file's type isn't supported", + "ffmpeg.crashed": "ffmpeg worker crashed, see console for details", + "ffmpeg.no_render": "ffmpeg render is empty, something very odd happened", + "ffmpeg.no_args": "ffmpeg worker didn't get required arguments" +}