Merge branch '5.4' into CURA-9709_custom_icons_with_profiles

# Conflicts:
#	cura/Machines/Models/IntentSelectionModel.py
This commit is contained in:
Jelle Spijker 2023-06-07 16:20:48 +02:00
commit 22134f2d3c
No known key found for this signature in database
GPG key ID: 034D1C0527888B65
212 changed files with 1857 additions and 911 deletions

View file

@ -77,7 +77,7 @@ jobs:
- name: Setup Python and pip - name: Setup Python and pip
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with:
python-version: "3.10.x" python-version: "3.11.x"
cache: 'pip' cache: 'pip'
cache-dependency-path: .github/workflows/requirements-conan-package.txt cache-dependency-path: .github/workflows/requirements-conan-package.txt
@ -146,23 +146,19 @@ jobs:
if latest_branch_tag: if latest_branch_tag:
# %% Get the actual version # %% Get the actual version
no_commits = 0 sha_commit = repo.commit().hexsha[:6]
for commit in repo.iter_commits("HEAD"):
if commit == latest_branch_tag.commit:
break
no_commits += 1
latest_branch_version_prerelease = latest_branch_version.pre latest_branch_version_prerelease = latest_branch_version.pre
if latest_branch_version.pre and not "." in str(latest_branch_version.pre): if latest_branch_version.pre and not "." in str(latest_branch_version.pre):
# The prerealese did not contain a version number, default it to 1 # The prerealese did not contain a version number, default it to 1
latest_branch_version_prerelease = f"{latest_branch_version.pre}.1" latest_branch_version_prerelease = f"{latest_branch_version.pre}.1"
if event_name == "pull_request": if event_name == "pull_request":
actual_version = f"{latest_branch_version.major}.{latest_branch_version.minor}.{latest_branch_version.patch}-{str(latest_branch_version_prerelease).lower()}+{buildmetadata}pr_{issue_number}_{no_commits}" actual_version = f"{latest_branch_version.major}.{latest_branch_version.minor}.{latest_branch_version.patch}-{str(latest_branch_version_prerelease).lower()}+{buildmetadata}pr_{issue_number}_{sha_commit}"
channel_metadata = f"{channel}_{no_commits}" channel_metadata = f"{channel}_{sha_commit}"
else: else:
if channel in ("stable", "_", ""): if channel in ("stable", "_", ""):
channel_metadata = f"{no_commits}" channel_metadata = f"{sha_commit}"
else: else:
channel_metadata = f"{channel}_{no_commits}" channel_metadata = f"{channel}_{sha_commit}"
if is_release_branch: if is_release_branch:
if latest_branch_version.pre == "" and branch_version > latest_branch_version: if latest_branch_version.pre == "" and branch_version > latest_branch_version:
actual_version = f"{branch_version.major}.{branch_version.minor}.0-beta.1+{buildmetadata}{channel_metadata}" actual_version = f"{branch_version.major}.{branch_version.minor}.0-beta.1+{buildmetadata}{channel_metadata}"
@ -178,18 +174,16 @@ jobs:
actual_version = f"{latest_branch_version.major}.{latest_branch_version.minor}.{latest_branch_version.patch}-{str(latest_branch_version.pre).split('.')[0]}.{bump_up_release_tag}+{buildmetadata}{channel_metadata}" actual_version = f"{latest_branch_version.major}.{latest_branch_version.minor}.{latest_branch_version.patch}-{str(latest_branch_version.pre).split('.')[0]}.{bump_up_release_tag}+{buildmetadata}{channel_metadata}"
else: else:
max_branches_version = Version("0.0.0") max_branches_version = Version("0.0.0")
branches_no_commits = no_commits
for branch in repo.references: for branch in repo.references:
try: try:
if "remotes/origin" in branch.abspath: if "remotes/origin" in branch.abspath:
b_version = Version(branch.name.split("/")[-1]) b_version = Version(branch.name.split("/")[-1])
if b_version < Version("6.0.0") and b_version > max_branches_version: if b_version < Version("6.0.0") and b_version > max_branches_version:
max_branches_version = b_version max_branches_version = b_version
branches_no_commits = repo.commit().count() - branch.commit.count()
except: except:
pass pass
if max_branches_version > latest_branch_version: if max_branches_version > latest_branch_version:
actual_version = f"{max_branches_version.major}.{int(str(max_branches_version.minor)) + 1}.0-alpha+{buildmetadata}{channel}_{branches_no_commits}" actual_version = f"{max_branches_version.major}.{int(str(max_branches_version.minor)) + 1}.0-alpha+{buildmetadata}{channel}_{sha_commit}"
else: else:
actual_version = f"{latest_branch_version.major}.{int(str(latest_branch_version.minor)) + 1}.0-alpha+{buildmetadata}{channel_metadata}" actual_version = f"{latest_branch_version.major}.{int(str(latest_branch_version.minor)) + 1}.0-alpha+{buildmetadata}{channel_metadata}"

View file

@ -1,6 +1,6 @@
Submitting bug reports 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. 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 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. 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 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). 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`.

View file

@ -49,7 +49,7 @@ class CuraConan(ConanFile):
def set_version(self): def set_version(self):
if not self.version: if not self.version:
self.version = "5.4.0-alpha" self.version = "5.4.0-beta"
@property @property
def _pycharm_targets(self): def _pycharm_targets(self):
@ -270,17 +270,17 @@ class CuraConan(ConanFile):
def requirements(self): def requirements(self):
self.requires("pyarcus/5.2.2") self.requires("pyarcus/5.2.2")
self.requires("curaengine/latest@ultimaker/testing") self.requires("curaengine/(latest)@ultimaker/stable")
self.requires("pysavitar/5.2.2") self.requires("pysavitar/5.2.2")
self.requires("pynest2d/5.2.2") self.requires("pynest2d/5.2.2")
self.requires("uranium/(latest)@ultimaker/testing") self.requires("uranium/(latest)@ultimaker/stable")
self.requires("cura_binary_data/(latest)@ultimaker/testing") self.requires("cura_binary_data/(latest)@ultimaker/stable")
self.requires("cpython/3.10.4") self.requires("cpython/3.10.4")
if self.options.internal: if self.options.internal:
self.requires("cura_private_data/(latest)@ultimaker/testing") self.requires("cura_private_data/(latest)@ultimaker/testing")
self.requires("fdm_materials/(latest)@internal/testing") self.requires("fdm_materials/(latest)@internal/testing")
else: else:
self.requires("fdm_materials/(latest)@ultimaker/testing") self.requires("fdm_materials/(latest)@ultimaker/stable")
def build_requirements(self): def build_requirements(self):
if self.options.devtools: if self.options.devtools:

View file

@ -53,6 +53,12 @@ class IntentCategoryModel(ListModel):
"name": catalog.i18nc("@label", "Draft"), "name": catalog.i18nc("@label", "Draft"),
"description": catalog.i18nc("@text", "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction.") "description": catalog.i18nc("@text", "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction.")
} }
cls._translations["annealing"] = {
"name": catalog.i18nc("@label", "Annealing"),
"description": catalog.i18nc("@text",
"The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance.")
}
return cls._translations return cls._translations
def __init__(self, intent_category: str) -> None: def __init__(self, intent_category: str) -> None:

View file

@ -57,8 +57,8 @@ class IntentSelectionModel(ListModel):
self._onChange() self._onChange()
_default_intent_categories = ["default", "visual", "engineering", "quick"] _default_intent_categories = ["default", "visual", "engineering", "quick", "annealing"]
_icons = {"default": "GearCheck", "visual": "Visual", "engineering": "Nut", "quick": "SpeedOMeter"} _icons = {"default": "GearCheck", "visual": "Visual", "engineering": "Nut", "quick": "SpeedOMeter", "annealing": "Anneal"}
def _onContainerChange(self, container: ContainerInterface) -> None: def _onContainerChange(self, container: ContainerInterface) -> None:
"""Updates the list of intents if an intent profile was added or removed.""" """Updates the list of intents if an intent profile was added or removed."""

View file

@ -7,7 +7,7 @@
"author": "Ultimaker", "author": "Ultimaker",
"manufacturer": "Unknown", "manufacturer": "Unknown",
"position": "0", "position": "0",
"setting_version": 21, "setting_version": 22,
"type": "extruder" "type": "extruder"
}, },
"settings": "settings":

View file

@ -6,7 +6,7 @@
"type": "machine", "type": "machine",
"author": "Unknown", "author": "Unknown",
"manufacturer": "Unknown", "manufacturer": "Unknown",
"setting_version": 21, "setting_version": 22,
"file_formats": "text/x-gcode;model/stl;application/x-wavefront-obj;application/x3g", "file_formats": "text/x-gcode;model/stl;application/x-wavefront-obj;application/x3g",
"visible": false, "visible": false,
"has_materials": true, "has_materials": true,
@ -3065,6 +3065,16 @@
"enabled": "extruders_enabled_count > 1 and machine_nozzle_temp_enabled", "enabled": "extruders_enabled_count > 1 and machine_nozzle_temp_enabled",
"settable_per_mesh": false, "settable_per_mesh": false,
"settable_per_extruder": true "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
} }
} }
}, },
@ -4478,8 +4488,8 @@
"description": "The extruder train to use for printing the support. This is used in multi-extrusion.", "description": "The extruder train to use for printing the support. This is used in multi-extrusion.",
"type": "extruder", "type": "extruder",
"default_value": "0", "default_value": "0",
"value": "int(defaultExtruderPosition())",
"enabled": "(support_enable or support_meshes_present) and extruders_enabled_count > 1", "enabled": "(support_enable or support_meshes_present) and extruders_enabled_count > 1",
"value": "[*map(lambda x: str(x).lower() == 'true', (extruderValues('support_enable') and extruderValues('material_is_support_material')))].index(True) if any([*map(lambda x: str(x).lower() == 'true', (extruderValues('support_enable') and extruderValues('material_is_support_material')))]) else int(defaultExtruderPosition())",
"settable_per_mesh": false, "settable_per_mesh": false,
"settable_per_extruder": false, "settable_per_extruder": false,
"children": "children":
@ -4755,8 +4765,8 @@
"type": "enum", "type": "enum",
"options": "options":
{ {
"buildplate": "Force Only Buildplate", "buildplate": "On buildplate when possible",
"graceful": "On Model If Necessary" "graceful": "On model if required"
}, },
"default_value": "buildplate", "default_value": "buildplate",
"value": "'buildplate' if support_type == 'buildplate' else 'graceful'", "value": "'buildplate' if support_type == 'buildplate' else 'graceful'",

View file

@ -45,6 +45,7 @@
"gradual_support_infill_step_height": { "value": "4 * layer_height" }, "gradual_support_infill_step_height": { "value": "4 * layer_height" },
"gradual_support_infill_steps": { "value": "2 if support_interface_enable and support_structure != 'tree' else 0" }, "gradual_support_infill_steps": { "value": "2 if support_interface_enable and support_structure != 'tree' else 0" },
"infill_material_flow": { "value": "(1.95-infill_sparse_density / 100 if infill_sparse_density > 95 else 1) * material_flow" }, "infill_material_flow": { "value": "(1.95-infill_sparse_density / 100 if infill_sparse_density > 95 else 1) * material_flow" },
"infill_overlap": { "value": "0 if infill_sparse_density > 80 else 10" },
"inset_direction": { "value": "'outside_in'" }, "inset_direction": { "value": "'outside_in'" },
"jerk_infill": { "minimum_value_warning": 20 }, "jerk_infill": { "minimum_value_warning": 20 },
"jerk_prime_tower": { "minimum_value_warning": 20 }, "jerk_prime_tower": { "minimum_value_warning": 20 },
@ -112,6 +113,7 @@
"skin_material_flow": { "value": "0.95 * material_flow" }, "skin_material_flow": { "value": "0.95 * material_flow" },
"skin_material_flow_layer_0": { "value": "0.9 * material_flow_layer_0" }, "skin_material_flow_layer_0": { "value": "0.9 * material_flow_layer_0" },
"skin_monotonic": { "value": "roofing_layer_count == 0" }, "skin_monotonic": { "value": "roofing_layer_count == 0" },
"skin_overlap": { "value": "20" },
"speed_equalize_flow_width_factor": { "value": "110.0" }, "speed_equalize_flow_width_factor": { "value": "110.0" },
"speed_layer_0": { "value": "min(30, layer_height / layer_height_0 * speed_wall_0)" }, "speed_layer_0": { "value": "min(30, layer_height / layer_height_0 * speed_wall_0)" },
"speed_slowdown_layers": { "value": 1 }, "speed_slowdown_layers": { "value": 1 },

View file

@ -60,12 +60,12 @@
"acceleration_topbottom": { "value": "math.ceil(acceleration_print * 1000 / 3500)" }, "acceleration_topbottom": { "value": "math.ceil(acceleration_print * 1000 / 3500)" },
"acceleration_wall": { "value": "math.ceil(acceleration_print * 1500 / 3500)" }, "acceleration_wall": { "value": "math.ceil(acceleration_print * 1500 / 3500)" },
"acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 1000 / 1000)" }, "acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 1000 / 1000)" },
"brim_gap": { "value": "-xy_offset_layer_0 + 0.05" },
"brim_width": { "value": "3" }, "brim_width": { "value": "3" },
"cool_fan_speed": { "value": "50" }, "cool_fan_speed": { "value": "50" },
"default_material_print_temperature": { "value": "200" }, "default_material_print_temperature": { "value": "200" },
"extruder_prime_pos_abs": { "default_value": true }, "extruder_prime_pos_abs": { "default_value": true },
"gantry_height": { "value": "55" }, "gantry_height": { "value": "55" },
"infill_overlap": { "value": "0" },
"infill_pattern": { "value": "'zigzag' if infill_sparse_density > 80 else 'triangles'" }, "infill_pattern": { "value": "'zigzag' if infill_sparse_density > 80 else 'triangles'" },
"infill_wipe_dist": { "value": "0" }, "infill_wipe_dist": { "value": "0" },
"jerk_enabled": { "value": "True" }, "jerk_enabled": { "value": "True" },
@ -111,7 +111,6 @@
"retraction_min_travel": { "value": "5" }, "retraction_min_travel": { "value": "5" },
"retraction_prime_speed": { "value": "15" }, "retraction_prime_speed": { "value": "15" },
"retraction_speed": { "value": "45" }, "retraction_speed": { "value": "45" },
"skin_overlap": { "value": "10" },
"speed_prime_tower": { "value": "speed_topbottom" }, "speed_prime_tower": { "value": "speed_topbottom" },
"speed_print": { "value": "35" }, "speed_print": { "value": "35" },
"speed_support": { "value": "speed_wall_0" }, "speed_support": { "value": "speed_wall_0" },

View file

@ -58,13 +58,13 @@
"acceleration_topbottom": { "value": "math.ceil(acceleration_print * 1000 / 3500)" }, "acceleration_topbottom": { "value": "math.ceil(acceleration_print * 1000 / 3500)" },
"acceleration_wall": { "value": "math.ceil(acceleration_print * 1500 / 3500)" }, "acceleration_wall": { "value": "math.ceil(acceleration_print * 1500 / 3500)" },
"acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 1000 / 1000)" }, "acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 1000 / 1000)" },
"brim_gap": { "value": "-xy_offset_layer_0 + 0.05" },
"brim_width": { "value": "3" }, "brim_width": { "value": "3" },
"build_volume_temperature": { "maximum_value": 50 }, "build_volume_temperature": { "maximum_value": 50 },
"cool_fan_speed": { "value": "50" }, "cool_fan_speed": { "value": "50" },
"default_material_print_temperature": { "value": "200" }, "default_material_print_temperature": { "value": "200" },
"extruder_prime_pos_abs": { "default_value": true }, "extruder_prime_pos_abs": { "default_value": true },
"gantry_height": { "value": "55" }, "gantry_height": { "value": "55" },
"infill_overlap": { "value": "0" },
"infill_pattern": { "value": "'zigzag' if infill_sparse_density > 80 else 'triangles'" }, "infill_pattern": { "value": "'zigzag' if infill_sparse_density > 80 else 'triangles'" },
"infill_wipe_dist": { "value": "0" }, "infill_wipe_dist": { "value": "0" },
"jerk_enabled": { "value": "True" }, "jerk_enabled": { "value": "True" },
@ -112,7 +112,6 @@
"retraction_min_travel": { "value": "5" }, "retraction_min_travel": { "value": "5" },
"retraction_prime_speed": { "value": "15" }, "retraction_prime_speed": { "value": "15" },
"retraction_speed": { "value": "45" }, "retraction_speed": { "value": "45" },
"skin_overlap": { "value": "10" },
"speed_prime_tower": { "value": "speed_topbottom" }, "speed_prime_tower": { "value": "speed_topbottom" },
"speed_print": { "value": "35" }, "speed_print": { "value": "35" },
"speed_support": { "value": "speed_wall_0" }, "speed_support": { "value": "speed_wall_0" },

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Cura 5.1\n" "Project-Id-Version: Cura 5.1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-05-15 14:32+0000\n" "POT-Creation-Date: 2023-06-06 10:46+0000\n"
"PO-Revision-Date: 2023-02-16 20:28+0100\n" "PO-Revision-Date: 2023-02-16 20:28+0100\n"
"Last-Translator: Miroslav Šustek <sustmidown@centrum.cz>\n" "Last-Translator: Miroslav Šustek <sustmidown@centrum.cz>\n"
"Language-Team: DenyCZ <www.github.com/DenyCZ>\n" "Language-Team: DenyCZ <www.github.com/DenyCZ>\n"
@ -378,6 +378,18 @@ msgctxt "@text"
msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
msgstr "Návrhový profil je navržen pro tisk počátečních prototypů a ověření koncepce s cílem podstatného zkrácení doby tisku." msgstr "Návrhový profil je navržen pro tisk počátečních prototypů a ověření koncepce s cílem podstatného zkrácení doby tisku."
#: cura/Machines/Models/IntentCategoryModel.py:57
#: cura/Machines/Models/IntentSelectionModel.py:80
msgctxt "@label"
msgid "Annealing"
msgstr ""
#: cura/Machines/Models/IntentCategoryModel.py:59
#: cura/Machines/Models/IntentSelectionModel.py:82
msgctxt "@text"
msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance."
msgstr ""
#: cura/Machines/Models/MaterialManagementModel.py:232 #: cura/Machines/Models/MaterialManagementModel.py:232
msgctxt "@label" msgctxt "@label"
msgid "Custom Material" msgid "Custom Material"
@ -5083,7 +5095,7 @@ msgstr[0] "Tisknout vybraný model pomocí:"
msgstr[1] "Tisknout vybrané modely pomocí:" msgstr[1] "Tisknout vybrané modely pomocí:"
msgstr[2] "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" msgctxt "@title:window"
msgid "Multiply Selected Model" msgid "Multiply Selected Model"
msgid_plural "Multiply Selected Models" msgid_plural "Multiply Selected Models"
@ -5091,7 +5103,7 @@ msgstr[0] "Násobit vybraný model"
msgstr[1] "Násobit vybrané modele" msgstr[1] "Násobit vybrané modele"
msgstr[2] "Násobit vybrané modele" msgstr[2] "Násobit vybrané modele"
#: resources/qml/Menus/ContextMenu.qml:123 #: resources/qml/Menus/ContextMenu.qml:134
msgctxt "@label" msgctxt "@label"
msgid "Number of Copies" msgid "Number of Copies"
msgstr "Počet kopií" msgstr "Počet kopií"
@ -6716,22 +6728,22 @@ msgctxt "@button"
msgid "Add printer manually" msgid "Add printer manually"
msgstr "Přidat tiskárnu manuálně" msgstr "Přidat tiskárnu manuálně"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214
msgctxt "@label" msgctxt "@label"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "Výrobce" msgstr "Výrobce"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225
msgctxt "@label" msgctxt "@label"
msgid "Profile author" msgid "Profile author"
msgstr "Autor profilu" msgstr "Autor profilu"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237
msgctxt "@label" msgctxt "@label"
msgid "Printer name" msgid "Printer name"
msgstr "Název tiskárny" msgstr "Název tiskárny"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243
msgctxt "@text" msgctxt "@text"
msgid "Please name your printer" msgid "Please name your printer"
msgstr "Pojmenujte prosím svou tiskárnu" msgstr "Pojmenujte prosím svou tiskárnu"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Cura 5.1\n" "Project-Id-Version: Cura 5.1\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-04-28 10:03+0000\n" "POT-Creation-Date: 2023-06-06 13:48+0000\n"
"PO-Revision-Date: 2023-02-16 20:35+0100\n" "PO-Revision-Date: 2023-02-16 20:35+0100\n"
"Last-Translator: Miroslav Šustek <sustmidown@centrum.cz>\n" "Last-Translator: Miroslav Šustek <sustmidown@centrum.cz>\n"
"Language-Team: DenyCZ <www.github.com/DenyCZ>\n" "Language-Team: DenyCZ <www.github.com/DenyCZ>\n"
@ -1391,11 +1391,6 @@ msgctxt "min_wall_line_width description"
msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width."
msgstr "Pro struktury o šířce okolo jedno až dvojnásobku velikosti trysky musí být šířky čar upravovány, aby to se dodržovala správná tloušťka modelu. Toto nastavení ovládá minimální dovolenou šířku čáry pro zdi. Z minimální šířky čáry se také odvozuje maximální šířka, jelikož při určité tloušťce tvaru se přechází z N na N + 1 zdí, kdy je N zdí širokých, zatímco N + 1 zdi jsou úzké. Nejvyšší možná šířka čáry zdi je tedy dvojnásobek tohoto nastavení." msgstr "Pro struktury o šířce okolo jedno až dvojnásobku velikosti trysky musí být šířky čar upravovány, aby to se dodržovala správná tloušťka modelu. Toto nastavení ovládá minimální dovolenou šířku čáry pro zdi. Z minimální šířky čáry se také odvozuje maximální šířka, jelikož při určité tloušťce tvaru se přechází z N na N + 1 zdí, kdy je N zdí širokých, zatímco N + 1 zdi jsou úzké. Nejvyšší možná šířka čáry zdi je tedy dvojnásobek tohoto nastavení."
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "Force Only Buildplate"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "z_seam_position option front" msgctxt "z_seam_position option front"
msgid "Front" msgid "Front"
@ -2122,11 +2117,21 @@ msgctxt "machine_center_is_zero label"
msgid "Is Center Origin" msgid "Is Center Origin"
msgstr "Je střed počátek" msgstr "Je střed počátek"
#: fdmprinter.def.json
msgctxt "material_is_support_material label"
msgid "Is support material"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "material_crystallinity description" 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)?" 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é)?" 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 #: fdmprinter.def.json
msgctxt "magic_fuzzy_skin_outside_only description" msgctxt "magic_fuzzy_skin_outside_only description"
msgid "Jitter only the parts' outlines and not the parts' holes." msgid "Jitter only the parts' outlines and not the parts' holes."
@ -2912,9 +2917,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label"
msgid "Offset with Extruder" msgid "Offset with Extruder"
msgstr "Offset s extrudérem" msgstr "Offset s extrudérem"
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "On buildplate when possible"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "support_tree_rest_preference option graceful" msgctxt "support_tree_rest_preference option graceful"
msgid "On Model If Necessary" msgid "On model if required"
msgstr "" msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json

File diff suppressed because it is too large Load diff

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-05-15 14:32+0000\n" "POT-Creation-Date: 2023-06-06 10:46+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -378,6 +378,18 @@ msgctxt "@text"
msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
msgstr "Das Entwurfsprofil wurde für erste Prototypen und die Konzeptvalidierung entwickelt, um einen deutlich schnelleren Druck zu ermöglichen." msgstr "Das Entwurfsprofil wurde für erste Prototypen und die Konzeptvalidierung entwickelt, um einen deutlich schnelleren Druck zu ermöglichen."
#: cura/Machines/Models/IntentCategoryModel.py:57
#: cura/Machines/Models/IntentSelectionModel.py:80
msgctxt "@label"
msgid "Annealing"
msgstr ""
#: cura/Machines/Models/IntentCategoryModel.py:59
#: cura/Machines/Models/IntentSelectionModel.py:82
msgctxt "@text"
msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance."
msgstr ""
#: cura/Machines/Models/MaterialManagementModel.py:232 #: cura/Machines/Models/MaterialManagementModel.py:232
msgctxt "@label" msgctxt "@label"
msgid "Custom Material" msgid "Custom Material"
@ -5071,14 +5083,14 @@ msgid_plural "Print Selected Models With:"
msgstr[0] "Ausgewähltes Modell drucken mit:" msgstr[0] "Ausgewähltes Modell drucken mit:"
msgstr[1] "Ausgewählte Modelle drucken mit:" msgstr[1] "Ausgewählte Modelle drucken mit:"
#: resources/qml/Menus/ContextMenu.qml:92 #: resources/qml/Menus/ContextMenu.qml:103
msgctxt "@title:window" msgctxt "@title:window"
msgid "Multiply Selected Model" msgid "Multiply Selected Model"
msgid_plural "Multiply Selected Models" msgid_plural "Multiply Selected Models"
msgstr[0] "Ausgewähltes Modell multiplizieren" msgstr[0] "Ausgewähltes Modell multiplizieren"
msgstr[1] "Ausgewählte Modelle multiplizieren" msgstr[1] "Ausgewählte Modelle multiplizieren"
#: resources/qml/Menus/ContextMenu.qml:123 #: resources/qml/Menus/ContextMenu.qml:134
msgctxt "@label" msgctxt "@label"
msgid "Number of Copies" msgid "Number of Copies"
msgstr "Anzahl Kopien" msgstr "Anzahl Kopien"
@ -6695,22 +6707,22 @@ msgctxt "@button"
msgid "Add printer manually" msgid "Add printer manually"
msgstr "Drucker manuell hinzufügen" msgstr "Drucker manuell hinzufügen"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214
msgctxt "@label" msgctxt "@label"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "Hersteller" msgstr "Hersteller"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225
msgctxt "@label" msgctxt "@label"
msgid "Profile author" msgid "Profile author"
msgstr "Autor des Profils" msgstr "Autor des Profils"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237
msgctxt "@label" msgctxt "@label"
msgid "Printer name" msgid "Printer name"
msgstr "Druckername" msgstr "Druckername"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243
msgctxt "@text" msgctxt "@text"
msgid "Please name your printer" msgid "Please name your printer"
msgstr "Bitte weisen Sie Ihrem Drucker einen Namen zu" msgstr "Bitte weisen Sie Ihrem Drucker einen Namen zu"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Uranium json setting files\n" "Project-Id-Version: Uranium json setting files\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-04-28 10:03+0000\n" "POT-Creation-Date: 2023-06-06 13:48+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE\n" "Language-Team: LANGUAGE\n"
@ -1386,11 +1386,6 @@ msgctxt "min_wall_line_width description"
msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width."
msgstr "Bei dünnen Strukturen, die etwa ein- bis zweimal so groß sind wie die Düse, müssen die Linienstärken an die Dicke des Modells angepasst werden. Mit dieser Einstellung wird die Mindestlinienstärke für die Wände festgelegt. Die minimalen Linienstärken bestimmen gleichzeitig auch die maximalen Linienstärken, da wir bei einer gewissen Stärke der Geometrie von N- auf N+1-Wände übergehen, wobei die N-Wände breit und die N+1-Wände schmal sind. Die maximale Wandlinienstärke beträgt das Doppelte der minimalen Wandlinienstärke." msgstr "Bei dünnen Strukturen, die etwa ein- bis zweimal so groß sind wie die Düse, müssen die Linienstärken an die Dicke des Modells angepasst werden. Mit dieser Einstellung wird die Mindestlinienstärke für die Wände festgelegt. Die minimalen Linienstärken bestimmen gleichzeitig auch die maximalen Linienstärken, da wir bei einer gewissen Stärke der Geometrie von N- auf N+1-Wände übergehen, wobei die N-Wände breit und die N+1-Wände schmal sind. Die maximale Wandlinienstärke beträgt das Doppelte der minimalen Wandlinienstärke."
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "Force Only Buildplate"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "z_seam_position option front" msgctxt "z_seam_position option front"
msgid "Front" msgid "Front"
@ -2119,11 +2114,21 @@ msgctxt "machine_center_is_zero label"
msgid "Is Center Origin" msgid "Is Center Origin"
msgstr "Is-Center-Ursprung" msgstr "Is-Center-Ursprung"
#: fdmprinter.def.json
msgctxt "material_is_support_material label"
msgid "Is support material"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "material_crystallinity description" 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)?" 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)?" 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 #: fdmprinter.def.json
msgctxt "magic_fuzzy_skin_outside_only description" msgctxt "magic_fuzzy_skin_outside_only description"
msgid "Jitter only the parts' outlines and not the parts' holes." msgid "Jitter only the parts' outlines and not the parts' holes."
@ -2909,9 +2914,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label"
msgid "Offset with Extruder" msgid "Offset with Extruder"
msgstr "Versatz mit Extruder" msgstr "Versatz mit Extruder"
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "On buildplate when possible"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "support_tree_rest_preference option graceful" msgctxt "support_tree_rest_preference option graceful"
msgid "On Model If Necessary" msgid "On model if required"
msgstr "" msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Cura 5.3\n" "Project-Id-Version: Cura 5.3\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-05-15 14:32+0000\n" "POT-Creation-Date: 2023-06-06 10:46+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -377,6 +377,18 @@ msgctxt "@text"
msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
msgstr "El perfil del boceto ha sido diseñado para imprimir los prototipos iniciales y la validación del concepto con la intención de reducir el tiempo de impresión de manera considerable." msgstr "El perfil del boceto ha sido diseñado para imprimir los prototipos iniciales y la validación del concepto con la intención de reducir el tiempo de impresión de manera considerable."
#: cura/Machines/Models/IntentCategoryModel.py:57
#: cura/Machines/Models/IntentSelectionModel.py:80
msgctxt "@label"
msgid "Annealing"
msgstr ""
#: cura/Machines/Models/IntentCategoryModel.py:59
#: cura/Machines/Models/IntentSelectionModel.py:82
msgctxt "@text"
msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance."
msgstr ""
#: cura/Machines/Models/MaterialManagementModel.py:232 #: cura/Machines/Models/MaterialManagementModel.py:232
msgctxt "@label" msgctxt "@label"
msgid "Custom Material" msgid "Custom Material"
@ -5071,14 +5083,14 @@ msgid_plural "Print Selected Models With:"
msgstr[0] "Imprimir modelo seleccionado con:" msgstr[0] "Imprimir modelo seleccionado con:"
msgstr[1] "Imprimir modelos seleccionados con:" msgstr[1] "Imprimir modelos seleccionados con:"
#: resources/qml/Menus/ContextMenu.qml:92 #: resources/qml/Menus/ContextMenu.qml:103
msgctxt "@title:window" msgctxt "@title:window"
msgid "Multiply Selected Model" msgid "Multiply Selected Model"
msgid_plural "Multiply Selected Models" msgid_plural "Multiply Selected Models"
msgstr[0] "Multiplicar modelo seleccionado" msgstr[0] "Multiplicar modelo seleccionado"
msgstr[1] "Multiplicar modelos seleccionados" msgstr[1] "Multiplicar modelos seleccionados"
#: resources/qml/Menus/ContextMenu.qml:123 #: resources/qml/Menus/ContextMenu.qml:134
msgctxt "@label" msgctxt "@label"
msgid "Number of Copies" msgid "Number of Copies"
msgstr "Número de copias" msgstr "Número de copias"
@ -6695,22 +6707,22 @@ msgctxt "@button"
msgid "Add printer manually" msgid "Add printer manually"
msgstr "Añadir impresora manualmente" msgstr "Añadir impresora manualmente"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214
msgctxt "@label" msgctxt "@label"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "Fabricante" msgstr "Fabricante"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225
msgctxt "@label" msgctxt "@label"
msgid "Profile author" msgid "Profile author"
msgstr "Autor del perfil" msgstr "Autor del perfil"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237
msgctxt "@label" msgctxt "@label"
msgid "Printer name" msgid "Printer name"
msgstr "Nombre de la impresora" msgstr "Nombre de la impresora"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243
msgctxt "@text" msgctxt "@text"
msgid "Please name your printer" msgid "Please name your printer"
msgstr "Asigne un nombre a su impresora" msgstr "Asigne un nombre a su impresora"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Uranium json setting files\n" "Project-Id-Version: Uranium json setting files\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-04-28 10:03+0000\n" "POT-Creation-Date: 2023-06-06 13:48+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE\n" "Language-Team: LANGUAGE\n"
@ -1386,11 +1386,6 @@ msgctxt "min_wall_line_width description"
msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width."
msgstr "Para estructuras delgadas, aproximadamente una o dos veces el tamaño de la boquilla, los anchos de línea deben cambiarse para que coincidan con el grosor del modelo. Esta configuración controla el ancho de línea mínimo permitido para las paredes. Los anchos de línea mínimos también determinan de forma inherente los anchos de línea máximos, ya que la transición de N a N + 1 paredes se realiza con un grosor geométrico donde N paredes son anchas y N + 1 paredes son estrechas. La línea perimetral más ancha posible es el doble del ancho mínimo de la línea perimetral." msgstr "Para estructuras delgadas, aproximadamente una o dos veces el tamaño de la boquilla, los anchos de línea deben cambiarse para que coincidan con el grosor del modelo. Esta configuración controla el ancho de línea mínimo permitido para las paredes. Los anchos de línea mínimos también determinan de forma inherente los anchos de línea máximos, ya que la transición de N a N + 1 paredes se realiza con un grosor geométrico donde N paredes son anchas y N + 1 paredes son estrechas. La línea perimetral más ancha posible es el doble del ancho mínimo de la línea perimetral."
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "Force Only Buildplate"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "z_seam_position option front" msgctxt "z_seam_position option front"
msgid "Front" msgid "Front"
@ -2119,11 +2114,21 @@ msgctxt "machine_center_is_zero label"
msgid "Is Center Origin" msgid "Is Center Origin"
msgstr "El origen está centrado" msgstr "El origen está centrado"
#: fdmprinter.def.json
msgctxt "material_is_support_material label"
msgid "Is support material"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "material_crystallinity description" 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)?" 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)?" 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 #: fdmprinter.def.json
msgctxt "magic_fuzzy_skin_outside_only description" msgctxt "magic_fuzzy_skin_outside_only description"
msgid "Jitter only the parts' outlines and not the parts' holes." msgid "Jitter only the parts' outlines and not the parts' holes."
@ -2909,9 +2914,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label"
msgid "Offset with Extruder" msgid "Offset with Extruder"
msgstr "Desplazamiento con extrusor" msgstr "Desplazamiento con extrusor"
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "On buildplate when possible"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "support_tree_rest_preference option graceful" msgctxt "support_tree_rest_preference option graceful"
msgid "On Model If Necessary" msgid "On model if required"
msgstr "" msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json

View file

@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Uranium json setting files\n" "Project-Id-Version: Uranium json setting files\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-04-28 10:03+0000\n" "POT-Creation-Date: 2023-06-06 13:48+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE\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." msgid "The temperature of the nozzle when another nozzle is currently used for printing."
msgstr "" 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 #: fdmprinter.def.json
msgctxt "speed label" msgctxt "speed label"
msgid "Speed" msgid "Speed"
@ -3918,12 +3928,12 @@ msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate" msgctxt "support_tree_rest_preference option buildplate"
msgid "Force Only Buildplate" msgid "On buildplate when possible"
msgstr "" msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "support_tree_rest_preference option graceful" msgctxt "support_tree_rest_preference option graceful"
msgid "On Model If Necessary" msgid "On model if required"
msgstr "" msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Cura 5.1\n" "Project-Id-Version: Cura 5.1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-05-15 14:32+0000\n" "POT-Creation-Date: 2023-06-06 10:46+0000\n"
"PO-Revision-Date: 2022-07-15 10:53+0200\n" "PO-Revision-Date: 2022-07-15 10:53+0200\n"
"Last-Translator: Bothof <info@bothof.nl>\n" "Last-Translator: Bothof <info@bothof.nl>\n"
"Language-Team: Finnish\n" "Language-Team: Finnish\n"
@ -370,6 +370,18 @@ msgctxt "@text"
msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
msgstr "" msgstr ""
#: cura/Machines/Models/IntentCategoryModel.py:57
#: cura/Machines/Models/IntentSelectionModel.py:80
msgctxt "@label"
msgid "Annealing"
msgstr ""
#: cura/Machines/Models/IntentCategoryModel.py:59
#: cura/Machines/Models/IntentSelectionModel.py:82
msgctxt "@text"
msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance."
msgstr ""
#: cura/Machines/Models/MaterialManagementModel.py:232 #: cura/Machines/Models/MaterialManagementModel.py:232
msgctxt "@label" msgctxt "@label"
msgid "Custom Material" msgid "Custom Material"
@ -5040,14 +5052,14 @@ msgid_plural "Print Selected Models With:"
msgstr[0] "Tulosta valittu malli asetuksella:" msgstr[0] "Tulosta valittu malli asetuksella:"
msgstr[1] "Tulosta valitut mallit asetuksella:" msgstr[1] "Tulosta valitut mallit asetuksella:"
#: resources/qml/Menus/ContextMenu.qml:92 #: resources/qml/Menus/ContextMenu.qml:103
msgctxt "@title:window" msgctxt "@title:window"
msgid "Multiply Selected Model" msgid "Multiply Selected Model"
msgid_plural "Multiply Selected Models" msgid_plural "Multiply Selected Models"
msgstr[0] "Kerro valittu malli" msgstr[0] "Kerro valittu malli"
msgstr[1] "Kerro valitut mallit" msgstr[1] "Kerro valitut mallit"
#: resources/qml/Menus/ContextMenu.qml:123 #: resources/qml/Menus/ContextMenu.qml:134
msgctxt "@label" msgctxt "@label"
msgid "Number of Copies" msgid "Number of Copies"
msgstr "Kopioiden määrä" msgstr "Kopioiden määrä"
@ -6657,22 +6669,22 @@ msgctxt "@button"
msgid "Add printer manually" msgid "Add printer manually"
msgstr "" msgstr ""
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214
msgctxt "@label" msgctxt "@label"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "" msgstr ""
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225
msgctxt "@label" msgctxt "@label"
msgid "Profile author" msgid "Profile author"
msgstr "" msgstr ""
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237
msgctxt "@label" msgctxt "@label"
msgid "Printer name" msgid "Printer name"
msgstr "" msgstr ""
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243
msgctxt "@text" msgctxt "@text"
msgid "Please name your printer" msgid "Please name your printer"
msgstr "" msgstr ""

View file

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Cura 5.1\n" "Project-Id-Version: Cura 5.1\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-04-28 10:03+0000\n" "POT-Creation-Date: 2023-06-06 13:48+0000\n"
"PO-Revision-Date: 2022-07-15 11:17+0200\n" "PO-Revision-Date: 2022-07-15 11:17+0200\n"
"Last-Translator: Bothof <info@bothof.nl>\n" "Last-Translator: Bothof <info@bothof.nl>\n"
"Language-Team: Finnish\n" "Language-Team: Finnish\n"
@ -1388,11 +1388,6 @@ msgctxt "min_wall_line_width description"
msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width."
msgstr "" msgstr ""
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "Force Only Buildplate"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "z_seam_position option front" msgctxt "z_seam_position option front"
msgid "Front" msgid "Front"
@ -2117,11 +2112,21 @@ msgctxt "machine_center_is_zero label"
msgid "Is Center Origin" msgid "Is Center Origin"
msgstr "On keskikohdassa" msgstr "On keskikohdassa"
#: fdmprinter.def.json
msgctxt "material_is_support_material label"
msgid "Is support material"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "material_crystallinity description" 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)?" 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 "" 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 #: fdmprinter.def.json
msgctxt "magic_fuzzy_skin_outside_only description" msgctxt "magic_fuzzy_skin_outside_only description"
msgid "Jitter only the parts' outlines and not the parts' holes." msgid "Jitter only the parts' outlines and not the parts' holes."
@ -2907,9 +2912,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label"
msgid "Offset with Extruder" msgid "Offset with Extruder"
msgstr "" msgstr ""
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "On buildplate when possible"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "support_tree_rest_preference option graceful" msgctxt "support_tree_rest_preference option graceful"
msgid "On Model If Necessary" msgid "On model if required"
msgstr "" msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-05-15 14:32+0000\n" "POT-Creation-Date: 2023-06-06 10:46+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -378,6 +378,18 @@ msgctxt "@text"
msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
msgstr "L'ébauche du profil est conçue pour imprimer les prototypes initiaux et la validation du concept dans le but de réduire considérablement le temps d'impression." msgstr "L'ébauche du profil est conçue pour imprimer les prototypes initiaux et la validation du concept dans le but de réduire considérablement le temps d'impression."
#: cura/Machines/Models/IntentCategoryModel.py:57
#: cura/Machines/Models/IntentSelectionModel.py:80
msgctxt "@label"
msgid "Annealing"
msgstr ""
#: cura/Machines/Models/IntentCategoryModel.py:59
#: cura/Machines/Models/IntentSelectionModel.py:82
msgctxt "@text"
msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance."
msgstr ""
#: cura/Machines/Models/MaterialManagementModel.py:232 #: cura/Machines/Models/MaterialManagementModel.py:232
msgctxt "@label" msgctxt "@label"
msgid "Custom Material" msgid "Custom Material"
@ -5071,14 +5083,14 @@ msgid_plural "Print Selected Models With:"
msgstr[0] "Imprimer le modèle sélectionné avec :" msgstr[0] "Imprimer le modèle sélectionné avec :"
msgstr[1] "Imprimer les modèles sélectionnés 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" msgctxt "@title:window"
msgid "Multiply Selected Model" msgid "Multiply Selected Model"
msgid_plural "Multiply Selected Models" msgid_plural "Multiply Selected Models"
msgstr[0] "Multiplier le modèle sélectionné" msgstr[0] "Multiplier le modèle sélectionné"
msgstr[1] "Multiplier les modèles sélectionnés" msgstr[1] "Multiplier les modèles sélectionnés"
#: resources/qml/Menus/ContextMenu.qml:123 #: resources/qml/Menus/ContextMenu.qml:134
msgctxt "@label" msgctxt "@label"
msgid "Number of Copies" msgid "Number of Copies"
msgstr "Nombre de copies" msgstr "Nombre de copies"
@ -6695,22 +6707,22 @@ msgctxt "@button"
msgid "Add printer manually" msgid "Add printer manually"
msgstr "Ajouter l'imprimante manuellement" msgstr "Ajouter l'imprimante manuellement"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214
msgctxt "@label" msgctxt "@label"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "Fabricant" msgstr "Fabricant"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225
msgctxt "@label" msgctxt "@label"
msgid "Profile author" msgid "Profile author"
msgstr "Auteur du profil" msgstr "Auteur du profil"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237
msgctxt "@label" msgctxt "@label"
msgid "Printer name" msgid "Printer name"
msgstr "Nom de l'imprimante" msgstr "Nom de l'imprimante"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243
msgctxt "@text" msgctxt "@text"
msgid "Please name your printer" msgid "Please name your printer"
msgstr "Veuillez nommer votre imprimante" msgstr "Veuillez nommer votre imprimante"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Uranium json setting files\n" "Project-Id-Version: Uranium json setting files\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-04-28 10:03+0000\n" "POT-Creation-Date: 2023-06-06 13:48+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE\n" "Language-Team: LANGUAGE\n"
@ -1386,11 +1386,6 @@ msgctxt "min_wall_line_width description"
msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width."
msgstr "Pour les structures fines dont la taille correspond à une ou deux fois celle de la buse, il faut modifier la largeur des lignes pour respecter l'épaisseur du modèle. Ce paramètre contrôle la largeur de ligne minimale autorisée pour les parois. Les largeurs de lignes minimales déterminent également les largeurs de lignes maximales, puisque nous passons de N à N+1 parois à une certaine épaisseur géométrique où les N parois sont larges et les N+1 parois sont étroites. La ligne de paroi la plus large possible est égale à deux fois la largeur minimale de la ligne de paroi." msgstr "Pour les structures fines dont la taille correspond à une ou deux fois celle de la buse, il faut modifier la largeur des lignes pour respecter l'épaisseur du modèle. Ce paramètre contrôle la largeur de ligne minimale autorisée pour les parois. Les largeurs de lignes minimales déterminent également les largeurs de lignes maximales, puisque nous passons de N à N+1 parois à une certaine épaisseur géométrique où les N parois sont larges et les N+1 parois sont étroites. La ligne de paroi la plus large possible est égale à deux fois la largeur minimale de la ligne de paroi."
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "Force Only Buildplate"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "z_seam_position option front" msgctxt "z_seam_position option front"
msgid "Front" msgid "Front"
@ -2119,11 +2114,21 @@ msgctxt "machine_center_is_zero label"
msgid "Is Center Origin" msgid "Is Center Origin"
msgstr "Est l'origine du centre" msgstr "Est l'origine du centre"
#: fdmprinter.def.json
msgctxt "material_is_support_material label"
msgid "Is support material"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "material_crystallinity description" 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)?" 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) ?" 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 #: fdmprinter.def.json
msgctxt "magic_fuzzy_skin_outside_only description" msgctxt "magic_fuzzy_skin_outside_only description"
msgid "Jitter only the parts' outlines and not the parts' holes." msgid "Jitter only the parts' outlines and not the parts' holes."
@ -2909,9 +2914,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label"
msgid "Offset with Extruder" msgid "Offset with Extruder"
msgstr "Décalage avec extrudeuse" msgstr "Décalage avec extrudeuse"
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "On buildplate when possible"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "support_tree_rest_preference option graceful" msgctxt "support_tree_rest_preference option graceful"
msgid "On Model If Necessary" msgid "On model if required"
msgstr "" msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Cura 5.1\n" "Project-Id-Version: Cura 5.1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-05-15 14:32+0000\n" "POT-Creation-Date: 2023-06-06 10:46+0000\n"
"PO-Revision-Date: 2020-03-24 09:36+0100\n" "PO-Revision-Date: 2020-03-24 09:36+0100\n"
"Last-Translator: Nagy Attila <vokroot@gmail.com>\n" "Last-Translator: Nagy Attila <vokroot@gmail.com>\n"
"Language-Team: ATI-SZOFT\n" "Language-Team: ATI-SZOFT\n"
@ -378,6 +378,18 @@ msgctxt "@text"
msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
msgstr "" msgstr ""
#: cura/Machines/Models/IntentCategoryModel.py:57
#: cura/Machines/Models/IntentSelectionModel.py:80
msgctxt "@label"
msgid "Annealing"
msgstr ""
#: cura/Machines/Models/IntentCategoryModel.py:59
#: cura/Machines/Models/IntentSelectionModel.py:82
msgctxt "@text"
msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance."
msgstr ""
#: cura/Machines/Models/MaterialManagementModel.py:232 #: cura/Machines/Models/MaterialManagementModel.py:232
msgctxt "@label" msgctxt "@label"
msgid "Custom Material" msgid "Custom Material"
@ -5054,14 +5066,14 @@ msgid_plural "Print Selected Models With:"
msgstr[0] "Kiválasztott modell nyomtatása:" msgstr[0] "Kiválasztott modell nyomtatása:"
msgstr[1] "Kiválasztott modellek nyomtatása:" msgstr[1] "Kiválasztott modellek nyomtatása:"
#: resources/qml/Menus/ContextMenu.qml:92 #: resources/qml/Menus/ContextMenu.qml:103
msgctxt "@title:window" msgctxt "@title:window"
msgid "Multiply Selected Model" msgid "Multiply Selected Model"
msgid_plural "Multiply Selected Models" msgid_plural "Multiply Selected Models"
msgstr[0] "Kiválasztott modell sokszorozása" msgstr[0] "Kiválasztott modell sokszorozása"
msgstr[1] "Kiválasztott modellek sokszorozása" msgstr[1] "Kiválasztott modellek sokszorozása"
#: resources/qml/Menus/ContextMenu.qml:123 #: resources/qml/Menus/ContextMenu.qml:134
msgctxt "@label" msgctxt "@label"
msgid "Number of Copies" msgid "Number of Copies"
msgstr "Másolatok száma" msgstr "Másolatok száma"
@ -6671,22 +6683,22 @@ msgctxt "@button"
msgid "Add printer manually" msgid "Add printer manually"
msgstr "" msgstr ""
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214
msgctxt "@label" msgctxt "@label"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "" msgstr ""
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225
msgctxt "@label" msgctxt "@label"
msgid "Profile author" msgid "Profile author"
msgstr "" msgstr ""
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237
msgctxt "@label" msgctxt "@label"
msgid "Printer name" msgid "Printer name"
msgstr "Nyomtató név" msgstr "Nyomtató név"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243
msgctxt "@text" msgctxt "@text"
msgid "Please name your printer" msgid "Please name your printer"
msgstr "" msgstr ""

View file

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Cura 5.1\n" "Project-Id-Version: Cura 5.1\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-04-28 10:03+0000\n" "POT-Creation-Date: 2023-06-06 13:48+0000\n"
"PO-Revision-Date: 2020-03-24 09:43+0100\n" "PO-Revision-Date: 2020-03-24 09:43+0100\n"
"Last-Translator: Nagy Attila <vokroot@gmail.com>\n" "Last-Translator: Nagy Attila <vokroot@gmail.com>\n"
"Language-Team: AT-VLOG\n" "Language-Team: AT-VLOG\n"
@ -1391,11 +1391,6 @@ msgctxt "min_wall_line_width description"
msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width."
msgstr "" msgstr ""
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "Force Only Buildplate"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "z_seam_position option front" msgctxt "z_seam_position option front"
msgid "Front" msgid "Front"
@ -2124,11 +2119,21 @@ msgctxt "machine_center_is_zero label"
msgid "Is Center Origin" msgid "Is Center Origin"
msgstr "Origó a középpontban" msgstr "Origó a középpontban"
#: fdmprinter.def.json
msgctxt "material_is_support_material label"
msgid "Is support material"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "material_crystallinity description" 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)?" 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?" 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 #: fdmprinter.def.json
msgctxt "magic_fuzzy_skin_outside_only description" msgctxt "magic_fuzzy_skin_outside_only description"
msgid "Jitter only the parts' outlines and not the parts' holes." msgid "Jitter only the parts' outlines and not the parts' holes."
@ -2914,9 +2919,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label"
msgid "Offset with Extruder" msgid "Offset with Extruder"
msgstr "Extruder eltolás" msgstr "Extruder eltolás"
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "On buildplate when possible"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "support_tree_rest_preference option graceful" msgctxt "support_tree_rest_preference option graceful"
msgid "On Model If Necessary" msgid "On model if required"
msgstr "" msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-05-15 14:32+0000\n" "POT-Creation-Date: 2023-06-06 10:46+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -378,6 +378,18 @@ msgctxt "@text"
msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
msgstr "Il profilo bozza è destinato alla stampa dei prototipi iniziali e alla convalida dei concept, con l'intento di ridurre in modo significativo il tempo di stampa." msgstr "Il profilo bozza è destinato alla stampa dei prototipi iniziali e alla convalida dei concept, con l'intento di ridurre in modo significativo il tempo di stampa."
#: cura/Machines/Models/IntentCategoryModel.py:57
#: cura/Machines/Models/IntentSelectionModel.py:80
msgctxt "@label"
msgid "Annealing"
msgstr ""
#: cura/Machines/Models/IntentCategoryModel.py:59
#: cura/Machines/Models/IntentSelectionModel.py:82
msgctxt "@text"
msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance."
msgstr ""
#: cura/Machines/Models/MaterialManagementModel.py:232 #: cura/Machines/Models/MaterialManagementModel.py:232
msgctxt "@label" msgctxt "@label"
msgid "Custom Material" msgid "Custom Material"
@ -5074,14 +5086,14 @@ msgid_plural "Print Selected Models With:"
msgstr[0] "Stampa modello selezionato con:" msgstr[0] "Stampa modello selezionato con:"
msgstr[1] "Stampa modelli selezionati con:" msgstr[1] "Stampa modelli selezionati con:"
#: resources/qml/Menus/ContextMenu.qml:92 #: resources/qml/Menus/ContextMenu.qml:103
msgctxt "@title:window" msgctxt "@title:window"
msgid "Multiply Selected Model" msgid "Multiply Selected Model"
msgid_plural "Multiply Selected Models" msgid_plural "Multiply Selected Models"
msgstr[0] "Moltiplica modello selezionato" msgstr[0] "Moltiplica modello selezionato"
msgstr[1] "Moltiplica modelli selezionati" msgstr[1] "Moltiplica modelli selezionati"
#: resources/qml/Menus/ContextMenu.qml:123 #: resources/qml/Menus/ContextMenu.qml:134
msgctxt "@label" msgctxt "@label"
msgid "Number of Copies" msgid "Number of Copies"
msgstr "Numero di copie" msgstr "Numero di copie"
@ -6698,22 +6710,22 @@ msgctxt "@button"
msgid "Add printer manually" msgid "Add printer manually"
msgstr "Aggiungere la stampante manualmente" msgstr "Aggiungere la stampante manualmente"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214
msgctxt "@label" msgctxt "@label"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "Produttore" msgstr "Produttore"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225
msgctxt "@label" msgctxt "@label"
msgid "Profile author" msgid "Profile author"
msgstr "Autore profilo" msgstr "Autore profilo"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237
msgctxt "@label" msgctxt "@label"
msgid "Printer name" msgid "Printer name"
msgstr "Nome stampante" msgstr "Nome stampante"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243
msgctxt "@text" msgctxt "@text"
msgid "Please name your printer" msgid "Please name your printer"
msgstr "Dare un nome alla stampante" msgstr "Dare un nome alla stampante"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Uranium json setting files\n" "Project-Id-Version: Uranium json setting files\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-04-28 10:03+0000\n" "POT-Creation-Date: 2023-06-06 13:48+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE\n" "Language-Team: LANGUAGE\n"
@ -1386,11 +1386,6 @@ msgctxt "min_wall_line_width description"
msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width."
msgstr "Per strutture sottili, circa una o due volte la dimensione dell'ugello, le larghezze delle linee devono essere modificate per rispettare lo spessore del modello. Questa impostazione controlla la larghezza minima della linea consentita per le pareti. Le larghezze minime delle linee determinano intrinsecamente anche le larghezze massime delle linee, poiché si esegue la transizione da N a N+1 pareti ad uno spessore geometrico in cui le pareti N sono larghe e le pareti N+1 sono strette. La linea perimetrale più larga possible è due volte la larghezza minima della linea perimetrale." msgstr "Per strutture sottili, circa una o due volte la dimensione dell'ugello, le larghezze delle linee devono essere modificate per rispettare lo spessore del modello. Questa impostazione controlla la larghezza minima della linea consentita per le pareti. Le larghezze minime delle linee determinano intrinsecamente anche le larghezze massime delle linee, poiché si esegue la transizione da N a N+1 pareti ad uno spessore geometrico in cui le pareti N sono larghe e le pareti N+1 sono strette. La linea perimetrale più larga possible è due volte la larghezza minima della linea perimetrale."
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "Force Only Buildplate"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "z_seam_position option front" msgctxt "z_seam_position option front"
msgid "Front" msgid "Front"
@ -2119,11 +2114,21 @@ msgctxt "machine_center_is_zero label"
msgid "Is Center Origin" msgid "Is Center Origin"
msgstr "Origine del centro" msgstr "Origine del centro"
#: fdmprinter.def.json
msgctxt "material_is_support_material label"
msgid "Is support material"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "material_crystallinity description" 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)?" 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)?" 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 #: fdmprinter.def.json
msgctxt "magic_fuzzy_skin_outside_only description" msgctxt "magic_fuzzy_skin_outside_only description"
msgid "Jitter only the parts' outlines and not the parts' holes." msgid "Jitter only the parts' outlines and not the parts' holes."
@ -2909,9 +2914,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label"
msgid "Offset with Extruder" msgid "Offset with Extruder"
msgstr "Offset con estrusore" msgstr "Offset con estrusore"
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "On buildplate when possible"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "support_tree_rest_preference option graceful" msgctxt "support_tree_rest_preference option graceful"
msgid "On Model If Necessary" msgid "On model if required"
msgstr "" msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-05-15 14:32+0000\n" "POT-Creation-Date: 2023-06-06 10:46+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -378,6 +378,18 @@ msgctxt "@text"
msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
msgstr "ドラフトプロファイルは、プリント時間の大幅短縮を目的とした初期プロトタイプとコンセプト検証をプリントするために設計されています。" msgstr "ドラフトプロファイルは、プリント時間の大幅短縮を目的とした初期プロトタイプとコンセプト検証をプリントするために設計されています。"
#: cura/Machines/Models/IntentCategoryModel.py:57
#: cura/Machines/Models/IntentSelectionModel.py:80
msgctxt "@label"
msgid "Annealing"
msgstr ""
#: cura/Machines/Models/IntentCategoryModel.py:59
#: cura/Machines/Models/IntentSelectionModel.py:82
msgctxt "@text"
msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance."
msgstr ""
#: cura/Machines/Models/MaterialManagementModel.py:232 #: cura/Machines/Models/MaterialManagementModel.py:232
msgctxt "@label" msgctxt "@label"
msgid "Custom Material" msgid "Custom Material"
@ -5061,13 +5073,13 @@ msgid "Print Selected Model With:"
msgid_plural "Print Selected Models With:" msgid_plural "Print Selected Models With:"
msgstr[0] "選択したモデルで印刷:" msgstr[0] "選択したモデルで印刷:"
#: resources/qml/Menus/ContextMenu.qml:92 #: resources/qml/Menus/ContextMenu.qml:103
msgctxt "@title:window" msgctxt "@title:window"
msgid "Multiply Selected Model" msgid "Multiply Selected Model"
msgid_plural "Multiply Selected Models" msgid_plural "Multiply Selected Models"
msgstr[0] "選択した複数のモデル" msgstr[0] "選択した複数のモデル"
#: resources/qml/Menus/ContextMenu.qml:123 #: resources/qml/Menus/ContextMenu.qml:134
msgctxt "@label" msgctxt "@label"
msgid "Number of Copies" msgid "Number of Copies"
msgstr "コピーの数" msgstr "コピーの数"
@ -6677,22 +6689,22 @@ msgctxt "@button"
msgid "Add printer manually" msgid "Add printer manually"
msgstr "プリンタを手動で追加する" msgstr "プリンタを手動で追加する"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214
msgctxt "@label" msgctxt "@label"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "製造元" msgstr "製造元"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225
msgctxt "@label" msgctxt "@label"
msgid "Profile author" msgid "Profile author"
msgstr "プロファイル作成者" msgstr "プロファイル作成者"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237
msgctxt "@label" msgctxt "@label"
msgid "Printer name" msgid "Printer name"
msgstr "プリンター名" msgstr "プリンター名"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243
msgctxt "@text" msgctxt "@text"
msgid "Please name your printer" msgid "Please name your printer"
msgstr "プリンターに名前を付けてください" msgstr "プリンターに名前を付けてください"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Uranium json setting files\n" "Project-Id-Version: Uranium json setting files\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-04-28 10:03+0000\n" "POT-Creation-Date: 2023-06-06 13:48+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE\n" "Language-Team: LANGUAGE\n"
@ -1386,11 +1386,6 @@ msgctxt "min_wall_line_width description"
msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width."
msgstr "ズルサイズの12倍程度の薄い構造の場合、モデルの厚さに合わせてライン幅を変更する必要があります。この設定は、ウォールに許容される最小ライン幅を制御します。ジオメトリーの厚さが、Nのウォールが幅広く、N+1のウォールが狭い場所で、NからN+1のウォールに移行するため、最小ライン幅は本質的に最大ライン幅も決定します。ウォールラインの許容最大幅は、最小ウォールライン幅の2倍です。" msgstr "ズルサイズの12倍程度の薄い構造の場合、モデルの厚さに合わせてライン幅を変更する必要があります。この設定は、ウォールに許容される最小ライン幅を制御します。ジオメトリーの厚さが、Nのウォールが幅広く、N+1のウォールが狭い場所で、NからN+1のウォールに移行するため、最小ライン幅は本質的に最大ライン幅も決定します。ウォールラインの許容最大幅は、最小ウォールライン幅の2倍です。"
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "Force Only Buildplate"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "z_seam_position option front" msgctxt "z_seam_position option front"
msgid "Front" msgid "Front"
@ -2119,11 +2114,21 @@ msgctxt "machine_center_is_zero label"
msgid "Is Center Origin" msgid "Is Center Origin"
msgstr "中心位置" msgstr "中心位置"
#: fdmprinter.def.json
msgctxt "material_is_support_material label"
msgid "Is support material"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "material_crystallinity description" 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)?" 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 "この材料は加熱時にきれいに分解するタイプ (結晶性) または長く絡み合ったポリマー鎖 (非結晶) を作り出すタイプのいずれですか?" 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 #: fdmprinter.def.json
msgctxt "magic_fuzzy_skin_outside_only description" msgctxt "magic_fuzzy_skin_outside_only description"
msgid "Jitter only the parts' outlines and not the parts' holes." msgid "Jitter only the parts' outlines and not the parts' holes."
@ -2909,9 +2914,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label"
msgid "Offset with Extruder" msgid "Offset with Extruder"
msgstr "エクストルーダーのオフセット" msgstr "エクストルーダーのオフセット"
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "On buildplate when possible"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "support_tree_rest_preference option graceful" msgctxt "support_tree_rest_preference option graceful"
msgid "On Model If Necessary" msgid "On model if required"
msgstr "" msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-05-15 14:32+0000\n" "POT-Creation-Date: 2023-06-06 10:46+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -378,6 +378,18 @@ msgctxt "@text"
msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
msgstr "초안 프로파일은 인쇄 시간을 상당히 줄이려는 의도로 초기 프로토타입과 컨셉트 확인을 인쇄하도록 설계되었습니다." msgstr "초안 프로파일은 인쇄 시간을 상당히 줄이려는 의도로 초기 프로토타입과 컨셉트 확인을 인쇄하도록 설계되었습니다."
#: cura/Machines/Models/IntentCategoryModel.py:57
#: cura/Machines/Models/IntentSelectionModel.py:80
msgctxt "@label"
msgid "Annealing"
msgstr ""
#: cura/Machines/Models/IntentCategoryModel.py:59
#: cura/Machines/Models/IntentSelectionModel.py:82
msgctxt "@text"
msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance."
msgstr ""
#: cura/Machines/Models/MaterialManagementModel.py:232 #: cura/Machines/Models/MaterialManagementModel.py:232
msgctxt "@label" msgctxt "@label"
msgid "Custom Material" msgid "Custom Material"
@ -5060,13 +5072,13 @@ msgid "Print Selected Model With:"
msgid_plural "Print Selected Models With:" msgid_plural "Print Selected Models With:"
msgstr[0] "선택된 모델 프린팅 :" msgstr[0] "선택된 모델 프린팅 :"
#: resources/qml/Menus/ContextMenu.qml:92 #: resources/qml/Menus/ContextMenu.qml:103
msgctxt "@title:window" msgctxt "@title:window"
msgid "Multiply Selected Model" msgid "Multiply Selected Model"
msgid_plural "Multiply Selected Models" msgid_plural "Multiply Selected Models"
msgstr[0] "선택한 모델 복" msgstr[0] "선택한 모델 복"
#: resources/qml/Menus/ContextMenu.qml:123 #: resources/qml/Menus/ContextMenu.qml:134
msgctxt "@label" msgctxt "@label"
msgid "Number of Copies" msgid "Number of Copies"
msgstr "복제할 수" msgstr "복제할 수"
@ -6680,22 +6692,22 @@ msgctxt "@button"
msgid "Add printer manually" msgid "Add printer manually"
msgstr "수동으로 프린터 추가" msgstr "수동으로 프린터 추가"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214
msgctxt "@label" msgctxt "@label"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "제조업체" msgstr "제조업체"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225
msgctxt "@label" msgctxt "@label"
msgid "Profile author" msgid "Profile author"
msgstr "프로파일 원작자" msgstr "프로파일 원작자"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237
msgctxt "@label" msgctxt "@label"
msgid "Printer name" msgid "Printer name"
msgstr "프린터 이름" msgstr "프린터 이름"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243
msgctxt "@text" msgctxt "@text"
msgid "Please name your printer" msgid "Please name your printer"
msgstr "프린터의 이름을 설정하십시오" msgstr "프린터의 이름을 설정하십시오"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Uranium json setting files\n" "Project-Id-Version: Uranium json setting files\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-04-28 10:03+0000\n" "POT-Creation-Date: 2023-06-06 13:48+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE\n" "Language-Team: LANGUAGE\n"
@ -1386,11 +1386,6 @@ msgctxt "min_wall_line_width description"
msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width."
msgstr "노즐 크기의 1~2배 정도의 얇은 구조물의 경우 모델의 두께에 맞게 선 너비를 변경해야 합니다. 이 설정은 벽에 허용되는 최소 선 너비를 제어합니다. N개의 벽이 넓고 N+1개의 벽이 좁은 일부 형상 두께에서는 N개의 벽에서 N+1개의 벽으로 전환하기 때문에, 최소 선 너비가 내재적으로 최대 선 너비를 결정합니다. 가장 넓을 가능성이 있는 벽 선은 최소 벽 선 너비의 두 배입니다." msgstr "노즐 크기의 1~2배 정도의 얇은 구조물의 경우 모델의 두께에 맞게 선 너비를 변경해야 합니다. 이 설정은 벽에 허용되는 최소 선 너비를 제어합니다. N개의 벽이 넓고 N+1개의 벽이 좁은 일부 형상 두께에서는 N개의 벽에서 N+1개의 벽으로 전환하기 때문에, 최소 선 너비가 내재적으로 최대 선 너비를 결정합니다. 가장 넓을 가능성이 있는 벽 선은 최소 벽 선 너비의 두 배입니다."
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "Force Only Buildplate"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "z_seam_position option front" msgctxt "z_seam_position option front"
msgid "Front" msgid "Front"
@ -2119,11 +2114,21 @@ msgctxt "machine_center_is_zero label"
msgid "Is Center Origin" msgid "Is Center Origin"
msgstr "센터 원점" msgstr "센터 원점"
#: fdmprinter.def.json
msgctxt "material_is_support_material label"
msgid "Is support material"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "material_crystallinity description" 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)?" 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 "이 소재는 가열 시 깔끔하게 분리되는 유형(결정형)입니까? 아니면 길게 얽힌 폴리머 체인을 생성하는 유형(비결정형)입니까?" 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 #: fdmprinter.def.json
msgctxt "magic_fuzzy_skin_outside_only description" msgctxt "magic_fuzzy_skin_outside_only description"
msgid "Jitter only the parts' outlines and not the parts' holes." msgid "Jitter only the parts' outlines and not the parts' holes."
@ -2909,9 +2914,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label"
msgid "Offset with Extruder" msgid "Offset with Extruder"
msgstr "익스트루더로 오프셋" msgstr "익스트루더로 오프셋"
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "On buildplate when possible"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "support_tree_rest_preference option graceful" msgctxt "support_tree_rest_preference option graceful"
msgid "On Model If Necessary" msgid "On model if required"
msgstr "" msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-05-15 14:32+0000\n" "POT-Creation-Date: 2023-06-06 10:46+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -378,6 +378,18 @@ msgctxt "@text"
msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
msgstr "Het ontwerpprofiel is ontworpen om initiële prototypen en conceptvalidatie te printen met als doel de printtijd aanzienlijk te verkorten." msgstr "Het ontwerpprofiel is ontworpen om initiële prototypen en conceptvalidatie te printen met als doel de printtijd aanzienlijk te verkorten."
#: cura/Machines/Models/IntentCategoryModel.py:57
#: cura/Machines/Models/IntentSelectionModel.py:80
msgctxt "@label"
msgid "Annealing"
msgstr ""
#: cura/Machines/Models/IntentCategoryModel.py:59
#: cura/Machines/Models/IntentSelectionModel.py:82
msgctxt "@text"
msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance."
msgstr ""
#: cura/Machines/Models/MaterialManagementModel.py:232 #: cura/Machines/Models/MaterialManagementModel.py:232
msgctxt "@label" msgctxt "@label"
msgid "Custom Material" msgid "Custom Material"
@ -5074,14 +5086,14 @@ msgid_plural "Print Selected Models With:"
msgstr[0] "Geselecteerd model printen met:" msgstr[0] "Geselecteerd model printen met:"
msgstr[1] "Geselecteerde modellen printen met:" msgstr[1] "Geselecteerde modellen printen met:"
#: resources/qml/Menus/ContextMenu.qml:92 #: resources/qml/Menus/ContextMenu.qml:103
msgctxt "@title:window" msgctxt "@title:window"
msgid "Multiply Selected Model" msgid "Multiply Selected Model"
msgid_plural "Multiply Selected Models" msgid_plural "Multiply Selected Models"
msgstr[0] "Geselecteerd model verveelvoudigen" msgstr[0] "Geselecteerd model verveelvoudigen"
msgstr[1] "Geselecteerde modellen verveelvoudigen" msgstr[1] "Geselecteerde modellen verveelvoudigen"
#: resources/qml/Menus/ContextMenu.qml:123 #: resources/qml/Menus/ContextMenu.qml:134
msgctxt "@label" msgctxt "@label"
msgid "Number of Copies" msgid "Number of Copies"
msgstr "Aantal exemplaren" msgstr "Aantal exemplaren"
@ -6698,22 +6710,22 @@ msgctxt "@button"
msgid "Add printer manually" msgid "Add printer manually"
msgstr "Printer handmatig toevoegen" msgstr "Printer handmatig toevoegen"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214
msgctxt "@label" msgctxt "@label"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "Fabrikant" msgstr "Fabrikant"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225
msgctxt "@label" msgctxt "@label"
msgid "Profile author" msgid "Profile author"
msgstr "Profieleigenaar" msgstr "Profieleigenaar"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237
msgctxt "@label" msgctxt "@label"
msgid "Printer name" msgid "Printer name"
msgstr "Printernaam" msgstr "Printernaam"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243
msgctxt "@text" msgctxt "@text"
msgid "Please name your printer" msgid "Please name your printer"
msgstr "Geef uw printer een naam" msgstr "Geef uw printer een naam"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Uranium json setting files\n" "Project-Id-Version: Uranium json setting files\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-04-28 10:03+0000\n" "POT-Creation-Date: 2023-06-06 13:48+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE\n" "Language-Team: LANGUAGE\n"
@ -1386,11 +1386,6 @@ msgctxt "min_wall_line_width description"
msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width."
msgstr "Bij dunne structuren die ongeveer één of tweemaal zo groot als de nozzle zijn, moeten de lijnbreedtes worden aangepast aan de dikte van het model. Met deze instelling beheert u de minimum lijnbreedte die voor wanden is toegestaan. De minimum lijnbreedte bepaalt automatisch ook de maximale lijnbreedte, omdat we bij een bepaalde geometriedikte overgaan van wanden van N naar wanden van N+1, waarbij de N-wanden breed zijn en de N+1-wanden smal. De breedst mogelijke wandlijn is tweemaal de minimumbreedte van de wandlijn." msgstr "Bij dunne structuren die ongeveer één of tweemaal zo groot als de nozzle zijn, moeten de lijnbreedtes worden aangepast aan de dikte van het model. Met deze instelling beheert u de minimum lijnbreedte die voor wanden is toegestaan. De minimum lijnbreedte bepaalt automatisch ook de maximale lijnbreedte, omdat we bij een bepaalde geometriedikte overgaan van wanden van N naar wanden van N+1, waarbij de N-wanden breed zijn en de N+1-wanden smal. De breedst mogelijke wandlijn is tweemaal de minimumbreedte van de wandlijn."
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "Force Only Buildplate"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "z_seam_position option front" msgctxt "z_seam_position option front"
msgid "Front" msgid "Front"
@ -2119,11 +2114,21 @@ msgctxt "machine_center_is_zero label"
msgid "Is Center Origin" msgid "Is Center Origin"
msgstr "Is oorsprongpunt centraal" msgstr "Is oorsprongpunt centraal"
#: fdmprinter.def.json
msgctxt "material_is_support_material label"
msgid "Is support material"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "material_crystallinity description" 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)?" 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)?" 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 #: fdmprinter.def.json
msgctxt "magic_fuzzy_skin_outside_only description" msgctxt "magic_fuzzy_skin_outside_only description"
msgid "Jitter only the parts' outlines and not the parts' holes." msgid "Jitter only the parts' outlines and not the parts' holes."
@ -2909,9 +2914,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label"
msgid "Offset with Extruder" msgid "Offset with Extruder"
msgstr "Offset met extruder" msgstr "Offset met extruder"
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "On buildplate when possible"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "support_tree_rest_preference option graceful" msgctxt "support_tree_rest_preference option graceful"
msgid "On Model If Necessary" msgid "On model if required"
msgstr "" msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Cura 5.1\n" "Project-Id-Version: Cura 5.1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-05-15 14:32+0000\n" "POT-Creation-Date: 2023-06-06 10:46+0000\n"
"PO-Revision-Date: 2021-09-07 08:02+0200\n" "PO-Revision-Date: 2021-09-07 08:02+0200\n"
"Last-Translator: Mariusz Matłosz <matliks@gmail.com>\n" "Last-Translator: Mariusz Matłosz <matliks@gmail.com>\n"
"Language-Team: Mariusz Matłosz <matliks@gmail.com>, reprapy.pl\n" "Language-Team: Mariusz Matłosz <matliks@gmail.com>, reprapy.pl\n"
@ -379,6 +379,18 @@ msgctxt "@text"
msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
msgstr "Profil szkicu służy do drukowania początkowych prototypów i weryfikacji koncepcji z naciskiem na krótki czasu drukowania." msgstr "Profil szkicu służy do drukowania początkowych prototypów i weryfikacji koncepcji z naciskiem na krótki czasu drukowania."
#: cura/Machines/Models/IntentCategoryModel.py:57
#: cura/Machines/Models/IntentSelectionModel.py:80
msgctxt "@label"
msgid "Annealing"
msgstr ""
#: cura/Machines/Models/IntentCategoryModel.py:59
#: cura/Machines/Models/IntentSelectionModel.py:82
msgctxt "@text"
msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance."
msgstr ""
#: cura/Machines/Models/MaterialManagementModel.py:232 #: cura/Machines/Models/MaterialManagementModel.py:232
msgctxt "@label" msgctxt "@label"
msgid "Custom Material" msgid "Custom Material"
@ -5057,14 +5069,14 @@ msgid_plural "Print Selected Models With:"
msgstr[0] "Wydrukuj wybrany model z:" msgstr[0] "Wydrukuj wybrany model z:"
msgstr[1] "Wydrukuj wybrane modele z:" msgstr[1] "Wydrukuj wybrane modele z:"
#: resources/qml/Menus/ContextMenu.qml:92 #: resources/qml/Menus/ContextMenu.qml:103
msgctxt "@title:window" msgctxt "@title:window"
msgid "Multiply Selected Model" msgid "Multiply Selected Model"
msgid_plural "Multiply Selected Models" msgid_plural "Multiply Selected Models"
msgstr[0] "Zduplikuj wybrany model" msgstr[0] "Zduplikuj wybrany model"
msgstr[1] "Zduplikuj wybrane modele" msgstr[1] "Zduplikuj wybrane modele"
#: resources/qml/Menus/ContextMenu.qml:123 #: resources/qml/Menus/ContextMenu.qml:134
msgctxt "@label" msgctxt "@label"
msgid "Number of Copies" msgid "Number of Copies"
msgstr "Liczba kopii" msgstr "Liczba kopii"
@ -6674,22 +6686,22 @@ msgctxt "@button"
msgid "Add printer manually" msgid "Add printer manually"
msgstr "" msgstr ""
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214
msgctxt "@label" msgctxt "@label"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "Producent" msgstr "Producent"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225
msgctxt "@label" msgctxt "@label"
msgid "Profile author" msgid "Profile author"
msgstr "" msgstr ""
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237
msgctxt "@label" msgctxt "@label"
msgid "Printer name" msgid "Printer name"
msgstr "Nazwa drukarki" msgstr "Nazwa drukarki"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243
msgctxt "@text" msgctxt "@text"
msgid "Please name your printer" msgid "Please name your printer"
msgstr "" msgstr ""

View file

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Cura 5.1\n" "Project-Id-Version: Cura 5.1\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-04-28 10:03+0000\n" "POT-Creation-Date: 2023-06-06 13:48+0000\n"
"PO-Revision-Date: 2019-11-15 15:34+0100\n" "PO-Revision-Date: 2019-11-15 15:34+0100\n"
"Last-Translator: Mariusz Matłosz <matliks@gmail.com>\n" "Last-Translator: Mariusz Matłosz <matliks@gmail.com>\n"
"Language-Team: Mariusz Matłosz <matliks@gmail.com>, reprapy.pl\n" "Language-Team: Mariusz Matłosz <matliks@gmail.com>, reprapy.pl\n"
@ -1390,11 +1390,6 @@ msgctxt "min_wall_line_width description"
msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width."
msgstr "" msgstr ""
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "Force Only Buildplate"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "z_seam_position option front" msgctxt "z_seam_position option front"
msgid "Front" msgid "Front"
@ -2123,11 +2118,21 @@ msgctxt "machine_center_is_zero label"
msgid "Is Center Origin" msgid "Is Center Origin"
msgstr "Środek to Początek" msgstr "Środek to Początek"
#: fdmprinter.def.json
msgctxt "material_is_support_material label"
msgid "Is support material"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "material_crystallinity description" 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)?" 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)?" 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 #: fdmprinter.def.json
msgctxt "magic_fuzzy_skin_outside_only description" msgctxt "magic_fuzzy_skin_outside_only description"
msgid "Jitter only the parts' outlines and not the parts' holes." msgid "Jitter only the parts' outlines and not the parts' holes."
@ -2913,9 +2918,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label"
msgid "Offset with Extruder" msgid "Offset with Extruder"
msgstr "Przesunięcie ekstrudera" msgstr "Przesunięcie ekstrudera"
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "On buildplate when possible"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "support_tree_rest_preference option graceful" msgctxt "support_tree_rest_preference option graceful"
msgid "On Model If Necessary" msgid "On model if required"
msgstr "" msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Cura 5.0\n" "Project-Id-Version: Cura 5.0\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-05-15 14:32+0000\n" "POT-Creation-Date: 2023-06-06 10:46+0000\n"
"PO-Revision-Date: 2023-02-17 17:37+0100\n" "PO-Revision-Date: 2023-02-17 17:37+0100\n"
"Last-Translator: Cláudio Sampaio <patola@gmail.com>\n" "Last-Translator: Cláudio Sampaio <patola@gmail.com>\n"
"Language-Team: Cláudio Sampaio <patola@gmail.com>\n" "Language-Team: Cláudio Sampaio <patola@gmail.com>\n"
@ -378,6 +378,18 @@ msgctxt "@text"
msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
msgstr "O perfil de rascunho é projetado para imprimir protótipos iniciais e validações de conceito com o objetivo de redução significativa de tempo de impressão." msgstr "O perfil de rascunho é projetado para imprimir protótipos iniciais e validações de conceito com o objetivo de redução significativa de tempo de impressão."
#: cura/Machines/Models/IntentCategoryModel.py:57
#: cura/Machines/Models/IntentSelectionModel.py:80
msgctxt "@label"
msgid "Annealing"
msgstr ""
#: cura/Machines/Models/IntentCategoryModel.py:59
#: cura/Machines/Models/IntentSelectionModel.py:82
msgctxt "@text"
msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance."
msgstr ""
#: cura/Machines/Models/MaterialManagementModel.py:232 #: cura/Machines/Models/MaterialManagementModel.py:232
msgctxt "@label" msgctxt "@label"
msgid "Custom Material" msgid "Custom Material"
@ -5071,14 +5083,14 @@ msgid_plural "Print Selected Models With:"
msgstr[0] "Imprimir Modelo Selecionado Com:" msgstr[0] "Imprimir Modelo Selecionado Com:"
msgstr[1] "Imprimir Modelos Selecionados Com:" msgstr[1] "Imprimir Modelos Selecionados Com:"
#: resources/qml/Menus/ContextMenu.qml:92 #: resources/qml/Menus/ContextMenu.qml:103
msgctxt "@title:window" msgctxt "@title:window"
msgid "Multiply Selected Model" msgid "Multiply Selected Model"
msgid_plural "Multiply Selected Models" msgid_plural "Multiply Selected Models"
msgstr[0] "Multiplicar Modelo Selecionado" msgstr[0] "Multiplicar Modelo Selecionado"
msgstr[1] "Multiplicar Modelos Selecionados" msgstr[1] "Multiplicar Modelos Selecionados"
#: resources/qml/Menus/ContextMenu.qml:123 #: resources/qml/Menus/ContextMenu.qml:134
msgctxt "@label" msgctxt "@label"
msgid "Number of Copies" msgid "Number of Copies"
msgstr "Número de Cópias" msgstr "Número de Cópias"
@ -6700,22 +6712,22 @@ msgctxt "@button"
msgid "Add printer manually" msgid "Add printer manually"
msgstr "Adicionar impressora manualmente" msgstr "Adicionar impressora manualmente"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214
msgctxt "@label" msgctxt "@label"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "Fabricante" msgstr "Fabricante"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225
msgctxt "@label" msgctxt "@label"
msgid "Profile author" msgid "Profile author"
msgstr "Autor do perfil" msgstr "Autor do perfil"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237
msgctxt "@label" msgctxt "@label"
msgid "Printer name" msgid "Printer name"
msgstr "Nome da impressora" msgstr "Nome da impressora"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243
msgctxt "@text" msgctxt "@text"
msgid "Please name your printer" msgid "Please name your printer"
msgstr "Por favor dê um nome à sua impressora" msgstr "Por favor dê um nome à sua impressora"

View file

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Cura 5.0\n" "Project-Id-Version: Cura 5.0\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-04-28 10:03+0000\n" "POT-Creation-Date: 2023-06-06 13:48+0000\n"
"PO-Revision-Date: 2023-02-17 16:31+0100\n" "PO-Revision-Date: 2023-02-17 16:31+0100\n"
"Last-Translator: Cláudio Sampaio <patola@gmail.com>\n" "Last-Translator: Cláudio Sampaio <patola@gmail.com>\n"
"Language-Team: Cláudio Sampaio <patola@gmail.com>\n" "Language-Team: Cláudio Sampaio <patola@gmail.com>\n"
@ -1391,11 +1391,6 @@ msgctxt "min_wall_line_width description"
msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width."
msgstr "Para estruturas finas por volta de uma ou duas vezes o tamanho do bico, as larguras de linhas precisam ser alteradas para aderir à grossura do modelo. Este ajuste controla a largura mínima de filete permite para as paredes. As larguras mínimas de filete inerentemente também determinam as larguras máximas, já que transicionamos de N pra N+1 parede na grossura de geometria onde paredes N são largas e as paredes N+1 são estreitas. A maior largura possível de parede é duas vezes a Largura Mínima de Filete de Parede." msgstr "Para estruturas finas por volta de uma ou duas vezes o tamanho do bico, as larguras de linhas precisam ser alteradas para aderir à grossura do modelo. Este ajuste controla a largura mínima de filete permite para as paredes. As larguras mínimas de filete inerentemente também determinam as larguras máximas, já que transicionamos de N pra N+1 parede na grossura de geometria onde paredes N são largas e as paredes N+1 são estreitas. A maior largura possível de parede é duas vezes a Largura Mínima de Filete de Parede."
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "Force Only Buildplate"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "z_seam_position option front" msgctxt "z_seam_position option front"
msgid "Front" msgid "Front"
@ -2124,11 +2119,21 @@ msgctxt "machine_center_is_zero label"
msgid "Is Center Origin" msgid "Is Center Origin"
msgstr "Origem é no Centro" msgstr "Origem é no Centro"
#: fdmprinter.def.json
msgctxt "material_is_support_material label"
msgid "Is support material"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "material_crystallinity description" 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)?" 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)?" 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 #: fdmprinter.def.json
msgctxt "magic_fuzzy_skin_outside_only description" msgctxt "magic_fuzzy_skin_outside_only description"
msgid "Jitter only the parts' outlines and not the parts' holes." msgid "Jitter only the parts' outlines and not the parts' holes."
@ -2914,9 +2919,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label"
msgid "Offset with Extruder" msgid "Offset with Extruder"
msgstr "Deslocamento com o Extrusor" msgstr "Deslocamento com o Extrusor"
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "On buildplate when possible"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "support_tree_rest_preference option graceful" msgctxt "support_tree_rest_preference option graceful"
msgid "On Model If Necessary" msgid "On model if required"
msgstr "" msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-05-15 14:32+0000\n" "POT-Creation-Date: 2023-06-06 10:46+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -378,6 +378,18 @@ msgctxt "@text"
msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
msgstr "O perfil de rascunho foi concebido para imprimir protótipos de teste e de validação de conceitos com o objetivo de se obter uma redução significativa do tempo de impressão." msgstr "O perfil de rascunho foi concebido para imprimir protótipos de teste e de validação de conceitos com o objetivo de se obter uma redução significativa do tempo de impressão."
#: cura/Machines/Models/IntentCategoryModel.py:57
#: cura/Machines/Models/IntentSelectionModel.py:80
msgctxt "@label"
msgid "Annealing"
msgstr ""
#: cura/Machines/Models/IntentCategoryModel.py:59
#: cura/Machines/Models/IntentSelectionModel.py:82
msgctxt "@text"
msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance."
msgstr ""
#: cura/Machines/Models/MaterialManagementModel.py:232 #: cura/Machines/Models/MaterialManagementModel.py:232
msgctxt "@label" msgctxt "@label"
msgid "Custom Material" msgid "Custom Material"
@ -5072,14 +5084,14 @@ msgid_plural "Print Selected Models With:"
msgstr[0] "Imprimir Modelo Selecionado Com:" msgstr[0] "Imprimir Modelo Selecionado Com:"
msgstr[1] "Imprimir modelos selecionados com:" msgstr[1] "Imprimir modelos selecionados com:"
#: resources/qml/Menus/ContextMenu.qml:92 #: resources/qml/Menus/ContextMenu.qml:103
msgctxt "@title:window" msgctxt "@title:window"
msgid "Multiply Selected Model" msgid "Multiply Selected Model"
msgid_plural "Multiply Selected Models" msgid_plural "Multiply Selected Models"
msgstr[0] "Multiplicar Modelo Selecionado" msgstr[0] "Multiplicar Modelo Selecionado"
msgstr[1] "Multiplicar modelos selecionados" msgstr[1] "Multiplicar modelos selecionados"
#: resources/qml/Menus/ContextMenu.qml:123 #: resources/qml/Menus/ContextMenu.qml:134
msgctxt "@label" msgctxt "@label"
msgid "Number of Copies" msgid "Number of Copies"
msgstr "Número de Cópias" msgstr "Número de Cópias"
@ -6697,22 +6709,22 @@ msgctxt "@button"
msgid "Add printer manually" msgid "Add printer manually"
msgstr "Adicionar impressora manualmente" msgstr "Adicionar impressora manualmente"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214
msgctxt "@label" msgctxt "@label"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "Fabricante" msgstr "Fabricante"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225
msgctxt "@label" msgctxt "@label"
msgid "Profile author" msgid "Profile author"
msgstr "Autor do perfil" msgstr "Autor do perfil"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237
msgctxt "@label" msgctxt "@label"
msgid "Printer name" msgid "Printer name"
msgstr "Nome da impressora" msgstr "Nome da impressora"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243
msgctxt "@text" msgctxt "@text"
msgid "Please name your printer" msgid "Please name your printer"
msgstr "Atribuir um nome à impressora" msgstr "Atribuir um nome à impressora"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Uranium json setting files\n" "Project-Id-Version: Uranium json setting files\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-04-28 10:03+0000\n" "POT-Creation-Date: 2023-06-06 13:48+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE\n" "Language-Team: LANGUAGE\n"
@ -1386,11 +1386,6 @@ msgctxt "min_wall_line_width description"
msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width."
msgstr "Para estruturas finas de cerca de uma ou duas vezes o tamanho do bocal, os diâmetros da linha têm de ser alterados para aderir à espessura do modelo. Esta definição controla o diâmetro mínimo da linha permitido para as paredes. Os diâmetros mínimos de linha determinam também os diâmetros máximos de linha, uma vez que fazemos a transição de paredes N para N+1 com uma determinada espessura da geometria em que as paredes N são largas e as paredes N+1 são estreitas. A linha de parede mais larga possível é o dobro do diâmetro mínimo de linha da parede." msgstr "Para estruturas finas de cerca de uma ou duas vezes o tamanho do bocal, os diâmetros da linha têm de ser alterados para aderir à espessura do modelo. Esta definição controla o diâmetro mínimo da linha permitido para as paredes. Os diâmetros mínimos de linha determinam também os diâmetros máximos de linha, uma vez que fazemos a transição de paredes N para N+1 com uma determinada espessura da geometria em que as paredes N são largas e as paredes N+1 são estreitas. A linha de parede mais larga possível é o dobro do diâmetro mínimo de linha da parede."
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "Force Only Buildplate"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "z_seam_position option front" msgctxt "z_seam_position option front"
msgid "Front" msgid "Front"
@ -2119,11 +2114,21 @@ msgctxt "machine_center_is_zero label"
msgid "Is Center Origin" msgid "Is Center Origin"
msgstr "O Centro é a Origem" msgstr "O Centro é a Origem"
#: fdmprinter.def.json
msgctxt "material_is_support_material label"
msgid "Is support material"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "material_crystallinity description" 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)?" 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)?" 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 #: fdmprinter.def.json
msgctxt "magic_fuzzy_skin_outside_only description" msgctxt "magic_fuzzy_skin_outside_only description"
msgid "Jitter only the parts' outlines and not the parts' holes." msgid "Jitter only the parts' outlines and not the parts' holes."
@ -2909,9 +2914,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label"
msgid "Offset with Extruder" msgid "Offset with Extruder"
msgstr "Desviar com extrusor" msgstr "Desviar com extrusor"
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "On buildplate when possible"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "support_tree_rest_preference option graceful" msgctxt "support_tree_rest_preference option graceful"
msgid "On Model If Necessary" msgid "On model if required"
msgstr "" msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-05-15 14:32+0000\n" "POT-Creation-Date: 2023-06-06 10:46+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -378,6 +378,18 @@ msgctxt "@text"
msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
msgstr "Черновой профиль предназначен для печати начальных прототипов и проверки концепции, где приоритетом является скорость печати." msgstr "Черновой профиль предназначен для печати начальных прототипов и проверки концепции, где приоритетом является скорость печати."
#: cura/Machines/Models/IntentCategoryModel.py:57
#: cura/Machines/Models/IntentSelectionModel.py:80
msgctxt "@label"
msgid "Annealing"
msgstr ""
#: cura/Machines/Models/IntentCategoryModel.py:59
#: cura/Machines/Models/IntentSelectionModel.py:82
msgctxt "@text"
msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance."
msgstr ""
#: cura/Machines/Models/MaterialManagementModel.py:232 #: cura/Machines/Models/MaterialManagementModel.py:232
msgctxt "@label" msgctxt "@label"
msgid "Custom Material" msgid "Custom Material"
@ -5084,7 +5096,7 @@ msgstr[0] "Печать выбранной модели:"
msgstr[1] "Печать выбранных моделей:" msgstr[1] "Печать выбранных моделей:"
msgstr[2] "Печать выбранных моделей:" msgstr[2] "Печать выбранных моделей:"
#: resources/qml/Menus/ContextMenu.qml:92 #: resources/qml/Menus/ContextMenu.qml:103
msgctxt "@title:window" msgctxt "@title:window"
msgid "Multiply Selected Model" msgid "Multiply Selected Model"
msgid_plural "Multiply Selected Models" msgid_plural "Multiply Selected Models"
@ -5092,7 +5104,7 @@ msgstr[0] "Размножить выбранную модель"
msgstr[1] "Размножить выбранные модели" msgstr[1] "Размножить выбранные модели"
msgstr[2] "Размножить выбранные модели" msgstr[2] "Размножить выбранные модели"
#: resources/qml/Menus/ContextMenu.qml:123 #: resources/qml/Menus/ContextMenu.qml:134
msgctxt "@label" msgctxt "@label"
msgid "Number of Copies" msgid "Number of Copies"
msgstr "Количество копий" msgstr "Количество копий"
@ -6712,22 +6724,22 @@ msgctxt "@button"
msgid "Add printer manually" msgid "Add printer manually"
msgstr "Добавить принтер вручную" msgstr "Добавить принтер вручную"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214
msgctxt "@label" msgctxt "@label"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "Производитель" msgstr "Производитель"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225
msgctxt "@label" msgctxt "@label"
msgid "Profile author" msgid "Profile author"
msgstr "Автор профиля" msgstr "Автор профиля"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237
msgctxt "@label" msgctxt "@label"
msgid "Printer name" msgid "Printer name"
msgstr "Имя принтера" msgstr "Имя принтера"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243
msgctxt "@text" msgctxt "@text"
msgid "Please name your printer" msgid "Please name your printer"
msgstr "Присвойте имя принтеру" msgstr "Присвойте имя принтеру"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Uranium json setting files\n" "Project-Id-Version: Uranium json setting files\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-04-28 10:03+0000\n" "POT-Creation-Date: 2023-06-06 13:48+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE\n" "Language-Team: LANGUAGE\n"
@ -1386,11 +1386,6 @@ msgctxt "min_wall_line_width description"
msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width."
msgstr "Для тонких структур, шириной не более одного или двух размеров сопла, ширину линии необходимо изменить таким образом, чтобы она соответствовала толщине модели. Этот параметр задает минимальную допустимую ширину линии стенки. Минимальная ширина линии одновременно определяет максимальную ширину линии, поскольку выполняется переход от N к N+1 стенкам при некоторой геометрической толщине, где N стенок —— широкие, а N+1 стенок — узкие. Самая широкая возможная линия стенки в два раза превышает минимальную ширину линии стенки." msgstr "Для тонких структур, шириной не более одного или двух размеров сопла, ширину линии необходимо изменить таким образом, чтобы она соответствовала толщине модели. Этот параметр задает минимальную допустимую ширину линии стенки. Минимальная ширина линии одновременно определяет максимальную ширину линии, поскольку выполняется переход от N к N+1 стенкам при некоторой геометрической толщине, где N стенок —— широкие, а N+1 стенок — узкие. Самая широкая возможная линия стенки в два раза превышает минимальную ширину линии стенки."
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "Force Only Buildplate"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "z_seam_position option front" msgctxt "z_seam_position option front"
msgid "Front" msgid "Front"
@ -2119,11 +2114,21 @@ msgctxt "machine_center_is_zero label"
msgid "Is Center Origin" msgid "Is Center Origin"
msgstr "Начало координат в центре" msgstr "Начало координат в центре"
#: fdmprinter.def.json
msgctxt "material_is_support_material label"
msgid "Is support material"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "material_crystallinity description" 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)?" 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 "Это материал, который при нагревании легко ломается по четким линиям (кристаллический) или образует длинные сплетающиеся полимерные цепочки (некристаллический)?" 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 #: fdmprinter.def.json
msgctxt "magic_fuzzy_skin_outside_only description" msgctxt "magic_fuzzy_skin_outside_only description"
msgid "Jitter only the parts' outlines and not the parts' holes." msgid "Jitter only the parts' outlines and not the parts' holes."
@ -2909,9 +2914,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label"
msgid "Offset with Extruder" msgid "Offset with Extruder"
msgstr "Смещение с экструдером" msgstr "Смещение с экструдером"
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "On buildplate when possible"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "support_tree_rest_preference option graceful" msgctxt "support_tree_rest_preference option graceful"
msgid "On Model If Necessary" msgid "On model if required"
msgstr "" msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-05-15 14:32+0000\n" "POT-Creation-Date: 2023-06-06 10:46+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -378,6 +378,18 @@ msgctxt "@text"
msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
msgstr "Taslak profili, baskı süresinin önemli ölçüde kısaltılması amacıyla, birincil prototipler basılması ve konsept doğrulaması yapılması için tasarlanmıştır." msgstr "Taslak profili, baskı süresinin önemli ölçüde kısaltılması amacıyla, birincil prototipler basılması ve konsept doğrulaması yapılması için tasarlanmıştır."
#: cura/Machines/Models/IntentCategoryModel.py:57
#: cura/Machines/Models/IntentSelectionModel.py:80
msgctxt "@label"
msgid "Annealing"
msgstr ""
#: cura/Machines/Models/IntentCategoryModel.py:59
#: cura/Machines/Models/IntentSelectionModel.py:82
msgctxt "@text"
msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance."
msgstr ""
#: cura/Machines/Models/MaterialManagementModel.py:232 #: cura/Machines/Models/MaterialManagementModel.py:232
msgctxt "@label" msgctxt "@label"
msgid "Custom Material" msgid "Custom Material"
@ -5074,14 +5086,14 @@ msgid_plural "Print Selected Models With:"
msgstr[0] "Seçili Modeli Şununla Yazdır:" msgstr[0] "Seçili Modeli Şununla Yazdır:"
msgstr[1] "Seçili Modelleri Ş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" msgctxt "@title:window"
msgid "Multiply Selected Model" msgid "Multiply Selected Model"
msgid_plural "Multiply Selected Models" msgid_plural "Multiply Selected Models"
msgstr[0] "Seçili Modeli Çoğalt" msgstr[0] "Seçili Modeli Çoğalt"
msgstr[1] "Seçili Modelleri Çoğalt" msgstr[1] "Seçili Modelleri Çoğalt"
#: resources/qml/Menus/ContextMenu.qml:123 #: resources/qml/Menus/ContextMenu.qml:134
msgctxt "@label" msgctxt "@label"
msgid "Number of Copies" msgid "Number of Copies"
msgstr "Kopya Sayısı" msgstr "Kopya Sayısı"
@ -6698,22 +6710,22 @@ msgctxt "@button"
msgid "Add printer manually" msgid "Add printer manually"
msgstr "Yazıcıyı manuel olarak ekle" msgstr "Yazıcıyı manuel olarak ekle"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214
msgctxt "@label" msgctxt "@label"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "Üretici" msgstr "Üretici"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225
msgctxt "@label" msgctxt "@label"
msgid "Profile author" msgid "Profile author"
msgstr "Profil sahibi" msgstr "Profil sahibi"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237
msgctxt "@label" msgctxt "@label"
msgid "Printer name" msgid "Printer name"
msgstr "Yazıcı adı" msgstr "Yazıcı adı"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243
msgctxt "@text" msgctxt "@text"
msgid "Please name your printer" msgid "Please name your printer"
msgstr "Lütfen yazıcınızı adlandırın" msgstr "Lütfen yazıcınızı adlandırın"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Uranium json setting files\n" "Project-Id-Version: Uranium json setting files\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-04-28 10:03+0000\n" "POT-Creation-Date: 2023-06-06 13:48+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE\n" "Language-Team: LANGUAGE\n"
@ -1386,11 +1386,6 @@ msgctxt "min_wall_line_width description"
msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width."
msgstr "Nozül boyutunun bir veya iki katı kadar olan ince yapılarda modelin kalınlığına bağlı olarak hat genişliklerinin değiştirilmesi gerekir. Bu ayar, duvarlar için izin verilen minimum hat genişliğini kontrol eder. Minimum hat genişlikleri, N duvarlarının geniş ve N+1 duvarlarının dar olduğu bazı geometrik kalınlıklarda N duvardan N+1 duvara geçildiği için maksimum hat genişliklerini de belirler. Mümkün olan en geniş duvar hattı Minimum Duvar Hattı Genişliğinin iki katıdır." msgstr "Nozül boyutunun bir veya iki katı kadar olan ince yapılarda modelin kalınlığına bağlı olarak hat genişliklerinin değiştirilmesi gerekir. Bu ayar, duvarlar için izin verilen minimum hat genişliğini kontrol eder. Minimum hat genişlikleri, N duvarlarının geniş ve N+1 duvarlarının dar olduğu bazı geometrik kalınlıklarda N duvardan N+1 duvara geçildiği için maksimum hat genişliklerini de belirler. Mümkün olan en geniş duvar hattı Minimum Duvar Hattı Genişliğinin iki katıdır."
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "Force Only Buildplate"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "z_seam_position option front" msgctxt "z_seam_position option front"
msgid "Front" msgid "Front"
@ -2119,11 +2114,21 @@ msgctxt "machine_center_is_zero label"
msgid "Is Center Origin" msgid "Is Center Origin"
msgstr "Merkez Nokta" msgstr "Merkez Nokta"
#: fdmprinter.def.json
msgctxt "material_is_support_material label"
msgid "Is support material"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "material_crystallinity description" 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)?" 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?" 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 #: fdmprinter.def.json
msgctxt "magic_fuzzy_skin_outside_only description" msgctxt "magic_fuzzy_skin_outside_only description"
msgid "Jitter only the parts' outlines and not the parts' holes." msgid "Jitter only the parts' outlines and not the parts' holes."
@ -2909,9 +2914,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label"
msgid "Offset with Extruder" msgid "Offset with Extruder"
msgstr "Ekstruder Ofseti" msgstr "Ekstruder Ofseti"
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "On buildplate when possible"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "support_tree_rest_preference option graceful" msgctxt "support_tree_rest_preference option graceful"
msgid "On Model If Necessary" msgid "On model if required"
msgstr "" msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Cura 5.1\n" "Project-Id-Version: Cura 5.1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-05-15 14:32+0000\n" "POT-Creation-Date: 2023-06-06 10:46+0000\n"
"PO-Revision-Date: 2022-07-15 11:06+0200\n" "PO-Revision-Date: 2022-07-15 11:06+0200\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
@ -378,6 +378,18 @@ msgctxt "@text"
msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
msgstr "草稿配置文件用于打印初始原型和概念验证,可大大缩短打印时间。" msgstr "草稿配置文件用于打印初始原型和概念验证,可大大缩短打印时间。"
#: cura/Machines/Models/IntentCategoryModel.py:57
#: cura/Machines/Models/IntentSelectionModel.py:80
msgctxt "@label"
msgid "Annealing"
msgstr ""
#: cura/Machines/Models/IntentCategoryModel.py:59
#: cura/Machines/Models/IntentSelectionModel.py:82
msgctxt "@text"
msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance."
msgstr ""
#: cura/Machines/Models/MaterialManagementModel.py:232 #: cura/Machines/Models/MaterialManagementModel.py:232
msgctxt "@label" msgctxt "@label"
msgid "Custom Material" msgid "Custom Material"
@ -5062,13 +5074,13 @@ msgid "Print Selected Model With:"
msgid_plural "Print Selected Models With:" msgid_plural "Print Selected Models With:"
msgstr[0] "打印所选模型:" msgstr[0] "打印所选模型:"
#: resources/qml/Menus/ContextMenu.qml:92 #: resources/qml/Menus/ContextMenu.qml:103
msgctxt "@title:window" msgctxt "@title:window"
msgid "Multiply Selected Model" msgid "Multiply Selected Model"
msgid_plural "Multiply Selected Models" msgid_plural "Multiply Selected Models"
msgstr[0] "复制所选模型" msgstr[0] "复制所选模型"
#: resources/qml/Menus/ContextMenu.qml:123 #: resources/qml/Menus/ContextMenu.qml:134
msgctxt "@label" msgctxt "@label"
msgid "Number of Copies" msgid "Number of Copies"
msgstr "复制个数" msgstr "复制个数"
@ -6682,22 +6694,22 @@ msgctxt "@button"
msgid "Add printer manually" msgid "Add printer manually"
msgstr "手动添加打印机" msgstr "手动添加打印机"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214
msgctxt "@label" msgctxt "@label"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "制造商" msgstr "制造商"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225
msgctxt "@label" msgctxt "@label"
msgid "Profile author" msgid "Profile author"
msgstr "配置文件作者" msgstr "配置文件作者"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237
msgctxt "@label" msgctxt "@label"
msgid "Printer name" msgid "Printer name"
msgstr "打印机名称" msgstr "打印机名称"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243
msgctxt "@text" msgctxt "@text"
msgid "Please name your printer" msgid "Please name your printer"
msgstr "请为您的打印机命名" msgstr "请为您的打印机命名"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Uranium json setting files\n" "Project-Id-Version: Uranium json setting files\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-04-28 10:03+0000\n" "POT-Creation-Date: 2023-06-06 13:48+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE\n" "Language-Team: LANGUAGE\n"
@ -1386,11 +1386,6 @@ msgctxt "min_wall_line_width description"
msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width."
msgstr "对于一倍或两倍于喷嘴孔径的薄结构,需要更改走线宽度以遵循模型的厚度。此设置控制壁允许的最小走线宽度。同样,最小走线宽度内在地决定了最大走线宽度,因为我们在某些几何厚度中从 N 壁过渡到 N+1 壁时N 壁宽而 N+1 壁窄。允许的最大壁走线宽度是最小壁走线宽度的两倍。" msgstr "对于一倍或两倍于喷嘴孔径的薄结构,需要更改走线宽度以遵循模型的厚度。此设置控制壁允许的最小走线宽度。同样,最小走线宽度内在地决定了最大走线宽度,因为我们在某些几何厚度中从 N 壁过渡到 N+1 壁时N 壁宽而 N+1 壁窄。允许的最大壁走线宽度是最小壁走线宽度的两倍。"
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "Force Only Buildplate"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "z_seam_position option front" msgctxt "z_seam_position option front"
msgid "Front" msgid "Front"
@ -2119,11 +2114,21 @@ msgctxt "machine_center_is_zero label"
msgid "Is Center Origin" msgid "Is Center Origin"
msgstr "位于中心" msgstr "位于中心"
#: fdmprinter.def.json
msgctxt "material_is_support_material label"
msgid "Is support material"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "material_crystallinity description" 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)?" 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 "该材料为受热后脱落干净的类型(晶体),还是会产生长交织状聚合物链的类型(非晶体)?" 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 #: fdmprinter.def.json
msgctxt "magic_fuzzy_skin_outside_only description" msgctxt "magic_fuzzy_skin_outside_only description"
msgid "Jitter only the parts' outlines and not the parts' holes." msgid "Jitter only the parts' outlines and not the parts' holes."
@ -2909,9 +2914,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label"
msgid "Offset with Extruder" msgid "Offset with Extruder"
msgstr "挤出机偏移量" msgstr "挤出机偏移量"
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "On buildplate when possible"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "support_tree_rest_preference option graceful" msgctxt "support_tree_rest_preference option graceful"
msgid "On Model If Necessary" msgid "On model if required"
msgstr "" msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Cura 5.1\n" "Project-Id-Version: Cura 5.1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-05-15 14:32+0000\n" "POT-Creation-Date: 2023-06-06 10:46+0000\n"
"PO-Revision-Date: 2022-01-02 19:59+0800\n" "PO-Revision-Date: 2022-01-02 19:59+0800\n"
"Last-Translator: Valen Chang <carf17771@gmail.com>\n" "Last-Translator: Valen Chang <carf17771@gmail.com>\n"
"Language-Team: Valen Chang <carf17771@gmail.com>\n" "Language-Team: Valen Chang <carf17771@gmail.com>\n"
@ -378,6 +378,18 @@ msgctxt "@text"
msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
msgstr "草稿參數是設計來縮短時間,快速列印初始原型和概念驗證。" msgstr "草稿參數是設計來縮短時間,快速列印初始原型和概念驗證。"
#: cura/Machines/Models/IntentCategoryModel.py:57
#: cura/Machines/Models/IntentSelectionModel.py:80
msgctxt "@label"
msgid "Annealing"
msgstr ""
#: cura/Machines/Models/IntentCategoryModel.py:59
#: cura/Machines/Models/IntentSelectionModel.py:82
msgctxt "@text"
msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance."
msgstr ""
#: cura/Machines/Models/MaterialManagementModel.py:232 #: cura/Machines/Models/MaterialManagementModel.py:232
msgctxt "@label" msgctxt "@label"
msgid "Custom Material" msgid "Custom Material"
@ -5060,13 +5072,13 @@ msgid "Print Selected Model With:"
msgid_plural "Print Selected Models With:" msgid_plural "Print Selected Models With:"
msgstr[0] "列印所選模型:" msgstr[0] "列印所選模型:"
#: resources/qml/Menus/ContextMenu.qml:92 #: resources/qml/Menus/ContextMenu.qml:103
msgctxt "@title:window" msgctxt "@title:window"
msgid "Multiply Selected Model" msgid "Multiply Selected Model"
msgid_plural "Multiply Selected Models" msgid_plural "Multiply Selected Models"
msgstr[0] "複製所選模型" msgstr[0] "複製所選模型"
#: resources/qml/Menus/ContextMenu.qml:123 #: resources/qml/Menus/ContextMenu.qml:134
msgctxt "@label" msgctxt "@label"
msgid "Number of Copies" msgid "Number of Copies"
msgstr "複製個數" msgstr "複製個數"
@ -6673,22 +6685,22 @@ msgctxt "@button"
msgid "Add printer manually" msgid "Add printer manually"
msgstr "手動新增印表機" msgstr "手動新增印表機"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214
msgctxt "@label" msgctxt "@label"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "製造商" msgstr "製造商"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225
msgctxt "@label" msgctxt "@label"
msgid "Profile author" msgid "Profile author"
msgstr "列印參數作者" msgstr "列印參數作者"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237
msgctxt "@label" msgctxt "@label"
msgid "Printer name" msgid "Printer name"
msgstr "印表機名稱" msgstr "印表機名稱"
#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243
msgctxt "@text" msgctxt "@text"
msgid "Please name your printer" msgid "Please name your printer"
msgstr "請為你的印表機取一個名稱" msgstr "請為你的印表機取一個名稱"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Cura 5.1\n" "Project-Id-Version: Cura 5.1\n"
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
"POT-Creation-Date: 2023-04-28 10:03+0000\n" "POT-Creation-Date: 2023-06-06 13:48+0000\n"
"PO-Revision-Date: 2022-01-02 20:24+0800\n" "PO-Revision-Date: 2022-01-02 20:24+0800\n"
"Last-Translator: Valen Chang <carf17771@gmail.com>\n" "Last-Translator: Valen Chang <carf17771@gmail.com>\n"
"Language-Team: Valen Chang <carf17771@gmail.com>\n" "Language-Team: Valen Chang <carf17771@gmail.com>\n"
@ -1391,11 +1391,6 @@ msgctxt "min_wall_line_width description"
msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width."
msgstr "" msgstr ""
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "Force Only Buildplate"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "z_seam_position option front" msgctxt "z_seam_position option front"
msgid "Front" msgid "Front"
@ -2124,11 +2119,21 @@ msgctxt "machine_center_is_zero label"
msgid "Is Center Origin" msgid "Is Center Origin"
msgstr "原點是否位於中心" msgstr "原點是否位於中心"
#: fdmprinter.def.json
msgctxt "material_is_support_material label"
msgid "Is support material"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "material_crystallinity description" 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)?" 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 "這種線材高溫時是脆斷的類型(晶狀),還是拉絲的類型(非晶狀)?" 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 #: fdmprinter.def.json
msgctxt "magic_fuzzy_skin_outside_only description" msgctxt "magic_fuzzy_skin_outside_only description"
msgid "Jitter only the parts' outlines and not the parts' holes." msgid "Jitter only the parts' outlines and not the parts' holes."
@ -2914,9 +2919,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label"
msgid "Offset with Extruder" msgid "Offset with Extruder"
msgstr "擠出機偏移量" msgstr "擠出機偏移量"
#: fdmprinter.def.json
msgctxt "support_tree_rest_preference option buildplate"
msgid "On buildplate when possible"
msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json
msgctxt "support_tree_rest_preference option graceful" msgctxt "support_tree_rest_preference option graceful"
msgid "On Model If Necessary" msgid "On model if required"
msgstr "" msgstr ""
#: fdmprinter.def.json #: fdmprinter.def.json

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -44,8 +44,19 @@ Cura.Menu
onTriggered: CuraActions.setExtruderForSelection(model.id) onTriggered: CuraActions.setExtruderForSelection(model.id)
shortcut: "Ctrl+" + (model.index + 1) 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) } onObjectRemoved: function(index, object) { base.removeItem(object) }
} }

View file

@ -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. // Cura is released under the terms of the LGPLv3 or higher.
import QtQuick 2.15 import QtQuick 2.15
@ -69,6 +69,8 @@ Item
const initialSection = "Ultimaker B.V."; const initialSection = "Ultimaker B.V.";
base.currentSections.add(initialSection); base.currentSections.add(initialSection);
updateCurrentItemUponSectionChange(initialSection); updateCurrentItemUponSectionChange(initialSection);
// Trigger update on base.currentSections
base.currentSections = base.currentSections;
} }
Row Row

View file

@ -12,6 +12,5 @@ variant = AA 0.25
weight = 0 weight = 0
[values] [values]
infill_overlap = =0 if infill_sparse_density > 80 else 15
speed_topbottom = =math.ceil(speed_print * 30 / 55) speed_topbottom = =math.ceil(speed_print * 30 / 55)

View file

@ -17,7 +17,6 @@ machine_nozzle_heat_up_speed = 1.4
ooze_shield_angle = 40 ooze_shield_angle = 40
raft_airgap = 0.4 raft_airgap = 0.4
retraction_min_travel = 5 retraction_min_travel = 5
skin_overlap = 50
speed_print = 70 speed_print = 70
speed_topbottom = =math.ceil(speed_print * 30 / 70) speed_topbottom = =math.ceil(speed_print * 30 / 70)
speed_wall = =math.ceil(speed_print * 30 / 70) speed_wall = =math.ceil(speed_print * 30 / 70)

View file

@ -25,7 +25,6 @@ raft_airgap = 0.25
retraction_hop = 2 retraction_hop = 2
retraction_hop_only_when_collides = True retraction_hop_only_when_collides = True
retraction_min_travel = 0.8 retraction_min_travel = 0.8
skin_overlap = 30
speed_print = 50 speed_print = 50
speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_topbottom = =math.ceil(speed_print * 25 / 50)
speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall = =math.ceil(speed_print * 40 / 50)

View file

@ -13,13 +13,11 @@ weight = 0
[values] [values]
brim_width = 8 brim_width = 8
infill_overlap = =0 if infill_sparse_density > 80 else 10
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid'
machine_nozzle_cool_down_speed = 0.9 machine_nozzle_cool_down_speed = 0.9
machine_nozzle_heat_up_speed = 1.4 machine_nozzle_heat_up_speed = 1.4
material_print_temperature = 190 material_print_temperature = 190
retraction_hop = 0.2 retraction_hop = 0.2
skin_overlap = 5
speed_print = 30 speed_print = 30
speed_wall = =math.ceil(speed_print * 25 / 30) speed_wall = =math.ceil(speed_print * 25 / 30)
speed_wall_0 = =math.ceil(speed_print * 20 / 30) speed_wall_0 = =math.ceil(speed_print * 20 / 30)

View file

@ -13,12 +13,10 @@ weight = 0
[values] [values]
brim_width = 8 brim_width = 8
infill_overlap = =0 if infill_sparse_density > 80 else 10
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid'
machine_nozzle_cool_down_speed = 0.9 machine_nozzle_cool_down_speed = 0.9
machine_nozzle_heat_up_speed = 1.4 machine_nozzle_heat_up_speed = 1.4
material_print_temperature = =default_material_print_temperature - 15 material_print_temperature = =default_material_print_temperature - 15
skin_overlap = 5
speed_print = 30 speed_print = 30
speed_topbottom = =math.ceil(speed_print * 20 / 30) speed_topbottom = =math.ceil(speed_print * 20 / 30)
speed_wall = =math.ceil(speed_print * 25 / 30) speed_wall = =math.ceil(speed_print * 25 / 30)

View file

@ -18,7 +18,6 @@ material_final_print_temperature = =material_print_temperature - 20
material_print_temperature = =default_material_print_temperature + 20 material_print_temperature = =default_material_print_temperature + 20
prime_tower_enable = False prime_tower_enable = False
raft_airgap = 0.15 raft_airgap = 0.15
skin_overlap = 20
speed_infill = =math.ceil(speed_print * 50 / 60) speed_infill = =math.ceil(speed_print * 50 / 60)
speed_print = 60 speed_print = 60
speed_topbottom = =math.ceil(speed_print * 35 / 60) speed_topbottom = =math.ceil(speed_print * 35 / 60)

View file

@ -16,7 +16,6 @@ brim_replaces_support = False
machine_nozzle_cool_down_speed = 0.75 machine_nozzle_cool_down_speed = 0.75
machine_nozzle_heat_up_speed = 1.6 machine_nozzle_heat_up_speed = 1.6
prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100
skin_overlap = 10
support_angle = 45 support_angle = 45
support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height
support_infill_sparse_thickness = =2 * layer_height support_infill_sparse_thickness = =2 * layer_height

View file

@ -17,7 +17,6 @@ machine_nozzle_cool_down_speed = 0.75
machine_nozzle_heat_up_speed = 1.6 machine_nozzle_heat_up_speed = 1.6
material_print_temperature = =default_material_print_temperature + 5 material_print_temperature = =default_material_print_temperature + 5
prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100
skin_overlap = 20
speed_topbottom = =math.ceil(speed_print * 35 / 70) speed_topbottom = =math.ceil(speed_print * 35 / 70)
speed_wall = =math.ceil(speed_print * 50 / 70) speed_wall = =math.ceil(speed_print * 50 / 70)
speed_wall_0 = =math.ceil(speed_wall * 35 / 50) speed_wall_0 = =math.ceil(speed_wall * 35 / 50)

View file

@ -18,7 +18,6 @@ machine_nozzle_cool_down_speed = 0.75
machine_nozzle_heat_up_speed = 1.6 machine_nozzle_heat_up_speed = 1.6
material_print_temperature = =default_material_print_temperature + 5 material_print_temperature = =default_material_print_temperature + 5
prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100
skin_overlap = 20
speed_topbottom = =math.ceil(speed_print * 35 / 70) speed_topbottom = =math.ceil(speed_print * 35 / 70)
speed_wall = =math.ceil(speed_print * 50 / 70) speed_wall = =math.ceil(speed_print * 50 / 70)
speed_wall_0 = =math.ceil(speed_wall * 35 / 50) speed_wall_0 = =math.ceil(speed_wall * 35 / 50)

View file

@ -12,7 +12,6 @@ variant = AA 0.4
weight = 1 weight = 1
[values] [values]
infill_overlap = 0
infill_wipe_dist = 0 infill_wipe_dist = 0
machine_min_cool_heat_time_window = 15 machine_min_cool_heat_time_window = 15
machine_nozzle_cool_down_speed = 0.85 machine_nozzle_cool_down_speed = 0.85
@ -25,7 +24,6 @@ retraction_hop = 0.2
retraction_hop_enabled = False retraction_hop_enabled = False
retraction_hop_only_when_collides = True retraction_hop_only_when_collides = True
retraction_prime_speed = =retraction_speed retraction_prime_speed = =retraction_speed
skin_overlap = 20
speed_print = 40 speed_print = 40
speed_topbottom = =math.ceil(speed_print * 30 / 35) speed_topbottom = =math.ceil(speed_print * 30 / 35)
speed_wall = =math.ceil(speed_print * 35 / 40) speed_wall = =math.ceil(speed_print * 35 / 40)

View file

@ -12,7 +12,6 @@ variant = AA 0.4
weight = -1 weight = -1
[values] [values]
infill_overlap = 0
infill_wipe_dist = 0 infill_wipe_dist = 0
machine_min_cool_heat_time_window = 15 machine_min_cool_heat_time_window = 15
material_print_temperature = =default_material_print_temperature + 10 material_print_temperature = =default_material_print_temperature + 10
@ -23,7 +22,6 @@ retraction_hop = 0.2
retraction_hop_enabled = False retraction_hop_enabled = False
retraction_hop_only_when_collides = True retraction_hop_only_when_collides = True
retraction_prime_speed = =retraction_speed retraction_prime_speed = =retraction_speed
skin_overlap = 20
speed_print = 45 speed_print = 45
speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_topbottom = =math.ceil(speed_print * 35 / 45)
speed_wall = =math.ceil(speed_print * 45 / 45) speed_wall = =math.ceil(speed_print * 45 / 45)

View file

@ -12,7 +12,6 @@ variant = AA 0.4
weight = 0 weight = 0
[values] [values]
infill_overlap = 0
infill_wipe_dist = 0 infill_wipe_dist = 0
machine_min_cool_heat_time_window = 15 machine_min_cool_heat_time_window = 15
machine_nozzle_cool_down_speed = 0.85 machine_nozzle_cool_down_speed = 0.85
@ -25,7 +24,6 @@ retraction_hop = 0.2
retraction_hop_enabled = False retraction_hop_enabled = False
retraction_hop_only_when_collides = True retraction_hop_only_when_collides = True
retraction_prime_speed = =retraction_speed retraction_prime_speed = =retraction_speed
skin_overlap = 20
speed_print = 40 speed_print = 40
speed_topbottom = =math.ceil(speed_print * 30 / 35) speed_topbottom = =math.ceil(speed_print * 30 / 35)
speed_wall = =math.ceil(speed_print * 35 / 40) speed_wall = =math.ceil(speed_print * 35 / 40)

View file

@ -12,7 +12,6 @@ variant = AA 0.4
weight = -2 weight = -2
[values] [values]
infill_overlap = 0
infill_wipe_dist = 0 infill_wipe_dist = 0
machine_min_cool_heat_time_window = 15 machine_min_cool_heat_time_window = 15
material_print_temperature = =default_material_print_temperature + 10 material_print_temperature = =default_material_print_temperature + 10
@ -23,7 +22,6 @@ retraction_hop = 0.2
retraction_hop_enabled = False retraction_hop_enabled = False
retraction_hop_only_when_collides = True retraction_hop_only_when_collides = True
retraction_prime_speed = =retraction_speed retraction_prime_speed = =retraction_speed
skin_overlap = 20
speed_print = 50 speed_print = 50
speed_topbottom = =math.ceil(speed_print * 40 / 50) speed_topbottom = =math.ceil(speed_print * 40 / 50)
speed_wall = =math.ceil(speed_print * 50 / 50) speed_wall = =math.ceil(speed_print * 50 / 50)

View file

@ -15,7 +15,6 @@ weight = -2
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
material_print_temperature = =default_material_print_temperature + 10 material_print_temperature = =default_material_print_temperature + 10
retraction_prime_speed = =retraction_speed retraction_prime_speed = =retraction_speed
skin_overlap = 20
speed_infill = =math.ceil(speed_print * 50 / 60) speed_infill = =math.ceil(speed_print * 50 / 60)
speed_print = 60 speed_print = 60
speed_topbottom = =math.ceil(speed_print * 35 / 60) speed_topbottom = =math.ceil(speed_print * 35 / 60)

View file

@ -15,7 +15,6 @@ weight = 1
ooze_shield_angle = 40 ooze_shield_angle = 40
raft_airgap = 0.4 raft_airgap = 0.4
retraction_prime_speed = =retraction_speed retraction_prime_speed = =retraction_speed
skin_overlap = 50
switch_extruder_prime_speed = 30 switch_extruder_prime_speed = 30
switch_extruder_retraction_amount = 30 switch_extruder_retraction_amount = 30
switch_extruder_retraction_speeds = 40 switch_extruder_retraction_speeds = 40

View file

@ -16,7 +16,6 @@ material_print_temperature = =default_material_print_temperature + 5
ooze_shield_angle = 40 ooze_shield_angle = 40
raft_airgap = 0.4 raft_airgap = 0.4
retraction_prime_speed = =retraction_speed retraction_prime_speed = =retraction_speed
skin_overlap = 50
switch_extruder_prime_speed = 30 switch_extruder_prime_speed = 30
switch_extruder_retraction_amount = 30 switch_extruder_retraction_amount = 30
switch_extruder_retraction_speeds = 40 switch_extruder_retraction_speeds = 40

View file

@ -15,7 +15,6 @@ weight = 0
ooze_shield_angle = 40 ooze_shield_angle = 40
raft_airgap = 0.4 raft_airgap = 0.4
retraction_prime_speed = =retraction_speed retraction_prime_speed = =retraction_speed
skin_overlap = 50
switch_extruder_prime_speed = 30 switch_extruder_prime_speed = 30
switch_extruder_retraction_amount = 30 switch_extruder_retraction_amount = 30
switch_extruder_retraction_speeds = 40 switch_extruder_retraction_speeds = 40

View file

@ -16,7 +16,6 @@ material_print_temperature = =default_material_print_temperature + 10
ooze_shield_angle = 40 ooze_shield_angle = 40
raft_airgap = 0.4 raft_airgap = 0.4
retraction_prime_speed = =retraction_speed retraction_prime_speed = =retraction_speed
skin_overlap = 50
switch_extruder_prime_speed = 30 switch_extruder_prime_speed = 30
switch_extruder_retraction_amount = 30 switch_extruder_retraction_amount = 30
switch_extruder_retraction_speeds = 40 switch_extruder_retraction_speeds = 40

View file

@ -13,8 +13,6 @@ weight = 1
[values] [values]
brim_width = 20 brim_width = 20
infill_overlap = 0
infill_overlap_mm = =0 if infill_sparse_density > 80 else 0.05
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
infill_wipe_dist = 0.1 infill_wipe_dist = 0.1
machine_min_cool_heat_time_window = 15 machine_min_cool_heat_time_window = 15
@ -29,7 +27,6 @@ raft_airgap = 0.25
retraction_hop = 2 retraction_hop = 2
retraction_hop_only_when_collides = True retraction_hop_only_when_collides = True
retraction_min_travel = 0.8 retraction_min_travel = 0.8
skin_overlap = 30
speed_print = 50 speed_print = 50
speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_topbottom = =math.ceil(speed_print * 25 / 50)
speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall = =math.ceil(speed_print * 40 / 50)

View file

@ -13,7 +13,6 @@ weight = -1
[values] [values]
brim_width = 20 brim_width = 20
infill_overlap_mm = =0 if infill_sparse_density > 80 else 0.05
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
infill_wipe_dist = 0.1 infill_wipe_dist = 0.1
machine_min_cool_heat_time_window = 15 machine_min_cool_heat_time_window = 15
@ -28,7 +27,6 @@ raft_airgap = 0.25
retraction_hop = 2 retraction_hop = 2
retraction_hop_only_when_collides = True retraction_hop_only_when_collides = True
retraction_min_travel = 0.8 retraction_min_travel = 0.8
skin_overlap = 30
speed_print = 50 speed_print = 50
speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_topbottom = =math.ceil(speed_print * 25 / 50)
speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall = =math.ceil(speed_print * 40 / 50)

View file

@ -13,7 +13,6 @@ weight = 0
[values] [values]
brim_width = 20 brim_width = 20
infill_overlap = 0
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
infill_wipe_dist = 0.1 infill_wipe_dist = 0.1
machine_min_cool_heat_time_window = 15 machine_min_cool_heat_time_window = 15
@ -27,7 +26,6 @@ raft_airgap = 0.25
retraction_hop = 2 retraction_hop = 2
retraction_hop_only_when_collides = True retraction_hop_only_when_collides = True
retraction_min_travel = 0.8 retraction_min_travel = 0.8
skin_overlap = 30
speed_print = 50 speed_print = 50
speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_topbottom = =math.ceil(speed_print * 25 / 50)
speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall = =math.ceil(speed_print * 40 / 50)

View file

@ -13,8 +13,6 @@ weight = -2
[values] [values]
brim_width = 20 brim_width = 20
infill_overlap = 0
infill_overlap_mm = =0 if infill_sparse_density > 80 else 0.05
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
infill_wipe_dist = 0.1 infill_wipe_dist = 0.1
machine_min_cool_heat_time_window = 15 machine_min_cool_heat_time_window = 15
@ -29,7 +27,6 @@ raft_airgap = 0.25
retraction_hop = 2 retraction_hop = 2
retraction_hop_only_when_collides = True retraction_hop_only_when_collides = True
retraction_min_travel = 0.8 retraction_min_travel = 0.8
skin_overlap = 30
speed_print = 50 speed_print = 50
speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_topbottom = =math.ceil(speed_print * 25 / 50)
speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall = =math.ceil(speed_print * 40 / 50)

View file

@ -14,7 +14,6 @@ weight = -2
[values] [values]
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
material_print_temperature = =default_material_print_temperature + 5 material_print_temperature = =default_material_print_temperature + 5
skin_overlap = 20
speed_infill = =math.ceil(speed_print * 50 / 60) speed_infill = =math.ceil(speed_print * 50 / 60)
speed_print = 60 speed_print = 60
speed_topbottom = =math.ceil(speed_print * 35 / 60) speed_topbottom = =math.ceil(speed_print * 35 / 60)

View file

@ -18,7 +18,6 @@ material_print_temperature = =default_material_print_temperature - 5
prime_tower_enable = False prime_tower_enable = False
raft_airgap = 0.25 raft_airgap = 0.25
retraction_prime_speed = =retraction_speed retraction_prime_speed = =retraction_speed
skin_overlap = 10
speed_print = 50 speed_print = 50
speed_topbottom = =math.ceil(speed_print * 35 / 50) speed_topbottom = =math.ceil(speed_print * 35 / 50)
speed_wall = =math.ceil(speed_print * 35 / 50) speed_wall = =math.ceil(speed_print * 35 / 50)

View file

@ -17,6 +17,5 @@ machine_nozzle_heat_up_speed = 1.6
prime_tower_enable = False prime_tower_enable = False
raft_airgap = 0.25 raft_airgap = 0.25
retraction_prime_speed = =retraction_speed retraction_prime_speed = =retraction_speed
skin_overlap = 10
top_bottom_thickness = 1 top_bottom_thickness = 1

View file

@ -21,7 +21,6 @@ material_print_temperature = =default_material_print_temperature + 5
prime_tower_enable = False prime_tower_enable = False
raft_airgap = 0.25 raft_airgap = 0.25
retraction_prime_speed = =retraction_speed retraction_prime_speed = =retraction_speed
skin_overlap = 20
speed_topbottom = =math.ceil(speed_print * 40 / 70) speed_topbottom = =math.ceil(speed_print * 40 / 70)
speed_wall = =math.ceil(speed_print * 55 / 70) speed_wall = =math.ceil(speed_print * 55 / 70)
speed_wall_0 = =math.ceil(speed_wall * 45 / 50) speed_wall_0 = =math.ceil(speed_wall * 45 / 50)

View file

@ -25,7 +25,6 @@ material_print_temperature = =default_material_print_temperature + 10
prime_tower_enable = False prime_tower_enable = False
raft_airgap = 0.25 raft_airgap = 0.25
retraction_prime_speed = =retraction_speed retraction_prime_speed = =retraction_speed
skin_overlap = 20
speed_print = 50 speed_print = 50
speed_wall = 50 speed_wall = 50
top_bottom_thickness = 0.9 top_bottom_thickness = 0.9

View file

@ -13,7 +13,6 @@ weight = -1
[values] [values]
brim_width = 20 brim_width = 20
infill_overlap = 0
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral'
infill_wipe_dist = 0.1 infill_wipe_dist = 0.1
machine_min_cool_heat_time_window = 15 machine_min_cool_heat_time_window = 15

View file

@ -13,7 +13,6 @@ weight = 0
[values] [values]
brim_width = 20 brim_width = 20
infill_overlap = 0
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral'
infill_wipe_dist = 0.1 infill_wipe_dist = 0.1
machine_min_cool_heat_time_window = 15 machine_min_cool_heat_time_window = 15

View file

@ -13,7 +13,6 @@ weight = -2
[values] [values]
brim_width = 20 brim_width = 20
infill_overlap = 0
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral'
infill_wipe_dist = 0.1 infill_wipe_dist = 0.1
machine_min_cool_heat_time_window = 15 machine_min_cool_heat_time_window = 15

View file

@ -17,7 +17,6 @@ machine_nozzle_heat_up_speed = 1.6
material_print_temperature = =default_material_print_temperature - 15 material_print_temperature = =default_material_print_temperature - 15
prime_tower_enable = False prime_tower_enable = False
retraction_prime_speed = =retraction_speed retraction_prime_speed = =retraction_speed
skin_overlap = 10
speed_print = 45 speed_print = 45
speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_topbottom = =math.ceil(speed_print * 35 / 45)
speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall = =math.ceil(speed_print * 40 / 45)

View file

@ -17,7 +17,6 @@ machine_nozzle_heat_up_speed = 1.6
material_print_temperature = =default_material_print_temperature - 15 material_print_temperature = =default_material_print_temperature - 15
prime_tower_enable = False prime_tower_enable = False
retraction_prime_speed = =retraction_speed retraction_prime_speed = =retraction_speed
skin_overlap = 10
speed_print = 45 speed_print = 45
speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_topbottom = =math.ceil(speed_print * 35 / 45)
speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall = =math.ceil(speed_print * 40 / 45)

View file

@ -17,7 +17,6 @@ machine_nozzle_heat_up_speed = 1.6
material_print_temperature = =default_material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 10
prime_tower_enable = False prime_tower_enable = False
retraction_prime_speed = =retraction_speed retraction_prime_speed = =retraction_speed
skin_overlap = 20
speed_print = 50 speed_print = 50
speed_roofing = =math.ceil(speed_wall * 20 / 24) speed_roofing = =math.ceil(speed_wall * 20 / 24)
speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_topbottom = =math.ceil(speed_print * 25 / 50)

View file

@ -25,7 +25,6 @@ material_print_temperature = =default_material_print_temperature - 5
prime_tower_enable = False prime_tower_enable = False
raft_airgap = 0.25 raft_airgap = 0.25
retraction_prime_speed = =retraction_speed retraction_prime_speed = =retraction_speed
skin_overlap = 20
speed_print = 50 speed_print = 50
speed_wall = 50 speed_wall = 50
top_bottom_thickness = 1.2 top_bottom_thickness = 1.2

View file

@ -14,7 +14,6 @@ weight = -1
[values] [values]
brim_width = 8.75 brim_width = 8.75
gradual_infill_step_height = =5 * layer_height gradual_infill_step_height = =5 * layer_height
infill_overlap = 0
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d'
infill_sparse_density = 10 infill_sparse_density = 10
infill_wipe_dist = 0.1 infill_wipe_dist = 0.1
@ -32,7 +31,6 @@ retraction_extra_prime_amount = 0.8
retraction_hop_only_when_collides = True retraction_hop_only_when_collides = True
retraction_min_travel = =line_width * 2 retraction_min_travel = =line_width * 2
skin_line_width = =round(line_width / 0.8, 2) skin_line_width = =round(line_width / 0.8, 2)
skin_overlap = 5
speed_print = 25 speed_print = 25
speed_topbottom = =math.ceil(speed_print * 0.8) speed_topbottom = =math.ceil(speed_print * 0.8)
speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall = =math.ceil(speed_print * 25 / 25)

View file

@ -14,7 +14,6 @@ weight = 0
[values] [values]
brim_width = 8.75 brim_width = 8.75
gradual_infill_step_height = =5 * layer_height gradual_infill_step_height = =5 * layer_height
infill_overlap = 0
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d'
infill_sparse_density = 10 infill_sparse_density = 10
infill_wipe_dist = 0.1 infill_wipe_dist = 0.1
@ -31,7 +30,6 @@ retraction_extra_prime_amount = 0.8
retraction_hop_only_when_collides = True retraction_hop_only_when_collides = True
retraction_min_travel = =line_width * 2 retraction_min_travel = =line_width * 2
skin_line_width = =round(line_width / 0.8, 2) skin_line_width = =round(line_width / 0.8, 2)
skin_overlap = 5
speed_print = 25 speed_print = 25
speed_topbottom = =math.ceil(speed_print * 0.8) speed_topbottom = =math.ceil(speed_print * 0.8)
speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall = =math.ceil(speed_print * 25 / 25)

Some files were not shown because too many files have changed in this diff Show more