diff --git a/src/i18n.ts b/src/i18n.ts index 4357ce499..058614d28 100644 --- a/src/i18n.ts +++ b/src/i18n.ts @@ -53,6 +53,18 @@ const messages = { } } }, + serverStart: { + reinstall: 'Reinstall', + reportIssue: 'Report Issue', + openLogs: 'Open Logs', + process: { + 'initial-state': 'Loading...', + 'python-setup': 'Setting up Python Environment...', + 'starting-server': 'Starting ComfyUI server...', + ready: 'Finishing...', + error: 'Unable to start ComfyUI' + } + }, firstTimeUIMessage: 'This is the first time you use the new UI. Choose "Menu > Use New Menu > Disabled" to restore the old UI.', download: 'Download', diff --git a/src/views/ServerStartView.vue b/src/views/ServerStartView.vue index db0543507..b415eda3b 100644 --- a/src/views/ServerStartView.vue +++ b/src/views/ServerStartView.vue @@ -2,23 +2,45 @@
-

{{ ProgressMessages[status] }}

+

{{ t(`serverStart.process.${status}`) }}

+
+