This commit is contained in:
saumya.jain 2023-10-02 16:35:02 +02:00
commit bcf77bdc20
1457 changed files with 14086 additions and 739 deletions

View File

@ -143,6 +143,9 @@ jobs:
p12-file-base64: ${{ secrets.MACOS_CERT_INSTALLER_P12 }}
p12-password: ${{ secrets.MACOS_CERT_PASSPHRASE }}
- name: Remove private Artifactory
run: conan remote remove cura-conan-private || true
- name: Get Conan configuration
run: |
conan config install https://github.com/Ultimaker/conan-config.git
@ -155,7 +158,7 @@ jobs:
run: conan install $CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$ENTERPRISE -o cura:staging=$STAGING --json "cura_inst/conan_install_info.json"
- name: Upload the Package(s)
if: always()
if: ${{ inputs.operating_system != 'self-hosted' }}
run: |
conan upload "*" -r cura --all -c

2
.gitignore vendored
View File

@ -104,3 +104,5 @@ Ultimaker-Cura.spec
/resources/qml/Dialogs/AboutDialogVersionsList.qml
/plugins/CuraEngineGradualFlow
/resources/bundled_packages/bundled_*.json
curaengine_plugin_gradual_flow
curaengine_plugin_gradual_flow.exe

View File

@ -2,6 +2,7 @@ checks:
diagnostic-mesh-file-extension: true
diagnostic-mesh-file-size: true
diagnostic-definition-redundant-override: true
diagnostic-resources-macos-app-directory-name: true
fixes:
diagnostic-definition-redundant-override: true
format:

View File

@ -78,6 +78,11 @@ pyinstaller:
src: "bin"
dst: "."
binary: "CuraEngine"
curaengine_gradual_flow_plugin_service:
package: "curaengine_plugin_gradual_flow"
src: "bin"
dst: "."
binary: "curaengine_plugin_gradual_flow"
hiddenimports:
- "pySavitar"
- "pyArcus"

View File

@ -48,7 +48,7 @@ class CuraConan(ConanFile):
def set_version(self):
if not self.version:
self.version = "5.5.0-alpha"
self.version = "5.5.0-beta.1"
@property
def _pycharm_targets(self):
@ -357,10 +357,8 @@ class CuraConan(ConanFile):
# Copy the external plugins that we want to bundle with Cura
rmdir(self,str(self.source_path.joinpath("plugins", "CuraEngineGradualFlow")))
curaengine_plugin_gradual_flow = self.dependencies["curaengine_plugin_gradual_flow"].cpp_info
copy(self, "*.py", curaengine_plugin_gradual_flow.resdirs[0], str(self.source_path.joinpath("plugins", "CuraEngineGradualFlow")), keep_path = True)
ext = ".exe" if self.settings.os == "Windows" else ""
copy(self, f"curaengine_plugin_gradual_flow{ext}", curaengine_plugin_gradual_flow.resdirs[0], str(self.source_path.joinpath("plugins", "CuraEngineGradualFlow")), keep_path = True)
copy(self, "*.json", curaengine_plugin_gradual_flow.resdirs[0], str(self.source_path.joinpath("plugins", "CuraEngineGradualFlow")), keep_path = True)
copy(self, "*", curaengine_plugin_gradual_flow.resdirs[0], str(self.source_path.joinpath("plugins", "CuraEngineGradualFlow")), keep_path = True)
copy(self, "*", curaengine_plugin_gradual_flow.bindirs[0], self.source_folder, keep_path = False)
copy(self, "bundled_*.json", curaengine_plugin_gradual_flow.resdirs[1], str(self.source_path.joinpath("resources", "bundled_packages")), keep_path = False)
# Copy resources of cura_binary_data

View File

@ -1,5 +1,7 @@
# Copyright (c) 2023 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.
import socket
import os
import subprocess
from typing import Optional, List
@ -9,6 +11,7 @@ from UM.Settings.AdditionalSettingDefinitionAppender import AdditionalSettingDef
from UM.PluginObject import PluginObject
from UM.i18n import i18nCatalog
from UM.Platform import Platform
from UM.Resources import Resources
class BackendPlugin(AdditionalSettingDefinitionsAppender, PluginObject):
@ -42,6 +45,15 @@ class BackendPlugin(AdditionalSettingDefinitionsAppender, PluginObject):
def getAddress(self) -> str:
return self._plugin_address
def setAvailablePort(self) -> None:
"""
Sets the port to a random available port.
"""
sock = socket.socket()
sock.bind((self.getAddress(), 0))
port = sock.getsockname()[1]
self.setPort(port)
def _validatePluginCommand(self) -> list[str]:
"""
Validate the plugin command and add the port parameter if it is missing.
@ -61,14 +73,26 @@ class BackendPlugin(AdditionalSettingDefinitionsAppender, PluginObject):
"""
if not self.usePlugin():
return False
Logger.info(f"Starting backend_plugin [{self._plugin_id}] with command: {self._validatePluginCommand()}")
plugin_log_path = os.path.join(Resources.getDataStoragePath(), f"{self.getPluginId()}.log")
if os.path.exists(plugin_log_path):
try:
os.remove(plugin_log_path)
except:
pass # removing is only done such that it doesn't grow out of proportions, if it fails once or twice that is okay
Logger.info(f"Logging plugin output to: {plugin_log_path}")
try:
# STDIN needs to be None because we provide no input, but communicate via a local socket instead.
# The NUL device sometimes doesn't exist on some computers.
Logger.info(f"Starting backend_plugin [{self._plugin_id}] with command: {self._validatePluginCommand()}")
popen_kwargs = {"stdin": None}
if Platform.isWindows():
popen_kwargs["creationflags"] = subprocess.CREATE_NO_WINDOW
self._process = subprocess.Popen(self._validatePluginCommand(), **popen_kwargs)
with open(plugin_log_path, 'a') as f:
popen_kwargs = {
"stdin": None,
"stdout": f, # Redirect output to file
"stderr": subprocess.STDOUT, # Combine stderr and stdout
}
if Platform.isWindows():
popen_kwargs["creationflags"] = subprocess.CREATE_NO_WINDOW
self._process = subprocess.Popen(self._validatePluginCommand(), **popen_kwargs)
self._is_running = True
return True
except PermissionError:

View File

@ -85,7 +85,7 @@ class PlatformPhysics:
move_vector = move_vector.set(y = -bbox.bottom + z_offset)
# If there is no convex hull for the node, start calculating it and continue.
if not node.getDecorator(ConvexHullDecorator) and not node.callDecoration("isNonPrintingMesh"):
if not node.getDecorator(ConvexHullDecorator) and not node.callDecoration("isNonPrintingMesh") and node.callDecoration("getLayerData") is None:
node.addDecorator(ConvexHullDecorator())
# only push away objects if this node is a printing mesh

View File

@ -28,6 +28,7 @@ empty_material_container.setMetaDataEntry("type", "material")
empty_material_container.setMetaDataEntry("base_file", "empty_material")
empty_material_container.setMetaDataEntry("GUID", "FFFFFFFF-FFFF-FFFF-FFFF-FFFFFFFFFFFF")
empty_material_container.setMetaDataEntry("material", "empty")
empty_material_container.setMetaDataEntry("brand", "empty_brand")
# Empty quality
EMPTY_QUALITY_CONTAINER_ID = "empty_quality"

View File

@ -83,7 +83,6 @@ class CuraEngineBackend(QObject, Backend):
os.path.join(CuraApplication.getInstallPrefix(), "bin"),
os.path.dirname(os.path.abspath(sys.executable)),
]
self._last_backend_plugin_port = self._port + 1000
for path in search_path:
engine_path = os.path.join(path, executable_name)
if os.path.isfile(engine_path):
@ -205,8 +204,7 @@ class CuraEngineBackend(QObject, Backend):
for backend_plugin in backend_plugins:
# Set the port to prevent plugins from using the same one.
if backend_plugin.getPort() < 1:
backend_plugin.setPort(self._last_backend_plugin_port)
self._last_backend_plugin_port += 1
backend_plugin.setAvailablePort()
backend_plugin.start()
def stopPlugins(self) -> None:

View File

@ -27,14 +27,7 @@ class AutoDetectBaudJob(Job):
write_timeout = 3
read_timeout = 3
tries = 2
programmer = Stk500v2()
serial = None
try:
programmer.connect(self._serial_port)
serial = programmer.leaveISP()
except ispBase.IspError:
programmer.close()
for retry in range(tries):
for baud_rate in self._all_baud_rates:

View File

@ -1,7 +1,7 @@
[project]
name = "printerlinter"
description = "Cura UltiMaker printer linting tool"
version = "0.1.0"
version = "0.1.1"
authors = [
{ name = "UltiMaker", email = "cura@ultimaker.com" }
]

View File

@ -1,26 +1,27 @@
from pathlib import Path
from typing import Optional
from typing import Optional, List
from .linters.profile import Profile
from .linters.defintion import Definition
from .linters.linter import Linter
from .linters.meshes import Meshes
from .linters.directory import Directory
def getLinter(file: Path, settings: dict) -> Optional[Linter]:
def getLinter(file: Path, settings: dict) -> Optional[List[Linter]]:
""" Returns a Linter depending on the file format """
if not file.exists():
return None
if ".inst" in file.suffixes and ".cfg" in file.suffixes:
return Profile(file, settings)
return [Directory(file, settings), Profile(file, settings)]
if ".def" in file.suffixes and ".json" in file.suffixes:
if file.stem in ("fdmprinter.def", "fdmextruder.def"):
return None
return Definition(file, settings)
return [Directory(file, settings), Definition(file, settings)]
if file.parent.stem == "meshes":
return Meshes(file, settings)
return [Meshes(file, settings)]
return None
return [Directory(file, settings)]

View File

@ -0,0 +1,31 @@
from pathlib import Path
from typing import Iterator
from ..diagnostic import Diagnostic
from .linter import Linter
class Directory(Linter):
def __init__(self, file: Path, settings: dict) -> None:
""" Finds issues in the parent directory"""
super().__init__(file, settings)
def check(self) -> Iterator[Diagnostic]:
if self._settings["checks"].get("diagnostic-resources-macos-app-directory-name", False):
for check in self.checkForDotInDirName():
yield check
yield
def checkForDotInDirName(self) -> Iterator[Diagnostic]:
""" Check if there is a dot in the directory name, MacOS has trouble signing and notarizing otherwise """
if any("." in p for p in self._file.parent.parts):
yield Diagnostic(
file = self._file,
diagnostic_name = "diagnostic-resources-macos-app-directory-name",
message = f"Directory name containing a `.` not allowed {self._file.suffix}, rename directory containing this file e.q: `_`",
level = "Error",
offset = 1
)
yield

View File

@ -71,12 +71,16 @@ def main() -> None:
def diagnoseIssuesWithFile(file: Path, settings: dict) -> List[Diagnostic]:
""" For file, runs all diagnostic checks in settings and returns a list of diagnostics """
linter = factory.getLinter(file, settings)
linters = factory.getLinter(file, settings)
if not linter:
if not linters:
return []
return list(filter(lambda d: d is not None, linter.check()))
linter_results = []
for linter in linters:
linter_results.extend(list(filter(lambda d: d is not None, linter.check())))
return linter_results
def applyFixesToFile(file, settings, full_body_check) -> None:

View File

@ -2453,7 +2453,7 @@
"material_print_temperature_layer_0":
{
"label": "Printing Temperature Initial Layer",
"description": "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer.",
"description": "The temperature used for printing the first layer.",
"unit": "\u00b0C",
"type": "float",
"default_value": 215,
@ -8125,6 +8125,14 @@
"resolve": "max(extruderValues('raft_base_wall_count'))",
"settable_per_mesh": false,
"settable_per_extruder": false
},
"group_outer_walls":
{
"label": "Group Outer Walls",
"description": "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped.",
"type": "bool",
"default_value": true,
"settable_per_mesh": true
}
}
},

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Cura 5.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-09-12 17:10+0200\n"
"PO-Revision-Date: 2023-02-16 20:28+0100\n"
"POT-Creation-Date: 2023-09-20 14:03+0000\n"
"PO-Revision-Date: 2023-09-03 18:15+0200\n"
"Last-Translator: Miroslav Šustek <sustmidown@centrum.cz>\n"
"Language-Team: DenyCZ <www.github.com/DenyCZ>\n"
"Language: cs_CZ\n"
@ -16,7 +16,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n>=2 && n<=4 ? 1 : 2);\n"
"X-Generator: Poedit 3.2.2\n"
"X-Generator: Poedit 3.3.2\n"
#, python-format
msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
@ -498,7 +498,7 @@ msgstr "Model se může jevit velmi malý, pokud je jeho jednotka například v
msgctxt "@label"
msgid "Annealing"
msgstr ""
msgstr "Žíhání"
msgctxt "@label"
msgid "Anonymous"
@ -547,7 +547,7 @@ msgstr "Opravdu chcete tiskárnu {printer_name} dočasně odebrat?"
msgctxt "@info:question"
msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
msgstr ""
msgstr "Opravdu chcete začít nový projekt? Tímto vyčistíte podložku a zrušíte neuložená nastavení."
msgctxt "@label (%1 is object name)"
msgid "Are you sure you wish to remove %1? This cannot be undone!"
@ -1173,7 +1173,7 @@ msgstr "Verze Cura"
msgctxt "name"
msgid "CuraEngine Backend"
msgstr ""
msgstr "CuraEngine Backend"
msgctxt "description"
msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps"
@ -1707,7 +1707,7 @@ msgstr "Kontroler aktualizace firmwaru"
msgctxt "name"
msgid "Firmware Updater"
msgstr ""
msgstr "Aktualizace Firmware"
msgctxt "@label"
msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
@ -1839,7 +1839,7 @@ msgstr "Obrázek GIF"
msgctxt "@label Description for application dependency"
msgid "GUI framework"
msgstr ""
msgstr "GUI framework"
msgctxt "@label Description for application dependency"
msgid "GUI framework bindings"
@ -2152,7 +2152,7 @@ msgstr "Obrázek JPG"
msgctxt "@label Description for application dependency"
msgid "JSON parser"
msgstr ""
msgstr "JSON parser"
msgctxt "@label"
msgid "Job Name"
@ -2272,7 +2272,7 @@ msgstr "Lineární"
msgctxt "@label Description for development tool"
msgid "Linux cross-distribution application deployment"
msgstr ""
msgstr "Sestavování Linux aplikací nezávislých na distribuci"
msgctxt "@label"
msgid "Load %3 as material %1 (This cannot be overridden)."
@ -2881,7 +2881,7 @@ msgstr "Přesahy na tomto modelu nejsou podporovány."
msgctxt "@action:button"
msgid "Override"
msgstr ""
msgstr "Přepsat"
msgctxt "@label"
msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
@ -3075,7 +3075,7 @@ msgstr "Knihovna pro plošnou optimalizaci vyvinutá Prusa Research"
msgctxt "@item:inmenu"
msgid "Post Processing"
msgstr ""
msgstr "Post Processing"
msgctxt "name"
msgid "Post Processing"
@ -4014,7 +4014,7 @@ msgstr "Přihlásit se"
msgctxt "@info"
msgid "Sign in into UltiMaker Digital Factory"
msgstr ""
msgstr "Přihlaste se do UltiMaker Digital Factory"
msgctxt "@button"
msgid "Sign in to Digital Factory"
@ -4030,7 +4030,7 @@ msgstr "Pohled simulace"
msgctxt "@tooltip"
msgid "Skin"
msgstr ""
msgstr "Povrch"
msgctxt "@action:button"
msgid "Skip"
@ -4315,7 +4315,7 @@ msgstr "Množství vyhlazení, které se použije na obrázek."
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 ""
msgstr "Profil žíhání vyžaduje post-processing v troubě poté, co je tisk dokončen. Tento profil zachovává rozměrovou přesnost výtisku po žíhání a vylepšuje pevnost, tuhost a tepelnou odolnost."
msgctxt "@label"
msgid "The assigned printer, %1, requires the following configuration change:"
@ -4793,7 +4793,7 @@ msgstr "USB tisk"
msgctxt "@button"
msgid "UltiMaker Account"
msgstr ""
msgstr "Účet UltiMaker"
msgctxt "@info"
msgid "UltiMaker Certified Material"
@ -5105,7 +5105,7 @@ msgstr "Aktualizuje konfigurace z Cura 5.2 na Cura 5.3."
msgctxt "description"
msgid "Upgrades configurations from Cura 5.3 to Cura 5.4."
msgstr ""
msgstr "Aktualizuje konfigurace z Cura 5.3 na Cura 5.4."
msgctxt "description"
msgid "Upgrades configurations from Cura 5.4 to Cura 5.5."
@ -5241,7 +5241,7 @@ msgstr "Aktualizace verze 5.2 na 5.3"
msgctxt "name"
msgid "Version Upgrade 5.3 to 5.4"
msgstr ""
msgstr "Aktualizace verze 5.3 na 5.4"
msgctxt "name"
msgid "Version Upgrade 5.4 to 5.5"

View File

@ -15,7 +15,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.2.2\n"
"X-Generator: Poedit 3.3.2\n"
msgctxt "ironing_inset description"
msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print."
@ -67,7 +67,7 @@ msgstr "Část plně obklopená jinou částí může generovat vnější límec
msgctxt "support_tree_branch_reach_limit description"
msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) "
msgstr ""
msgstr "Doporučení, jak daleko se mohou větve pohnout od bodu, který podporují. Větve mohou tuto hodnotu porušit, aby dosáhly svého cíle (podložka nebo plochá část modelu). Snížení této hodnoty učiní podporu více pevnou, ale zvýší počet větví (a společně s tím také množství použitého materiálu a dobu tisku) "
msgctxt "extruder_prime_pos_abs label"
msgid "Absolute Extruder Prime Position"
@ -123,7 +123,7 @@ msgstr "Upravuje hustotu střech a podlah nosné konstrukce. Vyšší hodnota m
msgctxt "support_tree_top_rate description"
msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top."
msgstr ""
msgstr "Upravuje hustotu struktury podpory použité pro generování konečků větví. Vyšší hodnota zajistí lepší převisy, ale bude těžší podpory odstranit. Použijte střechu podpory pro vysoké hodnoty, anebo se ujistěte, že hustota podpor nahoře je podobně vysoká."
msgctxt "support_infill_rate description"
msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
@ -267,7 +267,7 @@ msgstr "Obojí"
msgctxt "support_interface_priority option nothing"
msgid "Both overlap"
msgstr ""
msgstr "Překrýt obojí"
msgctxt "bottom_layers label"
msgid "Bottom Layers"
@ -291,15 +291,15 @@ msgstr "Spodní tloušťka"
msgctxt "support_tree_top_rate label"
msgid "Branch Density"
msgstr ""
msgstr "Hustota větví"
msgctxt "support_tree_branch_diameter label"
msgid "Branch Diameter"
msgstr ""
msgstr "Průměr větve"
msgctxt "support_tree_branch_diameter_angle label"
msgid "Branch Diameter Angle"
msgstr ""
msgstr "Úhel průměru větve"
msgctxt "material_break_preparation_retracted_position label"
msgid "Break Preparation Retracted Position"
@ -711,11 +711,11 @@ msgstr "Průměr"
msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label"
msgid "Diameter Increase To Model"
msgstr ""
msgstr "Zvýšení průměru k modelu"
msgctxt "support_tree_bp_diameter description"
msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion."
msgstr ""
msgstr "Průměr, kterého se každá větev snaží dosáhnout, když se dotýká podložky. Zlepšuje přilnavost."
msgctxt "adhesion_type description"
msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model."
@ -875,7 +875,7 @@ msgstr "Povolit retrakci"
msgctxt "support_brim_enable label"
msgid "Enable Support Brim"
msgstr "Povolit okrajové podpory"
msgstr "Povolit límec podpory"
msgctxt "support_bottom_enable label"
msgid "Enable Support Floor"
@ -887,7 +887,7 @@ msgstr "Povolit rozhraní podpor"
msgctxt "support_roof_enable label"
msgid "Enable Support Roof"
msgstr "Povolit podpory stěch"
msgstr "Povolit střechu podpory"
msgctxt "acceleration_travel_enabled label"
msgid "Enable Travel Acceleration"
@ -931,7 +931,7 @@ msgstr "Rychlost proplachování na konci filamentu"
msgctxt "brim_replaces_support description"
msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions."
msgstr "Zajistěte, aby Límec bylo natištěno kolem modelu, i když by tento prostor byl jinak obsazen podporou. To nahradí některé regiony první vrstvy podpory okrajovými regiony."
msgstr "Vynutí vytištění límce kolem modelu, i když by tento prostor byl jinak obsazen podporou. To nahradí některé regiony první vrstvy podpory okrajovými regiony."
msgctxt "support_type option everywhere"
msgid "Everywhere"
@ -1075,7 +1075,7 @@ msgstr "Kompenzace toku na hlavních liniích věží."
msgctxt "skirt_brim_material_flow description"
msgid "Flow compensation on skirt or brim lines."
msgstr "Kompenzace toku na límci nebo okrajových liniích."
msgstr "Kompenzace toku na okrajových nebo límcových liniích."
msgctxt "support_bottom_material_flow description"
msgid "Flow compensation on support floor lines."
@ -1213,7 +1213,7 @@ msgstr "Generovat podpory"
msgctxt "support_brim_enable description"
msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate."
msgstr "Vytvořte okraj v podpůrných výplňových oblastech první vrstvy. Tento okraj je vytištěn pod podpěrou, ne kolem ní. Povolením tohoto nastavení se zvýší přilnavost podpory k podložce."
msgstr "Vytvořte límec v podpůrných výplňových oblastech první vrstvy. Tento límec je vytištěn pod podpěrou, ne kolem ní. Povolením tohoto nastavení se zvýší přilnavost podpory k podložce."
msgctxt "support_interface_enable description"
msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model."
@ -1325,7 +1325,7 @@ msgstr "Horizontální expanze díry"
msgctxt "hole_xy_offset_max_diameter label"
msgid "Hole Horizontal Expansion Max Diameter"
msgstr ""
msgstr "Maximální průměr horizontální expanze díry"
msgctxt "small_hole_max_size description"
msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
@ -1405,11 +1405,11 @@ msgstr "Jak daleko je zatažen filament každého extruderu sdílené trysky po
msgctxt "support_interface_priority description"
msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof."
msgstr ""
msgstr "Jak mají rozhraní podpor a podpory interagovat když se překrývají. Aktuálně implementováno pro střechy podpor."
msgctxt "support_tree_min_height_to_model description"
msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof."
msgstr ""
msgstr "Jak vysoká musí větev být, aby mohla být umístěna na modelu. Zabraňuje malým hrudkám tvořícím podpory. Toto nastavení je ignorováno, pokud větev podporuje střechu podpory."
msgctxt "bridge_skin_support_threshold description"
msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings."
@ -1561,7 +1561,7 @@ msgstr "Průtok první vrstvy spodku"
msgctxt "support_tree_bp_diameter label"
msgid "Initial Layer Diameter"
msgstr ""
msgstr "Průměr počáteční vrstvy"
msgctxt "material_flow_layer_0 label"
msgid "Initial Layer Flow"
@ -1665,11 +1665,11 @@ msgstr "Zevnitř ven"
msgctxt "support_interface_priority option interface_lines_overwrite_support_area"
msgid "Interface lines preferred"
msgstr ""
msgstr "Preferovat čáry rozhraní"
msgctxt "support_interface_priority option interface_area_overwrite_support_area"
msgid "Interface preferred"
msgstr ""
msgstr "Preferovat rozhraní"
msgctxt "interlocking_beam_layer_count label"
msgid "Interlocking Beam Layer Count"
@ -1729,7 +1729,7 @@ msgstr "Je střed počátek"
msgctxt "material_is_support_material label"
msgid "Is support material"
msgstr ""
msgstr "Je materiál podpory"
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)?"
@ -1737,7 +1737,7 @@ msgstr "Je tento materiál typem, který se při zahřívání (krystalický) č
msgctxt "material_is_support_material description"
msgid "Is this material typically used as a support material during printing."
msgstr ""
msgstr "Je tento materiál typicky při tisku používán jako materiál podpory?"
msgctxt "magic_fuzzy_skin_outside_only description"
msgid "Jitter only the parts' outlines and not the parts' holes."
@ -1805,11 +1805,11 @@ msgstr "Úhel podpory bleskové výplně"
msgctxt "support_tree_limit_branch_reach label"
msgid "Limit Branch Reach"
msgstr ""
msgstr "Omezení dosahu větví"
msgctxt "support_tree_limit_branch_reach description"
msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)"
msgstr ""
msgstr "Omezuje, jak daleko by měly větve cestovat od bodu, který podporují. Toto nastavení může učinit podporu pevnější, ale zvýší počet větví (a společně s tím také množství použitého materiálu a dobu tisku)"
msgctxt "cutting_mesh description"
msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder."
@ -1961,7 +1961,7 @@ msgstr "Maximální akcelerace Z"
msgctxt "support_tree_angle label"
msgid "Maximum Branch Angle"
msgstr ""
msgstr "Maximální úhel větví"
msgctxt "meshfix_maximum_deviation label"
msgid "Maximum Deviation"
@ -2117,7 +2117,7 @@ msgstr "Minimální feedrate"
msgctxt "support_tree_min_height_to_model label"
msgid "Minimum Height To Model"
msgstr ""
msgstr "Minimální výška k modelu"
msgctxt "min_infill_area label"
msgid "Minimum Infill Area"
@ -2369,11 +2369,11 @@ msgstr "Offset s extrudérem"
msgctxt "support_tree_rest_preference option buildplate"
msgid "On buildplate when possible"
msgstr ""
msgstr "Pokud možno na podložce"
msgctxt "support_tree_rest_preference option graceful"
msgid "On model if required"
msgstr ""
msgstr "Klidně i na modelu"
msgctxt "print_sequence option one_at_a_time"
msgid "One at a Time"
@ -2389,7 +2389,7 @@ msgstr "Žehlení provádějte pouze na poslední vrstvě sítě. To šetří č
msgctxt "brim_outside_only description"
msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much."
msgstr "Límec tiskněte pouze na vnější stranu modelu. Tím se snižuje množství okraje, který je třeba následně odstranit, zatímco to tolik nesnižuje přilnavost k podložce."
msgstr "Límec tiskněte pouze na vnější stranu modelu. Tím se snižuje množství límce, který je třeba následně odstranit, zatímco to tolik nesnižuje přilnavost k podložce."
msgctxt "ooze_shield_angle label"
msgid "Ooze Shield Angle"
@ -2401,7 +2401,7 @@ msgstr "Vzdálenost Ooze štítu"
msgctxt "support_tree_branch_reach_limit label"
msgid "Optimal Branch Range"
msgstr ""
msgstr "Optimální dosah větví"
msgctxt "optimize_wall_printing_order label"
msgid "Optimize Wall Printing Order"
@ -2409,7 +2409,7 @@ msgstr "Optimalizace pořadí tisku stěn"
msgctxt "optimize_wall_printing_order description"
msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type."
msgstr "Optimalizujte pořadí, ve kterém se stěny tisknou, aby se snížil počet retrakcí a ujetá vzdálenost. Většina částí bude mít z tohoto povolení prospěch, ale některé mohou ve skutečnosti trvat déle, proto porovnejte odhady doby tisku s optimalizací a bez ní. První vrstva není optimalizována při výběru okraje jako adhezního typu desky."
msgstr "Optimalizujte pořadí, ve kterém se stěny tisknou, aby se snížil počet retrakcí a ujetá vzdálenost. Většina částí bude mít z tohoto povolení prospěch, ale některé mohou ve skutečnosti trvat déle, proto porovnejte odhady doby tisku s optimalizací a bez ní. První vrstva není optimalizována při výběru límce jako adhezního typu desky."
msgctxt "machine_nozzle_tip_outer_diameter label"
msgid "Outer Nozzle Diameter"
@ -2489,7 +2489,7 @@ msgstr "Polygony v krájených vrstvách, jejichž obvod je menší než toto mn
msgctxt "support_tree_angle_slow label"
msgid "Preferred Branch Angle"
msgstr ""
msgstr "Preferovaný úhel větví"
msgctxt "wall_transition_filter_deviation description"
msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems."
@ -2537,7 +2537,7 @@ msgstr "Pozice Y hlavní věže"
msgctxt "prime_tower_brim_enable description"
msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type."
msgstr "Hlavní věže mohou potřebovat zvláštní přilnavost, kterou poskytuje Límec, i když to model neumožňuje. V současnosti nelze použít s adhezním typem „Raft“."
msgstr "Hlavní věže mohou potřebovat zvláštní přilnavost, kterou poskytuje límec, i když to model neumožňuje. V současnosti nelze použít s adhezním typem „Raft“."
msgctxt "acceleration_print label"
msgid "Print Acceleration"
@ -2609,7 +2609,7 @@ msgstr "Teplota při tisku první vrstvy"
msgctxt "skirt_height description"
msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
msgstr ""
msgstr "Tisk vnitřní čáry okraje pomocí více vrstev pomáhá snadnějšímu odstraňování okraje."
msgctxt "alternate_extra_perimeter description"
msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
@ -2849,7 +2849,7 @@ msgstr "Nahrazuje nejvzdálenější část horního / spodního vzoru řadou so
msgctxt "support_tree_rest_preference label"
msgid "Rest Preference"
msgstr ""
msgstr "Preferované umístění podpor"
msgctxt "travel_retract_before_outer_wall label"
msgid "Retract Before Outer Wall"
@ -2997,7 +2997,7 @@ msgstr "Vzdálenost okraj"
msgctxt "skirt_height label"
msgid "Skirt Height"
msgstr ""
msgstr "Výška okraje"
msgctxt "skirt_line_count label"
msgid "Skirt Line Count"
@ -3005,7 +3005,7 @@ msgstr "Počet linek okraje"
msgctxt "acceleration_skirt_brim label"
msgid "Skirt/Brim Acceleration"
msgstr "Akcelerace tisku límce/okraje"
msgstr "Akcelerace tisku okraje/límce"
msgctxt "skirt_brim_extruder_nr label"
msgid "Skirt/Brim Extruder"
@ -3013,11 +3013,11 @@ msgstr "Extruder okraje/límce"
msgctxt "skirt_brim_material_flow label"
msgid "Skirt/Brim Flow"
msgstr "Průtok u límce/okraje"
msgstr "Průtok u okraje/límce"
msgctxt "jerk_skirt_brim label"
msgid "Skirt/Brim Jerk"
msgstr "Okamžitá rychlost při tisku límce/okraje"
msgstr "Okamžitá rychlost při tisku okraje/límce"
msgctxt "skirt_brim_line_width label"
msgid "Skirt/Brim Line Width"
@ -3025,11 +3025,11 @@ msgstr "Šířka čáry okraje/límce"
msgctxt "skirt_brim_minimal_length label"
msgid "Skirt/Brim Minimum Length"
msgstr "Minimální délka límce/okraje"
msgstr "Minimální délka okraje/límce"
msgctxt "skirt_brim_speed label"
msgid "Skirt/Brim Speed"
msgstr "Rychlost tisku límce/okraje"
msgstr "Rychlost tisku okraje/límce"
msgctxt "slicing_tolerance label"
msgid "Slicing Tolerance"
@ -3061,7 +3061,7 @@ msgstr ""
msgctxt "small_skin_width label"
msgid "Small Top/Bottom Width"
msgstr ""
msgstr "Šířka malého horního / dolního povrchu"
msgctxt "small_feature_speed_factor_0 description"
msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
@ -3077,7 +3077,7 @@ msgstr ""
msgctxt "brim_smart_ordering label"
msgid "Smart Brim"
msgstr ""
msgstr "Chytrý límec"
msgctxt "z_seam_corner option z_seam_corner_weighted"
msgid "Smart Hiding"
@ -3173,11 +3173,11 @@ msgstr "Počet stěn v podlaze podpor"
msgctxt "support_brim_line_count label"
msgid "Support Brim Line Count"
msgstr "Počet podpůrných čar okraje"
msgstr "Počet podpůrných čar límce"
msgctxt "support_brim_width label"
msgid "Support Brim Width"
msgstr "Šířka okrajových podpor"
msgstr "Šířka límce podpor"
msgctxt "support_zag_skip_count label"
msgid "Support Chunk Line Count"
@ -3317,7 +3317,7 @@ msgstr "Vzor rozhraní podpor"
msgctxt "support_interface_priority label"
msgid "Support Interface Priority"
msgstr ""
msgstr "Priorita rozhraní podpor"
msgctxt "support_interface_skip_height label"
msgid "Support Interface Resolution"
@ -3457,11 +3457,11 @@ msgstr "Vzdálenost Z podor"
msgctxt "support_interface_priority option support_lines_overwrite_interface_area"
msgid "Support lines preferred"
msgstr ""
msgstr "Preferovat čáry podpor"
msgctxt "support_interface_priority option support_area_overwrite_interface_area"
msgid "Support preferred"
msgstr ""
msgstr "Preferovat podpory"
msgctxt "support_supported_skin_fan_speed label"
msgid "Supported Skin Fan Speed"
@ -3489,7 +3489,7 @@ msgstr "Povrchová energie."
msgctxt "brim_smart_ordering description"
msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
msgstr ""
msgstr "Prohodí pořadí tisku vnitřní a druhé nejvnitřnější čáry límce. Toto usnadňuje odstraňování límce."
msgctxt "alternate_carve_order description"
msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
@ -3597,7 +3597,7 @@ msgstr "Zrychlení, kterým se potiskují střechy podpěry. Jejich tisk při ni
msgctxt "acceleration_skirt_brim description"
msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration."
msgstr "Zrychlení, s nímž jsou Límec a okraj vytištěny. Normálně se tak děje s počátečním zrychlením vrstvy, ale někdy budete chtít vytisknout sukni nebo okraje při jiném zrychlení."
msgstr "Zrychlení, s nímž jsou okraj a límec vytištěny. Normálně se tak děje s počátečním zrychlením vrstvy, ale někdy budete chtít vytisknout okraj nebo límec při jiném zrychlení."
msgctxt "acceleration_support description"
msgid "The acceleration with which the support structure is printed."
@ -3653,7 +3653,7 @@ msgstr "Úhel přesahu vnějších stěn vytvořených pro formu. 0° způsobí,
msgctxt "support_tree_branch_diameter_angle description"
msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support."
msgstr ""
msgstr "Úhel, který vytváří průměr větví, jak se větve postupně stávají širší směrem dolů. Nulový úhel způsobí, že budou mít větve stejnou tloušťku po celou svoji délku. Malý úhel může pomoci zvýšit stabilitu stromové podpory."
msgctxt "support_conical_angle description"
msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top."
@ -3713,7 +3713,7 @@ msgstr "Průměr větve stromu podpory Průměr nejtenčí větve stromu podpory
msgctxt "support_tree_tip_diameter description"
msgid "The diameter of the top of the tip of the branches of tree support."
msgstr ""
msgstr "Průměr konečků větví stromové podpory."
msgctxt "machine_feeder_wheel_diameter description"
msgid "The diameter of the wheel that drives the material in the feeder."
@ -3821,7 +3821,7 @@ msgstr "Vytlačovací souprava použitá pro tisk okraje nebo límce. Používá
msgctxt "adhesion_extruder_nr description"
msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion."
msgstr "Vytlačovací souprava použitá pro tisk límce / okraje / raftu. Používá se při vícenásobném vytlačování."
msgstr "Vytlačovací souprava použitá pro tisk okraje / límce / raftu. Používá se při vícenásobném vytlačování."
msgctxt "support_extruder_nr description"
msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
@ -4033,7 +4033,7 @@ msgstr "Maximální úhel přesahů po jejich tisku. Při hodnotě 0 ° jsou vš
msgctxt "support_tree_angle description"
msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach."
msgstr ""
msgstr "Maximální úhel větví, které rostou okolo modelu. Použijte nižší úhel, aby byly větve více vertikální a stabilní. Použijte vyšší úhel, aby měly větve větší dosah."
msgctxt "conical_overhang_hole_size description"
msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base."
@ -4101,7 +4101,7 @@ msgstr "Maximální okamžitá změna rychlosti, se kterou jsou střechy nosiče
msgctxt "jerk_skirt_brim description"
msgid "The maximum instantaneous velocity change with which the skirt and brim are printed."
msgstr "Maximální okamžitá změna rychlosti, se kterou jsou Límec a okraj vytištěny."
msgstr "Maximální okamžitá změna rychlosti, se kterou jsou okraj a límec vytištěny."
msgctxt "jerk_support description"
msgid "The maximum instantaneous velocity change with which the support structure is printed."
@ -4173,7 +4173,7 @@ msgstr "Minimální vzdálenost potřebná k tomu, aby ke stažení došlo. To p
msgctxt "skirt_brim_minimal_length description"
msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored."
msgstr "Minimální délka límce nebo okraje. Pokud tuto délku nedosáhnou všechny linie sukní nebo okrajů dohromady, přidává se více sukní nebo okrajových linií, dokud není dosaženo minimální délky. Poznámka: Pokud je počet řádků nastaven na 0, ignoruje se."
msgstr "Minimální délka límce nebo okraje. Pokud tuto délku nedosáhnou všechny linie okraj nebo límec dohromady, přidává se více okrajových nebo límcových linií, dokud není dosaženo minimální délky. Poznámka: Pokud je počet řádků nastaven na 0, ignoruje se."
msgctxt "min_odd_wall_line_width description"
msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width."
@ -4209,7 +4209,7 @@ msgstr "Minimální objem pro každou vrstvu hlavní věže, aby se propláchlo
msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description"
msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model"
msgstr ""
msgstr "O kolik nejvíce se průměr větve, která se má připojit k modelu, může zvýšit spojením s větvemi, které by se mohly dotýkat podložky. Zvýšení této hodnoty sníží dobu tisku, ale zvýší plochu podpory, která se opírá o model"
msgctxt "machine_name description"
msgid "The name of your 3D printer model."
@ -4253,7 +4253,7 @@ msgstr "Počet řádků použitých pro límec. Více linek límce zvyšuje při
msgctxt "support_brim_line_count description"
msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material."
msgstr "Počet řádků použitých pro podpůrný okraj. Více okrajových linií zvyšuje přilnavost k stavební desce za cenu nějakého dalšího materiálu."
msgstr "Počet řádků použitých pro podpůrný límec. Více límcových linií zvyšuje přilnavost k stavební desce za cenu nějakého dalšího materiálu."
msgctxt "raft_surface_layers description"
msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1."
@ -4337,11 +4337,11 @@ msgstr "Poloha poblíž místa, kde začít tisknout každou část ve vrstvě."
msgctxt "support_tree_angle_slow description"
msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster."
msgstr ""
msgstr "Preferovaný úhel větví, které se nemusí vyhýbat modelu. Použijte nižší úhel, aby byly větve více vertikální a stabilní. Použijte vyšší úhel, aby se větve rychleji spojovaly."
msgctxt "support_tree_rest_preference description"
msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model."
msgstr ""
msgstr "Preferované umístění struktur podpory. Pokud nemohou být struktury umístěny na preferované umístění, budou umístěny jinde, i pokud by to mělo znamenat umístění na modelu."
msgctxt "jerk_layer_0 description"
msgid "The print maximum instantaneous velocity change for the initial layer."
@ -4481,7 +4481,7 @@ msgstr "Rychlost, při které jsou střechy podpěry vytištěny. Jejich tisk ni
msgctxt "skirt_brim_speed description"
msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed."
msgstr "Rychlost tisku Límec a okraje. Normálně se tak děje při počáteční rychlosti vrstvy, ale někdy můžete chtít sukni nebo okraj vytisknout jinou rychlostí."
msgstr "Rychlost tisku okraje a límce. Normálně se tak děje při počáteční rychlosti vrstvy, ale někdy můžete chtít okraj nebo límec vytisknout jinou rychlostí."
msgctxt "speed_support description"
msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing."
@ -4673,7 +4673,7 @@ msgstr "Tím se vytvoří kolem modelu zeď, která zachycuje (horký) vzduch a
msgctxt "support_tree_tip_diameter label"
msgid "Tip Diameter"
msgstr ""
msgstr "Průměr konečků"
msgctxt "material_shrinkage_percentage_xy description"
msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)."
@ -4857,7 +4857,7 @@ msgstr "Trojúhelníky"
msgctxt "support_tree_max_diameter label"
msgid "Trunk Diameter"
msgstr ""
msgstr "Průměr kmene"
msgctxt "machine_gcode_flavor option UltiGCode"
msgid "Ultimaker 2"
@ -5017,7 +5017,7 @@ msgstr "Pokud je větší než nula, combingové pohyby delší než tato vzdál
msgctxt "hole_xy_offset_max_diameter description"
msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
msgstr ""
msgstr "Když je větší než nula, Horizontální expanze díry je stupňovitě aplikována na malé díry (malé díry jsou zvětšovány více). Pokud je nastavení nula, Horizontální expanze díry bude aplikována na všechny díry. Díry větší, než Maximální průměr horizontální expanze díry nebudou zvětšeny."
msgctxt "hole_xy_offset description"
msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter."
@ -5125,7 +5125,7 @@ msgstr "Zda se má vložit příkaz k čekání, až se dosáhne teploty podlož
msgctxt "prime_blob_enable description"
msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time."
msgstr "Zda se vlákno před tiskem připraví blobem. Zapnutím tohoto nastavení zajistíte, že extrudér bude mít před tiskem materiál připravený v trysce. Tisk límce nebo Sukně může také fungovat jako základní nátěr, takže vypnutí tohoto nastavení ušetří čas."
msgstr "Zda se vlákno před tiskem připraví blobem. Zapnutím tohoto nastavení zajistíte, že extrudér bude mít před tiskem materiál připravený v trysce. Tisk límce nebo okraje může také fungovat jako základní nátěr, takže vypnutí tohoto nastavení ušetří čas."
msgctxt "print_sequence description"
msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
@ -5165,7 +5165,7 @@ msgstr "Šířka jedné hlavní věže."
msgctxt "skirt_brim_line_width description"
msgid "Width of a single skirt or brim line."
msgstr "Šířka čáry límce nebo okraje linie."
msgstr "Šířka čáry okraje nebo límce."
msgctxt "support_bottom_line_width description"
msgid "Width of a single support floor line."
@ -5387,6 +5387,53 @@ msgctxt "travel description"
msgid "travel"
msgstr "cestování"
### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better.
msgctxt "gradual_flow_enabled label"
msgid "Gradual flow enabled"
msgstr ""
msgctxt "gradual_flow_enabled description"
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
msgstr ""
msgctxt "max_flow_acceleration label"
msgid "Gradual flow max acceleration"
msgstr ""
msgctxt "max_flow_acceleration description"
msgid "Maximum acceleration for gradual flow changes"
msgstr ""
msgctxt "layer_0_max_flow_acceleration label"
msgid "Initial layer max flow acceleration"
msgstr ""
msgctxt "layer_0_max_flow_acceleration description"
msgid "Minimum speed for gradual flow changes for the first layer"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size label"
msgid "Gradual flow discretisation step size"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size description"
msgid "Duration of each step in the gradual flow change"
msgstr ""
msgctxt "reset_flow_duration label"
msgid "Reset flow duration"
msgstr ""
msgctxt "reset_flow_duration description"
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
msgstr ""
#~ msgctxt "machine_head_with_fans_polygon description"
#~ msgid "A 2D silhouette of the print head (fan caps included)."
#~ msgstr "2D silueta tiskové hlavy (včetně krytů ventilátoru)."

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-09-12 17:10+0200\n"
"POT-Creation-Date: 2023-09-20 14:03+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -4953,19 +4953,19 @@ msgctxt "@info:generic"
msgid "{} plugins failed to download"
msgstr ""
msgctxt "description"
msgid "Extension that allows for user created scripts for post processing"
msgid "Provides support for exporting Cura profiles."
msgstr ""
msgctxt "name"
msgid "Post Processing"
msgid "Cura Profile Writer"
msgstr ""
msgctxt "description"
msgid "Provides a normal solid mesh view."
msgid "Submits anonymous slice info. Can be disabled through preferences."
msgstr ""
msgctxt "name"
msgid "Solid View"
msgid "Slice info"
msgstr ""
msgctxt "description"
@ -4977,11 +4977,235 @@ msgid "Legacy Cura Profile Reader"
msgstr ""
msgctxt "description"
msgid "Provides the X-Ray view."
msgid "Provides support for reading X3D files."
msgstr ""
msgctxt "name"
msgid "X-Ray View"
msgid "X3D Reader"
msgstr ""
msgctxt "description"
msgid "Provides support for writing Ultimaker Format Packages."
msgstr ""
msgctxt "name"
msgid "UFP Writer"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 3.5 to 4.0"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.1 to 4.2"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.7 to 4.8"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.9 to 4.10"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 3.2 to 3.3"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 2.7 to 3.0"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.11 to 4.12"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 2.6 to 2.7"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.8 to 4.9"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.3 to 4.4"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 3.3 to 3.4"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.4 to 4.5"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 2.5 to 2.6"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 2.1 to 2.2"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.2 to 4.3"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 5.2 to Cura 5.3."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 5.2 to 5.3"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.0 to 4.1"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 2.2 to 2.4"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 3.4 to 3.5"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.13 to Cura 5.0."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.13 to 5.0"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 5.4 to Cura 5.5."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 5.4 to 5.5"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.5 to 4.6"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 3.0 to 3.1"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.6.0 to 4.6.2"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.6.2 to 4.7"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 5.3 to Cura 5.4."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 5.3 to 5.4"
msgstr ""
msgctxt "description"
msgid "Extension that allows for user created scripts for post processing"
msgstr ""
msgctxt "name"
msgid "Post Processing"
msgstr ""
msgctxt "description"
@ -4993,11 +5217,19 @@ msgid "Simulation View"
msgstr ""
msgctxt "description"
msgid "Provides support for reading AMF files."
msgid "Provides support for importing Cura profiles."
msgstr ""
msgctxt "name"
msgid "AMF Reader"
msgid "Cura Profile Reader"
msgstr ""
msgctxt "description"
msgid "Provides the Per Model Settings."
msgstr ""
msgctxt "name"
msgid "Per Model Settings Tool"
msgstr ""
msgctxt "description"
@ -5009,75 +5241,11 @@ msgid "Preview Stage"
msgstr ""
msgctxt "description"
msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
msgid "Creates an eraser mesh to block the printing of support in certain places"
msgstr ""
msgctxt "name"
msgid "Ultimaker Digital Library"
msgstr ""
msgctxt "description"
msgid "Provides a machine actions for updating firmware."
msgstr ""
msgctxt "name"
msgid "Firmware Updater"
msgstr ""
msgctxt "description"
msgid "Enables ability to generate printable geometry from 2D image files."
msgstr ""
msgctxt "name"
msgid "Image Reader"
msgstr ""
msgctxt "description"
msgid "Backup and restore your configuration."
msgstr ""
msgctxt "name"
msgid "Cura Backups"
msgstr ""
msgctxt "description"
msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website."
msgstr ""
msgctxt "name"
msgid "Marketplace"
msgstr ""
msgctxt "description"
msgid "Provides support for reading X3D files."
msgstr ""
msgctxt "name"
msgid "X3D Reader"
msgstr ""
msgctxt "description"
msgid "Provides support for writing 3MF files."
msgstr ""
msgctxt "name"
msgid "3MF Writer"
msgstr ""
msgctxt "description"
msgid "Checks for firmware updates."
msgstr ""
msgctxt "name"
msgid "Firmware Update Checker"
msgstr ""
msgctxt "description"
msgid "Provides support for reading model files."
msgstr ""
msgctxt "name"
msgid "Trimesh Reader"
msgid "Support Eraser"
msgstr ""
msgctxt "description"
@ -5088,6 +5256,38 @@ msgctxt "name"
msgid "G-code Reader"
msgstr ""
msgctxt "description"
msgid "Backup and restore your configuration."
msgstr ""
msgctxt "name"
msgid "Cura Backups"
msgstr ""
msgctxt "description"
msgid "Provides removable drive hotplugging and writing support."
msgstr ""
msgctxt "name"
msgid "Removable Drive Output Device Plugin"
msgstr ""
msgctxt "description"
msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps"
msgstr ""
msgctxt "name"
msgid "CuraEngineGradualFlow"
msgstr ""
msgctxt "description"
msgid "Provides capabilities to read and write XML-based material profiles."
msgstr ""
msgctxt "name"
msgid "Material Profiles"
msgstr ""
msgctxt "description"
msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
msgstr ""
@ -5097,11 +5297,19 @@ msgid "UltiMaker machine actions"
msgstr ""
msgctxt "description"
msgid "Writes g-code to a compressed archive."
msgid "Provides the X-Ray view."
msgstr ""
msgctxt "name"
msgid "Compressed G-code Writer"
msgid "X-Ray View"
msgstr ""
msgctxt "description"
msgid "Manages network connections to UltiMaker networked printers."
msgstr ""
msgctxt "name"
msgid "UltiMaker Network Connection"
msgstr ""
msgctxt "description"
@ -5113,11 +5321,43 @@ msgid "Machine Settings Action"
msgstr ""
msgctxt "description"
msgid "Provides support for importing profiles from g-code files."
msgid "Provides support for reading model files."
msgstr ""
msgctxt "name"
msgid "G-code Profile Reader"
msgid "Trimesh Reader"
msgstr ""
msgctxt "description"
msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website."
msgstr ""
msgctxt "name"
msgid "Marketplace"
msgstr ""
msgctxt "description"
msgid "Provides a monitor stage in Cura."
msgstr ""
msgctxt "name"
msgid "Monitor Stage"
msgstr ""
msgctxt "description"
msgid "Enables ability to generate printable geometry from 2D image files."
msgstr ""
msgctxt "name"
msgid "Image Reader"
msgstr ""
msgctxt "description"
msgid "Provides a machine actions for updating firmware."
msgstr ""
msgctxt "name"
msgid "Firmware Updater"
msgstr ""
msgctxt "description"
@ -5137,35 +5377,19 @@ msgid "Prepare Stage"
msgstr ""
msgctxt "description"
msgid "Provides support for writing Ultimaker Format Packages."
msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
msgstr ""
msgctxt "name"
msgid "UFP Writer"
msgid "Ultimaker Digital Library"
msgstr ""
msgctxt "description"
msgid "Logs certain events so that they can be used by the crash reporter"
msgid "Checks for firmware updates."
msgstr ""
msgctxt "name"
msgid "Sentry Logger"
msgstr ""
msgctxt "description"
msgid "Provides removable drive hotplugging and writing support."
msgstr ""
msgctxt "name"
msgid "Removable Drive Output Device Plugin"
msgstr ""
msgctxt "description"
msgid "Provides the Per Model Settings."
msgstr ""
msgctxt "name"
msgid "Per Model Settings Tool"
msgid "Firmware Update Checker"
msgstr ""
msgctxt "description"
@ -5177,51 +5401,11 @@ msgid "G-code Writer"
msgstr ""
msgctxt "description"
msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
msgid "Checks models and print configuration for possible printing issues and give suggestions."
msgstr ""
msgctxt "name"
msgid "USB printing"
msgstr ""
msgctxt "description"
msgid "Submits anonymous slice info. Can be disabled through preferences."
msgstr ""
msgctxt "name"
msgid "Slice info"
msgstr ""
msgctxt "description"
msgid "Provides support for exporting Cura profiles."
msgstr ""
msgctxt "name"
msgid "Cura Profile Writer"
msgstr ""
msgctxt "description"
msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps"
msgstr ""
msgctxt "name"
msgid "CuraEngineGradualFlow"
msgstr ""
msgctxt "description"
msgid "Manages network connections to UltiMaker networked printers."
msgstr ""
msgctxt "name"
msgid "UltiMaker Network Connection"
msgstr ""
msgctxt "description"
msgid "Provides a monitor stage in Cura."
msgstr ""
msgctxt "name"
msgid "Monitor Stage"
msgid "Model Checker"
msgstr ""
msgctxt "description"
@ -5233,43 +5417,43 @@ msgid "3MF Reader"
msgstr ""
msgctxt "description"
msgid "Provides capabilities to read and write XML-based material profiles."
msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
msgstr ""
msgctxt "name"
msgid "Material Profiles"
msgid "USB printing"
msgstr ""
msgctxt "description"
msgid "Provides support for reading Ultimaker Format Packages."
msgid "Provides support for reading AMF files."
msgstr ""
msgctxt "name"
msgid "UFP Reader"
msgid "AMF Reader"
msgstr ""
msgctxt "description"
msgid "Checks models and print configuration for possible printing issues and give suggestions."
msgid "Provides support for importing profiles from g-code files."
msgstr ""
msgctxt "name"
msgid "Model Checker"
msgid "G-code Profile Reader"
msgstr ""
msgctxt "description"
msgid "Provides support for importing Cura profiles."
msgid "Provides a normal solid mesh view."
msgstr ""
msgctxt "name"
msgid "Cura Profile Reader"
msgid "Solid View"
msgstr ""
msgctxt "description"
msgid "Creates an eraser mesh to block the printing of support in certain places"
msgid "Logs certain events so that they can be used by the crash reporter"
msgstr ""
msgctxt "name"
msgid "Support Eraser"
msgid "Sentry Logger"
msgstr ""
msgctxt "description"
@ -5281,210 +5465,26 @@ msgid "Compressed G-code Reader"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
msgid "Provides support for reading Ultimaker Format Packages."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.1 to 4.2"
msgid "UFP Reader"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
msgid "Provides support for writing 3MF files."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 2.2 to 2.4"
msgid "3MF Writer"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 5.3 to Cura 5.4."
msgid "Writes g-code to a compressed archive."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 5.3 to 5.4"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 5.4 to Cura 5.5."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 5.4 to 5.5"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.13 to Cura 5.0."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.13 to 5.0"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 2.6 to 2.7"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.11 to 4.12"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 5.2 to Cura 5.3."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 5.2 to 5.3"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.6.2 to 4.7"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 2.1 to 2.2"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 3.0 to 3.1"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.3 to 4.4"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.9 to 4.10"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.5 to 4.6"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.2 to 4.3"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.7 to 4.8"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.0 to 4.1"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 3.2 to 3.3"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 3.5 to 4.0"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 2.5 to 2.6"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.4 to 4.5"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 2.7 to 3.0"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 3.4 to 3.5"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.6.0 to 4.6.2"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 4.8 to 4.9"
msgstr ""
msgctxt "description"
msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
msgstr ""
msgctxt "name"
msgid "Version Upgrade 3.3 to 3.4"
msgid "Compressed G-code Writer"
msgstr ""

View File

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

View File

@ -5384,6 +5384,53 @@ msgctxt "travel description"
msgid "travel"
msgstr "Bewegungen"
### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better.
msgctxt "gradual_flow_enabled label"
msgid "Gradual flow enabled"
msgstr ""
msgctxt "gradual_flow_enabled description"
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
msgstr ""
msgctxt "max_flow_acceleration label"
msgid "Gradual flow max acceleration"
msgstr ""
msgctxt "max_flow_acceleration description"
msgid "Maximum acceleration for gradual flow changes"
msgstr ""
msgctxt "layer_0_max_flow_acceleration label"
msgid "Initial layer max flow acceleration"
msgstr ""
msgctxt "layer_0_max_flow_acceleration description"
msgid "Minimum speed for gradual flow changes for the first layer"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size label"
msgid "Gradual flow discretisation step size"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size description"
msgid "Duration of each step in the gradual flow change"
msgstr ""
msgctxt "reset_flow_duration label"
msgid "Reset flow duration"
msgstr ""
msgctxt "reset_flow_duration description"
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
msgstr ""
#~ msgctxt "hole_xy_offset description"
#~ msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes."
#~ msgstr "Versatz, der auf die Löcher in jeder Schicht angewandt wird. Bei positiven Werten werden die Löcher vergrößert; bei negativen Werten werden die Löcher verkleinert."

View File

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

View File

@ -5384,6 +5384,52 @@ msgctxt "travel description"
msgid "travel"
msgstr "desplazamiento"
### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better.
msgctxt "gradual_flow_enabled label"
msgid "Gradual flow enabled"
msgstr ""
msgctxt "gradual_flow_enabled description"
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
msgstr ""
msgctxt "max_flow_acceleration label"
msgid "Gradual flow max acceleration"
msgstr ""
msgctxt "max_flow_acceleration description"
msgid "Maximum acceleration for gradual flow changes"
msgstr ""
msgctxt "layer_0_max_flow_acceleration label"
msgid "Initial layer max flow acceleration"
msgstr ""
msgctxt "layer_0_max_flow_acceleration description"
msgid "Minimum speed for gradual flow changes for the first layer"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size label"
msgid "Gradual flow discretisation step size"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size description"
msgid "Duration of each step in the gradual flow change"
msgstr ""
msgctxt "reset_flow_duration label"
msgid "Reset flow duration"
msgstr ""
msgctxt "reset_flow_duration description"
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
msgstr ""
#~ msgctxt "hole_xy_offset description"
#~ msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes."
#~ msgstr "Cantidad de desplazamiento aplicado a todos los orificios en cada capa. Los valores positivos aumentan el tamaño de los orificios y los valores negativos reducen el tamaño de los mismos."

View File

@ -5372,3 +5372,46 @@ msgctxt "mesh_rotation_matrix description"
msgid "Transformation matrix to be applied to the model when loading it from file."
msgstr ""
### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better.
msgctxt "gradual_flow_enabled label"
msgid "Gradual flow enabled"
msgstr ""
msgctxt "gradual_flow_enabled description"
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
msgstr ""
msgctxt "max_flow_acceleration label"
msgid "Gradual flow max acceleration"
msgstr ""
msgctxt "max_flow_acceleration description"
msgid "Maximum acceleration for gradual flow changes"
msgstr ""
msgctxt "layer_0_max_flow_acceleration label"
msgid "Initial layer max flow acceleration"
msgstr ""
msgctxt "layer_0_max_flow_acceleration description"
msgid "Minimum speed for gradual flow changes for the first layer"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size label"
msgid "Gradual flow discretisation step size"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size description"
msgid "Duration of each step in the gradual flow change"
msgstr ""
msgctxt "reset_flow_duration label"
msgid "Reset flow duration"
msgstr ""
msgctxt "reset_flow_duration description"
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
msgstr ""

View File

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

View File

@ -5386,6 +5386,52 @@ msgctxt "travel description"
msgid "travel"
msgstr "siirtoliike"
### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better.
msgctxt "gradual_flow_enabled label"
msgid "Gradual flow enabled"
msgstr ""
msgctxt "gradual_flow_enabled description"
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
msgstr ""
msgctxt "max_flow_acceleration label"
msgid "Gradual flow max acceleration"
msgstr ""
msgctxt "max_flow_acceleration description"
msgid "Maximum acceleration for gradual flow changes"
msgstr ""
msgctxt "layer_0_max_flow_acceleration label"
msgid "Initial layer max flow acceleration"
msgstr ""
msgctxt "layer_0_max_flow_acceleration description"
msgid "Minimum speed for gradual flow changes for the first layer"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size label"
msgid "Gradual flow discretisation step size"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size description"
msgid "Duration of each step in the gradual flow change"
msgstr ""
msgctxt "reset_flow_duration label"
msgid "Reset flow duration"
msgstr ""
msgctxt "reset_flow_duration description"
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
msgstr ""
#~ msgctxt "machine_head_polygon description"
#~ msgid "A 2D silhouette of the print head (fan caps excluded)."
#~ msgstr "2D-siluetti tulostuspäästä (tuulettimen kannattimet pois lukien)"

View File

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

View File

@ -5384,6 +5384,52 @@ msgctxt "travel description"
msgid "travel"
msgstr "déplacement"
### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better.
msgctxt "gradual_flow_enabled label"
msgid "Gradual flow enabled"
msgstr ""
msgctxt "gradual_flow_enabled description"
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
msgstr ""
msgctxt "max_flow_acceleration label"
msgid "Gradual flow max acceleration"
msgstr ""
msgctxt "max_flow_acceleration description"
msgid "Maximum acceleration for gradual flow changes"
msgstr ""
msgctxt "layer_0_max_flow_acceleration label"
msgid "Initial layer max flow acceleration"
msgstr ""
msgctxt "layer_0_max_flow_acceleration description"
msgid "Minimum speed for gradual flow changes for the first layer"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size label"
msgid "Gradual flow discretisation step size"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size description"
msgid "Duration of each step in the gradual flow change"
msgstr ""
msgctxt "reset_flow_duration label"
msgid "Reset flow duration"
msgstr ""
msgctxt "reset_flow_duration description"
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
msgstr ""
#~ msgctxt "hole_xy_offset description"
#~ msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes."
#~ msgstr "Le décalage appliqué à tous les trous dans chaque couche. Les valeurs positives augmentent la taille des trous ; les valeurs négatives réduisent la taille des trous."

View File

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

View File

@ -5398,6 +5398,53 @@ msgctxt "travel description"
msgid "travel"
msgstr "fej átpozícionálás"
### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better.
msgctxt "gradual_flow_enabled label"
msgid "Gradual flow enabled"
msgstr ""
msgctxt "gradual_flow_enabled description"
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
msgstr ""
msgctxt "max_flow_acceleration label"
msgid "Gradual flow max acceleration"
msgstr ""
msgctxt "max_flow_acceleration description"
msgid "Maximum acceleration for gradual flow changes"
msgstr ""
msgctxt "layer_0_max_flow_acceleration label"
msgid "Initial layer max flow acceleration"
msgstr ""
msgctxt "layer_0_max_flow_acceleration description"
msgid "Minimum speed for gradual flow changes for the first layer"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size label"
msgid "Gradual flow discretisation step size"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size description"
msgid "Duration of each step in the gradual flow change"
msgstr ""
msgctxt "reset_flow_duration label"
msgid "Reset flow duration"
msgstr ""
msgctxt "reset_flow_duration description"
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
msgstr ""
#~ msgctxt "machine_head_polygon description"
#~ msgid "A 2D silhouette of the print head (fan caps excluded)."
#~ msgstr "A nyomtatófej 2D -s árnyéka (ventillátor nélkül)."

View File

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

View File

@ -5384,6 +5384,52 @@ msgctxt "travel description"
msgid "travel"
msgstr "spostamenti"
### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better.
msgctxt "gradual_flow_enabled label"
msgid "Gradual flow enabled"
msgstr ""
msgctxt "gradual_flow_enabled description"
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
msgstr ""
msgctxt "max_flow_acceleration label"
msgid "Gradual flow max acceleration"
msgstr ""
msgctxt "max_flow_acceleration description"
msgid "Maximum acceleration for gradual flow changes"
msgstr ""
msgctxt "layer_0_max_flow_acceleration label"
msgid "Initial layer max flow acceleration"
msgstr ""
msgctxt "layer_0_max_flow_acceleration description"
msgid "Minimum speed for gradual flow changes for the first layer"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size label"
msgid "Gradual flow discretisation step size"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size description"
msgid "Duration of each step in the gradual flow change"
msgstr ""
msgctxt "reset_flow_duration label"
msgid "Reset flow duration"
msgstr ""
msgctxt "reset_flow_duration description"
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
msgstr ""
#~ msgctxt "hole_xy_offset description"
#~ msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes."
#~ msgstr "Entità di offset applicato a tutti i fori di ciascuno strato. Valori positivi aumentano le dimensioni dei fori, mentre valori negativi le riducono."

View File

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

View File

@ -5388,6 +5388,54 @@ msgctxt "travel description"
msgid "travel"
msgstr "移動"
### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better.
msgctxt "gradual_flow_enabled label"
msgid "Gradual flow enabled"
msgstr ""
msgctxt "gradual_flow_enabled description"
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
msgstr ""
msgctxt "max_flow_acceleration label"
msgid "Gradual flow max acceleration"
msgstr ""
msgctxt "max_flow_acceleration description"
msgid "Maximum acceleration for gradual flow changes"
msgstr ""
msgctxt "layer_0_max_flow_acceleration label"
msgid "Initial layer max flow acceleration"
msgstr ""
msgctxt "layer_0_max_flow_acceleration description"
msgid "Minimum speed for gradual flow changes for the first layer"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size label"
msgid "Gradual flow discretisation step size"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size description"
msgid "Duration of each step in the gradual flow change"
msgstr ""
msgctxt "reset_flow_duration label"
msgid "Reset flow duration"
msgstr ""
msgctxt "reset_flow_duration description"
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
msgstr ""
#~ msgctxt "hole_xy_offset description"
#~ msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes."
#~ msgstr "各穴のすべてのポリゴンに適用されるオフセットの量。正の値は穴のサイズを大きくします。負の値は穴のサイズを小さくします。"

View File

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

View File

@ -5384,6 +5384,51 @@ msgctxt "travel description"
msgid "travel"
msgstr "이동"
### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better.
msgctxt "gradual_flow_enabled label"
msgid "Gradual flow enabled"
msgstr ""
msgctxt "gradual_flow_enabled description"
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
msgstr ""
msgctxt "max_flow_acceleration label"
msgid "Gradual flow max acceleration"
msgstr ""
msgctxt "max_flow_acceleration description"
msgid "Maximum acceleration for gradual flow changes"
msgstr ""
msgctxt "layer_0_max_flow_acceleration label"
msgid "Initial layer max flow acceleration"
msgstr ""
msgctxt "layer_0_max_flow_acceleration description"
msgid "Minimum speed for gradual flow changes for the first layer"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size label"
msgid "Gradual flow discretisation step size"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size description"
msgid "Duration of each step in the gradual flow change"
msgstr ""
msgctxt "reset_flow_duration label"
msgid "Reset flow duration"
msgstr ""
msgctxt "reset_flow_duration description"
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
msgstr ""
#~ msgctxt "hole_xy_offset description"
#~ msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes."
#~ msgstr "각 레이어의 모든 구멍에 적용된 오프셋의 양. 양수 값은 구멍 크기를 증가시키며, 음수 값은 구멍 크기를 줄입니다."

View File

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

View File

@ -5384,6 +5384,53 @@ msgctxt "travel description"
msgid "travel"
msgstr "beweging"
### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better.
msgctxt "gradual_flow_enabled label"
msgid "Gradual flow enabled"
msgstr ""
msgctxt "gradual_flow_enabled description"
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
msgstr ""
msgctxt "max_flow_acceleration label"
msgid "Gradual flow max acceleration"
msgstr ""
msgctxt "max_flow_acceleration description"
msgid "Maximum acceleration for gradual flow changes"
msgstr ""
msgctxt "layer_0_max_flow_acceleration label"
msgid "Initial layer max flow acceleration"
msgstr ""
msgctxt "layer_0_max_flow_acceleration description"
msgid "Minimum speed for gradual flow changes for the first layer"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size label"
msgid "Gradual flow discretisation step size"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size description"
msgid "Duration of each step in the gradual flow change"
msgstr ""
msgctxt "reset_flow_duration label"
msgid "Reset flow duration"
msgstr ""
msgctxt "reset_flow_duration description"
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
msgstr ""
#~ msgctxt "hole_xy_offset description"
#~ msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes."
#~ msgstr "De offset die wordt toegepast op alle gaten in elke laag. Met positieve waarden worden de gaten groter, met negatieve waarden worden de gaten kleiner."

View File

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

View File

@ -5397,6 +5397,52 @@ msgctxt "travel description"
msgid "travel"
msgstr "ruch jałowy"
### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better.
msgctxt "gradual_flow_enabled label"
msgid "Gradual flow enabled"
msgstr ""
msgctxt "gradual_flow_enabled description"
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
msgstr ""
msgctxt "max_flow_acceleration label"
msgid "Gradual flow max acceleration"
msgstr ""
msgctxt "max_flow_acceleration description"
msgid "Maximum acceleration for gradual flow changes"
msgstr ""
msgctxt "layer_0_max_flow_acceleration label"
msgid "Initial layer max flow acceleration"
msgstr ""
msgctxt "layer_0_max_flow_acceleration description"
msgid "Minimum speed for gradual flow changes for the first layer"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size label"
msgid "Gradual flow discretisation step size"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size description"
msgid "Duration of each step in the gradual flow change"
msgstr ""
msgctxt "reset_flow_duration label"
msgid "Reset flow duration"
msgstr ""
msgctxt "reset_flow_duration description"
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
msgstr ""
#~ msgctxt "machine_head_polygon description"
#~ msgid "A 2D silhouette of the print head (fan caps excluded)."
#~ msgstr "Sylwetka 2D głowicy drukującej (bez nasadki wentylatora)."

View File

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

View File

@ -5398,6 +5398,53 @@ msgctxt "travel description"
msgid "travel"
msgstr "percurso"
### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better.
msgctxt "gradual_flow_enabled label"
msgid "Gradual flow enabled"
msgstr ""
msgctxt "gradual_flow_enabled description"
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
msgstr ""
msgctxt "max_flow_acceleration label"
msgid "Gradual flow max acceleration"
msgstr ""
msgctxt "max_flow_acceleration description"
msgid "Maximum acceleration for gradual flow changes"
msgstr ""
msgctxt "layer_0_max_flow_acceleration label"
msgid "Initial layer max flow acceleration"
msgstr ""
msgctxt "layer_0_max_flow_acceleration description"
msgid "Minimum speed for gradual flow changes for the first layer"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size label"
msgid "Gradual flow discretisation step size"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size description"
msgid "Duration of each step in the gradual flow change"
msgstr ""
msgctxt "reset_flow_duration label"
msgid "Reset flow duration"
msgstr ""
msgctxt "reset_flow_duration description"
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
msgstr ""
#~ msgctxt "machine_head_polygon description"
#~ msgid "A 2D silhouette of the print head (fan caps excluded)."
#~ msgstr "Uma silhueta 2D da cabeça de impressão (sem os suportes de ventoinhas)."

View File

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

View File

@ -5384,6 +5384,53 @@ msgctxt "travel description"
msgid "travel"
msgstr "deslocação"
### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better.
msgctxt "gradual_flow_enabled label"
msgid "Gradual flow enabled"
msgstr ""
msgctxt "gradual_flow_enabled description"
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
msgstr ""
msgctxt "max_flow_acceleration label"
msgid "Gradual flow max acceleration"
msgstr ""
msgctxt "max_flow_acceleration description"
msgid "Maximum acceleration for gradual flow changes"
msgstr ""
msgctxt "layer_0_max_flow_acceleration label"
msgid "Initial layer max flow acceleration"
msgstr ""
msgctxt "layer_0_max_flow_acceleration description"
msgid "Minimum speed for gradual flow changes for the first layer"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size label"
msgid "Gradual flow discretisation step size"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size description"
msgid "Duration of each step in the gradual flow change"
msgstr ""
msgctxt "reset_flow_duration label"
msgid "Reset flow duration"
msgstr ""
msgctxt "reset_flow_duration description"
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
msgstr ""
#~ msgctxt "hole_xy_offset description"
#~ msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes."
#~ msgstr "Quantidade de desvio aplicado a todos os buracos em cada camada. Valores positivos aumentam o tamanho dos buracos; valores negativos reduzem o tamanho dos buracos."

View File

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

View File

@ -5384,6 +5384,53 @@ msgctxt "travel description"
msgid "travel"
msgstr "перемещение"
### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better.
msgctxt "gradual_flow_enabled label"
msgid "Gradual flow enabled"
msgstr ""
msgctxt "gradual_flow_enabled description"
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
msgstr ""
msgctxt "max_flow_acceleration label"
msgid "Gradual flow max acceleration"
msgstr ""
msgctxt "max_flow_acceleration description"
msgid "Maximum acceleration for gradual flow changes"
msgstr ""
msgctxt "layer_0_max_flow_acceleration label"
msgid "Initial layer max flow acceleration"
msgstr ""
msgctxt "layer_0_max_flow_acceleration description"
msgid "Minimum speed for gradual flow changes for the first layer"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size label"
msgid "Gradual flow discretisation step size"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size description"
msgid "Duration of each step in the gradual flow change"
msgstr ""
msgctxt "reset_flow_duration label"
msgid "Reset flow duration"
msgstr ""
msgctxt "reset_flow_duration description"
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
msgstr ""
#~ msgctxt "hole_xy_offset description"
#~ msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes."
#~ msgstr "Смещение, применяемое ко всем отверстиям в каждом слое. Положительные значения увеличивают размер отверстий; отрицательные значения уменьшают размер отверстий."

View File

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

View File

@ -5384,6 +5384,52 @@ msgctxt "travel description"
msgid "travel"
msgstr "hareket"
### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better.
msgctxt "gradual_flow_enabled label"
msgid "Gradual flow enabled"
msgstr ""
msgctxt "gradual_flow_enabled description"
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
msgstr ""
msgctxt "max_flow_acceleration label"
msgid "Gradual flow max acceleration"
msgstr ""
msgctxt "max_flow_acceleration description"
msgid "Maximum acceleration for gradual flow changes"
msgstr ""
msgctxt "layer_0_max_flow_acceleration label"
msgid "Initial layer max flow acceleration"
msgstr ""
msgctxt "layer_0_max_flow_acceleration description"
msgid "Minimum speed for gradual flow changes for the first layer"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size label"
msgid "Gradual flow discretisation step size"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size description"
msgid "Duration of each step in the gradual flow change"
msgstr ""
msgctxt "reset_flow_duration label"
msgid "Reset flow duration"
msgstr ""
msgctxt "reset_flow_duration description"
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
msgstr ""
#~ msgctxt "hole_xy_offset description"
#~ msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes."
#~ msgstr "Her bir katmandaki tüm deliklere uygulanan ofset miktarıdır. Pozitif değerler deliklerin boyutunu artırırken, negatif değerler deliklerin boyutunu düşürür."

View File

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

View File

@ -5384,6 +5384,52 @@ msgctxt "travel description"
msgid "travel"
msgstr "空驶"
### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better.
msgctxt "gradual_flow_enabled label"
msgid "Gradual flow enabled"
msgstr ""
msgctxt "gradual_flow_enabled description"
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
msgstr ""
msgctxt "max_flow_acceleration label"
msgid "Gradual flow max acceleration"
msgstr ""
msgctxt "max_flow_acceleration description"
msgid "Maximum acceleration for gradual flow changes"
msgstr ""
msgctxt "layer_0_max_flow_acceleration label"
msgid "Initial layer max flow acceleration"
msgstr ""
msgctxt "layer_0_max_flow_acceleration description"
msgid "Minimum speed for gradual flow changes for the first layer"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size label"
msgid "Gradual flow discretisation step size"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size description"
msgid "Duration of each step in the gradual flow change"
msgstr ""
msgctxt "reset_flow_duration label"
msgid "Reset flow duration"
msgstr ""
msgctxt "reset_flow_duration description"
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
msgstr ""
#~ msgctxt "hole_xy_offset description"
#~ msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes."
#~ msgstr "应用到每一层中所有孔洞的偏移量。正数值可以补偿过大的孔洞,负数值可以补偿过小的孔洞。"

View File

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

View File

@ -5398,6 +5398,51 @@ msgctxt "travel description"
msgid "travel"
msgstr "空跑"
### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better.
msgctxt "gradual_flow_enabled label"
msgid "Gradual flow enabled"
msgstr ""
msgctxt "gradual_flow_enabled description"
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
msgstr ""
msgctxt "max_flow_acceleration label"
msgid "Gradual flow max acceleration"
msgstr ""
msgctxt "max_flow_acceleration description"
msgid "Maximum acceleration for gradual flow changes"
msgstr ""
msgctxt "layer_0_max_flow_acceleration label"
msgid "Initial layer max flow acceleration"
msgstr ""
msgctxt "layer_0_max_flow_acceleration description"
msgid "Minimum speed for gradual flow changes for the first layer"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size label"
msgid "Gradual flow discretisation step size"
msgstr ""
msgctxt "gradual_flow_discretisation_step_size description"
msgid "Duration of each step in the gradual flow change"
msgstr ""
msgctxt "reset_flow_duration label"
msgid "Reset flow duration"
msgstr ""
msgctxt "reset_flow_duration description"
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
msgstr ""
#~ msgctxt "machine_head_polygon description"
#~ msgid "A 2D silhouette of the print head (fan caps excluded)."
#~ msgstr "列印頭 2D 輪廓圖(不包含風扇蓋)。"

View File

@ -22,6 +22,6 @@ jerk_wall_0 = 30
speed_print = 150
speed_wall = =speed_print
speed_wall_0 = 40
top_bottom_thickness = = 4 * layer_height
top_bottom_thickness = =4 * layer_height
wall_thickness = =2 * line_width

View File

@ -22,6 +22,6 @@ jerk_wall_0 = 30
speed_print = 150
speed_wall = =speed_print
speed_wall_0 = 40
top_bottom_thickness = = 4 * layer_height
top_bottom_thickness = =4 * layer_height
wall_thickness = =2 * line_width

View File

@ -22,6 +22,6 @@ jerk_wall_0 = 30
speed_print = 150
speed_wall = =speed_print
speed_wall_0 = 40
top_bottom_thickness = = 4 * layer_height
top_bottom_thickness = =4 * layer_height
wall_thickness = =2 * line_width

View File

@ -5,7 +5,6 @@ version = 4
[metadata]
intent_category = quick
is_experimental = True
material = ultimaker_pla
quality_type = verydraft
setting_version = 22
@ -23,6 +22,6 @@ jerk_wall_0 = 30
speed_print = 150
speed_wall = =speed_print
speed_wall_0 = 40
top_bottom_thickness = = 4 * layer_height
top_bottom_thickness = =4 * layer_height
wall_thickness = =2 * line_width

View File

@ -22,6 +22,6 @@ jerk_wall_0 = 30
speed_print = 150
speed_wall = =speed_print
speed_wall_0 = 40
top_bottom_thickness = = 4 * layer_height
top_bottom_thickness = =4 * layer_height
wall_thickness = =2 * line_width

View File

@ -5,7 +5,6 @@ version = 4
[metadata]
intent_category = quick
is_experimental = True
material = ultimaker_tough_pla
quality_type = verydraft
setting_version = 22
@ -23,6 +22,6 @@ jerk_wall_0 = 30
speed_print = 150
speed_wall = =speed_print
speed_wall_0 = 40
top_bottom_thickness = = 4 * layer_height
top_bottom_thickness = =4 * layer_height
wall_thickness = =2 * line_width

View File

@ -21,6 +21,6 @@ jerk_print = 30
jerk_wall_0 = 30
speed_wall = =speed_print
speed_wall_0 = 40
top_bottom_thickness = = 4 * layer_height
top_bottom_thickness = =4 * layer_height
wall_thickness = =wall_line_width_0

View File

@ -21,6 +21,6 @@ jerk_print = 30
jerk_wall_0 = 30
speed_wall = =speed_print
speed_wall_0 = 40
top_bottom_thickness = = 4 * layer_height
top_bottom_thickness = =4 * layer_height
wall_thickness = =wall_line_width_0

View File

@ -21,6 +21,6 @@ jerk_print = 30
jerk_wall_0 = 30
speed_wall = =speed_print
speed_wall_0 = 40
top_bottom_thickness = = 4 * layer_height
top_bottom_thickness = =4 * layer_height
wall_thickness = =wall_line_width_0

View File

@ -21,6 +21,6 @@ jerk_print = 30
jerk_wall_0 = 30
speed_wall = =speed_print
speed_wall_0 = 40
top_bottom_thickness = = 4 * layer_height
top_bottom_thickness = =4 * layer_height
wall_thickness = =wall_line_width_0

View File

@ -22,6 +22,6 @@ jerk_wall_0 = 30
speed_print = 150
speed_wall = =speed_print
speed_wall_0 = 40
top_bottom_thickness = = 4 * layer_height
top_bottom_thickness = =4 * layer_height
wall_thickness = =2 * line_width

View File

@ -22,6 +22,6 @@ jerk_wall_0 = 30
speed_print = 150
speed_wall = =speed_print
speed_wall_0 = 40
top_bottom_thickness = = 4 * layer_height
top_bottom_thickness = =4 * layer_height
wall_thickness = =2 * line_width

View File

@ -22,6 +22,6 @@ jerk_wall_0 = 30
speed_print = 150
speed_wall = =speed_print
speed_wall_0 = 40
top_bottom_thickness = = 4 * layer_height
top_bottom_thickness = =4 * layer_height
wall_thickness = =2 * line_width

View File

@ -5,7 +5,6 @@ version = 4
[metadata]
intent_category = quick
is_experimental = True
material = ultimaker_pla
quality_type = verydraft
setting_version = 22
@ -23,6 +22,6 @@ jerk_wall_0 = 30
speed_print = 150
speed_wall = =speed_print
speed_wall_0 = 40
top_bottom_thickness = = 4 * layer_height
top_bottom_thickness = =4 * layer_height
wall_thickness = =2 * line_width

View File

@ -22,6 +22,6 @@ jerk_wall_0 = 30
speed_print = 150
speed_wall = =speed_print
speed_wall_0 = 40
top_bottom_thickness = = 4 * layer_height
top_bottom_thickness = =4 * layer_height
wall_thickness = =2 * line_width

View File

@ -5,7 +5,6 @@ version = 4
[metadata]
intent_category = quick
is_experimental = True
material = ultimaker_tough_pla
quality_type = verydraft
setting_version = 22
@ -23,6 +22,6 @@ jerk_wall_0 = 30
speed_print = 150
speed_wall = =speed_print
speed_wall_0 = 40
top_bottom_thickness = = 4 * layer_height
top_bottom_thickness = =4 * layer_height
wall_thickness = =2 * line_width

View File

@ -21,6 +21,6 @@ jerk_print = 30
jerk_wall_0 = 30
speed_wall = =speed_print
speed_wall_0 = 40
top_bottom_thickness = = 4 * layer_height
top_bottom_thickness = =4 * layer_height
wall_thickness = =wall_line_width_0

View File

@ -21,6 +21,6 @@ jerk_print = 30
jerk_wall_0 = 30
speed_wall = =speed_print
speed_wall_0 = 40
top_bottom_thickness = = 4 * layer_height
top_bottom_thickness = =4 * layer_height
wall_thickness = =wall_line_width_0

View File

@ -21,6 +21,6 @@ jerk_print = 30
jerk_wall_0 = 30
speed_wall = =speed_print
speed_wall_0 = 40
top_bottom_thickness = = 4 * layer_height
top_bottom_thickness = =4 * layer_height
wall_thickness = =wall_line_width_0

View File

@ -21,6 +21,6 @@ jerk_print = 30
jerk_wall_0 = 30
speed_wall = =speed_print
speed_wall_0 = 40
top_bottom_thickness = = 4 * layer_height
top_bottom_thickness = =4 * layer_height
wall_thickness = =wall_line_width_0

View File

@ -39,7 +39,7 @@ Flickable
padding: UM.Theme.getSize("default_margin").width
spacing: UM.Theme.getSize("default_margin").height
width: recommendedPrintSetup.width - 2 * padding - (scroll.visible ? scroll.width : 0)
width: recommendedPrintSetup.width - 2 * padding - UM.Theme.getSize("thin_margin").width
// TODO
property real firstColumnWidth: Math.round(width / 3)

View File

@ -0,0 +1,15 @@
[general]
definition = dagoma_pro_430_bowden
name = Extra Fine
version = 4
[metadata]
material = generic_pla
quality_type = h0.05
setting_version = 22
type = quality
variant = Serie 0.2mm
weight = 1
[values]

View File

@ -0,0 +1,15 @@
[general]
definition = dagoma_pro_430_bowden
name = Fine
version = 4
[metadata]
material = generic_pla
quality_type = h0.1
setting_version = 22
type = quality
variant = Serie 0.2mm
weight = 1
[values]

View File

@ -0,0 +1,15 @@
[general]
definition = dagoma_pro_430_bowden
name = Medium-Fine
version = 4
[metadata]
material = generic_pla
quality_type = h0.15
setting_version = 22
type = quality
variant = Serie 0.2mm
weight = 1
[values]

View File

@ -0,0 +1,31 @@
[general]
definition = dagoma_pro_430_bowden
name = Fine
version = 4
[metadata]
material = generic_pla
quality_type = h0.1
setting_version = 22
type = quality
variant = Serie 0.4mm
weight = 1
[values]
acceleration_infill = 2500
acceleration_roofing = 1200
acceleration_topbottom = 1200
acceleration_wall_0 = 650.0
acceleration_wall_x = 1200
material_print_temperature = =default_material_print_temperature + 30
retraction_amount = 3.0
retraction_speed = 40
speed_print = 50.0
speed_roofing = 45.0
speed_topbottom = 45.0
speed_wall_0 = 35.0
speed_wall_x = 45.0
support_interface_enable = False
support_top_distance = 0.2
support_z_distance = 0.2

View File

@ -0,0 +1,28 @@
[general]
definition = dagoma_pro_430_bowden
name = Normal
version = 4
[metadata]
material = generic_pla
quality_type = h0.2
setting_version = 22
type = quality
variant = Serie 0.4mm
weight = 0
[values]
acceleration_infill = 3000
acceleration_roofing = 1600
acceleration_topbottom = 1500
acceleration_wall_0 = 850
acceleration_wall_x = 1600
material_print_temperature = =default_material_print_temperature + 33
retraction_amount = 5.0
retraction_speed = 40.0
speed_print = 70
speed_wall_0 = 50
speed_wall_x = 60
support_top_distance = 0.1
support_z_distance = 0.1

View File

@ -0,0 +1,15 @@
[general]
definition = dagoma_pro_430_bowden
name = Fast
version = 4
[metadata]
material = generic_pla
quality_type = h0.3
setting_version = 22
type = quality
variant = Serie 0.4mm
weight = -1
[values]

View File

@ -0,0 +1,15 @@
[general]
definition = dagoma_pro_430_bowden
name = Very Fast
version = 4
[metadata]
material = generic_pla
quality_type = h0.2
setting_version = 22
type = quality
variant = Serie 0.6mm
weight = -1
[values]

View File

@ -0,0 +1,15 @@
[general]
definition = dagoma_pro_430_bowden
name = Very Fast
version = 4
[metadata]
material = generic_pla
quality_type = h0.4
setting_version = 22
type = quality
variant = Serie 0.6mm
weight = -1
[values]

View File

@ -0,0 +1,22 @@
[general]
definition = dagoma_pro_430_bowden
name = Very Fast
version = 4
[metadata]
material = generic_pla
quality_type = h0.4
setting_version = 22
type = quality
variant = Serie 0.8mm
weight = -1
[values]
gradual_infill_step_height = 2
gradual_infill_steps = 2
infill_sparse_density = 20
material_print_temperature = =default_material_print_temperature + 10
retraction_amount = 3.5
retraction_speed = 45
top_layers = 4

View File

@ -0,0 +1,26 @@
[general]
definition = dagoma_pro_430_bowden
name = Draft
version = 4
[metadata]
material = generic_pla
quality_type = h0.6
setting_version = 22
type = quality
variant = Serie 0.8mm
weight = 1
[values]
bottom_layers = 2
infill_overlap = 5
infill_sparse_density = 7
material_flow = 100
material_flow_layer_0 = 120
material_print_temperature = =default_material_print_temperature + 60
skin_overlap = 10
speed_wall_x = 25
top_layers = 3
wall_line_count = 2
z_seam_corner = z_seam_corner_none

View File

@ -0,0 +1,15 @@
[general]
definition = dagoma_pro_430_bowden
name = Very Fast
version = 4
[metadata]
material = generic_pla
quality_type = h0.4
setting_version = 22
type = quality
variant = Serie 1.0mm
weight = -1
[values]

View File

@ -0,0 +1,15 @@
[general]
definition = dagoma_pro_430_bowden
name = Draft
version = 4
[metadata]
material = generic_pla
quality_type = h0.6
setting_version = 22
type = quality
variant = Serie 1.0mm
weight = 1
[values]

View File

@ -0,0 +1,15 @@
[general]
definition = dagoma_pro_430_bowden
name = Coarse
version = 4
[metadata]
material = generic_pla
quality_type = h0.8
setting_version = 22
type = quality
variant = Serie 1.0mm
weight = 1
[values]

View File

@ -0,0 +1,15 @@
[general]
definition = dagoma_pro_430_bowden
name = Draft
version = 4
[metadata]
material = generic_pla
quality_type = h0.6
setting_version = 22
type = quality
variant = Serie 1.2mm
weight = 1
[values]

View File

@ -0,0 +1,15 @@
[general]
definition = dagoma_pro_430_bowden
name = Coarse
version = 4
[metadata]
material = generic_pla
quality_type = h0.8
setting_version = 22
type = quality
variant = Serie 1.2mm
weight = 1
[values]

View File

@ -0,0 +1,16 @@
[general]
definition = dagoma_pro_430_bowden
name = Extra Fine
version = 4
[metadata]
global_quality = True
material = generic_pla
quality_type = h0.05
setting_version = 22
type = quality
weight = 1
[values]
layer_height = 0.05

View File

@ -0,0 +1,16 @@
[general]
definition = dagoma_pro_430_bowden
name = Medium-Fine
version = 4
[metadata]
global_quality = True
material = generic_pla
quality_type = h0.15
setting_version = 22
type = quality
weight = 1
[values]
layer_height = 0.15

View File

@ -0,0 +1,15 @@
[general]
definition = dagoma_pro_430_directdrive
name = Extra Fine
version = 4
[metadata]
material = generic_pla
quality_type = h0.05
setting_version = 22
type = quality
variant = Serie 0.2mm
weight = -1
[values]

View File

@ -0,0 +1,15 @@
[general]
definition = dagoma_pro_430_directdrive
name = Fine
version = 4
[metadata]
material = generic_pla
quality_type = h0.1
setting_version = 22
type = quality
variant = Serie 0.2mm
weight = -1
[values]

View File

@ -0,0 +1,15 @@
[general]
definition = dagoma_pro_430_directdrive
name = Medium-Fine
version = 4
[metadata]
material = generic_pla
quality_type = h0.15
setting_version = 22
type = quality
variant = Serie 0.2mm
weight = -1
[values]

View File

@ -0,0 +1,15 @@
[general]
definition = dagoma_pro_430_directdrive
name = Fine
version = 4
[metadata]
material = generic_pla
quality_type = h0.1
setting_version = 22
type = quality
variant = Serie 0.4mm
weight = 1
[values]

View File

@ -0,0 +1,15 @@
[general]
definition = dagoma_pro_430_directdrive
name = Normal
version = 4
[metadata]
material = generic_pla
quality_type = h0.2
setting_version = 22
type = quality
variant = Serie 0.4mm
weight = 0
[values]

View File

@ -0,0 +1,15 @@
[general]
definition = dagoma_pro_430_directdrive
name = Fast
version = 4
[metadata]
material = generic_pla
quality_type = h0.3
setting_version = 22
type = quality
variant = Serie 0.4mm
weight = -1
[values]

View File

@ -0,0 +1,15 @@
[general]
definition = dagoma_pro_430_directdrive
name = Normal
version = 4
[metadata]
material = generic_pla
quality_type = h0.2
setting_version = 22
type = quality
variant = Serie 0.6mm
weight = 1
[values]

View File

@ -0,0 +1,15 @@
[general]
definition = dagoma_pro_430_directdrive
name = Very Fast
version = 4
[metadata]
material = generic_pla
quality_type = h0.4
setting_version = 22
type = quality
variant = Serie 0.6mm
weight = -1
[values]

View File

@ -0,0 +1,15 @@
[general]
definition = dagoma_pro_430_directdrive
name = Very Fast
version = 4
[metadata]
material = generic_pla
quality_type = h0.4
setting_version = 22
type = quality
variant = Serie 0.8mm
weight = -1
[values]

View File

@ -0,0 +1,15 @@
[general]
definition = dagoma_pro_430_directdrive
name = Draft
version = 4
[metadata]
material = generic_pla
quality_type = h0.6
setting_version = 22
type = quality
variant = Serie 0.8mm
weight = 1
[values]

View File

@ -0,0 +1,15 @@
[general]
definition = dagoma_pro_430_directdrive
name = Very Fast
version = 4
[metadata]
material = generic_pla
quality_type = h0.4
setting_version = 22
type = quality
variant = Serie 1.0mm
weight = -1
[values]

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