Skip to content

Commit

Permalink
Rename "Default" intent to "Balanced"
Browse files Browse the repository at this point in the history
  • Loading branch information
nallath committed Oct 6, 2023
1 parent 8ea04f0 commit 82c4a10
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cura/Machines/Models/IntentCategoryModel.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def _get_translations(cls):
"""
if len(cls._translations) == 0:
cls._translations["default"] = {
"name": catalog.i18nc("@label", "Default")
"name": catalog.i18nc("@label", "Balanced")
}
cls._translations["visual"] = {
"name": catalog.i18nc("@label", "Visual"),
Expand Down
2 changes: 1 addition & 1 deletion cura/Machines/Models/IntentTranslations.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

intent_translations = collections.OrderedDict() # type: collections.OrderedDict[str, Dict[str, Optional[str]]]
intent_translations["default"] = {
"name": catalog.i18nc("@label", "Default")
"name": catalog.i18nc("@label", "Balanced")
}
intent_translations["visual"] = {
"name": catalog.i18nc("@label", "Visual"),
Expand Down
2 changes: 1 addition & 1 deletion cura/Machines/Models/QualityManagementModel.py
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ def _update(self):
"quality_type": quality_group.quality_type,
"quality_changes_group": None,
"intent_category": "default",
"section_name": catalog.i18nc("@label", "Default"),
"section_name": catalog.i18nc("@label", "Balanced"),
"layer_height": layer_height, # layer_height is only used for sorting
}
item_list.append(item)
Expand Down

0 comments on commit 82c4a10

Please sign in to comment.