Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime van Kessel <nallath@gmail.com>2021-10-28 14:54:58 +0300
committerJaime van Kessel <nallath@gmail.com>2021-10-28 14:54:58 +0300
commit42e066a5a87946db980c475bb1e9504c9c4b8091 (patch)
tree8644388b612b602b50487aeb5eaf54cc5516d53e /cura/Machines
parent8f1cf4a9637276ac8096bae52cba3a776cefa875 (diff)
parent61c43fb765d74997922789d8bd2c3558f212cd9e (diff)
Merge branch '4.12' of github.com:Ultimaker/Cura
Diffstat (limited to 'cura/Machines')
-rw-r--r--cura/Machines/Models/IntentCategoryModel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cura/Machines/Models/IntentCategoryModel.py b/cura/Machines/Models/IntentCategoryModel.py
index 09a71b8ed6..d4f28a78e9 100644
--- a/cura/Machines/Models/IntentCategoryModel.py
+++ b/cura/Machines/Models/IntentCategoryModel.py
@@ -107,7 +107,7 @@ class IntentCategoryModel(ListModel):
qualities = IntentModel()
qualities.setIntentCategory(category)
result.append({
- "name": IntentCategoryModel.translation(category, "name", catalog.i18nc("@label", "Unknown")),
+ "name": IntentCategoryModel.translation(category, "name", category),
"description": IntentCategoryModel.translation(category, "description", None),
"intent_category": category,
"weight": list(IntentCategoryModel._get_translations().keys()).index(category),