diff --git a/src/locales/en.json b/src/locales/en.json
index 73e43ff8ad..40939d88d2 100644
--- a/src/locales/en.json
+++ b/src/locales/en.json
@@ -18,7 +18,9 @@
"supportedDevices": {
"macos": "MacOS (M1 or later)",
"windows": "Windows (Nvidia GPU with CUDA support)"
- }
+ },
+ "continue": "Continue",
+ "continueTooltip": "I am sure my device is supported"
},
"downloadGit": {
"title": "Download git",
diff --git a/src/locales/ja.json b/src/locales/ja.json
index 09933c50e0..b18260269e 100644
--- a/src/locales/ja.json
+++ b/src/locales/ja.json
@@ -196,6 +196,8 @@
"noTasksFoundMessage": "キューにタスクがありません。",
"noWorkflowsFound": "ワークフローが見つかりませんでした。",
"notSupported": {
+ "continue": "続ける",
+ "continueTooltip": "私のデバイスはサポートされていると確信しています",
"learnMore": "詳細を見る",
"message": "以下のデバイスのみサポートされています:",
"reportIssue": "問題を報告",
diff --git a/src/locales/ru.json b/src/locales/ru.json
index 1819d78fd7..5f2344212a 100644
--- a/src/locales/ru.json
+++ b/src/locales/ru.json
@@ -196,6 +196,8 @@
"noTasksFoundMessage": "В очереди нет задач.",
"noWorkflowsFound": "Рабочие процессы не найдены.",
"notSupported": {
+ "continue": "Продолжить",
+ "continueTooltip": "Я уверен, что мое устройство поддерживается",
"learnMore": "Узнать больше",
"message": "Поддерживаются только следующие устройства:",
"reportIssue": "Сообщить о проблеме",
diff --git a/src/locales/zh.json b/src/locales/zh.json
index bbdf3f47af..748d9fd8ea 100644
--- a/src/locales/zh.json
+++ b/src/locales/zh.json
@@ -196,6 +196,8 @@
"noTasksFoundMessage": "队列中没有任务。",
"noWorkflowsFound": "未找到工作流",
"notSupported": {
+ "continue": "继续",
+ "continueTooltip": "我确定我的设备是受支持的",
"learnMore": "了解更多",
"message": "仅支持以下设备:",
"reportIssue": "报告问题",
diff --git a/src/views/NotSupportedView.vue b/src/views/NotSupportedView.vue
index 3457742803..9ca5cad659 100644
--- a/src/views/NotSupportedView.vue
+++ b/src/views/NotSupportedView.vue
@@ -32,7 +32,15 @@
:label="$t('notSupported.reportIssue')"
icon="pi pi-flag"
@click="reportIssue"
+ severity="secondary"
+ />
+
@@ -51,6 +59,7 @@