From 98f0f9819dd1b1de52517173a5e75e99b0ec1368 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 6 Oct 2023 12:19:44 +0200 Subject: [PATCH] Remove superfluous comma from balanced description CURA-11131 --- cura/Machines/Models/IntentCategoryModel.py | 2 +- cura/Machines/Models/IntentTranslations.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cura/Machines/Models/IntentCategoryModel.py b/cura/Machines/Models/IntentCategoryModel.py index fa43ab2aef..e9b94d4233 100644 --- a/cura/Machines/Models/IntentCategoryModel.py +++ b/cura/Machines/Models/IntentCategoryModel.py @@ -41,7 +41,7 @@ class IntentCategoryModel(ListModel): cls._translations["default"] = { "name": catalog.i18nc("@label", "Balanced"), "description": catalog.i18nc("@text", - "The balanced profile, is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy.") + "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy.") } cls._translations["visual"] = { "name": catalog.i18nc("@label", "Visual"), diff --git a/cura/Machines/Models/IntentTranslations.py b/cura/Machines/Models/IntentTranslations.py index b845fe72ad..43fe771d67 100644 --- a/cura/Machines/Models/IntentTranslations.py +++ b/cura/Machines/Models/IntentTranslations.py @@ -10,7 +10,7 @@ intent_translations = collections.OrderedDict() # type: collections.OrderedDict intent_translations["default"] = { "name": catalog.i18nc("@label", "Balanced"), "description": catalog.i18nc("@text", - "The balanced profile, is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy.") + "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy.") } intent_translations["visual"] = { "name": catalog.i18nc("@label", "Visual"),