Merge branch '5.4'

This commit is contained in:
Remco Burema 2023-06-15 22:44:03 +02:00
commit 2670a22c0f
26 changed files with 612 additions and 529 deletions

View file

@ -14,7 +14,7 @@ DEFAULT_CURA_LATEST_URL = "https://software.ultimaker.com/latest.json"
# Each release has a fixed SDK version coupled with it. It doesn't make sense to make it configurable because, for
# example Cura 3.2 with SDK version 6.1 will not work. So the SDK version is hard-coded here and left out of the
# CuraVersion.py.in template.
CuraSDKVersion = "8.3.0"
CuraSDKVersion = "8.4.0"
try:
from cura.CuraVersion import CuraLatestURL

View file

@ -408,6 +408,7 @@ class CuraApplication(QtApplication):
SettingFunction.registerOperator("extruderValue", self._cura_formula_functions.getValueInExtruder)
SettingFunction.registerOperator("extruderValues", self._cura_formula_functions.getValuesInAllExtruders)
SettingFunction.registerOperator("anyExtruderNrWithOrDefault", self._cura_formula_functions.getAnyExtruderPositionWithOrDefault)
SettingFunction.registerOperator("resolveOrValue", self._cura_formula_functions.getResolveOrValue)
SettingFunction.registerOperator("defaultExtruderPosition", self._cura_formula_functions.getDefaultExtruderPosition)
SettingFunction.registerOperator("valueFromContainer", self._cura_formula_functions.getValueFromContainerAtIndex)

View file

@ -115,7 +115,7 @@ class IntentSelectionModel(ListModel):
try:
icon = QUrl.fromLocalFile(
Resources.getPath(cura.CuraApplication.CuraApplication.ResourceTypes.ImageFiles, icon))
except FileNotFoundError:
except (FileNotFoundError, NotADirectoryError, PermissionError):
Logger.log("e", f"Icon file for intent {intent_name} not found.")
icon = None

View file

@ -58,9 +58,7 @@ class CuraFormulaFunctions:
return value
# Gets all extruder values as a list for the given property.
def getValuesInAllExtruders(self, property_key: str,
context: Optional["PropertyEvaluationContext"] = None) -> List[Any]:
def _getActiveExtruders(self, context: Optional["PropertyEvaluationContext"] = None) -> List[str]:
machine_manager = self._application.getMachineManager()
extruder_manager = self._application.getExtruderManager()
@ -73,7 +71,17 @@ class CuraFormulaFunctions:
# only include values from extruders that are "active" for the current machine instance
if int(extruder.getMetaDataEntry("position")) >= global_stack.getProperty("machine_extruder_count", "value", context = context):
continue
result.append(extruder)
return result
# Gets all extruder values as a list for the given property.
def getValuesInAllExtruders(self, property_key: str,
context: Optional["PropertyEvaluationContext"] = None) -> List[Any]:
global_stack = self._application.getMachineManager().activeMachine
result = []
for extruder in self._getActiveExtruders(context):
value = extruder.getRawProperty(property_key, "value", context = context)
if value is None:
@ -89,6 +97,16 @@ class CuraFormulaFunctions:
return result
# Get the first extruder that adheres to a specific (boolean) property, like 'material_is_support_material'.
def getAnyExtruderPositionWithOrDefault(self, filter_key: str,
context: Optional["PropertyEvaluationContext"] = None) -> str:
for extruder in self._getActiveExtruders(context):
value = extruder.getRawProperty(filter_key, "value", context=context)
if value is None or not value:
continue
return str(extruder.position)
return self.getDefaultExtruderPosition()
# Get the resolve value or value for a given key.
def getResolveOrValue(self, property_key: str, context: Optional["PropertyEvaluationContext"] = None) -> Any:
machine_manager = self._application.getMachineManager()

View file

@ -54,8 +54,9 @@ There are also a few extra things that can be used in these expressions:
* The function `extruderValue(extruder, key)` will evaluate a particular setting for a particular extruder.
* The function `resolveOrValue(key)` will perform the full setting evaluation as described in this document for the current context (so if this setting is being evaluated for the second extruder it would perform it as if coming from the second extruder).
* The function `defaultExtruderPosition()` will get the first extruder that is not disabled. For instance, if a printer has three extruders but the first is disabled, this would return `1` to indicate the second extruder (0-indexed).
* The function `anyExtruderNrWithOrDefault(key)` will filter the list of extruders on the key, and then give the first index for which it is true, or if none of them are, the default one as specified by the 'default extruder position' function above.
* The function `valueFromContainer(key, index)` will get a setting value from the global stack, but skip the first few containers in that stack. It will skip until it reaches a particular index in the container stack.
* The function `valueFromExtruderContainer(key, index)` will get a setting value from the current extruder stack, but skip the first few containers in that stack. It will skip until it reaches a particular index in the container stack.
* The function `extruderValueFromContainer(key, index)` will get a setting value from the current extruder stack, but skip the first few containers in that stack. It will skip until it reaches a particular index in the container stack.
CuraEngine
----

View file

@ -6,7 +6,7 @@
"display_name": "3MF Reader",
"description": "Provides support for reading 3MF files.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -23,7 +23,7 @@
"display_name": "3MF Writer",
"description": "Provides support for writing 3MF files.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -40,7 +40,7 @@
"display_name": "AMF Reader",
"description": "Provides support for reading AMF files.",
"package_version": "1.0.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "fieldOfView",
@ -57,7 +57,7 @@
"display_name": "Cura Backups",
"description": "Backup and restore your configuration.",
"package_version": "1.2.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -74,7 +74,7 @@
"display_name": "CuraEngine Backend",
"description": "Provides the link to the CuraEngine slicing backend.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -91,7 +91,7 @@
"display_name": "Cura Profile Reader",
"description": "Provides support for importing Cura profiles.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -108,7 +108,7 @@
"display_name": "Cura Profile Writer",
"description": "Provides support for exporting Cura profiles.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -125,7 +125,7 @@
"display_name": "Ultimaker Digital Library",
"description": "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library.",
"package_version": "1.1.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -142,7 +142,7 @@
"display_name": "Firmware Update Checker",
"description": "Checks for firmware updates.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -159,7 +159,7 @@
"display_name": "Firmware Updater",
"description": "Provides a machine actions for updating firmware.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -176,7 +176,7 @@
"display_name": "Compressed G-code Reader",
"description": "Reads g-code from a compressed archive.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -193,7 +193,7 @@
"display_name": "Compressed G-code Writer",
"description": "Writes g-code to a compressed archive.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -210,7 +210,7 @@
"display_name": "G-Code Profile Reader",
"description": "Provides support for importing profiles from g-code files.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -227,7 +227,7 @@
"display_name": "G-Code Reader",
"description": "Allows loading and displaying G-code files.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "VictorLarchenko",
@ -244,7 +244,7 @@
"display_name": "G-Code Writer",
"description": "Writes g-code to a file.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -261,7 +261,7 @@
"display_name": "Image Reader",
"description": "Enables ability to generate printable geometry from 2D image files.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -278,7 +278,7 @@
"display_name": "Legacy Cura Profile Reader",
"description": "Provides support for importing profiles from legacy Cura versions.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -295,7 +295,7 @@
"display_name": "Machine Settings Action",
"description": "Provides a way to change machine settings (such as build volume, nozzle size, etc.).",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "fieldOfView",
@ -312,7 +312,7 @@
"display_name": "Model Checker",
"description": "Checks models and print configuration for possible printing issues and give suggestions.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -329,7 +329,7 @@
"display_name": "Monitor Stage",
"description": "Provides a monitor stage in Cura.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -346,7 +346,7 @@
"display_name": "Per-Object Settings Tool",
"description": "Provides the per-model settings.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -363,7 +363,7 @@
"display_name": "Post Processing",
"description": "Extension that allows for user created scripts for post processing.",
"package_version": "2.2.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -380,7 +380,7 @@
"display_name": "Prepare Stage",
"description": "Provides a prepare stage in Cura.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -397,7 +397,7 @@
"display_name": "Preview Stage",
"description": "Provides a preview stage in Cura.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -414,7 +414,7 @@
"display_name": "Removable Drive Output Device",
"description": "Provides removable drive hotplugging and writing support.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -431,7 +431,7 @@
"display_name": "Sentry Logger",
"description": "Logs certain events so that they can be used by the crash reporter",
"package_version": "1.0.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -448,7 +448,7 @@
"display_name": "Simulation View",
"description": "Provides the Simulation view.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -465,7 +465,7 @@
"display_name": "Slice Info",
"description": "Submits anonymous slice info. Can be disabled through preferences.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -482,7 +482,7 @@
"display_name": "Solid View",
"description": "Provides a normal solid mesh view.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -499,7 +499,7 @@
"display_name": "Support Eraser Tool",
"description": "Creates an eraser mesh to block the printing of support in certain places.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -516,7 +516,7 @@
"display_name": "Trimesh Reader",
"description": "Provides support for reading model files.",
"package_version": "1.0.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -533,7 +533,7 @@
"display_name": "Marketplace",
"description": "Find, manage and install new Cura packages.",
"package_version": "1.0.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -550,7 +550,7 @@
"display_name": "UFP Reader",
"description": "Provides support for reading Ultimaker Format Packages.",
"package_version": "1.0.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -567,7 +567,7 @@
"display_name": "UFP Writer",
"description": "Provides support for writing Ultimaker Format Packages.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -584,7 +584,7 @@
"display_name": "Ultimaker Machine Actions",
"description": "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.).",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -601,7 +601,7 @@
"display_name": "UM3 Network Printing",
"description": "Manages network connections to Ultimaker 3 printers.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -618,7 +618,7 @@
"display_name": "USB Printing",
"description": "Accepts G-Code and sends them to a printer. Plugin can also update firmware.",
"package_version": "1.0.2",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -635,7 +635,7 @@
"display_name": "Version Upgrade 2.1 to 2.2",
"description": "Upgrades configurations from Cura 2.1 to Cura 2.2.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -652,7 +652,7 @@
"display_name": "Version Upgrade 2.2 to 2.4",
"description": "Upgrades configurations from Cura 2.2 to Cura 2.4.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -669,7 +669,7 @@
"display_name": "Version Upgrade 2.5 to 2.6",
"description": "Upgrades configurations from Cura 2.5 to Cura 2.6.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -686,7 +686,7 @@
"display_name": "Version Upgrade 2.6 to 2.7",
"description": "Upgrades configurations from Cura 2.6 to Cura 2.7.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -703,7 +703,7 @@
"display_name": "Version Upgrade 2.7 to 3.0",
"description": "Upgrades configurations from Cura 2.7 to Cura 3.0.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -720,7 +720,7 @@
"display_name": "Version Upgrade 3.0 to 3.1",
"description": "Upgrades configurations from Cura 3.0 to Cura 3.1.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -737,7 +737,7 @@
"display_name": "Version Upgrade 3.2 to 3.3",
"description": "Upgrades configurations from Cura 3.2 to Cura 3.3.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -754,7 +754,7 @@
"display_name": "Version Upgrade 3.3 to 3.4",
"description": "Upgrades configurations from Cura 3.3 to Cura 3.4.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -771,7 +771,7 @@
"display_name": "Version Upgrade 3.4 to 3.5",
"description": "Upgrades configurations from Cura 3.4 to Cura 3.5.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -788,7 +788,7 @@
"display_name": "Version Upgrade 3.5 to 4.0",
"description": "Upgrades configurations from Cura 3.5 to Cura 4.0.",
"package_version": "1.0.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -805,7 +805,7 @@
"display_name": "Version Upgrade 4.0 to 4.1",
"description": "Upgrades configurations from Cura 4.0 to Cura 4.1.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -822,7 +822,7 @@
"display_name": "Version Upgrade 4.1 to 4.2",
"description": "Upgrades configurations from Cura 4.1 to Cura 4.2.",
"package_version": "1.0.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -839,7 +839,7 @@
"display_name": "Version Upgrade 4.2 to 4.3",
"description": "Upgrades configurations from Cura 4.2 to Cura 4.3.",
"package_version": "1.0.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -856,7 +856,7 @@
"display_name": "Version Upgrade 4.3 to 4.4",
"description": "Upgrades configurations from Cura 4.3 to Cura 4.4.",
"package_version": "1.0.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -873,7 +873,7 @@
"display_name": "Version Upgrade 4.4 to 4.5",
"description": "Upgrades configurations from Cura 4.4 to Cura 4.5.",
"package_version": "1.0.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -890,7 +890,7 @@
"display_name": "Version Upgrade 4.5 to 4.6",
"description": "Upgrades configurations from Cura 4.5 to Cura 4.6.",
"package_version": "1.0.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -907,7 +907,7 @@
"display_name": "Version Upgrade 4.6.0 to 4.6.2",
"description": "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2.",
"package_version": "1.0.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -924,7 +924,7 @@
"display_name": "Version Upgrade 4.6.2 to 4.7",
"description": "Upgrades configurations from Cura 4.6.2 to Cura 4.7.",
"package_version": "1.0.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -941,7 +941,7 @@
"display_name": "Version Upgrade 4.7.0 to 4.8.0",
"description": "Upgrades configurations from Cura 4.7.0 to Cura 4.8.0",
"package_version": "1.0.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -958,7 +958,7 @@
"display_name": "Version Upgrade 4.8.0 to 4.9.0",
"description": "Upgrades configurations from Cura 4.8.0 to Cura 4.9.0",
"package_version": "1.0.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -975,7 +975,7 @@
"display_name": "Version Upgrade 4.9 to 4.10",
"description": "Upgrades configurations from Cura 4.9 to Cura 4.10",
"package_version": "1.0.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -992,7 +992,7 @@
"display_name": "Version Upgrade 4.11 to 4.12",
"description": "Upgrades configurations from Cura 4.11 to Cura 4.12",
"package_version": "1.0.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"sdk_version_semver": "7.7.0",
"website": "https://ultimaker.com",
"author": {
@ -1010,7 +1010,7 @@
"display_name": "Version Upgrade 4.13 to 5.0",
"description": "Upgrades configurations from Cura 4.13 to Cura 5.0",
"package_version": "1.0.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -1027,7 +1027,7 @@
"display_name": "Version Upgrade 5.2 to 5.3",
"description": "Upgrades configurations from Cura 5.2 to Cura 5.3",
"package_version": "1.0.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -1044,7 +1044,7 @@
"display_name": "X3D Reader",
"description": "Provides support for reading X3D files.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "SevaAlekseyev",
@ -1061,7 +1061,7 @@
"display_name": "XML Material Profiles",
"description": "Provides capabilities to read and write XML-based material profiles.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -1078,7 +1078,7 @@
"display_name": "X-Ray View",
"description": "Provides the X-Ray view.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@ -1095,7 +1095,7 @@
"display_name": "Generic ABS",
"description": "The generic ABS profile which other profiles can be based upon.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@ -1113,7 +1113,7 @@
"display_name": "Generic BAM",
"description": "The generic BAM profile which other profiles can be based upon.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@ -1131,7 +1131,7 @@
"display_name": "Generic CFF CPE",
"description": "The generic CFF CPE profile which other profiles can be based upon.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@ -1149,7 +1149,7 @@
"display_name": "Generic CFF PA",
"description": "The generic CFF PA profile which other profiles can be based upon.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@ -1167,7 +1167,7 @@
"display_name": "Generic CPE",
"description": "The generic CPE profile which other profiles can be based upon.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@ -1185,7 +1185,7 @@
"display_name": "Generic CPE+",
"description": "The generic CPE+ profile which other profiles can be based upon.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@ -1203,7 +1203,7 @@
"display_name": "Generic GFF CPE",
"description": "The generic GFF CPE profile which other profiles can be based upon.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@ -1221,7 +1221,7 @@
"display_name": "Generic GFF PA",
"description": "The generic GFF PA profile which other profiles can be based upon.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@ -1239,7 +1239,7 @@
"display_name": "Generic HIPS",
"description": "The generic HIPS profile which other profiles can be based upon.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@ -1257,7 +1257,7 @@
"display_name": "Generic Nylon",
"description": "The generic Nylon profile which other profiles can be based upon.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@ -1275,7 +1275,7 @@
"display_name": "Generic PC",
"description": "The generic PC profile which other profiles can be based upon.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@ -1293,7 +1293,7 @@
"display_name": "Generic PETG",
"description": "The generic PETG profile which other profiles can be based upon.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@ -1311,7 +1311,7 @@
"display_name": "Generic PLA",
"description": "The generic PLA profile which other profiles can be based upon.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@ -1329,7 +1329,7 @@
"display_name": "Generic PP",
"description": "The generic PP profile which other profiles can be based upon.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@ -1347,7 +1347,7 @@
"display_name": "Generic PVA",
"description": "The generic PVA profile which other profiles can be based upon.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@ -1365,7 +1365,7 @@
"display_name": "Generic Tough PLA",
"description": "The generic Tough PLA profile which other profiles can be based upon.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@ -1383,7 +1383,7 @@
"display_name": "Generic TPU",
"description": "The generic TPU profile which other profiles can be based upon.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@ -1401,7 +1401,7 @@
"display_name": "Dagoma Chromatik PLA",
"description": "Filament testé et approuvé pour les imprimantes 3D Dagoma. Chromatik est l'idéal pour débuter et suivre les tutoriels premiers pas. Il vous offre qualité et résistance pour chacune de vos impressions.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://dagoma.fr/boutique/filaments.html",
"author": {
"author_id": "Dagoma",
@ -1418,7 +1418,7 @@
"display_name": "FABtotum ABS",
"description": "This material is easy to be extruded but it is not the simplest to use. It is one of the most used in 3D printing to get very well finished objects. It is not sustainable and its smoke can be dangerous if inhaled. The reason to prefer this filament to PLA is mainly because of its precision and mechanical specs. ABS (for plastic) stands for Acrylonitrile Butadiene Styrene and it is a thermoplastic which is widely used in everyday objects. It can be printed with any FFF 3D printer which can get to high temperatures as it must be extruded in a range between 220° and 245°, so its compatible with all versions of the FABtotum Personal fabricator.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=40",
"author": {
"author_id": "FABtotum",
@ -1435,7 +1435,7 @@
"display_name": "FABtotum Nylon",
"description": "When 3D printing started this material was not listed among the extrudable filaments. It is flexible as well as resistant to tractions. It is well known for its uses in textile but also in industries which require a strong and flexible material. There are different kinds of Nylon: 3D printing mostly uses Nylon 6 and Nylon 6.6, which are the most common. It requires higher temperatures to be printed, so a 3D printer must be able to reach them (around 240°C): the FABtotum, of course, can.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=53",
"author": {
"author_id": "FABtotum",
@ -1452,7 +1452,7 @@
"display_name": "FABtotum PLA",
"description": "It is the most common filament used for 3D printing. It is studied to be bio-degradable as it comes from corn starchs sugar mainly. It is completely made of renewable sources and has no footprint on polluting. PLA stands for PolyLactic Acid and it is a thermoplastic that today is still considered the easiest material to be 3D printed. It can be extruded at lower temperatures: the standard range of FABtotums one is between 185° and 195°.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=39",
"author": {
"author_id": "FABtotum",
@ -1469,7 +1469,7 @@
"display_name": "FABtotum TPU Shore 98A",
"description": "",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=66",
"author": {
"author_id": "FABtotum",
@ -1486,7 +1486,7 @@
"display_name": "Fiberlogy HD PLA",
"description": "With our HD PLA you have many more options. You can use this material in two ways. Choose the one you like best. You can use it as a normal PLA and get prints characterized by a very good adhesion between the layers and high precision. You can also make your prints acquire similar properties to that of ABS better impact resistance and high temperature resistance. All you need is an oven. Yes, an oven! By annealing our HD PLA in an oven, in accordance with the manual, you will avoid all the inconveniences of printing with ABS, such as unpleasant odour or hazardous fumes.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "http://fiberlogy.com/en/fiberlogy-filaments/filament-hd-pla/",
"author": {
"author_id": "Fiberlogy",
@ -1503,7 +1503,7 @@
"display_name": "Filo3D PLA",
"description": "Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://dagoma.fr",
"author": {
"author_id": "Dagoma",
@ -1520,7 +1520,7 @@
"display_name": "IMADE3D JellyBOX PETG",
"description": "",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "http://shop.imade3d.com/filament.html",
"author": {
"author_id": "IMADE3D",
@ -1537,7 +1537,7 @@
"display_name": "IMADE3D JellyBOX PLA",
"description": "",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "http://shop.imade3d.com/filament.html",
"author": {
"author_id": "IMADE3D",
@ -1554,7 +1554,7 @@
"display_name": "Octofiber PLA",
"description": "PLA material from Octofiber.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://nl.octofiber.com/3d-printing-filament/pla.html",
"author": {
"author_id": "Octofiber",
@ -1571,7 +1571,7 @@
"display_name": "PolyFlex™ PLA",
"description": "PolyFlex™ is a highly flexible yet easy to print 3D printing material. Featuring good elasticity and a large strain-to- failure, PolyFlex™ opens up a completely new realm of applications.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "http://www.polymaker.com/shop/polyflex/",
"author": {
"author_id": "Polymaker",
@ -1588,7 +1588,7 @@
"display_name": "PolyMax™ PLA",
"description": "PolyMax™ PLA is a 3D printing material with excellent mechanical properties and printing quality. PolyMax™ PLA has an impact resistance of up to nine times that of regular PLA, and better overall mechanical properties than ABS.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "http://www.polymaker.com/shop/polymax/",
"author": {
"author_id": "Polymaker",
@ -1605,7 +1605,7 @@
"display_name": "PolyPlus™ PLA True Colour",
"description": "PolyPlus™ PLA is a premium PLA designed for all desktop FDM/FFF 3D printers. It is produced with our patented Jam-Free™ technology that ensures consistent extrusion and prevents jams.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "http://www.polymaker.com/shop/polyplus-true-colour/",
"author": {
"author_id": "Polymaker",
@ -1622,7 +1622,7 @@
"display_name": "PolyWood™ PLA",
"description": "PolyWood™ is a wood mimic printing material that contains no actual wood ensuring a clean Jam-Free™ printing experience.",
"package_version": "1.0.1",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "http://www.polymaker.com/shop/polywood/",
"author": {
"author_id": "Polymaker",
@ -1639,7 +1639,7 @@
"display_name": "Ultimaker ABS",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com/products/materials/abs",
"author": {
"author_id": "UltimakerPackages",
@ -1658,7 +1658,7 @@
"display_name": "Ultimaker Breakaway",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com/products/materials/breakaway",
"author": {
"author_id": "UltimakerPackages",
@ -1677,7 +1677,7 @@
"display_name": "Ultimaker CPE",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com/products/materials/abs",
"author": {
"author_id": "UltimakerPackages",
@ -1696,7 +1696,7 @@
"display_name": "Ultimaker CPE+",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com/products/materials/cpe",
"author": {
"author_id": "UltimakerPackages",
@ -1715,7 +1715,7 @@
"display_name": "Ultimaker Nylon",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com/products/materials/abs",
"author": {
"author_id": "UltimakerPackages",
@ -1734,7 +1734,7 @@
"display_name": "Ultimaker PC",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com/products/materials/pc",
"author": {
"author_id": "UltimakerPackages",
@ -1753,7 +1753,7 @@
"display_name": "Ultimaker PLA",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com/products/materials/abs",
"author": {
"author_id": "UltimakerPackages",
@ -1772,7 +1772,7 @@
"display_name": "Ultimaker PP",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com/products/materials/pp",
"author": {
"author_id": "UltimakerPackages",
@ -1791,7 +1791,7 @@
"display_name": "Ultimaker PVA",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com/products/materials/abs",
"author": {
"author_id": "UltimakerPackages",
@ -1810,7 +1810,7 @@
"display_name": "Ultimaker TPU 95A",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com/products/materials/tpu-95a",
"author": {
"author_id": "UltimakerPackages",
@ -1829,7 +1829,7 @@
"display_name": "Ultimaker Tough PLA",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://ultimaker.com/products/materials/tough-pla",
"author": {
"author_id": "UltimakerPackages",
@ -1848,7 +1848,7 @@
"display_name": "Vertex Delta ABS",
"description": "ABS material and quality files for the Delta Vertex K8800.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://vertex3dprinter.eu",
"author": {
"author_id": "Velleman",
@ -1865,7 +1865,7 @@
"display_name": "Vertex Delta PET",
"description": "ABS material and quality files for the Delta Vertex K8800.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://vertex3dprinter.eu",
"author": {
"author_id": "Velleman",
@ -1882,7 +1882,7 @@
"display_name": "Vertex Delta PLA",
"description": "ABS material and quality files for the Delta Vertex K8800.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://vertex3dprinter.eu",
"author": {
"author_id": "Velleman",
@ -1899,7 +1899,7 @@
"display_name": "Vertex Delta TPU",
"description": "ABS material and quality files for the Delta Vertex K8800.",
"package_version": "1.4.0",
"sdk_version": "8.2.0",
"sdk_version": "8.4.0",
"website": "https://vertex3dprinter.eu",
"author": {
"author_id": "Velleman",

View file

@ -4490,7 +4490,7 @@
"type": "extruder",
"default_value": "0",
"enabled": "(support_enable or support_meshes_present) and extruders_enabled_count > 1",
"value": "[*map(lambda x: str(x).lower() == 'true', (extruderValues('support_enable') and extruderValues('material_is_support_material')))].index(True) if any([*map(lambda x: str(x).lower() == 'true', (extruderValues('support_enable') and extruderValues('material_is_support_material')))]) else int(defaultExtruderPosition())",
"value": "int(defaultExtruderPosition())",
"settable_per_mesh": false,
"settable_per_extruder": false,
"children":

View file

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Cura 5.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-14 09:23+0000\n"
"POT-Creation-Date: 2023-06-15 13:37+0000\n"
"PO-Revision-Date: 2023-02-16 20:28+0100\n"
"Last-Translator: Miroslav Šustek <sustmidown@centrum.cz>\n"
"Language-Team: DenyCZ <www.github.com/DenyCZ>\n"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-14 09:23+0000\n"
"POT-Creation-Date: 2023-06-15 13:37+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -4879,99 +4879,11 @@ msgctxt "@info:generic"
msgid "{} plugins failed to download"
msgstr ""
msgctxt "description"
msgid "Provides a monitor stage in Cura."
msgid "Logs certain events so that they can be used by the crash reporter"
msgstr ""
msgctxt "name"
msgid "Monitor Stage"
msgstr ""
msgctxt "description"
msgid "Submits anonymous slice info. Can be disabled through preferences."
msgstr ""
msgctxt "name"
msgid "Slice info"
msgstr ""
msgctxt "description"
msgid "Provides a prepare stage in Cura."
msgstr ""
msgctxt "name"
msgid "Prepare Stage"
msgstr ""
msgctxt "description"
msgid "Provides support for exporting Cura profiles."
msgstr ""
msgctxt "name"
msgid "Cura Profile Writer"
msgstr ""
msgctxt "description"
msgid "Enables ability to generate printable geometry from 2D image files."
msgstr ""
msgctxt "name"
msgid "Image Reader"
msgstr ""
msgctxt "description"
msgid "Provides the preview of sliced layerdata."
msgstr ""
msgctxt "name"
msgid "Simulation View"
msgstr ""
msgctxt "description"
msgid "Provides support for reading 3MF files."
msgstr ""
msgctxt "name"
msgid "3MF Reader"
msgstr ""
msgctxt "description"
msgid "Provides support for importing Cura profiles."
msgstr ""
msgctxt "name"
msgid "Cura Profile Reader"
msgstr ""
msgctxt "description"
msgid "Provides support for reading model files."
msgstr ""
msgctxt "name"
msgid "Trimesh Reader"
msgstr ""
msgctxt "description"
msgid "Provides support for importing profiles from g-code files."
msgstr ""
msgctxt "name"
msgid "G-code Profile Reader"
msgstr ""
msgctxt "description"
msgid "Provides removable drive hotplugging and writing support."
msgstr ""
msgctxt "name"
msgid "Removable Drive Output Device Plugin"
msgstr ""
msgctxt "description"
msgid "Provides capabilities to read and write XML-based material profiles."
msgstr ""
msgctxt "name"
msgid "Material Profiles"
msgid "Sentry Logger"
msgstr ""
msgctxt "description"
@ -4990,46 +4902,6 @@ msgctxt "name"
msgid "UltiMaker Network Connection"
msgstr ""
msgctxt "description"
msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
msgstr ""
msgctxt "name"
msgid "UltiMaker machine actions"
msgstr ""
msgctxt "description"
msgid "Checks models and print configuration for possible printing issues and give suggestions."
msgstr ""
msgctxt "name"
msgid "Model Checker"
msgstr ""
msgctxt "description"
msgid "Provides support for importing profiles from legacy Cura versions."
msgstr ""
msgctxt "name"
msgid "Legacy Cura Profile Reader"
msgstr ""
msgctxt "description"
msgid "Logs certain events so that they can be used by the crash reporter"
msgstr ""
msgctxt "name"
msgid "Sentry Logger"
msgstr ""
msgctxt "description"
msgid "Extension that allows for user created scripts for post processing"
msgstr ""
msgctxt "name"
msgid "Post Processing"
msgstr ""
msgctxt "description"
msgid "Reads g-code from a compressed archive."
msgstr ""
@ -5039,259 +4911,11 @@ msgid "Compressed G-code Reader"
msgstr ""
msgctxt "description"
msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
msgid "Provides support for importing profiles from g-code files."
msgstr ""
msgctxt "name"
msgid "USB printing"
msgstr ""
msgctxt "description"
msgid "Provides a normal solid mesh view."
msgstr ""
msgctxt "name"
msgid "Solid View"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 2.2 to 2.4"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.1 to 4.2"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.7 to 4.8"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 3.0 to 3.1"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 3.5 to 4.0"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 2.5 to 2.6"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.6.2 to 4.7"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 2.6 to 2.7"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 2.1 to 2.2"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 2.7 to 3.0"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 3.3 to 3.4"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.11 to 4.12"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.6.0 to 4.6.2"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.4 to 4.5"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.9 to 4.10"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.13 to Cura 5.0."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.13 to 5.0"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.3 to 4.4"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.8 to 4.9"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.0 to 4.1"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 3.2 to 3.3"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 5.2 to Cura 5.3."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 5.2 to 5.3"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.5 to 4.6"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.2 to 4.3"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 3.4 to 3.5"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 5.3 to Cura 5.4."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 5.3 to 5.4"
msgstr ""
msgctxt "description"
msgid "Provides the X-Ray view."
msgstr ""
msgctxt "name"
msgid "X-Ray View"
msgstr ""
msgctxt "description"
msgid "Provides support for reading Ultimaker Format Packages."
msgstr ""
msgctxt "name"
msgid "UFP Reader"
msgstr ""
msgctxt "description"
msgid "Provides support for writing 3MF files."
msgstr ""
msgctxt "name"
msgid "3MF Writer"
msgstr ""
msgctxt "description"
msgid "Writes g-code to a file."
msgstr ""
msgctxt "name"
msgid "G-code Writer"
msgstr ""
msgctxt "description"
msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
msgstr ""
msgctxt "name"
msgid "Ultimaker Digital Library"
msgid "G-code Profile Reader"
msgstr ""
msgctxt "description"
@ -5303,11 +4927,35 @@ msgid "Per Model Settings Tool"
msgstr ""
msgctxt "description"
msgid "Provides support for writing Ultimaker Format Packages."
msgid "Provides the X-Ray view."
msgstr ""
msgctxt "name"
msgid "UFP Writer"
msgid "X-Ray View"
msgstr ""
msgctxt "description"
msgid "Creates an eraser mesh to block the printing of support in certain places"
msgstr ""
msgctxt "name"
msgid "Support Eraser"
msgstr ""
msgctxt "description"
msgid "Provides support for reading 3MF files."
msgstr ""
msgctxt "name"
msgid "3MF Reader"
msgstr ""
msgctxt "description"
msgid "Writes g-code to a file."
msgstr ""
msgctxt "name"
msgid "G-code Writer"
msgstr ""
msgctxt "description"
@ -5318,6 +4966,126 @@ msgctxt "name"
msgid "G-code Reader"
msgstr ""
msgctxt "description"
msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
msgstr ""
msgctxt "name"
msgid "Machine Settings Action"
msgstr ""
msgctxt "description"
msgid "Provides support for importing profiles from legacy Cura versions."
msgstr ""
msgctxt "name"
msgid "Legacy Cura Profile Reader"
msgstr ""
msgctxt "description"
msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
msgstr ""
msgctxt "name"
msgid "USB printing"
msgstr ""
msgctxt "description"
msgid "Provides the preview of sliced layerdata."
msgstr ""
msgctxt "name"
msgid "Simulation View"
msgstr ""
msgctxt "description"
msgid "Provides a normal solid mesh view."
msgstr ""
msgctxt "name"
msgid "Solid View"
msgstr ""
msgctxt "description"
msgid "Provides a prepare stage in Cura."
msgstr ""
msgctxt "name"
msgid "Prepare Stage"
msgstr ""
msgctxt "description"
msgid "Provides support for reading model files."
msgstr ""
msgctxt "name"
msgid "Trimesh Reader"
msgstr ""
msgctxt "description"
msgid "Checks models and print configuration for possible printing issues and give suggestions."
msgstr ""
msgctxt "name"
msgid "Model Checker"
msgstr ""
msgctxt "description"
msgid "Provides support for writing 3MF files."
msgstr ""
msgctxt "name"
msgid "3MF Writer"
msgstr ""
msgctxt "description"
msgid "Provides capabilities to read and write XML-based material profiles."
msgstr ""
msgctxt "name"
msgid "Material Profiles"
msgstr ""
msgctxt "description"
msgid "Enables ability to generate printable geometry from 2D image files."
msgstr ""
msgctxt "name"
msgid "Image Reader"
msgstr ""
msgctxt "description"
msgid "Provides support for reading AMF files."
msgstr ""
msgctxt "name"
msgid "AMF Reader"
msgstr ""
msgctxt "description"
msgid "Provides support for exporting Cura profiles."
msgstr ""
msgctxt "name"
msgid "Cura Profile Writer"
msgstr ""
msgctxt "description"
msgid "Provides a machine actions for updating firmware."
msgstr ""
msgctxt "name"
msgid "Firmware Updater"
msgstr ""
msgctxt "description"
msgid "Provides a monitor stage in Cura."
msgstr ""
msgctxt "name"
msgid "Monitor Stage"
msgstr ""
msgctxt "description"
msgid "Writes g-code to a compressed archive."
msgstr ""
@ -5335,27 +5103,211 @@ msgid "Firmware Update Checker"
msgstr ""
msgctxt "description"
msgid "Provides a machine actions for updating firmware."
msgid "Provides support for writing Ultimaker Format Packages."
msgstr ""
msgctxt "name"
msgid "Firmware Updater"
msgid "UFP Writer"
msgstr ""
msgctxt "description"
msgid "Provides the link to the CuraEngine slicing backend."
msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
msgstr ""
msgctxt "name"
msgid "CuraEngine Backend"
msgid "Version Upgrade 4.6.0 to 4.6.2"
msgstr ""
msgctxt "description"
msgid "Backup and restore your configuration."
msgid "Upgrades configurations from Cura 4.13 to Cura 5.0."
msgstr ""
msgctxt "name"
msgid "Cura Backups"
msgid "Version Upgrade 4.13 to 5.0"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.0 to 4.1"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.9 to 4.10"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.3 to 4.4"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 3.0 to 3.1"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 5.2 to Cura 5.3."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 5.2 to 5.3"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.1 to 4.2"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.2 to 4.3"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 3.5 to 4.0"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 2.6 to 2.7"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.6.2 to 4.7"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 2.5 to 2.6"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 5.3 to Cura 5.4."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 5.3 to 5.4"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.8 to 4.9"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 3.3 to 3.4"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 3.2 to 3.3"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 2.1 to 2.2"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 2.2 to 2.4"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.7 to 4.8"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.4 to 4.5"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.11 to 4.12"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 3.4 to 3.5"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 2.7 to 3.0"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.5 to 4.6"
msgstr ""
msgctxt "description"
@ -5367,19 +5319,51 @@ msgid "X3D Reader"
msgstr ""
msgctxt "description"
msgid "Creates an eraser mesh to block the printing of support in certain places"
msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
msgstr ""
msgctxt "name"
msgid "Support Eraser"
msgid "UltiMaker machine actions"
msgstr ""
msgctxt "description"
msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
msgid "Provides the link to the CuraEngine slicing backend."
msgstr ""
msgctxt "name"
msgid "Machine Settings Action"
msgid "CuraEngine Backend"
msgstr ""
msgctxt "description"
msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
msgstr ""
msgctxt "name"
msgid "Ultimaker Digital Library"
msgstr ""
msgctxt "description"
msgid "Submits anonymous slice info. Can be disabled through preferences."
msgstr ""
msgctxt "name"
msgid "Slice info"
msgstr ""
msgctxt "description"
msgid "Backup and restore your configuration."
msgstr ""
msgctxt "name"
msgid "Cura Backups"
msgstr ""
msgctxt "description"
msgid "Provides support for reading Ultimaker Format Packages."
msgstr ""
msgctxt "name"
msgid "UFP Reader"
msgstr ""
msgctxt "description"
@ -5391,10 +5375,26 @@ msgid "Preview Stage"
msgstr ""
msgctxt "description"
msgid "Provides support for reading AMF files."
msgid "Provides removable drive hotplugging and writing support."
msgstr ""
msgctxt "name"
msgid "AMF Reader"
msgid "Removable Drive Output Device Plugin"
msgstr ""
msgctxt "description"
msgid "Provides support for importing Cura profiles."
msgstr ""
msgctxt "name"
msgid "Cura Profile Reader"
msgstr ""
msgctxt "description"
msgid "Extension that allows for user created scripts for post processing"
msgstr ""
msgctxt "name"
msgid "Post Processing"
msgstr ""

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-14 09:23+0000\n"
"POT-Creation-Date: 2023-06-15 13:37+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Cura 5.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-14 09:23+0000\n"
"POT-Creation-Date: 2023-06-15 13:37+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Cura 5.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-14 09:23+0000\n"
"POT-Creation-Date: 2023-06-15 13:37+0000\n"
"PO-Revision-Date: 2022-07-15 10:53+0200\n"
"Last-Translator: Bothof <info@bothof.nl>\n"
"Language-Team: Finnish\n"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-14 09:23+0000\n"
"POT-Creation-Date: 2023-06-15 13:37+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Cura 5.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-14 09:23+0000\n"
"POT-Creation-Date: 2023-06-15 13:37+0000\n"
"PO-Revision-Date: 2020-03-24 09:36+0100\n"
"Last-Translator: Nagy Attila <vokroot@gmail.com>\n"
"Language-Team: ATI-SZOFT\n"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-14 09:23+0000\n"
"POT-Creation-Date: 2023-06-15 13:37+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-14 09:23+0000\n"
"POT-Creation-Date: 2023-06-15 13:37+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-14 09:23+0000\n"
"POT-Creation-Date: 2023-06-15 13:37+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-14 09:23+0000\n"
"POT-Creation-Date: 2023-06-15 13:37+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Cura 5.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-14 09:23+0000\n"
"POT-Creation-Date: 2023-06-15 13:37+0000\n"
"PO-Revision-Date: 2021-09-07 08:02+0200\n"
"Last-Translator: Mariusz Matłosz <matliks@gmail.com>\n"
"Language-Team: Mariusz Matłosz <matliks@gmail.com>, reprapy.pl\n"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Cura 5.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-14 09:23+0000\n"
"POT-Creation-Date: 2023-06-15 13:37+0000\n"
"PO-Revision-Date: 2023-02-17 17:37+0100\n"
"Last-Translator: Cláudio Sampaio <patola@gmail.com>\n"
"Language-Team: Cláudio Sampaio <patola@gmail.com>\n"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-14 09:23+0000\n"
"POT-Creation-Date: 2023-06-15 13:37+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-14 09:23+0000\n"
"POT-Creation-Date: 2023-06-15 13:37+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-14 09:23+0000\n"
"POT-Creation-Date: 2023-06-15 13:37+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Cura 5.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-14 09:23+0000\n"
"POT-Creation-Date: 2023-06-15 13:37+0000\n"
"PO-Revision-Date: 2022-07-15 11:06+0200\n"
"Last-Translator: \n"
"Language-Team: \n"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Cura 5.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-14 09:23+0000\n"
"POT-Creation-Date: 2023-06-15 13:37+0000\n"
"PO-Revision-Date: 2022-01-02 19:59+0800\n"
"Last-Translator: Valen Chang <carf17771@gmail.com>\n"
"Language-Team: Valen Chang <carf17771@gmail.com>\n"

View file

@ -1,3 +1,66 @@
[5.4]
* Introduced the new Tree Support contributed by @ThomasRahm
Try it for yourself <a href="https://www.thingiverse.com/thing:6069926?utm_source=changelog&utm_medium=cura&utm_campaign=54_beta">with this dragon pencil cup</a>.
- Improved slicing time for Tree Support
- Introduced 10 new settings and updated 2 so anyone can tune the behavior
- Updated options for Tree Support Rest Preference to be more correct
- Fixed a bug where Tree Support would generate unsupported islands
- Fixed a bug where slicing would fail if Preference was set to On Any Flat Surface
- Fixed a bug where branches were not generated when Support Interface was enabled.
- Fixed a bug where the Support Overhang Angle caused a crash with Tree Support
- Fixed a bug where the Support Interface was not correctly generated with Tree Support
* Changed the order in which the brim is printed so it's easier to remove
Introduced the Smart Brim setting that changes the order in which the brim lines are printed making them easier to remove.
* Other new features and improvements:
- Updated the UltiMaker logo to reflect the new company logo
- Added support for the updated mainboard revisions of UltiMaker S3, S5, and S7
- Introduced Hole Horizontal Expansion Max Diameter so only the expansion of smaller holes can be tuned while leaving larger holes untouched.
- Introduced Skirt Height setting to make a skirt easier to remove
- Improved the minimum layer time for printers with multiple extruders.
- Improved accuracy of when the M104 Hotend Temperature command is added
- Improved printing order of the prime tower to include a dual brim, primed every layer, and primed before and after the extruder switch.
- Improved behavior for opening and closing categories when adding a new printer
- Removed the settings related to Wire Printing since it was broken and barely used.
- Upgraded PyQt to version 6.4.2 which improves responsiveness in the UI
* Other Bug Fixes
- Fixed a bug where undesirable micro segments would introduce jagged paths on curved surfaces.
- Fixed a bug where the brim line would not be printed in the same orientation
- Fixed a bug where models dropped to the buildplate when they were supposed to be floating
- Fixed a bug where models would overlap if multiple models were loaded at the same time
- Fixed a bug where an error would be shown too often in One At A Time print sequence
- Fixed a bug where the message for a new Beta version available would show up during the Beta.
- Fixed a bug where ESun PLA+ would display unsupported.
- Fixed a bug where the printjob name was hard to read in darkmode
- Fixed a bug where the Minimum Layer Time was incorrectly interpolated
- Fixed a bug where Cura would crash on star-up for some Linux systems because of missing SimpleButton, contributed by @fieldOfView
- Fixed a bug where the Post Processing Plugin would create extra folders, contributed by @fieldOfView
- Fixed AppImage Icon for Linux systems, contributed by @leoheck
- Fixed a bug where the buildplate temperature in the USB printing monitor was not rounded, contributed by @asteroids1975
- Fixed a bug where retracting for Filament Change was not performed correctly because of an extra /n in the gcode. Contributed by @JuanManuelCuello
* Printer definitions, profiles and materials:
- Updated Infill- and Skin Overlap settings for UltiMaker printers
- Enabled a modest Support Brim by default for UltiMaker printers
- Updated Support Interface speeds for PVA for UltiMaker printers
- Added Gutenberg G-Zero, contributed by @ChipCE
- Added Hellbot Magna SE 300, and Magna SE Pro, contributed by @DevelopmentHellbot
- Added Kingroon KP3S Pro, contributed by @willuhmjs
- Added LNL3D D3, D3 Vulcan, D5 and D6, contributed by @LNL3D
- Added Longer LK4 X, contributed by @BradleyFord
- Added Mixware Hyper K, Hyper S, Vulcan, and Wand, contributed by @Mixwarebot
- Added Snapmaker 2 A150, A250 an A350 dual extruder printers, contributed by @highpowerxh
- Added Sovol SV04, contributed by @Joyce-lujunxu
- Added Sovol SV06 plus, and updated Sovol SV06, contributed by @Ashok-Varma and @eropple
- Added WeeFun Tina2, and WeeFun Tina2, contributed by @syntax1269
- Updated Creality 3 S1, Creality 3 S1 Plus, and Creality 3 S1 Pro, contributed by @sparkym3
- Updated Cremaker profile to remove material temperature boost, contributed by @hyu7000
[5.3.1]
Restored and updated translations for 11 languages