diff --git a/src/main/apis/app/shortKey/shortKeyHandler.ts b/src/main/apis/app/shortKey/shortKeyHandler.ts
index c0ba7597c..26706fd59 100644
--- a/src/main/apis/app/shortKey/shortKeyHandler.ts
+++ b/src/main/apis/app/shortKey/shortKeyHandler.ts
@@ -89,6 +89,7 @@ class ShortKeyHandler {
enable: true,
name: config.name,
label: config.label,
+ labelKey: config.labelKey,
key: config.key
}
})
diff --git a/src/renderer/pages/ShortKey.vue b/src/renderer/pages/ShortKey.vue
index d049e3bb4..90a1abb16 100644
--- a/src/renderer/pages/ShortKey.vue
+++ b/src/renderer/pages/ShortKey.vue
@@ -19,7 +19,7 @@
:label="$T('SHORTCUT_NAME')"
>
- {{ scope.row.label ? scope.row.label : scope.row.name }}
+ {{ scope.row.labelKey ? $T(scope.row.labelKey) : (scope.row.label ? scope.row.label : scope.row.name) }}