mirror of
https://github.com/upscayl/upscayl.git
synced 2025-01-19 17:28:44 +01:00
18 lines
627 B
JavaScript
18 lines
627 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",
|
|
DOUBLE_UPSCAYL: "Double Upscale the Image",
|
|
DOUBLE_UPSCAYL_DONE: "Double Upscaling Done",
|
|
DOUBLE_UPSCAYL_PROGRESS: "Send Double Upscayl Progress from Main to Renderer",
|
|
FOLDER_UPSCAYL: "Upscale a Folder",
|
|
FOLDER_UPSCAYL_DONE: "Folder upscaling successful",
|
|
FOLDER_UPSCAYL_PROGRESS:
|
|
"Send Folder Upscaling Progress from Main to Renderer",
|
|
OPEN_FOLDER: "Open Folder",
|
|
};
|
|
|
|
module.exports = commands;
|