mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-15 02:37:49 -06:00
Rename "Default" intent to "Balanced"
CURA-11131
This commit is contained in:
parent
8ea04f018b
commit
82c4a10c1d
3 changed files with 3 additions and 3 deletions
|
@ -39,7 +39,7 @@ class IntentCategoryModel(ListModel):
|
||||||
"""
|
"""
|
||||||
if len(cls._translations) == 0:
|
if len(cls._translations) == 0:
|
||||||
cls._translations["default"] = {
|
cls._translations["default"] = {
|
||||||
"name": catalog.i18nc("@label", "Default")
|
"name": catalog.i18nc("@label", "Balanced")
|
||||||
}
|
}
|
||||||
cls._translations["visual"] = {
|
cls._translations["visual"] = {
|
||||||
"name": catalog.i18nc("@label", "Visual"),
|
"name": catalog.i18nc("@label", "Visual"),
|
||||||
|
|
|
@ -8,7 +8,7 @@ catalog = i18nCatalog("cura")
|
||||||
|
|
||||||
intent_translations = collections.OrderedDict() # type: collections.OrderedDict[str, Dict[str, Optional[str]]]
|
intent_translations = collections.OrderedDict() # type: collections.OrderedDict[str, Dict[str, Optional[str]]]
|
||||||
intent_translations["default"] = {
|
intent_translations["default"] = {
|
||||||
"name": catalog.i18nc("@label", "Default")
|
"name": catalog.i18nc("@label", "Balanced")
|
||||||
}
|
}
|
||||||
intent_translations["visual"] = {
|
intent_translations["visual"] = {
|
||||||
"name": catalog.i18nc("@label", "Visual"),
|
"name": catalog.i18nc("@label", "Visual"),
|
||||||
|
|
|
@ -344,7 +344,7 @@ class QualityManagementModel(ListModel):
|
||||||
"quality_type": quality_group.quality_type,
|
"quality_type": quality_group.quality_type,
|
||||||
"quality_changes_group": None,
|
"quality_changes_group": None,
|
||||||
"intent_category": "default",
|
"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
|
"layer_height": layer_height, # layer_height is only used for sorting
|
||||||
}
|
}
|
||||||
item_list.append(item)
|
item_list.append(item)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue