mirror of
https://github.com/upscayl/upscayl.git
synced 2025-02-17 19:19:23 +01:00
13 lines
386 B
JavaScript
13 lines
386 B
JavaScript
const commands = {
|
|
SELECT_FILE: "Select a File",
|
|
SELECT_FOLDER: "Select a Folder",
|
|
UPSCAYL: "Upscale the Image",
|
|
UPSCAYL_DONE: "Upscaling Done",
|
|
UPSCAYL_PROGRESS: "Send Progress from Main to Renderer",
|
|
SHARPEN: "Sharpen the Image First",
|
|
SHARPEN_PROGRESS: "Send Sharpening Progress from Main to Renderer",
|
|
SHARPEN_DONE: "Sharpening Done",
|
|
};
|
|
|
|
module.exports = commands;
|