2022-08-22 14:01:16 +05:30
|
|
|
const commands = {
|
|
|
|
SELECT_FILE: "Select a File",
|
2022-08-29 19:11:59 +05:30
|
|
|
SELECT_FOLDER: "Select a Folder",
|
2022-08-22 14:01:16 +05:30
|
|
|
UPSCAYL: "Upscale the Image",
|
|
|
|
UPSCAYL_DONE: "Upscaling Done",
|
|
|
|
UPSCAYL_PROGRESS: "Send Progress from Main to Renderer",
|
2022-09-17 15:10:47 +05:30
|
|
|
DOUBLE_UPSCAYL: "Double Upscale the Image",
|
|
|
|
DOUBLE_UPSCAYL_DONE: "Double Upscaling Done",
|
|
|
|
DOUBLE_UPSCAYL_PROGRESS: "Send Double Upscayl Progress from Main to Renderer",
|
2022-09-18 13:38:55 +05:30
|
|
|
FOLDER_UPSCAYL: "Upscale a Folder",
|
|
|
|
FOLDER_UPSCAYL_DONE: "Folder upscaling successful",
|
|
|
|
FOLDER_UPSCAYL_PROGRESS:
|
|
|
|
"Send Folder Upscaling Progress from Main to Renderer",
|
2022-09-18 20:00:03 +05:30
|
|
|
OPEN_FOLDER: "Open Folder",
|
2022-08-22 14:01:16 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = commands;
|