mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-30 18:24:27 +01:00
12 lines
299 B
JavaScript
12 lines
299 B
JavaScript
const commands = {
|
|
SELECT_FILE: "Select a File",
|
|
SELECT_OUTPUT: "Save as",
|
|
SET_FILE: "Set file",
|
|
REPLACE_ORIGINAL: "Replace original",
|
|
UPSCAYL: "Upscale the Image",
|
|
UPSCAYL_DONE: "Upscaling Done",
|
|
UPSCAYL_PROGRESS: "Send Progress from Main to Renderer",
|
|
};
|
|
|
|
module.exports = commands;
|