diff --git a/.github/ISSUE_TEMPLATE/SlicingCrash.yaml b/.github/ISSUE_TEMPLATE/SlicingCrash.yaml new file mode 100644 index 0000000000..c684b2cf63 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/SlicingCrash.yaml @@ -0,0 +1,71 @@ +name: ❌ Slicing Failed +description: When you see the message Slicing failed with an unexpected error +labels: ["Type: Bug", "Status: Triage", "Slicing Error :collision:"] +body: +- type: markdown + attributes: + value: | + ### Project File + **⚠️ Before you continue, we need your project file to troubleshoot a slicing crash.** + It contains the printer and settings we need for troubleshooting. + + ![Alt Text](https://user-images.githubusercontent.com/40423138/240616958-5a9751f2-bd34-4808-9752-6fde2e27516e.gif) + + To save a project file go to File -> Save project. + Please make sure to .zip your project file. + For big files, you may need to use [WeTransfer](https://wetransfer.com/) or similar file-sharing sites. + + 🤔 Before you share, please think to yourself. Is this a model that can be shared? + Unfortunately we cannot help if this file is missing. + Do you have the project file? Than let's continue ⬇️ + + ### Questions +- type: input + attributes: + label: Cura Version + placeholder: 5.3.1 + validations: + required: true +- type: markdown + attributes: + value: | + We work hard on improving our slicing crashes. Our most recent release is 5.3.1. + If you are not on the latest version of Cura, [you can download it here](https://github.com/Ultimaker/Cura/releases/tag/5.3.1) +- type: input + attributes: + label: Operating System + description: Information about the operating system the issue occurs on. Include at least the operating system and maybe GPU. + placeholder: Windows 11 / MacOS Catalina / MX Linux + validations: + required: true +- type: input + attributes: + label: Printer + description: Which printer was selected in Cura? + validations: + required: true +- type: input + attributes: + label: Name abnormal settings + description: Are there any settings that you might have changed that caused the crash? Does your model slice when you select the default profiles? + placeholder: + validations: +- type: input + attributes: + label: Describe model location + description: Does your model slice if you rotate the model 90 degrees or if you move it away from the center of the buildplate? + placeholder: + validations: +- type: input + attributes: + label: Describe your model + description: Have you sliced your model succesfully before? Is it watertight? Have you tried doing a quick [Mesh Fix with the Meshtools Plugin](https://marketplace.ultimaker.com/app/cura/plugins/fieldofview/MeshTools)? + validations: + required: true +- type: textarea + attributes: + label: Add your .zip here ⬇️ + description: You can add the zip file and additional information that is relevant to the issue in the comments below. + validations: + required: true + diff --git a/.github/ISSUE_TEMPLATE/bugreport.yaml b/.github/ISSUE_TEMPLATE/bugreport.yaml index e3d60e41e0..35316a2d0b 100644 --- a/.github/ISSUE_TEMPLATE/bugreport.yaml +++ b/.github/ISSUE_TEMPLATE/bugreport.yaml @@ -1,4 +1,4 @@ -name: Bug Report +name: 🪲 Bug Report description: Create a report to help us fix issues. labels: ["Type: Bug", "Status: Triage"] body: @@ -7,28 +7,29 @@ body: value: | **Thank you for using Cura and wanting to report a bug.** - Before filing, please check if the issue already exists (either open or closed) by using the search bar on the issues page. If it does, comment there. Even if it's closed, we can reopen it based on your comment. + Before filing, please check if the issue already exists (either open or closed) by using the search bar on the issues page. + If it does, comment there. Even if it's closed, we can reopen it based on your comment. - Also, please note the application version in the title of the issue "For example (3.2.1) Cannot connect to 3rd-party printer". Please do not write things like **Request** or **BUG** in the title, this is what labels are for. + Also, please note the application version in the title of the issue "For example (5.3.1) Cannot connect to 3rd-party printer". Please do not write things like **Request** or **BUG** in the title, this is what labels are for. - type: input attributes: label: Application Version description: The version of Cura this issue occurs with. - placeholder: 5.0.0 + placeholder: 5.3.0 validations: required: true - type: input attributes: - label: Platform + label: Operating System description: Information about the operating system the issue occurs on. Include at least the operating system and maybe GPU. - placeholder: Windows 10 + placeholder: Windows 11 / MacOS Catalina / MX Linux validations: required: true - type: input attributes: label: Printer description: Which printer was selected in Cura? - placeholder: Ultimaker S5 + placeholder: Ultimaker S7 validations: required: true - type: textarea @@ -56,9 +57,11 @@ body: attributes: value: | Please be sure to add the following files: - * For slicing issues, upload a **project file** that clearly shows the bug. - To save a project file go to `File -> Save project`. Please make sure to .zip your project file. For big files you may need to use WeTransfer or similar file sharing sites. + * To save a project file go to File -> Save project. + Please make sure to .zip your project file. + For big files, you may need to use [WeTransfer](https://wetransfer.com/) or similar file-sharing sites. G-code files are not project files! + Before you share, please think to yourself. Is this a model that can be shared? * **Screenshots** of showing the problem, perhaps before/after images. * A **log file** for crashes and similar issues. You can find your log file here: diff --git a/.github/ISSUE_TEMPLATE/featurerequest.yaml b/.github/ISSUE_TEMPLATE/featurerequest.yaml index bbdd3908bd..d1ab6dff5b 100644 --- a/.github/ISSUE_TEMPLATE/featurerequest.yaml +++ b/.github/ISSUE_TEMPLATE/featurerequest.yaml @@ -1,4 +1,4 @@ -name: Feature Request +name: 💡 Feature Request description: Suggest an idea for this project. labels: ["Type: New Feature", "Status: Triage"] body: diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 0000000000..10459b0b75 --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,37 @@ +name: 'Close stale issues and PRs' +on: + schedule: + - cron: '0 9-17/4 * * *' + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v8 + with: + days-before-pr-close: -1 + days-before-stale: 365 + days-before-close: 14 + operations-per-run: 3000 + ascending: true + exempt-issue-labels: 'Status: Triage,Developer Environment :computer:,Status: On Backlog,PR: Community Contribution :crown:,PR: Printer Definitions :factory:,PR: Translations :books:' + stale-issue-label: 'Status: Stale :hourglass:' + labels-to-add-when-unstale: 'Status: Triage' + only-labels: "Type: Bug,Status: Deferred" + stale-issue-message: | + Hi 👋, + We are cleaning our list of issues to improve our focus. + This bug seems to be older than a year, which is at least three major Cura releases ago. + It also received the label Deferred indicating that we did not have time to work on it back then and haven't found time to work on it since. + + If this is still a problem for you in the current version of Cura, can you please leave a comment? + We will have a fresh set of eyes to look at it. + + If it is not a problem anymore, you don't have to do anything, and this issue will be automatically closed in 14 days. + close-issue-message: | + This issue was closed because it has been inactive for 14 days since being marked as stale. + If you encounter this issue and still experience this to be a problem, you are welcome to make a fresh new issue with an updated description and screenshots. +permissions: + contents: write # only for delete-branch option + issues: write + pull-requests: write diff --git a/contributing.md b/CONTRIBUTING.md similarity index 56% rename from contributing.md rename to CONTRIBUTING.md index 180b6b1461..8f0e2aecc6 100644 --- a/contributing.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ Submitting bug reports ---------------------- -Please submit bug reports for all of Cura and CuraEngine to the [Cura repository](https://github.com/Ultimaker/Cura/issues). There will be a template there to fill in. Depending on the type of issue, we will usually ask for the [Cura log](Logging Issues) or a project file. +Please submit bug reports for all of Cura and CuraEngine to the [Cura repository](https://github.com/Ultimaker/Cura/issues). There will be a template there to fill in. Depending on the type of issue, we will usually ask for the [Cura log](https://github.com/Ultimaker/Cura/wiki/Reporting#cura-log) or a project file. If a bug report would contain private information, such as a proprietary 3D model, you may also e-mail us. Ask for contact information in the issue. @@ -8,14 +8,22 @@ Bugs related to supporting certain types of printers can usually not be solved b Requesting features ------------------- -The issue template in the Cura repository does not apply to feature requests. You can ignore it. - When requesting a feature, please describe clearly what you need and why you think this is valuable to users or what problem it solves. Making pull requests -------------------- -If you want to propose a change to Cura's source code, please create a pull request in the appropriate repository (being [Cura](https://github.com/Ultimaker/Cura), [Uranium](https://github.com/Ultimaker/Uranium), [CuraEngine](https://github.com/Ultimaker/CuraEngine), [fdm_materials](https://github.com/Ultimaker/fdm_materials), [libArcus](https://github.com/Ultimaker/libArcus), [cura-build](https://github.com/Ultimaker/cura-build), [cura-build-environment](https://github.com/Ultimaker/cura-build-environment), [libSavitar](https://github.com/Ultimaker/libSavitar), [libCharon](https://github.com/Ultimaker/libCharon) or [cura-binary-data](https://github.com/Ultimaker/cura-binary-data)) and if your change requires changes on multiple of these repositories, please link them together so that we know to merge them together. +If you want to propose a change to Cura's source code, please create a pull request in the appropriate repository. Since Cura has multiple repositories that influence it, we've listed the most important ones below: +* [Cura](https://github.com/Ultimaker/Cura) +* [Uranium](https://github.com/Ultimaker/Uranium) +* [CuraEngine](https://github.com/Ultimaker/CuraEngine) +* [fdm_materials](https://github.com/Ultimaker/fdm_materials) +* [libArcus](https://github.com/Ultimaker/libArcus) +* [libSavitar](https://github.com/Ultimaker/libSavitar) +* [libCharon](https://github.com/Ultimaker/libCharon) +* [cura-binary-data](https://github.com/Ultimaker/cura-binary-data)) + +If your change requires changes on multiple of these repositories, please link them together so that we know to merge & review them together. The style guide for code contributions to Cura and other Ultimaker projects can be found [here](https://github.com/Ultimaker/Meta/blob/master/general/generic_code_conventions.md). -Some of these repositories will have automated tests running when you create a pull request, indicated by green check marks or red crosses in the Github web page. If you see a red cross, that means that a test has failed. If the test doesn't fail on the Master branch but does fail on your branch, that indicates that you've probably made a mistake and you need to do that. Click on the cross for more details, or run the test locally by running `cmake . && ctest --verbose`. +Some of these repositories will have automated tests running when you create a pull request, indicated by green check marks or red crosses in the Github web page. If you see a red cross, that means that a test has failed. If the test doesn't fail on the Main branch but does fail on your branch, that indicates that you've probably made a mistake and you need to do that. Click on the cross for more details, or run the test locally by running `cmake . && ctest --verbose`. diff --git a/README.md b/README.md index 94d81ad90f..c40ead2baa 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,3 @@ - -> # Work with us! -> If you're interested in working with us on Cura and Thingiverse, please apply to one of the open positions below. -> - [Software Engineer C++ & Python](https://www.linkedin.com/jobs/view/3516545085) for [Cura](https://github.com/Ultimaker/Cura) -> - [DevOps Engineer Community Software](https://www.linkedin.com/jobs/view/3516542580) for [Cura](https://github.com/Ultimaker/Cura) and [Thingiverse](https://www.thingiverse.com/) -> - [QA / Test Engineer Cura (3D printing)](https://www.linkedin.com/jobs/view/3516538895) for [Cura](https://github.com/Ultimaker/Cura) and [Thingiverse](https://www.thingiverse.com/) -
diff --git a/plugins/PostProcessingPlugin/scripts/FilamentChange.py b/plugins/PostProcessingPlugin/scripts/FilamentChange.py index ef85d5ae36..d3c1e60192 100644 --- a/plugins/PostProcessingPlugin/scripts/FilamentChange.py +++ b/plugins/PostProcessingPlugin/scripts/FilamentChange.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021 Ultimaker B.V. +# Copyright (c) 2023 Ultimaker B.V. # The PostProcessingPlugin is released under the terms of the AGPLv3 or higher. # Modification 06.09.2020 @@ -199,7 +199,7 @@ class FilamentChange(Script): if enable_before_macro: color_change = color_change + before_macro + "\n" - color_change = color_change + "M600\n" + color_change = color_change + "M600" if not firmware_config: if initial_retract is not None and initial_retract > 0.: @@ -213,13 +213,15 @@ class FilamentChange(Script): if x_pos is not None: color_change = color_change + (" X%.2f" % x_pos) - + if y_pos is not None: color_change = color_change + (" Y%.2f" % y_pos) - + if z_pos is not None and z_pos > 0.: color_change = color_change + (" Z%.2f" % z_pos) + color_change = color_change + "\n" + if enable_after_macro: color_change = color_change + after_macro + "\n" diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index a6c10f705e..51bab96a1b 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -3065,6 +3065,16 @@ "enabled": "extruders_enabled_count > 1 and machine_nozzle_temp_enabled", "settable_per_mesh": false, "settable_per_extruder": true + }, + "material_is_support_material": + { + "label": "Is support material", + "description": "Is this material typically used as a support material during printing.", + "type": "bool", + "default_value": false, + "enabled": false, + "settable_per_mesh": false, + "settable_per_extruder": true } } }, @@ -4468,7 +4478,7 @@ "description": "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing.", "type": "bool", "default_value": false, - "resolve": "any(extruderValues('support_enable'))", + "resolve": "[*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())", "settable_per_mesh": true, "settable_per_extruder": false }, diff --git a/resources/i18n/cs_CZ/cura.po b/resources/i18n/cs_CZ/cura.po index a460992ae9..4114f195eb 100644 --- a/resources/i18n/cs_CZ/cura.po +++ b/resources/i18n/cs_CZ/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 10:00+0000\n" +"POT-Creation-Date: 2023-06-02 11:57+0000\n" "PO-Revision-Date: 2023-02-16 20:28+0100\n" "Last-Translator: Miroslav Šustek \n" "Language-Team: DenyCZ \n" @@ -5083,7 +5083,7 @@ msgstr[0] "Tisknout vybraný model pomocí:" msgstr[1] "Tisknout vybrané modely pomocí:" msgstr[2] "Tisknout vybrané modely pomocí:" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" @@ -5091,7 +5091,7 @@ msgstr[0] "Násobit vybraný model" msgstr[1] "Násobit vybrané modele" msgstr[2] "Násobit vybrané modele" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "Počet kopií" @@ -6716,22 +6716,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Přidat tiskárnu manuálně" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "Výrobce" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "Autor profilu" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "Název tiskárny" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "Pojmenujte prosím svou tiskárnu" diff --git a/resources/i18n/cs_CZ/fdmprinter.def.json.po b/resources/i18n/cs_CZ/fdmprinter.def.json.po index f0fd2f1095..7785f203a3 100644 --- a/resources/i18n/cs_CZ/fdmprinter.def.json.po +++ b/resources/i18n/cs_CZ/fdmprinter.def.json.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-05-30 15:31+0000\n" "PO-Revision-Date: 2023-02-16 20:35+0100\n" "Last-Translator: Miroslav Šustek \n" "Language-Team: DenyCZ \n" @@ -2122,11 +2122,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "Je střed počátek" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "Je tento materiál typem, který se při zahřívání (krystalický) čistě rozpadá, nebo jde o typ, který vytváří dlouhé propletené polymerní řetězce (nekrystalické)?" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." diff --git a/resources/i18n/cura.pot b/resources/i18n/cura.pot index c0239f2c32..ff34e274ae 100644 --- a/resources/i18n/cura.pot +++ b/resources/i18n/cura.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 10:00+0000\n" +"POT-Creation-Date: 2023-06-02 11:57+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -4414,14 +4414,14 @@ msgid_plural "Print Selected Models With:" msgstr[0] "" msgstr[1] "" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "" msgstr[1] "" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "" @@ -6019,22 +6019,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "" @@ -6244,286 +6244,6 @@ msgstr "" msgctxt "@label" msgid "No items to select from" msgstr "" -#: plugins/UltimakerMachineActions/plugin.json -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "" - -#: plugins/UltimakerMachineActions/plugin.json -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "" - -#: plugins/SupportEraser/plugin.json -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "" - -#: plugins/SupportEraser/plugin.json -msgctxt "name" -msgid "Support Eraser" -msgstr "" - -#: plugins/GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "" - -#: plugins/GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "" - -#: plugins/SentryLogger/plugin.json -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "" - -#: plugins/SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "" - -#: plugins/CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "" - -#: plugins/CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "" - -#: plugins/3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "" - -#: plugins/3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "" - -#: plugins/PerObjectSettingsTool/plugin.json -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "" - -#: plugins/PerObjectSettingsTool/plugin.json -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "" - -#: plugins/PrepareStage/plugin.json -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "" - -#: plugins/PrepareStage/plugin.json -msgctxt "name" -msgid "Prepare Stage" -msgstr "" - -#: plugins/TrimeshReader/plugin.json -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "" - -#: plugins/TrimeshReader/plugin.json -msgctxt "name" -msgid "Trimesh Reader" -msgstr "" - -#: plugins/Marketplace/plugin.json -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "" - -#: plugins/Marketplace/plugin.json -msgctxt "name" -msgid "Marketplace" -msgstr "" - -#: plugins/LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "" - -#: plugins/LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "" - -#: plugins/GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "" - -#: plugins/GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "" - -#: plugins/CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "" - -#: plugins/CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "" - -#: plugins/3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "" - -#: plugins/3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "" - -#: plugins/X3DReader/plugin.json -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "" - -#: plugins/X3DReader/plugin.json -msgctxt "name" -msgid "X3D Reader" -msgstr "" - -#: plugins/RemovableDriveOutputDevice/plugin.json -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "" - -#: plugins/RemovableDriveOutputDevice/plugin.json -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "" - -#: plugins/FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "" - -#: plugins/FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "" - -#: plugins/MachineSettingsAction/plugin.json -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "" - -#: plugins/MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "" - -#: plugins/XmlMaterialProfile/plugin.json -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "" - -#: plugins/XmlMaterialProfile/plugin.json -msgctxt "name" -msgid "Material Profiles" -msgstr "" - -#: plugins/UFPReader/plugin.json -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "" - -#: plugins/UFPReader/plugin.json -msgctxt "name" -msgid "UFP Reader" -msgstr "" - -#: plugins/CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "" - -#: plugins/CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "" - -#: plugins/GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "" - -#: plugins/GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "" - -#: plugins/CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "" - -#: plugins/CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "" - -#: plugins/SimulationView/plugin.json -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "" - -#: plugins/SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "" - -#: plugins/UM3NetworkPrinting/plugin.json -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "" - -#: plugins/UM3NetworkPrinting/plugin.json -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "" - -#: plugins/XRayView/plugin.json -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "" - -#: plugins/XRayView/plugin.json -msgctxt "name" -msgid "X-Ray View" -msgstr "" - -#: plugins/UFPWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "" - -#: plugins/UFPWriter/plugin.json -msgctxt "name" -msgid "UFP Writer" -msgstr "" - -#: plugins/GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "" - -#: plugins/GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "" - #: plugins/MonitorStage/plugin.json msgctxt "description" msgid "Provides a monitor stage in Cura." @@ -6534,26 +6254,6 @@ msgctxt "name" msgid "Monitor Stage" msgstr "" -#: plugins/FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "" - -#: plugins/FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "" - -#: plugins/SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "" - -#: plugins/SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "" - #: plugins/SliceInfoPlugin/plugin.json msgctxt "description" msgid "Submits anonymous slice info. Can be disabled through preferences." @@ -6564,6 +6264,26 @@ msgctxt "name" msgid "Slice info" msgstr "" +#: plugins/PrepareStage/plugin.json +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "" + +#: plugins/PrepareStage/plugin.json +msgctxt "name" +msgid "Prepare Stage" +msgstr "" + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "" + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "" + #: plugins/ImageReader/plugin.json msgctxt "description" msgid "Enables ability to generate printable geometry from 2D image files." @@ -6574,6 +6294,136 @@ msgctxt "name" msgid "Image Reader" msgstr "" +#: plugins/SimulationView/plugin.json +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "" + +#: plugins/SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "" + +#: plugins/3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "" + +#: plugins/3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "" + +#: plugins/TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "" + +#: plugins/TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "" + +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "" + +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "" + +#: plugins/Marketplace/plugin.json +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "" + +#: plugins/Marketplace/plugin.json +msgctxt "name" +msgid "Marketplace" +msgstr "" + +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "" + +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "" + +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "" + +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "" + +#: plugins/ModelChecker/plugin.json +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "" + +#: plugins/ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "" + +#: plugins/SentryLogger/plugin.json +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "" + +#: plugins/SentryLogger/plugin.json +msgctxt "name" +msgid "Sentry Logger" +msgstr "" + #: plugins/PostProcessingPlugin/plugin.json msgctxt "description" msgid "Extension that allows for user created scripts for post processing" @@ -6584,94 +6434,34 @@ msgctxt "name" msgid "Post Processing" msgstr "" -#: plugins/AMFReader/plugin.json +#: plugins/GCodeGzReader/plugin.json msgctxt "description" -msgid "Provides support for reading AMF files." +msgid "Reads g-code from a compressed archive." msgstr "" -#: plugins/AMFReader/plugin.json +#: plugins/GCodeGzReader/plugin.json msgctxt "name" -msgid "AMF Reader" +msgid "Compressed G-code Reader" msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +#: plugins/USBPrinting/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +#: plugins/USBPrinting/plugin.json msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" +msgid "USB printing" msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +#: plugins/SolidView/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgid "Provides a normal solid mesh view." msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +#: plugins/SolidView/plugin.json msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "" - -#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "" - -#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "" - -#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "" - -#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "" - -#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "" - -#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "" - -#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "" - -#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "" - -#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "" - -#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "" - -#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "" - -#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" +msgid "Solid View" msgstr "" #: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json @@ -6684,34 +6474,24 @@ msgctxt "name" msgid "Version Upgrade 2.2 to 2.4" msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" +msgid "Version Upgrade 4.1 to 4.2" msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "" - -#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "" - -#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" +msgid "Version Upgrade 4.7 to 4.8" msgstr "" #: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json @@ -6724,44 +6504,64 @@ msgctxt "name" msgid "Version Upgrade 3.0 to 3.1" msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" +msgid "Version Upgrade 3.5 to 4.0" msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" +msgid "Version Upgrade 2.5 to 2.6" msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" +msgid "Version Upgrade 4.6.2 to 4.7" msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" msgstr "" #: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json @@ -6784,6 +6584,36 @@ msgctxt "name" msgid "Version Upgrade 4.11 to 4.12" msgstr "" +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "" + #: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." @@ -6794,24 +6624,24 @@ msgctxt "name" msgid "Version Upgrade 4.13 to 5.0" msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" +msgid "Version Upgrade 4.3 to 4.4" msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" +msgid "Version Upgrade 4.8 to 4.9" msgstr "" #: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json @@ -6824,24 +6654,104 @@ msgctxt "name" msgid "Version Upgrade 4.0 to 4.1" msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" +msgid "Version Upgrade 3.2 to 3.3" msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "" + +#: plugins/XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "" + +#: plugins/XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "" + +#: plugins/UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "" + +#: plugins/UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "" + +#: plugins/3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "" + +#: plugins/3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "" + +#: plugins/GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "" + +#: plugins/GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" msgstr "" #: plugins/DigitalLibrary/plugin.json @@ -6854,24 +6764,34 @@ msgctxt "name" msgid "Ultimaker Digital Library" msgstr "" -#: plugins/ModelChecker/plugin.json +#: plugins/PerObjectSettingsTool/plugin.json msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgid "Provides the Per Model Settings." msgstr "" -#: plugins/ModelChecker/plugin.json +#: plugins/PerObjectSettingsTool/plugin.json msgctxt "name" -msgid "Model Checker" +msgid "Per Model Settings Tool" msgstr "" -#: plugins/USBPrinting/plugin.json +#: plugins/UFPWriter/plugin.json msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgid "Provides support for writing Ultimaker Format Packages." msgstr "" -#: plugins/USBPrinting/plugin.json +#: plugins/UFPWriter/plugin.json msgctxt "name" -msgid "USB printing" +msgid "UFP Writer" +msgstr "" + +#: plugins/GCodeReader/plugin.json +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "" + +#: plugins/GCodeReader/plugin.json +msgctxt "name" +msgid "G-code Reader" msgstr "" #: plugins/GCodeGzWriter/plugin.json @@ -6884,6 +6804,76 @@ msgctxt "name" msgid "Compressed G-code Writer" msgstr "" +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "" + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "" + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "" + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "name" +msgid "Firmware Updater" +msgstr "" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "" + +#: plugins/CuraDrive/plugin.json +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "" + +#: plugins/CuraDrive/plugin.json +msgctxt "name" +msgid "Cura Backups" +msgstr "" + +#: plugins/X3DReader/plugin.json +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "" + +#: plugins/X3DReader/plugin.json +msgctxt "name" +msgid "X3D Reader" +msgstr "" + +#: plugins/SupportEraser/plugin.json +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "" + +#: plugins/SupportEraser/plugin.json +msgctxt "name" +msgid "Support Eraser" +msgstr "" + +#: plugins/MachineSettingsAction/plugin.json +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "" + +#: plugins/MachineSettingsAction/plugin.json +msgctxt "name" +msgid "Machine Settings Action" +msgstr "" + #: plugins/PreviewStage/plugin.json msgctxt "description" msgid "Provides a preview stage in Cura." @@ -6894,3 +6884,13 @@ msgctxt "name" msgid "Preview Stage" msgstr "" +#: plugins/AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "" + +#: plugins/AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "" + diff --git a/resources/i18n/de_DE/cura.po b/resources/i18n/de_DE/cura.po index fe324a9720..a7fcf1206b 100644 --- a/resources/i18n/de_DE/cura.po +++ b/resources/i18n/de_DE/cura.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 10:00+0000\n" +"POT-Creation-Date: 2023-06-02 11:57+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5071,14 +5071,14 @@ msgid_plural "Print Selected Models With:" msgstr[0] "Ausgewähltes Modell drucken mit:" msgstr[1] "Ausgewählte Modelle drucken mit:" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Ausgewähltes Modell multiplizieren" msgstr[1] "Ausgewählte Modelle multiplizieren" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "Anzahl Kopien" @@ -6695,22 +6695,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Drucker manuell hinzufügen" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "Hersteller" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "Autor des Profils" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "Druckername" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "Bitte weisen Sie Ihrem Drucker einen Namen zu" diff --git a/resources/i18n/de_DE/fdmprinter.def.json.po b/resources/i18n/de_DE/fdmprinter.def.json.po index 485ccb7afe..5a56434a3b 100644 --- a/resources/i18n/de_DE/fdmprinter.def.json.po +++ b/resources/i18n/de_DE/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-05-30 15:31+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -2119,11 +2119,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "Is-Center-Ursprung" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "Lässt sich das Material im erhitzten Zustand leicht brechen (kristallin) oder bildet es lange, verflochtene Polymerketten (nicht kristallin)?" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." diff --git a/resources/i18n/es_ES/cura.po b/resources/i18n/es_ES/cura.po index 7151053710..9094b99446 100644 --- a/resources/i18n/es_ES/cura.po +++ b/resources/i18n/es_ES/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 10:00+0000\n" +"POT-Creation-Date: 2023-06-02 11:57+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5071,14 +5071,14 @@ msgid_plural "Print Selected Models With:" msgstr[0] "Imprimir modelo seleccionado con:" msgstr[1] "Imprimir modelos seleccionados con:" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Multiplicar modelo seleccionado" msgstr[1] "Multiplicar modelos seleccionados" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "Número de copias" @@ -6695,22 +6695,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Añadir impresora manualmente" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "Fabricante" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "Autor del perfil" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "Nombre de la impresora" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "Asigne un nombre a su impresora" diff --git a/resources/i18n/es_ES/fdmprinter.def.json.po b/resources/i18n/es_ES/fdmprinter.def.json.po index 3a35f1cb74..2aa6cc0640 100644 --- a/resources/i18n/es_ES/fdmprinter.def.json.po +++ b/resources/i18n/es_ES/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-05-30 15:31+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -2119,11 +2119,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "El origen está centrado" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "¿Es este el tipo de material que se desprende limpiamente cuando se calienta (cristalino) o el que produce largas cadenas de polímeros entrelazadas (no cristalino)?" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." diff --git a/resources/i18n/fdmprinter.def.json.pot b/resources/i18n/fdmprinter.def.json.pot index 957a1ecbb9..e10fe4c0eb 100644 --- a/resources/i18n/fdmprinter.def.json.pot +++ b/resources/i18n/fdmprinter.def.json.pot @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-05-30 15:31+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -2651,6 +2651,16 @@ msgctxt "material_standby_temperature description" msgid "The temperature of the nozzle when another nozzle is currently used for printing." msgstr "" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "speed label" msgid "Speed" diff --git a/resources/i18n/fi_FI/cura.po b/resources/i18n/fi_FI/cura.po index 83fd0a5cdd..6bc6a8d870 100644 --- a/resources/i18n/fi_FI/cura.po +++ b/resources/i18n/fi_FI/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 10:00+0000\n" +"POT-Creation-Date: 2023-06-02 11:57+0000\n" "PO-Revision-Date: 2022-07-15 10:53+0200\n" "Last-Translator: Bothof \n" "Language-Team: Finnish\n" @@ -5040,14 +5040,14 @@ msgid_plural "Print Selected Models With:" msgstr[0] "Tulosta valittu malli asetuksella:" msgstr[1] "Tulosta valitut mallit asetuksella:" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Kerro valittu malli" msgstr[1] "Kerro valitut mallit" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "Kopioiden määrä" @@ -6657,22 +6657,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "" diff --git a/resources/i18n/fi_FI/fdmprinter.def.json.po b/resources/i18n/fi_FI/fdmprinter.def.json.po index bcbd063c11..7e4606a86d 100644 --- a/resources/i18n/fi_FI/fdmprinter.def.json.po +++ b/resources/i18n/fi_FI/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-05-30 15:31+0000\n" "PO-Revision-Date: 2022-07-15 11:17+0200\n" "Last-Translator: Bothof \n" "Language-Team: Finnish\n" @@ -2117,11 +2117,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "On keskikohdassa" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." diff --git a/resources/i18n/fr_FR/cura.po b/resources/i18n/fr_FR/cura.po index 354a10d2da..fbdfc54527 100644 --- a/resources/i18n/fr_FR/cura.po +++ b/resources/i18n/fr_FR/cura.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 10:00+0000\n" +"POT-Creation-Date: 2023-06-02 11:57+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5071,14 +5071,14 @@ msgid_plural "Print Selected Models With:" msgstr[0] "Imprimer le modèle sélectionné avec :" msgstr[1] "Imprimer les modèles sélectionnés avec :" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Multiplier le modèle sélectionné" msgstr[1] "Multiplier les modèles sélectionnés" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "Nombre de copies" @@ -6695,22 +6695,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Ajouter l'imprimante manuellement" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "Fabricant" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "Auteur du profil" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "Nom de l'imprimante" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "Veuillez nommer votre imprimante" diff --git a/resources/i18n/fr_FR/fdmprinter.def.json.po b/resources/i18n/fr_FR/fdmprinter.def.json.po index 46ff5b5595..153de36231 100644 --- a/resources/i18n/fr_FR/fdmprinter.def.json.po +++ b/resources/i18n/fr_FR/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-05-30 15:31+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -2119,11 +2119,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "Est l'origine du centre" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "Ce matériau se casse-t-il proprement lorsqu'il est chauffé (cristallin) ou est-ce le type qui produit de longues chaînes polymères entrelacées (non cristallines) ?" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." diff --git a/resources/i18n/hu_HU/cura.po b/resources/i18n/hu_HU/cura.po index eaf421b39a..e45113c0a3 100644 --- a/resources/i18n/hu_HU/cura.po +++ b/resources/i18n/hu_HU/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 10:00+0000\n" +"POT-Creation-Date: 2023-06-02 11:57+0000\n" "PO-Revision-Date: 2020-03-24 09:36+0100\n" "Last-Translator: Nagy Attila \n" "Language-Team: ATI-SZOFT\n" @@ -5054,14 +5054,14 @@ msgid_plural "Print Selected Models With:" msgstr[0] "Kiválasztott modell nyomtatása:" msgstr[1] "Kiválasztott modellek nyomtatása:" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Kiválasztott modell sokszorozása" msgstr[1] "Kiválasztott modellek sokszorozása" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "Másolatok száma" @@ -6671,22 +6671,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "Nyomtató név" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "" diff --git a/resources/i18n/hu_HU/fdmprinter.def.json.po b/resources/i18n/hu_HU/fdmprinter.def.json.po index 231554a57a..1037a4497d 100644 --- a/resources/i18n/hu_HU/fdmprinter.def.json.po +++ b/resources/i18n/hu_HU/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-05-30 15:31+0000\n" "PO-Revision-Date: 2020-03-24 09:43+0100\n" "Last-Translator: Nagy Attila \n" "Language-Team: AT-VLOG\n" @@ -2124,11 +2124,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "Origó a középpontban" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "Az anyag olyan típusú-e, ami melegítve tiszta módon, kikristályosodva bomlik le, vagy olyan, ami nem kristályos, összefonódott polimer láncokat hoz létre?" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." diff --git a/resources/i18n/it_IT/cura.po b/resources/i18n/it_IT/cura.po index 941f74907c..e1307f5ff9 100644 --- a/resources/i18n/it_IT/cura.po +++ b/resources/i18n/it_IT/cura.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 10:00+0000\n" +"POT-Creation-Date: 2023-06-02 11:57+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5074,14 +5074,14 @@ msgid_plural "Print Selected Models With:" msgstr[0] "Stampa modello selezionato con:" msgstr[1] "Stampa modelli selezionati con:" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Moltiplica modello selezionato" msgstr[1] "Moltiplica modelli selezionati" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "Numero di copie" @@ -6698,22 +6698,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Aggiungere la stampante manualmente" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "Produttore" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "Autore profilo" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "Nome stampante" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "Dare un nome alla stampante" diff --git a/resources/i18n/it_IT/fdmprinter.def.json.po b/resources/i18n/it_IT/fdmprinter.def.json.po index 6108cf019c..e045002a77 100644 --- a/resources/i18n/it_IT/fdmprinter.def.json.po +++ b/resources/i18n/it_IT/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-05-30 15:31+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -2119,11 +2119,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "Origine del centro" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "Questo tipo di materiale è quello che si stacca in modo netto quando viene riscaldato (cristallino) oppure è il tipo che produce lunghe catene di polimeri intrecciati (non cristallino)?" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." diff --git a/resources/i18n/ja_JP/cura.po b/resources/i18n/ja_JP/cura.po index 3f5cb15bbb..37ef413bdd 100644 --- a/resources/i18n/ja_JP/cura.po +++ b/resources/i18n/ja_JP/cura.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 10:00+0000\n" +"POT-Creation-Date: 2023-06-02 11:57+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5061,13 +5061,13 @@ msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" msgstr[0] "選択したモデルで印刷:" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "選択した複数のモデル" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "コピーの数" @@ -6677,22 +6677,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "プリンタを手動で追加する" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "製造元" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "プロファイル作成者" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "プリンター名" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "プリンターに名前を付けてください" diff --git a/resources/i18n/ja_JP/fdmprinter.def.json.po b/resources/i18n/ja_JP/fdmprinter.def.json.po index b35499f296..a83ec32db4 100644 --- a/resources/i18n/ja_JP/fdmprinter.def.json.po +++ b/resources/i18n/ja_JP/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-05-30 15:31+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -2119,11 +2119,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "中心位置" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "この材料は加熱時にきれいに分解するタイプ (結晶性) または長く絡み合ったポリマー鎖 (非結晶) を作り出すタイプのいずれですか?" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." diff --git a/resources/i18n/ko_KR/cura.po b/resources/i18n/ko_KR/cura.po index d62bad7fdb..14edd5efc4 100644 --- a/resources/i18n/ko_KR/cura.po +++ b/resources/i18n/ko_KR/cura.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 10:00+0000\n" +"POT-Creation-Date: 2023-06-02 11:57+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5060,13 +5060,13 @@ msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" msgstr[0] "선택된 모델 프린팅 :" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "선택한 모델 복" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "복제할 수" @@ -6680,22 +6680,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "수동으로 프린터 추가" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "제조업체" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "프로파일 원작자" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "프린터 이름" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "프린터의 이름을 설정하십시오" diff --git a/resources/i18n/ko_KR/fdmprinter.def.json.po b/resources/i18n/ko_KR/fdmprinter.def.json.po index 38f4eb3b1a..088f73daa2 100644 --- a/resources/i18n/ko_KR/fdmprinter.def.json.po +++ b/resources/i18n/ko_KR/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-05-30 15:31+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -2119,11 +2119,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "센터 원점" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "이 소재는 가열 시 깔끔하게 분리되는 유형(결정형)입니까? 아니면 길게 얽힌 폴리머 체인을 생성하는 유형(비결정형)입니까?" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." diff --git a/resources/i18n/nl_NL/cura.po b/resources/i18n/nl_NL/cura.po index dcc5a6f48b..1105fa6fd3 100644 --- a/resources/i18n/nl_NL/cura.po +++ b/resources/i18n/nl_NL/cura.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 10:00+0000\n" +"POT-Creation-Date: 2023-06-02 11:57+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5074,14 +5074,14 @@ msgid_plural "Print Selected Models With:" msgstr[0] "Geselecteerd model printen met:" msgstr[1] "Geselecteerde modellen printen met:" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Geselecteerd model verveelvoudigen" msgstr[1] "Geselecteerde modellen verveelvoudigen" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "Aantal exemplaren" @@ -6698,22 +6698,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Printer handmatig toevoegen" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "Fabrikant" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "Profieleigenaar" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "Printernaam" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "Geef uw printer een naam" diff --git a/resources/i18n/nl_NL/fdmprinter.def.json.po b/resources/i18n/nl_NL/fdmprinter.def.json.po index bad2fa3c5f..58244b4637 100644 --- a/resources/i18n/nl_NL/fdmprinter.def.json.po +++ b/resources/i18n/nl_NL/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-05-30 15:31+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -2119,11 +2119,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "Is oorsprongpunt centraal" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "Breekt dit materiaal recht af wanneer het wordt verwarmd (kristallijn) of produceert het lange, met elkaar verweven polymeerketens (niet-kristallijn)?" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." diff --git a/resources/i18n/pl_PL/cura.po b/resources/i18n/pl_PL/cura.po index 64e0ec0659..127cb278af 100644 --- a/resources/i18n/pl_PL/cura.po +++ b/resources/i18n/pl_PL/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 10:00+0000\n" +"POT-Creation-Date: 2023-06-02 11:57+0000\n" "PO-Revision-Date: 2021-09-07 08:02+0200\n" "Last-Translator: Mariusz Matłosz \n" "Language-Team: Mariusz Matłosz , reprapy.pl\n" @@ -5057,14 +5057,14 @@ msgid_plural "Print Selected Models With:" msgstr[0] "Wydrukuj wybrany model z:" msgstr[1] "Wydrukuj wybrane modele z:" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Zduplikuj wybrany model" msgstr[1] "Zduplikuj wybrane modele" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "Liczba kopii" @@ -6674,22 +6674,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "Producent" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "Nazwa drukarki" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "" diff --git a/resources/i18n/pl_PL/fdmprinter.def.json.po b/resources/i18n/pl_PL/fdmprinter.def.json.po index 48be25a8b3..6539a72d98 100644 --- a/resources/i18n/pl_PL/fdmprinter.def.json.po +++ b/resources/i18n/pl_PL/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-05-30 15:31+0000\n" "PO-Revision-Date: 2019-11-15 15:34+0100\n" "Last-Translator: Mariusz Matłosz \n" "Language-Team: Mariusz Matłosz , reprapy.pl\n" @@ -2123,11 +2123,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "Środek to Początek" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "Czy ten rodzaj materiału odłamuje się łatwo po podgrzaniu (krystaliczny), czy też jest to tworzywo, które wytwarza długie splecione łańcuchy polimerowe (niekrystaliczne)?" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." diff --git a/resources/i18n/pt_BR/cura.po b/resources/i18n/pt_BR/cura.po index c7c687b026..b14709a6e1 100644 --- a/resources/i18n/pt_BR/cura.po +++ b/resources/i18n/pt_BR/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 10:00+0000\n" +"POT-Creation-Date: 2023-06-02 11:57+0000\n" "PO-Revision-Date: 2023-02-17 17:37+0100\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" @@ -5071,14 +5071,14 @@ msgid_plural "Print Selected Models With:" msgstr[0] "Imprimir Modelo Selecionado Com:" msgstr[1] "Imprimir Modelos Selecionados Com:" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Multiplicar Modelo Selecionado" msgstr[1] "Multiplicar Modelos Selecionados" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "Número de Cópias" @@ -6700,22 +6700,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Adicionar impressora manualmente" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "Fabricante" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "Autor do perfil" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "Nome da impressora" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "Por favor dê um nome à sua impressora" diff --git a/resources/i18n/pt_BR/fdmprinter.def.json.po b/resources/i18n/pt_BR/fdmprinter.def.json.po index b7556904a2..011ebae84f 100644 --- a/resources/i18n/pt_BR/fdmprinter.def.json.po +++ b/resources/i18n/pt_BR/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.0\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-05-30 15:31+0000\n" "PO-Revision-Date: 2023-02-17 16:31+0100\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" @@ -2124,11 +2124,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "Origem é no Centro" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "Este material é do tipo que se destaca completamente quando aquecido (cristalino), ou é o tipo que produz cadeias de polímero entrelaçadas (não-cristalino)?" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." diff --git a/resources/i18n/pt_PT/cura.po b/resources/i18n/pt_PT/cura.po index ebe4e3ac85..26dd8589ef 100644 --- a/resources/i18n/pt_PT/cura.po +++ b/resources/i18n/pt_PT/cura.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 10:00+0000\n" +"POT-Creation-Date: 2023-06-02 11:57+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5072,14 +5072,14 @@ msgid_plural "Print Selected Models With:" msgstr[0] "Imprimir Modelo Selecionado Com:" msgstr[1] "Imprimir modelos selecionados com:" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Multiplicar Modelo Selecionado" msgstr[1] "Multiplicar modelos selecionados" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "Número de Cópias" @@ -6697,22 +6697,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Adicionar impressora manualmente" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "Fabricante" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "Autor do perfil" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "Nome da impressora" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "Atribuir um nome à impressora" diff --git a/resources/i18n/pt_PT/fdmprinter.def.json.po b/resources/i18n/pt_PT/fdmprinter.def.json.po index 085c134216..785d348855 100644 --- a/resources/i18n/pt_PT/fdmprinter.def.json.po +++ b/resources/i18n/pt_PT/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-05-30 15:31+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -2119,11 +2119,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "O Centro é a Origem" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "Este tipo de material é daquele que se separa de forma regular quando aquecido (cristalino) ou daquele que cria longas cadeias de polímero entrelaçado (não cristalino)?" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." diff --git a/resources/i18n/ru_RU/cura.po b/resources/i18n/ru_RU/cura.po index 21439e7f34..9179e549c8 100644 --- a/resources/i18n/ru_RU/cura.po +++ b/resources/i18n/ru_RU/cura.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 10:00+0000\n" +"POT-Creation-Date: 2023-06-02 11:57+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5084,7 +5084,7 @@ msgstr[0] "Печать выбранной модели:" msgstr[1] "Печать выбранных моделей:" msgstr[2] "Печать выбранных моделей:" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" @@ -5092,7 +5092,7 @@ msgstr[0] "Размножить выбранную модель" msgstr[1] "Размножить выбранные модели" msgstr[2] "Размножить выбранные модели" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "Количество копий" @@ -6712,22 +6712,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Добавить принтер вручную" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "Производитель" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "Автор профиля" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "Имя принтера" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "Присвойте имя принтеру" diff --git a/resources/i18n/ru_RU/fdmprinter.def.json.po b/resources/i18n/ru_RU/fdmprinter.def.json.po index 0e15fb2991..b25ed3dee6 100644 --- a/resources/i18n/ru_RU/fdmprinter.def.json.po +++ b/resources/i18n/ru_RU/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-05-30 15:31+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -2119,11 +2119,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "Начало координат в центре" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "Это материал, который при нагревании легко ломается по четким линиям (кристаллический) или образует длинные сплетающиеся полимерные цепочки (некристаллический)?" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." diff --git a/resources/i18n/tr_TR/cura.po b/resources/i18n/tr_TR/cura.po index 32973a9bd8..54d36bf526 100644 --- a/resources/i18n/tr_TR/cura.po +++ b/resources/i18n/tr_TR/cura.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 10:00+0000\n" +"POT-Creation-Date: 2023-06-02 11:57+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5074,14 +5074,14 @@ msgid_plural "Print Selected Models With:" msgstr[0] "Seçili Modeli Şununla Yazdır:" msgstr[1] "Seçili Modelleri Şununla Yazdır:" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Seçili Modeli Çoğalt" msgstr[1] "Seçili Modelleri Çoğalt" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "Kopya Sayısı" @@ -6698,22 +6698,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Yazıcıyı manuel olarak ekle" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "Üretici" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "Profil sahibi" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "Yazıcı adı" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "Lütfen yazıcınızı adlandırın" diff --git a/resources/i18n/tr_TR/fdmprinter.def.json.po b/resources/i18n/tr_TR/fdmprinter.def.json.po index bbbc2f9f28..2def22b1ca 100644 --- a/resources/i18n/tr_TR/fdmprinter.def.json.po +++ b/resources/i18n/tr_TR/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-05-30 15:31+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -2119,11 +2119,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "Merkez Nokta" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "Bu malzeme ısıtıldığında temiz bir şekilde parçalanan tür de mi (kristalli) yoksa uzun iç içe polimer zincirler (kristal olmayan) oluşturan türde mi?" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." diff --git a/resources/i18n/zh_CN/cura.po b/resources/i18n/zh_CN/cura.po index 7e938ba782..2cf4597784 100644 --- a/resources/i18n/zh_CN/cura.po +++ b/resources/i18n/zh_CN/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 10:00+0000\n" +"POT-Creation-Date: 2023-06-02 11:57+0000\n" "PO-Revision-Date: 2022-07-15 11:06+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -5062,13 +5062,13 @@ msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" msgstr[0] "打印所选模型:" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "复制所选模型" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "复制个数" @@ -6682,22 +6682,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "手动添加打印机" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "制造商" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "配置文件作者" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "打印机名称" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "请为您的打印机命名" diff --git a/resources/i18n/zh_CN/fdmprinter.def.json.po b/resources/i18n/zh_CN/fdmprinter.def.json.po index c07b05b7e6..1a5bf94c4a 100644 --- a/resources/i18n/zh_CN/fdmprinter.def.json.po +++ b/resources/i18n/zh_CN/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-05-30 15:31+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -2119,11 +2119,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "位于中心" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "该材料为受热后脱落干净的类型(晶体),还是会产生长交织状聚合物链的类型(非晶体)?" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." diff --git a/resources/i18n/zh_TW/cura.po b/resources/i18n/zh_TW/cura.po index e3ee2e12e7..501d517a3d 100644 --- a/resources/i18n/zh_TW/cura.po +++ b/resources/i18n/zh_TW/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 10:00+0000\n" +"POT-Creation-Date: 2023-06-02 11:57+0000\n" "PO-Revision-Date: 2022-01-02 19:59+0800\n" "Last-Translator: Valen Chang \n" "Language-Team: Valen Chang \n" @@ -5060,13 +5060,13 @@ msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" msgstr[0] "列印所選模型:" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "複製所選模型" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "複製個數" @@ -6673,22 +6673,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "手動新增印表機" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "製造商" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "列印參數作者" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "印表機名稱" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "請為你的印表機取一個名稱" diff --git a/resources/i18n/zh_TW/fdmprinter.def.json.po b/resources/i18n/zh_TW/fdmprinter.def.json.po index 011a73f6fd..93d4ed84f9 100644 --- a/resources/i18n/zh_TW/fdmprinter.def.json.po +++ b/resources/i18n/zh_TW/fdmprinter.def.json.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-05-30 15:31+0000\n" "PO-Revision-Date: 2022-01-02 20:24+0800\n" "Last-Translator: Valen Chang \n" "Language-Team: Valen Chang \n" @@ -2124,11 +2124,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "原點是否位於中心" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "這種線材高溫時是脆斷的類型(晶狀),還是拉絲的類型(非晶狀)?" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg new file mode 100644 index 0000000000..e042d43090 --- /dev/null +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg @@ -0,0 +1,29 @@ +[general] +definition = ultimaker_s3 +name = Annealing +version = 4 + +[metadata] +intent_category = annealing +material = generic_petcf +quality_type = fast +setting_version = 22 +type = intent +variant = CC 0.4 + +[values] +infill_sparse_density = 100 +jerk_print = 30 +material_shrinkage_percentage_xy = 100.3 +material_shrinkage_percentage_z = 102.0 +speed_infill = =speed_print +speed_layer_0 = 20 +speed_print = 25 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_enable = True +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg new file mode 100644 index 0000000000..2edf56f19b --- /dev/null +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s3 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_petcf +quality_type = fast +setting_version = 22 +type = intent +variant = CC 0.4 + +[values] +jerk_print = 30 +speed_infill = =speed_print +speed_print = 25 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg new file mode 100644 index 0000000000..8d8ec0f3fd --- /dev/null +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg @@ -0,0 +1,29 @@ +[general] +definition = ultimaker_s3 +name = Annealing +version = 4 + +[metadata] +intent_category = annealing +material = generic_petcf +quality_type = draft +setting_version = 22 +type = intent +variant = CC 0.4 + +[values] +infill_sparse_density = 100 +jerk_print = 30 +material_shrinkage_percentage_xy = 100.3 +material_shrinkage_percentage_z = 102.0 +speed_infill = =speed_print +speed_layer_0 = 20 +speed_print = 20 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_enable = True +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..7204c13c5e --- /dev/null +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s3 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_petcf +quality_type = draft +setting_version = 22 +type = intent +variant = CC 0.4 + +[values] +jerk_print = 30 +speed_infill = =speed_print +speed_print = 20 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg new file mode 100644 index 0000000000..90f8fb6c16 --- /dev/null +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg @@ -0,0 +1,29 @@ +[general] +definition = ultimaker_s3 +name = Annealing +version = 4 + +[metadata] +intent_category = annealing +material = generic_petcf +quality_type = fast +setting_version = 22 +type = intent +variant = CC 0.6 + +[values] +infill_sparse_density = 100 +jerk_print = 30 +material_shrinkage_percentage_xy = 100.3 +material_shrinkage_percentage_z = 102.0 +speed_infill = =speed_print +speed_layer_0 = 20 +speed_print = 25 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_enable = True +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg new file mode 100644 index 0000000000..f8a4feb35e --- /dev/null +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s3 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_petcf +quality_type = fast +setting_version = 22 +type = intent +variant = CC 0.6 + +[values] +jerk_print = 30 +speed_infill = =speed_print +speed_print = 25 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg new file mode 100644 index 0000000000..392f21098a --- /dev/null +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg @@ -0,0 +1,29 @@ +[general] +definition = ultimaker_s3 +name = Annealing +version = 4 + +[metadata] +intent_category = annealing +material = generic_petcf +quality_type = draft +setting_version = 22 +type = intent +variant = CC 0.6 + +[values] +infill_sparse_density = 100 +jerk_print = 30 +material_shrinkage_percentage_xy = 100.3 +material_shrinkage_percentage_z = 102.0 +speed_infill = =speed_print +speed_layer_0 = 20 +speed_print = 25 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_enable = True +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..4ff1aa7403 --- /dev/null +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s3 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_petcf +quality_type = draft +setting_version = 22 +type = intent +variant = CC 0.6 + +[values] +jerk_print = 30 +speed_infill = =speed_print +speed_print = 25 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg new file mode 100644 index 0000000000..923467092e --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg @@ -0,0 +1,29 @@ +[general] +definition = ultimaker_s5 +name = Annealing +version = 4 + +[metadata] +intent_category = annealing +material = generic_petcf +quality_type = fast +setting_version = 22 +type = intent +variant = CC 0.4 + +[values] +infill_sparse_density = 100 +jerk_print = 30 +material_shrinkage_percentage_xy = 100.3 +material_shrinkage_percentage_z = 102.0 +speed_infill = =speed_print +speed_layer_0 = 20 +speed_print = 25 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_enable = True +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg new file mode 100644 index 0000000000..502547c056 --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s5 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_petcf +quality_type = fast +setting_version = 22 +type = intent +variant = CC 0.4 + +[values] +jerk_print = 30 +speed_infill = =speed_print +speed_print = 25 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg new file mode 100644 index 0000000000..8a09c840a1 --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg @@ -0,0 +1,29 @@ +[general] +definition = ultimaker_s5 +name = Annealing +version = 4 + +[metadata] +intent_category = annealing +material = generic_petcf +quality_type = draft +setting_version = 22 +type = intent +variant = CC 0.4 + +[values] +infill_sparse_density = 100 +jerk_print = 30 +material_shrinkage_percentage_xy = 100.3 +material_shrinkage_percentage_z = 102.0 +speed_infill = =speed_print +speed_layer_0 = 20 +speed_print = 20 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_enable = True +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..796c2b39c2 --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s5 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_petcf +quality_type = draft +setting_version = 22 +type = intent +variant = CC 0.4 + +[values] +jerk_print = 30 +speed_infill = =speed_print +speed_print = 20 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg new file mode 100644 index 0000000000..069c039879 --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg @@ -0,0 +1,29 @@ +[general] +definition = ultimaker_s5 +name = Annealing +version = 4 + +[metadata] +intent_category = annealing +material = generic_petcf +quality_type = fast +setting_version = 22 +type = intent +variant = CC 0.6 + +[values] +infill_sparse_density = 100 +jerk_print = 30 +material_shrinkage_percentage_xy = 100.3 +material_shrinkage_percentage_z = 102.0 +speed_infill = =speed_print +speed_layer_0 = 20 +speed_print = 25 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_enable = True +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg new file mode 100644 index 0000000000..99778037cb --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s5 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_petcf +quality_type = fast +setting_version = 22 +type = intent +variant = CC 0.6 + +[values] +jerk_print = 30 +speed_infill = =speed_print +speed_print = 25 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg new file mode 100644 index 0000000000..55faf12587 --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg @@ -0,0 +1,29 @@ +[general] +definition = ultimaker_s5 +name = Annealing +version = 4 + +[metadata] +intent_category = annealing +material = generic_petcf +quality_type = draft +setting_version = 22 +type = intent +variant = CC 0.6 + +[values] +infill_sparse_density = 100 +jerk_print = 30 +material_shrinkage_percentage_xy = 100.3 +material_shrinkage_percentage_z = 102.0 +speed_infill = =speed_print +speed_layer_0 = 20 +speed_print = 25 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_enable = True +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..ec3ae4c8ac --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s5 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_petcf +quality_type = draft +setting_version = 22 +type = intent +variant = CC 0.6 + +[values] +jerk_print = 30 +speed_infill = =speed_print +speed_print = 25 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/qml/Menus/ContextMenu.qml b/resources/qml/Menus/ContextMenu.qml index 65f3409c8a..f7029939cd 100644 --- a/resources/qml/Menus/ContextMenu.qml +++ b/resources/qml/Menus/ContextMenu.qml @@ -44,8 +44,19 @@ Cura.Menu onTriggered: CuraActions.setExtruderForSelection(model.id) shortcut: "Ctrl+" + (model.index + 1) } - // Add it to the fifth position (and above) as we want it to be added after the extruder header. - onObjectAdded: function(index, object) { base.insertItem(index + 5, object) } + + onObjectAdded: function(index, object) { + var extruder_header_location = 5; + // Find the location of the extruder header and insert it below that. + for (var i = 0; i < base.count; i++) + { + if(base.itemAt(i) === extruderHeader) + { + extruder_header_location = i + 1; + } + } + base.insertItem(extruder_header_location + index, object) + } onObjectRemoved: function(index, object) { base.removeItem(object) } } diff --git a/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml b/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml index b2bdf43915..eb19e5234e 100644 --- a/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml +++ b/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Ultimaker B.V. +// Copyright (c) 2023 UltiMaker // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.15 @@ -69,6 +69,8 @@ Item const initialSection = "Ultimaker B.V."; base.currentSections.add(initialSection); updateCurrentItemUponSectionChange(initialSection); + // Trigger update on base.currentSections + base.currentSections = base.currentSections; } Row diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg new file mode 100644 index 0000000000..839b00aa2a --- /dev/null +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = ultimaker_s3 +name = Normal +version = 4 + +[metadata] +material = generic_petcf +quality_type = fast +setting_version = 22 +type = quality +variant = CC 0.4 +weight = -1 + +[values] +infill_overlap = =0 if infill_sparse_density > 80 else 10 +raft_airgap = =layer_height * 2 +skin_overlap = 20 +speed_infill = =speed_print +speed_print = 30 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance / 2 +support_z_distance = =layer_height * 2 +top_bottom_thickness = 0.8 + diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg new file mode 100644 index 0000000000..c021df62a0 --- /dev/null +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = ultimaker_s3 +name = Fast +version = 4 + +[metadata] +material = generic_petcf +quality_type = draft +setting_version = 22 +type = quality +variant = CC 0.4 +weight = -2 + +[values] +infill_overlap = =0 if infill_sparse_density > 80 else 10 +raft_airgap = =layer_height * 2 +skin_overlap = 20 +speed_infill = =speed_print +speed_print = 25 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance / 2 +support_z_distance = =layer_height * 2 +top_bottom_thickness = 0.8 + diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg new file mode 100644 index 0000000000..30fa75bd16 --- /dev/null +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = ultimaker_s3 +name = Normal +version = 4 + +[metadata] +material = generic_petcf +quality_type = fast +setting_version = 22 +type = quality +variant = CC 0.6 +weight = -1 + +[values] +infill_overlap = =0 if infill_sparse_density > 80 else 10 +raft_airgap = =layer_height * 2 +skin_overlap = 20 +speed_infill = =speed_print +speed_print = 30 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance / 2 +support_z_distance = =layer_height * 2 +top_bottom_thickness = 1.2 + diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg new file mode 100644 index 0000000000..4e4c273b5c --- /dev/null +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = ultimaker_s3 +name = Fast +version = 4 + +[metadata] +material = generic_petcf +quality_type = draft +setting_version = 22 +type = quality +variant = CC 0.6 +weight = -2 + +[values] +infill_overlap = =0 if infill_sparse_density > 80 else 10 +raft_airgap = =layer_height * 2 +skin_overlap = 20 +speed_infill = =speed_print +speed_print = 30 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance / 2 +support_z_distance = =layer_height * 2 +top_bottom_thickness = 1.2 + diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg new file mode 100644 index 0000000000..e3fd438910 --- /dev/null +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = ultimaker_s3 +name = Extra Fast +version = 4 + +[metadata] +material = generic_petcf +quality_type = verydraft +setting_version = 22 +type = quality +variant = CC 0.6 +weight = -3 + +[values] +infill_overlap = =0 if infill_sparse_density > 80 else 10 +raft_airgap = =layer_height * 2 +skin_overlap = 20 +speed_infill = =speed_print +speed_print = 30 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance / 2 +support_z_distance = =layer_height * 2 +top_bottom_thickness = 1.2 + diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg new file mode 100644 index 0000000000..f8cf34dfaf --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = ultimaker_s5 +name = Normal +version = 4 + +[metadata] +material = generic_petcf +quality_type = fast +setting_version = 22 +type = quality +variant = CC 0.4 +weight = -1 + +[values] +infill_overlap = =0 if infill_sparse_density > 80 else 10 +raft_airgap = =layer_height * 2 +skin_overlap = 20 +speed_infill = =speed_print +speed_print = 30 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance / 2 +support_z_distance = =layer_height * 2 +top_bottom_thickness = 0.8 + diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg new file mode 100644 index 0000000000..315e57947f --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = ultimaker_s5 +name = Fast +version = 4 + +[metadata] +material = generic_petcf +quality_type = draft +setting_version = 22 +type = quality +variant = CC 0.4 +weight = -2 + +[values] +infill_overlap = =0 if infill_sparse_density > 80 else 10 +raft_airgap = =layer_height * 2 +skin_overlap = 20 +speed_infill = =speed_print +speed_print = 25 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance / 2 +support_z_distance = =layer_height * 2 +top_bottom_thickness = 0.8 + diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg new file mode 100644 index 0000000000..3e8d8fcf23 --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = ultimaker_s5 +name = Normal +version = 4 + +[metadata] +material = generic_petcf +quality_type = fast +setting_version = 22 +type = quality +variant = CC 0.6 +weight = -1 + +[values] +infill_overlap = =0 if infill_sparse_density > 80 else 10 +raft_airgap = =layer_height * 2 +skin_overlap = 20 +speed_infill = =speed_print +speed_print = 30 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance / 2 +support_z_distance = =layer_height * 2 +top_bottom_thickness = 1.2 + diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg new file mode 100644 index 0000000000..7fbd36d296 --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = ultimaker_s5 +name = Fast +version = 4 + +[metadata] +material = generic_petcf +quality_type = draft +setting_version = 22 +type = quality +variant = CC 0.6 +weight = -2 + +[values] +infill_overlap = =0 if infill_sparse_density > 80 else 10 +raft_airgap = =layer_height * 2 +skin_overlap = 20 +speed_infill = =speed_print +speed_print = 30 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance / 2 +support_z_distance = =layer_height * 2 +top_bottom_thickness = 1.2 + diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg new file mode 100644 index 0000000000..30aea77686 --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = ultimaker_s5 +name = Extra Fast +version = 4 + +[metadata] +material = generic_petcf +quality_type = verydraft +setting_version = 22 +type = quality +variant = CC 0.6 +weight = -3 + +[values] +infill_overlap = =0 if infill_sparse_density > 80 else 10 +raft_airgap = =layer_height * 2 +skin_overlap = 20 +speed_infill = =speed_print +speed_print = 30 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance / 2 +support_z_distance = =layer_height * 2 +top_bottom_thickness = 1.2 + diff --git a/resources/themes/cura-dark/theme.json b/resources/themes/cura-dark/theme.json index ead7bbcb2f..64c3e002a9 100644 --- a/resources/themes/cura-dark/theme.json +++ b/resources/themes/cura-dark/theme.json @@ -81,9 +81,9 @@ "text_detail": [255, 255, 255, 172], "text_link": "accent_1", "text_inactive": [118, 118, 118, 255], - "text_hover": [255, 255, 255, 204], - "text_scene": [255, 255, 255, 162], - "text_scene_hover": [255, 255, 255, 204], + "text_hover": [255, 255, 255, 255], + "text_scene": [250, 250, 250, 255], + "text_scene_hover": [255, 255, 255, 255], "printer_type_label_background": [95, 95, 95, 255], diff --git a/resources/variants/ultimaker3_bb0.8.inst.cfg b/resources/variants/ultimaker3_bb0.8.inst.cfg index 6dedea2336..0450141a6f 100644 --- a/resources/variants/ultimaker3_bb0.8.inst.cfg +++ b/resources/variants/ultimaker3_bb0.8.inst.cfg @@ -39,7 +39,6 @@ skin_overlap = 5 speed_prime_tower = =math.ceil(speed_print * 7 / 35) speed_print = 35 speed_support = =math.ceil(speed_print * 25 / 35) -speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) support_angle = 60 diff --git a/resources/variants/ultimaker3_bb04.inst.cfg b/resources/variants/ultimaker3_bb04.inst.cfg index 50f49d8623..b3ba87ac59 100644 --- a/resources/variants/ultimaker3_bb04.inst.cfg +++ b/resources/variants/ultimaker3_bb04.inst.cfg @@ -19,7 +19,6 @@ machine_nozzle_tip_outer_diameter = 1.0 retraction_min_travel = =3 * line_width speed_prime_tower = =math.ceil(speed_print * 10 / 35) speed_support = =math.ceil(speed_print * 25 / 35) -speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) support_bottom_height = =layer_height * 2 diff --git a/resources/variants/ultimaker3_extended_bb0.8.inst.cfg b/resources/variants/ultimaker3_extended_bb0.8.inst.cfg index 319f101377..ac5af755b0 100644 --- a/resources/variants/ultimaker3_extended_bb0.8.inst.cfg +++ b/resources/variants/ultimaker3_extended_bb0.8.inst.cfg @@ -39,7 +39,6 @@ skin_overlap = 5 speed_prime_tower = =math.ceil(speed_print * 7 / 35) speed_print = 35 speed_support = =math.ceil(speed_print * 25 / 35) -speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) support_angle = 60 diff --git a/resources/variants/ultimaker3_extended_bb04.inst.cfg b/resources/variants/ultimaker3_extended_bb04.inst.cfg index 12d45c483b..1fa6241d20 100644 --- a/resources/variants/ultimaker3_extended_bb04.inst.cfg +++ b/resources/variants/ultimaker3_extended_bb04.inst.cfg @@ -19,7 +19,6 @@ machine_nozzle_tip_outer_diameter = 1.0 retraction_min_travel = =3 * line_width speed_prime_tower = =math.ceil(speed_print * 10 / 35) speed_support = =math.ceil(speed_print * 25 / 35) -speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) support_bottom_height = =layer_height * 2 diff --git a/resources/variants/ultimaker_s3_bb0.8.inst.cfg b/resources/variants/ultimaker_s3_bb0.8.inst.cfg index c485f85b34..599a9e2e9f 100644 --- a/resources/variants/ultimaker_s3_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s3_bb0.8.inst.cfg @@ -36,7 +36,6 @@ retraction_min_travel = =line_width * 3 speed_prime_tower = =math.ceil(speed_print * 7 / 35) speed_print = 35 speed_support = =math.ceil(speed_print * 25 / 35) -speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) support_angle = 60 diff --git a/resources/variants/ultimaker_s3_bb04.inst.cfg b/resources/variants/ultimaker_s3_bb04.inst.cfg index 54df4e4ac9..e50241aa3a 100644 --- a/resources/variants/ultimaker_s3_bb04.inst.cfg +++ b/resources/variants/ultimaker_s3_bb04.inst.cfg @@ -19,7 +19,6 @@ machine_nozzle_tip_outer_diameter = 1.0 retraction_min_travel = =3 * line_width speed_prime_tower = =math.ceil(speed_print * 10 / 35) speed_support = =math.ceil(speed_print * 25 / 35) -speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) support_bottom_height = =layer_height * 2 diff --git a/resources/variants/ultimaker_s5_bb0.8.inst.cfg b/resources/variants/ultimaker_s5_bb0.8.inst.cfg index ad89ba02b0..75406707fe 100644 --- a/resources/variants/ultimaker_s5_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s5_bb0.8.inst.cfg @@ -36,7 +36,6 @@ retraction_min_travel = =line_width * 3 speed_prime_tower = =math.ceil(speed_print * 7 / 35) speed_print = 35 speed_support = =math.ceil(speed_print * 25 / 35) -speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) support_angle = 60 diff --git a/resources/variants/ultimaker_s5_bb04.inst.cfg b/resources/variants/ultimaker_s5_bb04.inst.cfg index 55b556777c..2058185bb8 100644 --- a/resources/variants/ultimaker_s5_bb04.inst.cfg +++ b/resources/variants/ultimaker_s5_bb04.inst.cfg @@ -19,7 +19,6 @@ machine_nozzle_tip_outer_diameter = 1.0 retraction_min_travel = =3 * line_width speed_prime_tower = =math.ceil(speed_print * 10 / 35) speed_support = =math.ceil(speed_print * 25 / 35) -speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) support_bottom_height = =layer_height * 2 diff --git a/resources/variants/ultimaker_s7_bb0.8.inst.cfg b/resources/variants/ultimaker_s7_bb0.8.inst.cfg index 11f7f5ee6d..29ee17cf14 100644 --- a/resources/variants/ultimaker_s7_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s7_bb0.8.inst.cfg @@ -37,7 +37,6 @@ retraction_min_travel = =line_width * 3 speed_prime_tower = =math.ceil(speed_print * 7 / 35) speed_print = 35 speed_support = =math.ceil(speed_print * 25 / 35) -speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) support_angle = 60 diff --git a/resources/variants/ultimaker_s7_bb04.inst.cfg b/resources/variants/ultimaker_s7_bb04.inst.cfg index 00bd9edf77..bead299de3 100644 --- a/resources/variants/ultimaker_s7_bb04.inst.cfg +++ b/resources/variants/ultimaker_s7_bb04.inst.cfg @@ -20,7 +20,6 @@ retraction_amount = 4.5 retraction_min_travel = =3 * line_width speed_prime_tower = =math.ceil(speed_print * 10 / 35) speed_support = =math.ceil(speed_print * 25 / 35) -speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) support_bottom_height = =layer_height * 2